index.scss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. .top-bar {
  2. /* background-color: #745A42; */
  3. background-color: #593320;
  4. width: 100vw;
  5. /*兼容 IOS<11.2*/
  6. padding-bottom: constant(safe-area-inset-bottom);
  7. /*兼容 IOS>11.2*/
  8. padding-bottom: env(safe-area-inset-bottom);
  9. height: 120px;
  10. display: flex;
  11. flex-flow: row nowrap;
  12. justify-tab-bar: space-around;
  13. align-items: center;
  14. padding-top: 30px;
  15. position: fixed;
  16. left: 0;
  17. top: 0;
  18. z-index: 900;
  19. }
  20. .row {
  21. padding-top: 40px;
  22. display: flex;
  23. justify-content: space-between;
  24. width: 100%;
  25. }
  26. .column {
  27. padding: 10px 0px 0px 0px;
  28. text-align: left; /* 文本居中 */
  29. width: 100%;
  30. }
  31. .column1 { width: 24%; padding-left: 30px; }
  32. .column2 { width: 48%;padding-left:20px }
  33. .column3 { width: 20px; padding-left:10px; padding-top: 12px;}
  34. .column4 { width: 20%;margin-right: 30px; }
  35. .input-box {
  36. border: 1px solid #CCC; /* 白色边框 */
  37. border-radius: 10px; /* 边框弧形角度 */
  38. padding: 0px 5px; /* 内边距 */
  39. height: 24px;
  40. color: #FFF;
  41. }
  42. .input-box::placeholder {
  43. color: #FFF; /* 占位符文字颜色 */
  44. }
  45. .container{
  46. margin-top: 120px;
  47. background-color: #E5E5E5;
  48. min-height: 760px;
  49. width: 100%;
  50. .banner{
  51. width:100%;
  52. }
  53. .section1{
  54. width: 100%;
  55. min-height: 90px;
  56. background-color: #FFF;
  57. margin: 3px auto;
  58. // padding-bottom:10px ;
  59. .serow {
  60. display: flex; /* 设置为Flex布局 */
  61. width: 95%; /* 行宽度占满容器 */
  62. margin: 0 auto;
  63. }
  64. .column {
  65. flex: 1; /* 每列平均分配空间 */
  66. display: flex;
  67. flex-direction: column; /* 列内部元素垂直排列 */
  68. padding: 20px 3px;
  69. text-align: center; /* 文本居中 */
  70. }
  71. .cell {
  72. flex: 1; /* 在列内部,每行平均分配空间 */
  73. font-size: 16px;
  74. color: #666666;
  75. display: flex;
  76. font-weight: bold;
  77. padding: 0px 0px; /* 内边距 */
  78. .cl{
  79. text-align: left; /* 文本靠左 */
  80. }
  81. }
  82. .active{
  83. color: rgb(160, 124, 90);
  84. font-weight: bold;
  85. }
  86. .full-row {
  87. font-size: 14px;
  88. margin-top: -20px;
  89. text-align: center; /* 文本居中 */
  90. display: flex;
  91. width: 70%;
  92. .rows{
  93. display: flex;
  94. align-items: center;
  95. .column {
  96. margin-right: 10px;
  97. //flex: 0 0 100px; /* 每列平均分配空间 */
  98. display: flex;
  99. flex-direction: column; /* 列内部元素垂直排列 */
  100. padding: 10px 0px 0px 10px;
  101. text-align: left; /* 文本居中 */
  102. }
  103. .column2 {
  104. flex: 0 0 7px; /* 每列平均分配空间 */
  105. display: flex;
  106. flex-direction: column; /* 列内部元素垂直排列 */
  107. padding: 15px 20px 0px 0px;
  108. text-align: left; /* 文本居中 */
  109. }
  110. }
  111. }
  112. .selected{
  113. position: absolute;
  114. width: 100px;
  115. min-height: 150px;
  116. z-index: 999;
  117. background-color: #fff;
  118. flex: auto;
  119. overflow: auto;
  120. border-radius: 5px;
  121. .textInfo{
  122. padding: 5px;
  123. margin: 5px 0;
  124. text-align: center;
  125. font-size: 12px;
  126. }
  127. }
  128. }
  129. .section2{
  130. width: 100%;
  131. min-height: 132px;
  132. background-color: #FFF;
  133. border-radius: 10px;
  134. margin: -28px auto;
  135. position: relative;
  136. display: flex;
  137. flex-direction: column; /* 子元素垂直排列 */
  138. align-items: center; /* 子元素在交叉轴上居中对齐 */
  139. .row {
  140. width: 95%; /* 行宽度占满容器 */
  141. padding: 10px 20px; /* 行内边距 */
  142. text-align: left; /* 文本居中 */
  143. border-bottom: 1px dotted #ccc; /* 每行的底部边框 */
  144. margin-top: 10px;
  145. margin-left: 5px;
  146. margin-right: 5px;
  147. display: flex;
  148. flex-wrap: nowrap;
  149. }
  150. .divider {
  151. width: 80%; /* 分割线宽度 */
  152. height: 2px; /* 分割线高度 */
  153. background-color: #000; /* 分割线颜色 */
  154. margin: 20px 0; /* 分割线的上下外边距 */
  155. }
  156. }
  157. .section3{
  158. width: 100%;
  159. min-height: 502px;
  160. .item{
  161. width: 100%;
  162. height: 180px;
  163. background-color: #FFF;
  164. margin-top: 5px;
  165. border-radius: 5px;
  166. display: flex;
  167. .item_img{
  168. margin: 15px 0px 10px 10px;
  169. width: 222px;
  170. height: 147px;
  171. border-radius: 7px;
  172. overflow: hidden;
  173. flex: 0 0 200px;
  174. img{
  175. width: 100%;
  176. height: 100%;
  177. }
  178. }
  179. .item_info{
  180. flex: 0 0 45%;
  181. line-height: 22px;
  182. height: 80px;
  183. .title{
  184. font-size: 14px;
  185. padding: 10px 10px 0px 15px;
  186. font-weight: bold;
  187. height: 75px;
  188. overflow: hidden;
  189. margin-bottom: 7px;
  190. }
  191. }
  192. }
  193. }
  194. .time_yuyue{
  195. width: 95%;
  196. padding: 2px 0px 0px 15px;
  197. font-size: 12px;
  198. color: #666666;
  199. display: flex;
  200. line-height: 18px;
  201. height: 30px;
  202. flex-wrap: wrap;
  203. .ico{
  204. padding-top: 2px;
  205. flex:0 0 20px;
  206. //padding-left: 5px;
  207. }
  208. .time{
  209. flex:0 0 80%;
  210. text-align: left;
  211. }
  212. .didian{
  213. width: 200px;
  214. flex:0 0 80%;
  215. text-align: left;
  216. }
  217. }
  218. .adres_yuyue{
  219. display: flex;
  220. }
  221. .yuyue_btn{
  222. margin-left: 100px;
  223. margin-top: 12px;
  224. image{
  225. justify-content: flex-end;
  226. }
  227. }
  228. }
  229. .slide-image{
  230. width: 100%;
  231. height: 300px;
  232. }