index.scss 586 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .figure-box {
  2. width: 100vw;
  3. padding: 30rpx;
  4. box-sizing: border-box;
  5. display: flex;
  6. justify-content: space-between;
  7. .item {
  8. padding: 20rpx 30rpx;
  9. box-sizing: border-box;
  10. background-color: #fff;
  11. border-radius: 6rpx;
  12. width: 48%;
  13. .title {
  14. font-size: 24rpx;
  15. display: flex;
  16. justify-content: space-between;
  17. text {
  18. color: #06CD9B;
  19. .iconfont{
  20. font-size: 22rpx;
  21. }
  22. }
  23. }
  24. .value {
  25. font-size: 36rpx;
  26. font-weight: bold;
  27. margin-top: 14rpx;
  28. text {
  29. font-size: 24rpx;
  30. font-weight: normal;
  31. margin-left: 2px;
  32. }
  33. }
  34. }
  35. }