46 lines
722 B
SCSS
46 lines
722 B
SCSS
/* pages/validComment/validComment.wxss */
|
|
page {
|
|
background: #F6F6F6;
|
|
|
|
.tip {
|
|
padding: 24rpx 30rpx;
|
|
background: #FFEBEB;
|
|
font-size: 22rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #FF614C;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.form {
|
|
.form-box-item {
|
|
margin-bottom: 20rpx;
|
|
background: #fff;
|
|
padding: 36rpx 30rpx 10rpx 30rpx;
|
|
|
|
.form-label {
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.form-item {
|
|
border-bottom: 1px solid #EBEBEB;
|
|
|
|
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
input {
|
|
height: 88rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.center{
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.mt30{
|
|
margin-top: 30rpx;
|
|
} |