| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .box {
- width: 690rpx;
- background-color: #fff;
- padding: 20rpx;
- box-sizing: border-box;
- margin: 0 auto 20rpx;
- border-radius: 8rpx;
- .title {
- position: relative;
- height: 44rpx;
- line-height: 44rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- .status {
- position: absolute;
- right: -20rpx;
- top: 4rpx;
- font-weight: normal;
- width: 132rpx;
- height: 40rpx;
- line-height: 40rpx;
- text-align: center;
- background: #5AB73F;
- border-radius: 20rpx 0rpx 0rpx 20rpx;
- font-size: 24rpx;
- color: #FFFFFF;
- }
- }
- .row {
- line-height: 34rpx;
- font-size: 24rpx;
- color: #333333;
- margin-top: 8rpx;
- }
- }
|