123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- /* 主要区域 */
- .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;
- }
- }
- .box {
- width: 690rpx;
- margin: 0 auto;
- margin-top: 30rpx;
- .label {
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- video {
- width: 690rpx;
- height: 360rpx;
- border-radius: 16rpx;
- overflow: hidden;
- 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: 200rpx !important;
- height: 36rpx;
- line-height: 36rpx;
- padding: 0 10rpx;
- margin-right: 10rpx;
- font-size: 20rpx;
- font-family: PingFangSC-Regular-, PingFangSC-Regular;
- font-weight: normal;
- }
- .evaluation-title {
- font-size: 28rpx;
- font-weight: bold;
- color: #333333;
- margin-left: 30rpx;
- }
- .incidental {
- display: flex;
- justify-content: space-between;
- height: 36rpx;
- width: 630rpx;
- margin-top: 10rpx;
- &_l {
- display: flex;
- align-items: center;
- .tag {
- max-width: 100rpx;
- height: 36rpx;
- line-height: 36rpx;
- padding: 0 10rpx;
- margin-right: 10rpx;
- font-size: 20rpx;
- font-family: PingFangSC-Regular-, PingFangSC-Regular;
- font-weight: normal;
- }
- .time {
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 10rpx;
- }
- }
- &_r {
- display: flex;
- align-items: center;
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 10rpx;
- &_item {
- margin-right: 30rpx;
- height: 28rpx;
- display: flex;
- align-items: center;
- text {
- margin-right: 10rpx;
- }
- }
- &_item:last-child {
- margin-right: 0;
- }
- }
- }
|