active-preview.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. .active-preview-container {
  2. min-height: 100vh;
  3. background: linear-gradient(180deg, #F5EEE2 0%, #E0D2B4 100%), linear-gradient(180deg, rgba(224, 210, 180, 0) 0%, #E0D2B4 100%);
  4. background-size: cover;
  5. background-position: center;
  6. position: relative;
  7. color: #412A12;
  8. }
  9. .back-button {
  10. position: absolute;
  11. top: 40rpx;
  12. left: 40rpx;
  13. width: 80rpx;
  14. height: 80rpx;
  15. border-radius: 50%;
  16. z-index: 10;
  17. }
  18. .back-button image {
  19. width: 80rpx;
  20. height: 80rpx;
  21. }
  22. .preview-content {
  23. padding: 40rpx 40rpx;
  24. }
  25. .activity-cards {
  26. display: flex;
  27. flex-direction: column;
  28. }
  29. .activity-card {
  30. position: relative;
  31. background: #fff;
  32. border-radius: 20rpx;
  33. overflow: hidden;
  34. box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
  35. margin-bottom: 16rpx;
  36. }
  37. .activity-image {
  38. width: 100%;
  39. height: 206rpx;
  40. }
  41. .activity-info {
  42. position: absolute;
  43. top: 0;
  44. width: 100%;
  45. height: 206rpx;
  46. flex-direction: column;
  47. display: flex;
  48. justify-content: center;
  49. align-items: flex-end;
  50. padding: 20rpx 30rpx;
  51. box-sizing: border-box;
  52. }
  53. .activity-title {
  54. font-size: 32rpx;
  55. font-weight: 800;
  56. color: #fff;
  57. margin-bottom: 20rpx;
  58. }
  59. .btn-reserve {
  60. display: flex;
  61. align-items: center;
  62. justify-content: center;
  63. width: 196rpx!important;
  64. background: transparent;
  65. height: 72rpx;
  66. border-radius: 60rpx;
  67. border: 2rpx solid #FFFFFF;
  68. color: #fff;
  69. font-size: 28rpx;
  70. }
  71. .btn-my-reservation {
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. width: 100%;
  76. height: 128rpx;
  77. background: rgba(255, 255, 255, 0.5);
  78. color: #584735;
  79. border: 2rpx solid #B1967B;
  80. padding: 24rpx;
  81. border-radius: 16rpx;
  82. font-size: 32rpx;
  83. margin-bottom: 40rpx;
  84. box-sizing: border-box;
  85. }
  86. .reservation-info {
  87. border-radius: 20rpx;
  88. }
  89. .title {
  90. font-size: 40rpx;
  91. margin-bottom: 40rpx;
  92. color: #584735;
  93. font-weight: bold;
  94. }
  95. .time-info {
  96. display: flex;
  97. align-items: center;
  98. justify-content: space-between;
  99. margin-bottom: 20rpx;
  100. }
  101. .time-section {
  102. display: flex;
  103. flex-direction: column;
  104. align-items: center;
  105. }
  106. .time-title {
  107. font-size: 28rpx;
  108. color: #B1967B;
  109. margin-bottom: 10rpx;
  110. }
  111. .time-value {
  112. font-size: 80rpx;
  113. font-weight: bold;
  114. color: #94765A;
  115. }
  116. .line {
  117. height: 4rpx;
  118. width: 26rpx;
  119. background: #584735;
  120. margin: 48rpx 12rpx 0 12rpx;
  121. }
  122. .divider {
  123. height: 100rpx;
  124. width: 4rpx;
  125. background: #584735;
  126. margin: 0 30rpx;
  127. }
  128. .stop-time {
  129. font-size: 28rpx;
  130. color: #B1967B;
  131. margin-bottom: 10rpx;
  132. }
  133. .stop-desc {
  134. font-size: 28rpx;
  135. color: #B1967B;
  136. }
  137. .time-note {
  138. width: 454rpx;
  139. font-size: 28rpx;
  140. color: #B1967B;
  141. margin-bottom: 40rpx;
  142. line-height: 1.5;
  143. }
  144. .reservation-title {
  145. font-size: 32rpx;
  146. margin-bottom: 20rpx;
  147. color: #584735;
  148. font-weight: bold;
  149. }
  150. .reservation-rules {
  151. font-size: 28rpx;
  152. line-height: 1.5;
  153. color: #B1967B;
  154. margin-bottom: 40rpx;
  155. }
  156. .rule-content {
  157. color: #B1967B;
  158. display: block;
  159. margin-bottom: 20rpx;
  160. }
  161. .notice {
  162. color: #94765A;
  163. font-weight: bold;
  164. }