index.scss 907 B

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