89 lines
1.5 KiB
Plaintext
89 lines
1.5 KiB
Plaintext
|
|
.content {
|
||
|
|
border-top: 1rpx solid rgba(0, 0, 0, 0.05);
|
||
|
|
}
|
||
|
|
.section-list {
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
margin: 20rpx 20rpx 0 20rpx;
|
||
|
|
border-radius: 20rpx;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.list-item {
|
||
|
|
padding: 30rpx;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
border-bottom: 1rpx solid #F5F5F5;
|
||
|
|
}
|
||
|
|
.list-item:last-child {
|
||
|
|
border-bottom: none;
|
||
|
|
}
|
||
|
|
.item-left {
|
||
|
|
gap: 16rpx;
|
||
|
|
}
|
||
|
|
.item-left .item-left-img {
|
||
|
|
width: 36rpx;
|
||
|
|
height: 36rpx;
|
||
|
|
}
|
||
|
|
.item-left .item-text {
|
||
|
|
font-weight: 500;
|
||
|
|
font-size: 28rpx;
|
||
|
|
color: #000000;
|
||
|
|
text-align: left;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
.item-right {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.phone-number {
|
||
|
|
font-size: 28rpx;
|
||
|
|
color: #666666;
|
||
|
|
margin-left: 8rpx;
|
||
|
|
margin-right: 12rpx;
|
||
|
|
}
|
||
|
|
.verified-icon {
|
||
|
|
color: #00C853;
|
||
|
|
margin-right: 8rpx;
|
||
|
|
}
|
||
|
|
.cache-size,
|
||
|
|
.version {
|
||
|
|
font-weight: 400;
|
||
|
|
font-size: 26rpx;
|
||
|
|
color: #666666;
|
||
|
|
line-height: 37rpx;
|
||
|
|
margin-right: 10rpx;
|
||
|
|
}
|
||
|
|
.arrow {
|
||
|
|
font-size: 28rpx;
|
||
|
|
color: #999999;
|
||
|
|
}
|
||
|
|
.logout-btn {
|
||
|
|
height: 98rpx;
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
margin: 48rpx 20rpx ;
|
||
|
|
border-radius: 20rpx;
|
||
|
|
}
|
||
|
|
.logout-text {
|
||
|
|
font-weight: 500;
|
||
|
|
font-size: 30rpx;
|
||
|
|
color: #333333;
|
||
|
|
line-height: 42rpx;
|
||
|
|
}
|
||
|
|
.sign-icon {
|
||
|
|
width: 30rpx;
|
||
|
|
height: 30rpx;
|
||
|
|
}
|
||
|
|
.arrow-right {
|
||
|
|
width: 10rpx;
|
||
|
|
height: 18rpx;
|
||
|
|
}
|
||
|
|
/* 平台适配 */
|
||
|
|
.nav-bar {
|
||
|
|
padding-top: calc(25px + constant(safe-area-inset-top)) !important;
|
||
|
|
padding-top: calc(25px + env(safe-area-inset-top)) !important;
|
||
|
|
}
|
||
|
|
|