83 lines
1.2 KiB
Plaintext
83 lines
1.2 KiB
Plaintext
/**settings.wxss**/
|
|
.container {
|
|
min-height: 100vh;
|
|
background-color: #f5f5f5;
|
|
padding-bottom: 120rpx;
|
|
}
|
|
|
|
.settings-list {
|
|
padding: 32rpx;
|
|
}
|
|
|
|
.setting-section {
|
|
background-color: #fff;
|
|
border-radius: 16rpx;
|
|
margin-bottom: 32rpx;
|
|
overflow: hidden;
|
|
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.section-title {
|
|
padding: 24rpx 32rpx;
|
|
background-color: #f9f9f9;
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
font-weight: 500;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.setting-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 32rpx;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.setting-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.item-label {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.item-label.danger {
|
|
color: #ff5722;
|
|
}
|
|
|
|
.item-value {
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.item-arrow {
|
|
font-size: 40rpx;
|
|
color: #ccc;
|
|
}
|
|
|
|
.info-box {
|
|
background-color: #fff;
|
|
border-radius: 16rpx;
|
|
padding: 32rpx;
|
|
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.info-title {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
font-weight: 600;
|
|
display: block;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.info-text {
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
line-height: 2;
|
|
white-space: pre-line;
|
|
display: block;
|
|
}
|
|
|