hotel.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. }
  101. .room image{
  102. width: 100%;
  103. border-radius: 10rpx;
  104. }
  105. .room_item{
  106. background: #f5f5f5;
  107. padding: 10rpx;
  108. margin: 10rpx 0;
  109. border-radius: 10rpx;
  110. color: #333;
  111. font-size: 24rpx;
  112. }
  113. .room_item view{
  114. display: flex;
  115. flex-wrap: wrap;
  116. padding: 3px 0;
  117. }
  118. .room_item text{
  119. width: 50%;
  120. font-size: 22rpx;
  121. color: #666;
  122. }
  123. .room_item input{
  124. width: 50%;
  125. display: inline-block;
  126. height: 30px;
  127. }
  128. .room_item label{
  129. line-height: 30px;
  130. display: inline-block;
  131. vertical-align: top;
  132. margin-right: 5px;
  133. font-size: 24rpx;
  134. color: #999;
  135. }
  136. picker{
  137. font-size: 24rpx;
  138. width: 50%;
  139. position: relative;
  140. top: 4px;
  141. }
  142. .order{
  143. display: block;
  144. width: 100%;
  145. height: 56rpx;
  146. background: #3780CD;
  147. border-radius: 6px;
  148. text-align: center;
  149. line-height: 60rpx;
  150. color: #fff;
  151. font-size: 26rpx;
  152. }