123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055 |
- @charset "UTF-8";
- /*!
- * WFFW(Webfront Framework) of W3SDK - w3sdk-1.5.0-beta (http://w3cut.cn Copyright©2019 W3)
- *
- * style - 2019/12/20
- * 说明:统一样式
- * 用法:html 文件中引用
- */
- *:focus {
- outline: none;
- }
- a:hover {
- text-decoration: none;
- color: #2c91eb !important;
- }
- label {
- margin-bottom: 0;
- }
- .h1,
- .h2,
- .h3,
- .h4,
- .h5,
- .h6,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- label {
- margin: 0;
- line-height: 1em;
- }
- dl,
- ol,
- ul {
- padding: 0;
- margin: 0;
- }
- dl li,
- ol li,
- ul li {
- list-style: none;
- }
- table {
- width: 100%;
- }
- table tr.hd {
- display: table-row;
- }
- .carousel-indicators {
- z-index: 2;
- bottom: 20px;
- }
- .carousel-indicators li {
- opacity: 1;
- border: none;
- }
- .nav {
- display: block;
- }
- .nav .nav-link {
- padding: 0;
- }
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
- .cf::after {
- content: "";
- display: block;
- clear: both;
- }
- .al {
- text-align: left;
- }
- .ar {
- text-align: right;
- }
- .ac {
- text-align: center;
- }
- .aj {
- text-align: justify;
- }
- .lc {
- text-transform: lowercase;
- }
- .uc {
- text-transform: uppercase;
- }
- .pa-tl {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- }
- .pa-tr {
- position: absolute;
- z-index: 1;
- top: 0;
- right: 0;
- }
- .pa-br {
- position: absolute;
- z-index: 1;
- bottom: 0;
- right: 0;
- }
- .pa-bl {
- position: absolute;
- z-index: 1;
- bottom: 0;
- left: 0;
- }
- .elli {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .ofvi {
- overflow: visible !important;
- }
- .ht00 {
- display: block;
- height: 0px;
- }
- .ht05 {
- display: block;
- height: 5px;
- }
- .ht10 {
- display: block;
- height: 10px;
- }
- .ht15 {
- display: block;
- height: 15px;
- }
- .ht20 {
- display: block;
- height: 20px;
- }
- .ht25 {
- display: block;
- height: 25px;
- }
- .ht30 {
- display: block;
- height: 30px;
- }
- .ht35 {
- display: block;
- height: 35px;
- }
- .ht40 {
- display: block;
- height: 40px;
- }
- .ht45 {
- display: block;
- height: 45px;
- }
- .ht50 {
- display: block;
- height: 50px;
- }
- .ht55 {
- display: block;
- height: 55px;
- }
- .ht60 {
- display: block;
- height: 60px;
- }
- .ht65 {
- display: block;
- height: 65px;
- }
- .ht70 {
- display: block;
- height: 70px;
- }
- .ht75 {
- display: block;
- height: 75px;
- }
- .ht80 {
- display: block;
- height: 80px;
- }
- .ht85 {
- display: block;
- height: 85px;
- }
- .ht90 {
- display: block;
- height: 90px;
- }
- .ht95 {
- display: block;
- height: 95px;
- }
- .wh00 {
- display: inline-block;
- width: 0px;
- }
- .wh05 {
- display: inline-block;
- width: 5px;
- }
- .wh10 {
- display: inline-block;
- width: 10px;
- }
- .wh15 {
- display: inline-block;
- width: 15px;
- }
- .wh20 {
- display: inline-block;
- width: 20px;
- }
- .wh25 {
- display: inline-block;
- width: 25px;
- }
- .wh30 {
- display: inline-block;
- width: 30px;
- }
- .wh35 {
- display: inline-block;
- width: 35px;
- }
- .wh40 {
- display: inline-block;
- width: 40px;
- }
- .wh45 {
- display: inline-block;
- width: 45px;
- }
- .wh50 {
- display: inline-block;
- width: 50px;
- }
- .wh55 {
- display: inline-block;
- width: 55px;
- }
- .wh60 {
- display: inline-block;
- width: 60px;
- }
- .wh65 {
- display: inline-block;
- width: 65px;
- }
- .wh70 {
- display: inline-block;
- width: 70px;
- }
- .wh75 {
- display: inline-block;
- width: 75px;
- }
- .wh80 {
- display: inline-block;
- width: 80px;
- }
- .wh85 {
- display: inline-block;
- width: 85px;
- }
- .wh90 {
- display: inline-block;
- width: 90px;
- }
- .wh95 {
- display: inline-block;
- width: 95px;
- }
- .em00 {
- display: inline-block;
- width: 0em;
- }
- .em05 {
- display: inline-block;
- width: 0.5em;
- }
- .em10 {
- display: inline-block;
- width: 1em;
- }
- .em15 {
- display: inline-block;
- width: 1.5em;
- }
- .em20 {
- display: inline-block;
- width: 2em;
- }
- .em25 {
- display: inline-block;
- width: 2.5em;
- }
- .em30 {
- display: inline-block;
- width: 3em;
- }
- .em35 {
- display: inline-block;
- width: 3.5em;
- }
- .em40 {
- display: inline-block;
- width: 4em;
- }
- .em45 {
- display: inline-block;
- width: 4.5em;
- }
- .em50 {
- display: inline-block;
- width: 5em;
- }
- .em55 {
- display: inline-block;
- width: 5.5em;
- }
- .em60 {
- display: inline-block;
- width: 6em;
- }
- .em65 {
- display: inline-block;
- width: 6.5em;
- }
- .em70 {
- display: inline-block;
- width: 7em;
- }
- .em75 {
- display: inline-block;
- width: 7.5em;
- }
- .em80 {
- display: inline-block;
- width: 8em;
- }
- .em85 {
- display: inline-block;
- width: 8.5em;
- }
- .em90 {
- display: inline-block;
- width: 9em;
- }
- .em95 {
- display: inline-block;
- width: 9.5em;
- }
- .nobg {
- background: none !important;
- }
- .nobt {
- border-top: none !important;
- }
- .nobr {
- border-right: none !important;
- }
- .nobb {
- border-bottom: none !important;
- }
- .nobl {
- border-left: none !important;
- }
- .nobd {
- border: none !important;
- }
- .nopt {
- padding-top: 0 !important;
- }
- .nopr {
- padding-right: 0 !important;
- }
- .nopb {
- padding-bottom: 0 !important;
- }
- .nopl {
- padding-left: 0 !important;
- }
- .nopd {
- padding: 0 !important;
- }
- .nomt {
- margin-top: 0 !important;
- }
- .nomr {
- margin-right: 0 !important;
- }
- .nomb {
- margin-bottom: 0 !important;
- }
- .noml {
- margin-left: 0 !important;
- }
- .nomg {
- margin: 0 !important;
- }
- ._list.s1 > ul > li {
- width: 100%;
- }
- ._list.s2 > ul > li {
- width: 50%;
- }
- ._list.s3 > ul > li {
- width: 33.3333333333%;
- }
- ._list.s4 > ul > li {
- width: 25%;
- }
- ._list.s5 > ul > li {
- width: 20%;
- }
- ._list.s6 > ul > li {
- width: 16.6666666667%;
- }
- ._list > ul::after {
- content: "";
- display: block;
- clear: both;
- }
- ._list > ul > li {
- float: left;
- }
- ._lrct::after {
- content: "";
- display: block;
- clear: both;
- }
- ._lrct > .l {
- float: left;
- }
- ._lrct > .r {
- float: right;
- }
- ._lrct > .p {
- float: left;
- width: 50%;
- }
- ._cover {
- content: "";
- position: absolute;
- z-index: 1;
- top: 0;
- height: 100%;
- left: 0;
- width: 100%;
- }
- ._icon {
- content: "";
- display: inline-block;
- width: 0;
- height: 0;
- background: none no-repeat center;
- background-size: 100% 100%;
- vertical-align: middle;
- }
- ._abox {
- position: fixed;
- z-index: 11;
- top: 50%;
- left: 50%;
- -webkit-transform: translateX(-50%) translateY(-50%);
- transform: translateX(-50%) translateY(-50%);
- display: none;
- }
- ._abox.show {
- display: block;
- }
- *:hover, *:hover:before, *:hover:after {
- -webkit-transition: opacity 300ms, color 300ms, border-color 300ms, background-color 300ms, background-image 300ms, -webkit-box-shadow 300ms;
- transition: opacity 300ms, color 300ms, border-color 300ms, background-color 300ms, background-image 300ms, -webkit-box-shadow 300ms;
- transition: opacity 300ms, color 300ms, border-color 300ms, background-color 300ms, background-image 300ms, box-shadow 300ms;
- transition: opacity 300ms, color 300ms, border-color 300ms, background-color 300ms, background-image 300ms, box-shadow 300ms, -webkit-box-shadow 300ms;
- }
- .zimg {
- overflow: hidden;
- }
- .zimg img {
- width: 100%;
- -webkit-transition: -webkit-transform 300ms;
- transition: -webkit-transform 300ms;
- transition: transform 300ms;
- transition: transform 300ms, -webkit-transform 300ms;
- }
- .wp:hover .zimg img, .zimg:hover img {
- -webkit-transform: scale(1.05);
- transform: scale(1.05);
- }
- .hover {
- -webkit-transition: -webkit-transform 300ms;
- transition: -webkit-transform 300ms;
- transition: transform 300ms;
- transition: transform 300ms, -webkit-transform 300ms;
- }
- .hover.zoom:hover, .wp:hover .hover.zoom {
- -webkit-transform: scale(1.05);
- transform: scale(1.05);
- }
- .hover.up:hover, .wp:hover .hover.up {
- -webkit-transform: translateY(-5%);
- transform: translateY(-5%);
- }
- .hover.down:hover, .wp:hover .hover.down {
- -webkit-transform: translateY(5%);
- transform: translateY(5%);
- }
- .hover.right:hover, .wp:hover .hover.right {
- -webkit-transform: translateX(5%);
- transform: translateX(5%);
- }
- .hover.left:hover, .wp:hover .hover.rigleftht {
- -webkit-transform: translateX(-5%);
- transform: translateX(-5%);
- }
- .hover.rotate:hover, .wp:hover .hover.rotateC {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- .hover.rotateAnti:hover, .wp:hover .hover.rotateAnti {
- -webkit-transform: rotate(-360deg);
- transform: rotate(-360deg);
- }
- .hover.rotateY:hover, .wp:hover .hover.rotateY {
- -webkit-transform: rotateY(360deg);
- transform: rotateY(360deg);
- }
- .hover.rotateX:hover, .wp:hover .hover.rotateX {
- -webkit-transform: rotateX(360deg);
- transform: rotateX(360deg);
- }
- .pc-hide {
- display: none;
- }
- @media (max-width: 768px) {
- body.pcs .ht00 {
- display: block;
- height: 0px;
- }
- body.pcs .ht05 {
- display: block;
- height: 2.5px;
- }
- body.pcs .ht10 {
- display: block;
- height: 5px;
- }
- body.pcs .ht15 {
- display: block;
- height: 7.5px;
- }
- body.pcs .ht20 {
- display: block;
- height: 10px;
- }
- body.pcs .ht25 {
- display: block;
- height: 12.5px;
- }
- body.pcs .ht30 {
- display: block;
- height: 15px;
- }
- body.pcs .ht35 {
- display: block;
- height: 17.5px;
- }
- body.pcs .ht40 {
- display: block;
- height: 20px;
- }
- body.pcs .ht45 {
- display: block;
- height: 22.5px;
- }
- body.pcs .ht50 {
- display: block;
- height: 25px;
- }
- body.pcs .ht55 {
- display: block;
- height: 27.5px;
- }
- body.pcs .ht60 {
- display: block;
- height: 30px;
- }
- body.pcs .ht65 {
- display: block;
- height: 32.5px;
- }
- body.pcs .ht70 {
- display: block;
- height: 35px;
- }
- body.pcs .ht75 {
- display: block;
- height: 37.5px;
- }
- body.pcs .ht80 {
- display: block;
- height: 40px;
- }
- body.pcs .ht85 {
- display: block;
- height: 42.5px;
- }
- body.pcs .ht90 {
- display: block;
- height: 45px;
- }
- body.pcs .ht95 {
- display: block;
- height: 47.5px;
- }
- body.pcs .wh00 {
- display: inline-block;
- width: 0px;
- }
- body.pcs .wh05 {
- display: inline-block;
- width: 2.5px;
- }
- body.pcs .wh10 {
- display: inline-block;
- width: 5px;
- }
- body.pcs .wh15 {
- display: inline-block;
- width: 7.5px;
- }
- body.pcs .wh20 {
- display: inline-block;
- width: 10px;
- }
- body.pcs .wh25 {
- display: inline-block;
- width: 12.5px;
- }
- body.pcs .wh30 {
- display: inline-block;
- width: 15px;
- }
- body.pcs .wh35 {
- display: inline-block;
- width: 17.5px;
- }
- body.pcs .wh40 {
- display: inline-block;
- width: 20px;
- }
- body.pcs .wh45 {
- display: inline-block;
- width: 22.5px;
- }
- body.pcs .wh50 {
- display: inline-block;
- width: 25px;
- }
- body.pcs .wh55 {
- display: inline-block;
- width: 27.5px;
- }
- body.pcs .wh60 {
- display: inline-block;
- width: 30px;
- }
- body.pcs .wh65 {
- display: inline-block;
- width: 32.5px;
- }
- body.pcs .wh70 {
- display: inline-block;
- width: 35px;
- }
- body.pcs .wh75 {
- display: inline-block;
- width: 37.5px;
- }
- body.pcs .wh80 {
- display: inline-block;
- width: 40px;
- }
- body.pcs .wh85 {
- display: inline-block;
- width: 42.5px;
- }
- body.pcs .wh90 {
- display: inline-block;
- width: 45px;
- }
- body.pcs .wh95 {
- display: inline-block;
- width: 47.5px;
- }
- body.pcs .pc-hide {
- display: block;
- }
- body.pcs .mb-hide {
- display: none;
- }
- body.pcs .lrct > .l, body.pcs .lrct > .r, body.pcs .lrct > .p {
- float: none;
- width: 100%;
- }
- body.pcs .list.s1 ul li, body.pcs .list.s2 ul li {
- width: 100%;
- }
- body.pcs .list.s3 ul li, body.pcs .list.s4 ul li {
- width: 50%;
- }
- body.pcs .list.s5 ul li, body.pcs .list.s6 ul li {
- width: 33.33%;
- }
- body.pcs {
- min-width: 0;
- }
- body.pcs .container {
- width: 100% !important;
- padding: 0 15px;
- }
- body.pcs .home_activ {
- width: 100% !important;
- padding: 0 15px;
- margin: auto;
- }
- body.pcs .home_activ li:nth-child(1){
- padding-right: 0 !important;
- }
- body.pcs .home_activ li:nth-child(2){
- padding-right: 0 !important;
- padding-left: 0 !important;
- }
- body.pcs .home_activ li:nth-child(3){
- padding-left: 0 !important;
- }
- body.pcs .a_inmg{
- width: 100%;
- display: inline-block;
- margin: auto;
- padding: 0 15px;
- }
- body.pcs .container.full {
- padding: 0;
- }
- body.pcs header {
- z-index: 11;
- min-width: 0;
- }
- body.pcs header .mbtn {
- display: block;
- }
- }
- html {
- font-size: 10px;
- }
- body {
- font-size: 1.2rem;
- display: block !important;
- }
- body:after {
- content: "";
- position: fixed;
- z-index: 10;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6);
- display: none;
- }
- body.on-mask:after, body.on-menu:after {
- display: block;
- }
- .container {
- padding: 0;
- position: relative;
- height: 100%;
- max-width: 100%;
- }
- header {
- position: relative;
- z-index: 9;
- top: 0;
- left: 0;
- width: 100%;
- }
- header .logo {
- display: inline-block;
- }
- header .mbtn {
- display: none;
- position: absolute;
- z-index: 1;
- top: 0;
- right: 0;
- }
- footer .back {
- position: fixed;
- z-index: 9;
- -webkit-transform: scale(0);
- transform: scale(0);
- -webkit-transition: -webkit-transform 300ms;
- transition: -webkit-transform 300ms;
- transition: transform 300ms;
- transition: transform 300ms, -webkit-transform 300ms;
- }
- body.on-scro footer .back {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- .hd,
- .ct,
- .ft,
- .head,
- .cont,
- .foot,
- .cnt,
- .img,
- .i,
- .p {
- position: relative;
- display: block;
- }
- .bt {
- display: inline-block;
- }
- .u-fullpart {
- position: relative;
- background: none no-repeat 50% 0;
- background-size: cover;
- overflow: hidden;
- }
- .u-fullpart.bgrp {
- background-repeat: no-repeat;
- background-size: auto;
- }
- /*
- @font-face{
- font-family: 字体名称;
- src: url(../fonts/字体名称.ttf);
- }*/
- html {
- font-size: 10px;
- }
- body {
- font-family: 微软雅黑;
- font-size: 1.2rem;
- display: block !important;
- min-width: 1200px;
- color: #000000;
- }
- .container {
- padding: 0;
- position: relative;
- height: 100%;
- width: 1200px;
- }
- .condese{
- width: 1100px;
- margin: 0 auto;
- margin-left: 68px !important;
- }
- .condesee{
- width: 1000px;
- margin: 0 auto;
- }
- .container.lt {
- width: 980px;
- }
- .container.gt {
- width: 1400px;
- }
- .container.full {
- width: 100%;
- padding: 0;
- }
- a {
- color: #000000;
- text-align: center;
- }
- a:hover {
- color: #e10101;
- }
- .bd {
- border: 1px solid #e2e2e2;
- background-color: #fff;
- }
- header {
- /* margin-bottom: 10px; */
- }
- header > .a {
- background-color: #014582;
- }
- header > .b {
- border-bottom: 1px solid #eaeaea;
- height: 230px;
- background-image: url(../picture/pic_hp_dhbg@2x.png) ;
- background-repeat:no-repeat;
- background-size:100% 100%;
-
- }
- header > .b .container{
- display: flex;
- justify-content: space-between;
- flex-direction: column;
-
- }
- header .tool {
- line-height: 50px;
- color: #fff;
- }
- header .tool .loca {
- display: inline-block;
- /* margin-left: 25px; */
- }
- header .tool .loca .ca {
- color: #009944;
- }
- header .tool .loca .cb {
- color: #cc0000;
- }
- header .tool .loca img {
- position: relative;
- top: -1px;
- }
- header .tool .srch {
- display: inline-block;
- margin-left: 44%;
- font-size: 14px;
- position: relative;
- }
- header .tool .hujey {
- display: inline-block;
- margin-left: 38%;
- }
- header .tool .srch .tt {
- width: 278px;
- height: 30px;
- border: 1px solid #022D53;
- border-radius: 15px;
- padding-left: 10px;
- background-color: #022D53;
- color: #fff;
- }
- header .tool .srch input::-webkit-input-placeholder {
- color: #fff;
- }
- header .tool .srch .tt::-moz-placeholder {
- color: #fff;
- }
- header .tool .srch .tt:-moz-placeholder {
- color: #fff;
- }
- header .tool .srch .tt:-ms-input-placeholder {
- color: #fff;
- }
- header .tool .srch img {
- width: 18px;
- height: 18px;
- position: absolute;
- right: 20px;
- top: 50%;
- transform: translateY(-50%);
- }
- header .tool .srch .tt::-webkit-input-placeholder {
- color: #fff;
- }
- header .tool .srch .bt {
- display: inline-block;
- width: 28px;
- height: 28px;
- background: url(../images/i-find.png) no-repeat center #b6b6b6;
- border-radius: 50%;
- vertical-align: middle;
- margin: 0 8px;
- }
- header .tool .srch .bt:hover {
- opacity: 0.8;
- }
- header .tool .srch .lk {
- text-decoration: underline !important;
- }
- header .tool .srch .lk:hover {
- color: #e10101;
- }
- header .logo {
- /* padding-top: 22px; */
- margin-top: 50px;
- }
- header .logo img{
- /* padding-top: 22px; */
- width: 769px;
- height: 78px;
- }
- header .menu > ul > li {
- margin-left: 82px;
- }
- header .menu > ul > li:first-child {
- margin-left: 0;
- }
- header .menu .i.on > p a {
- border-bottom-color: #014582;
- color: #014582;
- font-weight: 700;
- }
- header .menu .i:hover > .ex {
- display: block;
- }
- header .menu .i > p a {
- display: block;
- padding: 0 5px;
- line-height: 55px;
- height: 55px;
- border-bottom: 2px solid transparent;
- font-size: 18px;
- }
- header .condese > ul > li{
- margin-left: 67px;
- }
- header .menu .i > .ex {
- position: absolute;
- top: 100%;
- left: 0;
- width: 100%;
- background-color: #C0E1FF;
- -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
- display: none;
- }
- header .menu .i > .ex p {
- /* border-bottom: 1px solid #eee; */
- }
- header .menu .i > .ex p:hover {
- /* border-bottom: 1px solid #eee; */
- background-color: #014582;
- color: #fff !important;
- }
- header .menu .i > .ex p a {
- display: block;
- line-height: 50px;
- text-align: center;
- font-size: 14px;
- color: #014582;
- }
- header .menu .i > .ex p a:hover {
- color: #fff !important;
- }
- @media (max-width: 768px) {
- header {
- position: fixed;
- height: 50px;
- background-color: #fff;
- }
- header > .a {
- display: none;
- }
- header > .b {
- height: 50px;
- }
- header .logo {
- padding-top: 12px;
- margin-top: 0;
- }
- header .logo img {
- height: 26px;
- width: 80%;
- margin-top: 0;
- }
- header .mbtn {
- position: absolute;
- top: 0;
- right: 0;
- width: 50px;
- height: 50px;
- background: url(../picture/微信图片_20211215145934.png) no-repeat center #014582;
- background-size: 40px auto;
- }
- body.on-menu header .mbtn {
- background-image: url(../images/mbtn-hide.png);
- }
- header .fr {
- position: absolute;
- top: 100%;
- left: 0;
- width: 100%;
- border-top: 1px solid #eee;
- background-color: #fff;
- -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
- box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
- display: none;
- }
- body.on-menu header .fr {
- display: block;
- }
- header .menu > ul > li {
- margin-left: 0;
- float: none;
- }
- header .menu .i > p a {
- line-height: 45px;
- height: 45px;
- font-size: 14px;
- text-align: center;
- border-bottom-width: 1px;
- }
- header .menu .i > .ex {
- background-color: #fff;
- z-index: 1;
- }
- header .menu .i > .ex p a {
- line-height: 45px;
- font-size: 13px;
- }
- }
- @media (max-width: 768px) {
- main {
- padding-top: 50px;
- }
- }
- footer > .a {
- /* background: url(../images/foot-bg.jpg) no-repeat 50% 0; */
- background-size: auto 342px;
- padding-top: 30px;
- padding-bottom: 20px;
- text-align: center;
- }
- footer > .b {
- background-color: #28564c;
- }
- footer .link p a {
- font-size: 16px;
- margin: 0 35px;
- }
- footer .info p {
- color: #666;
- font-size: 14px;
- line-height: 24px;
- }
- footer .foot p {
- line-height: 50px;
- color: #fff;
- font-size: 14px;
- }
- footer .foot p a {
- color: #fff;
- }
- footer .foot p a:hover {
- opacity: 0.8;
- }
- @media (max-width: 768px) {
- footer > .a {
- background-size: cover;
- padding-top: 35px;
- padding-bottom: 55px;
- }
- footer .link p a {
- font-size: 12px;
- margin: 0 5px;
- }
- footer .info p {
- font-size: 12px;
- line-height: 20px;
- }
- footer .info p img {
- zoom: 0.8;
- }
- footer .foot p {
- line-height: 20px;
- font-size: 11px;
- text-align: center;
- padding: 10px 0;
- }
- footer .foot p .fr {
- float: none !important;
- display: block;
- }
- }
- .u-fullpart {
- padding: 0 0;
- background: none no-repeat 50% 0;
- background-size: cover;
- overflow: hidden;
- }
- .u-fullpart.bgrp {
- background-repeat: no-repeat;
- background-size: auto;
- }
- .u-fullpart.bg-g {
- background-color: #ececec;
- }
- .u-fullpart.mtht {
- margin-top: -50px;
- }
- @media (max-width: 768px) {
- .u-fullpart.mtht {
- margin-top: 10px;
- }
- }
- .u-banner .i {
- display: block;
- height: 423px;
- background: none no-repeat center;
- background-size: cover;
- }
- .u-banner .carousel-indicators li {
- width: 12px;
- height: 12px;
- background-color: #fff;
- border-radius: 50%;
- margin: 0 6px;
- }
- .u-banner .carousel-indicators li.active {
- background-color: #e10101 !important;
- }
- @media (max-width: 768px) {
- .u-banner .i {
- height: 150px;
- }
- .u-banner .carousel-indicators {
- bottom: 8px;
- }
- .u-banner .carousel-indicators li {
- width: 8px;
- height: 8px;
- margin: 0 4px;
- }
- }
- .u-notice {
- background-color: #eee;
- }
- .u-notice .noti {
- position: relative;
- padding-left: 115px;
- }
- .u-notice .noti > label {
- font-size: 16px;
- line-height: 40px;
- position: absolute;
- top: 0;
- left: 0;
- }
- .u-notice .noti > label::before {
- content: "";
- display: inline-block;
- width: 20px;
- height: 19px;
- background: url(../images/i-noti.png) no-repeat center;
- background-size: 100% 100%;
- vertical-align: middle;
- margin: 0 5px;
- }
- .u-notice .noti > .ct {
- line-height: 40px;
- font-size: 16px;
- }
- .u-notice .noti > .ct a {
- padding: 0 10px;
- }
- .u-notice .scroll {
- overflow: hidden;
- }
- .u-notice .scroll ul {
- white-space: nowrap;
- }
- .u-notice .scroll ul li {
- display: inline-block;
- }
- @media (max-width: 768px) {
- .u-notice .noti {
- padding-left: 90px;
- }
- .u-notice .noti > label {
- font-size: 12px;
- line-height: 35px;
- }
- .u-notice .noti > label::before {
- zoom: 0.8;
- }
- .u-notice .noti > .ct {
- line-height: 35px;
- font-size: 12px;
- }
- .u-notice .noti > .ct a {
- padding: 0 5px;
- }
- }
- .u-hotops {
- padding: 12px;
- position: relative;
- }
- .u-hotops::before {
- content: "";
- display: inline-block;
- width: 59px;
- height: 59px;
- background: url(../images/d-tops.png) no-repeat center;
- background-size: 100% 100%;
- vertical-align: middle;
- position: absolute;
- top: 0;
- left: 0;
- }
- .u-hotops h3 {
- text-align: center;
- font-size: 30px;
- font-weight: bold;
- margin-bottom: 8px;
- }
- .u-hotops h3 a {
- color: #e10101;
- }
- .u-hotops p {
- font-size: 16px;
- line-height: 28px;
- text-indent: 2em;
- }
- .u-hotops p a {
- color: #e10101;
- }
- .u-hotops p a:hover {
- text-decoration: underline !important;
- }
- @media (max-width: 768px) {
- .u-hotops::before {
- zoom: 0.8;
- }
- .u-hotops h3 {
- font-size: 16px;
- }
- .u-hotops p {
- font-size: 12px;
- line-height: 22px;
- }
- }
- .u-lrcthome > .l {
- width: 600px;
- }
- .u-lrcthome > .r {
- width: 600px;
- padding-left: 20px;
- }
- @media (max-width: 768px) {
- .u-lrcthome > .l,
- .u-lrcthome > .r {
- float: none;
- width: 100%;
- padding: 0;
- }
- .u-lrcthome > .l {
- margin-bottom: 15px;
- }
- }
- .u-focus .i > p {
- content: "";
- position: absolute;
- z-index: 1;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: rgba(0, 0, 0, 0.6);
- padding: 0 10px;
- line-height: 34px;
- font-size: 14px;
- color: #fff;
- }
- .u-focus .i img {
- width: 100%;
- }
- .u-focus .carousel-indicators {
- left: auto;
- right: 0;
- margin-right: 10px;
- bottom: 12px;
- }
- .u-focus .carousel-indicators li {
- width: 9px;
- height: 9px;
- background-color: #fff;
- border-radius: 50%;
- margin: 0 2px;
- }
- .u-focus .carousel-indicators li.active {
- background-color: #e10101 !important;
- }
- @media (max-width: 768px) {
- .u-focus .i > p {
- font-size: 12px;
- line-height: 32px;
- }
- .u-focus .carousel-indicators li {
- width: 8px;
- height: 8px;
- }
- }
- .u-partview > .hd {
- border-bottom: 1px solid #e3e3e3;
- }
- .u-partview > .hd p > label {
- display: inline-block;
- border-bottom: 2px solid #014582;
- padding-bottom: 5px;
- font-size: 20px;
- margin-bottom: -1px;
- font-weight: bold;
- color: #014582;
- }
- .u-partview > .hd p a {
- display: inline-block;
- padding-top: 8px;
- }
- @media (max-width: 768px) {
- .u-partview > .hd p > label {
- border-bottom-width: 1px;
- font-size: 16px;
- }
- .u-partview > .hd p a {
- padding-top: 4px;
- font-size: 11px;
- }
- }
- .u-newslist.in p {
- line-height: 40px;
- }
- .u-newslist.in p::before {
- width: 3px;
- height: 3px;
- background: #1a5cbf;
- position: relative;
- top: -1px;
- }
- .u-newslist p {
- line-height: 33px;
- font-size: 16px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .u-newslist p::before {
- content: "";
- display: inline-block;
- width: 8px;
- height: 11px;
- background: url(../images/i_san.png) no-repeat center;
- background-size: 100% 100%;
- vertical-align: middle;
- vertical-align: middle;
- margin-right: 5px;
- position: relative;
- top: -1px;
- border-radius: 50%;
- }
- .u-newslist p small {
- font-size: 14px;
- color: #999999;
- }
- @media (max-width: 768px) {
- .u-newslist.in p {
- line-height: 32px;
- }
- .u-newslist p {
- line-height: 28px;
- font-size: 12px;
- }
- .u-newslist p::before {
- zoom: 0.8;
- }
- .u-newslist p small {
- font-size: 12px;
- }
- }
- .u-homenews > ul {
- margin: -10px;
- }
- .u-homenews > ul > li {
- padding: 10px;
- }
- @media (max-width: 768px) {
- .u-homenews.s3 > ul > li {
- width: 100%;
- }
- }
- .u-fullad img {
- width: 100%;
- }
- .u-prodshow ul {
- margin: -6px;
- }
- .u-prodshow ul li {
- padding: 6px;
- }
- .u-prodshow .i > .ct {
- border: 1px solid #e4e4e4;
- padding: 2px;
- }
- .u-prodshow .i p {
- margin-top: 10px;
- text-align: center;
- font-size: 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- @media (max-width: 768px) {
- .u-prodshow.s5 > ul > li {
- width: 50%;
- }
- .u-prodshow .i p {
- margin-top: 8px;
- font-size: 12px;
- }
- }
- .u-pagepath {
- padding: 10px 0;
- padding-left: 15px;
- }
- .u-pagepath p {
- font-size: 15px;
- }
- .u-pagepath p::before {
- content: "";
- display: inline-block;
- width: 12px;
- height: 12px;
- background: url(../images/i-this.png) no-repeat center;
- background-size: 100% 100%;
- vertical-align: middle;
- margin-right: 5px;
- }
- @media (max-width: 768px) {
- .u-pagepath {
- padding: 8px 0;
- padding-left: 10px;
- }
- .u-pagepath p {
- font-size: 12px;
- }
- .u-pagepath p::before {
- zoom: 0.8;
- }
- }
- .u-lrctmain > .l {
- width: 310px;
- }
- .u-lrctmain > .r {
- width: 870px;
- }
- @media (max-width: 768px) {
- .u-lrctmain > .l,
- .u-lrctmain > .r {
- width: 100%;
- float: none;
- }
- .u-lrctmain > .l {
- margin-bottom: 15px;
- }
- }
- .u-sidenavi {
- min-height: 700px;
- padding: 20px;
- }
- .u-sidenavi > .hd {
- border-bottom: 1px solid #c3c3c3;
- padding-bottom: 10px;
- }
- .u-sidenavi > .hd p {
- color: #1a5cbf;
- font-size: 24px;
- font-weight: bold;
- }
- .u-sidenavi > .ct ul li {
- margin-bottom: 15px;
- }
- .u-sidenavi > .ct ul li:last-child {
- margin-bottom: 0;
- }
- .u-sidenavi > .ct .i {
- display: block;
- background-color: #f0f0f0;
- border-left: 5px solid #dddddd;
- line-height: 40px;
- text-align: center;
- font-size: 18px;
- }
- .u-sidenavi > .ct .i:hover, .u-sidenavi > .ct .i.on {
- background-color: #e8f1f8;
- border-left-color: #3366d1;
- color: #3366d1;
- }
- @media (max-width: 768px) {
- .u-sidenavi {
- min-height: 0;
- padding: 15px;
- }
- .u-sidenavi > .hd {
- padding-bottom: 5px;
- }
- .u-sidenavi > .hd p {
- font-size: 16px;
- }
- .u-sidenavi > .ct ul li {
- margin-bottom: 10px;
- }
- .u-sidenavi > .ct .i {
- border-left-width: 3px;
- line-height: 36px;
- font-size: 14px;
- }
- }
- .u-maincont {
- min-height: 700px;
- padding: 20px;
- }
- @media (max-width: 768px) {
- .u-maincont {
- min-height: 0;
- padding: 15px;
- }
- }
- .u-paging p {
- text-align: center;
- }
- .u-paging p a {
- display: inline-block;
- line-height: 28px;
- padding: 0 6px;
- font-size: 13px;
- border: 1px solid transparent;
- margin: 0 1px;
- }
- .u-paging p a:not(.tt):hover, .u-paging p a.on {
- background-color: #eeeeee;
- border-color: #0078d3;
- }
- .u-paging p a.aw {
- border-color: #dfdfdf;
- }
- @media (max-width: 768px) {
- .u-paging p a:not(.aw) {
- display: none;
- }
- .u-paging p a.tt {
- display: none;
- }
- .u-paging p span {
- display: none;
- }
- }
- .u-article {
- background-color: transparent;
- padding: 35px;
- }
- .u-article > .hd {
- text-align: center;
- border-bottom: 1px dashed #cccccc;
- padding-bottom: 10px;
- }
- .u-article > .hd h3 {
- color: #164fa6;
- font-size: 28px;
- font-weight: bold;
- }
- .u-article > .hd p {
- margin-top: 20px;
- color: #888888;
- font-size: 16px;
- }
- .u-article > .hd h5 {
- margin-top: 10px;
- text-align: right;
- }
- .u-article > .ct {
- margin-top: 20px;
- }
- .u-article > .ct p {
- font-size: 18px;
- line-height: 32px;
- text-indent: 2em;
- }
- .u-article > .ct img {
- display: block;
- margin: 1em auto;
- }
- .u-article > .ft {
- border-top: 1px dashed #cccccc;
- padding-top: 20px;
- }
- .u-article > .ft p.p1 {
- text-align: right;
- padding: 0 8%;
- }
- .u-article > .ft p.p1 .i {
- display: inline-block;
- border: 1px solid #cecece;
- line-height: 24px;
- padding: 0 6px;
- color: #666666;
- font-size: 13px;
- }
- .u-article > .ft p.p2 {
- margin-top: 20px;
- padding: 0 15%;
- }
- .u-article > .ft p.p2 a {
- color: #555555;
- font-size: 14px;
- /*display: inline-block;*/
- width: 48%;
- text-align: center;
- }
- .u-article > .ft p.p2 a:hover {
- text-decoration: underline !important;
- }
- .u-article > .ft p.p2 a em {
- font-style: normal;
- color: #0078d3;
- }
- @media (max-width: 768px) {
- .u-article {
- padding: 15px;
- }
- .u-article > .hd h3 {
- font-size: 18px;
- line-height: 1.4em;
- }
- .u-article > .hd p {
- margin-top: 10px;
- font-size: 12px;
- }
- .u-article > .hd h5 {
- text-align: center;
- }
- .u-article > .ct {
- margin-top: 15px;
- }
- .u-article > .ct p {
- font-size: 12px;
- line-height: 24px;
- }
- .u-article > .ct img {
- max-width: 100%;
- }
- .u-article > .ft {
- padding-top: 15px;
- }
- .u-article > .ft p.p1 {
- padding: 0;
- }
- .u-article > .ft p.p1 .i {
- zoom: 0.8;
- }
- .u-article > .ft p.p2 {
- padding: 0;
- }
- .u-article > .ft p.p2 a {
- display: block;
- width: 100%;
- font-size: 12px;
- margin-bottom: 10px;
- text-align: left;
- }
- .u-article > .ft p.p2 a:last-child {
- margin-bottom: 0;
- }
- }
- .btm{
- width: 42px;
- height: 83px;
- background-color: rgb(255, 255, 255);
- border: 1px solid #eeeeee;
- position: fixed;
- bottom:220px;
- right:2px;
- }
- .upd{
- width: 40px;
- height: 40px;
- display: block;
- position: relative;
- }
- .db{
- width: 15px;
- height: 24px;
- position: absolute;
- top: 50%;
- left: 50%;
- margin-top: -12px;
- margin-left: -7.5px;
- }
- .bjx{
- width: 42px;
- height: 1px;
- background-color: rgb(207, 207, 207);
- margin: 0;
- border: 0;
- }
- .dowe{
- width: 40px;
- height: 40px;
- display: block;
- position: relative;
- }
- .ewm{
- width: 21px;
- height: 21px;
- position: absolute;
- top: 50%;
- left: 50%;
- margin-left: -10.5px;
- margin-top: -10.5px;
- display: inline-block;
- }
- .xs{
- visibility: hidden;
- width: 148px;
- height: 211px;
- border: 1px solid #8f8f8f;
- background-color: rgb(255, 255, 255);
-
- position: absolute;
- z-index: 1;
- top: -160px;
- right: 200%;
- }
- .xs::before{
- content: "";
- border: inherit;
- position: absolute;
- top: 79%;
- left: 100%;
- margin-top: -5px;
- border-width: 10px;
- border-style: solid ;
- background: inherit;
- border-color: transparent transparent transparent rgb(228, 228, 228);
- }
- b{
- display: block;
- color: #333333;
- text-align: center;
- border-radius: 6px;
- padding: 5px 0;
- margin-top: 20px;
- }
- .da{
- width: 125px;
- height: 125px;
- margin: 0 11px;
- }
- .ewm:hover .xs{
- visibility: visible;
- }
- .u-partview.hd p>label {
- display: inline-block;
- padding-bottom: 5px;
- font-size: 20px;
- margin-bottom: -1px;
- font-weight: 400;
- color: #e10101;
- cursor:pointer;
- }
- .hdiu{
- border-bottom: 2px solid #e10101;
- font-weight: bold !important;
- }
- .publicity{
- display: none;
- }
- .home_activ {
- width: 1200px !important;
- margin: auto !important;
- }
- .home_activ li:nth-child(1){
- padding-left: 0 !important;
- }
- .home_activ li:nth-child(3){
- padding-right: 0 !important;
- }
- .a_inmg{
- width: 1200px;
- display: inline-block;
- margin: auto;
- }
- .u_ima{
- text-align: center;
- }
|