hotel.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /* pages/hotel/hotel.wxss */
  2. page{
  3. padding: 0;
  4. }
  5. .content{
  6. height: auto;
  7. }
  8. .top{
  9. background: #fff;
  10. padding: 20rpx;
  11. }
  12. .tt{
  13. font-size: 32rpx;
  14. margin-bottom: 30rpx;
  15. }
  16. .top text{
  17. display: block;
  18. font-size: 26rpx;
  19. color: #666;
  20. margin-bottom: 20rpx;
  21. }
  22. .content{
  23. height: calc(100vh - 80rpx);
  24. overflow: auto;
  25. padding: 30rpx;
  26. }
  27. .list{
  28. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  29. border-radius: 20rpx;
  30. display: flex;
  31. /* padding: 20rpx; */
  32. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  33. /* margin: 0 20rpx 40rpx; */
  34. padding: 28rpx;
  35. background: #fff;
  36. position: relative;
  37. margin-bottom: 40rpx;
  38. }
  39. .list image{
  40. width: 25%;
  41. height: 210rpx;
  42. }
  43. .list>view{
  44. width: 75%;
  45. padding-left: 20rpx;
  46. vertical-align: middle;
  47. }
  48. .list .title{
  49. margin-bottom: 20rpx;
  50. text-overflow: ellipsis;
  51. overflow: hidden;
  52. white-space: nowrap;
  53. font-size: 28rpx;
  54. }
  55. .list text{
  56. color: #999;
  57. display: block;
  58. font-size: 26rpx;
  59. text-overflow: ellipsis;
  60. overflow: hidden;
  61. white-space: nowrap;
  62. margin-bottom: 20rpx;
  63. }
  64. .btn{
  65. width: 132rpx;
  66. height: 56rpx;
  67. background: #3780CD;
  68. border-radius: 6px;
  69. text-align: center;
  70. line-height: 56rpx;
  71. color: #fff;
  72. font-size: 26rpx;
  73. position: absolute;
  74. bottom: 28rpx;
  75. right: 28rpx;
  76. }
  77. .bg{
  78. position: fixed;
  79. width: 100%;
  80. height: 100vh;
  81. top: 0;
  82. left: 0;
  83. z-index: 99;
  84. background: rgba(0,0,0,.5);
  85. padding: 50rpx 0;
  86. overflow: auto;
  87. }
  88. .room{
  89. background: #fff;
  90. border-radius: 10rpx;
  91. padding: 30rpx;
  92. display: block;
  93. position: relative;
  94. width: 90%;
  95. margin: auto;
  96. }
  97. .room_title{
  98. display: block;
  99. text-align: center;
  100. margin-bottom: 10px;
  101. }
  102. .room image{
  103. width: 100%;
  104. border-radius: 10rpx;
  105. }
  106. .room_item{
  107. background: #f5f5f5;
  108. padding: 10rpx;
  109. margin: 10rpx 0;
  110. border-radius: 10rpx;
  111. color: #333;
  112. font-size: 24rpx;
  113. }
  114. .room_item view{
  115. display: flex;
  116. flex-wrap: wrap;
  117. padding: 3px 0;
  118. }
  119. .room_item text{
  120. width: 50%;
  121. font-size: 24rpx;
  122. color: #666;
  123. }
  124. .room_item input{
  125. width: 50%;
  126. display: inline-block;
  127. height: 30px;
  128. }
  129. .room_item label{
  130. line-height: 30px;
  131. display: inline-block;
  132. vertical-align: top;
  133. margin-right: 5px;
  134. font-size: 24rpx;
  135. color: #999;
  136. }
  137. picker{
  138. font-size: 24rpx;
  139. width: 50%;
  140. position: relative;
  141. top: 1px;
  142. }
  143. .order{
  144. display: block;
  145. width: 100%;
  146. height: 56rpx;
  147. background: #3780CD;
  148. border-radius: 6px;
  149. text-align: center;
  150. line-height: 60rpx;
  151. color: #fff;
  152. font-size: 26rpx;
  153. }
  154. .form_info{
  155. color: #333;
  156. font-size: 26rpx;
  157. display: block;
  158. line-height: 50rpx;
  159. margin-bottom: 50rpx;
  160. }
  161. .end{
  162. background: #fff;
  163. text-align: center;
  164. padding: 50px;
  165. }
  166. .post{
  167. width: 100% !important;
  168. background: #0580D3;
  169. color: #fff;
  170. display: block;
  171. font-size: 34rpx;
  172. height: 90rpx;
  173. line-height: 90rpx;
  174. padding: 0;
  175. border-radius: 18rpx;
  176. }
  177. .icon-small{
  178. float: right;
  179. }
  180. .rs{
  181. display: inline-block;
  182. width: 80%;
  183. }