exchange.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* pages/integral/exchange.wxss */
  2. page {
  3. background-color: #f5f5f5;
  4. }
  5. /* 垂直方向布局,水平居中 **/
  6. .flex-column {
  7. display: flex;
  8. flex-flow: column nowrap;
  9. align-items: center;
  10. justify-content: left;
  11. }
  12. /* 水平方向布局,垂直居中 **/
  13. .flex-row {
  14. display: flex;
  15. flex-flow: row nowrap;
  16. align-items: center;
  17. justify-content: center;
  18. }
  19. .card-list {
  20. width: 750rpx;
  21. height: 246rpx;
  22. padding: 24rpx 30rpx;
  23. background-color: white;
  24. margin: 16rpx 0;
  25. }
  26. .card-list-top {
  27. width: 690rpx;
  28. height: 168rpx;
  29. justify-content: space-between;
  30. }
  31. .top-image {
  32. width: 168rpx;
  33. height: 168rpx;
  34. }
  35. .content {
  36. width: 50%;
  37. height: 168rpx;
  38. line-height: 56rpx;
  39. padding-left: 24rpx;
  40. box-sizing: border-box;
  41. }
  42. .content-title {
  43. color: rgb(51, 51, 51);
  44. font-size: 14px;
  45. font-weight: 600;
  46. }
  47. .content-type {
  48. color: rgb(102, 102, 102);
  49. font-size: 12px;
  50. font-weight: 600;
  51. }
  52. .content-num {
  53. font-size: 12px;
  54. color: rgb(51, 51, 51);
  55. font-weight: 600;
  56. }
  57. .status {
  58. width: 200rpx;
  59. text-align: center;
  60. height: 168rpx;
  61. font-size: 14px;
  62. font-weight: 600;
  63. text-align: center;
  64. }
  65. .status-text {
  66. display: inline-block;
  67. width: 100%;
  68. }
  69. .time {
  70. width: 750rpx;
  71. height: 78rpx;
  72. line-height: 78rpx;
  73. font-size: 12px;
  74. color: #b1b1b1;
  75. font-weight: 600;
  76. }
  77. .card-img {
  78. width: 750rpx;
  79. text-align: center;
  80. }
  81. .card-img-text {
  82. color: rgb(153, 153, 153);
  83. font-size: 14px;
  84. margin-top: 21px;
  85. font-weight: bold;
  86. }