| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .content-box {
- width: 100vw;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- background-color: #fff;
- border-bottom: 1px solid #ddd;
- .title {
- display: flex;
- line-height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- text {
- height: 42rpx;
- background: #3874F6;
- border-radius: 4rpx;
- padding: 0 16rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- margin-right: 10rpx;
- flex-shrink: 0;
- }
- .line-1 {
- // flex: 1;
- width: 660rpx;
- }
- }
- .rep {
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- margin-top: 10rpx;
- }
- }
|