index.wxss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. .red {
  2. color: #F01740;
  3. }
  4. .grey {
  5. color: #666666;
  6. }
  7. .black {
  8. color: #000000;
  9. }
  10. .title {
  11. font-weight: Medium;
  12. font-size: 36rpx;
  13. color: #222222;
  14. }
  15. .text-large {
  16. font-size: 36rpx;
  17. }
  18. .text {
  19. font-size: 30rpx;
  20. }
  21. .text-left {
  22. text-align: left;
  23. }
  24. .text-center {
  25. text-align: center;
  26. }
  27. .text-small {
  28. font-size: 24rpx;
  29. /* word-break: keep-all; */
  30. }
  31. .flex {
  32. display: flex;
  33. }
  34. .justify-between {
  35. justify-content: space-between;
  36. }
  37. .flex-aligin-center {
  38. display: flex;
  39. align-items: center;
  40. }
  41. .flex-justify-between {
  42. display: flex;
  43. justify-content: space-between;
  44. }
  45. .flex-1 {
  46. flex: 1;
  47. }
  48. .flex-grow-1 {
  49. flex-grow: 1;
  50. }
  51. .fixed-bottom {
  52. position: fixed;
  53. bottom: 0;
  54. left: 0;
  55. right: 0;
  56. }
  57. .w-100 {
  58. width: 100%;
  59. }
  60. .h-100 {
  61. height: 100%;
  62. }
  63. .page-section {
  64. margin: 20rpx;
  65. border-radius: 20rpx;
  66. background-color: #ffffff;
  67. }
  68. .page-section-spacing {
  69. padding: 20rpx;
  70. }
  71. .spacing-small {
  72. padding: 10rpx;
  73. }
  74. .border-trans {
  75. border: 1px solid transparent;
  76. }
  77. .ellipsis {
  78. width: 100%;
  79. overflow: hidden;
  80. text-overflow: ellipsis;
  81. display: -webkit-box;
  82. -webkit-line-clamp: 1;
  83. -webkit-box-orient: vertical;
  84. }
  85. .ellipsis-2 {
  86. width: 100%;
  87. overflow: hidden;
  88. text-overflow: ellipsis;
  89. display: -webkit-box;
  90. -webkit-line-clamp: 2;
  91. -webkit-box-orient: vertical;
  92. }
  93. page {
  94. background: #f6f6f6;
  95. padding-bottom: 148rpx;
  96. }
  97. .page-section {
  98. margin: 20rpx;
  99. border-radius: 20rpx;
  100. background-color: #ffffff;
  101. }
  102. .page-section-spacing {
  103. padding: 20rpx;
  104. }
  105. .swiper-images-wrapper {
  106. background-color: #eee;
  107. }
  108. .swiper-images-wrapper .swiper-images {
  109. height: 400rpx;
  110. }
  111. .swiper-images-wrapper .swiper-image {
  112. width: 100%;
  113. height: 100%;
  114. background-repeat: no-repeat;
  115. background-position: center top;
  116. background-size: 100% 100%;
  117. border-radius: 20rpx;
  118. }
  119. .title {
  120. font-weight: Medium;
  121. font-size: 36rpx;
  122. color: #222222;
  123. }
  124. .text {
  125. font-size: 30rpx;
  126. }
  127. .text-small {
  128. font-size: 24rpx;
  129. }
  130. .comment {
  131. padding: 40rpx 0;
  132. }
  133. .comment .comment-header {
  134. display: flex;
  135. align-items: center;
  136. justify-content: space-between;
  137. }
  138. .comment .comment-header .header-text {
  139. flex: 1;
  140. padding: 0 10rpx;
  141. }
  142. .comment .comment-header .header-avatar {
  143. width: 80rpx;
  144. height: 80rpx;
  145. }
  146. .comment .comment-header .header-avatar .header-avatar-image {
  147. width: 100%;
  148. height: 100%;
  149. margin: 0 auto;
  150. border-radius: 50%;
  151. }
  152. .comment .comment-content .comment-text {
  153. padding: 10rpx 0;
  154. }
  155. .comment .comment-content .comment-images {
  156. display: flex;
  157. flex-wrap: wrap;
  158. }
  159. .comment .comment-content .comment-image {
  160. width: 210rpx;
  161. height: 210rpx;
  162. margin: 6rpx;
  163. background: #999999;
  164. }
  165. .comments-footer {
  166. text-align: center;
  167. }
  168. .more {
  169. position: fixed;
  170. bottom: 200rpx;
  171. right: 50rpx;
  172. z-index: 999;
  173. width: 80rpx;
  174. height: 80rpx;
  175. border: 1rpx solid #f6f6f6;
  176. border-radius: 50%;
  177. font-size: 20rpx;
  178. background: #ffffff;
  179. padding-top: 15rpx;
  180. }
  181. .more .more-title {
  182. text-align: center;
  183. }
  184. .box {
  185. padding: 30rpx 30rpx 0 30rpx;
  186. margin-bottom: 20rpx;
  187. background: #ffffff;
  188. }
  189. .box .confirm {
  190. display: flex;
  191. margin-top: 20rpx;
  192. padding-bottom: 20rpx;
  193. border-bottom: 1rpx solid #f6f6f6;
  194. }
  195. .box .confirm .confirm-title {
  196. color: #afa9a9;
  197. width: 100rpx;
  198. }
  199. .box .confirm .confirm-detail {
  200. width: 80%;
  201. }
  202. .box .confirm .confirm-detail .confirm-immediately {
  203. color: hsl(136, 91%, 49%);
  204. }
  205. .box .confirm .confirm-detail .confirm-immediately2 {
  206. color: hsl(136, 91%, 49%);
  207. margin-top: 30rpx;
  208. }
  209. .box .confirm .confirm-detail .confirm-immediatelys {
  210. font-size: 28rpx;
  211. }
  212. .box .confirm .confirm-detail .immediately-detail {
  213. margin-top: 10rpx;
  214. font-size: 28rpx;
  215. }
  216. .box .instructions {
  217. margin-top: 10rpx;
  218. color: #afa9a9;
  219. font-size: 24rpx;
  220. }
  221. .box .facilities {
  222. display: flex;
  223. margin-top: 20rpx;
  224. border-bottom: 1rpx solid #f6f6f6;
  225. width: 100%;
  226. padding-bottom: 20rpx;
  227. }
  228. .box .facilities .facilities-title {
  229. color: #afa9a9;
  230. width: 14%;
  231. }
  232. .box .facilities .facilities-txt {
  233. display: flex;
  234. flex-wrap: wrap;
  235. width: 85%;
  236. }
  237. .box .facilities .facilities-txt .immediately-detail {
  238. margin: 0rpx 0 20rpx 0;
  239. width: 95%;
  240. font-size: 28rpx;
  241. }
  242. .box .facilities .facilities-txt .facilities-name {
  243. font-size: 24rpx;
  244. width: 30%;
  245. margin-right: 10rpx;
  246. line-height: 40rpx;
  247. }
  248. .box .facilities .facilities-txt .facilities-names {
  249. font-size: 24rpx;
  250. width: 45%;
  251. margin-right: 10rpx;
  252. line-height: 40rpx;
  253. }
  254. .box .housing-facilities {
  255. color: #1451ca;
  256. }
  257. .box .price {
  258. display: flex;
  259. color: red;
  260. font-size: 24rpx;
  261. margin-top: 10rpx;
  262. }
  263. .box .price .hotel-price {
  264. margin: 0 10rpx 0 0;
  265. }
  266. .box .price .hotel-original {
  267. text-decoration: line-through;
  268. color: #afa9a9;
  269. }
  270. .box .hotel-preferential {
  271. display: flex;
  272. justify-content: space-between;
  273. }
  274. .box .hotel-preferential .preferential {
  275. margin-top: 20rpx;
  276. background: #fc496c;
  277. width: 55%;
  278. text-align: center;
  279. color: #ffffff;
  280. padding: 10rpx 0;
  281. }
  282. .box .hotel-preferential .hotel-detail {
  283. margin-top: 30rpx;
  284. color: #fc496c;
  285. }
  286. .box .tag {
  287. display: flex;
  288. margin-top: 20rpx;
  289. }
  290. .box .tag .tag-name {
  291. border-radius: 10rpx;
  292. background: #f4f1f1;
  293. padding: 10rpx;
  294. color: #210c8b;
  295. font-size: 24rpx;
  296. margin: 0 20rpx 0 0;
  297. }
  298. .box .evaluation {
  299. margin-top: 20rpx;
  300. display: flex;
  301. justify-content: space-between;
  302. }
  303. .box .evaluation .evaluation-txt {
  304. color: #12c6d6;
  305. }
  306. .box .address {
  307. margin-top: 20rpx;
  308. padding-bottom: 20rpx;
  309. }
  310. .box .housing {
  311. font-size: 36rpx;
  312. }
  313. .box .housing-title {
  314. display: flex;
  315. flex-wrap: wrap;
  316. }
  317. .box .housing-title .housing-txt {
  318. display: flex;
  319. width: 55%;
  320. margin: 20rpx 0rpx 0 0;
  321. }
  322. .box .housing-title .housing-txt .housing-name {
  323. margin: 0rpx 30rpx 0 0;
  324. color: #afa9a9;
  325. }
  326. .box .housing-title .housing-txts {
  327. display: flex;
  328. width: 37%;
  329. margin: 20rpx 20rpx 0 0;
  330. }
  331. .box .housing-title .housing-txts .housing-name {
  332. margin: 0rpx 30rpx 0 0;
  333. color: #afa9a9;
  334. }
  335. .box .housing-title .housing-txt2 {
  336. display: flex;
  337. margin: 20rpx 20rpx 0 0;
  338. }
  339. .box .housing-title .housing-txt2 .housing-name {
  340. margin: 0rpx 30rpx 0 0;
  341. color: #afa9a9;
  342. }
  343. .box .txt {
  344. margin-top: 30rpx;
  345. text-align: center;
  346. }
  347. .box .title {
  348. margin: 30rpx;
  349. }
  350. .box .introduce {
  351. margin-top: 50rpx;
  352. display: flex;
  353. position: relative;
  354. padding-bottom: 20rpx;
  355. }
  356. .box .introduce .introduce-check {
  357. position: absolute;
  358. right: 0;
  359. bottom: 20rpx;
  360. background: #ffffff;
  361. z-index: 99;
  362. padding: 10rpx;
  363. color: #4158da;
  364. }
  365. .box .introduce .introduce-name {
  366. margin: 10rpx 30rpx 0 0;
  367. color: #afa9a9;
  368. }
  369. .box .introduce .introduce-describe {
  370. width: 85%;
  371. overflow: hidden;
  372. text-overflow: ellipsis;
  373. display: -webkit-box;
  374. -webkit-line-clamp: 2;
  375. -webkit-box-orient: vertical;
  376. line-height: 60rpx;
  377. }