index.scss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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. .column {
  95. flex: 0 0 59px; /* 每列平均分配空间 */
  96. display: flex;
  97. flex-direction: column; /* 列内部元素垂直排列 */
  98. padding: 10px 0px 0px 10px;
  99. text-align: left; /* 文本居中 */
  100. }
  101. .column2 {
  102. flex: 0 0 7px; /* 每列平均分配空间 */
  103. display: flex;
  104. flex-direction: column; /* 列内部元素垂直排列 */
  105. padding: 15px 20px 0px 0px;
  106. text-align: left; /* 文本居中 */
  107. }
  108. }
  109. }
  110. .selected{
  111. position: absolute;
  112. width: 100px;
  113. height: 130px;
  114. z-index: 999;
  115. background-color: #fff;
  116. flex: auto;
  117. overflow: auto;
  118. border-radius: 5px;
  119. .textInfo{
  120. padding: 5px;
  121. margin: 5px 0;
  122. text-align: center;
  123. font-size: 12px;
  124. }
  125. }
  126. }
  127. .section2{
  128. width: 100%;
  129. min-height: 132px;
  130. background-color: #FFF;
  131. border-radius: 10px;
  132. margin: -28px auto;
  133. position: relative;
  134. display: flex;
  135. flex-direction: column; /* 子元素垂直排列 */
  136. align-items: center; /* 子元素在交叉轴上居中对齐 */
  137. .row {
  138. width: 95%; /* 行宽度占满容器 */
  139. padding: 10px 20px; /* 行内边距 */
  140. text-align: left; /* 文本居中 */
  141. border-bottom: 1px dotted #ccc; /* 每行的底部边框 */
  142. margin-top: 10px;
  143. margin-left: 5px;
  144. margin-right: 5px;
  145. display: flex;
  146. flex-wrap: nowrap;
  147. }
  148. .divider {
  149. width: 80%; /* 分割线宽度 */
  150. height: 2px; /* 分割线高度 */
  151. background-color: #000; /* 分割线颜色 */
  152. margin: 20px 0; /* 分割线的上下外边距 */
  153. }
  154. }
  155. .section3{
  156. width: 100%;
  157. min-height: 502px;
  158. .item{
  159. width: 100%;
  160. height: 180px;
  161. background-color: #FFF;
  162. margin-top: 5px;
  163. border-radius: 5px;
  164. display: flex;
  165. .item_img{
  166. margin: 15px 0px 10px 10px;
  167. width: 222px;
  168. height: 147px;
  169. border-radius: 7px;
  170. overflow: hidden;
  171. flex: 0 0 200px;
  172. img{
  173. width: 100%;
  174. height: 100%;
  175. }
  176. }
  177. .item_info{
  178. flex: 0 0 45%;
  179. line-height: 22px;
  180. height: 80px;
  181. .title{
  182. font-size: 14px;
  183. padding: 10px 10px 0px 15px;
  184. font-weight: bold;
  185. height: 75px;
  186. overflow: hidden;
  187. margin-bottom: 7px;
  188. }
  189. }
  190. }
  191. }
  192. .time_yuyue{
  193. width: 95%;
  194. padding: 2px 0px 0px 15px;
  195. font-size: 12px;
  196. color: #666666;
  197. display: flex;
  198. line-height: 18px;
  199. height: 30px;
  200. flex-wrap: wrap;
  201. .ico{
  202. padding-top: 2px;
  203. flex:0 0 20px;
  204. //padding-left: 5px;
  205. }
  206. .time{
  207. flex:0 0 80%;
  208. text-align: left;
  209. }
  210. .didian{
  211. width: 200px;
  212. flex:0 0 80%;
  213. text-align: left;
  214. }
  215. }
  216. .adres_yuyue{
  217. display: flex;
  218. }
  219. .yuyue_btn{
  220. margin-left: 100px;
  221. margin-top: 12px;
  222. image{
  223. justify-content: flex-end;
  224. }
  225. }
  226. }
  227. .slide-image{
  228. width: 100%;
  229. height: 300px;
  230. }