index.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. .page-section {
  35. margin-top: 44px;
  36. height: 94vh;
  37. }
  38. .particulars {
  39. width: 100%;
  40. height: 160rpx;
  41. position: absolute;
  42. bottom: 0;
  43. }
  44. .particulars .search_btn_top {
  45. width: 100%;
  46. height: 80rpx;
  47. line-height: 80rpx;
  48. font-size: 32rpx;
  49. padding-left: 30rpx;
  50. box-sizing: border-box;
  51. }
  52. .particulars .search_btn_bot {
  53. width: 100%;
  54. display: -webkit-box;
  55. display: -webkit-flex;
  56. display: flex;
  57. }
  58. .particulars .particulars_par {
  59. background-color: #F1F1F1;
  60. text-align: center;
  61. width: 50%;
  62. height: 80rpx;
  63. line-height: 80rpx;
  64. font-size: 28rpx;
  65. }
  66. .particulars .particulars_ser {
  67. background-color: #57C87B;
  68. text-align: center;
  69. width: 50%;
  70. height: 80rpx;
  71. line-height: 80rpx;
  72. font-size: 28rpx;
  73. color: #FFFFFF;
  74. }
  75. .distri_ser {
  76. position: absolute;
  77. bottom: 0rpx;
  78. right: 0px;
  79. width: 100%;
  80. height: 440rpx;
  81. background-color: #FFFFFF;
  82. }
  83. .distri_ser .distri_ser_input {
  84. width: 90%;
  85. margin: 20rpx auto;
  86. display: -webkit-box;
  87. display: -webkit-flex;
  88. display: flex;
  89. background-color: #F1F1F1;
  90. height: 60rpx;
  91. border-radius: 30rpx;
  92. padding: 10rpx 20rpx;
  93. box-sizing: border-box;
  94. }
  95. .distri_ser .distri_ser_input input {
  96. width: 90%;
  97. font-size: 28rpx;
  98. margin-right: 20rpx;
  99. }
  100. .distri_ser .distri_ser_title {
  101. width: 90%;
  102. margin: 0 auto;
  103. padding-left: 20rpx;
  104. border-left: 4rpx solid #57C87B;
  105. font-size: 28rpx;
  106. }
  107. .distri_ser .distri_ser_type {
  108. width: 90%;
  109. margin: 20rpx auto;
  110. display: -webkit-box;
  111. display: -webkit-flex;
  112. display: flex;
  113. -webkit-justify-content: space-around;
  114. justify-content: space-around;
  115. }
  116. .distri_ser .distri_ser_type .type_items {
  117. height: 120rpx;
  118. width: 120rpx;
  119. padding: 20rpx 0;
  120. }
  121. .distri_ser .distri_ser_type .type_items_bor {
  122. height: 120rpx;
  123. width: 120rpx;
  124. border: 2rpx solid #57C87B;
  125. padding: 20rpx 0;
  126. }
  127. .distri_ser .distri_ser_type .type_items_img {
  128. width: 70rpx;
  129. height: 70rpx;
  130. margin-left: 20rpx;
  131. }
  132. .distri_ser .distri_ser_type .type_items_p {
  133. font-size: 24rpx;
  134. text-align: center;
  135. }
  136. .search_btn {
  137. width: 100%;
  138. display: -webkit-box;
  139. display: -webkit-flex;
  140. display: flex;
  141. }
  142. .search_btn .btn_f,
  143. .search_btn .btn_t {
  144. width: 50%;
  145. text-align: center;
  146. height: 80rpx;
  147. line-height: 80rpx;
  148. font-size: 28rpx;
  149. }
  150. .search_btn .btn_f {
  151. background-color: #F1F1F1;
  152. }
  153. .search_btn .btn_t {
  154. background-color: #57C87B;
  155. color: #FFFFFF;
  156. }