index.scss 895 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .box {
  2. width: 100vw;
  3. background-color: #fff;
  4. padding: 20rpx 30rpx;
  5. box-sizing: border-box;
  6. border-bottom: 1px solid #ddd;
  7. .title {
  8. position: relative;
  9. height: 44rpx;
  10. line-height: 44rpx;
  11. font-size: 28rpx;
  12. font-family: PingFang SC-Bold, PingFang SC;
  13. font-weight: bold;
  14. color: #333333;
  15. .status {
  16. position: absolute;
  17. right: -30rpx;
  18. top: 4rpx;
  19. font-weight: normal;
  20. width: 132rpx;
  21. height: 40rpx;
  22. line-height: 40rpx;
  23. text-align: center;
  24. background: #5AB73F;
  25. border-radius: 20rpx 0rpx 0rpx 20rpx;
  26. font-size: 24rpx;
  27. color: #FFFFFF;
  28. }
  29. }
  30. .row {
  31. line-height: 34rpx;
  32. font-size: 24rpx;
  33. color: #333333;
  34. margin-top: 8rpx;
  35. }
  36. }