123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103 |
- @charset "UTF-8";
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- -webkit-overflow-scrolling: touch; }
- ul li {
- list-style-type: none; }
- a {
- text-decoration: none; }
- img {
- max-width: 100%;
- display: block; }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-weight: 400; }
- html, body, #app, .view {
- width: 100%;
- height: 100%;
- overflow: hidden;
- background: #fff; }
- .flex {
- display: flex !important;
- display: -webkit-flex !important; }
- .flex.a-center {
- align-items: center; }
- .flex.a-end {
- align-items: flex-end; }
- .flex.j-center {
- justify-content: center; }
- .flex.j-left{
- justify-content: left;}
- .flex.j-end {
- justify-content: flex-end; }
- .flex.jlr {
- justify-content: space-between; }
- .flex.col {
- flex-direction: column; }
- .flex.wrap {
- flex-wrap: wrap; }
- .flex .fx1 {
- flex: 1; }
- .header {
- background: #00a0ea;
- color: #fff;
- width: 100%;
- height: 0.86rem;
- position: fixed;
- left: 0;
- top: 0;
- z-index: 2;
- font-size: 0.32rem; }
- .header .icon-back {
- font-size: 0.3rem;
- color: #fff;
- position: absolute;
- left: 5%;
- top: 50%;
- transform: translateY(-50%); }
- .header .toobla {
- position: absolute;
- right: 5%;
- top: 50%;
- transform: translateY(-50%); }
- .header .toobla .icon1 {
- width: 0.5rem;
- height: 0.5rem;
- background: url(../img/images/too_01.png) no-repeat;
- background-size: 100% 100%; }
- .header .toobla .icon2 {
- width: 0.5rem;
- margin-left: 0.3rem;
- height: 0.5rem;
- background: url(../img/images/too_02.png) no-repeat;
- background-size: 100% 100%; }
- .header .toobla .icon3 {
- width: 0.5rem;
- height: 0.5rem;
- background: url(../img/images/riliIcon.png) no-repeat center center;
- background-size: 0.32rem 0.32rem; }
- .header .toobla .icon4 {
- width: 0.42rem;
- height: 0.42rem;
- background: url(../img/images/ewmSour.png) no-repeat;
- background-size: 100% 100%; }
- .shopHomebar {
- width: 100%;
- height: 1.4rem;
- background: #00a0ea; }
- .shopHomebar .item {
- flex: 1;
- color: #fff;
- font-size: 0.28rem; }
- .shopHomebar .item .icon {
- background: url(../img/shopIcon.png) no-repeat;
- background-size: 1.5rem auto; }
- .shopHomebar .item b {
- display: block;
- width: 0.5rem;
- height: 0.5rem;
- margin-bottom: 0.12rem; }
- .shopHomebar .item b.i1 {
- background-position: 0 0; }
- .shopHomebar .item b.i2 {
- background-position: -0.5rem 0; }
- .shopHomebar .item b.i3 {
- background-position: -1rem 0; }
- .banner {
- width: 100%;
- overflow: hidden;
- padding: 0px 0.15rem;
- height: 2.88rem;
- background: url(../img/shopBanner.png) no-repeat;
- background-size: 100% auto; }
- .banner .my-swipe, .banner img {
- width: 100%;
- height: 100%; }
- .banner .van-swipe-item {
- border-radius: 5px;
- overflow: hidden;
- box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); }
- .homeTipbox {
- width: 100%;
- height: 0.65rem;
- padding: 0px 0.15rem;
- margin: 0.2rem 0px; }
- .homeTipbox .laba {
- width: 0.45rem;
- height: 0.31rem;
- margin: 0.3rem 0px;
- background: url(../img/laba.png) no-repeat;
- background-size: 100% 100%; }
- .homeTipbox .labaInfos {
- flex: 1;
- padding-left: 0.3rem;
- font-size: 0.26rem;
- color: #00a0ea; }
- .menu {
- width: 100%;
- background: #fff;
- margin-bottom: 0.3rem; }
- .menu .item {
- width: 25%;
- margin-bottom: 0.2rem; }
- .menu .item b {
- width: 0.8rem;
- height: 0.8rem; }
- .menu .item b.i1 {
- background: url(../img/images/menu_01.png) no-repeat;
- background-size: 100% 100%; }
- .menu .item b.i2 {
- background: url(../img/images/menu_02.png) no-repeat;
- background-size: 100% 100%; }
- .menu .item b.i3 {
- background: url(../img/images/menu_03.png) no-repeat;
- background-size: 100% 100%; }
- .menu .item b.i4 {
- background: url(../img/images/menu_04.png) no-repeat;
- background-size: 100% 100%; }
- .menu .item b.icon {
- background: url(../img/images/iconMenu.png) no-repeat;
- background-size: 6.4rem 0.8rem; }
- .menu .item b.icon.c1 {
- background-position: 0px 0px; }
- .menu .item b.icon.c2 {
- background-position: -0.8rem 0px; }
- .menu .item b.icon.c3 {
- background-position: -1.6rem 0px; }
- .menu .item b.icon.c4 {
- background-position: -2.4rem 0px; }
- .menu .item b.icon.c5 {
- background-position: -3.2rem 0px; }
- .menu .item b.icon.c6 {
- background-position: -4.0rem 0px; }
- .menu .item b.icon.c7 {
- background-position: -4.8rem 0px; }
- .menu .item b.icon.c8 {
- background-position: -5.6rem 0px; }
- .menu .item p {
- font-size: 0.3rem;
- color: #000;
- margin-top: 0.2rem; }
- .router {
- overflow-y:scroll }
- .workField {
- width: 100%;
- height: 0.8rem;
- padding: 0px 0.15rem;
- font-size: 0.3rem;
- color: #000;
- box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1); }
- .workField .sup {
- width: 0.5rem;
- margin-right: 0.2rem;
- height: 0.5rem;
- background: url(../img/sup.png) no-repeat;
- background-size: 100% 100%; }
- .workField .case {
- width: 0.5rem;
- margin-right: 0.2rem;
- height: 0.5rem; }
- .workFieldContainer {
- padding: 0.2rem 0.28rem; }
- .workFieldContainer .item {
- width: 3.42rem;
- height: 1.71rem;
- margin-bottom: 0.2rem; }
- .workFieldContainer .item img {
- width: 100%;
- height: 100%; }
- .anzhuangCase {
- padding: 0.2rem 0.28rem; }
- .anzhuangCase .item {
- width: 3.42rem;
- height: 3.28rem;
- border-radius: 5px;
- overflow: hidden;
- box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1); }
- .anzhuangCase .item img {
- width: 100%;
- height: 2.12rem; }
- .anzhuangCase .item .anzhuangCaseInfos {
- flex: 1;
- padding: 0.1rem 0.2rem;
- font-size: 0.2rem;
- color: #333; }
- .anzhuangCase .item .anzhuangCaseInfos .left {
- flex: 1; }
- .anzhuangCase .item .anzhuangCaseInfos .left h4 {
- margin-bottom: 0.1rem;
- font-size: 0.24rem; }
- .anzhuangCase .item .anzhuangCaseInfos .left .touxiang {
- width: 0.45rem;
- margin-right: 0.12rem;
- height: 0.45rem;
- border-radius: 50%;
- overflow: hidden;
- background: #00a0ea; }
- .anzhuangCase .item .anzhuangCaseInfos .dianzan {
- width: 0.41rem;
- height: 0.39rem;
- background: url(../img/images/zan.png) no-repeat;
- background-size: 100% 100%; }
- .pipei {
- width: 2.8rem;
- font-size: 0.2rem;
- position: fixed;
- right: 0;
- bottom: 15%;
- height: 0.6rem;
- border-radius: 0.3rem 0 0 0.3rem;
- background: #00a0ea;
- color: #fff; }
- .pipei b {
- width: 0.5rem;
- height: 0.5rem;
- background: url(../img/car.png) no-repeat;
- background-size: 100% 100%;
- margin-right: 0.2rem; }
- .pipei i {
- font-size: 0.28rem;
- color: #fff !important; }
- .pageView {
- padding-top: 0rem;
- height: 100%;
- overflow: auto; }
- .pageView.bdjl {
- background: #00a0ea;
- padding-top: 1.96rem;
- padding-left: 0.36rem;
- padding-right: 0.36rem; }
- .pageView.bdjl .search {
- width: 100%;
- background: #00a0ea;
- height: 1.1rem;
- padding-left: 0.36rem;
- padding-right: 0.36rem;
- position: absolute;
- left: 0;
- top: 0.86rem; }
- .pageView.bdjl .search .searchbox {
- width: 100%;
- height: 0.84rem;
- background: #fff;
- border-radius: 0.2rem; }
- .pageView.bdjl .search .searchbox input {
- width: 100%;
- font-size: 0.3rem;
- display: block;
- color: #999;
- height: 100%;
- position: relative;
- padding-left: 15%;
- padding-right: 5%;
- background: none;
- border: 0;
- outline: none; }
- .pageView.bdjl .search .searchbox svg {
- position: absolute;
- left: 10%;
- top: 50%;
- transform: translateY(-50%); }
- .pageView.bdjl .zhuceTimer {
- width: 100%;
- margin-bottom: 0.2rem;
- background: #fff;
- border-radius: 0.2rem;
- padding: 0.25rem 0.3rem;
- color: #00a0ea;
- font-size: 0.26rem; }
- .pageView.bdjl .zhuceTimer h4 {
- font-size: 0.3rem; }
- .pageView.bdjl .jiluItems {
- background: #fff;
- border-radius: 0.2rem;
- padding: 0.3rem;
- margin-bottom: 0.2rem;
- color: #00a0ea;
- font-size: 0.26rem; }
- .pageView.bdjl .jiluItems .title {
- width: 100%; }
- .pageView.bdjl .jiluItems .title b {
- display: block;
- width: 0.5rem;
- margin-right: 0.2rem;
- height: 0.5rem;
- background: url(../img/dunpai.png) no-repeat;
- background-size: 100% 100%; }
- .pageView.bdjl .jiluItems .content {
- padding-top: 0.15rem; }
- .pageView.bdjl .jiluItems .content .item {
- width: 45%;
- padding-top: 0.12rem; }
- .pageView.bdjl .jiluItems .content .item:nth-child(odd) {
- width: 55%; }
- .pageView.bdjl .jiluItems .shangwuLipei {
- font-size: 0.24rem;
- color: #00ff0c; }
- /*头部带查询样式*/
- .pageView.filterpage {
- background: #00a0ea;
- }
- .pageView.filterpage .filterpage-container{
- background: #00a0ea;
- }
- .pageView.filterpage .filterpage-container>div{
- background: #00a0ea;
- flex-grow: 1;
- }
- .pageView.filterpage .filterpage-container .searchSpec{
- width: 85%;
- }
- .pageView.filterpage .search {
- width: 100%;
- background: #00a0ea;
- height: 1.1rem;
- padding-left: 0.36rem;
- padding-right: 0.36rem;
- position: relative;
- /*left: 0;
- top: 0.86rem; */
- }
- .pageView.filterpage .filterpage-container .searchSpec .search{
- height: 0.9rem;
- }
- .pageView.filterpage .search .searchbox {
- width: 100%;
- height: 0.70rem;
- background: #fff;
- border-radius: 5px;}
- .pageView.filterpage .search .searchbox input {
- width: 100%;
- font-size: 0.3rem;
- display: block;
- color: #999;
- height: 100%;
- position: relative;
- padding-left: 15%;
- padding-right: 5%;
- background: none;
- border: 0;
- outline: none; }
- .pageView.filterpage .search .searchbox svg {
- position: absolute;
- left: 10%;
- top: 50%;
- transform: translateY(-50%); }
- .pageView.filterpage .filterpage-container .filter-text{
- font-size: .3rem;
- color: #fff;
- }
- .pageView.filterpage .zhuceTimer {
- width: 100%;
- /*margin-bottom: 0.2rem;*/
- background: #fff;
- padding: 0.25rem 0.3rem;
- color: #00a0ea;
- font-size: 0.26rem;
- background-color:#00a0ea;
- color:#fff
- }
- .pageView.filterpage .zhuceTimer h4 {
- font-size: 0.3rem;}
- .wodelibao {
- padding-top: 1.46rem; }
- .wodelibao .tab {
- width: 100%;
- height: 0.6rem;
- font-size: .28rem;
- color: #00a0ea;
- background: #fff;
- position: absolute;
- z-index: 2;
- left: 0;
- top: 0.86rem; }
- .wodelibao .tab .item {
- width: 36%;
- height: 100%;
- margin: 0px 7%;
- position: relative; }
- .wodelibao .tab .item.on::before {
- content: '';
- height: 1px;
- background: #00a0ea;
- width: 1.2rem;
- display: block;
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%); }
- .wodelibao ul {
- width: 100%;
- padding: 0px 0.16rem;
- margin: auto;
- padding-bottom: 0.2rem;
- background: #f9f9f9; }
- .wodelibao ul li {
- width: 100%;
- padding: 0.26rem;
- margin-top: 0.2rem;
- height: 3rem;
- padding-bottom: 0.04rem;
- background: url(../img/libaoItem.png) no-repeat;
- background-size: 100% 100%; }
- .wodelibao ul li .image {
- width: 2.4rem;
- height: 2.44rem; }
- .wodelibao ul li .image img {
- width: 100%;
- height: 100%; }
- .wodelibao ul li .info {
- flex: 1;
- padding-left: 0.3rem; }
- .wodelibao ul li .info h4 {
- font-size: 0.24rem;
- font-weight: 600;
- color: #333; }
- .wodelibao ul li .info .address {
- font-size: 0.24rem;
- margin-top: 0.3rem;
- padding-left: 1.1rem;
- position: relative; }
- .wodelibao ul li .info .address::before {
- content: '送货地址:';
- font-size: 0.24rem;
- position: absolute;
- left: 0;
- top: 0; }
- .wodelibao ul li .info .tag {
- color: #e0a70f;
- margin-top: 0.3rem;
- width: 1rem;
- height: 0.46rem;
- font-size: .24rem;
- background: #f7eab6;
- border-radius: 0.23rem; }
- /*出库记录*/
- .chukujilu {
- width: 100%;
- height: 100%;
- overflow: hidden;
- background: #00a0ea; }
- .chukujilu .leiji {
- font-size: 0.28rem;
- height: 1.32rem;
- color: #fff; }
- .chukujilu .leiji h4 {
- font-size: 0.52rem; }
- .chukujilu .chukuTimer {
- width: 100%;
- margin-bottom: 0.2rem;
- background: #fff;
- border-radius: 0.12rem;
- padding: 0.25rem 0.3rem;
- color: #00a0ea;
- font-size: 0.26rem; }
- .chukujilu .chukuTimer h4 {
- font-size: 0.3rem; }
- .chukujilu .boxs {
- width: 100%;
- padding: 0.2rem;
- background: #fff;
- flex: 1;
- border-radius: 5px 5px 0px 0px; }
- .chukujilu .boxs ul {
- width: 100%;
- height: 100%;
- overflow: auto; }
- .chukujilu .boxs ul li {
- border-bottom: 1px solid #e8e8e8;
- padding: 0.2rem 0px;
- font-size: 0.28rem;
- color: #4c4c4c; }
- .chukujilu .boxs ul li .title {
- padding-bottom: 0.2rem; }
- .chukujilu .boxs ul li .title h3 {
- font-size: 0.28rem; }
- .chukujilu .boxs ul li .title span {
- color: #00a0ea; }
- /*订单详情*/
- .dingdanxiangqing ul {
- padding: 0.3rem; }
- .dingdanxiangqing ul li {
- width: 100%;
- margin-top: 0.3rem;
- position: relative;
- font-size: 0.28rem;
- padding: 0px 0.24rem;
- background: #fff;
- box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
- height: 2.69rem;
- border-radius: 5px; }
- .dingdanxiangqing ul li .title {
- width: 100%;
- height: 0.99rem;
- border-bottom: 1px solid #f1f1f2; }
- .dingdanxiangqing ul li .center {
- width: 100%;
- height: 0.81rem;
- border-bottom: 1px solid #f1f1f2;
- font-size: .24rem; }
- .dingdanxiangqing ul li .center p {
- margin-right: 0.5rem; }
- .dingdanxiangqing ul li .bottom {
- flex: 1; }
- .dingdanxiangqing ul li .chuxiao {
- width: 1.38rem;
- height: .47rem;
- background: url(../img/cuxiao.png) no-repeat;
- background-size: 100% 100%;
- position: absolute;
- right: -0.1rem;
- top: 4%; }
- /*库存详情*/
- .kucunxiangqing {
- background: #00a0ea;
- width: 100%;
- height: 100%;
- overflow: hidden; }
- .kucunxiangqing .boxs {
- background: #fff;
- border-radius: 5px 5px 0px 0px;
- flex: 1;
- margin-top: 0.3rem;
- position: relative;
- padding-top: 1rem; }
- .kucunxiangqing .boxs .title {
- width: 100%;
- height: 1rem;
- border-bottom: 1px solid #e8e8e8;
- position: absolute;
- left: 0;
- top: 0; }
- .kucunxiangqing .boxs .title .item {
- width: 40%;
- font-size: 0.28rem;
- color: #4c4c4c; }
- .kucunxiangqing .boxs ul {
- width: 100%;
- height: 100%;
- overflow: auto; }
- .kucunxiangqing .boxs ul li {
- height: 1.24rem;
- border-bottom: 1px solid #e8e8e8; }
- .kucunxiangqing .boxs ul li .item {
- width: 40%;
- font-size: 0.28rem;
- color: #4c4c4c; }
- .kucunxiangqing .leiji {
- font-size: 0.28rem;
- height: 1.32rem;
- color: #fff; }
- .kucunxiangqing .leiji h4 {
- font-size: 0.52rem; }
- .kucunxiangqing .typeFooter {
- width: 100%;
- height: 0.6rem;
- font-size: 0.28rem;
- color: #fff; }
- .kucunxiangqing .typeFooter .item {
- flex: 1; }
- .kucunxiangqing .typeFooter span {
- width: 2px;
- height: 0.28rem;
- background: #fff; }
- .kucunxiangqing .kucunList {
- flex: 1;
- background: #fff;
- border-radius: 5px 5px 0px 0px;
- padding-top: 1rem;
- position: relative; }
- .kucunxiangqing .kucunList .title {
- width: 100%;
- height: 1rem;
- border-bottom: 1px solid #e8e8e8;
- position: absolute;
- left: 0;
- top: 0; }
- .kucunxiangqing .kucunList .title .item {
- font-size: 0.28rem;
- color: #4c4c4c;
- flex: 1; }
- .kucunxiangqing .kucunList .srcollBox {
- width: 100%;
- height: 100%;
- overflow: auto; }
- .kucunxiangqing .kucunList .srcollBox .item {
- width: 100%;
- height: 1.45rem;
- border-bottom: 1px solid #e8e8e8;
- font-size: 0.28rem;
- color: #4c4c4c; }
- .kucunxiangqing .kucunList .srcollBox .item .fx1 {
- flex: 1;
- text-align: center; }
- .kucunxiangqing .kucunList .srcollBox .item .fx1 u {
- color: #00a0ea; }
- /**/
- .jingxiaoshangliebiao {
- background: #00a0ea;
- width: 100%;
- height: 100%;
- overflow: hidden; }
- .jingxiaoshangliebiao .listbox {
- padding: 0.3rem 0.36rem;
- flex: 1;
- font-size: 0.2rem;
- color: #7d7d7d; }
- .jingxiaoshangliebiao .listbox ul {
- width: 100%;
- height: 100%;
- overflow: auto; }
- .jingxiaoshangliebiao .listbox ul li {
- width: 100%;
- background: #fff;
- padding: 0.2rem;
- border-radius: 5px;
- margin-bottom: 0.1rem; }
- .jingxiaoshangliebiao .listbox ul li .van-radio__icon--round .van-icon {
- border-radius: 5px !important; }
- .jingxiaoshangliebiao .listbox ul li h4 {
- color: #00a0ea;
- font-size: 0.3rem; }
- .jingxiaoshangliebiao .listbox ul li .van-radio__icon .van-icon {
- border: 1px solid #0093dc; }
- .jingxiaoshangliebiao .lipeichaxunList {
- padding: 0.3rem 0.36rem;
- flex: 1; }
- .jingxiaoshangliebiao .lipeichaxunList .searchTimer {
- width: 100%;
- padding: 0px 0.3rem;
- height: 0.84rem;
- background: #fff;
- border-radius: 5px;
- font-size: 0.28rem;
- color: #00a0ea; }
- .jingxiaoshangliebiao .lipeichaxunList .searchTimer h4 {
- font-size: 0.3rem; }
- .jingxiaoshangliebiao .lipeichaxunList ul {
- flex: 1;
- padding-top: 0.2rem;
- overflow: auto; }
- .jingxiaoshangliebiao .lipeichaxunList ul li {
- background: #fff;
- height: 1.44rem;
- border-radius: 0.2rem;
- padding: 0.2rem;
- margin-bottom: 0.1rem; }
- .jingxiaoshangliebiao .lipeichaxunList ul li .images {
- width: 1.1rem;
- height: 1.1rem; }
- .jingxiaoshangliebiao .lipeichaxunList ul li .images img {
- width: 100%;
- height: 100%; }
- .jingxiaoshangliebiao .lipeichaxunList ul li .info {
- flex: 1;
- padding: 0px 0.2rem;
- font-size: 0.22rem;
- color: #00a0ea; }
- .jingxiaoshangliebiao .lipeichaxunList ul li .info .item {
- width: 50%;
- padding-top: 0.1rem; }
- .jingxiaoshangliebiao .lipeichaxunList ul li .icon-right {
- color: #0093DC; }
- .peifuxiangqing {
- background: #00a0ea;
- width: 100%;
- padding-left: 0.36rem;
- padding-right: 0.36rem; }
- .peifuxiangqing .card {
- width: 100%;
- background: #f2fafd;
- border-radius: 0.2rem; }
- .peifuxiangqing .userInfos {
- padding: 0.2rem 0px; }
- .peifuxiangqing .userInfos .title {
- width: 4.7rem;
- overflow: hidden;
- margin: auto;
- height: .26rem;
- background: url(../img/userTitle.png) no-repeat;
- background-size: 100% 100%; }
- .peifuxiangqing .userInfos .Forms {
- width: 100%;
- padding: 0px 0.43rem; }
- .peifuxiangqing .userInfos .Forms .item {
- width: 100%;
- height: 0.96rem;
- padding-top: 0.3rem;
- border-bottom: 1px solid #00a0ea; }
- .peifuxiangqing .userInfos .Forms .item .label {
- font-size: 0.24rem;
- color: #00a0ea;
- width: 1.4rem; }
- .peifuxiangqing .userInfos .Forms .item .label .icon {
- width: 0.34rem;
- height: 0.34rem;
- background: url(../img/iconTl.png) no-repeat;
- background-size: 1.36rem auto; }
- .peifuxiangqing .userInfos .Forms .item .label .icon.i1 {
- background-position: 0 0; }
- .peifuxiangqing .userInfos .Forms .item .label .icon.i2 {
- background-position: -0.34rem 0; }
- .peifuxiangqing .userInfos .Forms .item .label .icon.i3 {
- background-position: -0.68rem 0; }
- .peifuxiangqing .userInfos .Forms .item .label .icon.i4 {
- background-position: -1.02rem 0; }
- .peifuxiangqing .userInfos .Forms .item .value {
- flex: 1;
- font-size: 0.24rem; }
- .peifuxiangqing .userInfos .Forms .item .value input {
- border: 0;
- width: 100%;
- outline: none;
- background: none; }
- .peifuxiangqing .phone {
- margin-top: 0.2rem;
- padding: 0.2rem 0px;
- margin-bottom: 1.5rem; }
- .peifuxiangqing .phone .title {
- width: 5.04rem;
- margin: auto;
- height: .26rem;
- background: url(../img/phoneTitle.png) no-repeat;
- background-size: 100% 100%; }
- .peifuxiangqing .phone .fileImage {
- width: 4.68rem;
- height: 2.66rem;
- margin: 0.3rem auto; }
- .peifuxiangqing .phone .fileImage img {
- width: 100%;
- height: 100%; }
- .peifuxiangqing .nextFoot {
- width: 6.76rem;
- font-size: 0.32rem;
- overflow: hidden;
- height: 0.86rem;
- border-radius: 0.43rem;
- background: #f2f8fc;
- position: fixed;
- left: 50%;
- transform: translateX(-50%);
- bottom: 2%; }
- .peifuxiangqing .nextFoot .nextBtns {
- width: 50%;
- height: 100%;
- background: #5e6468;
- color: #fff; }
- .peifuxiangqing .nextFoot .nextBtns2 {
- width: 50%;
- height: 100%;
- background: #bbbbbb;
- color: #fff; }
- .peifuxiangqing .nextFoot .nextBtns1 {
- width: 50%;
- color: #00a0ea; }
- .court {
- padding: 0.2rem 0px; }
- .court .fileImage {
- width: 4.68rem;
- height: 2.66rem;
- margin: 0.3rem auto; }
- .court .fileImage img {
- width: 100%;
- height: 100%; }
- .court .title {
- width: 5.04rem;
- font-size: .24rem;
- color: #00a0ea;
- text-align: center;
- margin: auto;
- height: .26rem;
- background: url(../img/titlebg.png) no-repeat;
- background-size: 100% 100%; }
- .court .Forms {
- width: 100%;
- padding: 0px 0.43rem; }
- .court .Forms .item {
- width: 100%;
- height: 0.96rem;
- padding-top: 0.3rem;
- border-bottom: 1px solid #00a0ea; }
- .court .Forms .item .label {
- font-size: 0.24rem;
- color: #00a0ea;
- width: 1.4rem; }
- .court .Forms .item .label .icon {
- width: 0.34rem;
- height: 0.34rem;
- background: url(../img/iconTl.png) no-repeat;
- background-size: 1.36rem auto; }
- .court .Forms .item .label .icon.i1 {
- background-position: 0 0; }
- .court .Forms .item .label .icon.i2 {
- background-position: -0.34rem 0; }
- .court .Forms .item .label .icon.i3 {
- background-position: -0.68rem 0; }
- .court .Forms .item .label .icon.i4 {
- background-position: -1.02rem 0; }
- .court .Forms .item .value {
- flex: 1;
- font-size: 0.24rem; }
- .court .Forms .item .value input {
- border: 0;
- width: 100%;
- outline: none;
- background: none; }
- .meberHeader {
- width: 100%;
- padding-right: 0.21rem;
- height: 3.15rem;
- background: linear-gradient(45deg, #005fa3, #00a0ea); }
- .meberHeader .userTouxiang {
- width: 2rem;
- font-size: 0.16rem;
- color: #fff; }
- .meberHeader .userTouxiang .image {
- width: .98rem;
- height: .98rem;
- border-radius: 50%;
- background: #fff; }
- .meberHeader .userTouxiang .image img {
- width: 100%;
- height: 100%; }
- .meberHeader .userTouxiang p {
- padding-top: 0.2rem; }
- .meberHeader .shopInfo {
- flex: 1;
- color: #fff; }
- .meberHeader .shopInfo .edit {
- width: .41rem;
- margin-left: 0.2rem;
- height: .34rem;
- background: url(../img/images/edit.png) no-repeat;
- background-size: 100% 100%; }
- .meberHeader .shopInfo h2 {
- font-size: 0.38rem;
- font-weight: 600;
- margin-top: 0.2rem; }
- .meberHeader .shopInfo .tag {
- background: #4d98c9;
- margin-top: 0.2rem;
- text-align: center;
- font-size: 0.18rem;
- padding: 2px 5px;
- border-radius: 15px; }
- .meberHeader .ewm {
- width: 1.18rem; }
- .meberHeader .ewm b {
- display: block;
- width: .64rem;
- align-self: flex-end;
- height: .64rem;
- background: url(../img/images/ewm.png) no-repeat;
- background-size: 100% 100%; }
- .meberHeader .ewm .sysIcon {
- width: .64rem;
- height: .64rem;
- align-self: flex-end;
- background: url(../img/images/sysIcons.png) no-repeat;
- background-size: 100% 100%; }
- .meberHeader .meberHeaderBottom {
- width: 100%;
- padding-top: 0.4rem; }
- .meberHeader .meberHeaderBottom .item {
- flex: 1;
- color: #fff;
- font-size: 0.22rem; }
- .meberHeader .meberHeaderBottom span {
- display: block;
- width: 1px;
- height: 0.22rem;
- background: #fff; }
- .fanliBar {
- width: 7.1rem;
- font-size: 0.2rem;
- box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
- color: #333;
- padding-right: 0.3rem;
- height: 0.8rem;
- margin: auto;
- margin-top: -0.4rem;
- border-radius: 0.25rem;
- background: #fff; }
- .fanliBar .item {
- flex: 1;
- padding-left: 0.3rem; }
- .fanliBar .item h4 {
- font-size: 0.5rem;
- color: #00a0ea;
- padding-left: 0.2rem; }
- .fanliBar .item em {
- font-size: 0.16rem;
- color: #333333;
- font-style: normal;
- padding-bottom: 0.05rem;
- padding-left: 0.2rem; }
- .fanliBar .fgx {
- width: 1px;
- height: 0.4rem;
- background: #00a0ea; }
- .meberMenu {
- width: 100%;
- height: 2.2rem; }
- .meberMenu .item {
- flex: 1; }
- .meberMenu .item b {
- display: block;
- width: 0.78rem;
- height: 0.78rem; }
- .meberMenu .item b.i1 {
- background: url(../img/images/images/meberIcon_01.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu .item b.i2 {
- background: url(../img/images/images/meberIcon_02.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu .item b.i3 {
- background: url(../img/images/images/meberIcon_03.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu .item b.i4 {
- background: url(../img/images/images/meberIcon_04.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu .item h4 {
- font-size: 0.28rem;
- color: #000;
- padding-top: 0.2rem; }
- .meberMenu01 {
- width: 100%;
- padding: 0.2rem; }
- .meberMenu01 .item {
- width: 33.33%; }
- .meberMenu01 .item b {
- display: block;
- width: 0.8rem;
- height: 0.8rem;
- margin-top: 0.3rem; }
- .meberMenu01 .item b.i1 {
- background: url(../img/images/images/jingxiaoshangIcons_01.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu01 .item b.i2 {
- background: url(../img/images/images/jingxiaoshangIcons_02.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu01 .item b.i3 {
- background: url(../img/images/images/jingxiaoshangIcons_03.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu01 .item b.i4 {
- background: url(../img/images/images/jingxiaoshangIcons_04.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu01 .item b.i5 {
- background: url(../img/images/images/jingxiaoshangIcons_05.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu01 .item b.i6 {
- background: url(../img/images/images/jingxiaoshangIcons_06.png) no-repeat;
- background-size: 100% 100%; }
- .meberMenu01 .item h4 {
- font-size: 0.28rem;
- color: #000;
- padding-top: 0.2rem; }
- .meberList .item {
- width: 100%;
- height: 1rem;
- border-bottom: 1px solid #f4f4f4;
- padding: 0px 0.3rem;
- font-size: 0.3rem; }
- .meberList .item .rightIcons {
- color: #999; }
- .meberList .item .rightIcons span {
- margin-right: 0.2rem; }
- .login {
- width: 100%;
- padding-top: 1.1rem;
- height: 100%;
- background: url(../img/images/loginBg.png) no-repeat;
- background-size: 100% 100%; }
- .login .logo {
- width: 3.19rem;
- height: 1rem;
- background: url(../img/images/loginLogo.png) no-repeat;
- background-size: 100% 100%;
- margin: auto; }
- .login .loginBox {
- width: 6.78rem;
- color: #00a0ea;
- font-size: 0.24rem;
- padding: 0.5rem 0.44rem;
- margin: auto;
- margin-top: 0.4rem;
- height: 6.91rem;
- background: url(../img/images/loginBox.png) no-repeat;
- background-size: 100% 100%; }
- .login .loginBox .labelTitle {
- height: 0.5rem;
- margin-top: 0.3rem; }
- .login .loginBox .labelTitle b {
- display: block;
- margin-right: 0.2rem;
- width: 0.3rem;
- height: 0.3rem;
- background: url(../img/images/userIcons.png) no-repeat;
- background-size: 0.6rem 0.3rem; }
- .login .loginBox .labelTitle b.i1 {
- background-position: 0 0; }
- .login .loginBox .labelTitle b.i2 {
- background-position: -0.3rem 0; }
- .login .loginBox .labelValue {
- width: 100%;
- height: 0.7rem;
- border-bottom: 1px solid #00a0ea;
- color: #00a0ea;
- margin-top: 0.2rem;
- position: relative; }
- .login .loginBox .labelValue input {
- width: 100%;
- outline: none;
- border: 0;
- background: none;
- color: #00a0ea; }
- .login .loginBox .labelValue input::-webkit-input-placeholder {
- color: #00a0ea; }
- .login .loginBox .labelValue .labelToolbel {
- position: absolute;
- right: 2%;
- top: 50%;
- transform: translateY(-50%); }
- .login .loginBox .labelValue .labelToolbel i {
- margin-right: 0.3rem; }
- .login .loginBtns {
- width: 100%;
- height: 0.76rem;
- border-radius: 0.38rem;
- background: #00a0ea;
- color: #fff;
- margin-top: 0.3rem; }
- .login .goEnter {
- font-size: 0.24rem;
- color: #00a0ea;
- padding-top: 0.3rem; }
- .login .goEnter a {
- color: #00a0ea; }
- .login .checkedXieyi {
- padding-top: 0.3rem; }
- .login .checkedXieyi .van-checkbox__icon--round .van-icon {
- border-radius: 5px !important; }
- .login .checkedXieyi .van-checkbox__icon .van-icon {
- border: 1px solid #00a0ea; }
- .login .checkedXieyi .van-checkbox__label {
- color: #6dd1ff; }
- .login .checkedXieyi a {
- color: #00a0ea; }
- .login .loginFix {
- width: 100%;
- font-size: 0.24rem;
- line-height: 0.6rem;
- text-align: center;
- color: #fff;
- position: fixed;
- left: 0;
- bottom: 0;
- height: 0.6rem;
- background: url(../img/images/loginFix.png) no-repeat;
- background-size: 100% 100%; }
- .setp {
- width: 1.5rem;
- height: 0.4rem;
- border: 1px solid #e5e5e5;
- border-radius: 3px; }
- .setp .left {
- width: 0.4rem;
- height: 0.4rem;
- border-right: 1px solid #e5e5e5;
- color: #999; }
- .setp .right {
- width: 0.4rem;
- height: 0.4rem;
- border-left: 1px solid #e5e5e5;
- color: #999; }
- .setp .value {
- flex: 1;
- height: 0.4rem; }
- .gouwuche {
- background: #ededed;
- padding-bottom: 0.4rem; }
- .gouwuche .van-checkbox {
- display: flex; }
- .gouwuche .van-checkbox .van-checkbox__label {
- flex: 1; }
- .gouwuche .gouwucheBackground {
- background: url(../img/shopBanner.png) no-repeat;
- overflow: auto;
- background-size: 100% auto;
- height: 100%;
- padding-top: 0.3rem; }
- .gouwuche .gouwucheBackground .cardGouwuche {
- width: 7.02rem;
- margin: auto;
- background: #fff;
- border-radius: 5px;
- overflow: hidden;
- padding: 0px 0.2rem;
- padding-bottom: 0.7rem;
- position: relative; }
- .gouwuche .gouwucheBackground .cardGouwuche .item {
- padding: 0.4rem 0px;
- border-bottom: 1px solid #e8e8e8; }
- .gouwuche .gouwucheBackground .cardGouwuche .item .image {
- width: 2rem;
- height: 2rem;
- border: 1px solid #eee; }
- .gouwuche .gouwucheBackground .cardGouwuche .item .image img {
- width: 100%;
- height: 100%; }
- .gouwuche .gouwucheBackground .cardGouwuche .item .infos {
- font-size: 0.2rem;
- color: #333;
- flex: 1;
- padding-left: 0.2rem;
- height: 2rem; }
- .gouwuche .gouwucheBackground .cardGouwuche .item .infos h2 {
- font-size: 0.2rem;
- max-width: 90%; }
- .gouwuche .gouwucheBackground .cardGouwuche .cardFooter {
- width: 100%;
- padding: 0px 0.2rem;
- font-size: 0.24rem;
- color: #5f5f5f;
- height: 0.7rem;
- position: absolute;
- left: 0;
- bottom: 0px;
- z-index: 2; }
- .gouwuche .gouwucheBackground .cardGouwuche .cardFooter h4 {
- font-size: 0.3rem; }
- .gouwuche .gouwucheBackground .cardGouwuche .cardFooter .gouwuquan {
- font-size: 0.3rem;
- color: #00a0ea; }
- .gouwuche .gouwucheBackground .cardGouwuche .cardFooter .gouwuquan i {
- font-size: 0.2rem;
- color: #666 !important;
- margin-left: 0.1rem; }
- .gouwuche .caigouBg {
- background: url(../img/shopBanner.png) no-repeat;
- position: relative;
- overflow: hidden;
- background-size: 100% auto;
- height: 100%;
- padding-top: 0.78rem; }
- .gouwuche .caigouBg .caigouBgPix {
- width: 100%;
- font-size: 0.3rem;
- color: #fff;
- padding: 0.1rem 0.2rem 0px 0.2rem;
- height: 0.78rem;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 2; }
- .gouwuche .caigouBg .caigouBgPix .item {
- flex: 1; }
- .gouwuche .caigouBg .caigouBgPix .item i {
- font-size: 0.2rem !important;
- margin-left: 0.1rem; }
- .gouwuche .caigouBg .caigouBgPix .fgx {
- width: 1px;
- height: 0.3rem;
- background: #fff; }
- .gouwuche .caigouBg ul {
- width: 100%;
- padding: 0px 0.2rem;
- height: 100%;
- overflow: auto; }
- .gouwuche .caigouBg ul li {
- background: #fff;
- position: relative;
- padding-bottom: 0.84rem;
- height: 3rem;
- background: #fff;
- border-radius: 0.1rem;
- overflow: hidden;
- margin-bottom: 0.2rem; }
- .gouwuche .caigouBg ul li .libox {
- padding: 0.2rem;
- padding-bottom: 0px; }
- .gouwuche .caigouBg ul li .image {
- width: 1.7rem;
- height: 1.5rem;
- background: #fff; }
- .gouwuche .caigouBg ul li .image img {
- width: 100%;
- height: 100%; }
- .gouwuche .caigouBg ul li .info {
- flex: 1;
- padding-left: 0.2rem;
- font-size: 0.25rem; }
- .gouwuche .caigouBg ul li .info span {
- color: #00a0ea;
- padding: 0.2rem 0px;
- display: block; }
- .gouwuche .caigouBg ul li .info .kuchun {
- font-size: 0.18rem;
- color: #999; }
- .gouwuche .caigouBg ul li .timer {
- font-size: 0.16rem;
- color: #00a0ea;
- flex: 1;
- padding-left: 0.2rem; }
- .gouwuche .caigouBg ul li .btnFooter {
- width: 100%;
- height: 0.84rem;
- position: absolute;
- left: 0;
- bottom: 0; }
- .gouwuche .caigouBg ul li .btnFooter .item {
- width: 50%;
- height: 100%;
- background: #038dfc;
- font-size: 0.3rem;
- color: #fff; }
- .gouwuche .caigouBg ul li .btnFooter .item.active {
- background: #9d9d9d; }
- .gouwuche .caigouBg .fixBor {
- width: 0.7rem;
- height: 0.7rem;
- background: url(../img/images/carBtn.png) no-repeat;
- background-size: 100% 100%;
- position: fixed;
- right: 5%;
- bottom: 15%; }
- .gouwuche .querendingdanFix {
- width: 7.02rem;
- border-radius: 0.32rem;
- position: fixed;
- left: 50%;
- transform: translateX(-50%);
- bottom: 3%;
- height: 0.64rem;
- background: #00a0ea;
- font-size: 0.18rem;
- color: #fff; }
- .myCalendar {
- font-size: 0.2rem;
- position: relative;
- overflow: hidden; }
- .myCalendar .body {
- padding-top: 0.8rem;
- position: relative; }
- .myCalendar .golbal-left {
- width: 13px;
- height: 13px;
- border-top: 2px solid gainsboro;
- border-right: 2px solid gainsboro;
- transform: rotate(225deg);
- -webkit-transform: rotate(225deg);
- position: absolute;
- left: 16px;
- top: 15px; }
- .myCalendar .calendar {
- width: 100vw;
- height: 76vw;
- overflow: auto;
- text-align: center; }
- .myCalendar .week-title {
- overflow: hidden;
- display: flex;
- background: #fff;
- position: absolute;
- width: 100%;
- height: 0.8rem;
- line-height: 0.8rem;
- left: 0;
- top: 0; }
- .myCalendar .week-title > div {
- width: 14.28%;
- height: 0.8rem;
- line-height: 0.8rem;
- float: left; }
- .myCalendar .data-title {
- height: 0.9rem;
- line-height: 0.9rem;
- font-size: 0.32rem;
- clear: both; }
- .myCalendar .calendar-data {
- width: 100vw;
- clear: both; }
- .myCalendar .day {
- width: 14.28%;
- height: 0.7rem;
- margin-bottom: 0.02rem;
- line-height: 180%;
- float: left;
- display: flex;
- flex-direction: column; }
- .myCalendar .day.disabled {
- color: #ddd; }
- .myCalendar .active-start {
- color: white;
- background-color: #0096df; }
- .myCalendar .active-start::after {
- content: '开始';
- margin-top: -0.1rem;
- font-size: 14px; }
- .myCalendar .active {
- color: white;
- background-color: #0096df; }
- .myCalendar .active-end {
- color: white;
- background-color: #0096df;
- position: relative; }
- .myCalendar .active-end::after {
- content: '结束';
- margin-top: -0.1rem;
- font-size: 14px; }
- .myCalendar .active-end i {
- position: absolute;
- top: -120%;
- width: 100%;
- height: 100%;
- background: black;
- opacity: 0.6;
- border-radius: 8px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-style: normal;
- font-size: 15px;
- color: #fff; }
- .myCalendar .active-end i::after {
- position: absolute;
- content: '';
- float: left;
- width: 0;
- height: 0;
- border-width: 10px;
- border-style: solid;
- border-color: #000 transparent transparent transparent;
- opacity: 1;
- bottom: -20px;
- left: 50%;
- margin-left: -10px; }
- .myCalendar .screenbottom {
- height: 35px;
- width: 100%;
- display: flex; }
- .myCalendar .reset {
- width: 50%;
- height: 40px;
- line-height: 40px;
- color: #3E3E3E;
- text-align: center;
- background: #fff; }
- .myCalendar .determine {
- width: 50%;
- height: 40px;
- line-height: 40px;
- background: #48D8BF;
- color: #fff;
- text-align: center; }
- .myCalendar .calendar-body {
- overflow: auto; }
- .shaomachuku {
- width: 100%;
- height: 100%;
- background: #000;
- padding-top: 0.86rem;
- overflow: auto;
- padding-bottom: 1.2rem; }
- .shaomachuku .head {
- width: 100%;
- height: 0.86rem;
- background: #000;
- position: fixed;
- left: 0;
- top: 0;
- font-size: 0.32rem;
- color: #fff; }
- .shaomachuku .head i {
- font-size: 0.3rem;
- color: #fff;
- position: absolute;
- left: 0.2rem;
- top: 50%;
- transform: translateY(-50%); }
- .shaomachuku .QRcode {
- width: 4.2rem;
- margin: auto;
- height: 4.2rem;
- background: url(../img/images/QEbox.png) no-repeat;
- background-size: 100% 100%; }
- .shaomachuku .addCount {
- font-size: 0.26rem;
- color: #00a0ea;
- margin: 0.2rem 0px; }
- .shaomachuku .addCount i {
- width: 0.44rem;
- margin-right: 0.2rem;
- display: block;
- height: 0.52rem;
- background: url(../img/images/gangbi.png) no-repeat;
- background-size: 100% 100%; }
- .shaomachuku table {
- border: 1px solid #00a0ea;
- border-collapse: collapse;
- width: 80%;
- margin: auto;
- border-right: 0;
- border-bottom: 0px; }
- .shaomachuku table tr td {
- border-right: 1px solid #00a0ea;
- text-align: center;
- padding: 0.1rem;
- border-bottom: 1px solid #00a0ea;
- font-size: 0.28rem;
- color: #fff; }
- .shaomachuku .QRsend {
- background: #00a0ea;
- margin: 0.2rem auto;
- color: #fff;
- border-radius: 50%;
- width: 1.44rem;
- height: 1.44rem;
- font-size: 0.32rem; }
- .shaomachuku .paisheBtn {
- width: 5.92rem;
- color: #fff;
- position: fixed;
- left: 50%;
- transform: translateX(-50%);
- bottom: 2%;
- height: 0.74rem;
- border-radius: 0.37rem;
- background: #00a0ea;
- font-size: 0.26rem; }
- .rukuTongji {
- width: 100%;
- height: 100%;
- height: auto; }
- .rukuTongji .rukuTongjiTitle {
- width: 100%;
- font-size: 0.28rem;
- color: #00a0ea;
- height: 0.45rem;
- line-height: 0.45rem;
- background: url(../img/images/rukuTitle.png) no-repeat;
- background-size: 100% 100%; }
- .rukuTongji .rukuTongjiHead {
- width: 100%;
- font-size: 0.28rem;
- color: #4c4c4c;
- padding: 0.2rem;
- margin-top: 0.2rem;
- border-top: 1px solid #e8e8e8;
- border-bottom: 1px solid #e8e8e8; }
- .rukuTongji .rukuTongjiHead .item {
- flex: 1; }
- .rukuTongji .rukuTongjiBody {
- padding: 0px 0.2rem;
- font-size: 0.28rem; }
- .rukuTongji .rukuTongjiBody .item {
- padding: 0.2rem;
- border-bottom: 1px solid #e8e8e8;
- text-align: center; }
- .rukuTongji .rukuTongjiBody .item .fx1 {
- flex: 1; }
- .rukuTongjiFoot {
- width: 6rem;
- font-size: 0.36rem;
- position: fixed;
- bottom: 0.27rem;
- left: 50%;
- transform: translateX(-50%);
- height: 0.84rem;
- border-radius: 0.42rem;
- background: #00a0ea;
- color: #fff; }
- .youhuijuan {
- padding-top: 1.46rem;
- padding-bottom: 0.2rem; }
- .youhuijuan .title {
- width: 100%;
- height: 0.6rem;
- position: fixed;
- left: 0;
- top: 0.86rem;
- font-size: 0.28rem; }
- .youhuijuan .title .item {
- flex: 1;
- height: 0.6rem;
- color: #616161;
- position: relative; }
- .youhuijuan .title .item.on:before {
- content: '';
- display: block;
- width: 30%;
- height: 1px;
- background: #00a0ea;
- position: absolute;
- bottom: 0;
- left: 35%; }
- .youhuijuan ul {
- width: 100%;
- height: 100%;
- padding: 0px 0.16rem; }
- .youhuijuan ul li {
- width: 100%;
- height: 1.94rem;
- position: relative;
- padding-left: 2.4rem;
- margin-top: 0.2rem; }
- .youhuijuan ul li .youhuiLeft {
- width: 2.4rem;
- color: #fff;
- padding-top: 0.2rem;
- padding-bottom: 0.6rem;
- height: 1.94rem;
- background: url(../img/images/youhuijuanLeft.png) no-repeat;
- background-size: 100% 100%;
- position: absolute;
- left: 0;
- top: 0;
- font-size: 0.7rem; }
- .youhuijuan ul li .youhuiLeft em {
- font-size: 0.3rem;
- font-style: normal;
- padding-bottom: 0.2rem; }
- .youhuijuan ul li .youhuiInfos {
- flex: 1;
- height: 99%;
- border: 1px solid #dadada;
- border-left: 0px; }
- .youhuijuan ul li .youhuiInfos .infos {
- flex: 1;
- padding: 0.2rem;
- font-size: 0.24rem;
- color: #888; }
- .youhuijuan ul li .youhuiInfos .infos h2 {
- font-size: 0.42rem;
- color: #00a0ea;
- padding-bottom: 0.12rem; }
- .youhuijuan ul li .youhuiInfos .bottom {
- width: 100%;
- font-size: 0.18rem;
- padding: 0px 0.2rem;
- height: 0.5rem;
- border-top: 1px dashed #dadada; }
- .youhuijuan ul li .youhuiInfos .circle {
- width: 0.3rem;
- height: 0.3rem;
- border-radius: 50%;
- background: #b0b0b0;
- position: relative;
- transform-origin: center center; }
- .youhuijuan .youhuiFooterss {
- font-size: 0.18rem;
- width: 100%;
- padding: 0.2rem;
- border: 1px solid #dadada;
- border-top: 0px; }
- .youhuijuan .youhuiFooterss h4 {
- font-size: 0.18rem;
- margin-bottom: 0.1rem;
- color: #00a0ea; }
- .youhuijuan .youhuiFooterss p {
- width: 50%;
- margin-bottom: 0.1rem; }
- .dingdangenzong {
- width: 100%;
- height: 100%;
- padding-top: 1.96rem; }
- .dingdangenzong .dingdanSearch {
- width: 7.18rem;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- height: 1.1rem;
- top: 0.86rem; }
- .dingdangenzong .dingdanSearch .search_box {
- width: 100%;
- height: 0.7rem;
- overflow: hidden;
- position: relative;
- border-radius: 0.2rem;
- background: #fff;
- box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2); }
- .dingdangenzong .dingdanSearch .search_box input {
- flex: 1;
- height: 100%;
- border: 0px;
- outline: none;
- font-size: 0.24rem;
- color: #666;
- padding-left: 0.9rem; }
- .dingdangenzong .dingdanSearch .search_box .fgx {
- width: 1px;
- height: 0.35rem;
- background: #0096df; }
- .dingdangenzong .dingdanSearch .search_box .search_btn {
- font-size: 0.24rem;
- color: #8a8a8a;
- padding: 0px 0.3rem; }
- .dingdangenzong .dingdanSearch .search_box .search_btn i {
- font-size: 0.2rem !important;
- color: #aaa;
- margin-left: 0.1rem; }
- .dingdangenzong .dingdanSearch .search_box .van-icon {
- position: absolute;
- left: 0.3rem;
- top: 50%;
- transform: translateY(-50%); }
- .dingdangenzong .dingdangenzongContainer {
- width: 100%;
- height: 100%;
- overflow: auto;
- padding: 0px 0.4rem;
- padding-bottom: 0.3rem; }
- .dingdangenzong .dingdangenzongContainer .item {
- width: 100%;
- overflow: hidden;
- position: relative;
- padding-left: 0.47rem;
- padding-right: 0.47rem;
- padding-bottom: 0.8rem;
- height: 3.12rem;
- border-radius: 0.2rem;
- background: #fff;
- box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.15);
- margin-top: 0.2rem; }
- .dingdangenzong .dingdangenzongContainer .item::before {
- content: '';
- display: block;
- position: absolute;
- left: 0;
- top: 0.48rem;
- height: 1.24rem;
- width: 0.11rem;
- background: #0093DC; }
- .dingdangenzong .dingdangenzongContainer .item::after {
- content: '';
- display: block;
- position: absolute;
- right: 0;
- top: 0.48rem;
- height: 1.24rem;
- width: 0.11rem;
- background: #0093DC; }
- .dingdangenzong .dingdangenzongContainer .item .title {
- width: 100%;
- font-size: 0.24rem;
- color: #909090;
- padding-top: 0.26rem; }
- .dingdangenzong .dingdangenzongContainer .item .title b {
- width: 0.29rem;
- margin-left: 0.1rem;
- height: 0.27rem;
- background: url(../img/images/copy.png) no-repeat;
- background-size: 100% 100%; }
- .dingdangenzong .dingdangenzongContainer .item .title h2 {
- color: #10e000;
- font-size: 0.32rem; }
- .dingdangenzong .dingdangenzongContainer .item .cont {
- padding-top: 0.1rem;
- font-size: 0.22rem;
- color: #909090; }
- .dingdangenzong .dingdangenzongContainer .item .cont p {
- margin: 0.1rem; }
- .dingdangenzong .dingdangenzongContainer .item .foot {
- width: 100%;
- height: 0.8rem;
- background: #b9b4b4;
- color: #fff;
- font-size: 0.32rem;
- position: absolute;
- left: 0;
- bottom: 0; }
- .dingdangenzong .dingdangenzongContainer .item .foot .btn {
- width: 50%;
- height: 0.8rem; }
- .dingdangenzong .dingdangenzongContainer .item .foot .btn.on {
- background: #0096df; }
- .dingdanzhuizong {
- width: 100%;
- height: 100%;
- padding-top: 0.86rem; }
- .dingdanzhuizong .dingdanzhuizongbox {
- width: 100%;
- height: 100%;
- overflow: auto;
- padding: 0px 0.17rem; }
- .dingdanzhuizong .dingdanzhuizongbox .stepList {
- padding-top: 0.43rem;
- padding-bottom: 0.6rem; }
- .dingdanzhuizong .dingdanzhuizongbox .stepList .item {
- width: 0.88rem;
- position: relative;
- height: 0.88rem;
- border-radius: 50%;
- border: 1px solid #00a0ea;
- font-size: 0.2rem;
- color: #00a0ea; }
- .dingdanzhuizong .dingdanzhuizongbox .stepList .item p {
- color: #bfc2c3;
- font-size: 0.16rem;
- white-space: nowrap;
- position: absolute;
- bottom: -45%;
- left: 0%;
- width: 100%;
- text-align: center; }
- .dingdanzhuizong .dingdanzhuizongbox .stepList .item.active {
- background: #00a0ea;
- color: #fff; }
- .dingdanzhuizong .dingdanzhuizongbox .stepList .item.active p {
- color: #00a0ea; }
- .dingdanzhuizong .dingdanzhuizongbox .stepList .item.disabled {
- background: #bfc2c3;
- color: #fff;
- border: 1px solid #bfc2c3; }
- .dingdanzhuizong .dingdanzhuizongbox .stepList i {
- color: #bfc2c3; }
- .dingdanzhuizong .dingdanzhuizongbox .stepList i.on {
- color: #0096df; }
- .dingdanzhuizong .dingdanzhuizongbox .songdaInfo {
- width: 100%;
- padding: 0px 0.2rem;
- height: 0.8rem;
- border-radius: 0.1rem;
- background: #00a0ea;
- color: #fff;
- font-size: 0.24rem; }
- .dingdanzhuizong .dingdanzhuizongbox .subListTitles1 {
- font-size: 0.32rem;
- color: #00a0ea;
- position: relative;
- padding-left: 0.2rem;
- margin-top: 0.2rem;
- height: 0.76rem; }
- .dingdanzhuizong .dingdanzhuizongbox .subListTitles1 b {
- left: 0px;
- background: #00a0ea;
- display: block;
- width: 2px;
- height: 0.3rem;
- position: absolute;
- top: 50%;
- transform: translateY(-50%); }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li {
- width: 6.72rem;
- padding: 0.25rem 0.43rem;
- position: relative;
- border-radius: 5px;
- overflow: hidden;
- margin: 0.2rem auto 0px auto;
- height: 2.72rem;
- background: #fff;
- box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2); }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li::after {
- content: '';
- display: block;
- width: 3px;
- height: 1.6rem;
- background: #00a0ea;
- position: absolute;
- top: 50%;
- left: 0;
- transform: translateY(-50%); }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li::before {
- content: '';
- display: block;
- width: 3px;
- height: 1.6rem;
- background: #00a0ea;
- position: absolute;
- top: 50%;
- right: 0;
- transform: translateY(-50%); }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .title {
- width: 100%;
- font-size: 0.24rem;
- color: #909090; }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .title h4 {
- font-size: 0.32rem;
- color: #00a0ea; }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .subTitle {
- font-size: 0.22rem;
- color: #909090;
- padding: 0.1rem 0px; }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .subTitle span {
- margin-left: 0.3rem; }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .count {
- font-size: 0.22rem;
- color: #909090; }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .count em {
- font-style: normal;
- width: 2.5rem; }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .foots {
- font-size: 0.24rem;
- margin-top: 0.1rem;
- color: #333; }
- .dingdanzhuizong .dingdanzhuizongbox .dingdanLists li .foots h4 {
- font-size: 0.45rem;
- margin-top: 0.1rem;
- color: #00a0ea; }
- .jinhuoRank {
- padding-bottom: 0.5rem; }
- .jinhuoRank li {
- width: 6.94rem;
- margin: auto;
- margin-top: 0.2rem;
- height: 1.5rem;
- border-radius: 10px;
- overflow: hidden;
- box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2); }
- .jinhuoRank li .image {
- width: 1.66rem;
- height: 100%; }
- .jinhuoRank li .image img {
- width: 100%;
- height: 100%; }
- .jinhuoRank li .info {
- flex: 1;
- padding: 0px 0.2rem;
- font-size: 0.24rem;
- color: #333; }
- .jinhuoRank li .fgx {
- width: 1px;
- height: 0.83rem;
- background: #bfbfbf; }
- .jinhuoRank li .rankwrap {
- width: 1.45rem;
- color: #ffc600;
- font-size: .24rem; }
- .jinhuoRank li .rankwrap h2 {
- color: #ffc600;
- font-size: 0.48rem; }
- .lipeimingxi {
- width: 100%;
- background: #fff;
- margin-bottom: 0.2rem;
- padding: 0.2rem;
- border-radius: 0.2rem;
- font-size: 0.22rem;
- color: #00a0ea; }
- .lipeimingxi .image {
- width: 1rem;
- height: 1rem; }
- .lipeimingxi .image img {
- width: 100%;
- height: 100%; }
- .lipeimingxi .info {
- padding: 0px 0.2rem; }
- .lipeimingxi .info .item {
- width: 50%; }
- .leijiFooterSelect {
- width: 100%;
- height: 0.86rem;
- padding: 0px 0.2rem;
- color: #00a0ea;
- font-size: 0.28rem; }
- .leijiFooterSelect .select {
- width: 49%;
- height: 0.6rem;
- background: #fff;
- border-radius: 5px;
- position: relative;
- padding: 0px 0.2rem; }
- .leijiFooterSelect .select .icon-xia {
- position: absolute;
- right: 0.2rem;
- top: 50%;
- transform: translateY(-45%); }
- .mendianliebiao {
- width: 100%;
- height: 100%;
- overflow: auto;
- padding: 0px 0.17rem;
- padding-bottom: 0.2rem; }
- .mendianliebiao .item {
- width: 100%;
- border-radius: 5px;
- overflow: hidden;
- margin-top: 0.2rem;
- height: 2.5rem;
- background: #fff;
- box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2); }
- .mendianliebiao .item .img {
- width: 2.34rem;
- margin-left: 0.1rem;
- height: 2.34rem; }
- .mendianliebiao .item .img img {
- width: 100%;
- height: 100%; }
- .mendianliebiao .item .infos {
- flex: 1;
- font-size: 0.24rem;
- padding: 0px 0.2rem;
- color: #9c9c9c; }
- .mendianliebiao .item .infos h2 {
- font-size: 0.3rem;
- color: #333;
- margin-bottom: 0.2rem; }
- .mendianliebiao .item .infos p {
- margin-bottom: 0.1rem; }
- .mendianliebiao .item .infos span {
- color: #00a0ea; }
- .mendianliebiao .item .icon-right {
- color: #999;
- margin-right: 0.3rem; }
- .shouhuodizhiBox {
- width: 6.76rem;
- margin: auto;
- border-radius: 10px;
- background: #fff;
- padding: 0.2rem;
- color: #00a0ea; }
- .shouhuodizhiBox .icon {
- width: 0.3rem;
- margin-right: 0.2rem;
- height: 0.3rem;
- background: url(../img/images/iconAddress.png) no-repeat;
- background-size: 0.9rem 0.3rem; }
- .shouhuodizhiBox .icon.i2 {
- background-position: -0.3rem 0px; }
- .shouhuodizhiBox .icon.i3 {
- background-position: -0.6rem 0px; }
- .shouhuodizhiBox .icon.i4 {
- background: url(../img/images/i4icon.png) no-repeat;
- background-size: 100% 100%; }
- .shouhuodizhiBox .addressTitle {
- font-size: 0.24rem;
- margin-bottom: 0.1rem;
- margin-top: 0.2rem;
- position: relative; }
- .shouhuodizhiBox .addressTitle .icon-right {
- position: absolute;
- right: 2%;
- top: 135%;
- font-size: 0.2rem !important; }
- .shouhuodizhiBox .addressTitle .i3.icon-right {
- margin-right: 0px !important; }
- .shouhuodizhiBox .addressTitle .i3.icon-right:before {
- content: ''; }
- .shouhuodizhiBox input {
- color: #00a0ea;
- display: block;
- width: 100%;
- border: 0px;
- font-size: 0.26rem;
- border-bottom: 1px solid #00a0ea;
- height: 0.6rem; }
- .shouhuodizhiBox input[disabled] {
- background: #fff; }
- .addressFooter {
- width: 5.94rem;
- font-size: 0.26rem;
- border-radius: 0.38rem;
- color: #00a0ea;
- height: 0.76rem;
- background: #fff;
- position: fixed;
- left: 50%;
- bottom: 5%;
- transform: translateX(-50%); }
- .uploadFiles {
- width: 1.2rem;
- height: 1.2rem;
- background: url(../img/images/uploadFile.png) no-repeat;
- background-size: 100% 100%; }
- .uploadTouxiang {
- margin: 0.3rem 0px; }
- .addressFooterbtn {
- width: 5.94rem;
- margin: auto;
- font-size: 0.26rem;
- border-radius: 0.38rem;
- color: #fff;
- height: 0.76rem;
- background: #00a0ea; }
- /*# sourceMappingURL=main.css.map */
- [v-cloak] {
- display: none;
- }
- /*列表*/
- .mescroll{
- position: fixed;
- top: 0px;
- bottom: 51px;
- height: auto;
- }
- /*回到顶部按钮*/
- .mescroll-totop {
- bottom: 70px;
- }
- /*下拉刷新回调的提示*/
- .download-tip{
- z-index: 9900;
- position: fixed;
- top: 20px;
- left: 0;
- width: 100%;
- height: 24px;
- line-height: 24px;
- font-size: 12px;
- text-align: center;
- background-color: rgba(80,175,85,.7);
- color: white;
- -webkit-transition: top 300ms;
- transition: top 300ms;
- }
|