jingshuiji/pages/Agreement/Agreement.wxss
2025-06-06 15:07:26 +08:00

46 lines
754 B
Plaintext

.agreement-container {
display: flex;
flex-direction: column;
height: 100vh;
background-color: #fff;
}
.agreement-header {
padding: 30rpx;
border-bottom: 1rpx solid #f5f5f5;
text-align: center;
}
.agreement-title {
font-size: 36rpx;
font-weight: bold;
color: #333;
}
.agreement-content {
flex: 1;
padding: 30rpx;
box-sizing: border-box;
}
.agreement-text {
font-size: 28rpx;
color: #333;
line-height: 1.8;
text-align: justify;
}
.agreement-footer {
padding: 20rpx 30rpx;
border-top: 1rpx solid #f5f5f5;
}
.agreement-btn {
width: 100%;
height: 80rpx;
line-height: 80rpx;
background-color: #2583ff;
color: #fff;
font-size: 30rpx;
border-radius: 40rpx;
}