1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- @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;
- }
|