| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802 |
- body,
- page {
- background: #F7F7F7;
- font-size: 28rpx;
- color: #222222;
- }
- image{will-change: transform}
- /* 全局图片加速 */
- /* image{will-change: transform;} */
- /* APP 磨砂玻璃状态栏高度 */
- /* #ifdef APP-PLUS */
- .edgeInsetTop {
- height: var(--window-top);
- }
- .edgeInsetBottom {
- height: var(--window-bottom);
- }
- /* #endif */
- /* 绝对定位的视图需要考虑 tabBar 遮挡的问题,bottom 应该加上 tabBar 的高度 */
- .fixedView {
- position: fixed;
- bottom: var(--window-bottom);
- }
- .safeAreaBottom {
- height: 100rpx;
- height: calc(env(safe-area-inset-bottom) + 100rpx);
- width: 100%;
- }
- [class*="wlIcon-"] {
- font-family: "wlIcon";
- font-size: inherit;
- font-style: normal;
- }
- .cu-dialog {
- background-color: #ffffff;
- }
- .cu-modal {
- z-index: 990;
- }
- .cu-modal.bottom-modal .cu-dialog {
- border-radius: 20rpx 20rpx 0 0;
- }
- .cu-modal.wanl-share .cu-dialog{
- background-color: transparent;
- border-radius: 0;
- }
- .margin-bj {
- margin: 25rpx;
- }
- .margin-top-bj {
- margin-top: 25rpx;
- }
- .margin-right-bj {
- margin-right: 25rpx;
- }
- .margin-bottom-bj {
- margin-bottom: 25rpx;
- }
- .margin-left-bj {
- margin-left: 25rpx;
- }
- .margin-lr-bj {
- margin-left: 25rpx;
- margin-right: 25rpx;
- }
- .margin-tb-bj {
- margin-top: 25rpx;
- margin-bottom: 25rpx;
- }
- .padding-bj {
- padding: 25rpx;
- }
- .padding-top-bj {
- padding-top: 25rpx;
- }
- .padding-right-bj {
- padding-right: 25rpx;
- }
- .padding-left-bj {
- padding-left: 25rpx;
- }
- .padding-lr-bj {
- padding-left: 25rpx;
- padding-right: 25rpx;
- }
- .padding-tb-bj {
- padding-top: 25rpx;
- padding-bottom: 25rpx;
- }
- .padding-bottom-bj {
- padding-bottom: 25rpx;
- }
- .text-min {
- font-size: 24rpx;
- }
- .text-wl {
- font-size: 26rpx;
- }
- .text-bold1 {
- font-weight: 100;
- }
- .text-bold2 {
- font-weight: 200;
- }
- .text-bold4 {
- font-weight: 400;
- }
- .text-bold5 {
- font-weight: 500;
- }
- .text-bold6 {
- font-weight: 600;
- }
- .text-bold7 {
- font-weight: 700;
- }
- .text-bold8 {
- font-weight: 800;
- }
- .text-dec {
- text-decoration: line-through;
- }
- .text-cut-2 {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .radius-bock {
- border-radius: 18rpx;
- overflow: hidden;
- }
- .bg-gradual-yellow {
- background-image: linear-gradient(to left, #ff9700, #ffca00);
- color: white;
- }
- .bg-transparent{
- background-color: transparent !important;
- }
- .bg-white {
- color: #222222;
- }
- .bg-nav {
- background-color: #f9f9f9;
- }
- .bg-bgcolor {
- background-color: #F7F7F7;
- }
- .wanl-black {
- color: black;
- }
- /* 标准黑 */
- .wanl-pip {
- color: #222222;
- }
- /* 灰色 */
- .wanl-gray {
- color: #828282;
- }
- /* 深灰 */
- .wanl-gray-dark {
- color: #666666;
- }
- /* 浅灰 */
- .wanl-gray-light {
- color: #999999;
- }
- .wanl-orange {
- color: #fe6600;
- }
- .wanl-red {
- color: #ff243a;
- }
- /* 字体渐变 - 红色 */
- .wanl-text-red {
- background-image: -webkit-linear-gradient(right, #f43f3b, #ec008c);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 黄色 */
- .wanl-text-yellow {
- background-image: -webkit-linear-gradient(right, #ff9700, #ffca00);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 橙色 */
- .wanl-text-orange {
- background-image: -webkit-linear-gradient(right, #ff9700, #ed1c24);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 紫罗兰 */
- .wanl-text-violet {
- background-image: -webkit-linear-gradient(right, #709cff, #9000ff);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 蓝色 */
- .wanl-text-blue {
- background-image: -webkit-linear-gradient(right, #0081ff, #1cbbb4);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 浅蓝色 */
- .wanl-text-light-blue {
- background-image: -webkit-linear-gradient(right, #55c9fc, #0c79ff);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 粉色 */
- .wanl-text-pink {
- background-image: -webkit-linear-gradient(right, #ec008c, #6739b6);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 绿色 */
- .wanl-text-green {
- background-image: -webkit-linear-gradient(right, #39b54a, #8dc63f);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 紫色 */
- .wanl-text-purple {
- background-image: -webkit-linear-gradient(right, #9000ff, #5e00ff);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- /* 白灰 */
- .wanl-text-white {
- background-image: -webkit-linear-gradient(top, #ffffff, #cccccc);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .cu-custom .cu-tag.badge {
- top: 10rpx;
- right: -15rpx;
- }
- .cu-custom .cu-bar {
- background-size: 100%;
- }
- .cu-custom .bar-bg {
- background-size: 100%;
- width: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- }
- .cu-custom .search-swiper {
- width: 100%;
- height: 100%;
- }
- .cu-bar .search-form {
- font-size: 28rpx;
- }
- .cu-bar .action:first-child>text[class*="wlIcon-"] {
- margin-left: 0;
- margin-right: -0.1em;
- }
- .placeholder {
- color: #999;
- font-size: 28rpx;
- }
- /* 万联渐变背景色*/
- /* 橘红色 */
- .wanl-bg-redorange {
- background: #ff3d33;
- background-image: linear-gradient(90deg, #ff6333 0, #fe6600 97%);
- color: white;
- }
- .wanl-bg-redorange-light {
- background-image: linear-gradient(90deg, #ffc0ae 0, #ffa7b0 97%);
- color: white;
- }
- /* 橙色 */
- .wanl-bg-orange {
- color: white;
- background-image: linear-gradient(-90deg, #ff4950 0, #ff8123 100%);
- }
- /* 粉色 */
- .wanl-bg-pink {
- color: white;
- background-image: linear-gradient(-90deg, #fa3b26 3%, #ff4d8a 96%);
- }
- /* 蓝色 */
- .wanl-bg-blue {
- color: white;
- background-image: linear-gradient(-90deg, #2676fa 0, #23d7ff 100%);
- }
- /* 蓝色 */
- .wanl-bg-nav {
- background-color: #f8f8f8;
- color: #000000;
- }
- /* 吸顶容器 */
- .wanl-sticky-box {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- position: -webkit-sticky;
- /* #endif */
- position: sticky;
- top: var(--window-top);
- z-index: 1025;
- flex-direction: row;
- }
- .wanl-sticky-box .bg-white {
- background-color: rgba(255, 255, 255, .9);
- }
- /* 数字框 */
- .wanl-numberBox {
- width: 200rpx;
- height: 58rpx;
- border-radius: 100rpx;
- padding: 8rpx 6rpx 6rpx 6rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .wanl-numberBox text {
- background-color: #f2f2f2;
- padding: 8rpx;
- font-size: 30rpx;
- }
- .wanl-numberBox.solid:after {
- border: 1px solid #dddddd;
- }
- /* 优惠券 */
- .wanl-ticket {
- display: flex;
- align-items: center;
- margin-right: 18rpx;
- }
- .wanl-ticket .ticket-price {
- height: 60rpx;
- line-height: 60rpx;
- position: relative;
- background: #ff5700;
- color: white;
- /* border-radius: 3rpx 0 0 3rpx; */
- padding-left: 12rpx;
- padding-right: 10rpx;
- font-weight: bold;
- }
- .wanl-ticket .ticket-title {
- font-size: 20rpx;
- display: flex;
- align-items: center;
- color: #ff5700;
- height: 60rpx;
- position: relative;
- background-color: #fff;
- border-radius: 0 6rpx 6rpx 0;
- border: #ff5700 solid 1px;
- border-left: 0;
- padding: 0 8rpx;
- }
-
- .wanl-ticket .ticket-price:before {
- content: "";
- width: 18rpx;
- height: 16rpx;
- background-color: #F7F7F7;
- position: absolute;
- top: 50%;
- left: -10rpx;
- margin-top: -8rpx;
- border-radius: 50%;
- z-index: 1;
- }
- .position-relative{
- position: relative;
- }
- /* 弹出层 */
- .wanl-modal {
- position: relative;
- min-height: 500rpx;
- max-height: 1200rpx;
- padding-bottom: 128rpx;
- padding-bottom: calc(118rpx + env(safe-area-inset-bottom));
- }
- .wanl-modal .head {
- display: flex;
- position: relative;
- align-items: center;
- }
- .wanl-modal .head .content {
- display: flex;
- justify-content: center;
- width: 100%;
- }
- .wanl-modal .head .close {
- position: absolute;
- right: 25rpx;
- }
- .wanl-modal .listbox {
- text-align: left;
- }
- .wanl-modal .listbox .name {
- position: relative;
- padding-left: 60rpx;
- color: #333;
- }
- .wanl-modal .listbox .name>text[class*="wlIcon-"] {
- position: absolute;
- top: 5rpx;
- left: 5rpx;
- color: #ff243a;
- }
- .wanl-modal .listbox .description {
- padding: 20rpx 0 40rpx 60rpx;
- }
- .wanl-modal .scroll-y {
- text-align: left;
- width: 100%;
- height: 800rpx;
- padding: 25rpx;
- padding-top: 0;
- }
- .wanl-modal .scroll-y .table {
- display: flex;
- justify-content: space-between;
- width: 100%;
- }
- .wanl-modal .scroll-y .table .name {
- width: 23%;
- padding: 25rpx 0;
- }
- .wanl-modal .scroll-y .table .value {
- width: 75%;
- padding: 25rpx 0;
- }
- .wanl-modal .foot {
- position: absolute;
- padding-top: 25rpx;
- bottom: 0;
- width: 100%;
- height: 128rpx;
- height: calc(118rpx + env(safe-area-inset-bottom));
- }
- .wanl-modal .foot .cu-btn {
- padding: 0;
- width: 50%;
- height: 78rpx;
- }
- .wanl-modal .foot .cu-btn.complete {
- width: 100%;
- }
- /* 规格 */
- .wanl-modal.option .head {
- text-align: left;
- }
- .wanl-modal.option .head .close {
- top: 25rpx;
- line-height: 45rpx;
- }
- .wanl-modal.option .head .cu-avatar {
- width: 200rpx;
- height: 220rpx;
- }
- .wanl-modal.option .opt .tag {
- display: flex;
- flex-wrap: wrap;
- }
- .wanl-modal.option .opt .tag .cu-tag {
- margin-right: 25rpx;
- margin-top: 20rpx;
- padding: 0px 25rpx;
- height: 65rpx;
- background-color: #f6f6f6;
- border-radius: 12rpx;
- color: #222222;
- }
- .wanl-modal.option .opt .tag .cu-tag.active {
- color: #eb5d2a;
- background-color: #fdf9f9;
- }
- .wanl-modal.option .opt .tag .cu-tag.active:after {
- content: " ";
- width: 200%;
- height: 200%;
- position: absolute;
- top: 0;
- left: 0;
- border: 1upx solid currentColor;
- transform: scale(0.5);
- transform-origin: 0 0;
- box-sizing: border-box;
- border-radius: 25rpx;
- z-index: 1;
- pointer-events: none;
- }
- .wanl-modal.option .opt .tag .cu-tag.disabled {
- color: #bbb;
- background-color: #f9f9f9;
- }
- .wanl-modal.option .opt .tag .cu-tag.noactive {
- color: #cacaca;
- background-color: #efefef;
- }
- .wanl-modal.option .opt .tag .cu-tag+.cu-tag {
- margin-left: 0;
- }
- .wanl-modal.option .number {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- /* 菜单 */
- .wanl-modal-menu {
- padding: 0 25rpx;
- box-sizing: border-box;
- padding-top: 18rpx;
- }
- /* grid 1-2-2布局 */
- .grid.col-1-2-2>view {
- width: 50%;
- }
- .grid.col-1-2-2>view:nth-child(1) {
- width: 100%;
- }
- /* grid 1-1_2布局 */
- .grid.col-1-1_2>view {
- width: 50%;
- }
- .grid.col-1-1_2>view:nth-child(1) {
- width: 100%;
- }
- .grid.col-1-1_2>view:nth-child(2) {
- width: 50%;
- }
- .grid.col-1-1_2>view:nth-child(3),
- .grid.col-1-1_2>view:nth-child(4) {
- width: 25%;
- }
- /* grid 2-1_2布局 */
- .grid.col-2-1_2>view {
- width: 50%;
- }
- .grid.col-2-1_2>view:nth-child(1),
- .grid.col-2-1_2>view:nth-child(2),
- .grid.col-2-1_2>view:nth-child(3) {
- width: 50%;
- }
- .grid.col-2-1_2>view:nth-child(4),
- .grid.col-2-1_2>view:nth-child(5) {
- width: 25%;
- }
- /* grid 2-2_1布局 */
- .grid.col-2-2_1>view {
- width: 50%;
- }
- .grid.col-2-2_1>view:nth-child(1),
- .grid.col-2-2_1>view:nth-child(2) {
- width: 50%;
- }
- .grid.col-2-2_1>view:nth-child(3),
- .grid.col-2-2_1>view:nth-child(4) {
- width: 25%;
- }
- /* grid 2-2-1_2布局 */
- .grid.col-2-2-1_2>view {
- width: 50%;
- }
- .grid.col-2-2-1_2>view:nth-child(1),
- .grid.col-2-2-1_2>view:nth-child(2),
- .grid.col-2-2-1_2>view:nth-child(3),
- .grid.col-2-2-1_2>view:nth-child(4),
- .grid.col-2-2-1_2>view:nth-child(5) {
- width: 50%;
- }
- .grid.col-2-2-1_2>view:nth-child(6),
- .grid.col-2-2-1_2>view:nth-child(7) {
- width: 25%;
- }
- /* grid 2-4布局 */
- .grid.col-2-4>view {
- width: 50%;
- }
- .grid.col-2-4>view:nth-child(3),
- .grid.col-2-4>view:nth-child(4),
- .grid.col-2-4>view:nth-child(5),
- .grid.col-2-4>view:nth-child(6) {
- width: 25%;
- }
- /* grid 2-2-4布局 */
- .grid.col-2-2-4>view {
- width: 50%;
- }
- .grid.col-2-2-4>view:nth-child(5),
- .grid.col-2-2-4>view:nth-child(6),
- .grid.col-2-2-4>view:nth-child(7),
- .grid.col-2-2-4>view:nth-child(8) {
- width: 25%;
- }
- /* 万联标签 */
- .wanl-tag {
- display: flex;
- align-items: center;
- }
- .wanl-tag .triangle {
- width: 0;
- height: 0;
- border-top: 18rpx solid transparent;
- border-bottom: 18rpx solid transparent;
- border-right: 18rpx solid #ffdb00;
- }
- .wanl-tag .content {
- background-color: #ffdb00;
- border-radius: 0 6rpx 6rpx 0;
- height: 36rpx;
- line-height: 36rpx;
- vertical-align: inherit;
- font-size: 24rpx;
- padding-right: 16rpx;
- padding-left: 8rpx;
- color: #5c1d10;
- }
- /* 左右圆角 */
- .round-left {
- border-radius: 5000rpx 0 0 5000rpx;
- }
- .round-right {
- border-radius: 0 5000rpx 5000rpx 0;
- }
- .cu-bar .action.transparent:first-child {
- margin-left: 18rpx;
- font-size: 40rpx;
- }
- .cu-bar .action.transparent:last-child {
- margin-right: 18rpx;
- font-size: 40rpx;
- }
- .cu-tag:empty:not([class*="wlIcon-"]) {
- z-index: 2;
- }
- .wanl-list .drawer .scroll {
- width: 100%;
- height: 100%;
- padding-bottom: 116rpx;
- padding-bottom: calc(116rpx + env(safe-area-inset-bottom));
- padding-top: 15rpx;
- padding-top: calc(5rpx + env(safe-area-inset-top));
- }
- .wanl-list .drawer .scroll .title {
- color: #666666;
- font-size: 24rpx;
- padding: 25rpx 20rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .wanl-list .drawer .scroll .from {
- display: flex;
- padding: 0 20rpx 25rpx 20rpx;
- }
- .wanl-list .drawer .scroll .from>text {
- padding: 0 25rpx;
- line-height: 60rpx;
- color: #f1f1f1;
- }
- .wanl-list .drawer .scroll .from>input {
- background: #f8f8f8;
- font-size: 24rpx;
- color: #999;
- height: 60rpx;
- text-align: center;
- border-radius: 999rpx;
- }
- .wanl-list .drawer .scroll .list {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- /* 相当于 1fr 1fr 1fr */
- grid-gap: 16rpx;
- /* grid-column-gap 和 grid-row-gap的简写 */
- grid-auto-flow: row;
- font-size: 25rpx;
- color: #666666;
- padding: 0 16rpx 25rpx 16rpx;
- }
- .wanl-list .drawer .scroll .list>text {
- display: flex;
- align-items: center;
- justify-content: center;
- background: #f8f8f8;
- border-radius: 5rpx;
- min-height: 70rpx;
- position: relative;
- overflow: hidden;
- }
- .wanl-list .drawer .scroll .list .active {
- background: #feeae1;
- color: #ff4f00;
- }
- .wanl-list .drawer .scroll .list .active::before {
- font-family: "wlIcon";
- content: "\e6db";
- position: absolute;
- right: -1px;
- top: -1px;
- font-size: 30rpx;
- }
- .wanl-list .drawer .footer {
- position: fixed;
- bottom: 0;
- background: #fff;
- display: flex;
- justify-content: flex-end;
- padding: 20rpx 26rpx 0 0;
- width: 100%;
- height: 116rpx;
- height: calc(116rpx + env(safe-area-inset-bottom));
- }
- .wanl-list .drawer .footer .cu-btn {
- height: 76rpx;
- padding: 0 50rpx;
- }
- /* 底部导航 */
- .wanlian.cu-bar.tabbar {
- background-color: #f8f8f8;
- padding: 0;
- height: calc(100rpx + env(safe-area-inset-bottom));
- padding-bottom: env(safe-area-inset-bottom);
- z-index: 2;
- }
- .wanlian.cu-bar.tabbar .action .badge {
- top: -8rpx;
- right: 0;
- background-color: #fe6600;
- }
- .wanlian.cu-bar.tabbar.shop .action {
- width: 106rpx;
- }
- .wanlian.cu-bar.tabbar .btn-group {
- justify-content: center;
- }
- .wanlian.cu-bar.tabbar .btn-group .cu-btn {
- padding: 0;
- width: 190rpx;
- height: 78rpx;
- }
- /* ==================直播==================== */
- .wan-live {}
- /* 商品详情页 直播图标 */
- .wan-live .tag {
- display: flex;
- align-items: center;
- border-radius: 18rpx;
- position: absolute;
- right: 25rpx;
- font-size: 20rpx;
- flex-wrap: wrap;
- background-color: rgba(0, 0, 0, 0.2);
- padding-bottom: 8rpx;
- }
- .wan-live .live {
- width: 100%;
- height: 52rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .wanLive-icon {
- width: 7%;
- height: 70%;
- position: relative;
- --color: #ff8d40;
- background-color: var(--color);
- transform-origin: bottom;
- animation: wanLive 0.6s 0.2s infinite ease-in-out;
- }
- .wanLive-icon::after {
- right: 200%;
- animation: wanLive 0.6s 0.4s infinite ease-in-out;
- }
- .wanLive-icon::before {
- left: 200%;
- animation: wanLive 0.6s 0s infinite ease-in-out;
- }
- .wanLive-icon::after,
- .wanLive-icon::before {
- width: 100%;
- height: 100%;
- content: '';
- position: absolute;
- bottom: 0;
- background-color: var(--color);
- transform-origin: bottom;
- }
- @keyframes wanLive {
- 0%,
- 100% {
- transform: scaleY(1);
- }
- 50% {
- transform: scaleY(0.6);
- }
- }
- /* ==================自定义页面==================== */
- .wanl-page {
- width: 100%;
- overflow: hidden;
- }
- /* ==================商品列表==================== */
- /* 全局样式 */
- .wanl-product .content {
- display: flex;
- flex: 1;
- flex-wrap: wrap;
- align-content: space-between;
- }
- .wanl-product .content>view {
- width: 100%;
- }
- .wanl-product .content .goods-tag {
- margin-top: 4rpx;
- margin-bottom: 10rpx;
- }
- /* 普通布局 */
- .wanl-product .product_list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- align-items: center;
- }
- .wanl-product .product_list .item {
- border-radius: 16rpx;
- background-color: #fff;
- overflow: hidden;
- }
- .wanl-product .product_list .item .img-wrap,
- .wanl-product .product_list .item image {
- height: 250rpx;
- width: 250rpx;
- }
- /* 瀑布流布局 */
- .wanl-product .product_warter .warter {
- border-radius: 16rpx !important;
- background-color: #ffffff;
- overflow: hidden;
- }
- .wanl-product .product_warter .warter .image {
- border-radius: 16rpx 16rpx 0 0 !important;
- width: 100%;
- overflow: hidden;
- }
- .wanl-product .product_warter .warter .img-wrap {
- margin-bottom: -4px;
- }
- /* 一列布局 */
- .wanl-product [class*='col-1-'] .item image,
- .wanl-product [class*='col-1-'] .item .img-wrap {
- border-radius: 16rpx;
- }
- .wanl-product .product_list.col-1-10 {
- margin: 0 10rpx;
- padding-top: 10rpx;
- }
- .wanl-product .product_list.col-1-10 .item {
- display: flex;
- width: 100%;
- margin-bottom: 10rpx;
- }
- .wanl-product .product_list.col-1-15 {
- margin: 0 15rpx;
- padding-top: 15rpx;
- }
- .wanl-product .product_list.col-1-15 .item {
- display: flex;
- width: 100%;
- margin-bottom: 15rpx;
- }
- .wanl-product .product_list.col-1-20 {
- margin: 0 20rpx;
- padding-top: 20rpx;
- }
- .wanl-product .product_list.col-1-20 .item {
- display: flex;
- width: 100%;
- margin-bottom: 20rpx;
- }
- .wanl-product .product_list.col-1-25 {
- margin: 0 25rpx;
- padding-top: 25rpx;
- }
- .wanl-product .product_list.col-1-25 .item {
- display: flex;
- width: 100%;
- margin-bottom: 25rpx;
- }
- .wanl-product .product_list.col-1-30 {
- margin: 0 30rpx;
- padding-top: 30rpx;
- }
- .wanl-product .product_list.col-1-30 .item {
- display: flex;
- width: 100%;
- margin-bottom: 30rpx;
- }
- /* 瀑布流 二列布局 */
- .wanl-product .product_warter.col-2-10 {
- margin: 0 10rpx;
- padding-top: 10rpx;
- }
- .wanl-product .product_warter.col-2-10 .warter {
- margin-bottom: 10rpx;
- }
- .wanl-product .product_warter.col-2-10 .warter.right {
- margin-left: 5rpx;
- }
- .wanl-product .product_warter.col-2-10 .warter.left {
- margin-right: 5rpx;
- }
- .wanl-product .product_warter.col-2-15 {
- margin: 0 15rpx;
- padding-top: 15rpx;
- }
- .wanl-product .product_warter.col-2-15 .warter {
- margin-bottom: 15rpx;
- }
- .wanl-product .product_warter.col-2-15 .warter.right {
- margin-left: 7.5rpx;
- }
- .wanl-product .product_warter.col-2-15 .warter.left {
- margin-right: 7.5rpx;
- }
- .wanl-product .product_warter.col-2-20 {
- margin: 0 20rpx;
- padding-top: 20rpx;
- }
- .wanl-product .product_warter.col-2-20 .warter {
- margin-bottom: 20rpx;
- }
- .wanl-product .product_warter.col-2-20 .warter.right {
- margin-left: 10rpx;
- }
- .wanl-product .product_warter.col-2-20 .warter.left {
- margin-right: 10rpx;
- }
- .wanl-product .product_warter.col-2-25 {
- margin: 0 25rpx;
- padding-top: 25rpx;
- }
- .wanl-product .product_warter.col-2-25 .warter {
- margin-bottom: 25rpx;
- }
- .wanl-product .product_warter.col-2-25 .warter.right {
- margin-left: 12.5rpx;
- }
- .wanl-product .product_warter.col-2-25 .warter.left {
- margin-right: 12.5rpx;
- }
- .wanl-product .product_warter.col-2-30 {
- margin: 0 30rpx;
- padding-top: 30rpx;
- }
- .wanl-product .product_warter.col-2-30 .warter {
- margin-bottom: 30rpx;
- }
- .wanl-product .product_warter.col-2-30 .warter.right {
- margin-left: 15rpx;
- }
- .wanl-product .product_warter.col-2-30 .warter.left {
- margin-right: 15rpx;
- }
- /* 二列布局 */
- .wanl-product .product_list[class*='col-2-'] .item image,
- .wanl-product .product_list[class*='col-2-'] .item .img-wrap {
- width: 100%;
- height: 400rpx;
- }
- .wanl-product .product_list[class*='col-2-'] .comment {
- display: none;
- }
- .wanl-product .product_list[class*='col-2-'] .content {
- height: 200rpx;
- }
- .wanl-product .product_list.col-2-10 {
- margin: 0 10rpx;
- padding-top: 10rpx;
- }
- .wanl-product .product_list.col-2-10:after {
- content: '';
- width: calc((100% - 10rpx) / 2);
- }
- .wanl-product .product_list.col-2-10 .item {
- width: calc((100% - 10rpx) / 2);
- margin-bottom: 10rpx;
- }
- .wanl-product .product_list.col-2-15 {
- margin: 0 15rpx;
- padding-top: 15rpx;
- }
- .wanl-product .product_list.col-2-15:after {
- content: '';
- width: calc((100% - 15rpx) / 2);
- }
- .wanl-product .product_list.col-2-15 .item {
- width: calc((100% - 15rpx) / 2);
- margin-bottom: 15rpx;
- }
- .wanl-product .product_list.col-2-20 {
- margin: 0 20rpx;
- padding-top: 20rpx;
- }
- .wanl-product .product_list.col-2-20:after {
- content: '';
- width: calc((100% - 20rpx) / 2);
- }
- .wanl-product .product_list.col-2-20 .item {
- width: calc((100% - 20rpx) / 2);
- margin-bottom: 20rpx;
- }
- .wanl-product .product_list.col-2-25 {
- margin: 0 25rpx;
- padding-top: 25rpx;
- }
- .wanl-product .product_list.col-2-25:after {
- content: '';
- width: calc((100% - 25rpx) / 2);
- }
- .wanl-product .product_list.col-2-25 .item {
- width: calc((100% - 25rpx) / 2);
- margin-bottom: 25rpx;
- }
- .wanl-product .product_list.col-2-30 {
- margin: 0 30rpx;
- padding-top: 30rpx;
- }
- .wanl-product .product_list.col-2-30:after {
- content: '';
- width: calc((100% - 30rpx) / 2);
- }
- .wanl-product .product_list.col-2-30 .item {
- width: calc((100% - 30rpx) / 2);
- margin-bottom: 30rpx;
- }
- /* 三列布局 */
- .wanl-product [class*='col-3-'] .item image,
- .wanl-product [class*='col-3-'] .item .img-wrap {
- width: 100%;
- }
- .wanl-product .product_list.col-3-10 {
- margin: 0 10rpx;
- padding-top: 10rpx;
- }
- .wanl-product .product_list.col-3-10:after {
- content: '';
- width: calc((100% - 20rpx) / 3);
- }
- .wanl-product .product_list.col-3-10 .item {
- width: calc((100% - 20rpx) / 3);
- margin-bottom: 10rpx;
- }
- .wanl-product .product_list.col-3-15 {
- margin: 0 15rpx;
- padding-top: 15rpx;
- }
- .wanl-product .product_list.col-3-15:after {
- content: '';
- width: calc((100% - 30rpx) / 3);
- }
- .wanl-product .product_list.col-3-15 .item {
- width: calc((100% - 30rpx) / 3);
- margin-bottom: 15rpx;
- }
- .wanl-product .product_list.col-3-20 {
- margin: 0 20rpx;
- padding-top: 20rpx;
- }
- .wanl-product .product_list.col-3-20:after {
- content: '';
- width: calc((100% - 40rpx) / 3);
- }
- .wanl-product .product_list.col-3-20 .item {
- width: calc((100% - 40rpx) / 3);
- margin-bottom: 20rpx;
- }
- .wanl-product .product_list.col-3-25 {
- margin: 0 25rpx;
- padding-top: 25rpx;
- }
- .wanl-product .product_list.col-3-25:after {
- content: '';
- width: calc((100% - 50rpx) / 3);
- }
- .wanl-product .product_list.col-3-25 .item {
- width: calc((100% - 50rpx) / 3);
- margin-bottom: 25rpx;
- }
- .wanl-product .product_list.col-3-30 {
- margin: 0 30rpx;
- padding-top: 30rpx;
- }
- .wanl-product .product_list.col-3-30:after {
- content: '';
- width: calc((100% - 60rpx) / 3);
- }
- .wanl-product .product_list.col-3-30 .item {
- width: calc((100% - 60rpx) / 3);
- margin-bottom: 30rpx;
- }
- /* ==================评论页==================== */
- .wanl-comment .subject .goods {
- display: flex;
- align-items: center;
- width: 100%;
- }
- .wanl-comment .subject .goods .cu-avatar {
- width: 130rpx;
- height: 130rpx;
- margin-right: 20rpx;
- }
- .wanl-comment .subject .goods .content {
- width: calc(100% - 150rpx);
- }
- .wanl-comment .subject .comment {
- display: flex;
- align-items: center;
- justify-items: center;
- }
- .wanl-comment .subject .comment .comment-title {
- width: 160rpx;
- color: #666666;
- }
- .wanl-comment .subject .comment .comment-operate {
- display: flex;
- }
- .wanl-comment .subject .comment .comment-operate .item {
- display: flex;
- align-items: center;
- justify-items: center;
- width: 150rpx;
- color: #c3c2ca;
- }
- .wanl-comment .subject .comment .comment-operate .item text {
- margin-right: 15rpx;
- font-size: 35rpx;
- }
- .wanl-comment .subject .comment .comment-operate .item.action {
- color: #ff4e02;
- font-weight: 500;
- }
- .wanl-comment .subject .comment .comment-operate .item.action .wlIcon-haoping:before {
- content: "\e6e7";
- }
- .wanl-comment .subject .comment .comment-operate .item.action .wlIcon-chaping:before {
- content: "\e6e6";
- }
- .wanl-comment .subject .describe {
- background-color: #fafafa;
- }
- .wanl-comment .subject .describe textarea {
- margin: 0;
- }
- .wanl-comment .subject .upload {}
- .wanl-comment .operate .score {
- display: flex;
- align-items: center;
- margin-top: 25rpx;
- }
- .wanl-comment .operate .score .title {
- width: 150rpx;
- }
- /* ==================消息通知==================== */
- .wanl-notice {
- position: relative;
- }
- .wanl-notice .tool {
- display: flex;
- align-items: center;
- padding-bottom: 190rpx;
- margin-left: 25rpx;
- padding-top: 6rpx;
- }
- .wanl-notice .tool .cu-tag {
- width: 40rpx;
- height: 40rpx;
- font-size: 25rpx;
- background-color: rgba(0, 0, 0, .05);
- }
- .wanl-notice .mode {
- position: absolute;
- width: 100%;
- bottom: -60rpx;
- }
- .wanl-notice .mode .shadow-warp {
- box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 10rpx;
- }
- .wanl-notice .mode .flex {
- background-color: white;
- border-radius: 25rpx;
- justify-content: space-between;
- align-items: center;
- padding: 25rpx 70rpx;
- }
- .wanl-notice .mode .flex>view {
- position: relative;
- }
- .wanl-notice .mode .flex>view .cu-tag.badge {
- top: 0;
- right: 0;
- height: 32rpx;
- }
- .wanl-notice .mode .flex>view .cu-tag.badge:not([class*="bg-"]) {
- background-color: red;
- }
- .wanl-notice .mode .flex text {
- display: block;
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- font-size: 48rpx;
- color: white;
- background-color: red;
- border-radius: 5000rpx;
- margin-bottom: 10rpx;
- }
- .wanl-notice .mode .flex .logistics text {
- background-image: linear-gradient(to right, #0081ff, #56ade0)
- }
- .wanl-notice .mode .flex .notice text {
- background-image: linear-gradient(to right, #ff9700, #f9ec50);
- }
- .wanl-notice .mode .flex .Interaction text {
- background-image: linear-gradient(to right, #3edc53, #8dc63f)
- }
- /* 消息列表 */
- .wanl-msg {
- padding-top: 66rpx;
- background-color: white;
- }
- .wanl-msg .cu-list.menu-avatar>.cu-item>.cu-avatar {
- left: 25rpx;
- }
- .wanl-msg .cu-list.menu-avatar>.cu-item .content {
- left: 145rpx;
- }
- .wanl-msg .cu-list.menu-avatar>.cu-item .action .cu-tag {
- border-radius: 1000rpx;
- font-size: 24rpx;
- padding: 0px 11rpx;
- height: 35rpx;
- line-height: 35rpx;
- }
- .wanl-msg .cu-avatar {
- background-color: transparent;
- }
- /* ==================物流通知==================== */
- /* 列表 */
- .wanl-logistics-list .item .title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .wanl-logistics-list .item .action {
- background-color: #f7f7f7;
- display: flex;
- overflow: hidden;
- border-radius: 10rpx;
- }
- .wanl-logistics-list .item .action image {
- width: 150rpx;
- height: 150rpx;
- }
- .wanl-logistics-list .item .action .padding-xs {
- width: calc(100% - 150rpx);
- }
- /* 详情 */
- /* ==================产品详情==================== */
- /* 价格-普通 */
- .wanl-goods .price {
- display: flex;
- justify-content: space-between;
- }
- .wanl-goods .price .text-xxl {
- font-size: 52rpx;
- }
- .wanl-goods .price .follow {
- text-align: center;
- }
- .wanl-goods .price .follow text {
- display: block;
- }
- .wanl-goods .price .follow text[class*="wlIcon-"] {
- font-size: 36rpx;
- }
- /* 价格-拼团 */
- .wanl-goods .price-pintuan{
- background-image: linear-gradient(90deg, #ff5f00 0, #ff243a 97%);
- }
- .wanl-goods .price-pintuan .price {
- padding-bottom: 20rpx;
- }
- .wanl-goods .price-pintuan .price .cu-capsule {
- vertical-align: 0.25em;
- }
- .wanl-goods .price-pintuan .price .cu-capsule .cu-tag[class*="line-"]:after {
- border-width: 3rpx;
- }
- /* 价格-抢购 */
- .wanl-goods .price-rush .price {
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- }
- .wanl-goods .price-rush .price .title {
- display: flex;
- }
- .wanl-goods .price-rush .price .amount {
- margin: 0 6rpx;
- color: #ffdb00;
- }
- /* 标题 */
- .wanl-goods .title {
- display: flex;
- position: relative;
- }
- .wanl-goods .title .name {
- width: 80%;
- }
- .wanl-goods .title .share .button {
- position: absolute;
- top: 6rpx;
- right: 0;
- background-color: #f4f4f4;
- border-radius: 500rpx 0 0 500rpx;
- padding: 7rpx 12rpx;
- display: flex;
- align-items: center;
- white-space: nowrap;
- }
- /* 物流 */
- .wanl-goods .block {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .wanl-goods .block .margin-right-xs {
- margin-right: 5rpx;
- }
- /* 营销 */
- .wanl-goods .promotion .item {
- display: flex;
- position: relative;
- padding: 20rpx 25rpx;
- }
- .wanl-goods .promotion .item:after {
- position: absolute;
- top: 0;
- left: 0;
- box-sizing: border-box;
- width: 200%;
- height: 200%;
- border-bottom: 0.5px solid #ddd;
- border-radius: inherit;
- content: " ";
- -webkit-transform: scale(.5);
- transform: scale(.5);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- pointer-events: none;
- }
- .wanl-goods .promotion .item:last-child:after {
- border: none;
- }
- .wanl-goods .promotion .item .label {
- height: 24px;
- line-height: 24px;
- width: 80rpx;
- }
- .wanl-goods .promotion .item .conten {
- width: 80%;
- }
- .wanl-goods .promotion .item .conten .promotion-header {
- padding-top: 6rpx;
- margin-bottom: 16rpx;
- height: 36rpx;
- display: flex;
- align-items: center;
- white-space: nowrap;
- }
- .wanl-goods .promotion .item .conten .promotion-header:last-child {
- margin-bottom: 10rpx;
- }
- .wanl-goods .promotion .item .conten .promotion-header .cu-tag {
- font-size: 22rpx;
- padding: 0px 8rpx;
- color: #ff243a;
- }
- .wanl-goods .promotion .item .bnt-quan {
- display: block;
- vertical-align: top;
- position: absolute;
- right: 25rpx;
- top: 26rpx;
- }
- /* 活动 */
- .wanl-goods .partake .item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .wanl-goods .partake .item .info {
- display: flex;
- align-items: center;
- }
- /* 选择 */
- .wanl-goods .choice {}
- .wanl-goods .choice .commodity {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- }
- .wanl-goods .choice .commodity .opt {
- display: flex;
- }
- .wanl-goods .choice .commodity .opt .title {
- width: 80rpx;
- flex-shrink: 0;
- }
- .wanl-goods .choice .commodity .opt .option {}
- .wanl-goods .choice .commodity .opt .option .selected {
- display: flex;
- }
- .wanl-goods .choice .commodity .opt .option .option-list .cu-tag {
- background-color: #f7f7f7;
- color: #999;
- border-radius: 12rpx;
- height: 60rpx;
- margin-right: 15rpx;
- margin-top: 25rpx;
- padding: 0px 20rpx;
- font-size: 24rpx;
- }
- .wanl-goods .choice .commodity .opt .option .option-list .cu-tag+.cu-tag {
- margin-left: 0;
- }
- /* 评价 */
- .wanl-goods .comment {}
- .wanl-goods .comment .head {
- display: flex;
- justify-content: space-between;
- }
- .wanl-goods .comment .label .cu-tag {
- background-color: #fff5ef;
- margin-right: 18rpx;
- margin-top: 25rpx;
- height: 60rpx;
- line-height: 60rpx;
- padding: 0 22rpx;
- color: #272727;
- font-size: 26rpx;
- }
- .wanl-goods .comment .label .cu-tag+.cu-tag {
- margin-left: 0;
- }
- .wanl-goods .comment .user {
- margin-bottom: 25rpx;
- }
- .wanl-goods .comment .user .userinfo {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .wanl-goods .comment .user .userinfo .avatar {
- display: flex;
- align-items: center;
- }
- .wanl-goods .comment .user .grid.col-1>view {
- width: 50%;
- }
- .wanl-goods .comment .user .details {
- margin: 20rpx 0;
- }
- .wanl-goods .comment .more {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- /* 店铺 */
- .wanl-goods .shop .shopinfo {
- display: flex;
- align-items: center;
- position: relative;
- }
- .wanl-goods .shop .shopinfo .cu-avatar {}
- .wanl-goods .shop .shopinfo .shopname {
- position: absolute;
- left: 116rpx;
- }
- .wanl-goods .shop .shopinfo .bnt {
- position: absolute;
- right: 0;
- }
- .wanl-goods .shop .shopinfo .bnt .cu-btn {
- padding: 0 16rpx;
- font-size: 24rpx;
- height: 54rpx;
- }
- .wanl-goods .shop .quality {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .wanl-goods .shop .quality .cu-tag {
- vertical-align: baseline;
- font-size: 20rpx;
- padding: 0 6rpx;
- height: 30rpx;
- }
- .wanl-goods .shop .quality text {
- margin: 0 15rpx;
- }
- .wanl-goods .shop .quality .cu-tag.gao {
- background-color: #feebe2;
- color: #ff6601;
- }
- /* 店铺推荐 */
- .wanl-goods .shop-recom .head {
- display: flex;
- justify-content: space-between;
- }
- .wanl-goods .shop-recom .recommend {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- }
- .wanl-goods .shop-recom .recommend:after {
- content: '';
- width: 32%;
- border: 1px solid transparent;
- }
- .wanl-goods .shop-recom .recommend .item {
- width: 32%;
- margin-top: 25rpx;
- }
- .wanl-goods .shop-recom .recommend .item image {
- height: 220rpx;
- overflow: hidden;
- border-radius: 8rpx;
- }
- .wanl-goods-content {
- width: 100%;
- overflow: hidden;
- }
- /* 评论页 */
- .wanl-goods-comment .head .cu-tag {
- height: 60rpx;
- background-color: #ffeee3;
- color: #383736;
- padding: 0 25rpx;
- margin: 25rpx 15rpx 0 0;
- }
- .wanl-goods-comment .head .cu-tag.active {
- background-color: #fe6600;
- color: white;
- }
- .wanl-goods-comment .list {
- margin-bottom: 25rpx;
- background-color: white;
- padding-bottom: 0;
- }
- .wanl-goods-comment .list .userinfo {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .wanl-goods-comment .list .userinfo .avatar {
- display: flex;
- align-items: center;
- }
- .wanl-goods-comment .list .grid.col-1>view {
- width: 450rpx;
- }
- .wanl-goods-comment .list .details {
- margin: 20rpx 0;
- }
- .wanl-goods-comment .list .goods {
- background-color: #f5f5f5;
- display: flex;
- align-items: center;
- }
- .wanl-goods-comment .list .goods .cu-avatar {
- width: 120rpx;
- height: 120rpx;
- }
- .wanl-goods-comment .list .goods .content {
- width: calc(100% - 145rpx);
- }
- /* ==================搜索页面==================== */
- .wanl-search .history>view {
- margin-bottom: 50rpx;
- }
- .wanl-search .history .title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 30rpx;
- margin-bottom: 10rpx;
- }
- .wanl-search .list {
- display: flex;
- flex-wrap: wrap;
- }
- .wanl-search .list>view {
- background: #f8f8f8;
- color: #666666;
- margin: 20rpx 20rpx 0 0;
- padding: 10rpx 25rpx;
- border-radius: 9999rpx;
- position: relative;
- }
- .wanl-search .cu-list.menu>.cu-item {
- min-height: 86rpx;
- }
- /* ==================搜索列表==================== */
- .wanl-list .headtop {
- height: 80rpx;
- }
- .wanl-list .headtop .cue {
- position: fixed;
- width: 100%;
- animation-name: fluctuate;
- animation-duration: .2s;
- z-index: 1000;
- }
- .wanl-list .bar {
- padding: 0 40rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- min-height: 80rpx;
- font-size: 28rpx;
- background-color: #f7f7f7;
- }
- .wanl-list .bar .item {
- color: #555;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .wanl-list .bar .item.current {
- color: #ff4f00;
- }
- .wanl-list .bar .item .box {
- display: flex;
- flex-direction: column;
- height: 42rpx;
- line-height: 1;
- }
- .wanl-list .bar .item .box text[class*="wlIcon-"] {
- color: #cccccc;
- margin: 0 10rpx;
- font-weight: bold;
- font-size: 22rpx;
- }
- .wanl-list .bar .item .box text[class*="wlIcon-"].active {
- color: #ff4f00;
- }
- .wanl-list .menus {
- height: 80rpx;
- background-color: white;
- display: flex;
- align-items: center;
- }
- /* ==================聊天窗口==================== */
- .wanl-chat .chatfoot {
- position: fixed;
- width: 100%;
- bottom: 0;
- z-index: 1024;
- }
- /* ==================订单列表==================== */
- .wanl-order-list {
- height: 100%;
- }
- .wanl-order-list .list-scroll-content {
- height: 100%;
- }
- .wanl-order-list .uni-swiper-item {
- height: auto;
- }
- /* 菜单 */
- .wanl-order-list .navbar {
- display: flex;
- height: 60rpx;
- color: #3d4144;
- font-size: 26rpx;
- z-index: 10;
- }
- .wanl-order-list .navbar .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- position: relative;
- }
- .wanl-order-list .navbar .nav-item.current {
- color: #ff4f00;
- }
- .wanl-order-list .navbar .nav-item.current:after {
- content: "";
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 40%;
- height: 0;
- border-bottom: 2px solid #ff4f00;
- }
- /* 商品 */
- .wanl-order-list .order-item {
- display: flex;
- flex-direction: column;
- padding-left: 25rpx;
- background: #fff;
- margin: 0 18rpx;
- margin-top: 25rpx;
- }
- .wanl-order-list .order-item .head {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 80rpx;
- }
- .wanl-order-list .order-item .goods-box {
- display: flex;
- padding-top: 25rpx;
- }
- .wanl-order-list .order-item .goods-box .content {
- flex: 1;
- display: flex;
- }
- .wanl-order-list .order-item .goods-box .content .describe {
- flex: 1;
- }
- .wanl-order-list .order-item .goods-box .content .parameter {
- width: 140rpx;
- text-align: right;
- }
- .wanl-order-list .order-item .price-box {
- display: flex;
- justify-content: flex-end;
- align-items: baseline;
- padding: 28rpx;
- padding-top: 50rpx;
- }
- .wanl-order-list .order-item .action-box {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- position: relative;
- }
- .wanl-order-list .order-item .action-box .cu-btn {
- padding: 0 30rpx;
- font-size: 24rpx;
- height: 60rpx;
- }
- /* ================== 优惠券 ==================== */
- .wanl-coupon .item {
- height: 210rpx;
- position: relative;
- overflow: hidden;
- display: flex;
- }
- /* 样式开始 */
- .wanl-coupon .item.reduction .colour {
- color: #ff4f00;
- }
- .wanl-coupon .item.reduction .tagstyle {
- background-color: #fff0e6;
- color: #ff4f00;
- }
- .wanl-coupon .item.reduction .cu-btn {
- color: #ffffff;
- background-color: #ff4f00;
- }
- .wanl-coupon .item.reduction .cu-btn.line-colour {
- color: #ff4f00;
- background-color: transparent;
- }
- .wanl-coupon .item.discount .colour {
- color: #39b54a;
- }
- .wanl-coupon .item.discount .tagstyle {
- background-color: #e9ffec;
- color: #39b54a;
- }
- .wanl-coupon .item.discount .cu-btn {
- color: #ffffff;
- background-color: #39b54a;
- }
- .wanl-coupon .item.discount .cu-btn.line-colour {
- color: #39b54a;
- background-color: transparent;
- }
- .wanl-coupon .item.shipping .colour {
- color: #0081ff;
- }
- .wanl-coupon .item.shipping .tagstyle {
- background-color: #e1f0ff;
- color: #0081ff;
- }
- .wanl-coupon .item.shipping .cu-btn {
- color: #ffffff;
- background-color: #0081ff;
- }
- .wanl-coupon .item.shipping .cu-btn.line-colour {
- color: #0081ff;
- background-color: transparent;
- }
- .wanl-coupon .item.vip .colour {
- color: #f5a623;
- }
- .wanl-coupon .item.vip .tagstyle {
- background-color: #fff7e9;
- color: #f5a623;
- }
- .wanl-coupon .item.vip .cu-btn {
- color: #ffffff;
- background-color: #f5a623;
- }
- .wanl-coupon .item.vip .cu-btn.line-colour {
- color: #f5a623;
- background-color: transparent;
- }
- /* 样式结束 */
- .wanl-coupon .item .coupon-bg {
- width: 100%;
- height: 210rpx;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 1;
- }
- .wanl-coupon .item .coupon-sign {
- height: 110rpx;
- width: 110rpx;
- position: absolute;
- z-index: 99;
- top: -30rpx;
- right: 30rpx;
- }
- .wanl-coupon .item .item-left {
- width: 218rpx;
- height: 210rpx;
- position: relative;
- z-index: 2;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- flex-shrink: 0;
- }
- .wanl-coupon .item .item-left .price {
- font-size: 52rpx;
- font-weight: bold;
- }
- .wanl-coupon .item .item-left .prices {
- font-size: 50rpx;
- font-weight: bold;
- }
- .wanl-coupon .item .item-left .discount {
- font-size: 22rpx;
- }
- .wanl-coupon .item .item-left .cu-tag {
- margin-top: 8rpx;
- }
- .wanl-coupon .item .item-right {
- display: flex;
- flex-wrap: wrap;
- flex: 1;
- height: 210rpx;
- z-index: 2;
- overflow: hidden;
- align-content: space-between;
- }
- .wanl-coupon .item .item-right .shop {
- display: flex;
- width: 100%;
- justify-content: space-between;
- }
- .wanl-coupon .item .item-right .shop .name {
- flex: 1;
- }
- .wanl-coupon .item .item-right .title {
- display: flex;
- align-items: center;
- width: 100%;
- }
- .wanl-coupon .item .item-right .content {
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- width: 100%;
- }
- .wanl-coupon .item .item-right .cu-btn.sm {
- padding: 0 25rpx;
- font-size: 24rpx;
- height: 60rpx;
- }
- /* ==================订单列表==================== */
- .wanl-order .address .cu-avatar {
- width: 82rpx;
- height: 82rpx;
- font-size: 1.6em;
- }
- .wanl-order .address.cu-list.menu-avatar>.cu-item>.cu-avatar {
- left: 25rpx;
- }
- .wanl-order .address.cu-list.menu-avatar>.cu-item .content {
- left: 130rpx;
- width: calc(100% - 200rpx);
- }
- .wanl-order .address.cu-list.menu-avatar>.cu-item .action {
- width: 40rpx;
- }
- .wanl-order .lists .shopname {
- margin: 20rpx 25rpx 30rpx 25rpx;
- }
- .wanl-order .lists .cu-list.menu-avatar>.cu-item {
- padding-right: 25rpx;
- height: 160rpx;
- align-items: flex-start;
- }
- .wanl-order .lists .cu-list.menu-avatar>.cu-item:after,
- .wanl-order .lists .cu-list.menu>.cu-item:after {
- border-bottom: 0;
- }
- .wanl-order .lists .cu-list.menu-avatar>.cu-item .content {
- position: absolute;
- left: 186rpx;
- width: calc(100% - 350rpx);
- line-height: 1.2em;
- }
- .wanl-order .lists .cu-list.menu-avatar>.cu-item .content>view:first-child {
- font-size: 26rpx;
- }
- .wanl-order .lists .cu-list.menu-avatar>.cu-item>.cu-avatar {
- position: absolute;
- left: 25rpx;
- width: 140rpx;
- height: 140rpx;
- }
- .wanl-order .lists .cu-list.menu-avatar>.cu-item .action {
- width: 180rpx;
- text-align: right;
- }
- /* 操作 */
- .wanl-order form .cu-form-group+.cu-form-group {
- border-top: 0
- }
- .wanl-order form .cu-form-group {
- padding: 0 25rpx;
- }
- .wanl-order form .cu-form-group .title {
- font-size: 26rpx;
- height: 52rpx;
- line-height: 52rpx;
- padding-right: 25rpx;
- }
- .wanl-order form .cu-form-group:first-child {
- margin-top: 25rpx;
- }
- .wanl-order form .cu-form-group {
- min-height: 76rpx;
- }
- .wanl-order form .cu-form-group picker:after {
- line-height: 76rpx;
- font-size: 30rpx;
- color: #333333;
- }
- .wanl-order form .cu-form-group picker .picker {
- line-height: 76rpx;
- font-size: 26rpx;
- }
- .wanl-order form .wanl-numberBox {
- width: 180rpx;
- height: 54rpx;
- padding: 6rpx;
- }
- .wanl-order form .wanl-numberBox text {
- padding: 8rpx;
- font-size: 30rpx;
- }
- /* 文本行高度 */
- .wanl-order form .cu-form-group.align-start .title {
- margin-top: 14rpx;
- }
- .wanl-order form .cu-form-group textarea {
- font-size: 26rpx;
- margin: 24rpx 0 0 0;
- height: 3.5em;
- }
- .wanl-order .wanlian.cu-bar.tabbar {
- background-color: white;
- justify-content: flex-end;
- }
- .wanl-order .wanlian.cu-bar.tabbar .cu-btn {
- font-size: 28rpx;
- height: 76rpx;
- }
- /* ==================sku组件==================== */
- .wanl_sku {
- background-color: #fafafa;
- color: #9c9c9c;
- margin-top: 10rpx;
- padding: 4rpx 8rpx;
- border-radius: 6rpx;
- display: inline-flex;
- }
- /* ==================支付页面==================== */
- .wanl-pay .price-box {
- background-color: #fff;
- height: 300rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- font-size: 80rpx;
- color: #666666;
- }
- .wanl-pay .list-box {
- margin-top: 20rpx;
- background-color: #fff;
- padding-left: 60rpx;
- }
- .wanl-pay .list-box .item {
- height: 120rpx;
- padding: 20upx 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-right: 60rpx;
- font-size: 30rpx;
- position: relative;
- }
- .wanl-pay .list-box .item .wlIcon-balance-pay {
- color: #fe8e2e;
- }
- .wanl-pay .list-box .item .wlIcon-alipay-pay {
- color: #06a0f8;
- }
- .wanl-pay .list-box .item .wlIcon-jssdk-pay {
- color: #26af41;
- }
- .wanl-pay .list-box .item .wlIcon-wechat-pay {
- color: #26af41;
- }
- .wanl-pay .list-box .item .wlIcon-baidu-pay {
- color: #e84330;
- }
- .wanl-pay .list-box .item .wlIcon-fiuu-pay {
- color: #1a4d8c;
- }
- .wanl-pay .list-box .item>text[class*="wlIcon-"] {
- width: 100rpx;
- font-size: 52rpx;
- }
- .wanl-pay .list-box .item .fiuu-pay-icon {
- width: 100rpx;
- height: 100rpx;
- }
- .wanl-pay .list-box .item .action {
- flex: 1;
- display: flex;
- flex-direction: column;
- font-size: 24rpx;
- color: #999999;
- }
- .wanl-pay .list-box .item .action .title {
- font-size: 32rpx;
- margin-bottom: 4rpx;
- }
- .wanl-pay .mix-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 630rpx;
- height: 80rpx;
- margin: 80upx auto 30rpx;
- font-size: 16px;
- color: #fff;
- border-radius: 10rpx;
- }
- .wanl-pay .footer {
- position: fixed;
- width: 100%;
- bottom: 0;
- color: #eaeaea;
- z-index: 1;
- height: 140rpx;
- height: calc(140rpx + env(safe-area-inset-bottom) / 2);
- padding-bottom: calc(env(safe-area-inset-bottom) / 2);
- }
- /* ==================客服服务==================== */
- .wanl-service {
- display: flex;
- justify-content: space-around;
- align-items: center;
- align-content: center;
- text-align: center;
- height: 280rpx;
- }
- .wanl-service .cu-avatar.lg {
- width: 100rpx;
- height: 100rpx;
- font-size: 50rpx;
- }
- .wanl-you-like {
- background-size: 239rpx;
- background-repeat: no-repeat;
- background-position: 50% 50%;
- width: 100%;
- height: 50rpx;
- margin-top: 20rpx;
- }
- .wanl-poster__main .image img {
- -webkit-touch-callout: default;
- }
- /* CSS动画 */
- [class*=animation-] {
- animation-duration: .35s;
- animation-timing-function: ease-out;
- animation-fill-mode: both
- }
- .animation-fade {
- animation-name: fade;
- animation-duration: .8s;
- animation-timing-function: linear
- }
- .animation-scale-up {
- animation-name: scale-up
- }
- .animation-scale-down {
- animation-name: scale-down
- }
- .animation-slide-top {
- animation-name: slide-top
- }
- .animation-slide-bottom {
- animation-name: slide-bottom
- }
- .animation-slide-left {
- animation-name: slide-left
- }
- .animation-slide-right {
- animation-name: slide-right
- }
- .animation-shake {
- animation-name: shake
- }
- .animation-reverse {
- animation-direction: reverse
- }
- .wlIconfont-spin {
- -webkit-animation: wlIcon-spin 2s infinite linear;
- animation: wlIcon-spin 2s infinite linear;
- display: inline-block;
- }
- .wlIconfont-pulse {
- -webkit-animation: wlIcon-spin 1s infinite steps(8);
- animation: wlIcon-spin 1s infinite steps(8);
- display: inline-block;
- }
- @keyframes wlIcon-spin {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0);
- }
- 100% {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg);
- }
- }
- @keyframes fluctuate {
- 0% {
- opacity: 0.5;
- transform: translateY(-50rpx);
- }
- 100% {
- opacity: 1;
- transform: translateY(0)
- }
- }
- @keyframes fade {
- 0% {
- opacity: 0
- }
- 100% {
- opacity: 1
- }
- }
- @keyframes scale-up {
- 0% {
- opacity: 0;
- transform: scale(.2)
- }
- 100% {
- opacity: 1;
- transform: scale(1)
- }
- }
- @keyframes scale-down {
- 0% {
- opacity: 0;
- transform: scale(1.8)
- }
- 100% {
- opacity: 1;
- transform: scale(1)
- }
- }
- @keyframes slide-top {
- 0% {
- opacity: 0;
- transform: translateY(-100%)
- }
- 100% {
- opacity: 1;
- transform: translateY(0)
- }
- }
- @keyframes slide-bottom {
- 0% {
- opacity: 0;
- transform: translateY(100%)
- }
- 100% {
- opacity: 1;
- transform: translateY(0)
- }
- }
- @keyframes shake {
- 0%,
- 100% {
- transform: translateX(0)
- }
- 10% {
- transform: translateX(-9px)
- }
- 20% {
- transform: translateX(8px)
- }
- 30% {
- transform: translateX(-7px)
- }
- 40% {
- transform: translateX(6px)
- }
- 50% {
- transform: translateX(-5px)
- }
- 60% {
- transform: translateX(4px)
- }
- 70% {
- transform: translateX(-3px)
- }
- 80% {
- transform: translateX(2px)
- }
- 90% {
- transform: translateX(-1px)
- }
- }
- @keyframes slide-left {
- 0% {
- opacity: 0;
- transform: translateX(-100%)
- }
- 100% {
- opacity: 1;
- transform: translateX(0)
- }
- }
- @keyframes slide-right {
- 0% {
- opacity: 0;
- transform: translateX(100%)
- }
- 100% {
- opacity: 1;
- transform: translateX(0)
- }
- }
|