54 lines
783 B
Plaintext
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;
|
|
}
|
|
|