index.wxss 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. /**index.wxss**/
  2. .search{
  3. height: 64rpx;
  4. background: #fff;
  5. border-radius: 15rpx;
  6. width: 100%;
  7. padding: 0 24rpx;
  8. line-height: 64rpx;
  9. color: #C8C8C8;
  10. }
  11. .search input{
  12. padding: 0;
  13. }
  14. .banner{
  15. margin: 20rpx 0;
  16. width: 100%;
  17. box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.08);
  18. height: 240rpx;
  19. }
  20. .banner swiper-item{
  21. border-radius: 20rpx;
  22. /* border: 1px solid red; */
  23. overflow: hidden;
  24. }
  25. .banner swiper-item image{
  26. width: 100%;
  27. height: 100%;
  28. }
  29. .banner .wx-swiper-dots{position:relative;left: unset!important;right: 0;}
  30. .wx-swiper-dots.wx-swiper-dots-horizontal{
  31. /* margin-bottom: rpx; */
  32. }
  33. .banner .swiper-item{
  34. position: absolute;
  35. z-index: 9;
  36. bottom: 15rpx;
  37. left: 0;
  38. color: #fff;
  39. background: #1934FD;
  40. opacity: 0.37;
  41. line-height: 58rpx;
  42. padding: 0 30rpx;
  43. }
  44. .tab{
  45. display: flex;
  46. justify-content: space-between;
  47. margin-bottom: 20rpx;
  48. }
  49. .tab text{
  50. font-size: 30rpx;
  51. color: #666;
  52. }
  53. .tab .active{
  54. color: #0077FF;
  55. }
  56. scroll-view{
  57. height: 100%;
  58. }
  59. .content{
  60. background: #fff;
  61. border-radius: 20rpx;
  62. /* padding: 20rpx 0rpx; */
  63. position: relative;
  64. }
  65. .zm{
  66. position: fixed;
  67. right: 12rpx;
  68. top: 480rpx;
  69. bottom:40rpx;
  70. display: flex;
  71. flex-direction: column;
  72. justify-content: space-between;
  73. /* line-height: 12px; */
  74. text-align: center;
  75. z-index: 999;
  76. }
  77. .zm view{
  78. color: #3780CD;
  79. font-size: 20rpx;
  80. line-height: 12px;
  81. /* border: 1px solid red; */
  82. /* width: 60rpx; */
  83. }
  84. .tt{
  85. margin: 20rpx;
  86. font-size: 24rpx;
  87. color: #999999;
  88. }
  89. .list{
  90. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  91. border-radius: 20rpx;
  92. display: flex;
  93. padding: 20rpx;
  94. box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2);
  95. margin: 0 20rpx 40rpx;
  96. }
  97. .list image{
  98. width: 25%;
  99. height: 200rpx;
  100. }
  101. .list>view{
  102. width: 75%;
  103. padding-left: 30rpx;
  104. vertical-align: middle;
  105. }
  106. .list .title{
  107. margin-bottom: 20rpx;
  108. text-overflow: ellipsis;
  109. overflow: hidden;
  110. white-space: nowrap;
  111. }
  112. .list text{
  113. color: #999;
  114. display: block;
  115. text-overflow: ellipsis;
  116. overflow: hidden;
  117. white-space: nowrap;
  118. font-size: 26rpx;
  119. line-height: 50rpx;
  120. }
  121. .list .company{
  122. overflow: visible;
  123. white-space: pre-wrap;
  124. margin-top: 40rpx;
  125. font-size: 28rpx;
  126. }
  127. @media(max-height:667px){
  128. .zm{
  129. top: 425rpx;
  130. }
  131. }
  132. .hint_bok{
  133. position:fixed;
  134. top:50%;
  135. left:50%;
  136. transform:translate(-50%,-50%);
  137. background:rgba(0,0,0,.5);
  138. color:#fff;
  139. width:100rpx;
  140. border-radius:10rpx;
  141. text-align:center;
  142. padding:15rpx 0;
  143. font-size:54rpx;
  144. }
  145. .nav{
  146. position: fixed;
  147. top: 430rpx;
  148. right: 0rpx;
  149. width:30rpx;
  150. z-index:99;
  151. }
  152. .nav.touchmove{
  153. background:#ddd;
  154. }
  155. .nav view{
  156. font-size: 20rpx;
  157. color: #4A80C7;
  158. text-align: center;
  159. line-height: 26rpx;
  160. }
  161. .dw{
  162. border-radius: 20rpx;
  163. overflow: hidden;
  164. margin-bottom: 60rpx;
  165. }
  166. .dw_title{
  167. background: #D9E5F1;
  168. padding: 20rpx 30rpx;
  169. font-size: 32rpx;
  170. color: #666;
  171. position: relative;
  172. }
  173. .dw_title view{
  174. display: inline-block;
  175. width: 90%;
  176. font-size: 32rpx;
  177. color: #666;
  178. }
  179. .dw_title text{
  180. position: absolute;
  181. font-size: 30rpx;
  182. right: 50rpx;
  183. top: 0;
  184. bottom: 0;
  185. margin: auto;
  186. height: 44rpx;
  187. /* line-height: 50rpx; */
  188. }
  189. .dw_list{
  190. background: #fff;
  191. padding: 0 30rpx;
  192. }
  193. .dw_list navigator{
  194. padding: 20rpx 0;
  195. border-bottom: 1px solid #E4E4E4;
  196. }
  197. .dw_list navigator view{
  198. font-size: 32rpx;
  199. color: #666;
  200. margin-bottom: 15rpx;
  201. }
  202. .dw_list text{
  203. display: block;
  204. font-size: 26rpx;
  205. color: #999;
  206. overflow: hidden;
  207. text-overflow: ellipsis;
  208. display: -webkit-box;
  209. -webkit-line-clamp: 2;
  210. -webkit-box-orient: vertical;
  211. white-space: normal;
  212. }
  213. .top{
  214. color: #666;
  215. font-size: 30rpx;
  216. text-align: right;
  217. padding: 20rpx 0;
  218. }
  219. .cancel{
  220. color: #1682DA;
  221. }
  222. .dw_title image{
  223. width: 20rpx;
  224. height: 20rpx;
  225. position: absolute;
  226. top: 0;
  227. bottom: 0;
  228. right: 30rpx;
  229. margin: auto;
  230. }
  231. .thead{
  232. display: flex;
  233. justify-content: space-between;
  234. margin-bottom: 20rpx;
  235. }
  236. .thead text{
  237. font-size: 30rpx;
  238. color: #999;
  239. }
  240. .tbody{
  241. background: #fff;
  242. border-radius: 14rpx;
  243. padding: 20rpx 20rpx 1rpx;
  244. margin-bottom: 20rpx;
  245. }
  246. .tr{
  247. display: flex;
  248. justify-content: space-between;
  249. margin-bottom: 20rpx;
  250. }
  251. .tr text{
  252. font-size: 32rpx;
  253. color: #666;
  254. }
  255. .tr .per{
  256. color: #DF4E2E;
  257. font-size: 30rpx;
  258. position: relative;
  259. padding-right: 25rpx;
  260. }
  261. .up{
  262. width: 0;
  263. height: 0;
  264. border: 10rpx solid transparent;
  265. border-bottom: 16rpx solid #DF4E2E;
  266. position: absolute;
  267. right: 0;
  268. top: 2rpx;
  269. }
  270. .myswiper{
  271. height: calc(100vh - 446rpx);
  272. }
  273. .more{
  274. text-align:center;
  275. color:#999;
  276. padding:5rpx 0;
  277. }
  278. .tab_container {
  279. flex-direction: row
  280. }
  281. .tab_container, .tab_item {
  282. display: flex;
  283. justify-content: space-between;
  284. align-items: center;
  285. box-sizing: border-box
  286. }
  287. .tab_item {
  288. flex-direction: column;
  289. position: relative;
  290. }
  291. .tab_item_checked, .tab_item_normal, .tab_title {
  292. width: 100%;
  293. line-height: 48rpx;
  294. font-size: 24rpx;
  295. flex-grow: 1;
  296. padding: 12rpx 0;
  297. text-align: center;
  298. box-sizing: border-box;
  299. font-weight: bold;
  300. border-bottom: 1px solid #dce0e6
  301. }
  302. .tab_item_checked {
  303. color: #0077FF;
  304. }
  305. .tab_item_normal {
  306. color: #1A173B;
  307. }
  308. .tab-line {
  309. position: absolute;
  310. bottom: 0;
  311. left: 50%;
  312. margin-left: -25rpx;
  313. z-index: 99;
  314. background-color: #0077FF;
  315. width: 50rpx;
  316. height: 6rpx;
  317. }
  318. .date{
  319. text-align: center;
  320. }
  321. .day{
  322. background-color: #F9FAFB;
  323. border-radius:30rpx;
  324. height: 52rpx;
  325. display: inline-block;
  326. padding: 0 20rpx;
  327. font-size: 24rpx;
  328. line-height: 52rpx;
  329. text-align: center;
  330. color: #555555;
  331. font-weight: 600;
  332. margin:15rpx auto;
  333. }
  334. .bg{
  335. position: fixed;
  336. bottom: 0;
  337. left: 0;
  338. width: 100%;
  339. height: 100vh;
  340. background: rgba(0, 0, 0, 0.5);
  341. z-index: 9999;
  342. }
  343. .months{
  344. position: absolute;
  345. bottom: 0;
  346. left: 0;
  347. width: 100%;
  348. background:#fff;
  349. text-align: center;
  350. }
  351. .months view{
  352. padding: 20rpx 0;
  353. color: #333;
  354. position: relative;
  355. }
  356. .months .select{
  357. color: #0077FF;
  358. }
  359. .months .btn_title{
  360. padding: 20rpx;
  361. text-align: left;
  362. border-bottom:1px solid #d9d9d9;
  363. }
  364. .qx{
  365. color: #999;
  366. font-size: 28rpx;
  367. }
  368. .sure{
  369. float: right;
  370. color: #07c160;
  371. font-size: 28rpx;
  372. }
  373. .icon-small{
  374. position: absolute;
  375. color:#0077FF;
  376. }
  377. .picker_sub{
  378. padding: 10rpx;
  379. text-align: center;
  380. color: #1A173B;
  381. font-weight: bold;
  382. }
  383. .num_list{
  384. display: flex;
  385. justify-content: space-between;
  386. padding: 10rpx 15rpx;
  387. border-bottom: 1px solid #f5f5f5;
  388. margin: 20rpx 0;
  389. }
  390. .num_list view{
  391. line-height: 80rpx;
  392. font-size: 24rpx;
  393. }
  394. .num_list image{
  395. width: 60rpx;
  396. height: 80rpx;
  397. /* margin: 0 10rpx; */
  398. }
  399. .num{
  400. width: 200rpx;
  401. }
  402. .num text{
  403. color: #999;
  404. margin-left: 10rpx;
  405. font-size: 24rpx;
  406. }
  407. .j_name{
  408. width: 50%;
  409. overflow: hidden;
  410. white-space: nowrap;
  411. text-overflow: ellipsis;
  412. }
  413. .order{
  414. color: #999;
  415. width: 50rpx;
  416. text-align: center;
  417. }
  418. .order image{
  419. width: 40rpx;
  420. height: 40rpx;
  421. position: relative;
  422. top: 4rpx;
  423. }
  424. .zk{
  425. width: 20rpx;
  426. height: 20rpx;
  427. }
  428. .date .zk{
  429. margin-left: 5rpx;
  430. position: relative;
  431. top: 3rpx;
  432. }
  433. .jdesc{
  434. line-height: 48rpx;
  435. letter-spacing: 4rpx;
  436. }