hotel.wxss 2.4 KB

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