exchange-record.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 20rpx 24rpx;
  6. box-sizing: border-box;
  7. }
  8. .list {
  9. width: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. .item {
  14. width: 100%;
  15. background-color: #FFFFFF;
  16. border-radius: 16rpx;
  17. padding: 20rpx 70rpx 20rpx 20rpx;
  18. box-sizing: border-box;
  19. margin-bottom: 20rpx;
  20. }
  21. .item:last-child {
  22. margin-bottom: 0;
  23. }
  24. .item-top {
  25. width: 100%;
  26. display: flex;
  27. align-items: flex-start;
  28. margin-bottom: 14rpx;
  29. }
  30. .item-img {
  31. width: 136rpx;
  32. height: 136rpx;
  33. border-radius: 8rpx;
  34. margin-right: 20rpx;
  35. }
  36. .item-sidebar {
  37. flex: 1;
  38. display: flex;
  39. flex-direction: column;
  40. }
  41. .item-title {
  42. width: 100%;
  43. display: -webkit-box;
  44. -webkit-line-clamp: 2;
  45. overflow: hidden;
  46. text-overflow: ellipsis;
  47. -webkit-box-orient: vertical;
  48. color: #000000;
  49. font-size: 26rpx;
  50. margin-bottom: 10rpx;
  51. margin-top: 3rpx;
  52. }
  53. .item-msg {
  54. width: 100%;
  55. font-size: 24rpx;
  56. color: #2A2A2A;
  57. }
  58. .item-msg text {
  59. color: #F2501A;
  60. }
  61. .item-bottom {
  62. width: 100%;
  63. font-size: 24rpx;
  64. color: #919191;
  65. }
  66. .normal-box {
  67. width: 100%;
  68. display: flex;
  69. flex-direction: column;
  70. align-items: center;
  71. color: #999999;
  72. font-size: 26rpx;
  73. padding: 400rpx 0 100rpx;
  74. }
  75. .normal-box image {
  76. width: 580rpx;
  77. margin-bottom: 12rpx;
  78. }