index.less 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /* nova-tourism/pages/my/my-order/order-detail/index.wxss */
  2. .all{
  3. width: 100vw;
  4. overflow-y: scroll;
  5. background-color: #F4F4F4;
  6. padding-bottom: 20rpx;
  7. .title{
  8. width: 100%;
  9. font-size: 36rpx;
  10. background-color: white;
  11. display: flex;
  12. justify-content: center;
  13. padding-bottom: 25rpx;
  14. }
  15. .cardbox{
  16. width: 100%;
  17. height: auto;
  18. padding-left: 30rpx;
  19. padding-right: 30rpx;
  20. padding-top: 20rpx;
  21. padding-bottom: 10rpx;
  22. margin-top: 20rpx;
  23. background-color: white;
  24. .title2{
  25. width: 100%;
  26. font-size: 30rpx;
  27. font-weight: 600;
  28. }
  29. .roombox{
  30. width: 100%;
  31. display: flex;
  32. margin-top: 20rpx;
  33. image{
  34. width: 170rpx;
  35. height: 170rpx;
  36. border-radius: 10rpx;
  37. }
  38. .room{
  39. height: 100%;
  40. margin-left: 20rpx;
  41. .room-name{
  42. width: 460rpx;
  43. font-size: 28rpx;
  44. margin-bottom: 10rpx;
  45. }
  46. .room-tag{
  47. font-size: 26rpx;
  48. width: 460rpx;
  49. height: auto;
  50. color: #F37B40;
  51. margin-bottom: 10rpx;
  52. }
  53. .room-text{
  54. width: 460rpx;
  55. height: auto;
  56. font-size: 26rpx;
  57. color: #737373;
  58. }
  59. .room-text2{
  60. width: 460rpx;
  61. height: auto;
  62. font-size: 26rpx;
  63. margin-top: 100rpx;
  64. color: #737373;
  65. }
  66. }
  67. }
  68. .textbox{
  69. width: 100%;
  70. height: auto;
  71. padding-bottom: 40rpx;
  72. margin-top: 20rpx;
  73. .text1{
  74. width: 100%;
  75. font-size: 28rpx;
  76. display: flex;
  77. color: #323232;
  78. margin-bottom: 20rpx;
  79. .tex2{
  80. margin-left: auto;
  81. font-size: 30rpx;
  82. font-weight: 600;
  83. color: black;
  84. }
  85. .tex3{
  86. margin-left: auto;
  87. font-size: 28rpx;
  88. color: #979797;
  89. display: flex;
  90. .tex3-2{
  91. color: #323232;
  92. margin-left: 10rpx;
  93. }
  94. }
  95. }
  96. .text2{
  97. width: 100%;
  98. font-size: 28rpx;
  99. display: flex;
  100. color: #323232;
  101. margin-bottom: 20rpx;
  102. .tex1{
  103. width: 200rpx;
  104. }
  105. .tex4{
  106. width: 100%;
  107. margin-left: 40rpx;
  108. font-size: 28rpx;
  109. color: #979797;
  110. display: flex;
  111. }
  112. }
  113. .sumbitbox{
  114. width: 100%;
  115. display: flex;
  116. justify-content: flex-end;
  117. margin-top: 20rpx;
  118. .sumbit{
  119. width: 164rpx;
  120. height: 66rpx;
  121. border-radius: 40rpx;
  122. border: #F37B40 solid 2rpx;
  123. background-color: white;
  124. color: #F37B40;
  125. font-size: 30rpx;
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. }
  130. }
  131. }
  132. }
  133. .box{
  134. width: 100%;
  135. height: auto;
  136. background-color: white;
  137. margin-top: 20rpx;
  138. padding-top: 40rpx;
  139. .wang-cardbox{
  140. margin-top: 20rpx;
  141. width: 100%;
  142. background-color: white;
  143. overflow-y: hidden;
  144. padding-left: 3%;
  145. padding-right: 3%;
  146. padding-bottom: 40rpx;
  147. column-count: 2; /* 设置列数 */
  148. column-gap: 20rpx; /* 设置列间距 */
  149. .wang-card{
  150. break-inside: avoid; /* 防止卡片在列之间断裂 */
  151. margin-bottom: 20rpx; /* 设置卡片底部间距 */
  152. width: 100%; /* 确保卡片宽度为100% */
  153. image{
  154. width: 100%;
  155. height: 275rpx;
  156. border-radius: 15rpx;
  157. }
  158. .wang-catex{
  159. font-size: 28rpx;
  160. }
  161. .wang-numbox{
  162. width: 100%;
  163. height: 80rpx;
  164. display: flex;
  165. align-items: center;
  166. .wang-num{
  167. display: flex;
  168. justify-content: flex-end;
  169. align-items: flex-end;
  170. color: #C5262Ced;
  171. font-size: 30rpx;
  172. .wang-num1{
  173. font-size: 32rpx;
  174. }
  175. .wang-num2{
  176. font-size: 36rpx;
  177. }
  178. }
  179. .wang-submit{
  180. width: 100rpx;
  181. height: 50rpx;
  182. font-size: 30rpx;
  183. color: white;
  184. background-color: #F8DA7F;
  185. border-radius: 40rpx;
  186. display: flex;
  187. justify-content: center;
  188. align-items: center;
  189. margin-left: auto;
  190. }
  191. }
  192. }
  193. }
  194. }
  195. }