| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | @import "./incidental.scss";/* 主要区域 */.main {    width: 100%;    background-color: #ffffff;    padding: 30rpx;    box-sizing: border-box;    .title {        font-size: 30rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #333333;        line-height: 44rpx;    }    .incidental {        width: 100%;        margin-top: 20rpx;    }}/* 通告评价 */.evaluate {    .title-r {        font-size: 24rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #999999;    }    .score {        display: flex;        align-items: center;        height: 48rpx;        // margin-left: 30rpx;        margin: 40rpx 0 50rpx 30rpx;        .rate {            padding: 0 20rpx;            margin-top: -12rpx;        }    }}/* 虚线 */.cut-off-rule {    width: 100%;    height: 1rpx;    box-sizing: border-box;    border-bottom: 1rpx dashed #CCCCCC;    margin-top: 30rpx;}/* 文本域 */textarea {    width: 630rpx;    height: 210rpx;    background: #F5F5F5;    border-radius: 8rpx;    margin: 24rpx auto 0;    padding: 20rpx 30rpx;    box-sizing: border-box;    text-align: left;}/* 按钮盒子 */.but-box {    width: 100%;    text-align: center;    margin: 50rpx 0;}.tag {    max-width: 100rpx !important;    height: 36rpx;    line-height: 36rpx;    padding: 0 10rpx;    margin-right: 10rpx;    font-size: 20rpx;    font-family: PingFangSC-Regular-, PingFangSC-Regular;    font-weight: normal;}
 |