| 1234567891011121314151617181920212223242526272829303132333435363738 |
- .box {
- width: 100vw;
- background-color: #fff;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- border-bottom: 1px solid #ddd;
- .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: -30rpx;
- 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;
- }
- }
|