| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736 |
- @charset "UTF-8";
- /***
- 全局scss 变量和方法 存放处
- */
- /* 引入minxin */
- /* 颜色变量 */
- /*图片地址*/
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- @font-face {
- font-family: 'iconfont'; /* project id 1525256 */
- src: url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.eot');
- src: url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.eot?#iefix') format('embedded-opentype'),
- url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.woff2') format('woff2'),
- url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.woff') format('woff'),
- url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.ttf') format('truetype'),
- url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.svg#iconfont') format('svg');
- }
- .iconfont {
- font-family: "iconfont" !important;
- font-size: 16rpx;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .iconcachu::before {
- content: "\e7e6";
- }
- .iconjihuo:before {
- content: "\e601";
- }
- .iconmingxi1:before {
- content: "\e7e5";
- }
- .iconjian:before {
- content: "\e7e3";
- }
- .iconzeng:before {
- content: "\e7e4";
- }
- .iconqiehuan1:before {
- content: "\e7e2";
- }
- .iconqishouyinying:before {
- content: "\e7e1";
- }
- .iconxiayi:before {
- content: "\e7de";
- }
- .iconshangyi:before {
- content: "\e7e0";
- }
- .iconyiruku:before {
- content: "\e7df";
- }
- .iconyikaidian:before {
- content: "\e7d7";
- }
- .icondianhua1:before {
- content: "\e7d9";
- }
- .iconshoukuanma1:before {
- content: "\e7d8";
- }
- .icondaichuku:before {
- content: "\e7da";
- }
- .iconyichuku:before {
- content: "\e7db";
- }
- .iconyiquxiao:before {
- content: "\e7dc";
- }
- .icondairuku:before {
- content: "\e7dd";
- }
- .iconshoukuanma:before {
- content: "\e600";
- }
- .icongouwuche:before {
- content: "\e7d5";
- }
- .iconjianqu:before {
- content: "\e7d3";
- }
- .icontianjia:before {
- content: "\e7d4";
- }
- .iconsearch1:before {
- content: "\e7d6";
- }
- .icondingdanweixuanzhong1:before {
- content: "\e7c9";
- }
- .icondianpuweixuanzhong:before {
- content: "\e7ca";
- }
- .iconwodeweixuanzhong:before {
- content: "\e7cb";
- }
- .iconyingyongweixuanzhong:before {
- content: "\e7cc";
- }
- .icondianpuxuanzhong:before {
- content: "\e7cd";
- }
- .icondingdanxuanzhong1:before {
- content: "\e7ce";
- }
- .iconwodexuanzhong:before {
- content: "\e7cf";
- }
- .iconkehuweixuanzhong1:before {
- content: "\e7d0";
- }
- .iconyingyongxuanzhong:before {
- content: "\e7d1";
- }
- .iconkehuxuanzhong1:before {
- content: "\e7d2";
- }
- .iconxiaochengxu2:before {
- content: "\e78d";
- }
- .iconmeituan:before {
- content: "\e78e";
- }
- .iconzhangshangcaifuyemianshoujiban344:before {
- content: "\e632";
- }
- .iconwaimai:before {
- content: "\e692";
- }
- .iconxiaochengxu1:before {
- content: "\e619";
- }
- .iconjiantouxia:before {
- content: "\e61a";
- }
- .iconshenheweitongguo:before {
- content: "\e774";
- }
- .iconsanjiao_xia:before {
- content: "\e631";
- }
- .iconsanjiaoshang:before {
- content: "\e643";
- }
- .icondagou:before {
- content: "\e607";
- }
- .iconshezhi:before {
- content: "\e645";
- }
- .iconcaidan:before {
- content: "\e65d";
- }
- .iconxiaoxi2:before {
- content: "\e76f";
- }
- .iconmorentu:before {
- content: "\e76e";
- }
- .icongou:before {
- content: "\e76d";
- }
- .iconbianjijiage1:before {
- content: "\e76c";
- }
- .iconchenggong:before {
- content: "\e76b";
- }
- .iconfahuo:before {
- content: "\e75d";
- }
- .iconshouye:before {
- content: "\e75e";
- }
- .icontianjiatuku:before {
- content: "\e767";
- }
- .iconxinrenlingquanshezhi:before {
- content: "\e768";
- }
- .iconhuiyuandengjishezhi:before {
- content: "\e769";
- }
- .iconweixin:before {
- content: "\e76a";
- }
- .iconcaidanlan:before {
- content: "\e75c";
- }
- .icontupiantianjia:before {
- content: "\e75f";
- }
- .icondelete:before {
- content: "\e760";
- }
- .iconxiaoxi1:before {
- content: "\e761";
- }
- .iconxiala:before {
- content: "\e762";
- }
- .icontianjiakehu:before {
- content: "\e766";
- }
- .iconweixingongzhonghao:before {
- content: "\e763";
- }
- .iconshoujihao1:before {
- content: "\e764";
- }
- .iconweixinlaiyuan:before {
- content: "\e765";
- }
- .iconkehuxuanzhong:before {
- content: "\e755";
- }
- .iconkehuweixuanzhong:before {
- content: "\e756";
- }
- .icongongzuotaiweixuanzhong:before {
- content: "\e757";
- }
- .icongongzuotaixuanzhong:before {
- content: "\e758";
- }
- .icondingdanweixuanzhong:before {
- content: "\e759";
- }
- .icondingdanxuanzhong:before {
- content: "\e75a";
- }
- .iconcaozuo:before {
- content: "\e751";
- }
- .iconcaozuojihuo:before {
- content: "\e752";
- }
- .iconfenxiang1:before {
- content: "\e74c";
- }
- .iconbianji:before {
- content: "\e74d";
- }
- .iconjinyong:before {
- content: "\e74e";
- }
- .iconqiyong:before {
- content: "\e74f";
- }
- .iconshanchu1:before {
- content: "\e750";
- }
- .iconzhiding:before {
- content: "\e753";
- }
- .iconxiajia:before {
- content: "\e754";
- }
- .iconguanbi:before {
- content: "\e74b";
- }
- .iconshanchu:before {
- content: "\e74a";
- }
- .iconkefu:before {
- content: "\e749";
- }
- .icontupian:before {
- content: "\e746";
- }
- .iconxiaochengxu:before {
- content: "\e747";
- }
- .iconzhifubao:before {
- content: "\e748";
- }
- .iconchangjianwentixiangguanwenti2:before {
- content: "\e679";
- }
- .iconxuanzhong:before {
- content: "\e744";
- }
- .iconweixuanzhong:before {
- content: "\e745";
- }
- .iconfenxiang:before {
- content: "\e743";
- }
- .iconxiaoxi:before {
- content: "\e741";
- }
- .icondianpu:before {
- content: "\e742";
- }
- .icondianhua:before {
- content: "\e73f";
- }
- .iconditu:before {
- content: "\e740";
- }
- .iconsearch:before {
- content: "\e73d";
- }
- .iconclose:before {
- content: "\e73e";
- }
- .icondaizhifu:before {
- content: "\e733";
- }
- .iconshoujihao:before {
- content: "\e734";
- }
- .iconxiangyou:before {
- content: "\e735";
- }
- .iconhaopingxingxing:before {
- content: "\e736";
- }
- .iconmine:before {
- content: "\e737";
- }
- .iconstore:before {
- content: "\e738";
- }
- .iconhome:before {
- content: "\e739";
- }
- .iconclassification:before {
- content: "\e73a";
- }
- .iconyiguoqi:before {
- content: "\e73b";
- }
- .iconyishiyong:before {
- content: "\e73c";
- }
- @font-face {
- font-family: uniicons;
- font-weight: normal;
- font-style: normal;
- src: url('https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf') format('truetype');
- }
- /*通用 */
- /*view{*/
- /* font-size: 24upx;*/
- /* }*/
- /* view uni-button{*/
- /* font-size: 28upx;*/
- /* }*/
- .uni-list-cell__content-title{
- font-size: 28rpx !important;
- }
- progress, checkbox-group{
- width: 100%;
- }
- form {
- width: 100%;
- }
- .uni-flex {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- }
- .uni-flex-item {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- }
- .uni-row {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- }
- .uni-column {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .uni-link{
- color:#576B95;
- font-size:26rpx;
- }
- .uni-center{
- text-align:center;
- }
- .uni-inline-item{
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-align:center;
- -webkit-align-items:center;
- align-items:center;
- }
- .uni-inline-item text{
- margin-right: 20rpx;
- }
- .uni-inline-item text:last-child{
- margin-right: 0rpx;
- margin-left: 20rpx;
- }
- /* page */
- .uni-page-head{
- padding:35rpx;
- text-align: center;
- }
- .uni-page-head-title {
- display: inline-block;
- padding: 0 40rpx;
- font-size: 30rpx;
- height: 88rpx;
- line-height: 88rpx;
- color: #BEBEBE;
- box-sizing: border-box;
- border-bottom: 2rpx solid #D8D8D8;
- }
- .uni-page-body {
- width: 100%;
- -webkit-box-flex: 1;
- -webkit-flex-grow: 1;
- flex-grow: 1;
- overflow-x: hidden;
- }
- .uni-padding-wrap{
- width:690rpx;
- padding:0 30rpx;
- }
- .uni-word {
- text-align: center;
- padding:200rpx 100rpx;
- }
- .uni-title {
- font-size:30rpx;
- font-weight:500;
- padding:20rpx 0;
- line-height:1.5;
- }
- .uni-text{
- font-size:28rpx;
- }
- .uni-title text{
- font-size:24rpx;
- color:#888;
- }
- .uni-text-gray{
- color: #ccc;
- }
- .uni-text-small {
- font-size:24rpx;
- }
- .uni-common-mb{
- margin-bottom:30rpx;
- }
- .uni-common-pb{
- padding-bottom:30rpx;
- }
- .uni-common-pl{
- padding-left:30rpx;
- }
- .uni-common-mt{
- margin-top:30rpx;
- }
- /* 背景色 */
- .uni-bg-red{
- background:#F76260; color:#FFF;
- }
- .uni-bg-green{
- background:#09BB07; color:#FFF;
- }
- .uni-bg-blue{
- background:#007AFF; color:#FFF;
- }
- /* 标题 */
- .uni-h1 {font-size: 80rpx; font-weight:700;}
- .uni-h2 {font-size: 60rpx; font-weight:700;}
- .uni-h3 {font-size: 48rpx; font-weight:700;}
- .uni-h4 {font-size: 36rpx; font-weight:700;}
- .uni-h5 {font-size: 28rpx; color: #8f8f94;}
- .uni-h6 {font-size: 24rpx; color: #8f8f94;}
- .uni-bold{font-weight:bold;}
- /* 文本溢出隐藏 */
- .uni-ellipsis {overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
- /* 竖向百分百按钮 */
- .uni-btn-v{
- padding:10rpx 0;
- }
- .uni-btn-v button{margin:20rpx 0;}
- /* 表单 */
- .uni-form-item{
- display:-webkit-box;
- display:-webkit-flex;
- display:flex;
- width:100%;
- padding:10rpx 0;
- }
- .uni-form-item .title{
- padding:10rpx 25rpx;
- }
- .uni-label {
- width: 210rpx;
- word-wrap: break-word;
- word-break: break-all;
- text-indent:20rpx;
- }
- /*.uni-input {*/
- /* height: 50upx;*/
- /* padding: 15upx 25upx;*/
- /* line-height:50upx;*/
- /* font-size:28upx;*/
- /* background:#FFF;*/
- /* flex: 1;*/
- /*}*/
- radio-group, checkbox-group{
- width:100%;
- }
- radio-group label, checkbox-group label{
- padding-right:20rpx;
- }
- .uni-form-item .with-fun{
- display:-webkit-box;
- display:-webkit-flex;
- display:flex;
- -webkit-flex-wrap:nowrap;
- flex-wrap:nowrap;
- background:#FFFFFF;
- }
- .uni-form-item .with-fun .uni-icon{
- width:40rpx;
- height:80rpx;
- line-height:80rpx;
- -webkit-flex-shrink:0;
- flex-shrink:0;
- }
- /* loadmore */
- .uni-loadmore{
- height:80rpx;
- line-height:80rpx;
- text-align:center;
- padding-bottom:30rpx;
- }
- /*数字角标*/
- .uni-badge,
- .uni-badge-default {
- font-family: 'Helvetica Neue', Helvetica, sans-serif;
- font-size: 12rpx;
- line-height: 1;
- display: inline-block;
- padding: 3rpx 6rpx;
- color: #333;
- border-radius: 100rpx;
- background-color: rgba(0, 0, 0, .15);
- }
- .uni-badge.uni-badge-inverted {
- padding: 0 5rpx 0 0;
- color: #929292;
- background-color: transparent
- }
- .uni-badge-primary {
- color: #fff;
- background-color: #007aff
- }
- .uni-badge-blue.uni-badge-inverted,
- .uni-badge-primary.uni-badge-inverted {
- color: #007aff;
- background-color: transparent
- }
- .uni-badge-green,
- .uni-badge-success {
- color: #fff;
- background-color: #4cd964;
- }
- .uni-badge-green.uni-badge-inverted,
- .uni-badge-success.uni-badge-inverted {
- color: #4cd964;
- background-color: transparent
- }
- .uni-badge-warning,
- .uni-badge-yellow {
- color: #fff;
- background-color: #f0ad4e
- }
- .uni-badge-warning.uni-badge-inverted,
- .uni-badge-yellow.uni-badge-inverted {
- color: #f0ad4e;
- background-color: transparent
- }
- .uni-badge-danger,
- .uni-badge-red {
- color: #fff;
- background-color: #dd524d
- }
- .uni-badge-danger.uni-badge-inverted,
- .uni-badge-red.uni-badge-inverted {
- color: #dd524d;
- background-color: transparent
- }
- .uni-badge-purple,
- .uni-badge-royal {
- color: #fff;
- background-color: #8a6de9
- }
- .uni-badge-purple.uni-badge-inverted,
- .uni-badge-royal.uni-badge-inverted {
- color: #8a6de9;
- background-color: transparent
- }
- /*折叠面板 */
- .uni-collapse-content {
- height: 0;
- width: 100%;
- overflow: hidden;
- }
- .uni-collapse-content.uni-active {
- height: auto;
- }
- /*卡片视图 */
- .uni-card {
- background: #fff;
- border-radius: 8rpx;
- margin:20rpx 0;
- position: relative;
- box-shadow: 0 2rpx 4rpx rgba(0, 0, 0, .3);
- }
- .uni-card-content {
- font-size: 30rpx;
- }
- .uni-card-content.image-view{
- width: 100%;
- margin: 0;
- }
- .uni-card-content-inner {
- position: relative;
- padding: 30rpx;
- }
- .uni-card-footer,
- .uni-card-header {
- position: relative;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- min-height: 50rpx;
- padding: 20rpx 30rpx;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .uni-card-header {
- font-size: 36rpx;
- }
- .uni-card-footer {
- color: #6d6d72;
- }
- .uni-card-footer:before,
- .uni-card-header:after {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- height: 2rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-card-header:after {
- top: auto;
- bottom: 0;
- }
- .uni-card-media {
- -webkit-box-pack: start;
- -webkit-justify-content: flex-start;
- justify-content: flex-start;
- }
- .uni-card-media-logo {
- height: 84rpx;
- width: 84rpx;
- margin-right: 20rpx;
- }
- .uni-card-media-body {
- height: 84rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: start;
- -webkit-align-items: flex-start;
- align-items: flex-start;
- }
- .uni-card-media-text-top {
- line-height: 36rpx;
- font-size: 34rpx;
- }
- .uni-card-media-text-bottom {
- line-height: 30rpx;
- font-size: 28rpx;
- color: #8f8f94;
- }
- .uni-card-link {
- color: #007AFF;
- }
- /* 列表 */
- .uni-list {
- background-color: #FFFFFF;
- position: relative;
- width: 100%;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .uni-list:after {
- position: absolute;
- z-index: 10;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list::before {
- position: absolute;
- z-index: 10;
- right: 0;
- top: 0;
- left: 0;
- height: 1rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list-cell {
- position: relative;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .uni-list-cell-hover {
- background-color: #eee;
- }
- .uni-list-cell-pd {
- padding: 22rpx 30rpx;
- }
- .uni-list-cell-left {
- font-size:28rpx;
- padding: 0 30rpx;
- }
- .uni-list-cell-db,
- .uni-list-cell-right {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- }
- .uni-list-cell::after {
- position: absolute;
- z-index: 3;
- right: 0;
- bottom: 0;
- left: 30rpx;
- height: 1rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list .uni-list-cell:last-child::after {
- height: 0rpx;
- }
- .uni-list-cell-last.uni-list-cell::after {
- height: 0rpx;
- }
- .uni-list-cell-divider {
- position: relative;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- color: #999;
- background-color: #f7f7f7;
- padding:15rpx 20rpx;
- }
- .uni-list-cell-divider::before {
- position: absolute;
- right: 0;
- top: 0;
- left: 0;
- height: 1rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list-cell-divider::after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0rpx;
- height: 1rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-list-cell-navigate {
- font-size:30rpx;
- padding: 22rpx 30rpx;
- line-height: 48rpx;
- position: relative;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- box-sizing: border-box;
- width: 100%;
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .uni-list-cell-navigate {
- padding-right: 36rpx;
- }
- .uni-navigate-badge {
- padding-right: 50rpx;
- }
- .uni-list-cell-navigate.uni-navigate-right:after {
- font-family: uniicons;
- content: '\e583';
- position: absolute;
- right: 24rpx;
- top: 50%;
- color: #bbb;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .uni-list-cell-navigate.uni-navigate-bottom:after {
- font-family: uniicons;
- content: '\e581';
- position: absolute;
- right: 24rpx;
- top: 50%;
- color: #bbb;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .uni-list-cell-navigate.uni-navigate-bottom.uni-active::after {
- font-family: uniicons;
- content: '\e580';
- position: absolute;
- right: 24rpx;
- top: 50%;
- color: #bbb;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .uni-collapse.uni-list-cell {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .uni-list-cell-navigate.uni-active {
- background: #eee;
- }
- .uni-list.uni-collapse {
- box-sizing: border-box;
- height: 0;
- overflow: hidden;
- }
- .uni-collapse .uni-list-cell {
- padding-left: 20rpx;
- }
- .uni-collapse .uni-list-cell::after {
- left: 52rpx;
- }
- .uni-list.uni-active {
- height: auto;
- }
- /* 三行列表 */
- .uni-triplex-row {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- width: 100%;
- box-sizing: border-box;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- padding: 22rpx 30rpx;
- }
- .uni-triplex-right,
- .uni-triplex-left {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .uni-triplex-left {
- width: 84%;
- }
- .uni-triplex-left .uni-title{
- padding:8rpx 0;
- }
- .uni-triplex-left .uni-text, .uni-triplex-left .uni-text-small{color:#999999;}
- .uni-triplex-right {
- width: 16%;
- text-align: right;
- }
- /* 图文列表 */
- .uni-media-list {
- padding: 22rpx 30rpx;
- box-sizing: border-box;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- width: 100%;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- }
- .uni-navigate-right.uni-media-list {
- padding-right: 74rpx;
- }
- .uni-pull-right {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: reverse;
- -webkit-flex-direction: row-reverse;
- flex-direction: row-reverse;
- }
- .uni-pull-right>.uni-media-list-logo {
- margin-right: 0rpx;
- margin-left: 20rpx;
- }
- .uni-media-list-logo {
- height: 84rpx;
- width: 84rpx;
- margin-right: 20rpx;
- }
- .uni-media-list-logo image {
- height: 100%;
- width: 100%;
- }
- .uni-media-list-body {
- height: 84rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: start;
- -webkit-align-items: flex-start;
- align-items: flex-start;
- overflow: hidden;
- }
- .uni-media-list-text-top {
- width: 100%;
- line-height: 36rpx;
- font-size: 30rpx;
- }
- .uni-media-list-text-bottom {
- width: 100%;
- line-height: 30rpx;
- font-size: 26rpx;
- color: #8f8f94;
- }
- /* 九宫格 */
- .uni-grid-9 {
- background: #f2f2f2;
- width: 750rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-flex-wrap: wrap;
- flex-wrap: wrap;
- border-top: 2rpx solid #eee;
- }
- .uni-grid-9-item {
- width: 250rpx;
- height: 200rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- border-bottom: 2rpx solid;
- border-right: 2rpx solid;
- border-color: #eee;
- box-sizing: border-box;
- }
- .no-border-right {
- border-right: none;
- }
- .uni-grid-9-image {
- width: 100rpx;
- height: 100rpx;
- }
- .uni-grid-9-text {
- width: 250rpx;
- line-height: 4rpx;
- height: 40rpx;
- text-align: center;
- font-size: 30rpx;
- }
- .uni-grid-9-item-hover {
- background: rgba(0, 0, 0, 0.1);
- }
- /* 上传 */
- .uni-uploader {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .uni-uploader-head {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- .uni-uploader-info {
- color: #B2B2B2;
- }
- .uni-uploader-body {
- margin-top: 16rpx;
- }
- .uni-uploader__files {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-flex-wrap: wrap;
- flex-wrap: wrap;
- }
- .uni-uploader__file {
- margin: 10rpx;
- width: 210rpx;
- height: 210rpx;
- }
- .uni-uploader__img {
- display: block;
- width: 210rpx;
- height: 210rpx;
- }
- .uni-uploader__input-box {
- position: relative;
- margin:10rpx;
- width: 208rpx;
- height: 208rpx;
- border: 2rpx solid #D9D9D9;
- }
- .uni-uploader__input-box:before,
- .uni-uploader__input-box:after {
- content: " ";
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- background-color: #D9D9D9;
- }
- .uni-uploader__input-box:before {
- width: 4rpx;
- height: 79rpx;
- }
- .uni-uploader__input-box:after {
- width: 79rpx;
- height: 4rpx;
- }
- .uni-uploader__input-box:active {
- border-color: #999999;
- }
- .uni-uploader__input-box:active:before,
- .uni-uploader__input-box:active:after {
- background-color: #999999;
- }
- .uni-uploader__input {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: 0;
- }
- /*问题反馈*/
- .feedback-title {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- padding: 20rpx;
- color: #8f8f94;
- font-size: 28rpx;
- }
- .feedback-star-view.feedback-title {
- -webkit-box-pack: start;
- -webkit-justify-content: flex-start;
- justify-content: flex-start;
- margin: 0;
- }
- .feedback-quick {
- position: relative;
- padding-right: 40rpx;
- }
- .feedback-quick:after {
- font-family: uniicons;
- font-size: 40rpx;
- content: '\e581';
- position: absolute;
- right: 0;
- top: 50%;
- color: #bbb;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .feedback-body {
- background: #fff;
- }
- .feedback-textare {
- height: 200rpx;
- font-size: 34rpx;
- line-height: 50rpx;
- width: 100%;
- box-sizing: border-box;
- padding: 20rpx 30rpx 0;
- }
- .feedback-input {
- font-size: 34rpx;
- height: 50rpx;
- min-height: 50rpx;
- padding: 15rpx 20rpx;
- line-height: 50rpx;
- }
- .feedback-uploader {
- padding: 22rpx 20rpx;
- }
- .feedback-star {
- font-family: uniicons;
- font-size: 40rpx;
- margin-left: 6rpx;
- }
- .feedback-star-view {
- margin-left: 20rpx;
- }
- .feedback-star:after {
- content: '\e408';
- }
- .feedback-star.active {
- color: #FFB400;
- }
- .feedback-star.active:after {
- content: '\e438';
- }
- .feedback-submit {
- background: #007AFF;
- color: #FFFFFF;
- margin: 20rpx;
- }
- /* input group */
- .uni-input_group {
- position: relative;
- padding: 0;
- border: 0;
- background-color: #fff;
- }
- .uni-input_group:before {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- height: 2rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-input_group:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 2rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-input-row {
- position: relative;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- font-size:28rpx;
- padding: 22rpx 30rpx;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- .uni-input_group .uni-input-row:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 30rpx;
- height: 2rpx;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- .uni-input-row label {
- line-height: 70rpx;
- }
- /* textarea */
- .uni-textarea{
- width:100%;
- background:#FFF;
- }
- .uni-textarea textarea{
- width:96%;
- padding:18rpx 2%;
- line-height:1.6;
- font-size:28rpx;
- height:150rpx;
- }
- /* tab bar */
- .uni-tab-bar {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- overflow: hidden;
- height: 100%;
- }
- .uni-tab-bar .list {
- width: 750rpx;
- height: 100%;
- }
- .uni-swiper-tab {
- width: 100%;
- white-space: nowrap;
- line-height: 100rpx;
- height: 100rpx;
- border-bottom: 1rpx solid #c8c7cc;
- }
- .swiper-tab-list {
- font-size: 30rpx;
- width: 150rpx;
- display: inline-block;
- text-align: center;
- color: #555;
- }
- .uni-tab-bar .active {
- color: #007AFF;
- }
- .uni-tab-bar .swiper-box {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- width: 100%;
- height: calc(100% - 100rpx);
- }
- .uni-tab-bar-loading{
- padding:20rpx 0;
- }
- /* comment */
- .uni-comment{padding:5rpx 0; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex:1; -webkit-flex-grow:1; flex-grow:1; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column;}
- .uni-comment-list{-webkit-flex-wrap:nowrap;flex-wrap:nowrap; padding:10rpx 0; margin:10rpx 0; width:100%; display: -webkit-box; display: -webkit-flex; display: flex;}
- .uni-comment-face{width:70rpx; height:70rpx; border-radius:100%; margin-right:20rpx; -webkit-flex-shrink:0; flex-shrink:0; overflow:hidden;}
- .uni-comment-face image{width:100%; border-radius:100%;}
- .uni-comment-body{width:100%;}
- .uni-comment-top{line-height:1.5em; -webkit-box-pack:justify; -webkit-justify-content:space-between; justify-content:space-between;}
- .uni-comment-top text{color:#0A98D5; font-size:24rpx;}
- .uni-comment-date{line-height:38rpx; -webkit-box-orient:horizontal; -webkit-box-direction:normal; -webkit-flex-direction:row; flex-direction:row; -webkit-box-pack:justify; -webkit-justify-content:space-between; justify-content:space-between; display:-webkit-box !important; display:-webkit-flex !important; display:flex !important; -webkit-box-flex:1; -webkit-flex-grow:1; flex-grow:1;}
- .uni-comment-date view{color:#666666; font-size:24rpx; line-height:38rpx;}
- .uni-comment-content{line-height:1.6em; font-size:28rpx; padding:8rpx 0;}
- .uni-comment-replay-btn{background:#FFF; font-size:24rpx; line-height:28rpx; padding:5rpx 20rpx; border-radius:30rpx; color:#333 !important; margin:0 10rpx;}
- /* swiper msg */
- .uni-swiper-msg{width:100%; padding:12rpx 0; -webkit-flex-wrap:nowrap; flex-wrap:nowrap; display:-webkit-box; display:-webkit-flex; display:flex;}
- .uni-swiper-msg-icon{width:50rpx; margin-right:20rpx;}
- .uni-swiper-msg-icon image{width:100%; -webkit-flex-shrink:0; flex-shrink:0;}
- .uni-swiper-msg swiper{width:100%; height:50rpx;}
- .uni-swiper-msg swiper-item{line-height:50rpx;}
- /* product */
- .uni-product-list {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- width: 100%;
- -webkit-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- }
- .uni-product {
- padding: 20rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .image-view {
- height: 330rpx;
- width: 330rpx;
- margin:12rpx 0;
- }
- .uni-product-image {
- height: 330rpx;
- width: 330rpx;
- }
- .uni-product-title {
- width: 300rpx;
- word-break: break-all;
- display: -webkit-box;
- overflow: hidden;
- line-height:1.5;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .uni-product-price {
- margin-top:10rpx;
- font-size: 28rpx;
- line-height:1.5;
- position: relative;
- }
- .uni-product-price-original {
- color: #e80080;
- }
- .uni-product-price-favour {
- color: #888888;
- text-decoration: line-through;
- margin-left: 10rpx;
- }
- .uni-product-tip {
- position: absolute;
- right: 10rpx;
- background-color: #ff3333;
- color: #ffffff;
- padding: 0 10rpx;
- border-radius: 5rpx;
- }
- /* timeline */
- .uni-timeline {
- margin: 35rpx 0;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- position: relative;
- }
- .uni-timeline-item {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- position: relative;
- padding-bottom: 20rpx;
- box-sizing: border-box;
- overflow: hidden;
- }
- .uni-timeline-item .uni-timeline-item-keynode {
- width: 160rpx;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- box-sizing: border-box;
- padding-right: 20rpx;
- text-align: right;
- line-height: 65rpx;
- }
- .uni-timeline-item .uni-timeline-item-divider {
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- position: relative;
- width: 30rpx;
- height: 30rpx;
- top: 15rpx;
- border-radius: 50%;
- background-color: #bbb;
- }
- .uni-timeline-item-divider::before,
- .uni-timeline-item-divider::after {
- position: absolute;
- left: 15rpx;
- width: 1rpx;
- height: 100vh;
- content: '';
- background: inherit;
- }
- .uni-timeline-item-divider::before {
- bottom: 100%;
- }
- .uni-timeline-item-divider::after {
- top: 100%;
- }
- .uni-timeline-last-item .uni-timeline-item-divider:after {
- display: none;
- }
- .uni-timeline-first-item .uni-timeline-item-divider:before {
- display: none;
- }
- .uni-timeline-item .uni-timeline-item-content {
- padding-left: 20rpx;
- }
- .uni-timeline-last-item .bottom-border::after{
- display: none;
- }
- .uni-timeline-item-content .datetime{
- color: #CCCCCC;
- }
- /* 自定义节点颜色 */
- .uni-timeline-last-item .uni-timeline-item-divider{
- background-color: #1AAD19;
- }
- /* uni-icon */
- .uni-icon {
- font-family: uniicons;
- font-size: 24rpx;
- font-weight: normal;
- font-style: normal;
- line-height: 1;
- display: inline-block;
- text-decoration: none;
- -webkit-font-smoothing: antialiased;
- }
- .uni-icon.uni-active {
- color: #007aff;
- }
- .uni-icon-contact:before {
- content: '\e100';
- }
- .uni-icon-person:before {
- content: '\e101';
- }
- .uni-icon-personadd:before {
- content: '\e102';
- }
- .uni-icon-contact-filled:before {
- content: '\e130';
- }
- .uni-icon-person-filled:before {
- content: '\e131';
- }
- .uni-icon-personadd-filled:before {
- content: '\e132';
- }
- .uni-icon-phone:before {
- content: '\e200';
- }
- .uni-icon-email:before {
- content: '\e201';
- }
- .uni-icon-chatbubble:before {
- content: '\e202';
- }
- .uni-icon-chatboxes:before {
- content: '\e203';
- }
- .uni-icon-phone-filled:before {
- content: '\e230';
- }
- .uni-icon-email-filled:before {
- content: '\e231';
- }
- .uni-icon-chatbubble-filled:before {
- content: '\e232';
- }
- .uni-icon-chatboxes-filled:before {
- content: '\e233';
- }
- .uni-icon-weibo:before {
- content: '\e260';
- }
- .uni-icon-weixin:before {
- content: '\e261';
- }
- .uni-icon-pengyouquan:before {
- content: '\e262';
- }
- .uni-icon-chat:before {
- content: '\e263';
- }
- .uni-icon-qq:before {
- content: '\e264';
- }
- .uni-icon-videocam:before {
- content: '\e300';
- }
- .uni-icon-camera:before {
- content: '\e301';
- }
- .uni-icon-mic:before {
- content: '\e302';
- }
- .uni-icon-location:before {
- content: '\e303';
- }
- .uni-icon-mic-filled:before,
- .uni-icon-speech:before {
- content: '\e332';
- }
- .uni-icon-location-filled:before {
- content: '\e333';
- }
- .uni-icon-micoff:before {
- content: '\e360';
- }
- .uni-icon-image:before {
- content: '\e363';
- }
- .uni-icon-map:before {
- content: '\e364';
- }
- .uni-icon-compose:before {
- content: '\e400';
- }
- .uni-icon-trash:before {
- content: '\e401';
- }
- .uni-icon-upload:before {
- content: '\e402';
- }
- .uni-icon-download:before {
- content: '\e403';
- }
- .uni-icon-close:before {
- content: '\e404';
- }
- .uni-icon-redo:before {
- content: '\e405';
- }
- .uni-icon-undo:before {
- content: '\e406';
- }
- .uni-icon-refresh:before {
- content: '\e407';
- }
- .uni-icon-star:before {
- content: '\e408';
- }
- .uni-icon-plus:before {
- content: '\e409';
- }
- .uni-icon-minus:before {
- content: '\e410';
- }
- .uni-icon-circle:before,
- .uni-icon-checkbox:before {
- content: '\e411';
- }
- .uni-icon-close-filled:before,
- .uni-icon-clear:before {
- content: '\e434';
- }
- .uni-icon-refresh-filled:before {
- content: '\e437';
- }
- .uni-icon-star-filled:before {
- content: '\e438';
- }
- .uni-icon-plus-filled:before {
- content: '\e439';
- }
- .uni-icon-minus-filled:before {
- content: '\e440';
- }
- .uni-icon-circle-filled:before {
- content: '\e441';
- }
- .uni-icon-checkbox-filled:before {
- content: '\e442';
- }
- .uni-icon-closeempty:before {
- content: '\e460';
- }
- .uni-icon-refreshempty:before {
- content: '\e461';
- }
- .uni-icon-reload:before {
- content: '\e462';
- }
- .uni-icon-starhalf:before {
- content: '\e463';
- }
- .uni-icon-spinner:before {
- content: '\e464';
- }
- .uni-icon-spinner-cycle:before {
- content: '\e465';
- }
- .uni-icon-search:before {
- content: '\e466';
- }
- .uni-icon-plusempty:before {
- content: '\e468';
- }
- .uni-icon-forward:before {
- content: '\e470';
- }
- .uni-icon-back:before,
- .uni-icon-left-nav:before {
- content: '\e471';
- }
- .uni-icon-checkmarkempty:before {
- content: '\e472';
- }
- .uni-icon-home:before {
- content: '\e500';
- }
- .uni-icon-navigate:before {
- content: '\e501';
- }
- .uni-icon-gear:before {
- content: '\e502';
- }
- .uni-icon-paperplane:before {
- content: '\e503';
- }
- .uni-icon-info:before {
- content: '\e504';
- }
- .uni-icon-help:before {
- content: '\e505';
- }
- .uni-icon-locked:before {
- content: '\e506';
- }
- .uni-icon-more:before {
- content: '\e507';
- }
- .uni-icon-flag:before {
- content: '\e508';
- }
- .uni-icon-home-filled:before {
- content: '\e530';
- }
- .uni-icon-gear-filled:before {
- content: '\e532';
- }
- .uni-icon-info-filled:before {
- content: '\e534';
- }
- .uni-icon-help-filled:before {
- content: '\e535';
- }
- .uni-icon-more-filled:before {
- content: '\e537';
- }
- .uni-icon-settings:before {
- content: '\e560';
- }
- .uni-icon-list:before {
- content: '\e562';
- }
- .uni-icon-bars:before {
- content: '\e563';
- }
- .uni-icon-loop:before {
- content: '\e565';
- }
- .uni-icon-paperclip:before {
- content: '\e567';
- }
- .uni-icon-eye:before {
- content: '\e568';
- }
- .uni-icon-arrowup:before {
- content: '\e580';
- }
- .uni-icon-arrowdown:before {
- content: '\e581';
- }
- .uni-icon-arrowleft:before {
- content: '\e582';
- }
- .uni-icon-arrowright:before {
- content: '\e583';
- }
- .uni-icon-arrowthinup:before {
- content: '\e584';
- }
- .uni-icon-arrowthindown:before {
- content: '\e585';
- }
- .uni-icon-arrowthinleft:before {
- content: '\e586';
- }
- .uni-icon-arrowthinright:before {
- content: '\e587';
- }
- .uni-icon-pulldown:before {
- content: '\e588';
- }
- .uni-icon-scan:before {
- content: "\e612";
- }
- /* 分界线 */
- .uni-divider{
- height: 110rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align:center;
- -webkit-align-items:center;
- align-items:center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- position: relative;
- }
- .uni-divider__content{
- font-size: 28rpx;
- color: #999;
- padding: 0 20rpx;
- position: relative;
- z-index: 101;
- background: #F4F5F6;
- }
- .uni-divider__line{
- background-color: #CCCCCC;
- height: 1rpx;
- width: 100%;
- position: absolute;
- z-index: 100;
- top: 50%;
- left: 0;
- -webkit-transform: translateY(50%);
- transform: translateY(50%);
- }
- /**
- *全局公共样式
- */
- .app-content {
- background-color: #f5f5f5;
- min-height: 100vh;
- position: relative;
- }
- .gray_txt {
- color: #999 !important;
- }
- .ph {
- font-size: 30rpx;
- color: gray;
- }
- .w100 {
- width: 100% !important;
- }
- .ml0 {
- margin-left: 0 !important;
- }
- .text_main_color {
- color: #ff9000;
- }
- .underline {
- text-decoration: underline;
- }
- .separate_line {
- color: #999;
- margin: 0 16rpx;
- }
- .text_sub_com {
- color: #999;
- font-size: 24rpx;
- }
- .flex, .flex-center-center, .flex-start, .flex-end, .flex-center-between, .flex-center-around, .flex-center-evenly, .flex-center-start, .flex-center-end {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- }
- .flex-center-center {
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .flex-center {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .flex-start {
- -webkit-box-align: start;
- -webkit-align-items: flex-start;
- align-items: flex-start;
- }
- .flex-end {
- -webkit-box-align: end;
- -webkit-align-items: flex-end;
- align-items: flex-end;
- }
- .flex-center-between {
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- .flex-center-around {
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-justify-content: space-around;
- justify-content: space-around;
- }
- .flex-center-evenly {
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: space-evenly;
- -webkit-justify-content: space-evenly;
- justify-content: space-evenly;
- }
- .flex-center-start {
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: start;
- -webkit-justify-content: flex-start;
- justify-content: flex-start;
- }
- .flex-center-end {
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: end;
- -webkit-justify-content: flex-end;
- justify-content: flex-end;
- }
- .app-padding {
- padding: 0 30rpx;
- }
- .app-color-0 {
- color: #333333;
- }
- .app-color-1 {
- color: #3385FF;
- }
- .app-color-2 {
- color: #666666;
- }
- .app-color-3 {
- color: #999999;
- }
- .app-color-4 {
- color: #049E2C;
- }
- .app-price {
- color: #FF2842;
- }
- .app-bold {
- font-weight: bold;
- }
- .app-size-24 {
- font-size: 24rpx;
- }
- .app-size-26 {
- font-size: 26rpx;
- }
- .app-size-28 {
- font-size: 28rpx;
- }
- .app-size-30 {
- font-size: 30rpx;
- }
- .app-size-32 {
- font-size: 32rpx;
- }
- .app-size-34 {
- font-size: 34rpx;
- }
- .app-size-36 {
- font-size: 36rpx;
- }
- .app-size-38 {
- font-size: 38rpx;
- }
- .app-size-40 {
- font-size: 40rpx;
- }
- /**
- *全局样式,以 App- 前缀命名
- */
- page,
- view,
- scroll-view,
- swiper,
- movable-area,
- cover-view,
- text,
- icon,
- rich-text,
- progress,
- button,
- checkbox-group,
- checkbox,
- form,
- input,
- label,
- picker,
- picker-view,
- radio-group,
- slider,
- switch,
- textarea,
- navigator,
- audio,
- image,
- video,
- live-player,
- live-pusher,
- open-data,
- web-view {
- box-sizing: border-box;
- }
- page,
- page {
- font-family: "microsoft yahei";
- font-size: 24rpx;
- }
- .clearfix:after {
- display: block;
- content: '';
- clear: both;
- }
- .overscroll {
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- }
- .text-line {
- word-break: keep-all;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .app-wh100 {
- width: 100%;
- height: 100%;
- }
- .App {
- min-height: 100vh;
- }
- .App_gray {
- min-height: 100vh;
- background-color: #f5f5f5;
- }
- .App_row {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .App_col {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .button-com {
- display: inline-block;
- color: #3385FF;
- font-size: 28rpx;
- padding: 20rpx 30rpx;
- background-color: #fff;
- border-radius: 100rpx;
- border: 1rpx solid #3385FF;
- text-align: center;
- line-height: 1;
- margin: 0;
- }
- .button-com:active {
- color: #f53f55;
- border-color: #f53f55;
- }
- .button-com::after {
- border: none;
- }
- .button-com.big {
- padding-top: 30rpx;
- padding-bottom: 30rpx;
- }
- .button-com.red {
- color: #fff;
- background-color: #3385FF;
- }
- .button-com.red:active {
- background-color: #f53f55;
- }
- .button-com.green {
- color: #fff;
- background-color: #07be0b;
- border-color: #07be0b;
- }
- .button-com.green:active {
- background-color: #2dc22f;
- }
- .button-com.blue {
- color: #fff;
- background-color: #3385FF;
- border-color: #3385FF;
- }
- .button-com.blue:active {
- background-color: #639cf1;
- }
- .button-com.default {
- color: #666666;
- border-color: #dddddd;
- }
- .button-com.default:active {
- background-color: #f5f5f5;
- }
- .button-com.disable {
- color: #fff;
- background-color: #ccc;
- border-color: #ccc;
- }
- .admin-button-com {
- display: inline-block;
- color: #3385FF;
- font-size: 26rpx;
- padding: 10rpx 20rpx;
- background-color: #fff;
- border-radius: 8rpx;
- border: 1rpx solid #3385FF;
- text-align: center;
- line-height: 1;
- margin: 0;
- }
- .admin-button-com:active {
- color: #3876d4;
- border-color: #3876d4;
- }
- .admin-button-com::after {
- border: none;
- }
- .admin-button-com.middle {
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- font-size: 28rpx;
- }
- .admin-button-com.big {
- padding-top: 30rpx;
- padding-bottom: 30rpx;
- font-size: 32rpx;
- }
- .admin-button-com.blue {
- color: #fff;
- background-color: #3385FF;
- }
- .admin-button-com.blue:active {
- background-color: #3876d4;
- }
- .admin-button-com.default {
- color: #666666;
- border-color: #dddddd;
- }
- .admin-button-com.default:active {
- background-color: #f5f5f5;
- }
- .admin-button-com.disable {
- color: #fff;
- background-color: #ccc;
- border-color: #ccc;
- }
- .input-line-wrap .required::before {
- content: "*";
- color: #f04545;
- font-size: 28rpx;
- margin-right: 8rpx;
- }
- .input-line-wrap .line-cell.between {
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- .input-line-wrap .line-cell .tui-title {
- width: 210rpx;
- color: #666666;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- }
- .input-line-wrap .line-cell .tui-input {
- width: calc(100% - 210rpx);
- font-size: 28rpx;
- }
- .input-line-wrap .line-cell .tui-textarea {
- width: 100%;
- font-size: 28rpx;
- }
- .input-line-wrap .line-cell .tui-operate {
- width: calc(100% - 210rpx);
- font-size: 28rpx;
- }
- .input-line-wrap .line-cell .tui-placeholder {
- color: #ccc;
- }
- .input-line-wrap .line-cell .tui-prompt {
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- color: #666666;
- margin-left: 20rpx;
- }
- .input-line-wrap .phcolor {
- color: #ccc;
- }
- .input-line-wrap .prompt-text {
- color: #999999;
- margin-top: 20rpx;
- margin-left: 30rpx;
- }
- .input-line-wrap .btn-wrap {
- width: calc(100% - 60rpx);
- margin: 60rpx auto;
- }
- .input-line-wrap .btn-wrap .button-com {
- width: 100%;
- margin: 0 auto;
- }
- .input-line-wrap .btn-wrap .admin-button-com {
- width: 100%;
- margin: 0 auto;
- }
- .app-modal-input-wrap {
- width: 100%;
- }
- .app-modal-input-wrap .inp-list-line {
- width: 100%;
- display: -webkit-box;
- display: flex;
- display: -webkit-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- font-size: 32rpx;
- margin-bottom: 20rpx;
- color: #666666;
- text-align: left;
- }
- .app-modal-input-wrap .inp-list-line:last-child {
- margin-bottom: 0;
- }
- .app-modal-input-wrap .inp-list-line .line-label {
- margin-right: 20rpx;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- }
- .app-modal-input-wrap .inp-list-line .line-input {
- width: 100%;
- display: -webkit-box;
- display: flex;
- display: -webkit-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .app-modal-input-wrap .inp-list-line .line-input.flex-strat {
- -webkit-box-pack: start;
- -webkit-justify-content: flex-start;
- justify-content: flex-start;
- }
- .app-modal-input-wrap .inp-list-line .line-input .inp-input,
- .app-modal-input-wrap .inp-list-line .line-input .inp-select {
- width: 100%;
- height: 90rpx;
- border: 2rpx solid #eee;
- padding-left: 20rpx;
- border-radius: 4rpx;
- color: #333;
- }
- .app-modal-input-wrap .inp-list-line .line-input .inp-select {
- position: relative;
- line-height: 90rpx;
- }
- .app-modal-input-wrap .inp-list-line .line-input .inp-select:active {
- background-color: #f5f5f5;
- }
- .app-modal-input-wrap .inp-list-line .line-input .inp-select::before {
- content: " ";
- height: 20rpx;
- width: 20rpx;
- border-width: 2rpx 2rpx 0 0;
- border-color: #bbbbbb;
- border-style: solid;
- -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
- transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
- position: absolute;
- top: 50%;
- margin-top: -12rpx;
- right: 16rpx;
- }
- .app-modal-input-wrap .inp-list-line .line-input .inp-prompt {
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- margin-left: 20rpx;
- }
- .app-modal-input-wrap .inp-list-line .line-input .tui-placeholder {
- color: #ccc;
- }
- .operate-icon-wrap {
- position: relative;
- width: 36rpx;
- height: 36rpx;
- }
- .operate-icon-wrap .operate-icon {
- position: absolute;
- bottom: -18rpx;
- left: -18rpx;
- padding: 20rpx;
- }
- .operate-icon-wrap .operate-icon .iconcaozuojihuo {
- color: #3385FF !important;
- }
- .app-margin-left-20 {
- margin-left: 20rpx;
- }
- .textarea_wrap {
- position: relative;
- }
- .textarea_wrap textarea {
- display: block;
- background-color: #fff;
- padding: 30rpx 31rpx;
- border: 0 none;
- width: 100%;
- height: 270rpx;
- }
- .textarea_wrap .count {
- position: absolute;
- line-height: 1;
- right: 30rpx;
- bottom: 30rpx;
- font-size: 24rpx;
- color: #999999;
- }
- /* 超出隐藏 */
- .ellipsis_line_com {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- /* 超出两行隐藏 */
- .ellipsis_two_line_com {
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- line-height: 1.3;
- }
- /* 黑色蒙版 */
- .black_mask {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- width: 100vw;
- height: 100vh;
- background-color: rgba(0, 0, 0, 0.7);
- z-index: 999;
- }
- .black_mask.center {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .app-footer {
- width: 100%;
- max-width: 750rpx;
- /*no*/
- min-width: 320rpx;
- /*no*/
- height: 100rpx;
- position: fixed;
- text-align: center;
- bottom: 0;
- background: white;
- box-shadow: -4rpx -4rpx 6rpx #eee;
- z-index: 100;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .app-footer .add {
- width: 38rpx;
- height: 38rpx;
- margin-right: 20rpx;
- }
- .app-footer.open_btn {
- -webkit-box-pack: end;
- -webkit-justify-content: flex-end;
- justify-content: flex-end;
- }
- .app-footer.open_btn .admin-button-com {
- margin-right: 30rpx;
- }
- .noMore {
- color: #969799;
- font-size: 24rpx;
- line-height: 50rpx;
- text-align: center;
- padding: 30rpx 0;
- }
- ._li {
- list-style: none;
- }
- .includecontent ._p ._img {
- width: 100%;
- height: auto;
- }
- .uni-overflow-hidden {
- overflow: hidden;
- height: 100vh;
- }
- .inputTip_box {
- position: relative;
- width: 100%;
- }
- .inputTip_box .inputTip {
- position: absolute;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- right: 0;
- color: #f44;
- font-size: 28rpx;
- }
- .text-overflow {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .animate-open {
- -webkit-transform: rotate(180);
- transform: rotate(180);
- }
- .animate-close {
- -webkit-transform: rotate(0);
- transform: rotate(0);
- }
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- }
- .app-round_bg {
- width: 100%;
- position: absolute;
- background-color: #3385FF;
- height: 299rpx;
- border-radius: 0rpx 0rpx 83rpx 83rpx;
- }
- .table-view .table-header {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- padding: 20rpx 30rpx;
- box-shadow: 0rpx 1rpx 0rpx 0rpx #eeeeee;
- color: #999999;
- }
- .table-view .table-header .table-th {
- margin: 0 10rpx;
- white-space: nowrap;
- }
- .table-view .table-tr {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- padding: 20rpx 30rpx;
- border-bottom: 1rpx solid #eeeeee;
- color: #999999;
- }
- .table-view .table-tr .table-td {
- margin: 0 10rpx;
- }
- .table-view .table-tr .table-td .warn {
- color: #ffaf1d;
- }
- .table-view .table-tr .table-td .fail {
- color: #f51608;
- }
- .table-view .table-tr .table-td .success {
- color: #09bb07;
- }
- .table-view .table-tr .table-td .info {
- color: #333;
- }
- uni-page-body,
- page,
- page {
- height: auto;
- min-height: 100%;
- }
- page {
- -webkit-overflow-scrolling: touch;
- }
- .uni-navbar-header {
- line-height: 96rpx !important;
- height: 96rpx !important;
- }
- uni-toast {
- z-index: 99999 !important;
- }
- .uni-status-bar {
- height: auto !important;
- }
- .uni-navbar-container {
- display: -webkit-box !important;
- display: -webkit-flex !important;
- display: flex !important;
- -webkit-box-align: center !important;
- -webkit-align-items: center !important;
- align-items: center !important;
- -webkit-box-pack: center !important;
- -webkit-justify-content: center !important;
- justify-content: center !important;
- }
- .uni-navbar-shadow {
- box-shadow: 0 0 6rpx 2rpx #ccc;
- }
- uni-picker .uni-picker-item {
- font-size: 30rpx;
- }
- .iconfont {
- display: inline-block;
- vertical-align: middle;
- }
- .uni-radio-wrapper .uni-radio-input {
- width: 42rpx;
- height: 42rpx;
- }
- .uni-radio-wrapper .uni-radio-input-checked {
- background-color: #3385FF !important;
- border-color: #3385FF !important;
- }
- .ljd-checkbox, .ljd-checkbox .uni-checkbox-input {
- width: 42rpx;
- height: 42rpx;
- border-radius: 50% !important;
- margin-right: 12rpx;
- }
- .ljd-checkbox .uni-checkbox-input.uni-checkbox-input-checked {
- color: #fff !important;
- background-color: #3385FF !important;
- border-color: #3385FF !important;
- }
- .ljd-checkbox .uni-checkbox-input.uni-checkbox-input-checked:before {
- font-size: 36rpx;
- }
- ._img {
- width: 100%;
- height: auto;
- display: block;
- }
- image {
- width: 100%;
- height: auto;
- display: block;
- }
- .datetime-picker .picker-body {
- font-size: 32rpx !important;
- }
- .datetime-picker .btn-picker {
- font-size: 32rpx !important;
- }
- .datetime-picker .btn-picker.submit {
- color: #3a1b06 !important;
- padding: 0 20rpx !important;
- border-radius: 24rpx !important;
- }
- .datetime-picker .btn-picker.cancel {
- color: #878787 !important;
- }
- .swiper-wrap .tui-tag-class {
- position: absolute;
- color: #fff;
- bottom: 30rpx;
- right: 0;
- }
- uni-button::after {
- border: none;
- }
- .flex, .flex-center-center, .flex-start, .flex-end, .flex-center-between, .flex-center-around, .flex-center-evenly, .flex-center-start, .flex-center-end {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .flex-center {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .flex-space {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- .flex-end {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: end;
- -webkit-justify-content: flex-end;
- justify-content: flex-end;
- }
- .ov-1x {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .ov-2x {
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- page {
- height: 100%;
- }
- /**开单-扎和支切换样式**/
- .switchover-unit {
- position: fixed;
- left: calc(170rpx / 2 - 50rpx);
- bottom: 140rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- width: 100rpx;
- height: 100rpx;
- color: #FFFFFF;
- background: #4b8cf4;
- border-radius: 50%;
- font-size: 42rpx;
- font-weight: 700;
- z-index: 2;
- }
- /**开单-增加减少动画**/
- .animation {
- -webkit-animation: imgmove 0.3s 1;
- animation: imgmove 0.3s 1;
- -webkit-animation-iteration-count: 1;
- animation-iteration-count: 1;
- }
- @-webkit-keyframes imgmove {
- 0% {
- -webkit-transform: scale(0.7);
- transform: scale(0.7);
- }
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
|