index.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. .container {
  2. background-color: #f5f5f5;
  3. min-height: 100vh;
  4. .text-red {
  5. color: #ff0000;
  6. }
  7. .item {
  8. background-color: #fff;
  9. border-radius: 12rpx;
  10. padding: 24rpx;
  11. display: block;
  12. width: 375px;
  13. margin: 0 auto;
  14. margin-bottom: 20rpx;
  15. .top {
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. margin-bottom: 16rpx;
  20. .name {
  21. font-size: 32rpx;
  22. font-weight: bold;
  23. flex: 1;
  24. }
  25. .actions {
  26. display: flex;
  27. gap: 12rpx;
  28. .van-button {
  29. margin: 0;
  30. }
  31. }
  32. .statu {
  33. font-size: 24rpx;
  34. padding: 4rpx 12rpx;
  35. border-radius: 8rpx;
  36. }
  37. }
  38. .content {
  39. .row {
  40. display: flex;
  41. flex-wrap: wrap;
  42. margin-bottom: 12rpx;
  43. .exp {
  44. flex: 1;
  45. font-size: 26rpx;
  46. color: #666;
  47. line-height: 1.5;
  48. &.full-width {
  49. width: 100%;
  50. }
  51. }
  52. }
  53. }
  54. }
  55. .header {
  56. background-color: #f5f5f5;
  57. }
  58. .loading {
  59. text-align: center;
  60. color: #999;
  61. padding: 20rpx 0;
  62. font-size: 24rpx;
  63. }
  64. .no-more {
  65. text-align: center;
  66. color: #999;
  67. padding: 20rpx 0;
  68. font-size: 24rpx;
  69. }
  70. }
  71. .bottom-btn {
  72. position: fixed;
  73. bottom: 0;
  74. left: 0;
  75. right: 0;
  76. padding: 20rpx;
  77. background-color: #fff;
  78. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  79. z-index: 999;
  80. .van-button {
  81. width: 100%;
  82. }
  83. }
  84. .footer {
  85. display: flex;
  86. justify-content: center;
  87. position: fixed;
  88. bottom: 0;
  89. width: 100vw;
  90. min-height: 130rpx;
  91. background-color: #fff;
  92. box-shadow: 0px -2px 6px 1px rgba(0, 0, 0, 0.16);
  93. .but {
  94. width: 690rpx;
  95. height: 90rpx;
  96. background: #FA8C16;
  97. border-radius: 16rpx;
  98. font-size: 28rpx;
  99. font-weight: 600;
  100. color: #FFFFFF;
  101. margin-top: 10rpx;
  102. }
  103. }
  104. .modal-content {
  105. padding: 20rpx;
  106. }
  107. .radio-group {
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. margin-top: 20rpx;
  112. margin-bottom: 20rpx;
  113. }
  114. .radio-label {
  115. margin-right: 20rpx;
  116. font-size: 28rpx;
  117. color: #333;
  118. }
  119. .van-radio {
  120. margin-right: 32rpx;
  121. }