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.
70 lines
1012 B
70 lines
1012 B
/**app.wxss**/ |
|
.pages { |
|
height: 100vh; |
|
width: 100%; |
|
overflow: hidden; |
|
display: flex; |
|
flex-direction: column; |
|
background-color: #F8F8F8; |
|
} |
|
|
|
.main{ |
|
flex: 1; |
|
overflow-y: auto; |
|
padding-bottom: 200rpx; |
|
} |
|
|
|
.set-bar text{ |
|
font-weight: bold; |
|
color: #262936; |
|
font-size: 36rpx; |
|
} |
|
|
|
.flex-center{ |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
} |
|
|
|
.my-pos{ |
|
position: absolute; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
z-index: 1; |
|
} |
|
|
|
.center{ |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
|
|
.option-box{ |
|
padding-top: 10rpx; |
|
} |
|
|
|
.o-item{ |
|
height: 104rpx; |
|
border-bottom: 2rpx solid #E3E3E3; |
|
font-size: 30rpx; |
|
color: #262936; |
|
font-weight: bold; |
|
} |
|
|
|
.icon{ |
|
width: 24rpx; |
|
height: 24rpx; |
|
transform:rotate(-90deg); |
|
} |
|
|
|
.sign-out{ |
|
width: 514rpx !important; |
|
height: 86rpx; |
|
line-height: 50rpx; |
|
background: linear-gradient(171deg, #262936, #48494E); |
|
border-radius: 44rpx; |
|
margin-top: 110rpx; |
|
font-size: 32rpx; |
|
color: #FFFFFF; |
|
}
|
|
|