67 lines
903 B
CSS

page {
background-color: #f6f7fb;
min-height: 100vh;
}
.container {
padding: 30rpx;
}
.example-section {
background: #FFFFFF;
border-radius: 20rpx;
padding: 30rpx;
}
.title {
font-size: 34rpx;
font-weight: bold;
color: #222222;
margin-bottom: 30rpx;
text-align: center;
}
.sub-section {
margin-bottom: 40rpx;
}
.sub-title {
font-size: 28rpx;
color: #333333;
margin-bottom: 20rpx;
font-weight: bold;
}
.example-img {
width: 100%;
margin-bottom: 20rpx;
display: flex;
justify-content: center;
}
.example-img image {
width: 500rpx;
border-radius: 10rpx;
border: 2rpx dashed #ddd;
}
.tips {
background: #FFF8F6;
border-radius: 10rpx;
padding: 24rpx;
margin-top: 20rpx;
}
.tips-title {
font-size: 26rpx;
font-weight: bold;
color: #FF370B;
margin-bottom: 16rpx;
}
.tips-item {
font-size: 24rpx;
color: #666666;
line-height: 1.8;
}