| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736 |
- body,
- div,
- span,
- object,
- iframe,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- blockquote,
- a,
- big,
- em,
- font,
- img,
- strong,
- tt,
- b,
- u,
- i,
- center,
- dl,
- dt,
- dd,
- ol,
- ul,
- li,
- fieldset,
- form,
- label,
- table,
- caption,
- tbody,
- tfoot,
- thead,
- tr,
- th,
- td {
- padding: 0;
- margin: 0
- }
- table {
- border-collapse: collapse;
- border-spacing: 0
- }
- fieldset,
- img {
- border: 0
- }
- button,
- input,
- select,
- textarea {
- font-size: 12px
- }
- ol,
- ul,
- li {
- list-style: none
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-size: 100%
- }
- body {
- margin: 0 auto;
- font-size: 12px;
- background: none;
- font-family: "Microsoft YaHei", "Simsun", Arial
- }
- td {
- font-size: 12px;
- line-height: 160%
- }
- a {
- outline: none;
- text-decoration: none
- }
- .wp {
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden
- }
- .hide {
- display: none !important
- }
- .clearfix:before,
- .clearfix:after {
- content: "";
- display: table
- }
- .clearfix:after {
- clear: both
- }
- *.clearfix {
- zoom: 1
- }
- .fl {
- float: left
- }
- .fr {
- float: right
- }
- .scroll::-webkit-scrollbar {
- width: 7px !important;
- display: block !important
- }
- .scroll::-webkit-scrollbar-thumb {
- background-color: #ddd
- }
- .scroll::-webkit-scrollbar-thumb:vertical:hover {
- background-color: #eaeaea
- }
- .scroll::-webkit-scrollbar-thumb:vertical:active {
- background-color: #d0d0d0
- }
- body {
- font-size: 14px
- }
- h1,
- h2 {
- display: none
- }
- .header {
- width: 100%;
- height: 90px;
- box-shadow: 0 5px 10px rgba(0, 0, 0, .18)
- }
- .header .main {
- width: 1180px;
- margin: 0 auto;
- padding: 0 8px;
- box-sizing: border-box
- }
- .header .main .logo {
- width: 90px;
- float: left;
- background: url("../images/jh.png") no-repeat
- }
- .header .main .nav {
- float: right
- }
- .header .main .nav a {
- width: 110px;
- text-align: center;
- font-size: 24px;
- color: #434343;
- line-height: 90px;
- font-weight: bold;
- display: inline-block;
- margin: 0 18px;
- position: relative
- }
- .header .main .nav a::after {
- content: "";
- width: 100%;
- height: 7px;
- background: linear-gradient(to right, #00a3e9 0%, #0ef5f4 50%, #a1ffb3 100%);
- position: absolute;
- bottom: 5px;
- left: 0;
- display: none
- }
- .header .main .nav a.on::after,
- .header .main .nav a:hover::after {
- display: block
- }
- .menu-search {
- width: 1180px;
- margin: 15px auto 0;
- color: #a0a0a0
- }
- .menu-search .menu {
- line-height: 30px;
- float: left
- }
- .menu-search .menu a {
- color: #a0a0a0
- }
- .menu-search .search {
- float: right
- }
- .menu-search .search input {
- width: 280px;
- height: 28px;
- line-height: 28px;
- border: 1px solid #e7e7e7;
- border-radius: 18px;
- outline: none;
- padding: 0 50px 0 30px;
- background: #fff url("../images/search.png") no-repeat 325px 2px;
- float: left
- }
- .menu-search .search .hot-search {
- float: left;
- line-height: 30px;
- margin-left: 10px
- }
- .menu-search .search .hot-search a {
- color: #a0a0a0
- }
- .title {
- line-height: 36px;
- padding: 0 25px 0 13px
- }
- .title span {
- float: left;
- position: relative;
- font-size: 20px;
- font-weight: bold;
- padding-left: 38px
- }
- .title span::before {
- content: "";
- width: 30px;
- height: 36px;
- background: url("../images/hot.png") no-repeat;
- position: absolute;
- top: 0;
- left: 0
- }
- .title .more {
- float: right;
- color: #959595
- }
- .title.ranking-tit {
- line-height: 29px;
- padding: 0 0 0 5px
- }
- .title.ranking-tit span {
- padding-left: 42px
- }
- .title.ranking-tit span::before {
- width: 34px;
- height: 29px;
- background: url("../images/ranking.png") no-repeat
- }
- .title.ranking-tit i {
- float: right;
- color: #959595;
- font-style: normal;
- margin-right: 15px
- }
- .title.special-tit {
- line-height: 33px
- }
- .title.special-tit span {
- padding-left: 42px
- }
- .title.special-tit span::before {
- width: 37px;
- height: 33px;
- background: url("../images/special.png") no-repeat
- }
- .title.friend-tit {
- line-height: 28px;
- padding: 0 0 0 13px
- }
- .title.friend-tit span {
- padding-left: 35px
- }
- .title.friend-tit span::before {
- width: 28px;
- height: 28px;
- background: url("../images/friend-ship.png") no-repeat
- }
- .title.network-tit {
- line-height: 28px;
- padding: 0 0 0 5px
- }
- .title.network-tit span {
- padding-left: 41px
- }
- .title.network-tit span::before {
- width: 34px;
- height: 28px;
- background: url("../images/network.png") no-repeat
- }
- .title.stand-alone-tit {
- line-height: 28px;
- padding: 0 0 0 5px
- }
- .title.stand-alone-tit span {
- padding-left: 41px
- }
- .title.stand-alone-tit span::before {
- width: 35px;
- height: 25px;
- background: url("../images/stand-alone.png") no-repeat
- }
- .title.software-tit {
- line-height: 28px;
- padding: 0 0 0 5px
- }
- .title.software-tit span {
- padding-left: 41px
- }
- .title.software-tit span::before {
- width: 30px;
- height: 30px;
- background: url("../images/software.png") no-repeat
- }
- .hot-box {
- width: 800px
- }
- .hot-box .hot-list {
- background-color: #f8f8f8;
- margin-top: 13px;
- padding: 18px 0 30px
- }
- .hot-box .hot-list li {
- float: left;
- margin: 13px 7px
- }
- .hot-box .hot-list li a {
- display: block;
- text-align: center
- }
- .hot-box .hot-list li a img {
- width: 80px;
- height: 80px;
- display: block;
- border-radius: 18px;
- margin: 0 auto
- }
- .hot-box .hot-list li a span {
- width: 118px;
- font-size: 16px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: block;
- color: #000;
- line-height: 1.6
- }
- .hot-box .hot-list li a span+span {
- width: auto;
- font-size: 14px;
- color: #959595
- }
- .hot-box .hot-list li a:hover span {
- color: #009e96;
- font-weight: bold
- }
- .hot-box .hot-list li a:hover span+span {
- font-weight: normal
- }
- .ranking {
- width: 360px
- }
- .ranking .ranking-list {
- background-color: #f8f8f8;
- margin-top: 13px;
- padding: 5px 12px 10px
- }
- .ranking .ranking-list li {
- margin-top: 10px
- }
- .ranking .ranking-list li a {
- display: block;
- font-size: 16px
- }
- .ranking .ranking-list li a i {
- width: 25px;
- height: 25px;
- text-align: center;
- line-height: 25px;
- color: #fff;
- font-style: normal;
- background-color: #d2d2d2;
- float: left;
- margin-top: 7px
- }
- .ranking .ranking-list li a img {
- width: 40px;
- height: 40px;
- float: left;
- border-radius: 8px;
- margin: 0 10px
- }
- .ranking .ranking-list li a p {
- width: 160px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: #000;
- float: left;
- line-height: 40px
- }
- .ranking .ranking-list li a span {
- float: right;
- color: #959595;
- line-height: 40px
- }
- .ranking .ranking-list li a:hover p {
- color: #009e96;
- text-decoration: underline
- }
- .ranking .ranking-list li:first-child a i,
- .ranking .ranking-list li:nth-child(2) a i,
- .ranking .ranking-list li:nth-child(3) a i {
- background-color: #84ccc9
- }
- .friend-ship {
- width: 1180px;
- margin: 30px auto 0
- }
- .friend-ship .friend-list {
- background-color: #f8f8f8;
- margin-top: 13px;
- padding: 20px 0
- }
- .friend-ship .friend-list a {
- width: 90px;
- font-size: 16px;
- color: #000;
- line-height: 2.2;
- float: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- text-align: center;
- margin: 0 52px
- }
- .special .special-list {
- padding-top: 15px
- }
- .special .special-list li {
- margin-bottom: 25px
- }
- .special .special-list li a {
- display: block;
- position: relative
- }
- .special .special-list li a img {
- width: 100%;
- display: block
- }
- .special .special-list li a p {
- width: 100%;
- text-align: center;
- background: rgba(0, 0, 0, .5);
- color: #84ccc9;
- font-weight: bold;
- position: absolute;
- bottom: 0;
- left: 0
- }
- .special.details-special {
- width: 800px;
- margin-top: 20px
- }
- .special.details-special .special-list {
- margin-right: -10px
- }
- .special.details-special .special-list li {
- float: left;
- margin-right: 10px
- }
- .special.details-special .special-list li a {
- width: 260px
- }
- .special.details-special .special-list li a img {
- height: 130px
- }
- .special.details-special .special-list li a p {
- font-size: 12px
- }
- .game {
- width: 280px;
- background-color: #f8f8f8;
- padding: 15px 40px;
- margin-bottom: 20px
- }
- .game .game-name {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 20px;
- font-weight: bold;
- display: block;
- text-align: center
- }
- .game>img {
- width: 119px;
- height: 119px;
- display: block;
- margin: 15px auto;
- border-radius: 18px
- }
- .game>i {
- width: 182px;
- height: 21px;
- background: url("../images/security.png") no-repeat;
- display: block;
- margin: 0 auto
- }
- .game>a {
- width: 180px;
- padding-left: 45px;
- height: 50px;
- text-align: center;
- line-height: 50px;
- color: #fff;
- font-size: 18px;
- position: relative;
- display: block;
- margin: 10px auto 0;
- border-radius: 8px
- }
- .game>a.android {
- background: linear-gradient(to right, #03a3f7 0%, #28ee9f 100%)
- }
- .game>a.android::before {
- content: "";
- position: absolute;
- top: 8px;
- left: 50px;
- width: 30px;
- height: 35px;
- background: url("../images/android.png") no-repeat
- }
- .game>a.ios {
- background: linear-gradient(to right, #000000 0%, #404040 100%)
- }
- .game>a.ios::before {
- content: "";
- position: absolute;
- top: 8px;
- left: 50px;
- width: 28px;
- height: 34px;
- background: url("../images/ios.png") no-repeat
- }
- .game>a.pc {
- background: linear-gradient(to right, #fc6a6f 0%, #ff9050 100%)
- }
- .game>a.pc::before {
- content: "";
- position: absolute;
- top: 10px;
- left: 50px;
- width: 32px;
- height: 30px;
- background: url("../images/pc.png") no-repeat
- }
- .game .code {
- width: 180px;
- margin: 25px auto 0;
- text-align: center
- }
- .game .code>img {
- width: 119px;
- height: 119px;
- display: inline-block
- }
- .game .code>span {
- display: block;
- line-height: 3
- }
- .game .code>p {
- width: 121px;
- text-align: left;
- color: #535353;
- margin: 0 auto;
- line-height: 1.8
- }
- .game .code>p a {
- color: #00a0e9
- }
- .game .label {
- color: #535353;
- font-size: 12px;
- line-height: 1.8;
- margin: 8px 0
- }
- .game .label a {
- color: #00a0e9;
- text-decoration: underline
- }
- .game .share {
- margin-left: 60px
- }
- .footer {
- background-color: #7d7d7d;
- padding: 38px 0;
- text-align: center;
- color: #fff;
- margin-top: 50px
- }
- .footer p {
- line-height: 2
- }
- .footer p a {
- color: #fff
- }
- .page {
- text-align: center;
- color: #959595
- }
- .page a {
- font-size: 16px;
- color: #959595;
- line-height: 30px;
- padding: 0 9px;
- display: inline-block;
- margin: 0 10px;
- cursor: pointer
- }
- .page a.last-child,
- .page a:first-child {
- background-color: #eaeaea
- }
- .page a.on,
- .page a:hover {
- background-color: #84ccc9;
- color: #fff
- }
- .share {
- margin-top: 8px
- }
- .share span {
- float: left;
- line-height: 30px;
- margin: 6px 0
- }
- .share .bdsharebuttonbox {
- float: left
- }
- .share .bdshare-button-style0-16 a {
- width: 30px;
- height: 30px;
- padding: 0
- }
- .share .bdshare-button-style0-16 a.bds_weixin {
- background: url("../images/wx.png") no-repeat !important
- }
- .share .bdshare-button-style0-16 a.bds_qzone {
- background: url("../images/qzone.png") no-repeat !important
- }
- .share .bdshare-button-style0-16 a.bds_tsina {
- background: url("../images/wb.png") no-repeat !important
- }
- .second-nav {
- width: 1180px;
- margin: 10px auto 0
- }
- .second-nav a {
- width: 280px;
- height: 110px;
- float: left;
- margin: 0 7px
- }
- .second-nav a.app {
- background: url("../images/nav.png") no-repeat
- }
- .second-nav a.phone {
- background: url("../images/nav.png") no-repeat -300px 0
- }
- .second-nav a.software {
- background: url("../images/nav.png") no-repeat -599px 0
- }
- .second-nav a.special {
- background: url("../images/nav.png") no-repeat -899px 0
- }
- .second-nav a.on.app,
- .second-nav a:hover.app {
- background-position: 0 -113px
- }
- .second-nav a.on.phone,
- .second-nav a:hover.phone {
- background-position: -300px -113px
- }
- .second-nav a.on.software,
- .second-nav a:hover.software {
- background-position: -599px -113px
- }
- .second-nav a.on.special,
- .second-nav a:hover.special {
- background-position: -899px -113px
- }
- .swiper-container {
- margin: 0 auto;
- position: relative;
- overflow: hidden;
- list-style: none;
- padding: 0;
- z-index: 1
- }
- .swiper-container-no-flexbox .swiper-slide {
- float: left
- }
- .swiper-container-vertical>.swiper-wrapper {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column
- }
- .swiper-wrapper {
- position: relative;
- width: 100%;
- height: 100%;
- z-index: 1;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-transition-property: -webkit-transform;
- transition-property: -webkit-transform;
- -o-transition-property: transform;
- transition-property: transform;
- transition-property: transform, -webkit-transform;
- -webkit-box-sizing: content-box;
- box-sizing: content-box
- }
- .swiper-container-android .swiper-slide,
- .swiper-wrapper {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0)
- }
- .swiper-container-multirow>.swiper-wrapper {
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap
- }
- .swiper-container-free-mode>.swiper-wrapper {
- -webkit-transition-timing-function: ease-out;
- -o-transition-timing-function: ease-out;
- transition-timing-function: ease-out;
- margin: 0 auto
- }
- .swiper-slide {
- -webkit-flex-shrink: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- width: 100%;
- height: 100%;
- position: relative;
- -webkit-transition-property: -webkit-transform;
- transition-property: -webkit-transform;
- -o-transition-property: transform;
- transition-property: transform;
- transition-property: transform, -webkit-transform
- }
- .swiper-invisible-blank-slide {
- visibility: hidden
- }
- .swiper-container-autoheight,
- .swiper-container-autoheight .swiper-slide {
- height: auto
- }
- .swiper-container-autoheight .swiper-wrapper {
- -webkit-box-align: start;
- -webkit-align-items: flex-start;
- -ms-flex-align: start;
- align-items: flex-start;
- -webkit-transition-property: height, -webkit-transform;
- transition-property: height, -webkit-transform;
- -o-transition-property: transform, height;
- transition-property: transform, height;
- transition-property: transform, height, -webkit-transform
- }
- .swiper-container-3d {
- -webkit-perspective: 1200px;
- perspective: 1200px
- }
- .swiper-container-3d .swiper-cube-shadow,
- .swiper-container-3d .swiper-slide,
- .swiper-container-3d .swiper-slide-shadow-bottom,
- .swiper-container-3d .swiper-slide-shadow-left,
- .swiper-container-3d .swiper-slide-shadow-right,
- .swiper-container-3d .swiper-slide-shadow-top,
- .swiper-container-3d .swiper-wrapper {
- -webkit-transform-style: preserve-3d;
- transform-style: preserve-3d
- }
- .swiper-container-3d .swiper-slide-shadow-bottom,
- .swiper-container-3d .swiper-slide-shadow-left,
- .swiper-container-3d .swiper-slide-shadow-right,
- .swiper-container-3d .swiper-slide-shadow-top {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- pointer-events: none;
- z-index: 10
- }
- .swiper-container-3d .swiper-slide-shadow-left {
- background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
- background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
- background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
- background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
- }
- .swiper-container-3d .swiper-slide-shadow-right {
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
- }
- .swiper-container-3d .swiper-slide-shadow-top {
- background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
- background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
- background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
- background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
- }
- .swiper-container-3d .swiper-slide-shadow-bottom {
- background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
- background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
- background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
- }
- .swiper-container-wp8-horizontal,
- .swiper-container-wp8-horizontal>.swiper-wrapper {
- -ms-touch-action: pan-y;
- touch-action: pan-y
- }
- .swiper-container-wp8-vertical,
- .swiper-container-wp8-vertical>.swiper-wrapper {
- -ms-touch-action: pan-x;
- touch-action: pan-x
- }
- .swiper-button-next,
- .swiper-button-prev {
- position: absolute;
- top: 50%;
- width: 27px;
- height: 44px;
- margin-top: -22px;
- z-index: 10;
- cursor: pointer;
- background-size: 27px 44px;
- background-position: center;
- background-repeat: no-repeat
- }
- .swiper-button-next.swiper-button-disabled,
- .swiper-button-prev.swiper-button-disabled {
- opacity: .35;
- cursor: auto;
- pointer-events: none
- }
- .swiper-button-prev,
- .swiper-container-rtl .swiper-button-next {
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
- left: 10px;
- right: auto
- }
- .swiper-button-next,
- .swiper-container-rtl .swiper-button-prev {
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
- right: 10px;
- left: auto
- }
- .swiper-button-prev.swiper-button-white,
- .swiper-container-rtl .swiper-button-next.swiper-button-white {
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
- }
- .swiper-button-next.swiper-button-white,
- .swiper-container-rtl .swiper-button-prev.swiper-button-white {
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
- }
- .swiper-button-prev.swiper-button-black,
- .swiper-container-rtl .swiper-button-next.swiper-button-black {
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
- }
- .swiper-button-next.swiper-button-black,
- .swiper-container-rtl .swiper-button-prev.swiper-button-black {
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
- }
- .swiper-button-lock {
- display: none
- }
- .swiper-pagination {
- position: absolute;
- text-align: center;
- -webkit-transition: .3s opacity;
- -o-transition: .3s opacity;
- transition: .3s opacity;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- z-index: 10
- }
- .swiper-pagination.swiper-pagination-hidden {
- opacity: 0
- }
- .swiper-container-horizontal>.swiper-pagination-bullets,
- .swiper-pagination-custom,
- .swiper-pagination-fraction {
- bottom: 10px;
- left: 0;
- width: 100%
- }
- .swiper-pagination-bullets-dynamic {
- overflow: hidden;
- font-size: 0
- }
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
- -webkit-transform: scale(0.33);
- -ms-transform: scale(0.33);
- transform: scale(0.33);
- position: relative
- }
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
- -webkit-transform: scale(1);
- -ms-transform: scale(1);
- transform: scale(1)
- }
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
- -webkit-transform: scale(1);
- -ms-transform: scale(1);
- transform: scale(1)
- }
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
- -webkit-transform: scale(0.66);
- -ms-transform: scale(0.66);
- transform: scale(0.66)
- }
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
- -webkit-transform: scale(0.33);
- -ms-transform: scale(0.33);
- transform: scale(0.33)
- }
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
- -webkit-transform: scale(0.66);
- -ms-transform: scale(0.66);
- transform: scale(0.66)
- }
- .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
- -webkit-transform: scale(0.33);
- -ms-transform: scale(0.33);
- transform: scale(0.33)
- }
- .swiper-pagination-bullet {
- width: 8px;
- height: 8px;
- display: inline-block;
- border-radius: 100%;
- background: #000;
- opacity: .2
- }
- button.swiper-pagination-bullet {
- border: none;
- margin: 0;
- padding: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none
- }
- .swiper-pagination-clickable .swiper-pagination-bullet {
- cursor: pointer
- }
- .swiper-pagination-bullet-active {
- opacity: 1;
- background: #007aff
- }
- .swiper-container-vertical>.swiper-pagination-bullets {
- right: 10px;
- top: 50%;
- -webkit-transform: translate3d(0, -50%, 0);
- transform: translate3d(0, -50%, 0)
- }
- .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
- margin: 6px 0;
- display: block
- }
- .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
- top: 50%;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
- width: 8px
- }
- .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
- display: inline-block;
- -webkit-transition: .2s top, .2s -webkit-transform;
- transition: .2s top, .2s -webkit-transform;
- -o-transition: .2s transform, .2s top;
- transition: .2s transform, .2s top;
- transition: .2s transform, .2s top, .2s -webkit-transform
- }
- .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
- margin: 0 4px
- }
- .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
- left: 50%;
- -webkit-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- transform: translateX(-50%);
- white-space: nowrap
- }
- .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
- -webkit-transition: .2s left, .2s -webkit-transform;
- transition: .2s left, .2s -webkit-transform;
- -o-transition: .2s transform, .2s left;
- transition: .2s transform, .2s left;
- transition: .2s transform, .2s left, .2s -webkit-transform
- }
- .swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
- -webkit-transition: .2s right, .2s -webkit-transform;
- transition: .2s right, .2s -webkit-transform;
- -o-transition: .2s transform, .2s right;
- transition: .2s transform, .2s right;
- transition: .2s transform, .2s right, .2s -webkit-transform
- }
- .swiper-pagination-progressbar {
- background: rgba(0, 0, 0, .25);
- position: absolute
- }
- .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
- background: #007aff;
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- -webkit-transform: scale(0);
- -ms-transform: scale(0);
- transform: scale(0);
- -webkit-transform-origin: left top;
- -ms-transform-origin: left top;
- transform-origin: left top
- }
- .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
- -webkit-transform-origin: right top;
- -ms-transform-origin: right top;
- transform-origin: right top
- }
- .swiper-container-horizontal>.swiper-pagination-progressbar,
- .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
- width: 100%;
- height: 4px;
- left: 0;
- top: 0
- }
- .swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
- .swiper-container-vertical>.swiper-pagination-progressbar {
- width: 4px;
- height: 100%;
- left: 0;
- top: 0
- }
- .swiper-pagination-white .swiper-pagination-bullet-active {
- background: #fff
- }
- .swiper-pagination-progressbar.swiper-pagination-white {
- background: rgba(255, 255, 255, .25)
- }
- .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
- background: #fff
- }
- .swiper-pagination-black .swiper-pagination-bullet-active {
- background: #000
- }
- .swiper-pagination-progressbar.swiper-pagination-black {
- background: rgba(0, 0, 0, .25)
- }
- .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
- background: #000
- }
- .swiper-pagination-lock {
- display: none
- }
- .swiper-scrollbar {
- border-radius: 10px;
- position: relative;
- -ms-touch-action: none;
- background: rgba(0, 0, 0, .1)
- }
- .swiper-container-horizontal>.swiper-scrollbar {
- position: absolute;
- left: 1%;
- bottom: 3px;
- z-index: 50;
- height: 5px;
- width: 98%
- }
- .swiper-container-vertical>.swiper-scrollbar {
- position: absolute;
- right: 3px;
- top: 1%;
- z-index: 50;
- width: 5px;
- height: 98%
- }
- .swiper-scrollbar-drag {
- height: 100%;
- width: 100%;
- position: relative;
- background: rgba(0, 0, 0, .5);
- border-radius: 10px;
- left: 0;
- top: 0
- }
- .swiper-scrollbar-cursor-drag {
- cursor: move
- }
- .swiper-scrollbar-lock {
- display: none
- }
- .swiper-zoom-container {
- width: 100%;
- height: 100%;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- text-align: center
- }
- .swiper-zoom-container>canvas,
- .swiper-zoom-container>img,
- .swiper-zoom-container>svg {
- max-width: 100%;
- max-height: 100%;
- -o-object-fit: contain;
- object-fit: contain
- }
- .swiper-slide-zoomed {
- cursor: move
- }
- .swiper-lazy-preloader {
- width: 42px;
- height: 42px;
- position: absolute;
- left: 50%;
- top: 50%;
- margin-left: -21px;
- margin-top: -21px;
- z-index: 10;
- -webkit-transform-origin: 50%;
- -ms-transform-origin: 50%;
- transform-origin: 50%;
- -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
- animation: swiper-preloader-spin 1s steps(12, end) infinite
- }
- .swiper-lazy-preloader:after {
- display: block;
- content: "";
- width: 100%;
- height: 100%;
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
- background-position: 50%;
- background-size: 100%;
- background-repeat: no-repeat
- }
- .swiper-lazy-preloader-white:after {
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
- }
- @-webkit-keyframes swiper-preloader-spin {
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg)
- }
- }
- @keyframes swiper-preloader-spin {
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg)
- }
- }
- .swiper-container .swiper-notification {
- position: absolute;
- left: 0;
- top: 0;
- pointer-events: none;
- opacity: 0;
- z-index: -1000
- }
- .swiper-container-fade.swiper-container-free-mode .swiper-slide {
- -webkit-transition-timing-function: ease-out;
- -o-transition-timing-function: ease-out;
- transition-timing-function: ease-out
- }
- .swiper-container-fade .swiper-slide {
- pointer-events: none;
- -webkit-transition-property: opacity;
- -o-transition-property: opacity;
- transition-property: opacity
- }
- .swiper-container-fade .swiper-slide .swiper-slide {
- pointer-events: none
- }
- .swiper-container-fade .swiper-slide-active,
- .swiper-container-fade .swiper-slide-active .swiper-slide-active {
- pointer-events: auto
- }
- .swiper-container-cube {
- overflow: visible
- }
- .swiper-container-cube .swiper-slide {
- pointer-events: none;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: 1;
- visibility: hidden;
- -webkit-transform-origin: 0 0;
- -ms-transform-origin: 0 0;
- transform-origin: 0 0;
- width: 100%;
- height: 100%
- }
- .swiper-container-cube .swiper-slide .swiper-slide {
- pointer-events: none
- }
- .swiper-container-cube.swiper-container-rtl .swiper-slide {
- -webkit-transform-origin: 100% 0;
- -ms-transform-origin: 100% 0;
- transform-origin: 100% 0
- }
- .swiper-container-cube .swiper-slide-active,
- .swiper-container-cube .swiper-slide-active .swiper-slide-active {
- pointer-events: auto
- }
- .swiper-container-cube .swiper-slide-active,
- .swiper-container-cube .swiper-slide-next,
- .swiper-container-cube .swiper-slide-next+.swiper-slide,
- .swiper-container-cube .swiper-slide-prev {
- pointer-events: auto;
- visibility: visible
- }
- .swiper-container-cube .swiper-slide-shadow-bottom,
- .swiper-container-cube .swiper-slide-shadow-left,
- .swiper-container-cube .swiper-slide-shadow-right,
- .swiper-container-cube .swiper-slide-shadow-top {
- z-index: 0;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden
- }
- .swiper-container-cube .swiper-cube-shadow {
- position: absolute;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- background: #000;
- opacity: .6;
- -webkit-filter: blur(50px);
- filter: blur(50px);
- z-index: 0
- }
- .swiper-container-flip {
- overflow: visible
- }
- .swiper-container-flip .swiper-slide {
- pointer-events: none;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: 1
- }
- .swiper-container-flip .swiper-slide .swiper-slide {
- pointer-events: none
- }
- .swiper-container-flip .swiper-slide-active,
- .swiper-container-flip .swiper-slide-active .swiper-slide-active {
- pointer-events: auto
- }
- .swiper-container-flip .swiper-slide-shadow-bottom,
- .swiper-container-flip .swiper-slide-shadow-left,
- .swiper-container-flip .swiper-slide-shadow-right,
- .swiper-container-flip .swiper-slide-shadow-top {
- z-index: 0;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden
- }
- .swiper-container-coverflow .swiper-wrapper {
- -ms-perspective: 1200px
- }
- .h-index .banner-box {
- width: 1180px;
- margin: 3px auto 0
- }
- .h-index .banner-box .swiper-container {
- width: 800px;
- height: 320px;
- float: left
- }
- .h-index .banner-box .swiper-container .swiper-wrapper {
- width: 100%;
- height: 300px
- }
- .h-index .banner-box .swiper-container .swiper-wrapper .swiper-slide {
- width: 100%;
- height: 100%
- }
- .h-index .banner-box .swiper-container .swiper-wrapper .swiper-slide img {
- width: 100%;
- height: 100%
- }
- .h-index .banner-box .swiper-container .swiper-pagination {
- text-align: left
- }
- .h-index .banner-box .swiper-container .swiper-pagination .swiper-pagination-bullet {
- width: 80px;
- height: 3px;
- border-radius: 0;
- margin: 0 8px 0 0
- }
- .h-index .banner-box .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
- background: linear-gradient(to right, #00a3e9 0%, #0ef5f4 50%, #a1ffb3 100%)
- }
- .h-index .banner-box .news-box {
- width: 360px;
- float: right
- }
- .h-index .banner-box .news-box .top-title {
- width: 100%;
- border-bottom: 1px solid #e5e5e5;
- padding-bottom: 10px;
- margin-top: 10px;
- display: block
- }
- .h-index .banner-box .news-box .top-title p {
- width: 280px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- padding-left: 38px;
- font-weight: bold;
- font-size: 20px;
- color: #ff6d72;
- position: relative;
- line-height: 25px
- }
- .h-index .banner-box .news-box .top-title p::before {
- content: "";
- width: 30px;
- height: 25px;
- background: url("../images/new.png") no-repeat;
- position: absolute;
- top: 0;
- left: 0
- }
- .h-index .banner-box .news-box .top-title p+p {
- width: 320px;
- color: #535353;
- font-size: 16px;
- margin-top: 8px;
- padding-left: 7px
- }
- .h-index .banner-box .news-box .top-title p+p::before {
- width: 0;
- height: 0;
- background: none
- }
- .h-index .banner-box .news-box .news-list {
- padding-top: 10px
- }
- .h-index .banner-box .news-box .news-list li {
- overflow: hidden
- }
- .h-index .banner-box .news-box .news-list li a {
- display: block;
- color: #434343;
- line-height: 35px;
- position: relative;
- padding-left: 10px;
- margin-left: 5px
- }
- .h-index .banner-box .news-box .news-list li a::before {
- content: "";
- width: 3px;
- height: 3px;
- background-color: #434343;
- position: absolute;
- top: 16px;
- left: 0
- }
- .h-index .banner-box .news-box .news-list li a span {
- width: 290px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- float: left
- }
- .h-index .banner-box .news-box .news-list li a span+span {
- width: auto;
- color: #a0a0a0;
- float: right
- }
- .h-index .banner-box .news-box .news-list li a:hover span {
- color: #009e96;
- text-decoration: underline
- }
- .h-index .banner-box .news-box .news-list li a:hover span+span {
- color: #a0a0a0;
- text-decoration: none
- }
- .h-index .main-box {
- width: 1180px;
- margin: 5px auto 0
- }
- .h-index .main-box .left {
- float: left
- }
- .h-index .main-box .left .hot-box+.hot-box {
- margin-top: 35px
- }
- .h-index .main-box .left .hot-box .nav-box {
- margin: 10px 0 5px;
- border-bottom: 1px solid #f3f3f3
- }
- .h-index .main-box .left .hot-box .nav-box .nav {
- float: left
- }
- .h-index .main-box .left .hot-box .nav-box .nav>a {
- width: 80px;
- color: #000;
- font-size: 16px;
- position: relative;
- float: left;
- text-align: center;
- padding-bottom: 10px;
- margin: 0 38px
- }
- .h-index .main-box .left .hot-box .nav-box .nav>a::before {
- content: "";
- width: 100%;
- height: 3px;
- background: linear-gradient(to right, #00a3e9 0%, #0ef5f4 50%, #a1ffb3 100%);
- position: absolute;
- bottom: 0;
- left: 0;
- display: none
- }
- .h-index .main-box .left .hot-box .nav-box .nav>a.on,
- .h-index .main-box .left .hot-box .nav-box .nav>a:hover {
- font-weight: bold
- }
- .h-index .main-box .left .hot-box .nav-box .nav>a.on::before,
- .h-index .main-box .left .hot-box .nav-box .nav>a:hover::before {
- display: block
- }
- .h-index .main-box .left .hot-box .nav-box .more {
- float: right;
- color: #959595;
- margin-right: 25px
- }
- .h-index .main-box .left .hot-box .newest-list {
- background-color: #f8f8f8;
- padding: 9px 0
- }
- .h-index .main-box .left .hot-box .newest-list li {
- float: left;
- margin: 0 30px;
- line-height: 2.7
- }
- .h-index .main-box .left .hot-box .newest-list li a {
- display: block
- }
- .h-index .main-box .left .hot-box .newest-list li a span {
- font-weight: bold;
- color: #84ccc9;
- float: left
- }
- .h-index .main-box .left .hot-box .newest-list li a p {
- width: 260px;
- color: #000;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- float: left;
- margin-left: 5px
- }
- .h-index .main-box .left .hot-box .newest-list li a:hover p {
- color: #009e96;
- text-decoration: underline
- }
- .h-index .main-box .right {
- float: right
- }
- .h-index .main-box .right .special {
- margin-top: 39px
- }
- .h-index .main-box .right .special .special-list li a {
- width: 360px
- }
- .h-index .main-box .right .special .special-list li a img {
- height: 180px
- }
- .h-index .main-box .right .special .special-list li a p {
- height: 25px;
- line-height: 25px;
- font-size: 16px
- }
- .h-news .main-box {
- width: 1180px;
- margin: 10px auto 50px
- }
- .h-news .main-box .left {
- float: left
- }
- .h-news .main-box .left .news-list {
- width: 800px
- }
- .h-news .main-box .left .news-list li {
- height: 150px;
- background-color: #f8f8f8;
- position: relative;
- padding-left: 320px;
- font-size: 12px;
- color: gray;
- margin-bottom: 25px
- }
- .h-news .main-box .left .news-list li .img {
- width: 300px;
- height: 150px;
- position: absolute;
- top: 0;
- left: 0
- }
- .h-news .main-box .left .news-list li .img img {
- width: 100%;
- height: 100%
- }
- .h-news .main-box .left .news-list li .tit {
- width: 460px;
- height: 50px;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 18px;
- color: #1b1b1b;
- font-weight: bold;
- padding-top: 19px
- }
- .h-news .main-box .left .news-list li>p {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin: 22px 0 8px
- }
- .h-news .main-box .left .news-list li .time-type p {
- float: left;
- margin-right: 30px
- }
- .h-news .main-box .left .news-list li .time-type p a {
- color: #02a8e9
- }
- .h-news .main-box .left .content {
- width: 800px
- }
- .h-news .main-box .left .content .con-title {
- position: relative;
- padding-left: 25px
- }
- .h-news .main-box .left .content .con-title::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 13px;
- height: 50px;
- background: linear-gradient(to right, #10def1 0%, #03adeb 100%)
- }
- .h-news .main-box .left .content .con-title .tit {
- float: left
- }
- .h-news .main-box .left .content .con-title .tit p {
- width: 550px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: #1b1b1b;
- font-weight: bold;
- font-size: 18px;
- padding-top: 3px
- }
- .h-news .main-box .left .content .con-title .tit p+p {
- color: gray;
- font-size: 12px;
- font-weight: normal;
- padding-top: 5px
- }
- .h-news .main-box .left .content .con-title .share {
- float: right
- }
- .h-news .main-box .left .content .text {
- background-color: #f8f8f8;
- padding: 40px;
- color: #000;
- font-size: 16px;
- margin-top: 20px
- }
- .h-news .main-box .left .content .text p {
- line-height: 1.6
- }
- .h-news .main-box .left .content .text img {
- max-width: 100%
- }
- .h-news .main-box .left .info-box {
- position: relative;
- margin: 18px 0
- }
- .h-news .main-box .left .info-box .more {
- color: #959595;
- position: absolute;
- top: 0;
- right: 10px
- }
- .h-news .main-box .left .info-box .info-list {
- background-color: #f8f8f8;
- padding: 10px 25px;
- margin-top: 10px
- }
- .h-news .main-box .left .info-box .info-list li a {
- display: block;
- line-height: 2.4
- }
- .h-news .main-box .left .info-box .info-list li a span {
- float: left;
- color: #84ccc9
- }
- .h-news .main-box .left .info-box .info-list li a span:nth-child(2) {
- width: 592px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin: 0 20px 0 8px;
- color: #000
- }
- .h-news .main-box .left .info-box .info-list li a span:last-child {
- color: #a0a0a0
- }
- .h-news .main-box .left .info-box .info-list li a:hover span:nth-child(2) {
- color: #009e96;
- text-decoration: underline
- }
- .h-news .main-box .right {
- float: right
- }
- .h-news .main-box .right .info-box {
- width: 360px
- }
- .h-news .main-box .right .info-box .info-list {
- background-color: #f8f8f8;
- padding: 20px 25px;
- margin: 5px 0 20px
- }
- .h-news .main-box .right .info-box .info-list li a {
- width: 292px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: block;
- position: relative;
- padding-left: 18px;
- color: #000;
- line-height: 2.4
- }
- .h-news .main-box .right .info-box .info-list li a::before {
- content: "";
- position: absolute;
- top: 15px;
- left: 0;
- width: 3px;
- height: 3px;
- background-color: #000
- }
- .h-news .main-box .right .info-box .info-list li a:hover {
- color: #009e96
- }
- .info-box .nav {
- position: relative;
- padding-left: 42px;
- border-bottom: 1px solid #f3f3f3;
- padding-bottom: 13px
- }
- .info-box .nav::before {
- content: "";
- position: absolute;
- top: 0;
- left: 2px;
- width: 13px;
- height: 30px;
- background: linear-gradient(to right, #10def1 0%, #03adeb 100%)
- }
- .info-box .nav a {
- width: 80px;
- text-align: center;
- color: #000;
- font-size: 16px;
- position: relative;
- float: left;
- margin: 0 20px 0 5px
- }
- .info-box .nav a::before {
- content: "";
- width: 100%;
- height: 3px;
- position: absolute;
- bottom: -14px;
- left: 0;
- background: linear-gradient(to right, #00a3e9 0%, #0ef5f4 50%, #a1ffb3 100%);
- display: none
- }
- .info-box .nav a.on,
- .info-box .nav a:hover {
- font-weight: bold
- }
- .info-box .nav a.on::before,
- .info-box .nav a:hover::before {
- display: block
- }
- .h-center .main-box {
- width: 1180px;
- margin: 25px auto 0
- }
- .h-center .main-box .left {
- float: left
- }
- .h-center .main-box .left .game-type-box {
- width: 360px;
- margin-bottom: 20px
- }
- .h-center .main-box .left .game-type-box .game-type {
- padding: 10px 5px;
- background-color: #f8f8f8;
- margin-top: 13px
- }
- .h-center .main-box .left .game-type-box .game-type a {
- font-size: 16px;
- color: #000;
- line-height: 2;
- margin: 0 3px
- }
- .h-center .main-box .left .content {
- width: 800px;
- margin-bottom: 20px
- }
- .h-center .main-box .left .content .con-title {
- position: relative;
- padding-left: 20px
- }
- .h-center .main-box .left .content .con-title::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 13px;
- height: 28px;
- background: linear-gradient(to right, #10def1 0%, #03adeb 100%)
- }
- .h-center .main-box .left .content .con-title>p {
- color: #1b1b1b;
- font-size: 18px;
- font-weight: bold;
- line-height: 28px
- }
- .h-center .main-box .left .content .con-title>p span {
- color: #84ccc9
- }
- .h-center .main-box .left .content .con-title .btn {
- position: relative;
- float: right;
- margin-right: 40px
- }
- .h-center .main-box .left .content .con-title .btn .swiper-button-next {
- width: 25px;
- height: 25px;
- right: auto;
- left: 0;
- background: url("../images/info-next.png") no-repeat;
- outline: none;
- margin-top: -26px
- }
- .h-center .main-box .left .content .con-title .btn .swiper-button-prev {
- width: 25px;
- height: 25px;
- left: auto;
- right: 15px;
- background: url("../images/info-prev.png") no-repeat;
- outline: none;
- margin-top: -26px
- }
- .h-center .main-box .left .content .con-box {
- background-color: #f8f8f8;
- padding: 20px 30px;
- margin-top: 20px;
- position: relative
- }
- .h-center .main-box .left .content .con-box p {
- font-size: 16px;
- line-height: 1.8;
- margin-bottom: 20px
- }
- .h-center .main-box .left .content .con-box.screenshot .swiper-container {
- width: 630px;
- height: 360px
- }
- .h-center .main-box .left .content .con-box.screenshot .swiper-container .swiper-wrapper .swiper-slide {
- width: 200px;
- height: 360px
- }
- .h-center .main-box .left .content .con-box.screenshot .swiper-container .swiper-wrapper .swiper-slide img {
- width: 100%;
- height: 100%;
- display: block
- }
- .h-center .main-box .left .content .con-box.screenshot .swiper-button-next {
- width: 53px;
- height: 52px;
- right: 30px;
- background: url("../images/pic-next.png") no-repeat;
- outline: none
- }
- .h-center .main-box .left .content .con-box.screenshot .swiper-button-prev {
- width: 53px;
- height: 52px;
- left: 30px;
- background: url("../images/pic-prev.png") no-repeat;
- outline: none
- }
- .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a {
- display: block;
- line-height: 2.2
- }
- .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a span {
- color: #84ccc9;
- float: left
- }
- .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a span:nth-child(2) {
- width: 580px;
- color: #000;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin: 0 20px 0 5px
- }
- .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a span+span {
- color: #a0a0a0
- }
- .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a:hover span:nth-child(2) {
- color: #009e96;
- text-decoration: underline
- }
- .h-center .main-box .right {
- float: right;
- position: relative
- }
- .h-center .main-box .right select {
- border: none;
- background-color: #f8f8f8;
- outline: none;
- position: absolute;
- top: 0;
- right: 0
- }
- .h-center .main-box .right .game-box {
- width: 800px;
- background-color: #f8f8f8;
- margin-top: 30px;
- padding-bottom: 40px
- }
- .h-center .main-box .right .game-box .game-list {
- margin-bottom: 50px
- }
- .h-center .main-box .right .game-box .game-list li {
- width: 215px;
- height: 80px;
- position: relative;
- padding: 15px 15px 15px 110px;
- float: left;
- margin: 30px 30px 0
- }
- .h-center .main-box .right .game-box .game-list li a {
- display: block
- }
- .h-center .main-box .right .game-box .game-list li a img {
- width: 80px;
- height: 80px;
- position: absolute;
- top: 15px;
- left: 15px;
- border-radius: 15px
- }
- .h-center .main-box .right .game-box .game-list li a .name {
- color: #000;
- font-size: 16px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- line-height: 2
- }
- .h-center .main-box .right .game-box .game-list li a .game-info {
- color: #737373;
- font-size: 12px;
- padding-top: 5px;
- line-height: 1.5
- }
- .h-center .main-box .right .game-box .game-list li a>span {
- width: 100px;
- height: 35px;
- text-align: center;
- line-height: 35px;
- color: #009e96;
- background-color: #fff;
- border-radius: 5px;
- margin-top: 8px;
- display: none
- }
- .h-center .main-box .right .game-box .game-list li:hover {
- background-color: #84ccc9
- }
- .h-center .main-box .right .game-box .game-list li:hover .name {
- color: #fff
- }
- .h-center .main-box .right .game-box .game-list li:hover .game-info {
- display: none
- }
- .h-center .main-box .right .game-box .game-list li:hover span {
- display: block
- }
- .h-special .main-box {
- width: 1180px;
- margin: 30px auto 0
- }
- .h-special .main-box .content {
- height: 230px;
- position: relative;
- padding-left: 490px
- }
- .h-special .main-box .content img {
- width: 460px;
- height: 230px;
- position: absolute;
- top: 0;
- left: 0
- }
- .h-special .main-box .content .con-title {
- position: relative;
- padding-left: 20px;
- margin-bottom: 15px
- }
- .h-special .main-box .content .con-title::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 13px;
- height: 30px;
- background: linear-gradient(to right, #10def1 0%, #03adeb 100%)
- }
- .h-special .main-box .content .con-title>p {
- color: #1b1b1b;
- font-size: 18px;
- font-weight: bold;
- line-height: 30px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- padding-right: 30px
- }
- .h-special .main-box .content p {
- font-size: 16px;
- line-height: 1.5
- }
- .h-special .main-box .content .share {
- position: absolute;
- top: 182px;
- right: 0
- }
- .h-special .main-box .game-list {
- background-color: #f8f8f8;
- margin: 20px 0
- }
- .h-special .main-box .game-list li {
- height: 80px;
- float: left;
- position: relative;
- padding-left: 90px;
- margin: 20px 50px
- }
- .h-special .main-box .game-list li img {
- width: 80px;
- height: 80px;
- position: absolute;
- top: 0;
- left: 0;
- border-radius: 10px
- }
- .h-special .main-box .game-list li .name {
- width: 380px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 16px;
- font-weight: bold;
- color: #000;
- line-height: 2
- }
- .h-special .main-box .game-list li .text {
- width: 400px;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- color: #737373;
- line-height: 1.4;
- padding-top: 5px
- }
- .h-special .main-box .special .special-list {
- margin-right: -50px
- }
- .h-special .main-box .special .special-list li {
- float: left;
- width: 360px;
- height: 180px;
- margin-right: 50px;
- margin-bottom: 38px
- }
- .h-special .main-box .special .special-list li a img {
- width: 100%;
- height: 100%
- }
- .h-special .main-box .page {
- margin-top: 10px;
- margin-bottom: 50px
- }
- .h-result .main-box {
- width: 1180px;
- margin: 30px auto 0
- }
- .h-result .main-box .noFind {
- width: 540px;
- height: 166px;
- margin: 50px auto;
- position: relative
- }
- .h-result .main-box .noFind .pic {
- float: left
- }
- .h-result .main-box .noFind .txt {
- font-size: 34px;
- color: #578ec6;
- float: right;
- display: inline;
- margin: 10px 80px 0 0;
- font-weight: normal
- }
- .h-result .main-box .noFind .error {
- width: 55px;
- height: 25px;
- background-color: #d8d8d8;
- float: right;
- display: inline;
- margin: 10px 250px 0 0;
- font-size: 22px;
- color: #fff;
- text-align: center;
- border-radius: 5px;
- line-height: 20px;
- padding-left: 5px
- }
- .h-result .main-box .noFind .error .error_Num {
- margin: -17px 0 0 70px;
- display: block;
- color: #d1d1d1
- }
- .h-result .main-box .noFind .tips {
- position: absolute;
- bottom: 30px;
- right: 130px
- }
- .h-result .main-box .noFind .tips span {
- color: #e80000
- }
- .h-result .main-box .hot-box {
- width: 1180px
- }
- .h-result .main-box .hot-box .hot-list li {
- margin: 13px 14px
- }
- .h-result .main-box .left {
- float: left
- }
- .h-result .main-box .left .game-list {
- width: 800px
- }
- .h-result .main-box .left .game-list li {
- width: 215px;
- height: 80px;
- position: relative;
- padding: 15px 15px 15px 110px;
- float: left;
- margin: 30px 60px 0 0
- }
- .h-result .main-box .left .game-list li img {
- width: 80px;
- height: 80px;
- position: absolute;
- top: 15px;
- left: 0;
- border-radius: 15px
- }
- .h-result .main-box .left .game-list li .name {
- font-size: 16px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- line-height: 2
- }
- .h-result .main-box .left .game-list li .game-info {
- color: #737373;
- font-size: 12px;
- padding-top: 5px;
- line-height: 1.5
- }
- .h-result .main-box .left .news-list {
- width: 800px
- }
- .h-result .main-box .left .news-list li {
- height: 150px;
- background-color: #f8f8f8;
- position: relative;
- padding-left: 320px;
- font-size: 12px;
- color: gray;
- margin-bottom: 25px
- }
- .h-result .main-box .left .news-list li .img {
- width: 300px;
- height: 150px;
- position: absolute;
- top: 0;
- left: 0
- }
- .h-result .main-box .left .news-list li .img img {
- width: 100%;
- height: 100%
- }
- .h-result .main-box .left .news-list li .tit {
- width: 460px;
- height: 50px;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 18px;
- color: #1b1b1b;
- font-weight: bold;
- padding-top: 19px
- }
- .h-result .main-box .left .news-list li>p {
- margin: 25px 0 8px
- }
- .h-result .main-box .left .news-list li .time-type p {
- float: left;
- margin-right: 30px
- }
- .h-result .main-box .left .news-list li .time-type p a {
- color: #02a8e9
- }
- .h-result .main-box .right {
- float: right
- }
- .h-about {
- width: 100%;
- background: #fff url("../images/bg.png") no-repeat center top
- }
- .h-about .main {
- width: 1280px;
- margin: 0 auto
- }
- .h-about .main .header {
- height: auto;
- box-shadow: none;
- margin-top: 70px
- }
- .h-about .main .header .logo {
- width: 263px;
- height: 68px;
- float: left;
- margin-left: 20px;
- background: url("../images/jh.png") no-repeat;
- background-size: cover;
- }
- .h-about .main .header .nav {
- color: #fff;
- float: right;
- font-size: 18px;
- font-weight: bold;
- line-height: 108px
- }
- .h-about .main .header .nav a {
- color: #fff
- }
- .h-about .main .text {
- color: #fff;
- margin-top: 150px;
- position: relative
- }
- .h-about .main .text span {
- font-size: 46px
- }
- .h-about .main .text p {
- width: 730px;
- line-height: 35px;
- text-indent: 2em;
- margin: 40px 0 0;
- font-size: 16px
- }
- .h-about .main .text p+p {
- width: 525px
- }
- .h-about .main .text img {
- width: 576px;
- height: 399px;
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -50px 0 0
- }
- .h-about .main .kp {
- margin-top: 380px
- }
- .h-about .main .kp i {
- width: 195px;
- height: 21px;
- background: url("../images/bg-tit.png") no-repeat;
- text-align: center;
- font-size: 28px;
- font-weight: bold;
- color: #434343;
- font-style: normal;
- display: block;
- line-height: 17px;
- margin: 0 auto
- }
- .h-about .main .kp>span {
- display: block;
- text-align: center;
- font-size: 50px;
- font-weight: bold;
- color: #2f74db;
- padding: 15px 0 5px;
- position: relative
- }
- .h-about .main .kp>span::after {
- content: "";
- width: 53px;
- height: 2px;
- background-color: #00acb5;
- position: absolute;
- bottom: 0;
- left: 50%;
- margin: 0 0 0 -26px
- }
- .h-about .main .kp ul {
- text-align: center;
- margin-top: 60px
- }
- .h-about .main .kp ul li {
- display: inline-block
- }
- .h-about .main .kp ul li img {
- width: 400px;
- height: 250px;
- display: block
- }
- .h-about .main .kp ul li span {
- font-size: 30px;
- color: #434343;
- display: block;
- line-height: 3
- }
- .h-about .main .kp ul li+li {
- margin-left: 35px
- }
- .h-about .footer {
- width: 100%;
- height: 198px;
- background: url("../images/footer.png") no-repeat center top;
- padding: 0;
- color: #919395;
- overflow: hidden
- }
- .h-about .footer .main {
- margin-top: 50px
- }
- .h-about .footer .main .footerUl {
- text-align: center
- }
- .h-about .footer .main .footerUl li {
- margin: 0 2px;
- display: inline-block
- }
- .h-about .footer .main .footerUl li a {
- color: #919395
- }
- .h-about .footer .main p a {
- color: #919395
- }
|