Files
miniprogram-1/miniprogram/pages/terms/terms.wxss
2025-12-12 19:45:50 +08:00

54 lines
783 B
Plaintext

/* terms.wxss */
.container {
padding: 20rpx;
background-color: #f5f5f5;
min-height: 100vh;
overflow-y: scroll;
}
.content {
background-color: #ffffff;
border-radius: 16rpx;
padding: 30rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
}
.title {
font-size: 36rpx;
font-weight: bold;
color: #333333;
text-align: center;
display: block;
margin-bottom: 40rpx;
}
.section {
margin-bottom: 30rpx;
}
.subtitle {
font-size: 32rpx;
font-weight: bold;
color: #33272a;
display: block;
margin-bottom: 16rpx;
}
.paragraph {
font-size: 24rpx;
color: #594a4e;
line-height: 40rpx;
display: block;
}
.email {
color: #2563eb;
text-decoration: underline;
}
.link {
color: #2563eb;
text-decoration: underline;
display: inline-block;
}