|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595 |
- /* nprogress公用CSS */
- #nprogress {
- pointer-events: none;
- }
-
- #nprogress .bar {
- background: #29d;
- position: fixed;
- z-index: 1031;
- top: 0;
- left: 0;
- width: 100%;
- height: 2px;
- }
-
- /* Fancy blur effect */
- #nprogress .peg {
- display: block;
- position: absolute;
- right: 0px;
- width: 100px;
- height: 100%;
- box-shadow: 0 0 10px #29d, 0 0 5px #29d;
- opacity: 1.0;
- -webkit-transform: rotate(3deg) translate(0px, -4px);
- -ms-transform: rotate(3deg) translate(0px, -4px);
- transform: rotate(3deg) translate(0px, -4px);
- }
-
- /* Remove these to get rid of the spinner */
- #nprogress .spinner {
- display: block;
- position: fixed;
- z-index: 1031;
- top: 15px;
- right: 15px;
- }
-
- #nprogress .spinner-icon {
- width: 18px;
- height: 18px;
- box-sizing: border-box;
- border: solid 2px transparent;
- border-top-color: #29d;
- border-left-color: #29d;
- border-radius: 50%;
- -webkit-animation: nprogress-spinner 400ms linear infinite;
- animation: nprogress-spinner 400ms linear infinite;
- }
-
- .nprogress-custom-parent {
- overflow: hidden;
- position: relative;
- }
-
- .nprogress-custom-parent #nprogress .spinner,
- .nprogress-custom-parent #nprogress .bar {
- position: absolute;
- }
-
- @-webkit-keyframes nprogress-spinner {
- 0% {
- -webkit-transform: rotate(0deg);
- }
-
- 100% {
- -webkit-transform: rotate(360deg);
- }
- }
-
- @keyframes nprogress-spinner {
- 0% {
- transform: rotate(0deg);
- }
-
- 100% {
- transform: rotate(360deg);
- }
- }
-
- html,
- body,
- div,
- span,
- iframe,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- blockquote,
- a,
- address,
- em,
- img,
- ol,
- ul,
- li,
- fieldset,
- form,
- label,
- legend,
- table,
- tbody,
- tfoot,
- thead,
- tr,
- th,
- td,
- i,
- b,
- s {
- margin: 0;
- padding: 0;
- border: 0;
- font-weight: inherit;
- font-style: inherit;
- font-family: Source Han Sans CN,Helvetica, Arial;
- word-break: break-all;
- }
-
- html,
- body {
- height: 100%;
- overflow: hidden;
- }
-
- .font-yahei {
- font-family: "微软雅黑";
- }
-
- body>.main {
- overflow-y: auto;
- height: 100%;
- }
-
- ul,
- ol {
- list-style: none
- }
-
- a img {
- border: none;
- }
-
- a,
- a:link {
- text-decoration: none;
- color: #333
- }
-
- button {
- overflow: visible;
- padding: 0;
- margin: 0;
- border: 0 none;
- background-color: transparent;
- appearance: none;
- -webkit-appearance: none;
- }
-
- button::-moz-focus-inner {
- padding: 0
- }
-
- textarea,
- input {
- background: none;
- padding: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- }
-
- input[type=number] {
- appearance: none;
- -webkit-appearance: none;
- border: 0;
- }
-
- input[type=search] {
- appearance: none;
- -webkit-appearance: none;
- border: 0;
- }
-
- input[type=text] {
- appearance: none;
- -webkit-appearance: none;
- border: 0;
- }
-
- input[type=tel] {
- appearance: none;
- -webkit-appearance: none;
- border: 0;
- }
-
- input[type=button] {
- appearance: none;
- -webkit-appearance: none;
- }
-
- input[type=password] {
- -webkit-text-security: disc;
- appearance: none;
- -webkit-appearance: none;
- border: 0;
- }
-
- input[type=submit] {
- appearance: none;
- -webkit-appearance: none;
- border: 0;
- }
-
- textarea:focus,
- input:focus,
- button:focus {
- outline: none
- }
-
- select{
- outline:none;
- }
-
- body {
- word-wrap: break-word;
- font-size: 14px;
- color: #000;
- line-height: 1.5;
- font-family: Helvetica
- }
-
- * {
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- overflow-scrolling: touch;
- -webkit-overflow-scrolling: touch;
- /*backface-visibility: hidden;*/
- /*-webkit-backface-visibility: hidden;*/
- box-sizing: border-box;
- }
-
- [v-cloak] {
- opacity: 0 !important;
- }
-
- .buttonHover:hover{
- transform:scale(1.06)
- }
-
- .buttonHover{
- transition:transform 0.5s;
- }
- .w-1200 {
- width: 1200px;
- margin: 0 auto;
- }
-
- .w-1000 {
- width: 1000px;
- }
-
- .w-800 {
- width: 800px;
- }
-
- .w-372 {
- width: 372px;
- }
-
- .inline_div {
- display: inline-block;
- }
-
- .block {
- display: block !important;
- }
-
- .txc {
- text-align: center;
- }
-
- .fl {
- float: left;
- }
-
- .fr {
- float: right;
- }
-
- .clear {
- clear: both;
- height: 0 !important;
- padding: 0 !important;
- margin: 0 !important;
- }
-
- /*三角形*/
-
- /*全局CSS*/
- .hide {
- display: none;
- }
-
- .show {
- display: block;
- }
-
- .bgimg_mid {
- background-position: center;
- background-repeat: no-repeat;
- }
-
- .overflow_auto {
- overflow: auto;
- -webkit-overflow-scrolling: touch;
- overflow-scrolling: touch;
- }
-
- .overflow_hide {
- overflow: hidden;
- }
-
- /*IE8伪flex布局*/
- .container {
- text-align: justify;
- }
-
- .container:after {
- content: '';
- display: inline-block;
- width: 100%;
- }
-
- .container-item {
- display: inline-block;
- }
-
- /*flex布局*/
- .flex_dom {
- display: flex !important;
- display: -webkit-box !important;
- display: -webkit-flex !important;
- }
-
- .flex_column {
- display: flex !important;
- display: -webkit-box !important;
- display: -webkit-flex !important;
- flex-direction: column;
- -webkit-flex-direction: column;
- }
-
- .flex_1 {
- flex: 1;
- -webkit-flex: 1;
- display: block;
- min-width: 0;
- }
-
- .flex_2 {
- flex: 2;
- -webkit-flex: 2;
- display: block;
- min-width: 0;
- }
-
- .flex_3 {
- flex: 3;
- -webkit-flex: 3;
- display: block;
- min-width: 0;
- }
-
- .flex_4 {
- flex: 4;
- -webkit-flex: 4;
- display: block;
- min-width: 0;
- }
-
- .flex_5 {
- flex: 5;
- -webkit-flex: 5;
- display: block;
- min-width: 0;
- }
-
- .flex_item_between {
- justify-content: space-between;
- -webkit-justify-content: space-between;
- }
-
- .flex_item_around {
- justify-content: space-around;
- -webkit-justify-content: space-around;
- }
-
- .flex_item_end {
- justify-content: flex-end;
- -webkit-justify-content: flex-end;
- }
-
- .flex_item_mid {
- align-items: center;
- -webkit-align-items: center;
- }
-
- .flex_item_stretch {
- align-items: stretch;
- -webkit-align-items: stretch;
- }
-
- .flex_item_center {
- justify-content: center;
- -webkit-justify-content: center;
- }
-
- .flex_wrap {
- flex-wrap: wrap;
- -webkit-flex-wrap: wrap;
- }
-
- /*三角*/
- .sanjiao-top {
- display: inline-block;
- border-bottom: 6px solid #000;
- border-bottom-color: initial;
- border-left: 3px solid transparent;
- border-right: 3px solid transparent;
- }
-
- .sanjiao-bottom {
- display: inline-block;
- border-top: 6px solid #000;
- border-top-color: initial;
- border-left: 3px solid transparent;
- border-right: 3px solid transparent;
- }
-
- .sanjiao-left {
- display: inline-block;
- border-right: 8px solid #000;
- border-right-color: initial;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- }
-
- .sanjiao-right {
- display: inline-block;
- border-left: 8px solid #000;
- border-left-color: initial;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- }
-
- .jiantou {
- width: 10px;
- height: 10px;
- border-top: 1px solid #666666;
- border-right: 1px solid #666666;
- transform: rotate(45deg);
- /*margin-top: 8px;*/
- /*margin-left: 10px;*/
- display: inline-block;
- }
-
- /*字体和背景颜色库*/
- .bg-fff {
- background-color: #fff;
- !important
- }
-
- .bg-f1 {
- background-color: #f1f1f1;
- !important
- }
-
- .bg-f4 {
- background-color: #f4f4f4;
- !important
- }
-
- .bg-f7 {
- background-color: #F7F7F7;
- !important
- }
-
- .bg-000 {
- background-color: #000000;
- !important
- }
-
- .bg-333 {
- background-color: #333333;
- !important
- }
-
- .bg-ddd {
- background-color: #DDDDDD;
- !important
- }
-
- .bg-666 {
- background-color: #666666;
- !important
- }
-
- .bg-999 {
- background-color: #999999;
- !important
- }
-
- .bg-eee {
- background-color: #EEEEEE;
- !important
- }
-
- .bg-f5 {
- background-color: #f5f5f5;
- }
-
- .bg-red {
- background-color: #FF0000;
- !important
- }
-
- .bg-orange {
- background-color: #ffa127;
- !important
- }
-
- .bg-yellow {
- background-color: #f5bc24;
- !important
- }
-
- .bg-green {
- background-color: #008000 !important;
- }
-
- .bg-lightgreen {
- background-color: #90EE90 !important;
- }
-
- .bg-blue {
- background-color: #0a669b !important;
- }
-
- .bg-purple {
- background-color: #800080 !important;
- }
-
- .bg-mengban {
- background-color: rgba(68, 68, 68, 0.6);
- }
-
- /**********阴影色***********/
- .shadow_fff {
- box-shadow: 0px 2px 3px #fff;
- }
-
- .shadow_f1 {
- box-shadow: 0px 2px 3px #f1f1f1;
- }
-
- .shadow_f7 {
- box-shadow: 0px 2px 3px #f7f7f7;
- }
-
- .shadow_000 {
- box-shadow: 0px 2px 3px #000;
- }
-
- .shadow_333 {
- box-shadow: 0px 2px 3px #333;
- }
-
- .shadow_ddd {
- box-shadow: 0px 2px 3px #ddd;
- }
-
- .shadow_666 {
- box-shadow: 0px 2px 3px #666;
- }
-
- .shadow_999 {
- box-shadow: 0px 2px 3px #999;
- }
-
- .shadow_red {
- box-shadow: 0px 2px 3px #FF0000;
- }
-
- .shadow_orange {
- box-shadow: 0px 2px 3px #f8b03f;
- }
-
- .shadow_yellow {
- box-shadow: 0px 2px 3px #f5bc24;
- }
-
- .shadow_green {
- box-shadow: 0px 2px 3px #008000;
- }
-
- .shadow_lightgreen {
- box-shadow: 0px 2px 3px #90EE90;
- }
-
- .shadow_purple {
- box-shadow: 0px 2px 3px #800080;
- }
-
- .shadow_orange {
- box-shadow: 0px 2px 3px #f8b03f;
- }
-
- /*字体样式库*/
- .fw_600 {
- font-weight: 600;
- }
-
- .fw_700 {
- font-weight: 700;
- }
-
- .font-w5 {
- font-weight: 500;
- }
-
- .font-w6 {
- font-weight: bold;
- }
-
- .color-ccc {
- color: #ccc !important
- }
-
- .color-eee {
- color: #eee !important
- }
-
- .color-fff {
- color: #fff !important
- }
-
- .color-000 {
- color: #000 !important
- }
-
- .color-333 {
- color: #333 !important
- }
-
- .color-555 {
- color: #555 !important
- }
-
- .color-666 {
- color: #666 !important
- }
-
- .color-999 {
- color: #999 !important
- }
-
- .color-9d {
- color: #9d9d9d !important
- }
-
- .color-168 {
- color: #168a44 !important
- }
-
- .color-parent {
- color: inherit !important
- }
-
-
- .color-red {
- color: #f35e57 !important
- }
-
- .color-orange {
- color: #ffa127 !important
- }
-
- .color-yellow {
- color: #f5bc24 !important;
- }
-
- .color-green {
- color: #32c52a !important;
- }
-
- .color-lightgreen {
- color: #90EE90 !important;
- }
-
- .color-blue {
- color: #3569c5 !important;
- }
-
- .color-gray {
- color: #999999 !important;
- }
-
-
- .font0 {
- font-size: 0px !important;
- }
-
- .font0>* {
- font-size: initial;
- display: inline-block;
- }
-
- .font10 {
- font-size: 10px !important;
- }
-
- .font12 {
- font-size: 12px !important;
- }
-
- .font14 {
- font-size: 14px !important;
- }
-
- .font16 {
- font-size: 16px !important;
- }
-
- .font18 {
- font-size: 18px !important;
- }
-
- .font20 {
- font-size: 20px !important;
- }
-
- .font24 {
- font-size: 24px !important;
- }
-
- .font26 {
- font-size: 26px !important;
- }
-
- .font30 {
- font-size: 30px !important;
- }
-
- .font32 {
- font-size: 32px !important;
- }
-
- .font34 {
- font-size: 34px !important;
- }
-
- .font36 {
- font-size: 36px !important;
- }
-
- .font38 {
- font-size: 38px !important;
- }
-
- .font40 {
- font-size: 40px !important;
- }
-
- .font42 {
- font-size: 42px !important;
- }
-
- .font44 {
- font-size: 44px !important;
- }
-
- .font56 {
- font-size: 56px !important;
- }
-
- /*rem*/
- .font14r {
- font-size: .14rem !important;
- }
-
- .font15r {
- font-size: .15rem !important;
- }
-
- .font16r {
- font-size: .16rem !important;
- }
-
- .font18r {
- font-size: .18rem !important;
- }
-
- .font20r {
- font-size: .2rem !important;
- }
-
- .font22r {
- font-size: .22rem !important;
- }
-
- .font24r {
- font-size: .24rem !important;
- }
-
- .font25r {
- font-size: .25rem !important;
- }
-
- .font26r {
- font-size: .26rem !important;
- }
-
- .font28r {
- font-size: .28rem !important;
- }
-
- .font30r {
- font-size: .3rem !important;
- }
-
- .font32r {
- font-size: .32rem !important;
- }
-
- .font34r {
- font-size: .34rem !important;
- }
-
- .font36r {
- font-size: .36rem !important;
- }
-
- .font38r {
- font-size: .38rem !important;
- }
-
- .font40r {
- font-size: .40rem !important;
- }
-
- .font42r {
- font-size: .42rem !important;
- }
-
- .font44r {
- font-size: .44rem !important;
- }
-
- /*width,height */
- .wid5 {
- width: 5% !important;
- overflow-x: hidden;
- }
-
- .wid10 {
- width: 10% !important;
- overflow-x: hidden;
- }
-
- .wid20 {
- width: 20% !important;
- overflow-x: hidden;
- }
-
- .wid25 {
- width: 25% !important;
- overflow-x: hidden;
- }
-
- .wid30 {
- width: 30% !important;
- overflow-x: hidden;
- }
-
- .wid33 {
- width: 33% !important;
- overflow-x: hidden;
- }
-
- .wid40 {
- width: 40% !important;
- overflow-x: hidden;
- }
-
- .wid45 {
- width: 45% !important;
- overflow-x: hidden;
- }
-
- .wid50 {
- width: 50% !important;
- }
-
- .wid55 {
- width: 55% !important;
- overflow-x: hidden;
- }
-
- .wid60 {
- width: 60% !important;
- overflow-x: hidden;
- }
-
- .wid66 {
- width: 66% !important;
- overflow-x: hidden;
- }
-
- .wid70 {
- width: 70% !important;
- overflow-x: hidden;
- }
-
- .wid75 {
- width: 75% !important;
- overflow-x: hidden;
- }
-
- .wid80 {
- width: 80% !important;
- overflow-x: hidden;
- }
-
- .wid84 {
- width: 84% !important;
- overflow-x: hidden;
- }
-
- .wid86 {
- width: 86% !important;
- overflow-x: hidden;
- }
-
- .wid88 {
- width: 88% !important;
- overflow-x: hidden;
- }
-
- .wid90 {
- width: 90% !important;
- overflow-x: hidden;
- }
-
- .wid92 {
- width: 92% !important;
- overflow-x: hidden;
- }
-
- .wid94 {
- width: 94% !important;
- overflow-x: hidden;
- }
-
- .wid96 {
- width: 96% !important;
- overflow-x: hidden;
- }
-
- .wid98 {
- width: 98% !important;
- overflow-x: hidden;
- }
-
- .wid100 {
- width: 100% !important;
- overflow-x: hidden;
- }
-
- .wid01rem {
- width: 0.1rem !important
- }
-
- .wid02rem {
- width: 0.2rem !important
- }
-
- .wid03rem {
- width: 0.3rem !important
- }
-
- .wid04rem {
- width: 0.4rem !important
- }
-
- .wid05rem {
- width: 0.5rem !important
- }
-
- .wid06rem {
- width: 0.6rem !important
- }
-
- .wid07rem {
- width: 0.7rem !important
- }
-
- .wid08rem {
- width: 0.8rem !important
- }
-
- .wid09rem {
- width: 0.9rem !important
- }
-
- .wid10rem {
- width: 1rem !important
- }
-
- .wid11rem {
- width: 1.1rem !important
- }
-
- .wid12rem {
- width: 1.2rem !important
- }
-
- .wid13rem {
- width: 1.3rem !important
- }
-
- .wid14rem {
- width: 1.4rem !important
- }
-
- .wid15rem {
- width: 1.5rem !important
- }
-
- .wid16rem {
- width: 1.6rem !important
- }
-
- .wid17rem {
- width: 1.7rem !important
- }
-
- .wid18rem {
- width: 1.8rem !important
- }
-
- .wid19rem {
- width: 1.9rem !important
- }
-
- .wid20rem {
- width: 2rem !important
- }
-
- .wid21rem {
- width: 2.1rem !important
- }
-
- .wid22rem {
- width: 2.2rem !important
- }
-
- .wid23rem {
- width: 2.3rem !important
- }
-
- .wid24rem {
- width: 2.4rem !important
- }
-
- .wid25rem {
- width: 2.5rem !important
- }
-
- .wid26rem {
- width: 2.6rem !important
- }
-
- .wid27rem {
- width: 2.7rem !important
- }
-
- .wid28rem {
- width: 2.8rem !important
- }
-
- .wid29rem {
- width: 2.9rem !important
- }
-
- .wid30rem {
- width: 3rem !important
- }
-
-
- .hgt20 {
- height: 20px !important;
- overflow-y: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
-
- .hgt25 {
- height: 25px !important;
- overflow-y: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
-
- .hgt30 {
- height: 30px !important;
- overflow-y: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
-
- .hgt35 {
- height: 35px !important;
- overflow-y: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
-
- .hgt40 {
- height: 40px !important;
- overflow-y: hidden;
- }
-
- .hgt45 {
- height: 45px !important;
- overflow-y: hidden;
- }
-
- .hgt50 {
- height: 50px !important;
- overflow-y: hidden;
- }
-
- .hgt60 {
- height: 60px !important;
- overflow-y: hidden;
- }
-
- .hgt70 {
- height: 70px !important;
- overflow-y: hidden;
- }
-
- .hgt80 {
- height: 80px !important;
- overflow-y: hidden;
- }
-
- .hgt90 {
- height: 90px !important;
- overflow-y: hidden;
- }
-
- .hgt100 {
- height: 100px !important;
- overflow-y: hidden;
- }
-
- .hgt150 {
- height: 150px !important;
- overflow-y: hidden;
- }
-
- .hgt_25 {
- height: 25% !important;
- overflow-y: hidden;
- }
-
- .hgt_50 {
- height: 50% !important;
- overflow-y: hidden;
- }
-
- .hgt_60 {
- height: 60% !important;
- overflow-y: hidden;
- }
-
- .hgt_70 {
- height: 70% !important;
- overflow-y: hidden;
- }
-
- .hgt_80 {
- height: 80% !important;
- overflow-y: hidden;
- }
-
- .hgt_90 {
- height: 90% !important;
- overflow-y: hidden;
- }
-
- .hgt_full {
- height: 100% !important;
- overflow-y: hidden;
- }
-
-
- .hgt03rem {
- height: 0.3rem !important;
- overflow-y: hidden;
- }
-
- .hgt04rem {
- height: 0.4rem !important;
- overflow-y: hidden;
- }
-
- .hgt05rem {
- height: 0.5rem !important;
- overflow-y: hidden;
- }
-
- .hgt06rem {
- height: 0.6rem !important;
- overflow-y: hidden;
- }
-
- .hgt07rem {
- height: 0.7rem !important;
- overflow-y: hidden;
- }
-
- .hgt08rem {
- height: 0.8rem !important;
- overflow-y: hidden;
- }
-
- .hgt09rem {
- height: 0.9rem !important;
- overflow-y: hidden;
- }
-
- .hgt1rem {
- height: 1rem !important;
- overflow-y: hidden;
- }
-
- .hgt11rem {
- height: 1.1rem !important;
- overflow-y: hidden;
- }
-
- .hgt12rem {
- height: 1.2rem !important;
- overflow-y: hidden;
- }
-
- .hgt13rem {
- height: 1.3rem !important;
- overflow-y: hidden;
- }
-
- .hgt14rem {
- height: 1.4rem !important;
- overflow-y: hidden;
- }
-
- .hgt15rem {
- height: 1.5rem !important;
- overflow-y: hidden;
- }
-
- .hgt16rem {
- height: 1.6rem !important;
- overflow-y: hidden;
- }
-
- .hgt17rem {
- height: 1.7rem !important;
- overflow-y: hidden;
- }
-
- .hgt18rem {
- height: 1.8rem !important;
- overflow-y: hidden;
- }
-
- .hgt19rem {
- height: 1.9rem !important;
- overflow-y: hidden;
- }
-
- .hgt20rem {
- height: 2rem !important;
- overflow-y: hidden;
- }
-
- .hgt21rem {
- height: 2.1rem !important;
- overflow-y: hidden;
- }
-
- .hgt22rem {
- height: 2.2rem !important;
- overflow-y: hidden;
- }
-
- .hgt23rem {
- height: 2.3rem !important;
- overflow-y: hidden;
- }
-
- .hgt24rem {
- height: 2.4rem !important;
- overflow-y: hidden;
- }
-
- .hgt25rem {
- height: 2.5rem !important;
- overflow-y: hidden;
- }
-
- .hgt26rem {
- height: 2.6rem !important;
- overflow-y: hidden;
- }
-
- .hgt27rem {
- height: 2.7rem !important;
- overflow-y: hidden;
- }
-
- .hgt28rem {
- height: 2.8rem !important;
- overflow-y: hidden;
- }
-
- .hgt29rem {
- height: 2.9rem !important;
- overflow-y: hidden;
- }
-
- .hgt30rem {
- height: 3rem !important;
- overflow-y: hidden;
- }
-
- .hgt35rem {
- height: 3.5rem !important;
- overflow-y: hidden;
- }
-
- .hgt40rem {
- height: 4rem !important;
- overflow-y: hidden;
- }
-
- .hgt45rem {
- height: 4.5rem !important;
- overflow-y: hidden;
- }
-
- .hgt50rem {
- height: 5rem !important;
- overflow-y: hidden;
- }
-
- .hgt60rem {
- height: 6rem !important;
- overflow-y: hidden;
- }
-
- .hgt70rem {
- height: 7rem !important;
- overflow-y: hidden;
- }
-
- .hgt80rem {
- height: 8rem !important;
- overflow-y: hidden;
- }
-
- .hgt90rem {
- height: 9rem !important;
- overflow-y: hidden;
- }
-
- .hgt100rem {
- height: 10rem !important;
- overflow-y: hidden;
- }
-
-
- .min_hgt20 {
- min-height: 20px;
- }
-
- .min_hgt25 {
- min-height: 25px;
- }
-
- .min_hgt30 {
- min-height: 30px;
- }
-
- .min_hgt35 {
- min-height: 35px;
- }
-
- .min_hgt40 {
- min-height: 40px;
- }
-
- .min_hgt50 {
- min-height: 50px;
- }
-
- .min_hgt100 {
- min-height: 100px;
- }
-
-
- /****行高*****/
- .l-h-02rem {
- line-height: 0.2rem;
- }
-
- .l-h-03rem {
- line-height: 0.3rem;
- }
-
- .l-h-04rem {
- line-height: 0.4rem;
- }
-
- .l-h-05rem {
- line-height: 0.5rem;
- }
-
- .l-h-055rem {
- line-height: 0.55rem;
- }
-
- .l-h-06rem {
- line-height: 0.6rem;
- }
-
- .l-h-065rem {
- line-height: 0.65rem;
- }
-
- .l-h-07rem {
- line-height: 0.7rem;
- }
-
- .l-h-075rem {
- line-height: 0.75rem;
- }
-
- .l-h-08rem {
- line-height: 0.8rem;
- }
-
- .l-h-085rem {
- line-height: 0.85rem;
- }
-
- .l-h-09rem {
- line-height: 0.9rem;
- }
-
- .l-h-095rem {
- line-height: 0.95rem;
- }
-
- .l-h-10rem {
- line-height: 1rem;
- }
-
- .l-h-10rem {
- line-height: 1rem;
- }
-
- .l-h-11rem {
- line-height: 1.1rem;
- }
-
- .l-h-12rem {
- line-height: 1.2rem;
- }
-
- .l-h-13rem {
- line-height: 1.3rem;
- }
-
- .l-h-14rem {
- line-height: 1.4rem;
- }
-
- .l-h-15rem {
- line-height: 1.5rem;
- }
-
- .l-h-16rem {
- line-height: 1.6rem;
- }
-
- .l-h-17rem {
- line-height: 1.7rem;
- }
-
- .l-h-18rem {
- line-height: 1.8rem;
- }
-
- .l-h-19rem {
- line-height: 1.9rem;
- }
-
- .l-h-20rem {
- line-height: 2rem;
- }
-
- .l-h-21rem {
- line-height: 2.1rem;
- }
-
- .l-h-22rem {
- line-height: 2.2rem;
- }
-
- .l-h-23rem {
- line-height: 2.3rem;
- }
-
- .l-h-24rem {
- line-height: 2.4rem;
- }
-
- .l-h-25rem {
- line-height: 2.5rem;
- }
-
- .l-h-26rem {
- line-height: 2.6rem;
- }
-
- .l-h-27rem {
- line-height: 2.6rem;
- }
-
- .l-h-28rem {
- line-height: 2.6rem;
- }
-
- .l-h-29rem {
- line-height: 2.6rem;
- }
-
- .l-h-30rem {
- line-height: 2.6rem;
- }
- .l-h-30{
- line-height: 30px;
- }
-
- /*margin,padding 相关*/
- .m-b-no {
- margin-bottom: 0 !important;
- }
-
- .m-t-no {
- margin-top: 0 !important;
- }
-
- .m-l-no {
- margin-left: 0 !important;
- }
-
- .m-r-no {
- margin-right: 0 !important;
- }
-
- .marg0 {
- margin: 0 !important;
- }
-
- .marg5 {
- margin: 5px !important;
- }
-
- .marg10 {
- margin: 10px !important;
- }
-
- .marg15 {
- margin: 15px !important;
- }
-
- .marg20 {
- margin: 20px !important;
- }
-
- .marg25 {
- margin: 25px !important;
- }
-
- .marg30 {
- margin: 30px !important;
- }
-
- .m-l-5 {
- margin-left: 5px !important;
- }
-
- .m-l-10 {
- margin-left: 10px !important;
- }
-
- .m-l-15 {
- margin-left: 15px !important;
- }
-
- .m-l-20 {
- margin-left: 20px !important;
- }
-
- .m-l-25 {
- margin-left: 25px !important;
- }
-
- .m-l-30 {
- margin-left: 30px !important;
- }
-
- .m-r-5 {
- margin-right: 5px !important;
- }
-
- .m-r-10 {
- margin-right: 10px !important;
- }
-
- .m-r-15 {
- margin-right: 15px !important;
- }
-
- .m-r-20 {
- margin-right: 20px !important;
- }
-
- .m-r-25 {
- margin-right: 25px !important;
- }
-
- .m-r-30 {
- margin-right: 30px !important;
- }
-
- .m-r-60 {
- margin-right: 60px !important;
- }
-
- .m-t-5 {
- margin-top: 5px !important;
- }
-
- .m-t-10 {
- margin-top: 10px !important;
- }
-
- .m-t-15 {
- margin-top: 15px !important;
- }
-
- .m-t-20 {
- margin-top: 20px !important;
- }
-
- .m-t-25 {
- margin-top: 25px !important;
- }
-
- .m-t-30 {
- margin-top: 30px !important;
- }
-
- .m-t-35 {
- margin-top: 35px !important;
- }
-
- .m-t-40 {
- margin-top: 40px !important;
- }
-
- .m-t-45 {
- margin-top: 45px !important;
- }
-
- .m-t-50 {
- margin-top: 50px !important;
- }
-
- .m-b-5 {
- margin-bottom: 5px !important;
- }
-
- .m-b-10 {
- margin-bottom: 10px !important;
- }
-
- .m-b-15 {
- margin-bottom: 15px !important;
- }
-
- .m-b-20 {
- margin-bottom: 20px !important;
- }
-
- .m-b-25 {
- margin-bottom: 25px !important;
- }
-
- .m-b-30 {
- margin-bottom: 30px !important;
- }
-
- .m-b-50 {
- margin-bottom: 50px !important;
- }
-
- .m-v-5 {
- margin-top: 5px !important;
- margin-bottom: 5px !important;
- }
-
- .m-v-10 {
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
-
- .m-v-15 {
- margin-top: 15px !important;
- margin-bottom: 15px !important;
- }
-
- .m-v-20 {
- margin-top: 20px !important;
- margin-bottom: 20px !important;
- }
-
- .m-v-25 {
- margin-top: 25px !important;
- margin-bottom: 25px !important;
- }
-
- .m-v-30 {
- margin-top: 30px !important;
- margin-bottom: 30px !important;
- }
-
- .m_both5 {
- margin-left: 5px !important;
- margin-right: 5px !important;
- }
-
- .m_both10 {
- margin-left: 10px !important;
- margin-right: 10px !important;
- }
-
- .m_both15 {
- margin-left: 15px !important;
- margin-right: 15px !important;
- }
-
- .m_both20 {
- margin-left: 20px !important;
- margin-right: 20px !important;
- }
-
- .m_both25 {
- margin-left: 25px !important;
- margin-right: 25px !important;
- }
-
- .m_both30 {
- margin-left: 30px !important;
- margin-right: 30px !important;
- }
-
- .m-l-5r {
- margin-left: 0.05rem !important;
- }
-
- .m-l-10r {
- margin-left: .1rem !important;
- }
-
- .m-l-15r {
- margin-left: .15rem !important;
- }
-
- .m-l-20r {
- margin-left: .20rem !important;
- }
-
- .m-l-25r {
- margin-left: .25rem !important;
- }
-
- .m-l-30r {
- margin-left: .30rem !important;
- }
-
- .m-r-5r {
- margin-right: .05rem !important;
- }
-
- .m-r-10r {
- margin-right: .10rem !important;
- }
-
- .m-r-15r {
- margin-right: .15rem !important;
- }
-
- .m-r-20r {
- margin-right: .20rem !important;
- }
-
- .m-r-25r {
- margin-right: .25rem !important;
- }
-
- .m-r-30r {
- margin-right: .30rem !important;
- }
-
- .m-t-5r {
- margin-top: .05rem !important;
- }
-
- .m-t-10r {
- margin-top: .10rem !important;
- }
-
- .m-t-15r {
- margin-top: .15rem !important;
- }
-
- .m-t-20r {
- margin-top: .20rem !important;
- }
-
- .m-t-25r {
- margin-top: .25rem !important;
- }
-
- .m-t-30r {
- margin-top: .30rem !important;
- }
-
- .m-t-35r {
- margin-top: .35rem !important;
- }
-
- .m-t-40r {
- margin-top: .40rem !important;
- }
-
- .m-t-45r {
- margin-top: .45rem !important;
- }
-
- .m-t-50r {
- margin-top: .50rem !important;
- }
-
- .m-t-60r {
- margin-top: .60rem !important;
- }
-
- .m-t-70r {
- margin-top: .70rem !important;
- }
-
- .m-t-80r {
- margin-top: .80rem !important;
- }
-
- .m-t-90r {
- margin-top: .90rem !important;
- }
-
- .m-b-5r {
- margin-bottom: .05rem !important;
- }
-
- .m-b-10r {
- margin-bottom: .10rem !important;
- }
-
- .m-b-15r {
- margin-bottom: .15rem !important;
- }
-
- .m-b-20r {
- margin-bottom: .20rem !important;
- }
-
- .m-b-25r {
- margin-bottom: .25rem !important;
- }
-
- .m-b-30r {
- margin-bottom: .30rem !important;
- }
-
- .m-b-35r {
- margin-bottom: .35rem !important;
- }
-
- .m-b-40r {
- margin-bottom: .40rem !important;
- }
-
- .m-b-45r {
- margin-bottom: .45rem !important;
- }
-
- .m-v-5r {
- margin-top: .05rem !important;
- margin-bottom: .05rem !important;
- }
-
- .m-v-10r {
- margin-top: .10rem !important;
- margin-bottom: .10rem !important;
- }
-
- .m-v-15r {
- margin-top: .15rem !important;
- margin-bottom: .15rem !important;
- }
-
- .m-v-20r {
- margin-top: .20rem !important;
- margin-bottom: .20rem !important;
- }
-
- .m-v-25r {
- margin-top: .25rem !important;
- margin-bottom: .25rem !important;
- }
-
- .m-v-30r {
- margin-top: .30rem !important;
- margin-bottom: .30rem !important;
- }
-
- .m_both02r {
- margin-left: .2rem !important;
- margin-right: .2rem !important;
- }
-
- .m_both5r {
- margin-left: .05rem !important;
- margin-right: .05rem !important;
- }
-
- .m_both10r {
- margin-left: .10rem !important;
- margin-right: .10rem !important;
- }
-
- .m_both15r {
- margin-left: .15rem !important;
- margin-right: .15rem !important;
- }
-
- .m_both20r {
- margin-left: .20rem !important;
- margin-right: .20rem !important;
- }
-
- .m_both25r {
- margin-left: .25rem !important;
- margin-right: .25rem !important;
- }
-
- .m_both30r {
- margin-left: .30rem !important;
- margin-right: .30rem !important;
- }
-
- /*rem margin*/
- .mb01 {
- margin-bottom: .1rem;
- }
-
- .mb015 {
- margin-bottom: .15rem;
- }
-
- .mb02 {
- margin-bottom: .2rem;
- }
-
- .mb03 {
- margin-bottom: .3rem;
- }
-
- .mb04 {
- margin-bottom: .4rem;
- }
-
- .mb05 {
- margin-bottom: .5rem;
- }
-
- .ml01 {
- margin-left: .1rem;
- }
-
- .ml02 {
- margin-left: .2rem;
- }
-
- .ml03 {
- margin-left: .3rem;
- }
-
- .mr01 {
- margin-right: .1rem;
- }
-
- .mr02 {
- margin-right: .2rem;
- }
-
- .mr03 {
- margin-right: .3rem;
- }
-
- .mt01 {
- margin-top: .1rem;
- }
-
- .mt02 {
- margin-top: .2rem;
- }
-
- .mt03 {
- margin-top: .3rem;
- }
-
- .mt04 {
- margin-top: .4rem;
- }
-
- .p-l-no {
- padding-left: 0 !important;
- }
-
- .p-r-no {
- padding-right: 0 !important;
- }
-
- .p-t-no {
- padding-top: 0 !important;
- }
-
- .p-b-no {
- padding-bottom: 0 !important;
- }
-
- /*rem padding*/
- .pv01 {
- padding-top: .1rem;
- padding-bottom: .1rem;
- }
-
- .pv02 {
- padding-top: .2rem;
- padding-bottom: .2rem;
- }
-
- .pv03 {
- padding-top: .3rem;
- padding-bottom: .3rem;
- }
-
- .ph01 {
- padding-left: .1rem;
- padding-right: .1rem;
- }
-
- .ph02 {
- padding-left: .2rem;
- padding-right: .2rem;
- }
-
- .ph03 {
- padding-left: .3rem;
- padding-right: .3rem;
- }
-
- .pa01 {
- padding: .1rem;
- }
-
- .pa02 {
- padding: .2rem;
- }
-
- .pa03 {
- padding: .3rem;
- }
-
- .p0102 {
- padding: .1rem .2rem;
- }
-
- .p0203 {
- padding: .2rem .3rem;
- }
-
- .p-l-5 {
- padding-left: 5px !important;
- }
-
- .p-l-10 {
- padding-left: 10px !important;
- }
-
- .p-l-15 {
- padding-left: 15px !important;
- }
-
- .p-l-20 {
- padding-left: 20px !important;
- }
-
- .p-l-25 {
- padding-left: 25px !important;
- }
-
- .p-l-30 {
- padding-left: 30px !important;
- }
-
- .p-l-35 {
- padding-left: 35px !important;
- }
-
- .p-l-40 {
- padding-left: 40px !important;
- }
-
- .p-l-45 {
- padding-left: 45px !important;
- }
-
- .p-l-50 {
- padding-left: 50px !important;
- }
-
- .p-r-5 {
- padding-right: 5px !important;
- }
-
- .p-r-10 {
- padding-right: 10px !important;
- }
-
- .p-r-15 {
- padding-right: 15px !important;
- }
-
- .p-r-20 {
- padding-right: 20px !important;
- }
-
- .p-r-25 {
- padding-right: 25px !important;
- }
-
- .p-r-30 {
- padding-right: 30px !important;
- }
-
- .p-r-35 {
- padding-right: 35px !important;
- }
-
- .p-r-40 {
- padding-right: 40px !important;
- }
-
- .p-r-45 {
- padding-right: 45px !important;
- }
-
- .p-r-50 {
- padding-right: 50px !important;
- }
-
- .p-t-5 {
- padding-top: 5px !important;
- }
-
- .p-t-10 {
- padding-top: 10px !important;
- }
-
- .p-t-15 {
- padding-top: 15px !important;
- }
-
- .p-t-20 {
- padding-top: 20px !important;
- }
-
- .p-t-25 {
- padding-top: 25px !important;
- }
-
- .p-t-30 {
- padding-top: 30px !important;
- }
-
- .p-t-35 {
- padding-top: 35px !important;
- }
-
- .p-t-40 {
- padding-top: 40px !important;
- }
-
- .p-t-45 {
- padding-top: 45px !important;
- }
-
- .p-t-50 {
- padding-top: 50px !important;
- }
-
- .p-t-full {
- padding-top: 100% !important;
- }
-
- .p-b-5 {
- padding-bottom: 5px !important;
- }
-
- .p-b-10 {
- padding-bottom: 10px !important;
- }
-
- .p-b-15 {
- padding-bottom: 15px !important;
- }
-
- .p-b-20 {
- padding-bottom: 20px !important;
- }
-
- .p-b-25 {
- padding-bottom: 25px !important;
- }
-
- .p-b-30 {
- padding-bottom: 30px !important;
- }
-
- .p-b-35 {
- padding-bottom: 35px !important;
- }
-
- .p-b-40 {
- padding-bottom: 40px !important;
- }
-
- .p-b-45 {
- padding-bottom: 45px !important;
- }
-
- .p-b-50 {
- padding-bottom: 50px !important;
- }
-
- .min_hgt02r {
- min-height: 0.2rem;
- }
-
- .min_hgt03r {
- min-height: 0.3rem;
- }
-
- .min_hgt04r {
- min-height: 0.4rem;
- }
-
- .min_hgt05r {
- min-height: 0.5rem;
- }
-
- .min_hgt06r {
- min-height: 0.6rem;
- }
-
- .min_hgt07r {
- min-height: 0.7rem;
- }
-
- .min_hgt08r {
- min-height: 0.8rem;
- }
-
- .min_hgt09r {
- min-height: 0.9rem;
- }
-
- .min_hgt10r {
- min-height: 1rem;
- }
-
- .min_hgt20r {
- min-height: 2rem;
- }
-
- .min_hgt30r {
- min-height: 3rem;
- }
-
- .min_hgt40r {
- min-height: 4rem;
- }
-
- .min_hgt50r {
- min-height: 5rem;
- }
-
- .min_hgt60r {
- min-height: 6rem;
- }
-
- .min_hgt70r {
- min-height: 7rem;
- }
-
- .min_hgt80r {
- min-height: 8rem;
- }
-
- .min_hgt90r {
- min-height: 9rem;
- }
-
- .min_hgt100r {
- min-height: 10rem;
- }
-
- .max_hgt20 {
- max-height: 20px;
- }
-
- .max_hgt25 {
- max-height: 25px;
- }
-
- .max_hgt30 {
- max-height: 30px;
- }
-
- .max_hgt35 {
- max-height: 35px;
- }
-
- .max_hgt40 {
- max-height: 40px;
- }
-
- .max_hgt50 {
- max-height: 50px;
- }
-
- .max_hgt100 {
- max-height: 100px;
- }
-
- .max_hgt02r {
- max-height: 0.2rem;
- }
-
- .max_hgt03r {
- max-height: 0.3rem;
- }
-
- .max_hgt04r {
- max-height: 0.4rem;
- }
-
- .max_hgt05r {
- max-height: 0.5rem;
- }
-
- .max_hgt06r {
- max-height: 0.6rem;
- }
-
- .max_hgt07r {
- max-height: 0.7rem;
- }
-
- .max_hgt08r {
- max-height: 0.8rem;
- }
-
- .max_hgt09r {
- max-height: 0.9rem;
- }
-
- .max_hgt10r {
- max-height: 1rem;
- }
-
- .max_hgt20r {
- max-height: 2rem;
- }
-
- .max_hgt30r {
- max-height: 3rem;
- }
-
- .max_hgt40r {
- max-height: 4rem;
- }
-
- .max_hgt50r {
- max-height: 5rem;
- }
-
- .max_hgt60r {
- max-height: 6rem;
- }
-
- .max_hgt70r {
- max-height: 7rem;
- }
-
- .max_hgt80r {
- max-height: 8rem;
- }
-
- .max_hgt90r {
- max-height: 9rem;
- }
-
- .max_hgt100r {
- max-height: 10rem;
- }
-
- /*焦点图*/
- /* ===============================================================
- Basic Swiper Styles
- ================================================================*/
- .swiper-container {
- margin: 0 auto;
- position: relative;
- overflow: hidden;
- direction: ltr;
- -webkit-backface-visibility: hidden;
- -moz-backface-visibility: hidden;
- -ms-backface-visibility: hidden;
- -o-backface-visibility: hidden;
- backface-visibility: hidden;
- /* Fix of Webkit flickering */
- z-index: 1;
- }
-
- .swiper-wrapper {
- position: relative;
- width: 100%;
- -webkit-transition-property: -webkit-transform, left, top;
- -webkit-transition-duration: 0s;
- -webkit-transform: translate3d(0px, 0, 0);
- -webkit-transition-timing-function: ease;
-
- -moz-transition-property: -moz-transform, left, top;
- -moz-transition-duration: 0s;
- -moz-transform: translate3d(0px, 0, 0);
- -moz-transition-timing-function: ease;
-
- -o-transition-property: -o-transform, left, top;
- -o-transition-duration: 0s;
- -o-transform: translate3d(0px, 0, 0);
- -o-transition-timing-function: ease;
- -o-transform: translate(0px, 0px);
-
- -ms-transition-property: -ms-transform, left, top;
- -ms-transition-duration: 0s;
- -ms-transform: translate3d(0px, 0, 0);
- -ms-transition-timing-function: ease;
-
- transition-property: transform, left, top;
- transition-duration: 0s;
- transform: translate3d(0px, 0, 0);
- transition-timing-function: ease;
-
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- }
-
- .swiper-free-mode>.swiper-wrapper {
- -webkit-transition-timing-function: ease-out;
- -moz-transition-timing-function: ease-out;
- -ms-transition-timing-function: ease-out;
- -o-transition-timing-function: ease-out;
- transition-timing-function: ease-out;
- margin: 0 auto;
- }
-
- .swiper-slide {
- float: left;
- }
-
- .swiper-slide p{
- position: absolute;
- bottom: 0;
- color: #FFF;
- background: rgba(0,0,0,0.2);
- width: 100%;
- height: 50px;
- line-height: 50px;
- text-indent: 2em;
- }
-
- .swiper-slide img {
- width: 100%;
- height: 100%;
- }
-
- /* IE10 Windows Phone 8 Fixes */
- .swiper-wp8-horizontal {
- -ms-touch-action: pan-y;
- }
-
- .swiper-wp8-vertical {
- -ms-touch-action: pan-x;
- }
-
- .swiper-container {
- width: 100%;
- height: 100%;
- }
-
- .page-pagination {
- position: absolute;
- z-index: 20;
- left: 50%;
- margin-left: -10px;
- bottom: 150px;
- }
-
- .page-paginationSend{
- bottom: 50px!important;
- }
-
- .swiper-pagination-switch {
- display: inline-block;
- width: 8px;
- height: 8px;
- border-radius: 8px;
- background: #222;
- margin-right: 5px;
- opacity: 0.8;
- border: 1px solid #fff;
- cursor: pointer;
- }
-
- .swiper-visible-switch {
- background: #aaa;
- }
-
- .swiper-active-switch {
- background: #fff;
- }
|