main.css 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. -webkit-overflow-scrolling: touch; }
  7. ul li {
  8. list-style-type: none; }
  9. a {
  10. text-decoration: none; }
  11. img {
  12. max-width: 100%;
  13. display: block; }
  14. h1,
  15. h2,
  16. h3,
  17. h4,
  18. h5,
  19. h6 {
  20. font-weight: 400; }
  21. html, body, #app, .view {
  22. width: 100%;
  23. height: 100%;
  24. overflow: hidden;
  25. background: #fff; }
  26. .flex {
  27. display: flex !important;
  28. display: -webkit-flex !important; }
  29. .flex.a-center {
  30. align-items: center; }
  31. .flex.a-end {
  32. align-items: flex-end; }
  33. .flex.j-center {
  34. justify-content: center; }
  35. .flex.j-left{
  36. justify-content: left;}
  37. .flex.j-end {
  38. justify-content: flex-end; }
  39. .flex.jlr {
  40. justify-content: space-between; }
  41. .flex.col {
  42. flex-direction: column; }
  43. .flex.wrap {
  44. flex-wrap: wrap; }
  45. .flex .fx1 {
  46. flex: 1; }
  47. .header {
  48. background: #00a0ea;
  49. color: #fff;
  50. width: 100%;
  51. height: 0.86rem;
  52. position: fixed;
  53. left: 0;
  54. top: 0;
  55. z-index: 2;
  56. font-size: 0.32rem; }
  57. .header .icon-back {
  58. font-size: 0.3rem;
  59. color: #fff;
  60. position: absolute;
  61. left: 5%;
  62. top: 50%;
  63. transform: translateY(-50%); }
  64. .header .toobla {
  65. position: absolute;
  66. right: 5%;
  67. top: 50%;
  68. transform: translateY(-50%); }
  69. .header .toobla .icon1 {
  70. width: 0.5rem;
  71. height: 0.5rem;
  72. background: url(../img/images/too_01.png) no-repeat;
  73. background-size: 100% 100%; }
  74. .header .toobla .icon2 {
  75. width: 0.5rem;
  76. margin-left: 0.3rem;
  77. height: 0.5rem;
  78. background: url(../img/images/too_02.png) no-repeat;
  79. background-size: 100% 100%; }
  80. .header .toobla .icon3 {
  81. width: 0.5rem;
  82. height: 0.5rem;
  83. background: url(../img/images/riliIcon.png) no-repeat center center;
  84. background-size: 0.32rem 0.32rem; }
  85. .header .toobla .icon4 {
  86. width: 0.42rem;
  87. height: 0.42rem;
  88. background: url(../img/images/ewmSour.png) no-repeat;
  89. background-size: 100% 100%; }
  90. .shopHomebar {
  91. width: 100%;
  92. height: 1.4rem;
  93. background: #00a0ea; }
  94. .shopHomebar .item {
  95. flex: 1;
  96. color: #fff;
  97. font-size: 0.28rem; }
  98. .shopHomebar .item .icon {
  99. background: url(../img/shopIcon.png) no-repeat;
  100. background-size: 1.5rem auto; }
  101. .shopHomebar .item b {
  102. display: block;
  103. width: 0.5rem;
  104. height: 0.5rem;
  105. margin-bottom: 0.12rem; }
  106. .shopHomebar .item b.i1 {
  107. background-position: 0 0; }
  108. .shopHomebar .item b.i2 {
  109. background-position: -0.5rem 0; }
  110. .shopHomebar .item b.i3 {
  111. background-position: -1rem 0; }
  112. .banner {
  113. width: 100%;
  114. overflow: hidden;
  115. padding: 0px 0.15rem;
  116. height: 2.88rem;
  117. background: url(../img/shopBanner.png) no-repeat;
  118. background-size: 100% auto; }
  119. .banner .my-swipe, .banner img {
  120. width: 100%;
  121. height: 100%; }
  122. .banner .van-swipe-item {
  123. border-radius: 5px;
  124. overflow: hidden;
  125. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); }
  126. .homeTipbox {
  127. width: 100%;
  128. height: 0.65rem;
  129. padding: 0px 0.15rem;
  130. margin: 0.2rem 0px; }
  131. .homeTipbox .laba {
  132. width: 0.45rem;
  133. height: 0.31rem;
  134. margin: 0.3rem 0px;
  135. background: url(../img/laba.png) no-repeat;
  136. background-size: 100% 100%; }
  137. .homeTipbox .labaInfos {
  138. flex: 1;
  139. padding-left: 0.3rem;
  140. font-size: 0.26rem;
  141. color: #00a0ea; }
  142. .menu {
  143. width: 100%;
  144. background: #fff;
  145. margin-bottom: 0.3rem; }
  146. .menu .item {
  147. width: 25%;
  148. margin-bottom: 0.2rem; }
  149. .menu .item b {
  150. width: 0.8rem;
  151. height: 0.8rem; }
  152. .menu .item b.i1 {
  153. background: url(../img/images/menu_01.png) no-repeat;
  154. background-size: 100% 100%; }
  155. .menu .item b.i2 {
  156. background: url(../img/images/menu_02.png) no-repeat;
  157. background-size: 100% 100%; }
  158. .menu .item b.i3 {
  159. background: url(../img/images/menu_03.png) no-repeat;
  160. background-size: 100% 100%; }
  161. .menu .item b.i4 {
  162. background: url(../img/images/menu_04.png) no-repeat;
  163. background-size: 100% 100%; }
  164. .menu .item b.icon {
  165. background: url(../img/images/iconMenu.png) no-repeat;
  166. background-size: 6.4rem 0.8rem; }
  167. .menu .item b.icon.c1 {
  168. background-position: 0px 0px; }
  169. .menu .item b.icon.c2 {
  170. background-position: -0.8rem 0px; }
  171. .menu .item b.icon.c3 {
  172. background-position: -1.6rem 0px; }
  173. .menu .item b.icon.c4 {
  174. background-position: -2.4rem 0px; }
  175. .menu .item b.icon.c5 {
  176. background-position: -3.2rem 0px; }
  177. .menu .item b.icon.c6 {
  178. background-position: -4.0rem 0px; }
  179. .menu .item b.icon.c7 {
  180. background-position: -4.8rem 0px; }
  181. .menu .item b.icon.c8 {
  182. background-position: -5.6rem 0px; }
  183. .menu .item p {
  184. font-size: 0.3rem;
  185. color: #000;
  186. margin-top: 0.2rem; }
  187. .router {
  188. overflow-y:scroll }
  189. .workField {
  190. width: 100%;
  191. height: 0.8rem;
  192. padding: 0px 0.15rem;
  193. font-size: 0.3rem;
  194. color: #000;
  195. box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1); }
  196. .workField .sup {
  197. width: 0.5rem;
  198. margin-right: 0.2rem;
  199. height: 0.5rem;
  200. background: url(../img/sup.png) no-repeat;
  201. background-size: 100% 100%; }
  202. .workField .case {
  203. width: 0.5rem;
  204. margin-right: 0.2rem;
  205. height: 0.5rem; }
  206. .workFieldContainer {
  207. padding: 0.2rem 0.28rem; }
  208. .workFieldContainer .item {
  209. width: 3.42rem;
  210. height: 1.71rem;
  211. margin-bottom: 0.2rem; }
  212. .workFieldContainer .item img {
  213. width: 100%;
  214. height: 100%; }
  215. .anzhuangCase {
  216. padding: 0.2rem 0.28rem; }
  217. .anzhuangCase .item {
  218. width: 3.42rem;
  219. height: 3.28rem;
  220. border-radius: 5px;
  221. overflow: hidden;
  222. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1); }
  223. .anzhuangCase .item img {
  224. width: 100%;
  225. height: 2.12rem; }
  226. .anzhuangCase .item .anzhuangCaseInfos {
  227. flex: 1;
  228. padding: 0.1rem 0.2rem;
  229. font-size: 0.2rem;
  230. color: #333; }
  231. .anzhuangCase .item .anzhuangCaseInfos .left {
  232. flex: 1; }
  233. .anzhuangCase .item .anzhuangCaseInfos .left h4 {
  234. margin-bottom: 0.1rem;
  235. font-size: 0.24rem; }
  236. .anzhuangCase .item .anzhuangCaseInfos .left .touxiang {
  237. width: 0.45rem;
  238. margin-right: 0.12rem;
  239. height: 0.45rem;
  240. border-radius: 50%;
  241. overflow: hidden;
  242. background: #00a0ea; }
  243. .anzhuangCase .item .anzhuangCaseInfos .dianzan {
  244. width: 0.41rem;
  245. height: 0.39rem;
  246. background: url(../img/images/zan.png) no-repeat;
  247. background-size: 100% 100%; }
  248. .pipei {
  249. width: 2.8rem;
  250. font-size: 0.2rem;
  251. position: fixed;
  252. right: 0;
  253. bottom: 15%;
  254. height: 0.6rem;
  255. border-radius: 0.3rem 0 0 0.3rem;
  256. background: #00a0ea;
  257. color: #fff; }
  258. .pipei b {
  259. width: 0.5rem;
  260. height: 0.5rem;
  261. background: url(../img/car.png) no-repeat;
  262. background-size: 100% 100%;
  263. margin-right: 0.2rem; }
  264. .pipei i {
  265. font-size: 0.28rem;
  266. color: #fff !important; }
  267. .pageView {
  268. padding-top: 0rem;
  269. height: 100%;
  270. overflow: auto; }
  271. .pageView.bdjl {
  272. background: #00a0ea;
  273. padding-top: 1.96rem;
  274. padding-left: 0.36rem;
  275. padding-right: 0.36rem; }
  276. .pageView.bdjl .search {
  277. width: 100%;
  278. background: #00a0ea;
  279. height: 1.1rem;
  280. padding-left: 0.36rem;
  281. padding-right: 0.36rem;
  282. position: absolute;
  283. left: 0;
  284. top: 0.86rem; }
  285. .pageView.bdjl .search .searchbox {
  286. width: 100%;
  287. height: 0.84rem;
  288. background: #fff;
  289. border-radius: 0.2rem; }
  290. .pageView.bdjl .search .searchbox input {
  291. width: 100%;
  292. font-size: 0.3rem;
  293. display: block;
  294. color: #999;
  295. height: 100%;
  296. position: relative;
  297. padding-left: 15%;
  298. padding-right: 5%;
  299. background: none;
  300. border: 0;
  301. outline: none; }
  302. .pageView.bdjl .search .searchbox svg {
  303. position: absolute;
  304. left: 10%;
  305. top: 50%;
  306. transform: translateY(-50%); }
  307. .pageView.bdjl .zhuceTimer {
  308. width: 100%;
  309. margin-bottom: 0.2rem;
  310. background: #fff;
  311. border-radius: 0.2rem;
  312. padding: 0.25rem 0.3rem;
  313. color: #00a0ea;
  314. font-size: 0.26rem; }
  315. .pageView.bdjl .zhuceTimer h4 {
  316. font-size: 0.3rem; }
  317. .pageView.bdjl .jiluItems {
  318. background: #fff;
  319. border-radius: 0.2rem;
  320. padding: 0.3rem;
  321. margin-bottom: 0.2rem;
  322. color: #00a0ea;
  323. font-size: 0.26rem; }
  324. .pageView.bdjl .jiluItems .title {
  325. width: 100%; }
  326. .pageView.bdjl .jiluItems .title b {
  327. display: block;
  328. width: 0.5rem;
  329. margin-right: 0.2rem;
  330. height: 0.5rem;
  331. background: url(../img/dunpai.png) no-repeat;
  332. background-size: 100% 100%; }
  333. .pageView.bdjl .jiluItems .content {
  334. padding-top: 0.15rem; }
  335. .pageView.bdjl .jiluItems .content .item {
  336. width: 45%;
  337. padding-top: 0.12rem; }
  338. .pageView.bdjl .jiluItems .content .item:nth-child(odd) {
  339. width: 55%; }
  340. .pageView.bdjl .jiluItems .shangwuLipei {
  341. font-size: 0.24rem;
  342. color: #00ff0c; }
  343. /*头部带查询样式*/
  344. .pageView.filterpage {
  345. background: #00a0ea;
  346. }
  347. .pageView.filterpage .filterpage-container{
  348. background: #00a0ea;
  349. }
  350. .pageView.filterpage .filterpage-container>div{
  351. background: #00a0ea;
  352. flex-grow: 1;
  353. }
  354. .pageView.filterpage .filterpage-container .searchSpec{
  355. width: 85%;
  356. }
  357. .pageView.filterpage .search {
  358. width: 100%;
  359. background: #00a0ea;
  360. height: 1.1rem;
  361. padding-left: 0.36rem;
  362. padding-right: 0.36rem;
  363. position: relative;
  364. /*left: 0;
  365. top: 0.86rem; */
  366. }
  367. .pageView.filterpage .filterpage-container .searchSpec .search{
  368. height: 0.9rem;
  369. }
  370. .pageView.filterpage .search .searchbox {
  371. width: 100%;
  372. height: 0.70rem;
  373. background: #fff;
  374. border-radius: 5px;}
  375. .pageView.filterpage .search .searchbox input {
  376. width: 100%;
  377. font-size: 0.3rem;
  378. display: block;
  379. color: #999;
  380. height: 100%;
  381. position: relative;
  382. padding-left: 15%;
  383. padding-right: 5%;
  384. background: none;
  385. border: 0;
  386. outline: none; }
  387. .pageView.filterpage .search .searchbox svg {
  388. position: absolute;
  389. left: 10%;
  390. top: 50%;
  391. transform: translateY(-50%); }
  392. .pageView.filterpage .filterpage-container .filter-text{
  393. font-size: .3rem;
  394. color: #fff;
  395. }
  396. .pageView.filterpage .zhuceTimer {
  397. width: 100%;
  398. /*margin-bottom: 0.2rem;*/
  399. background: #fff;
  400. padding: 0.25rem 0.3rem;
  401. color: #00a0ea;
  402. font-size: 0.26rem;
  403. background-color:#00a0ea;
  404. color:#fff
  405. }
  406. .pageView.filterpage .zhuceTimer h4 {
  407. font-size: 0.3rem;}
  408. .wodelibao {
  409. padding-top: 1.46rem; }
  410. .wodelibao .tab {
  411. width: 100%;
  412. height: 0.6rem;
  413. font-size: .28rem;
  414. color: #00a0ea;
  415. background: #fff;
  416. position: absolute;
  417. z-index: 2;
  418. left: 0;
  419. top: 0.86rem; }
  420. .wodelibao .tab .item {
  421. width: 36%;
  422. height: 100%;
  423. margin: 0px 7%;
  424. position: relative; }
  425. .wodelibao .tab .item.on::before {
  426. content: '';
  427. height: 1px;
  428. background: #00a0ea;
  429. width: 1.2rem;
  430. display: block;
  431. position: absolute;
  432. bottom: 0;
  433. left: 50%;
  434. transform: translateX(-50%); }
  435. .wodelibao ul {
  436. width: 100%;
  437. padding: 0px 0.16rem;
  438. margin: auto;
  439. padding-bottom: 0.2rem;
  440. background: #f9f9f9; }
  441. .wodelibao ul li {
  442. width: 100%;
  443. padding: 0.26rem;
  444. margin-top: 0.2rem;
  445. height: 3rem;
  446. padding-bottom: 0.04rem;
  447. background: url(../img/libaoItem.png) no-repeat;
  448. background-size: 100% 100%; }
  449. .wodelibao ul li .image {
  450. width: 2.4rem;
  451. height: 2.44rem; }
  452. .wodelibao ul li .image img {
  453. width: 100%;
  454. height: 100%; }
  455. .wodelibao ul li .info {
  456. flex: 1;
  457. padding-left: 0.3rem; }
  458. .wodelibao ul li .info h4 {
  459. font-size: 0.24rem;
  460. font-weight: 600;
  461. color: #333; }
  462. .wodelibao ul li .info .address {
  463. font-size: 0.24rem;
  464. margin-top: 0.3rem;
  465. padding-left: 1.1rem;
  466. position: relative; }
  467. .wodelibao ul li .info .address::before {
  468. content: '送货地址:';
  469. font-size: 0.24rem;
  470. position: absolute;
  471. left: 0;
  472. top: 0; }
  473. .wodelibao ul li .info .tag {
  474. color: #e0a70f;
  475. margin-top: 0.3rem;
  476. width: 1rem;
  477. height: 0.46rem;
  478. font-size: .24rem;
  479. background: #f7eab6;
  480. border-radius: 0.23rem; }
  481. /*出库记录*/
  482. .chukujilu {
  483. width: 100%;
  484. height: 100%;
  485. overflow: hidden;
  486. background: #00a0ea; }
  487. .chukujilu .leiji {
  488. font-size: 0.28rem;
  489. height: 1.32rem;
  490. color: #fff; }
  491. .chukujilu .leiji h4 {
  492. font-size: 0.52rem; }
  493. .chukujilu .chukuTimer {
  494. width: 100%;
  495. margin-bottom: 0.2rem;
  496. background: #fff;
  497. border-radius: 0.12rem;
  498. padding: 0.25rem 0.3rem;
  499. color: #00a0ea;
  500. font-size: 0.26rem; }
  501. .chukujilu .chukuTimer h4 {
  502. font-size: 0.3rem; }
  503. .chukujilu .boxs {
  504. width: 100%;
  505. padding: 0.2rem;
  506. background: #fff;
  507. flex: 1;
  508. border-radius: 5px 5px 0px 0px; }
  509. .chukujilu .boxs ul {
  510. width: 100%;
  511. height: 100%;
  512. overflow: auto; }
  513. .chukujilu .boxs ul li {
  514. border-bottom: 1px solid #e8e8e8;
  515. padding: 0.2rem 0px;
  516. font-size: 0.28rem;
  517. color: #4c4c4c; }
  518. .chukujilu .boxs ul li .title {
  519. padding-bottom: 0.2rem; }
  520. .chukujilu .boxs ul li .title h3 {
  521. font-size: 0.28rem; }
  522. .chukujilu .boxs ul li .title span {
  523. color: #00a0ea; }
  524. /*订单详情*/
  525. .dingdanxiangqing ul {
  526. padding: 0.3rem; }
  527. .dingdanxiangqing ul li {
  528. width: 100%;
  529. margin-top: 0.3rem;
  530. position: relative;
  531. font-size: 0.28rem;
  532. padding: 0px 0.24rem;
  533. background: #fff;
  534. box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  535. height: 2.69rem;
  536. border-radius: 5px; }
  537. .dingdanxiangqing ul li .title {
  538. width: 100%;
  539. height: 0.99rem;
  540. border-bottom: 1px solid #f1f1f2; }
  541. .dingdanxiangqing ul li .center {
  542. width: 100%;
  543. height: 0.81rem;
  544. border-bottom: 1px solid #f1f1f2;
  545. font-size: .24rem; }
  546. .dingdanxiangqing ul li .center p {
  547. margin-right: 0.5rem; }
  548. .dingdanxiangqing ul li .bottom {
  549. flex: 1; }
  550. .dingdanxiangqing ul li .chuxiao {
  551. width: 1.38rem;
  552. height: .47rem;
  553. background: url(../img/cuxiao.png) no-repeat;
  554. background-size: 100% 100%;
  555. position: absolute;
  556. right: -0.1rem;
  557. top: 4%; }
  558. /*库存详情*/
  559. .kucunxiangqing {
  560. background: #00a0ea;
  561. width: 100%;
  562. height: 100%;
  563. overflow: hidden; }
  564. .kucunxiangqing .boxs {
  565. background: #fff;
  566. border-radius: 5px 5px 0px 0px;
  567. flex: 1;
  568. margin-top: 0.3rem;
  569. position: relative;
  570. padding-top: 1rem; }
  571. .kucunxiangqing .boxs .title {
  572. width: 100%;
  573. height: 1rem;
  574. border-bottom: 1px solid #e8e8e8;
  575. position: absolute;
  576. left: 0;
  577. top: 0; }
  578. .kucunxiangqing .boxs .title .item {
  579. width: 40%;
  580. font-size: 0.28rem;
  581. color: #4c4c4c; }
  582. .kucunxiangqing .boxs ul {
  583. width: 100%;
  584. height: 100%;
  585. overflow: auto; }
  586. .kucunxiangqing .boxs ul li {
  587. height: 1.24rem;
  588. border-bottom: 1px solid #e8e8e8; }
  589. .kucunxiangqing .boxs ul li .item {
  590. width: 40%;
  591. font-size: 0.28rem;
  592. color: #4c4c4c; }
  593. .kucunxiangqing .leiji {
  594. font-size: 0.28rem;
  595. height: 1.32rem;
  596. color: #fff; }
  597. .kucunxiangqing .leiji h4 {
  598. font-size: 0.52rem; }
  599. .kucunxiangqing .typeFooter {
  600. width: 100%;
  601. height: 0.6rem;
  602. font-size: 0.28rem;
  603. color: #fff; }
  604. .kucunxiangqing .typeFooter .item {
  605. flex: 1; }
  606. .kucunxiangqing .typeFooter span {
  607. width: 2px;
  608. height: 0.28rem;
  609. background: #fff; }
  610. .kucunxiangqing .kucunList {
  611. flex: 1;
  612. background: #fff;
  613. border-radius: 5px 5px 0px 0px;
  614. padding-top: 1rem;
  615. position: relative; }
  616. .kucunxiangqing .kucunList .title {
  617. width: 100%;
  618. height: 1rem;
  619. border-bottom: 1px solid #e8e8e8;
  620. position: absolute;
  621. left: 0;
  622. top: 0; }
  623. .kucunxiangqing .kucunList .title .item {
  624. font-size: 0.28rem;
  625. color: #4c4c4c;
  626. flex: 1; }
  627. .kucunxiangqing .kucunList .srcollBox {
  628. width: 100%;
  629. height: 100%;
  630. overflow: auto; }
  631. .kucunxiangqing .kucunList .srcollBox .item {
  632. width: 100%;
  633. height: 1.45rem;
  634. border-bottom: 1px solid #e8e8e8;
  635. font-size: 0.28rem;
  636. color: #4c4c4c; }
  637. .kucunxiangqing .kucunList .srcollBox .item .fx1 {
  638. flex: 1;
  639. text-align: center; }
  640. .kucunxiangqing .kucunList .srcollBox .item .fx1 u {
  641. color: #00a0ea; }
  642. /**/
  643. .jingxiaoshangliebiao {
  644. background: #00a0ea;
  645. width: 100%;
  646. height: 100%;
  647. overflow: hidden; }
  648. .jingxiaoshangliebiao .listbox {
  649. padding: 0.3rem 0.36rem;
  650. flex: 1;
  651. font-size: 0.2rem;
  652. color: #7d7d7d; }
  653. .jingxiaoshangliebiao .listbox ul {
  654. width: 100%;
  655. height: 100%;
  656. overflow: auto; }
  657. .jingxiaoshangliebiao .listbox ul li {
  658. width: 100%;
  659. background: #fff;
  660. padding: 0.2rem;
  661. border-radius: 5px;
  662. margin-bottom: 0.1rem; }
  663. .jingxiaoshangliebiao .listbox ul li .van-radio__icon--round .van-icon {
  664. border-radius: 5px !important; }
  665. .jingxiaoshangliebiao .listbox ul li h4 {
  666. color: #00a0ea;
  667. font-size: 0.3rem; }
  668. .jingxiaoshangliebiao .listbox ul li .van-radio__icon .van-icon {
  669. border: 1px solid #0093dc; }
  670. .jingxiaoshangliebiao .lipeichaxunList {
  671. padding: 0.3rem 0.36rem;
  672. flex: 1; }
  673. .jingxiaoshangliebiao .lipeichaxunList .searchTimer {
  674. width: 100%;
  675. padding: 0px 0.3rem;
  676. height: 0.84rem;
  677. background: #fff;
  678. border-radius: 5px;
  679. font-size: 0.28rem;
  680. color: #00a0ea; }
  681. .jingxiaoshangliebiao .lipeichaxunList .searchTimer h4 {
  682. font-size: 0.3rem; }
  683. .jingxiaoshangliebiao .lipeichaxunList ul {
  684. flex: 1;
  685. padding-top: 0.2rem;
  686. overflow: auto; }
  687. .jingxiaoshangliebiao .lipeichaxunList ul li {
  688. background: #fff;
  689. height: 1.44rem;
  690. border-radius: 0.2rem;
  691. padding: 0.2rem;
  692. margin-bottom: 0.1rem; }
  693. .jingxiaoshangliebiao .lipeichaxunList ul li .images {
  694. width: 1.1rem;
  695. height: 1.1rem; }
  696. .jingxiaoshangliebiao .lipeichaxunList ul li .images img {
  697. width: 100%;
  698. height: 100%; }
  699. .jingxiaoshangliebiao .lipeichaxunList ul li .info {
  700. flex: 1;
  701. padding: 0px 0.2rem;
  702. font-size: 0.22rem;
  703. color: #00a0ea; }
  704. .jingxiaoshangliebiao .lipeichaxunList ul li .info .item {
  705. width: 50%;
  706. padding-top: 0.1rem; }
  707. .jingxiaoshangliebiao .lipeichaxunList ul li .icon-right {
  708. color: #0093DC; }
  709. .peifuxiangqing {
  710. background: #00a0ea;
  711. width: 100%;
  712. padding-left: 0.36rem;
  713. padding-right: 0.36rem; }
  714. .peifuxiangqing .card {
  715. width: 100%;
  716. background: #f2fafd;
  717. border-radius: 0.2rem; }
  718. .peifuxiangqing .userInfos {
  719. padding: 0.2rem 0px; }
  720. .peifuxiangqing .userInfos .title {
  721. width: 4.7rem;
  722. overflow: hidden;
  723. margin: auto;
  724. height: .26rem;
  725. background: url(../img/userTitle.png) no-repeat;
  726. background-size: 100% 100%; }
  727. .peifuxiangqing .userInfos .Forms {
  728. width: 100%;
  729. padding: 0px 0.43rem; }
  730. .peifuxiangqing .userInfos .Forms .item {
  731. width: 100%;
  732. height: 0.96rem;
  733. padding-top: 0.3rem;
  734. border-bottom: 1px solid #00a0ea; }
  735. .peifuxiangqing .userInfos .Forms .item .label {
  736. font-size: 0.24rem;
  737. color: #00a0ea;
  738. width: 1.4rem; }
  739. .peifuxiangqing .userInfos .Forms .item .label .icon {
  740. width: 0.34rem;
  741. height: 0.34rem;
  742. background: url(../img/iconTl.png) no-repeat;
  743. background-size: 1.36rem auto; }
  744. .peifuxiangqing .userInfos .Forms .item .label .icon.i1 {
  745. background-position: 0 0; }
  746. .peifuxiangqing .userInfos .Forms .item .label .icon.i2 {
  747. background-position: -0.34rem 0; }
  748. .peifuxiangqing .userInfos .Forms .item .label .icon.i3 {
  749. background-position: -0.68rem 0; }
  750. .peifuxiangqing .userInfos .Forms .item .label .icon.i4 {
  751. background-position: -1.02rem 0; }
  752. .peifuxiangqing .userInfos .Forms .item .value {
  753. flex: 1;
  754. font-size: 0.24rem; }
  755. .peifuxiangqing .userInfos .Forms .item .value input {
  756. border: 0;
  757. width: 100%;
  758. outline: none;
  759. background: none; }
  760. .peifuxiangqing .phone {
  761. margin-top: 0.2rem;
  762. padding: 0.2rem 0px;
  763. margin-bottom: 1.5rem; }
  764. .peifuxiangqing .phone .title {
  765. width: 5.04rem;
  766. margin: auto;
  767. height: .26rem;
  768. background: url(../img/phoneTitle.png) no-repeat;
  769. background-size: 100% 100%; }
  770. .peifuxiangqing .phone .fileImage {
  771. width: 4.68rem;
  772. height: 2.66rem;
  773. margin: 0.3rem auto; }
  774. .peifuxiangqing .phone .fileImage img {
  775. width: 100%;
  776. height: 100%; }
  777. .peifuxiangqing .nextFoot {
  778. width: 6.76rem;
  779. font-size: 0.32rem;
  780. overflow: hidden;
  781. height: 0.86rem;
  782. border-radius: 0.43rem;
  783. background: #f2f8fc;
  784. position: fixed;
  785. left: 50%;
  786. transform: translateX(-50%);
  787. bottom: 2%; }
  788. .peifuxiangqing .nextFoot .nextBtns {
  789. width: 50%;
  790. height: 100%;
  791. background: #5e6468;
  792. color: #fff; }
  793. .peifuxiangqing .nextFoot .nextBtns2 {
  794. width: 50%;
  795. height: 100%;
  796. background: #bbbbbb;
  797. color: #fff; }
  798. .peifuxiangqing .nextFoot .nextBtns1 {
  799. width: 50%;
  800. color: #00a0ea; }
  801. .court {
  802. padding: 0.2rem 0px; }
  803. .court .fileImage {
  804. width: 4.68rem;
  805. height: 2.66rem;
  806. margin: 0.3rem auto; }
  807. .court .fileImage img {
  808. width: 100%;
  809. height: 100%; }
  810. .court .title {
  811. width: 5.04rem;
  812. font-size: .24rem;
  813. color: #00a0ea;
  814. text-align: center;
  815. margin: auto;
  816. height: .26rem;
  817. background: url(../img/titlebg.png) no-repeat;
  818. background-size: 100% 100%; }
  819. .court .Forms {
  820. width: 100%;
  821. padding: 0px 0.43rem; }
  822. .court .Forms .item {
  823. width: 100%;
  824. height: 0.96rem;
  825. padding-top: 0.3rem;
  826. border-bottom: 1px solid #00a0ea; }
  827. .court .Forms .item .label {
  828. font-size: 0.24rem;
  829. color: #00a0ea;
  830. width: 1.4rem; }
  831. .court .Forms .item .label .icon {
  832. width: 0.34rem;
  833. height: 0.34rem;
  834. background: url(../img/iconTl.png) no-repeat;
  835. background-size: 1.36rem auto; }
  836. .court .Forms .item .label .icon.i1 {
  837. background-position: 0 0; }
  838. .court .Forms .item .label .icon.i2 {
  839. background-position: -0.34rem 0; }
  840. .court .Forms .item .label .icon.i3 {
  841. background-position: -0.68rem 0; }
  842. .court .Forms .item .label .icon.i4 {
  843. background-position: -1.02rem 0; }
  844. .court .Forms .item .value {
  845. flex: 1;
  846. font-size: 0.24rem; }
  847. .court .Forms .item .value input {
  848. border: 0;
  849. width: 100%;
  850. outline: none;
  851. background: none; }
  852. .meberHeader {
  853. width: 100%;
  854. padding-right: 0.21rem;
  855. height: 3.15rem;
  856. background: linear-gradient(45deg, #005fa3, #00a0ea); }
  857. .meberHeader .userTouxiang {
  858. width: 2rem;
  859. font-size: 0.16rem;
  860. color: #fff; }
  861. .meberHeader .userTouxiang .image {
  862. width: .98rem;
  863. height: .98rem;
  864. border-radius: 50%;
  865. background: #fff; }
  866. .meberHeader .userTouxiang .image img {
  867. width: 100%;
  868. height: 100%; }
  869. .meberHeader .userTouxiang p {
  870. padding-top: 0.2rem; }
  871. .meberHeader .shopInfo {
  872. flex: 1;
  873. color: #fff; }
  874. .meberHeader .shopInfo .edit {
  875. width: .41rem;
  876. margin-left: 0.2rem;
  877. height: .34rem;
  878. background: url(../img/images/edit.png) no-repeat;
  879. background-size: 100% 100%; }
  880. .meberHeader .shopInfo h2 {
  881. font-size: 0.38rem;
  882. font-weight: 600;
  883. margin-top: 0.2rem; }
  884. .meberHeader .shopInfo .tag {
  885. background: #4d98c9;
  886. margin-top: 0.2rem;
  887. text-align: center;
  888. font-size: 0.18rem;
  889. padding: 2px 5px;
  890. border-radius: 15px; }
  891. .meberHeader .ewm {
  892. width: 1.18rem; }
  893. .meberHeader .ewm b {
  894. display: block;
  895. width: .64rem;
  896. align-self: flex-end;
  897. height: .64rem;
  898. background: url(../img/images/ewm.png) no-repeat;
  899. background-size: 100% 100%; }
  900. .meberHeader .ewm .sysIcon {
  901. width: .64rem;
  902. height: .64rem;
  903. align-self: flex-end;
  904. background: url(../img/images/sysIcons.png) no-repeat;
  905. background-size: 100% 100%; }
  906. .meberHeader .meberHeaderBottom {
  907. width: 100%;
  908. padding-top: 0.4rem; }
  909. .meberHeader .meberHeaderBottom .item {
  910. flex: 1;
  911. color: #fff;
  912. font-size: 0.22rem; }
  913. .meberHeader .meberHeaderBottom span {
  914. display: block;
  915. width: 1px;
  916. height: 0.22rem;
  917. background: #fff; }
  918. .fanliBar {
  919. width: 7.1rem;
  920. font-size: 0.2rem;
  921. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  922. color: #333;
  923. padding-right: 0.3rem;
  924. height: 0.8rem;
  925. margin: auto;
  926. margin-top: -0.4rem;
  927. border-radius: 0.25rem;
  928. background: #fff; }
  929. .fanliBar .item {
  930. flex: 1;
  931. padding-left: 0.3rem; }
  932. .fanliBar .item h4 {
  933. font-size: 0.5rem;
  934. color: #00a0ea;
  935. padding-left: 0.2rem; }
  936. .fanliBar .item em {
  937. font-size: 0.16rem;
  938. color: #333333;
  939. font-style: normal;
  940. padding-bottom: 0.05rem;
  941. padding-left: 0.2rem; }
  942. .fanliBar .fgx {
  943. width: 1px;
  944. height: 0.4rem;
  945. background: #00a0ea; }
  946. .meberMenu {
  947. width: 100%;
  948. height: 2.2rem; }
  949. .meberMenu .item {
  950. flex: 1; }
  951. .meberMenu .item b {
  952. display: block;
  953. width: 0.78rem;
  954. height: 0.78rem; }
  955. .meberMenu .item b.i1 {
  956. background: url(../img/images/images/meberIcon_01.png) no-repeat;
  957. background-size: 100% 100%; }
  958. .meberMenu .item b.i2 {
  959. background: url(../img/images/images/meberIcon_02.png) no-repeat;
  960. background-size: 100% 100%; }
  961. .meberMenu .item b.i3 {
  962. background: url(../img/images/images/meberIcon_03.png) no-repeat;
  963. background-size: 100% 100%; }
  964. .meberMenu .item b.i4 {
  965. background: url(../img/images/images/meberIcon_04.png) no-repeat;
  966. background-size: 100% 100%; }
  967. .meberMenu .item h4 {
  968. font-size: 0.28rem;
  969. color: #000;
  970. padding-top: 0.2rem; }
  971. .meberMenu01 {
  972. width: 100%;
  973. padding: 0.2rem; }
  974. .meberMenu01 .item {
  975. width: 33.33%; }
  976. .meberMenu01 .item b {
  977. display: block;
  978. width: 0.8rem;
  979. height: 0.8rem;
  980. margin-top: 0.3rem; }
  981. .meberMenu01 .item b.i1 {
  982. background: url(../img/images/images/jingxiaoshangIcons_01.png) no-repeat;
  983. background-size: 100% 100%; }
  984. .meberMenu01 .item b.i2 {
  985. background: url(../img/images/images/jingxiaoshangIcons_02.png) no-repeat;
  986. background-size: 100% 100%; }
  987. .meberMenu01 .item b.i3 {
  988. background: url(../img/images/images/jingxiaoshangIcons_03.png) no-repeat;
  989. background-size: 100% 100%; }
  990. .meberMenu01 .item b.i4 {
  991. background: url(../img/images/images/jingxiaoshangIcons_04.png) no-repeat;
  992. background-size: 100% 100%; }
  993. .meberMenu01 .item b.i5 {
  994. background: url(../img/images/images/jingxiaoshangIcons_05.png) no-repeat;
  995. background-size: 100% 100%; }
  996. .meberMenu01 .item b.i6 {
  997. background: url(../img/images/images/jingxiaoshangIcons_06.png) no-repeat;
  998. background-size: 100% 100%; }
  999. .meberMenu01 .item h4 {
  1000. font-size: 0.28rem;
  1001. color: #000;
  1002. padding-top: 0.2rem; }
  1003. .meberList .item {
  1004. width: 100%;
  1005. height: 1rem;
  1006. border-bottom: 1px solid #f4f4f4;
  1007. padding: 0px 0.3rem;
  1008. font-size: 0.3rem; }
  1009. .meberList .item .rightIcons {
  1010. color: #999; }
  1011. .meberList .item .rightIcons span {
  1012. margin-right: 0.2rem; }
  1013. .login {
  1014. width: 100%;
  1015. padding-top: 1.1rem;
  1016. height: 100%;
  1017. background: url(../img/images/loginBg.png) no-repeat;
  1018. background-size: 100% 100%; }
  1019. .login .logo {
  1020. width: 3.19rem;
  1021. height: 1rem;
  1022. background: url(../img/images/loginLogo.png) no-repeat;
  1023. background-size: 100% 100%;
  1024. margin: auto; }
  1025. .login .loginBox {
  1026. width: 6.78rem;
  1027. color: #00a0ea;
  1028. font-size: 0.24rem;
  1029. padding: 0.5rem 0.44rem;
  1030. margin: auto;
  1031. margin-top: 0.4rem;
  1032. height: 6.91rem;
  1033. background: url(../img/images/loginBox.png) no-repeat;
  1034. background-size: 100% 100%; }
  1035. .login .loginBox .labelTitle {
  1036. height: 0.5rem;
  1037. margin-top: 0.3rem; }
  1038. .login .loginBox .labelTitle b {
  1039. display: block;
  1040. margin-right: 0.2rem;
  1041. width: 0.3rem;
  1042. height: 0.3rem;
  1043. background: url(../img/images/userIcons.png) no-repeat;
  1044. background-size: 0.6rem 0.3rem; }
  1045. .login .loginBox .labelTitle b.i1 {
  1046. background-position: 0 0; }
  1047. .login .loginBox .labelTitle b.i2 {
  1048. background-position: -0.3rem 0; }
  1049. .login .loginBox .labelValue {
  1050. width: 100%;
  1051. height: 0.7rem;
  1052. border-bottom: 1px solid #00a0ea;
  1053. color: #00a0ea;
  1054. margin-top: 0.2rem;
  1055. position: relative; }
  1056. .login .loginBox .labelValue input {
  1057. width: 100%;
  1058. outline: none;
  1059. border: 0;
  1060. background: none;
  1061. color: #00a0ea; }
  1062. .login .loginBox .labelValue input::-webkit-input-placeholder {
  1063. color: #00a0ea; }
  1064. .login .loginBox .labelValue .labelToolbel {
  1065. position: absolute;
  1066. right: 2%;
  1067. top: 50%;
  1068. transform: translateY(-50%); }
  1069. .login .loginBox .labelValue .labelToolbel i {
  1070. margin-right: 0.3rem; }
  1071. .login .loginBtns {
  1072. width: 100%;
  1073. height: 0.76rem;
  1074. border-radius: 0.38rem;
  1075. background: #00a0ea;
  1076. color: #fff;
  1077. margin-top: 0.3rem; }
  1078. .login .goEnter {
  1079. font-size: 0.24rem;
  1080. color: #00a0ea;
  1081. padding-top: 0.3rem; }
  1082. .login .goEnter a {
  1083. color: #00a0ea; }
  1084. .login .checkedXieyi {
  1085. padding-top: 0.3rem; }
  1086. .login .checkedXieyi .van-checkbox__icon--round .van-icon {
  1087. border-radius: 5px !important; }
  1088. .login .checkedXieyi .van-checkbox__icon .van-icon {
  1089. border: 1px solid #00a0ea; }
  1090. .login .checkedXieyi .van-checkbox__label {
  1091. color: #6dd1ff; }
  1092. .login .checkedXieyi a {
  1093. color: #00a0ea; }
  1094. .login .loginFix {
  1095. width: 100%;
  1096. font-size: 0.24rem;
  1097. line-height: 0.6rem;
  1098. text-align: center;
  1099. color: #fff;
  1100. position: fixed;
  1101. left: 0;
  1102. bottom: 0;
  1103. height: 0.6rem;
  1104. background: url(../img/images/loginFix.png) no-repeat;
  1105. background-size: 100% 100%; }
  1106. .setp {
  1107. width: 1.5rem;
  1108. height: 0.4rem;
  1109. border: 1px solid #e5e5e5;
  1110. border-radius: 3px; }
  1111. .setp .left {
  1112. width: 0.4rem;
  1113. height: 0.4rem;
  1114. border-right: 1px solid #e5e5e5;
  1115. color: #999; }
  1116. .setp .right {
  1117. width: 0.4rem;
  1118. height: 0.4rem;
  1119. border-left: 1px solid #e5e5e5;
  1120. color: #999; }
  1121. .setp .value {
  1122. flex: 1;
  1123. height: 0.4rem; }
  1124. .gouwuche {
  1125. background: #ededed;
  1126. padding-bottom: 0.4rem; }
  1127. .gouwuche .van-checkbox {
  1128. display: flex; }
  1129. .gouwuche .van-checkbox .van-checkbox__label {
  1130. flex: 1; }
  1131. .gouwuche .gouwucheBackground {
  1132. background: url(../img/shopBanner.png) no-repeat;
  1133. overflow: auto;
  1134. background-size: 100% auto;
  1135. height: 100%;
  1136. padding-top: 0.3rem; }
  1137. .gouwuche .gouwucheBackground .cardGouwuche {
  1138. width: 7.02rem;
  1139. margin: auto;
  1140. background: #fff;
  1141. border-radius: 5px;
  1142. overflow: hidden;
  1143. padding: 0px 0.2rem;
  1144. padding-bottom: 0.7rem;
  1145. position: relative; }
  1146. .gouwuche .gouwucheBackground .cardGouwuche .item {
  1147. padding: 0.4rem 0px;
  1148. border-bottom: 1px solid #e8e8e8; }
  1149. .gouwuche .gouwucheBackground .cardGouwuche .item .image {
  1150. width: 2rem;
  1151. height: 2rem;
  1152. border: 1px solid #eee; }
  1153. .gouwuche .gouwucheBackground .cardGouwuche .item .image img {
  1154. width: 100%;
  1155. height: 100%; }
  1156. .gouwuche .gouwucheBackground .cardGouwuche .item .infos {
  1157. font-size: 0.2rem;
  1158. color: #333;
  1159. flex: 1;
  1160. padding-left: 0.2rem;
  1161. height: 2rem; }
  1162. .gouwuche .gouwucheBackground .cardGouwuche .item .infos h2 {
  1163. font-size: 0.2rem;
  1164. max-width: 90%; }
  1165. .gouwuche .gouwucheBackground .cardGouwuche .cardFooter {
  1166. width: 100%;
  1167. padding: 0px 0.2rem;
  1168. font-size: 0.24rem;
  1169. color: #5f5f5f;
  1170. height: 0.7rem;
  1171. position: absolute;
  1172. left: 0;
  1173. bottom: 0px;
  1174. z-index: 2; }
  1175. .gouwuche .gouwucheBackground .cardGouwuche .cardFooter h4 {
  1176. font-size: 0.3rem; }
  1177. .gouwuche .gouwucheBackground .cardGouwuche .cardFooter .gouwuquan {
  1178. font-size: 0.3rem;
  1179. color: #00a0ea; }
  1180. .gouwuche .gouwucheBackground .cardGouwuche .cardFooter .gouwuquan i {
  1181. font-size: 0.2rem;
  1182. color: #666 !important;
  1183. margin-left: 0.1rem; }
  1184. .gouwuche .caigouBg {
  1185. background: url(../img/shopBanner.png) no-repeat;
  1186. position: relative;
  1187. overflow: hidden;
  1188. background-size: 100% auto;
  1189. height: 100%;
  1190. padding-top: 0.78rem; }
  1191. .gouwuche .caigouBg .caigouBgPix {
  1192. width: 100%;
  1193. font-size: 0.3rem;
  1194. color: #fff;
  1195. padding: 0.1rem 0.2rem 0px 0.2rem;
  1196. height: 0.78rem;
  1197. position: absolute;
  1198. left: 0;
  1199. top: 0;
  1200. z-index: 2; }
  1201. .gouwuche .caigouBg .caigouBgPix .item {
  1202. flex: 1; }
  1203. .gouwuche .caigouBg .caigouBgPix .item i {
  1204. font-size: 0.2rem !important;
  1205. margin-left: 0.1rem; }
  1206. .gouwuche .caigouBg .caigouBgPix .fgx {
  1207. width: 1px;
  1208. height: 0.3rem;
  1209. background: #fff; }
  1210. .gouwuche .caigouBg ul {
  1211. width: 100%;
  1212. padding: 0px 0.2rem;
  1213. height: 100%;
  1214. overflow: auto; }
  1215. .gouwuche .caigouBg ul li {
  1216. background: #fff;
  1217. position: relative;
  1218. padding-bottom: 0.84rem;
  1219. height: 3rem;
  1220. background: #fff;
  1221. border-radius: 0.1rem;
  1222. overflow: hidden;
  1223. margin-bottom: 0.2rem; }
  1224. .gouwuche .caigouBg ul li .libox {
  1225. padding: 0.2rem;
  1226. padding-bottom: 0px; }
  1227. .gouwuche .caigouBg ul li .image {
  1228. width: 1.7rem;
  1229. height: 1.5rem;
  1230. background: #fff; }
  1231. .gouwuche .caigouBg ul li .image img {
  1232. width: 100%;
  1233. height: 100%; }
  1234. .gouwuche .caigouBg ul li .info {
  1235. flex: 1;
  1236. padding-left: 0.2rem;
  1237. font-size: 0.25rem; }
  1238. .gouwuche .caigouBg ul li .info span {
  1239. color: #00a0ea;
  1240. padding: 0.2rem 0px;
  1241. display: block; }
  1242. .gouwuche .caigouBg ul li .info .kuchun {
  1243. font-size: 0.18rem;
  1244. color: #999; }
  1245. .gouwuche .caigouBg ul li .timer {
  1246. font-size: 0.16rem;
  1247. color: #00a0ea;
  1248. flex: 1;
  1249. padding-left: 0.2rem; }
  1250. .gouwuche .caigouBg ul li .btnFooter {
  1251. width: 100%;
  1252. height: 0.84rem;
  1253. position: absolute;
  1254. left: 0;
  1255. bottom: 0; }
  1256. .gouwuche .caigouBg ul li .btnFooter .item {
  1257. width: 50%;
  1258. height: 100%;
  1259. background: #038dfc;
  1260. font-size: 0.3rem;
  1261. color: #fff; }
  1262. .gouwuche .caigouBg ul li .btnFooter .item.active {
  1263. background: #9d9d9d; }
  1264. .gouwuche .caigouBg .fixBor {
  1265. width: 0.7rem;
  1266. height: 0.7rem;
  1267. background: url(../img/images/carBtn.png) no-repeat;
  1268. background-size: 100% 100%;
  1269. position: fixed;
  1270. right: 5%;
  1271. bottom: 15%; }
  1272. .gouwuche .querendingdanFix {
  1273. width: 7.02rem;
  1274. border-radius: 0.32rem;
  1275. position: fixed;
  1276. left: 50%;
  1277. transform: translateX(-50%);
  1278. bottom: 3%;
  1279. height: 0.64rem;
  1280. background: #00a0ea;
  1281. font-size: 0.18rem;
  1282. color: #fff; }
  1283. .myCalendar {
  1284. font-size: 0.2rem;
  1285. position: relative;
  1286. overflow: hidden; }
  1287. .myCalendar .body {
  1288. padding-top: 0.8rem;
  1289. position: relative; }
  1290. .myCalendar .golbal-left {
  1291. width: 13px;
  1292. height: 13px;
  1293. border-top: 2px solid gainsboro;
  1294. border-right: 2px solid gainsboro;
  1295. transform: rotate(225deg);
  1296. -webkit-transform: rotate(225deg);
  1297. position: absolute;
  1298. left: 16px;
  1299. top: 15px; }
  1300. .myCalendar .calendar {
  1301. width: 100vw;
  1302. height: 76vw;
  1303. overflow: auto;
  1304. text-align: center; }
  1305. .myCalendar .week-title {
  1306. overflow: hidden;
  1307. display: flex;
  1308. background: #fff;
  1309. position: absolute;
  1310. width: 100%;
  1311. height: 0.8rem;
  1312. line-height: 0.8rem;
  1313. left: 0;
  1314. top: 0; }
  1315. .myCalendar .week-title > div {
  1316. width: 14.28%;
  1317. height: 0.8rem;
  1318. line-height: 0.8rem;
  1319. float: left; }
  1320. .myCalendar .data-title {
  1321. height: 0.9rem;
  1322. line-height: 0.9rem;
  1323. font-size: 0.32rem;
  1324. clear: both; }
  1325. .myCalendar .calendar-data {
  1326. width: 100vw;
  1327. clear: both; }
  1328. .myCalendar .day {
  1329. width: 14.28%;
  1330. height: 0.7rem;
  1331. margin-bottom: 0.02rem;
  1332. line-height: 180%;
  1333. float: left;
  1334. display: flex;
  1335. flex-direction: column; }
  1336. .myCalendar .day.disabled {
  1337. color: #ddd; }
  1338. .myCalendar .active-start {
  1339. color: white;
  1340. background-color: #0096df; }
  1341. .myCalendar .active-start::after {
  1342. content: '开始';
  1343. margin-top: -0.1rem;
  1344. font-size: 14px; }
  1345. .myCalendar .active {
  1346. color: white;
  1347. background-color: #0096df; }
  1348. .myCalendar .active-end {
  1349. color: white;
  1350. background-color: #0096df;
  1351. position: relative; }
  1352. .myCalendar .active-end::after {
  1353. content: '结束';
  1354. margin-top: -0.1rem;
  1355. font-size: 14px; }
  1356. .myCalendar .active-end i {
  1357. position: absolute;
  1358. top: -120%;
  1359. width: 100%;
  1360. height: 100%;
  1361. background: black;
  1362. opacity: 0.6;
  1363. border-radius: 8px;
  1364. display: flex;
  1365. align-items: center;
  1366. justify-content: center;
  1367. font-style: normal;
  1368. font-size: 15px;
  1369. color: #fff; }
  1370. .myCalendar .active-end i::after {
  1371. position: absolute;
  1372. content: '';
  1373. float: left;
  1374. width: 0;
  1375. height: 0;
  1376. border-width: 10px;
  1377. border-style: solid;
  1378. border-color: #000 transparent transparent transparent;
  1379. opacity: 1;
  1380. bottom: -20px;
  1381. left: 50%;
  1382. margin-left: -10px; }
  1383. .myCalendar .screenbottom {
  1384. height: 35px;
  1385. width: 100%;
  1386. display: flex; }
  1387. .myCalendar .reset {
  1388. width: 50%;
  1389. height: 40px;
  1390. line-height: 40px;
  1391. color: #3E3E3E;
  1392. text-align: center;
  1393. background: #fff; }
  1394. .myCalendar .determine {
  1395. width: 50%;
  1396. height: 40px;
  1397. line-height: 40px;
  1398. background: #48D8BF;
  1399. color: #fff;
  1400. text-align: center; }
  1401. .myCalendar .calendar-body {
  1402. overflow: auto; }
  1403. .shaomachuku {
  1404. width: 100%;
  1405. height: 100%;
  1406. background: #000;
  1407. padding-top: 0.86rem;
  1408. overflow: auto;
  1409. padding-bottom: 1.2rem; }
  1410. .shaomachuku .head {
  1411. width: 100%;
  1412. height: 0.86rem;
  1413. background: #000;
  1414. position: fixed;
  1415. left: 0;
  1416. top: 0;
  1417. font-size: 0.32rem;
  1418. color: #fff; }
  1419. .shaomachuku .head i {
  1420. font-size: 0.3rem;
  1421. color: #fff;
  1422. position: absolute;
  1423. left: 0.2rem;
  1424. top: 50%;
  1425. transform: translateY(-50%); }
  1426. .shaomachuku .QRcode {
  1427. width: 4.2rem;
  1428. margin: auto;
  1429. height: 4.2rem;
  1430. background: url(../img/images/QEbox.png) no-repeat;
  1431. background-size: 100% 100%; }
  1432. .shaomachuku .addCount {
  1433. font-size: 0.26rem;
  1434. color: #00a0ea;
  1435. margin: 0.2rem 0px; }
  1436. .shaomachuku .addCount i {
  1437. width: 0.44rem;
  1438. margin-right: 0.2rem;
  1439. display: block;
  1440. height: 0.52rem;
  1441. background: url(../img/images/gangbi.png) no-repeat;
  1442. background-size: 100% 100%; }
  1443. .shaomachuku table {
  1444. border: 1px solid #00a0ea;
  1445. border-collapse: collapse;
  1446. width: 80%;
  1447. margin: auto;
  1448. border-right: 0;
  1449. border-bottom: 0px; }
  1450. .shaomachuku table tr td {
  1451. border-right: 1px solid #00a0ea;
  1452. text-align: center;
  1453. padding: 0.1rem;
  1454. border-bottom: 1px solid #00a0ea;
  1455. font-size: 0.28rem;
  1456. color: #fff; }
  1457. .shaomachuku .QRsend {
  1458. background: #00a0ea;
  1459. margin: 0.2rem auto;
  1460. color: #fff;
  1461. border-radius: 50%;
  1462. width: 1.44rem;
  1463. height: 1.44rem;
  1464. font-size: 0.32rem; }
  1465. .shaomachuku .paisheBtn {
  1466. width: 5.92rem;
  1467. color: #fff;
  1468. position: fixed;
  1469. left: 50%;
  1470. transform: translateX(-50%);
  1471. bottom: 2%;
  1472. height: 0.74rem;
  1473. border-radius: 0.37rem;
  1474. background: #00a0ea;
  1475. font-size: 0.26rem; }
  1476. .rukuTongji {
  1477. width: 100%;
  1478. height: 100%;
  1479. height: auto; }
  1480. .rukuTongji .rukuTongjiTitle {
  1481. width: 100%;
  1482. font-size: 0.28rem;
  1483. color: #00a0ea;
  1484. height: 0.45rem;
  1485. line-height: 0.45rem;
  1486. background: url(../img/images/rukuTitle.png) no-repeat;
  1487. background-size: 100% 100%; }
  1488. .rukuTongji .rukuTongjiHead {
  1489. width: 100%;
  1490. font-size: 0.28rem;
  1491. color: #4c4c4c;
  1492. padding: 0.2rem;
  1493. margin-top: 0.2rem;
  1494. border-top: 1px solid #e8e8e8;
  1495. border-bottom: 1px solid #e8e8e8; }
  1496. .rukuTongji .rukuTongjiHead .item {
  1497. flex: 1; }
  1498. .rukuTongji .rukuTongjiBody {
  1499. padding: 0px 0.2rem;
  1500. font-size: 0.28rem; }
  1501. .rukuTongji .rukuTongjiBody .item {
  1502. padding: 0.2rem;
  1503. border-bottom: 1px solid #e8e8e8;
  1504. text-align: center; }
  1505. .rukuTongji .rukuTongjiBody .item .fx1 {
  1506. flex: 1; }
  1507. .rukuTongjiFoot {
  1508. width: 6rem;
  1509. font-size: 0.36rem;
  1510. position: fixed;
  1511. bottom: 0.27rem;
  1512. left: 50%;
  1513. transform: translateX(-50%);
  1514. height: 0.84rem;
  1515. border-radius: 0.42rem;
  1516. background: #00a0ea;
  1517. color: #fff; }
  1518. .youhuijuan {
  1519. padding-top: 1.46rem;
  1520. padding-bottom: 0.2rem; }
  1521. .youhuijuan .title {
  1522. width: 100%;
  1523. height: 0.6rem;
  1524. position: fixed;
  1525. left: 0;
  1526. top: 0.86rem;
  1527. font-size: 0.28rem; }
  1528. .youhuijuan .title .item {
  1529. flex: 1;
  1530. height: 0.6rem;
  1531. color: #616161;
  1532. position: relative; }
  1533. .youhuijuan .title .item.on:before {
  1534. content: '';
  1535. display: block;
  1536. width: 30%;
  1537. height: 1px;
  1538. background: #00a0ea;
  1539. position: absolute;
  1540. bottom: 0;
  1541. left: 35%; }
  1542. .youhuijuan ul {
  1543. width: 100%;
  1544. height: 100%;
  1545. padding: 0px 0.16rem; }
  1546. .youhuijuan ul li {
  1547. width: 100%;
  1548. height: 1.94rem;
  1549. position: relative;
  1550. padding-left: 2.4rem;
  1551. margin-top: 0.2rem; }
  1552. .youhuijuan ul li .youhuiLeft {
  1553. width: 2.4rem;
  1554. color: #fff;
  1555. padding-top: 0.2rem;
  1556. padding-bottom: 0.6rem;
  1557. height: 1.94rem;
  1558. background: url(../img/images/youhuijuanLeft.png) no-repeat;
  1559. background-size: 100% 100%;
  1560. position: absolute;
  1561. left: 0;
  1562. top: 0;
  1563. font-size: 0.7rem; }
  1564. .youhuijuan ul li .youhuiLeft em {
  1565. font-size: 0.3rem;
  1566. font-style: normal;
  1567. padding-bottom: 0.2rem; }
  1568. .youhuijuan ul li .youhuiInfos {
  1569. flex: 1;
  1570. height: 99%;
  1571. border: 1px solid #dadada;
  1572. border-left: 0px; }
  1573. .youhuijuan ul li .youhuiInfos .infos {
  1574. flex: 1;
  1575. padding: 0.2rem;
  1576. font-size: 0.24rem;
  1577. color: #888; }
  1578. .youhuijuan ul li .youhuiInfos .infos h2 {
  1579. font-size: 0.42rem;
  1580. color: #00a0ea;
  1581. padding-bottom: 0.12rem; }
  1582. .youhuijuan ul li .youhuiInfos .bottom {
  1583. width: 100%;
  1584. font-size: 0.18rem;
  1585. padding: 0px 0.2rem;
  1586. height: 0.5rem;
  1587. border-top: 1px dashed #dadada; }
  1588. .youhuijuan ul li .youhuiInfos .circle {
  1589. width: 0.3rem;
  1590. height: 0.3rem;
  1591. border-radius: 50%;
  1592. background: #b0b0b0;
  1593. position: relative;
  1594. transform-origin: center center; }
  1595. .youhuijuan .youhuiFooterss {
  1596. font-size: 0.18rem;
  1597. width: 100%;
  1598. padding: 0.2rem;
  1599. border: 1px solid #dadada;
  1600. border-top: 0px; }
  1601. .youhuijuan .youhuiFooterss h4 {
  1602. font-size: 0.18rem;
  1603. margin-bottom: 0.1rem;
  1604. color: #00a0ea; }
  1605. .youhuijuan .youhuiFooterss p {
  1606. width: 50%;
  1607. margin-bottom: 0.1rem; }
  1608. .dingdangenzong {
  1609. width: 100%;
  1610. height: 100%;
  1611. padding-top: 1.96rem; }
  1612. .dingdangenzong .dingdanSearch {
  1613. width: 7.18rem;
  1614. position: absolute;
  1615. left: 50%;
  1616. transform: translateX(-50%);
  1617. height: 1.1rem;
  1618. top: 0.86rem; }
  1619. .dingdangenzong .dingdanSearch .search_box {
  1620. width: 100%;
  1621. height: 0.7rem;
  1622. overflow: hidden;
  1623. position: relative;
  1624. border-radius: 0.2rem;
  1625. background: #fff;
  1626. box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2); }
  1627. .dingdangenzong .dingdanSearch .search_box input {
  1628. flex: 1;
  1629. height: 100%;
  1630. border: 0px;
  1631. outline: none;
  1632. font-size: 0.24rem;
  1633. color: #666;
  1634. padding-left: 0.9rem; }
  1635. .dingdangenzong .dingdanSearch .search_box .fgx {
  1636. width: 1px;
  1637. height: 0.35rem;
  1638. background: #0096df; }
  1639. .dingdangenzong .dingdanSearch .search_box .search_btn {
  1640. font-size: 0.24rem;
  1641. color: #8a8a8a;
  1642. padding: 0px 0.3rem; }
  1643. .dingdangenzong .dingdanSearch .search_box .search_btn i {
  1644. font-size: 0.2rem !important;
  1645. color: #aaa;
  1646. margin-left: 0.1rem; }
  1647. .dingdangenzong .dingdanSearch .search_box .van-icon {
  1648. position: absolute;
  1649. left: 0.3rem;
  1650. top: 50%;
  1651. transform: translateY(-50%); }
  1652. .dingdangenzong .dingdangenzongContainer {
  1653. width: 100%;
  1654. height: 100%;
  1655. overflow: auto;
  1656. padding: 0px 0.4rem;
  1657. padding-bottom: 0.3rem; }
  1658. .dingdangenzong .dingdangenzongContainer .item {
  1659. width: 100%;
  1660. overflow: hidden;
  1661. position: relative;
  1662. padding-left: 0.47rem;
  1663. padding-right: 0.47rem;
  1664. padding-bottom: 0.8rem;
  1665. height: 3.12rem;
  1666. border-radius: 0.2rem;
  1667. background: #fff;
  1668. box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.15);
  1669. margin-top: 0.2rem; }
  1670. .dingdangenzong .dingdangenzongContainer .item::before {
  1671. content: '';
  1672. display: block;
  1673. position: absolute;
  1674. left: 0;
  1675. top: 0.48rem;
  1676. height: 1.24rem;
  1677. width: 0.11rem;
  1678. background: #0093DC; }
  1679. .dingdangenzong .dingdangenzongContainer .item::after {
  1680. content: '';
  1681. display: block;
  1682. position: absolute;
  1683. right: 0;
  1684. top: 0.48rem;
  1685. height: 1.24rem;
  1686. width: 0.11rem;
  1687. background: #0093DC; }
  1688. .dingdangenzong .dingdangenzongContainer .item .title {
  1689. width: 100%;
  1690. font-size: 0.24rem;
  1691. color: #909090;
  1692. padding-top: 0.26rem; }
  1693. .dingdangenzong .dingdangenzongContainer .item .title b {
  1694. width: 0.29rem;
  1695. margin-left: 0.1rem;
  1696. height: 0.27rem;
  1697. background: url(../img/images/copy.png) no-repeat;
  1698. background-size: 100% 100%; }
  1699. .dingdangenzong .dingdangenzongContainer .item .title h2 {
  1700. color: #10e000;
  1701. font-size: 0.32rem; }
  1702. .dingdangenzong .dingdangenzongContainer .item .cont {
  1703. padding-top: 0.1rem;
  1704. font-size: 0.22rem;
  1705. color: #909090; }
  1706. .dingdangenzong .dingdangenzongContainer .item .cont p {
  1707. margin: 0.1rem; }
  1708. .dingdangenzong .dingdangenzongContainer .item .foot {
  1709. width: 100%;
  1710. height: 0.8rem;
  1711. background: #b9b4b4;
  1712. color: #fff;
  1713. font-size: 0.32rem;
  1714. position: absolute;
  1715. left: 0;
  1716. bottom: 0; }
  1717. .dingdangenzong .dingdangenzongContainer .item .foot .btn {
  1718. width: 50%;
  1719. height: 0.8rem; }
  1720. .dingdangenzong .dingdangenzongContainer .item .foot .btn.on {
  1721. background: #0096df; }
  1722. .dingdanzhuizong {
  1723. width: 100%;
  1724. height: 100%;
  1725. padding-top: 0.86rem; }
  1726. .dingdanzhuizong .dingdanzhuizongbox {
  1727. width: 100%;
  1728. height: 100%;
  1729. overflow: auto;
  1730. padding: 0px 0.17rem; }
  1731. .dingdanzhuizong .dingdanzhuizongbox .stepList {
  1732. padding-top: 0.43rem;
  1733. padding-bottom: 0.6rem; }
  1734. .dingdanzhuizong .dingdanzhuizongbox .stepList .item {
  1735. width: 0.88rem;
  1736. position: relative;
  1737. height: 0.88rem;
  1738. border-radius: 50%;
  1739. border: 1px solid #00a0ea;
  1740. font-size: 0.2rem;
  1741. color: #00a0ea; }
  1742. .dingdanzhuizong .dingdanzhuizongbox .stepList .item p {
  1743. color: #bfc2c3;
  1744. font-size: 0.16rem;
  1745. white-space: nowrap;
  1746. position: absolute;
  1747. bottom: -45%;
  1748. left: 0%;
  1749. width: 100%;
  1750. text-align: center; }
  1751. .dingdanzhuizong .dingdanzhuizongbox .stepList .item.active {
  1752. background: #00a0ea;
  1753. color: #fff; }
  1754. .dingdanzhuizong .dingdanzhuizongbox .stepList .item.active p {
  1755. color: #00a0ea; }
  1756. .dingdanzhuizong .dingdanzhuizongbox .stepList .item.disabled {
  1757. background: #bfc2c3;
  1758. color: #fff;
  1759. border: 1px solid #bfc2c3; }
  1760. .dingdanzhuizong .dingdanzhuizongbox .stepList i {
  1761. color: #bfc2c3; }
  1762. .dingdanzhuizong .dingdanzhuizongbox .stepList i.on {
  1763. color: #0096df; }
  1764. .dingdanzhuizong .dingdanzhuizongbox .songdaInfo {
  1765. width: 100%;
  1766. padding: 0px 0.2rem;
  1767. height: 0.8rem;
  1768. border-radius: 0.1rem;
  1769. background: #00a0ea;
  1770. color: #fff;
  1771. font-size: 0.24rem; }
  1772. .dingdanzhuizong .dingdanzhuizongbox .subListTitles1 {
  1773. font-size: 0.32rem;
  1774. color: #00a0ea;
  1775. position: relative;
  1776. padding-left: 0.2rem;
  1777. margin-top: 0.2rem;
  1778. height: 0.76rem; }
  1779. .dingdanzhuizong .dingdanzhuizongbox .subListTitles1 b {
  1780. left: 0px;
  1781. background: #00a0ea;
  1782. display: block;
  1783. width: 2px;
  1784. height: 0.3rem;
  1785. position: absolute;
  1786. top: 50%;
  1787. transform: translateY(-50%); }
  1788. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li {
  1789. width: 6.72rem;
  1790. padding: 0.25rem 0.43rem;
  1791. position: relative;
  1792. border-radius: 5px;
  1793. overflow: hidden;
  1794. margin: 0.2rem auto 0px auto;
  1795. height: 2.72rem;
  1796. background: #fff;
  1797. box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2); }
  1798. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li::after {
  1799. content: '';
  1800. display: block;
  1801. width: 3px;
  1802. height: 1.6rem;
  1803. background: #00a0ea;
  1804. position: absolute;
  1805. top: 50%;
  1806. left: 0;
  1807. transform: translateY(-50%); }
  1808. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li::before {
  1809. content: '';
  1810. display: block;
  1811. width: 3px;
  1812. height: 1.6rem;
  1813. background: #00a0ea;
  1814. position: absolute;
  1815. top: 50%;
  1816. right: 0;
  1817. transform: translateY(-50%); }
  1818. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .title {
  1819. width: 100%;
  1820. font-size: 0.24rem;
  1821. color: #909090; }
  1822. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .title h4 {
  1823. font-size: 0.32rem;
  1824. color: #00a0ea; }
  1825. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .subTitle {
  1826. font-size: 0.22rem;
  1827. color: #909090;
  1828. padding: 0.1rem 0px; }
  1829. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .subTitle span {
  1830. margin-left: 0.3rem; }
  1831. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .count {
  1832. font-size: 0.22rem;
  1833. color: #909090; }
  1834. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .count em {
  1835. font-style: normal;
  1836. width: 2.5rem; }
  1837. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .foots {
  1838. font-size: 0.24rem;
  1839. margin-top: 0.1rem;
  1840. color: #333; }
  1841. .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .foots h4 {
  1842. font-size: 0.45rem;
  1843. margin-top: 0.1rem;
  1844. color: #00a0ea; }
  1845. .jinhuoRank {
  1846. padding-bottom: 0.5rem; }
  1847. .jinhuoRank li {
  1848. width: 6.94rem;
  1849. margin: auto;
  1850. margin-top: 0.2rem;
  1851. height: 1.5rem;
  1852. border-radius: 10px;
  1853. overflow: hidden;
  1854. box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2); }
  1855. .jinhuoRank li .image {
  1856. width: 1.66rem;
  1857. height: 100%; }
  1858. .jinhuoRank li .image img {
  1859. width: 100%;
  1860. height: 100%; }
  1861. .jinhuoRank li .info {
  1862. flex: 1;
  1863. padding: 0px 0.2rem;
  1864. font-size: 0.24rem;
  1865. color: #333; }
  1866. .jinhuoRank li .fgx {
  1867. width: 1px;
  1868. height: 0.83rem;
  1869. background: #bfbfbf; }
  1870. .jinhuoRank li .rankwrap {
  1871. width: 1.45rem;
  1872. color: #ffc600;
  1873. font-size: .24rem; }
  1874. .jinhuoRank li .rankwrap h2 {
  1875. color: #ffc600;
  1876. font-size: 0.48rem; }
  1877. .lipeimingxi {
  1878. width: 100%;
  1879. background: #fff;
  1880. margin-bottom: 0.2rem;
  1881. padding: 0.2rem;
  1882. border-radius: 0.2rem;
  1883. font-size: 0.22rem;
  1884. color: #00a0ea; }
  1885. .lipeimingxi .image {
  1886. width: 1rem;
  1887. height: 1rem; }
  1888. .lipeimingxi .image img {
  1889. width: 100%;
  1890. height: 100%; }
  1891. .lipeimingxi .info {
  1892. padding: 0px 0.2rem; }
  1893. .lipeimingxi .info .item {
  1894. width: 50%; }
  1895. .leijiFooterSelect {
  1896. width: 100%;
  1897. height: 0.86rem;
  1898. padding: 0px 0.2rem;
  1899. color: #00a0ea;
  1900. font-size: 0.28rem; }
  1901. .leijiFooterSelect .select {
  1902. width: 49%;
  1903. height: 0.6rem;
  1904. background: #fff;
  1905. border-radius: 5px;
  1906. position: relative;
  1907. padding: 0px 0.2rem; }
  1908. .leijiFooterSelect .select .icon-xia {
  1909. position: absolute;
  1910. right: 0.2rem;
  1911. top: 50%;
  1912. transform: translateY(-45%); }
  1913. .mendianliebiao {
  1914. width: 100%;
  1915. height: 100%;
  1916. overflow: auto;
  1917. padding: 0px 0.17rem;
  1918. padding-bottom: 0.2rem; }
  1919. .mendianliebiao .item {
  1920. width: 100%;
  1921. border-radius: 5px;
  1922. overflow: hidden;
  1923. margin-top: 0.2rem;
  1924. height: 2.5rem;
  1925. background: #fff;
  1926. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2); }
  1927. .mendianliebiao .item .img {
  1928. width: 2.34rem;
  1929. margin-left: 0.1rem;
  1930. height: 2.34rem; }
  1931. .mendianliebiao .item .img img {
  1932. width: 100%;
  1933. height: 100%; }
  1934. .mendianliebiao .item .infos {
  1935. flex: 1;
  1936. font-size: 0.24rem;
  1937. padding: 0px 0.2rem;
  1938. color: #9c9c9c; }
  1939. .mendianliebiao .item .infos h2 {
  1940. font-size: 0.3rem;
  1941. color: #333;
  1942. margin-bottom: 0.2rem; }
  1943. .mendianliebiao .item .infos p {
  1944. margin-bottom: 0.1rem; }
  1945. .mendianliebiao .item .infos span {
  1946. color: #00a0ea; }
  1947. .mendianliebiao .item .icon-right {
  1948. color: #999;
  1949. margin-right: 0.3rem; }
  1950. .shouhuodizhiBox {
  1951. width: 6.76rem;
  1952. margin: auto;
  1953. border-radius: 10px;
  1954. background: #fff;
  1955. padding: 0.2rem;
  1956. color: #00a0ea; }
  1957. .shouhuodizhiBox .icon {
  1958. width: 0.3rem;
  1959. margin-right: 0.2rem;
  1960. height: 0.3rem;
  1961. background: url(../img/images/iconAddress.png) no-repeat;
  1962. background-size: 0.9rem 0.3rem; }
  1963. .shouhuodizhiBox .icon.i2 {
  1964. background-position: -0.3rem 0px; }
  1965. .shouhuodizhiBox .icon.i3 {
  1966. background-position: -0.6rem 0px; }
  1967. .shouhuodizhiBox .icon.i4 {
  1968. background: url(../img/images/i4icon.png) no-repeat;
  1969. background-size: 100% 100%; }
  1970. .shouhuodizhiBox .addressTitle {
  1971. font-size: 0.24rem;
  1972. margin-bottom: 0.1rem;
  1973. margin-top: 0.2rem;
  1974. position: relative; }
  1975. .shouhuodizhiBox .addressTitle .icon-right {
  1976. position: absolute;
  1977. right: 2%;
  1978. top: 135%;
  1979. font-size: 0.2rem !important; }
  1980. .shouhuodizhiBox .addressTitle .i3.icon-right {
  1981. margin-right: 0px !important; }
  1982. .shouhuodizhiBox .addressTitle .i3.icon-right:before {
  1983. content: ''; }
  1984. .shouhuodizhiBox input {
  1985. color: #00a0ea;
  1986. display: block;
  1987. width: 100%;
  1988. border: 0px;
  1989. font-size: 0.26rem;
  1990. border-bottom: 1px solid #00a0ea;
  1991. height: 0.6rem; }
  1992. .shouhuodizhiBox input[disabled] {
  1993. background: #fff; }
  1994. .addressFooter {
  1995. width: 5.94rem;
  1996. font-size: 0.26rem;
  1997. border-radius: 0.38rem;
  1998. color: #00a0ea;
  1999. height: 0.76rem;
  2000. background: #fff;
  2001. position: fixed;
  2002. left: 50%;
  2003. bottom: 5%;
  2004. transform: translateX(-50%); }
  2005. .uploadFiles {
  2006. width: 1.2rem;
  2007. height: 1.2rem;
  2008. background: url(../img/images/uploadFile.png) no-repeat;
  2009. background-size: 100% 100%; }
  2010. .uploadTouxiang {
  2011. margin: 0.3rem 0px; }
  2012. .addressFooterbtn {
  2013. width: 5.94rem;
  2014. margin: auto;
  2015. font-size: 0.26rem;
  2016. border-radius: 0.38rem;
  2017. color: #fff;
  2018. height: 0.76rem;
  2019. background: #00a0ea; }
  2020. /*# sourceMappingURL=main.css.map */
  2021. [v-cloak] {
  2022. display: none;
  2023. }
  2024. /*列表*/
  2025. .mescroll{
  2026. position: fixed;
  2027. top: 0px;
  2028. bottom: 51px;
  2029. height: auto;
  2030. }
  2031. /*回到顶部按钮*/
  2032. .mescroll-totop {
  2033. bottom: 70px;
  2034. }
  2035. /*下拉刷新回调的提示*/
  2036. .download-tip{
  2037. z-index: 9900;
  2038. position: fixed;
  2039. top: 20px;
  2040. left: 0;
  2041. width: 100%;
  2042. height: 24px;
  2043. line-height: 24px;
  2044. font-size: 12px;
  2045. text-align: center;
  2046. background-color: rgba(80,175,85,.7);
  2047. color: white;
  2048. -webkit-transition: top 300ms;
  2049. transition: top 300ms;
  2050. }