55 lines
828 B
Plaintext
55 lines
828 B
Plaintext
/* pages/warning/settings/settings.wxss */
|
|
.container {
|
|
min-height: 100vh;
|
|
background-color: #F5F5F5;
|
|
padding: 24rpx 32rpx;
|
|
}
|
|
|
|
.settings-section {
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
padding: 32rpx;
|
|
margin-bottom: 24rpx;
|
|
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.tips-section {
|
|
background: #E6F0FF;
|
|
border-radius: 16rpx;
|
|
padding: 32rpx;
|
|
}
|
|
|
|
.tips-title {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #0052D9;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.tips-title text {
|
|
margin-left: 8rpx;
|
|
}
|
|
|
|
.tips-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12rpx;
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.save-section {
|
|
margin-top: 48rpx;
|
|
}
|
|
|