index.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .utabs {
  28. width: 100%;
  29. position: fixed;
  30. top: 0px;
  31. z-index: 100;
  32. background-color: #FFFFFF;
  33. }
  34. .LocationAndDetails {
  35. width: 100%;
  36. height: 60rpx;
  37. position: fixed;
  38. top: 54px;
  39. }
  40. .LocationAndDetails .search_bot_input {
  41. width: 90%;
  42. height: 54rpx;
  43. background-color: #E4E4E4;
  44. border-radius: 27rpx;
  45. position: relative;
  46. box-sizing: border-box;
  47. padding-top: 8rpx;
  48. margin: 0 auto;
  49. }
  50. .LocationAndDetails .search_bot_input input {
  51. width: 85%;
  52. font-size: 26rpx;
  53. padding-left: 40rpx;
  54. box-sizing: border-box;
  55. }
  56. .LocationAndDetails .search_bot_input .icon {
  57. position: absolute;
  58. top: 8rpx;
  59. right: 26rpx;
  60. }
  61. .page-section {
  62. margin-top: 100px;
  63. height: 80vh;
  64. }
  65. .page-section .map {
  66. width: 100%;
  67. height: 100%;
  68. }
  69. .particulars {
  70. width: 100%;
  71. height: 160rpx;
  72. position: absolute;
  73. bottom: 0;
  74. }
  75. .particulars .search_btn_top {
  76. width: 100%;
  77. height: 80rpx;
  78. line-height: 80rpx;
  79. font-size: 32rpx;
  80. padding-left: 30rpx;
  81. box-sizing: border-box;
  82. }
  83. .particulars .search_btn_bot {
  84. width: 100%;
  85. display: -webkit-box;
  86. display: -webkit-flex;
  87. display: flex;
  88. }
  89. .distri_ser {
  90. position: absolute;
  91. bottom: 0rpx;
  92. right: 0px;
  93. width: 100%;
  94. height: 440rpx;
  95. background-color: #FFFFFF;
  96. }
  97. .distri_ser .distri_ser_input {
  98. width: 90%;
  99. margin: 20rpx auto;
  100. display: -webkit-box;
  101. display: -webkit-flex;
  102. display: flex;
  103. background-color: #F1F1F1;
  104. height: 60rpx;
  105. border-radius: 30rpx;
  106. padding: 10rpx 20rpx;
  107. box-sizing: border-box;
  108. }
  109. .distri_ser .distri_ser_input input {
  110. width: 90%;
  111. font-size: 28rpx;
  112. margin-right: 20rpx;
  113. }
  114. .distri_ser .distri_ser_title {
  115. width: 90%;
  116. margin: 0 auto;
  117. padding-left: 20rpx;
  118. border-left: 4rpx solid #57C87B;
  119. font-size: 28rpx;
  120. }
  121. .distri_ser .distri_ser_type {
  122. width: 90%;
  123. margin: 20rpx auto;
  124. display: -webkit-box;
  125. display: -webkit-flex;
  126. display: flex;
  127. -webkit-justify-content: space-around;
  128. justify-content: space-around;
  129. }
  130. .distri_ser .distri_ser_type .type_items {
  131. height: 120rpx;
  132. width: 120rpx;
  133. padding: 20rpx 0;
  134. }
  135. .distri_ser .distri_ser_type .type_items_bor {
  136. height: 120rpx;
  137. width: 120rpx;
  138. border: 2rpx solid #57C87B;
  139. padding: 20rpx 0;
  140. }
  141. .distri_ser .distri_ser_type .type_items_img {
  142. width: 70rpx;
  143. height: 70rpx;
  144. margin-left: 20rpx;
  145. }
  146. .distri_ser .distri_ser_type .type_items_p {
  147. font-size: 24rpx;
  148. text-align: center;
  149. }
  150. .search_btn {
  151. width: 100%;
  152. display: -webkit-box;
  153. display: -webkit-flex;
  154. display: flex;
  155. }
  156. .search_btn .btn_f,
  157. .search_btn .btn_t {
  158. width: 50%;
  159. text-align: center;
  160. height: 80rpx;
  161. line-height: 80rpx;
  162. font-size: 28rpx;
  163. }
  164. .search_btn .btn_f {
  165. background-color: #F1F1F1;
  166. }
  167. .search_btn .btn_t {
  168. background-color: #57C87B;
  169. color: #FFFFFF;
  170. }