You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
631 B
31 lines
631 B
/* subpages/goOut/mygoOut/mygoOut.wxss */
|
|
page{
|
|
background-image: linear-gradient(to right, #befeed 0%, #d5eefe 50%, #ebe9fb 100%);
|
|
background-size: 100% 280rpx;
|
|
background-repeat: no-repeat;
|
|
background-position: top;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.scroll-view{
|
|
height: 100vh;
|
|
overflow-y: auto;
|
|
}
|
|
.item-title{
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
color: #333;
|
|
}
|
|
.item-content{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.item-content-left{
|
|
font-size: 28rpx;
|
|
color: #999999;
|
|
}
|
|
.item-content-right{
|
|
flex: 1;
|
|
font-size: 28rpx;
|
|
}
|
|
|