miningRecord.scss 1017 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. page {
  2. background-color: #161616;
  3. width:750rpx;height:100vh;
  4. }
  5. .page {
  6. width: 750rpx;height: 100vh;
  7. background: url('../../static/w3/bg.png');
  8. background-size: 750rpx 1624rpx;
  9. }
  10. .list_info {
  11. display: flex;flex-direction: column;justify-content: flex-start;align-items: center;color:#fff;
  12. width:750rpx;
  13. .item {
  14. margin-top: 20rpx;color:#fff;font-size: 28rpx;
  15. display: flex;flex-direction: row;justify-content: space-between;align-items: center;
  16. width: 690rpx;height: 157rpx;
  17. background: url('../../static/w3/tran/bg_record.png');
  18. background-size: 690rpx 157rpx;
  19. .left {
  20. display: flex;flex-direction: column;justify-content: flex-start;align-items: flex-start;
  21. padding-left:30rpx;
  22. .name {
  23. margin-bottom:20rpx;
  24. font-weight: 400;
  25. font-size: 28rpx;
  26. color: #FFFFFF;
  27. }
  28. .desc {
  29. font-weight: 400;
  30. font-size: 24rpx;
  31. color: #999999;
  32. }
  33. }
  34. .right {
  35. padding-right: 30rpx;
  36. font-size: 36rpx;
  37. color: #FF4655;
  38. }
  39. }
  40. }
  41. .blankHeight {
  42. height:300rpx;
  43. }