| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218 |
- @charset "utf-8";
- a,img,button,input,textarea {
- -webkit-tap-highlight-color: rgba(255,255,255,0)
- }
- html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
- margin: 0;
- padding: 0;
- font-size: 100%;
- border: 0;
- vertical-align: baseline
- }
- body {
- font-size: 16px;
- color: #333;
- font-family: Penrose,"PingFang SC","Hiragino Sans GB",Tahoma,Arial,"Lantinghei SC","Microsoft YaHei","simsun",sans-serif
- }
- h1,h2,h3,h4,h5,h6 {
- font-weight: normal
- }
- a {
- color: #0188fb;
- text-decoration: none;
- -webkit-transition: background-color .15s linear,color .15s linear;
- -moz-transition: background-color .15s linear,color .15s linear;
- -o-transition: background-color .15s linear,color .15s linear;
- -ms-transition: background-color .15s linear,color .15s linear;
- transition: background-color .15s linear,color .15s linear
- }
- a:hover {
- color: #0188fb;
- text-decoration: none
- }
- i {
- font-style: normal
- }
- ul,ol {
- list-style-type: none
- }
- img {
- max-width: 100%;
- height: auto;
- width: auto\9;
- border: 0;
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- -webkit-transition: -webkit-transform .2s ease 0s;
- transition: transform .2s ease 0s
- }
- input,textarea {
- font-size: 16px;
- font-family: "PingFang SC",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Source Han Sans","Noto Sans CJK Sc","Microsoft YaHei","Microsoft Jhenghei",sans-serif;
- outline: 0
- }
- @font-face {
- font-family:'iconfont';
- src:url('../fonts/iconfont.eot');
- src:url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/iconfont.woff2') format('woff2'),
- url('../fonts/iconfont.woff') format('woff'),
- url('../fonts/iconfont.ttf') format('truetype'),
- url('../fonts/iconfont.svg#iconfont') format('svg');font-weight:normal;font-style:normal
- }
- .shadow {
- box-shadow: 0 1px 2px rgba(0,0,0,0.08)
- }
- .hide {
- display: none !important
- }
- .wrap {
- width: 70%;
- margin: 0 auto;
- zoom: 1
- }
- .wrap:after {
- content: "";
- display: block;
- clear: both
- }
- .wrapper {
- background: #f6f8f9;
- position: relative
- }
- .head {
- padding-left: 100px;
- position: relative;
- zoom: 1
- }
- .head:after {
- content: "";
- display: block;
- clear: both
- }
- .header {
- background: #fff;
- box-shadow: 0 1px 4px 0 rgba(238,238,238,0.5);
- position: relative;
- z-index: 99
- }
- .header .name {
- width: 200px;
- height: 70px;
- float: left;
- display: inline;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- position: relative;
- z-index: 1
- }
- .header .name a {
- font-size: 28px;
- color: #333;
- line-height: 70px
- }
- .header .subname {
- float: left;
- display: inline;
- margin: 30px 0 0 10px;
- font-size: 16px;
- color: #333
- }
- .header.fixed {
- border-bottom: 1px solid #eee;
- position: fixed;
- width: 100%;
- z-index: 99
- }
- .lazyline {
- height: 2px;
- background-color: #0188fb;
- position: absolute;
- top: 0;
- top: 2px\0;
- left: 0;
- z-index: 2
- }
- .lazynum {
- padding: 0 10px;
- font-size: 12px;
- color: #fff;
- line-height: 20px;
- border-top-left-radius: 10px;
- border-bottom-left-radius: 10px;
- background: #ccc;
- position: fixed;
- right: 0;
- bottom: 5px
- }
- .logo {
- height: 70px;
- float: left;
- display: inline;
- overflow: hidden;
- position: relative;
- z-index: 99
- }
- .logo a {
- width: 100%;
- height: 70px;
- display: table-cell;
- vertical-align: middle;
- transition: all ease .3s
- }
- .logo a img {
- border-radius: 50%;
- height: 50px;
- vertical-align: middle
- }
- .logo.on:before {
- content: '';
- position: absolute;
- top: 0;
- left: -75%;
- z-index: 2;
- display: block;
- width: 50%;
- height: 100%;
- background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0, rgba(255,255,255,0.5) 100%);
- background: linear-gradient(to right, rgba(255,255,255,0) 0, rgba(255,255,255,0.5) 100%);
- -webkit-transform: skewX(-17deg);
- -moz-transform: skewX(-17deg);
- -o-transform: skewX(-17deg);
- -ms-transform: skewX(-17deg);
- transform: skewX(-17deg)
- }
- .logo:hover:before {
- -webkit-animation: shine 1s;
- -moz-animation: shine 1s;
- animation: shine 1s
- }
- @-webkit-keyframes shine {
- 100% {
- left: 125%
- }
- }
- @keyframes shine {
- 100% {
- left: 125%
- }
- }
- .nav {
- border-bottom: 1px solid #ddd;
- border-image: -webkit-linear-gradient(right, #e2e2e2 20%, #fff 100%) 100 100 100 100;
- border-image: -moz-linear-gradient(right, #e2e2e2 20%, #fff 100%) 100 100 100 100;
- border-image: linear-gradient(right, #e2e2e2 20%, #fff 100%) 100 100 100 100
- }
- .nav dl {
- padding-right: 50px;
- line-height: 35px;
- font-size: 0;
- text-align: right
- }
- .nav dl dd {
- margin: 0 10px;
- font-size: 14px;
- color: #333;
- display: inline-block;
- vertical-align: top
- }
- .nav dl dd a {
- color: #333
- }
- .menu {
- float: left;
- display: inline;
- line-height: 70px
- }
- .menu ul {
- padding-right: 35px;
- zoom: 1
- }
- .menu ul:after {
- content: "";
- display: block;
- clear: both
- }
- .menu ul.nosch {
- padding: 0
- }
- .menu li {
- float: left;
- display: inline;
- margin: 0 30px 0 0;
- position: relative
- }
- .menu li a {
- font-size: 16px;
- color: #333;
- position: relative;
- display: inline-block
- }
- .menu li a:hover {
- color: #0188fb
- }
- .menu li:before {
- content: "";
- width: 0;
- height: 3px;
- background: #0188fb;
- position: absolute;
- left: 50%;
- bottom: 0;
- -webkit-transition: all .2s;
- -moz-transition: all .2s;
- -o-transition: all .2s;
- transition: all .2s
- }
- .menu li:hover:before,.menu li.on:before {
- width: 32px;
- margin-left: -16px
- }
- .menu li:hover a,.menu li.on a {
- color: #0188fb
- }
- .menu li .subnav {
- min-width: 200px;
- padding: 10px 0;
- line-height: 40px;
- border-top: 1px solid #0188fb;
- box-shadow: 0 2px 2px 0 #ddd;
- background: #fff;
- position: absolute;
- top: 70px;
- left: -20px;
- z-index: 99;
- display: none;
- -webkit-animation: fadeInUp .3s 0s ease both;
- -moz-animation: fadeInUp .3s 0s ease both
- }
- .menu li .subnav a {
- padding: 0 20px;
- font-size: 14px;
- border-bottom: 1px solid #f5f5f5;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- display: block
- }
- .menu li .subnav a:after {
- content: "\e6a6";
- font-size: 16px;
- color: #ccc;
- font-family: iconfont;
- font-weight: 600;
- position: absolute;
- top: 0;
- right: 15px;
- vertical-align: top;
- -moz-transition: opacity .5s;
- -o-transition: opacity .5s;
- -webkit-transition: opacity .5s;
- transition: opacity .5s
- }
- .menu li .subnav a:hover:after {
- color: #0188fb
- }
- .menu li .subnav a.on {
- color: #0188fb
- }
- .menu li .subnav a.on:after {
- opacity: 1
- }
- .menu li .subnav a:last-child {
- border: 0
- }
- .menu li .subnav:before {
- content: "";
- width: 0;
- height: 0;
- margin: -21px 0 0 0;
- border: 10px solid transparent;
- border-bottom-color: #0188fb;
- position: absolute;
- top: 0;
- left: 26px;
- z-index: 3
- }
- .menu li .subnav:after {
- content: "";
- width: 0;
- height: 0;
- margin: -20px 0 0 0;
- border: 10px solid transparent;
- border-bottom-color: #fff;
- position: absolute;
- top: 0;
- left: 26px;
- z-index: 3
- }
- .menu li.subcate:hover a {
- color: #0188fb
- }
- .menu li.subcate:hover:before {
- display: none
- }
- .menu li.subcate:hover .subnav {
- display: block
- }
- .menu li.subcate:hover .subnav a:hover {
- color: #0188fb
- }
- .menu li.subcate:hover .subnav a.on {
- color: #0188fb
- }
- .menu li.subcate:hover .subnav a.on:after {
- color: #0188fb
- }
- .menu li.subcate .subnav a {
- color: #333
- }
- .menu.on {
- width: 100%;
- float: left;
- display: inline;
- margin: 0 -20px;
- padding: 10px 20px 0;
- border-top: 1px solid #e4e8eb;
- background: #fff;
- position: absolute;
- top: 50px;
- z-index: 9;
- display: block
- }
- .menu.on li {
- width: 100%;
- float: none;
- line-height: 40px;
- border-bottom: 1px dotted #e4e8eb;
- display: block
- }
- .menu.on li a {
- display: block
- }
- .menuico {
- width: 38px;
- height: 38px;
- float: right;
- border-radius: 2px;
- cursor: pointer;
- position: relative;
- z-index: 10;
- top: 7px;
- display: none;
- -webkit-transition: all .2s ease-in;
- -moz-transition: all .2s ease-in;
- -o-transition: all .2s ease-in;
- transition: all .2s ease-in
- }
- .menuico span {
- width: 21px;
- height: 2px;
- background-color: #0188fb;
- position: absolute;
- top: 50%;
- left: 50%;
- display: block;
- -webkit-transform: translateX(-50%) translateY(-50%);
- -moz-transform: translateX(-50%) translateY(-50%);
- transform: translateX(-50%) translateY(-50%);
- -webkit-transition: all .2s ease-in;
- -moz-transition: all .2s ease-in;
- -o-transition: all .2s ease-in;
- transition: all .2s ease-in
- }
- .menuico span:first-child {
- margin-top: -6px
- }
- .menuico span:last-child {
- margin-top: 6px
- }
- .menuico.on span:first-child {
- width: 20px;
- margin-top: -8px;
- margin-left: -7px;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- transform: rotate(45deg)
- }
- .menuico.on span:nth-child(2) {
- opacity: 0;
- width: 2px;
- left: 20px;
- -moz-transition-delay: 0s;
- -o-transition-delay: 0s;
- -webkit-transition-delay: 0s;
- transition-delay: 0s;
- -webkit-transition: all .1s ease-in;
- -moz-transition: all .1s ease-in;
- -o-transition: all .1s ease-in;
- transition: all .1s ease-in
- }
- .menuico.on span {
- background-color: #333;
- -webkit-transform-origin: 0;
- -moz-transform-origin: 0;
- transform-origin: 0
- }
- .menuico.on span:last-child {
- width: 20px;
- margin-top: 6px;
- margin-left: -7px;
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- transform: rotate(-45deg)
- }
- .fademask.on {
- width: 100%;
- height: 100%;
- background: rgba(0,0,0,0.5);
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1
- }
- .sch {
- display: inline-block
- }
- .schico {
- width: 45px;
- height: 70px;
- line-height: 74px;
- text-align: center;
- cursor: pointer;
- position: absolute;
- top: 0;
- right: 0;
- transition: all ease .3s
- }
- .schico a {
- display: block
- }
- .schico a:after {
- content: "\e6e1";
- font-size: 30px;
- color: #888;
- font-weight: bold;
- font-family: iconfont
- }
- .sch-m {
- line-height: 0;
- position: relative;
- display: none
- }
- .sch-m input {
- width: 100%;
- height: 50px;
- padding: 0 18px;
- font-size: 18px;
- color: #333;
- line-height: 50px;
- border: 0;
- outline: 0;
- border-bottom: 2px solid #0188fb;
- border-radius: 3px;
- box-sizing: border-box;
- background: transparent
- }
- .sch-m input:focus {
- color: #0188fb
- }
- .sch-m button {
- width: 30px;
- height: 30px;
- padding: 0;
- border: 0;
- outline: 0;
- cursor: pointer;
- background: transparent;
- position: absolute;
- bottom: 10px;
- right: 10px
- }
- .sch-m button:after {
- content: "\e6e1";
- font-size: 30px;
- color: #0188fb;
- font-family: iconfont;
- font-weight: 600;
- display: inline-block;
- vertical-align: top
- }
- .schfixed {
- width: 262px;
- padding: 20px;
- border-top: 1px solid #0188fb;
- box-shadow: 0 0 2px 0 #ddd;
- background: #fff;
- position: absolute;
- top: 70px;
- right: 0;
- z-index: 10;
- display: none
- }
- .schfixed:before {
- content: "";
- width: 0;
- height: 0;
- margin: -20px 0 0 0;
- border: 10px solid transparent;
- border-bottom-color: #0188fb;
- position: absolute;
- top: 0;
- right: 14px;
- z-index: 3
- }
- .schfixed:after {
- content: "";
- width: 0;
- height: 0;
- margin: -19px 0 0 0;
- border: 10px solid transparent;
- border-bottom-color: #fff;
- position: absolute;
- top: 0;
- right: 14px;
- z-index: 3
- }
- .schfixed form {
- position: relative;
- zoom: 1
- }
- .schfixed form:after {
- content: "";
- display: block;
- clear: both
- }
- .schfixed input {
- width: 100%;
- height: 38px;
- float: left;
- display: inline;
- padding: 0 38px 0 10px;
- font-size: 14px;
- color: #333;
- line-height: 36px;
- border: 1px solid #e4e8eb;
- outline: 0;
- border-radius: 3px;
- box-sizing: border-box;
- background: #fff
- }
- .schfixed input:focus {
- color: #0188fb;
- background-color: #fff;
- border-color: #aab7c1;
- outline: 0;
- box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
- }
- .schfixed button {
- width: 38px;
- height: 38px;
- padding: 0;
- line-height: 38px;
- border: 0;
- outline: 0;
- cursor: pointer;
- background: #0188fb;
- position: absolute;
- top: 0;
- right: 0
- }
- .schfixed button:after {
- content: "\e6e1";
- font-size: 26px;
- color: #fff;
- font-family: iconfont;
- display: inline-block;
- vertical-align: top
- }
- .schfixed.on {
- display: block
- }
- .schbox {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 11;
- display: none
- }
- .schbox.on {
- display: block
- }
- .schbg {
- background: rgba(0,0,0,0.9);
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1
- }
- .schclose {
- font-size: 40px;
- color: #0188fb;
- font-family: iconfont;
- cursor: pointer;
- position: absolute;
- top: 0;
- right: 40px;
- z-index: 2
- }
- .schform {
- width: 600px;
- position: absolute;
- top: 100px;
- left: 50%;
- z-index: 2;
- transform: translate(-50%, 0)
- }
- .schform form {
- position: relative
- }
- .schform input {
- width: 100%;
- font-size: 22px;
- color: #0188fb;
- line-height: 50px;
- border: 0;
- outline: 0;
- border-bottom: 2px solid #0188fb;
- border-radius: 3px;
- background: transparent
- }
- .schform input:focus {
- color: #495057;
- background-color: #fff;
- border-color: #aab7c1;
- outline: 0;
- box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
- }
- .schform button {
- width: 39px;
- height: 39px;
- border: 0;
- outline: 0;
- cursor: pointer;
- background: transparent;
- position: absolute;
- bottom: 8px;
- right: 0
- }
- .schform button:after {
- content: "\e077";
- font-size: 28px;
- color: #0188fb;
- font-family: iconfont;
- display: inline-block;
- vertical-align: top
- }
- .schads {
- margin-top: 30px
- }
- .schads h3 {
- margin: 10px 0;
- font-size: 15px;
- color: #e4e8eb;
- line-height: 30px
- }
- .schads a {
- margin-bottom: 10px;
- display: block
- }
- .searchnull {
- padding: 20% 0;
- color: #888;
- text-align: center
- }
- .searchnull:before {
- content: "\e869";
- margin-bottom: 10px;
- font-size: 100px;
- color: #e4e8eb;
- font-family: iconfont;
- display: block
- }
- .main {
- margin-bottom: 20px
- }
- .main .mask {
- margin-bottom: 20px
- }
- .main.fixed {
- padding-top: 70px
- }
- .main .block:last-child {
- margin-bottom: 0
- }
- .banner {
- margin-bottom: 30px;
- padding: 0 18px;
- font-size: 40px;
- color: #fff;
- text-align: center;
- background-repeat: no-repeat;
- background-position: 50% 0;
- background-size: cover;
- overflow: hidden;
- position: relative
- }
- .banner:before {
- content: "";
- width: 100%;
- height: 100%;
- background: none;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1
- }
- .banner h2 {
- margin-bottom: 20px;
- text-shadow: 0 1px 5px #999;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 2
- }
- .banner h2:after {
- content: "";
- width: 40px;
- height: 2px;
- margin-left: -20px;
- background: #fff;
- position: absolute;
- left: 50%;
- bottom: -20px
- }
- .display {
- background-size: cover
- }
- .loader {
- width: 50px;
- height: 50px;
- margin: -25px 0 0 -25px;
- border-top: 1px solid rgba(0,0,0,0.08);
- border-right: 1px solid rgba(0,0,0,0.08);
- border-bottom: 1px solid rgba(0,0,0,0.08);
- border-left: 1px solid rgba(0,0,0,0.5);
- border-radius: 50%;
- position: absolute;
- top: 50%;
- left: 50%;
- z-index: 20;
- -webkit-animation: loader 700ms infinite linear;
- animation: loader 700ms infinite linear
- }
- @keyframes loader {
- 0% {
- transform: rotate(0deg)
- }
- 100% {
- transform: rotate(360deg)
- }
- }
- .sitemap {
- margin-bottom: 5px;
- font-size: 14px;
- color: #888;
- line-height: 24px
- }
- .sitemap a {
- font-size: 14px;
- color: #888
- }
- .sitemap a:hover {
- color: #0188fb
- }
- .content {
- width: 70%;
- float: left;
- display: inline
- }
- .content.wide {
- width: 100%
- }
- .block {
- margin-bottom: 20px;
- padding: 30px;
- box-shadow: 0 1px 5px 0 rgba(0,0,0,0.05);
- box-sizing: border-box;
- background: #fff
- }
- .block .post:last-child {
- margin-bottom: 0;
- padding-bottom: 0;
- border: 0
- }
- .block .cmtsitem:last-child {
- padding-bottom: 0;
- border-bottom: 0
- }
- .block#divCommentPost {
- margin-bottom: 0
- }
- .post {
- margin-bottom: 20px;
- padding-bottom: 20px;
- border-bottom: 1px solid #e4e8eb;
- zoom: 1
- }
- .post:after {
- content: "";
- display: block;
- clear: both
- }
- .post h1 {
- margin-bottom: 8px;
- font-size: 26px;
- color: #333;
- font-weight: 700;
- line-height: 36px
- }
- .post h2 {
- margin-bottom: 5px;
- line-height: 36px;
- font-weight: 700
- }
- .post h2 a {
- font-size: 26px;
- color: #333
- }
- .post h2 a:hover {
- color: #0188fb
- }
- .post h2 .istop {
- color: #888;
- vertical-align: top
- }
- .post h2 .istop:before {
- content: "\e67a";
- font-size: 42px;
- color: #0188fb;
- font-family: iconfont;
- font-weight: normal;
- vertical-align: top
- }
- .post .info {
- margin-bottom: 15px;
- font-size: 14px;
- zoom: 1
- }
- .post .info:after {
- content: "";
- display: block;
- clear: both
- }
- .post .info.simple {
- margin: 0
- }
- .post .user,.post .date,.post .cate,.post .view,.post .cmt {
- margin-right: 15px;
- color: #888
- }
- .post .user:before,.post .date:before,.post .cate:before,.post .view:before,.post .cmt:before {
- margin-right: 5px;
- font-size: 18px;
- font-family: iconfont;
- vertical-align: top
- }
- .post .user a,.post .date a,.post .cate a,.post .view a,.post .cmt a {
- color: #888
- }
- .post .user a:hover,.post .date a:hover,.post .cate a:hover,.post .view a:hover,.post .cmt a:hover {
- color: #0188fb
- }
- .post .user:before {
- content: "\e6a9"
- }
- .post .date:before {
- content: "\e69c"
- }
- .post .cate:before {
- content: "\e6e2"
- }
- .post .view:before {
- content: "\e6a7"
- }
- .post .cmt:before {
- content: "\e6a8"
- }
- .post .ctrl {
- float: right;
- display: inline;
- display: inline-block
- }
- .post .ctrl a {
- width: 21px;
- height: 20px;
- margin: 0 0 0 8px;
- text-align: center;
- line-height: 20px;
- border-radius: 2px;
- background: #e4e8eb;
- display: inline-block;
- vertical-align: top
- }
- .post .ctrl a:before {
- content: "A⁺";
- font-size: 16px;
- color: #999;
- font-family: iconfont
- }
- .post .ctrl a:nth-child(2):before {
- content: "A⁻"
- }
- .post .ctrl a:nth-child(3):before {
- content: "A"
- }
- .postimg {
- width: 120px;
- float: left;
- display: inline;
- margin: 0 20px 0 0;
- border-radius: 3px;
- overflow: hidden
- }
- .postimg a {
- width: 100%;
- height: 0;
- padding-bottom: 70%;
- text-align: center;
- overflow: hidden;
- position: relative;
- display: block
- }
- .postimg a img {
- min-width: 100%;
- min-height: 100%;
- position: absolute;
- top: 0;
- left: 0
- }
- .postimg:hover img {
- -moz-transform: scale(1.1);
- -o-transform: scale(1.1);
- transform: scale(1.1)
- }
- .post .intro {
- margin-bottom: 10px;
- color: #888;
- line-height: 28px;
- word-wrap: break-word;
- word-break: break-all;
- text-align: justify;
- text-justify: inter-ideograph
- }
- .post .intro a {
- color: #888
- }
- .post .intro.isimg {
- height: 85px;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- overflow: hidden;
- display: -webkit-box
- }
- .post object,.post embed,.post iframe,.post table {
- max-width: 100%
- }
- .post .readmore {
- padding: 5px 10px 5px 20px;
- color: #888;
- border: 2px solid #e4e8eb;
- border-radius: 20px;
- display: inline-block
- }
- .post .readmore:after {
- content: "\e6a6";
- margin-left: 5px;
- font-family: iconfont
- }
- .post .readmore:hover {
- color: #0188fb;
- border-color: #0188fb
- }
- .post .readmore:hover:after {
- color: #0188fb
- }
- .posttitle {
- padding: 0 0 10px;
- line-height: 30px;
- border-bottom: 1px solid #e4e8eb
- }
- .posttitle h1,.posttitle h2,.posttitle h3,.posttitle h4,.posttitle h5,.posttitle h6 {
- font-size: 22px;
- color: #333
- }
- .post .tags {
- color: #888;
- text-indent: 0
- }
- .post .tags a {
- margin: 0 5px 10px;
- padding: 0 12px;
- font-size: 16px;
- color: #333;
- line-height: 27px;
- border: 1px solid #e4e8eb;
- border-radius: 2px;
- display: inline-block
- }
- .post .tags a:hover {
- color: #0188fb;
- border: 1px solid #0188fb
- }
- .pagebar,.cmtpagebar {
- width: 100%;
- margin: 0 auto;
- padding: 15px 0 10px;
- font-size: 0;
- text-align: center;
- }
- .pagebar .now-page,.cmtpagebar .now-page {
- font-size: 14px;
- color: #fff;
- font-weight: 400;
- padding: 5px 10px;
- margin: 0 5px 5px;
- border: 1px solid #0188fb;
- border-radius: 2px;
- background: #0188fb;
- display: inline-block
- }
- .pagebar a,.cmtpagebar a {
- margin: 2px;
- padding: 5px 10px;
- font-size: 14px;
- color: #777;
- font-weight: 400;
- border: 1px solid #e2e2e2;
- border-radius: 2px;
- background: #fff;
- display: inline-block
- }
- .pagebar a:hover,.cmtpagebar a:hover {
- color: #fff;
- border: 1px solid #0188fb;
- background: #0188fb
- }
- .pagination-loading {
- margin: 0 0 20px;
- text-align: center;
- border-radius: 2px;
- background: #ebebeb
- }
- .pagination-loading a {
- padding: 10px 0;
- border: 1px solid #e4e8eb;
- display: block
- }
- .pagination {
- margin: 0 0 5px 0;
- border-radius: 0;
- }
- .pagination {
- display: -ms-flexbox;
- display: flex;
- padding-left: 0;
- list-style: none;
- border-radius: .25rem;
- }
- .pagination > .active > a,
- .pagination > .active > a:focus,
- .pagination > .active > a:hover,
- .pagination > .active > span,
- .pagination > .active > span:focus,
- .pagination > .active > span:hover {
- background-color: #2d8cf0;
- border-color: #2d8cf0;
- }
- .pagination > .active > a {
- color: #fff;
- }
- .ias_trigger,.ias_loader {
- margin: 0 0 20px;
- font-size: 16px;
- color: #888
- }
- .ias_trigger a,.ias_loader a {
- padding: 10px 0;
- font-size: 16px;
- color: #666;
- text-align: center;
- border: 1px solid #e4e8eb;
- background: #fff;
- display: block
- }
- .ias_trigger a:hover,.ias_loader a:hover {
- color: #888;
- background: #e4e8eb
- }
- .ias_loader {
- line-height: 44px
- }
- .contitle {
- margin-bottom: 30px;
- line-height: 38px;
- border-bottom: 1px solid #e4e8eb;
- background: #fff
- }
- .contitle h1,.contitle h2 {
- margin-bottom: -1px;
- font-size: 16px;
- border-bottom: 1px solid #0188fb;
- display: inline-block;
- vertical-align: top
- }
- .single {
- padding: 20px 0 0;
- line-height: 2;
- border-top: 1px dotted #e4e8eb;
- word-wrap: break-word;
- word-break: break-all;
- overflow: hidden
- }
- .single ul,.single ol {
- margin-bottom: 20px;
- list-style-position: inside
- }
- .single ul p,.single ol p {
- display: inline
- }
- .single p {
- margin-bottom: 1em;
- text-align: justify;
- text-justify: inter-ideograph;
- position: relative
- }
- .single p img.ue-image {
- margin: 0 auto;
- display: block
- }
- .single p img.ue-emoticon {
- vertical-align: middle
- }
- .single p.ue-upload {
- padding: 10px;
- border: 1px dashed #e4e8eb
- }
- .single p.ue-upload img {
- vertical-align: top !important
- }
- .single p.ue-upload a {
- font-size: 14px !important;
- color: #0188fb !important
- }
- .single h1,.single h2,.single h3,.single h4,.single h5,.single h6 {
- margin-bottom: 20px;
- line-height: 1.5;
- border-bottom: 1px solid #e4e8eb;
- position: relative
- }
- .single h1:after,.single h2:after,.single h3:after,.single h4:after,.single h5:after,.single h6:after {
- content: "";
- width: 32px;
- height: 0;
- border-bottom: 2px solid #0188fb;
- position: absolute;
- left: 0;
- bottom: -1px
- }
- .single h1 {
- font-size: 32px
- }
- .single h2 {
- font-size: 28px
- }
- .single h3 {
- font-size: 24px
- }
- .single h4 {
- font-size: 22px
- }
- .single h5 {
- font-size: 18px
- }
- .single h6 {
- font-size: 16px
- }
- .single blockquote {
- margin-bottom: 20px;
- padding: 10px 20px 10px 50px;
- font-size: 14px;
- color: #888;
- line-height: 24px;
- border: 1px dotted #ccc;
- background: #f8f8f8;
- position: relative
- }
- .single blockquote:before {
- content: "“";
- font-size: 70px;
- color: #e4e8eb;
- font-family: arial;
- line-height: 1;
- position: absolute;
- top: 5px;
- left: 14px
- }
- .single blockquote p {
- margin: 0
- }
- .single table {
- margin-bottom: 20px;
- font-size: 14px;
- border-collapse: collapse;
- border-spacing: 0
- }
- .single .th {
- width: 100px;
- background: #f5f5f5
- }
- .single td {
- width: 308px;
- padding: 5px 10px;
- color: #666;
- line-height: 24px;
- word-break: break-all;
- border: 1px solid #e4e8eb
- }
- .single div.prism-show-language>div.prism-show-language-label[data-language] {
- font-size: 14px
- }
- .single pre[class*="language-"] {
- margin-bottom: 20px;
- font-size: 14px
- }
- .single.indent p,.single.indent ol,.single.indent ul {
- text-indent: 2em
- }
- .single.indent blockquote p {
- text-indent: 0
- }
- .videowrap {
- overflow: hidden
- }
- .videobox {
- width: 100%;
- height: 0;
- padding-bottom: 56.25%;
- background: #111;
- display: block
- }
- .videobox object,.videobox video,.videobox embed,.videobox iframe {
- width: 100%;
- height: 100%;
- position: absolute;
- display: block
- }
- .copynotice {
- width: 100%;
- margin-bottom: 20px;
- padding: 10px 15px;
- font-size: 14px;
- color: #888;
- text-indent: 0;
- text-align: justify;
- text-justify: inter-ideograph;
- line-height: 22px;
- border: 1px dotted #ccc;
- box-sizing: border-box;
- background: #f8f8f8;
- display: flex;
- zoom: 1;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-align-items: flex-end;
- align-items: center
- }
- .copynotice:after {
- content: "";
- display: block;
- clear: both
- }
- .copynotice .qr {
- width: 70px;
- height: 70px;
- float: left;
- display: inline;
- margin-right: 15px;
- border: 3px solid #fff;
- background: #fff
- }
- .copynotice b,.copynotice strong {
- margin: 0 5px;
- color: #333
- }
- .copynoticetxt {
- width: 100%;
- vertical-align: middle
- }
- .copynoticetxt p {
- margin: 0
- }
- .copynoticetxt a {
- color: #333
- }
- .sharebox .label {
- font-size: 14px;
- color: #999;
- line-height: 30px
- }
- .sharebox .label,.sharebox .sharebtn {
- display: inline-block
- }
- .pages {
- margin-top: 20px;
- overflow: hidden;
- zoom: 1
- }
- .pages:after {
- content: "";
- display: block;
- clear: both
- }
- .pages a {
- color: #333
- }
- .pages a:hover {
- color: #0188fb
- }
- .pages p {
- height: 30px;
- color: #999;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden
- }
- .pages span {
- color: #888
- }
- a.backlist {
- float: right;
- display: inline;
- margin: 10px 0 0;
- padding: 5px 10px 5px 20px;
- color: #888;
- border: 2px solid #e4e8eb;
- border-radius: 20px;
- display: inline-block
- }
- a.backlist:after {
- content: "\e6a6";
- margin-left: 5px;
- font-family: iconfont
- }
- a.backlist:hover {
- color: #0188fb;
- border-color: #0188fb
- }
- .relate {
- padding: 20px 0;
- border-top: 1px dotted #e4e8eb;
- overflow: hidden;
- zoom: 1
- }
- .relate:after {
- content: "";
- display: block;
- clear: both
- }
- .relatecon .relate:first-child {
- border: 0
- }
- .relatelist {
- margin-top: 5px;
- padding-bottom: 5px;
- font-size: 12px;
- color: #999;
- line-height: 27px;
- border-bottom: 1px dotted #e4e8eb;
- position: relative
- }
- .relatelist a {
- width: 75%;
- margin-right: 20px;
- font-size: 16px;
- color: #333;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- display: inline-block;
- vertical-align: top
- }
- .relatelist a:hover {
- color: #0188fb
- }
- .relatelist .posttime {
- font-size: 14px;
- color: #bbb;
- position: absolute;
- top: 0;
- right: 0
- }
- .relate:last-child {
- padding: 20px 0 0
- }
- .relateinfo h3 {
- margin: 0 0 10px
- }
- .relateinfo h3 a {
- font-size: 18px;
- color: #333;
- font-weight: 700
- }
- .relateinfo h3 a:hover {
- color: #0188fb
- }
- .relateinfo p {
- max-height: 47px;
- color: #888;
- line-height: 26px;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- display: -webkit-box
- }
- .relateinfo p a {
- color: #888
- }
- .relateimg {
- width: 120px;
- float: left;
- display: inline;
- margin-right: 20px
- }
- .relateimg a {
- width: 100%;
- height: 0;
- padding-bottom: 70%;
- overflow: hidden;
- position: relative;
- display: block
- }
- .relateimg a img {
- width: 100%;
- min-height: 100%;
- position: absolute;
- top: 0;
- left: 0
- }
- .relateimg:hover img {
- -moz-transform: scale(1.1);
- -o-transform: scale(1.1);
- transform: scale(1.1)
- }
- .cmtsitem {
- padding: 24px 0;
- border-bottom: 1px dotted #e4e8eb;
- zoom: 1
- }
- .cmtsitem:after {
- content: "";
- display: block;
- clear: both
- }
- .cmtsitem .avatar {
- width: 48px;
- height: 48px;
- float: left;
- display: inline;
- margin-right: 10px;
- overflow: hidden
- }
- .cmtsitem .avatar img {
- width: 48px;
- height: 48px;
- border-radius: 3px
- }
- .cmtsitem .cmtscon .avatar {
- display: none
- }
- .cmtscon {
- margin-left: 65px;
- zoom: 1
- }
- .cmtscon:after {
- content: "";
- display: block;
- clear: both
- }
- .cmtsdate {
- float: right;
- display: inline;
- font-size: 14px;
- color: #bbb
- }
- .cmtsname {
- font-size: 14px;
- color: #333;
- display: inline-block
- }
- .cmtsname a {
- font-size: 14px;
- color: #333
- }
- .cmtsbody {
- margin-top: 10px;
- line-height: 26px;
- word-wrap: break-word;
- word-break: break-all
- }
- .cmtsbody .cmtscon {
- margin: 0;
- padding-left: 20px;
- border-left: 2px solid #e4e8eb
- }
- .cmtsbody .cmtsfoot {
- display: none !important
- }
- .cmtsreply {
- margin-top: 15px;
- padding-left: 20px;
- border-left: 2px solid #e4e8eb
- }
- .cmtsreplyname {
- font-size: 14px;
- color: #888
- }
- .cmtsreplyname a {
- font-size: 14px;
- color: #333
- }
- .cmtsreplycon {
- margin-top: 10px;
- word-wrap: break-word;
- word-break: break-all
- }
- .cmtsreplydate {
- margin-top: 10px;
- font-size: 14px;
- color: #bbb
- }
- .cmtsfoot {
- margin-top: 10px
- }
- .cmtsfoot .reply {
- font-size: 14px;
- color: #888
- }
- .cmtsfoot .reply:before {
- content: "\e6a8";
- margin-right: 3px;
- font-size: 22px;
- color: #888;
- font-family: iconfont;
- vertical-align: top
- }
- .cmtsfoot .reply:hover {
- color: #0188fb
- }
- .cmtsfoot .reply:hover:before {
- color: #0188fb
- }
- .cmts.nocmt {
- padding: 15px 30px
- }
- .cmts.nocmt:before {
- content: attr(data-content);
- width: 100%;
- font-size: 20px;
- color: #888;
- text-align: center;
- display: inline-block
- }
- .reply-frm {
- border-left: 2px solid #e4e8eb;
- padding: 0 0 0 20px;
- margin-top: 15px;
- box-shadow: none
- }
- .reply-frm .cmtimg {
- display: none !important
- }
- .reply-frm .cmtarea {
- padding: 0
- }
- #cancel-reply {
- height: 26px;
- margin-left: 20px;
- padding: 0 10px 0 6px;
- font-size: 14px;
- color: #0188fb;
- line-height: 25px;
- border: 2px solid #0188fb;
- outline: 0;
- box-sizing: content-box;
- border-radius: 20px;
- cursor: pointer;
- background: #fff;
- vertical-align: top;
- display: none
- }
- #cancel-reply:before {
- content: "\e6db";
- margin-right: 3px;
- font-size: 23px;
- color: #0188fb;
- font-family: iconfont;
- vertical-align: sub
- }
- .comment {
- margin-top: 20px;
- zoom: 1
- }
- .comment:after {
- content: "";
- display: block;
- clear: both
- }
- .cmtimg {
- width: 48px;
- float: left;
- text-align: center
- }
- .cmtimg img {
- width: 48px;
- height: 48px;
- border-radius: 3px
- }
- .cmtimg p {
- height: 20px;
- font-size: 14px;
- color: #888;
- overflow: hidden
- }
- .cmtinfo {
- padding-left: 70px;
- font-size: 14px;
- word-break: break-all
- }
- .cmtinfo a {
- color: #333
- }
- .cmtinfo .cmt {
- margin: 15px 0 0 -20px;
- padding-bottom: 0
- }
- .cmtinfo .cmt .cmt {
- margin: 15px 0 0 -20px;
- padding-bottom: 0
- }
- .cmtinfo .cmt .cmt .cmt {
- margin: 15px 0 0 -20px;
- padding-bottom: 0
- }
- .cmtinfo .cmtinfo {
- width: 500px
- }
- .cmtinfo .cmtinfo .cmtinfo {
- width: 430px
- }
- .cmtinfo .cmtinfo .cmtinfo .cmtinfo {
- width: 360px
- }
- .cmttime,.cmttime a {
- font-size: 12px;
- color: #888
- }
- .cmtarea {
- padding-left: 68px
- }
- .cmtarea textarea {
- width: 100%;
- margin: 0 0 10px;
- padding: 5px 15px;
- font-size: 16px;
- color: #333;
- line-height: 28px;
- border: 1px solid #e4e8eb;
- outline: 0;
- border-radius: 3px;
- overflow: hidden;
- vertical-align: top;
- box-sizing: border-box
- }
- .cmtarea textarea:focus {
- color: #0188fb;
- background-color: #fff;
- border-color: #aab7c1;
- outline: 0;
- box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
- }
- .cmtsubmit button {
- height: 36px;
- margin: 0 10px 0 0;
- padding: 0 20px;
- font-size: 16px;
- color: #888;
- line-height: 32px;
- border: 2px solid #e4e8eb;
- outline: 0;
- border-radius: 20px;
- cursor: pointer;
- background: #fff
- }
- .cmtsubmit button:before {
- content: "\e69a";
- margin-right: 3px;
- font-size: 23px;
- color: #888;
- font-family: iconfont;
- vertical-align: top
- }
- .cmtsubmit button:hover {
- color: #0188fb;
- border-color: #0188fb
- }
- .cmtsubmit button:hover:before {
- color: #0188fb
- }
- .cmtsubmit span {
- font-size: 14px;
- color: #888
- }
- .cmtform {
- width: 100%;
- float: left;
- margin: 0 0 20px;
- padding: 0 0 20px;
- border-bottom: 1px dotted #e4e8eb;
- display: none
- }
- .cmtform p {
- width: 49%;
- float: left;
- padding: 5px 0
- }
- .cmtform input {
- width: 180px;
- height: 27px;
- padding: 2px 6px;
- color: #333;
- border: 1px solid #e4e8eb;
- outline: 0;
- border-radius: 3px
- }
- .cmtform input:focus {
- color: #0188fb;
- background-color: #fff;
- border-color: #aab7c1;
- outline: 0;
- box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
- }
- .cmtform input {
- *display: inline
- }
- .cmtform label {
- padding: 0 10px;
- line-height: 27px
- }
- .cmtform #inpVerify {
- width: 100px
- }
- .cmtform img.imgcode {
- width: 68px;
- height: 31px;
- margin-left: 10px;
- border: 1px solid #e4e8eb;
- cursor: pointer;
- vertical-align: top
- }
- .sidebar {
- width: 28%;
- float: right;
- display: inline
- }
- .sidebar.fixed .sidebox.fixed {
- top: 75px
- }
- .sidebox {
- margin-bottom: 20px;
- padding: 30px;
- box-shadow: 0 1px 5px 0 rgba(0,0,0,0.05);
- box-sizing: border-box;
- background: #fff
- }
- .sidebox dt {
- margin-bottom: 10px;
- padding: 0 0 10px;
- font-size: 18px;
- border-bottom: 1px solid #e4e8eb
- }
- .sidebox dd {
- line-height: 30px
- }
- .sidebox dd ul {
- overflow: hidden;
- zoom: 1
- }
- .sidebox dd ul:after {
- content: "";
- display: block;
- clear: both
- }
- .sidebox dd li {
- border-bottom: 1px dotted #e4e8eb;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- line-height: 2.5em;
- }
- .sidebox dd a {
- color: #333
- }
- .sidebox dd a:hover, .sidebox dd .act{
- color: #0188fb
- }
- .sidebox dd .sidelink a {
- color: #fff
- }
- .sidebox dd .sidelink a:hover {
- color: #fff
- }
- .sidebox dd .noimg .sidelink a {
- font-size: 16px;
- color: #333
- }
- .sidebox dd .noimg .sidelink a:hover {
- color: #0188fb
- }
- .sidebox dd .sidecmtcon {
- color: #888
- }
- .sidebox dd .sidecmtcon a {
- color: #888
- }
- .sidebox .tagslist{
- overflow: hidden;
- }
- .sidebox .tagslist a{
- margin: 10px 10px 0 0;
- display: block;
- float: left;
- border: 1px solid #eee;
- padding: 1px 10px;
- border-radius: 5px;
- }
- .sidebox.fixed {
- position: fixed;
- top: 0;
- -webkit-transform: translateZ(0)
- }
- .sidebox.sticky {
- position: absolute
- }
- .sideitem {
- margin-bottom: 10px;
- padding-bottom: 8px;
- line-height: 26px;
- border-bottom: 1px dotted #e4e8eb;
- border-radius: 5px;
- overflow: hidden;
- position: relative;
- zoom: 1
- }
- .sideitem:after {
- content: "";
- display: block;
- clear: both
- }
- .sideitem:last-child {
- margin: 0;
- padding: 0
- }
- .sideitemimg {
- background: #333
- }
- .sideitemimg a {
- width: 100%;
- height: 0;
- padding-bottom: 70%;
- text-align: center;
- overflow: hidden;
- position: relative;
- display: block
- }
- .sideitemimg a img {
- min-width: 100%;
- min-height: 100%;
- opacity: 1;
- position: absolute;
- top: 0;
- left: 0;
- -webkit-transition: opacity .3s ease-in-out;
- -moz-transition: opacity .3s ease-in-out;
- -o-transition: opacity .3s ease-in-out;
- transition: opacity .3s ease-in-out
- }
- .sideitem:hover .sideitemimg img {
- opacity: .8
- }
- .sideitem:hover .sidelink {
- bottom: 0
- }
- .sideitem .itemtitle {
- max-height: 52px;
- overflow: hidden;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2
- }
- .sideitem .hasimg {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden
- }
- .sideitem .hasimg a {
- display: inline
- }
- .sideitem.noimg .itemtitle {
- color: #333
- }
- .sideitem.noimg .sideinfo {
- color: #888
- }
- .sideitem.noimg .sidelink {
- padding: 0;
- background: none;
- position: static
- }
- .sideimg {
- width: 70px;
- float: left;
- display: inline;
- margin-right: 10px;
- border-radius: 5px;
- overflow: hidden
- }
- .sideimg a {
- width: 100%;
- height: 0;
- padding-bottom: 70%;
- text-align: center;
- overflow: hidden;
- position: relative;
- display: block
- }
- .sideimg a img {
- min-width: 100%;
- min-height: 100%;
- opacity: 1;
- position: absolute;
- top: 0;
- left: 0
- }
- .sideimg:hover img {
- -moz-transform: scale(1.1);
- -o-transform: scale(1.1);
- transform: scale(1.1)
- }
- .sidelink {
- padding: 5px 10px 5px;
- color: #fff;
- background: rgba(0,0,0,0.6);
- position: absolute;
- top: auto;
- right: 0;
- bottom: -25px;
- left: 0;
- -webkit-transition: bottom .3s ease-in-out;
- -moz-transition: bottom .3s ease-in-out;
- -o-transition: bottom .3s ease-in-out;
- transition: bottom .3s ease-in-out
- }
- .sidelink a {
- font-size: 14px;
- line-height: 22px;
- display: inline-block
- }
- .sidelink .sideinfo {
- color: #e4e8eb
- }
- .sideinfo {
- font-size: 12px;
- color: #888;
- text-align: right;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- zoom: 1
- }
- .sideinfo:after {
- content: "";
- display: block;
- clear: both
- }
- .sideinfo span,.sideinfo em {
- float: left;
- display: inline;
- margin-right: 10px;
- font-style: normal
- }
- .sideinfo span:before,.sideinfo em:before {
- margin-right: 3px;
- font-size: 16px;
- font-family: iconfont;
- vertical-align: middle
- }
- .sideinfo span.view:before,.sideinfo em.view:before {
- content: "\e6a7"
- }
- .sideinfo span.cmt:before,.sideinfo em.cmt:before {
- content: "\e6a8"
- }
- .sideinfo span.date:before,.sideinfo em.date:before {
- content: "\e69c"
- }
- .sideinfo em span {
- float: none
- }
- .sidecmtinfo {
- font-size: 13px;
- color: #888;
- text-align: right;
- zoom: 1
- }
- .sidecmtinfo:after {
- content: "";
- display: block;
- clear: both
- }
- .sidecmtinfo em {
- float: left;
- display: inline;
- color: #333;
- font-style: normal
- }
- .sidecmtinfo em:before {
- content: "\e6a9";
- font-size: 17px;
- font-family: iconfont;
- vertical-align: top
- }
- .sidecmtcon {
- max-height: 44px;
- margin: 8px 0 5px;
- padding: 5px 10px;
- font-size: 13px;
- color: #888;
- line-height: 22px;
- border: 1px solid #eee;
- background: #f7f7f7;
- overflow: hidden;
- position: relative;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2
- }
- .sidecmtarticle {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden
- }
- .sidecmtarticle a {
- font-size: 13px;
- color: #0188fb
- }
- .sidecmtarticle a:before {
- content: "\e6e2";
- font-size: 18px;
- font-family: iconfont;
- vertical-align: bottom
- }
- #tpure_RecArticle .sideitem {
- margin-bottom: 10px;
- padding: 0;
- border: 0
- }
- #tpure_RecArticle .sideitem:last-child {
- margin: 0
- }
- #tpure_RecArticle .noimg {
- margin-bottom: 10px;
- padding-bottom: 8px;
- border-bottom: 1px dotted #e4e8eb;
- border-radius: 0
- }
- #hcsticky .sidebox:last-child {
- margin-bottom: 0
- }
- #divTags li {
- width: auto;
- float: left;
- display: inline;
- margin: 10px 0 0;
- padding: 0;
- white-space: nowrap;
- border: 0
- }
- #divTags li a {
- margin: 0 8px 0 0;
- padding: 0 8px;
- font-size: 14px;
- color: #333;
- line-height: 28px;
- border-radius: 3px;
- box-shadow: 0 1px 1px 0 #ddd;
- border: 1px solid #e4e8eb;
- display: inline-block;
- vertical-align: top
- }
- #divTags ul li a:hover {
- text-decoration: none;
- color: #0188fb;
- border: 1px solid #0188fb
- }
- #divCalendar .function_t {
- display: none
- }
- #divCalendar .function_c {
- width: 232px;
- padding: 0 4px 15px 4px
- }
- #divCalendar table {
- width: 100%;
- font-size: 14px;
- table-layout: fixed
- }
- #divCalendar caption {
- height: 24px;
- margin: 0 0 10px;
- padding: 0;
- font-weight: bold;
- text-align: center
- }
- #divCalendar caption a {
- padding: 0 18px;
- color: #8a9ead
- }
- #divCalendar th {
- height: 26px;
- color: #fff;
- font-weight: normal;
- line-height: 26px;
- text-transform: uppercase;
- border: 1px solid #b6c5d0;
- background: #b6c5d0
- }
- #divCalendar td {
- height: 30px;
- color: #888;
- line-height: 30px;
- text-align: center;
- border: 1px solid #e4e8eb
- }
- #divCalendar td.pad {
- background: none
- }
- #divCalendar td a {
- line-height: 30px;
- color: #0188fb;
- border: 1px solid #0188fb;
- display: block
- }
- #divCalendar #today {
- color: #0188fb;
- font-weight: bold
- }
- #divAuthors .article-nums {
- display: none
- }
- #divPrevious .article-date,#divNavBar .subnav {
- display: none
- }
- #divCatalog ul.ul-subcates li a {
- padding-left: 37px
- }
- #divSearchPanel form {
- margin-top: 20px;
- zoom: 1
- }
- #divSearchPanel form:after {
- content: "";
- display: block;
- clear: both
- }
- #divSearchPanel input[type="text"] {
- width: 70%;
- height: 36px;
- float: left;
- display: inline;
- padding: 5px 10px;
- line-height: 21px;
- border: 1px solid #e4e8eb;
- box-sizing: border-box;
- border-radius: 3px;
- transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
- }
- #divSearchPanel input[type="text"]:focus {
- color: #495057;
- background-color: #fff;
- border-color: #aab7c1;
- outline: 0;
- box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
- }
- #divSearchPanel input[type="submit"] {
- width: 22%;
- height: 36px;
- float: right;
- display: inline;
- line-height: 24px;
- border: 1px solid #e4e8eb;
- border-radius: 3px;
- cursor: pointer;
- background: #fff
- }
- #divSearchPanel input[type="submit"]:focus {
- background: #e4e8eb
- }
- #divMisc ul li,#divFavorites ul li,#divStatistics ul li {
- width: 50%;
- float: left;
- display: inline;
- overflow: hidden
- }
- #divMisc li a {
- padding: 5px 0;
- background: none;
- display: inline-block;
- vertical-align: top
- }
- #divMisc li a img {
- display: block
- }
- #divNavBar li,#divCatalog li,#divLinkage li,#divFavorites li,#divArchives li,#divAuthors li {
- width: 50%;
- height: 36px;
- float: left;
- line-height: 36px;
- border-bottom: 1px dotted #e4e8eb;
- overflow: hidden
- }
- #divCatalog li,#divPrevious li,#divLinkage li,#divNavBar li,#divComments li,#divAuthors li,#divFavorites li,#divStatistics li {
- height: 36px;
- line-height: 36px;
- border-bottom: 1px dotted #e4e8eb;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden
- }
- #divCatalog li:before,#divPrevious li:before,#divLinkage li:before,#divNavBar li:before,#divComments li:before,#divAuthors li:before,#divFavorites li:before,#divStatistics li:before {
- content: "\e6a6";
- margin: 0 5px 0 0;
- font-size: 12px;
- color: #333;
- font-family: iconfont;
- display: inline-block;
- vertical-align: top
- }
- #divContorPanel dd {
- text-align: center
- }
- #divContorPanel .cp-hello {
- width: 100%;
- margin-bottom: 15px;
- padding: 10px 0;
- border-bottom: 1px dotted #e4e8eb;
- display: inline-block
- }
- #divContorPanel .cp-hello:before {
- content: "\e6a9";
- margin-right: 3px;
- font-size: 22px;
- font-family: iconfont;
- display: inline-block;
- vertical-align: top
- }
- #divContorPanel .cp-login a,#divContorPanel .cp-vrs a {
- padding: 0 16px 0 10px;
- font-size: 14px;
- color: #888;
- border: 2px solid #e4e8eb;
- border-radius: 20px;
- display: inline-block
- }
- #divContorPanel .cp-login a:before,#divContorPanel .cp-vrs a:before {
- font-size: 20px;
- font-family: iconfont;
- vertical-align: top
- }
- #divContorPanel .cp-login a:hover,#divContorPanel .cp-vrs a:hover {
- color: #0188fb;
- border-color: #0188fb
- }
- #divContorPanel .cp-login a:hover:before,#divContorPanel .cp-vrs a:hover:before {
- color: #0188fb
- }
- #divContorPanel .cp-login a:before {
- content: "\e699"
- }
- #divContorPanel .cp-vrs a:before {
- content: "\e6e2"
- }
- #divContorPanel .sidecon div {
- padding: 20px;
- text-align: center;
- line-height: 24px;
- border: 1px dotted #f0f0f0;
- background: #fbfbfb
- }
- .tag-count {
- display: none
- }
- #divArchives a {
- font-size: 14px
- }
- .tagscloud {
- margin-left: -2%;
- font-size: 0
- }
- .tagscloud li {
- width: 23%;
- margin: 0 0 2% 2%;
- background: #f5f5f5;
- position: relative;
- display: inline-block;
- vertical-align: top
- }
- .tagscloud li a {
- width: 100%;
- padding: 0 50px 0 10px;
- font-size: 14px;
- color: #333;
- box-sizing: border-box;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- display: block;
- transition: background-color 0s linear,color 0s linear
- }
- .tagscloud li span {
- font-size: 12px;
- color: #999;
- font-family: arial;
- line-height: 28px;
- position: absolute;
- top: 0;
- right: 10px;
- z-index: 1
- }
- .tagscloud li:hover {
- color: #fff;
- background: #0188fb
- }
- .tagscloud li:hover a,.tagscloud li:hover span {
- color: #fff
- }
- .tagsnull {
- padding: 10% 0;
- color: #888;
- text-align: center
- }
- .tagsnull:before {
- content: "\e869";
- margin-bottom: 10px;
- font-size: 100px;
- color: #e4e8eb;
- font-family: iconfont;
- line-height: 1;
- display: block
- }
- .archivedate {
- margin-bottom: 10px;
- font-size: 18px;
- color: #0188fb;
- border-bottom: 1px solid #e4e8eb
- }
- .archivelist li {
- line-height: 28px;
- zoom: 1
- }
- .archivelist li:after {
- content: "";
- display: block;
- clear: both
- }
- .archivelist h3 {
- margin: 0;
- font-size: 14px;
- line-height: inherit;
- border: 0;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden
- }
- .archivelist h3 a {
- font-size: 14px;
- color: #333
- }
- .archivelist h3 a:hover {
- color: #0188fb
- }
- .archivelist h3:after {
- display: none
- }
- .archivetime {
- float: left;
- display: inline;
- margin-right: 10px;
- font-size: 14px;
- color: #999
- }
- .archivenull {
- padding: 20% 0;
- color: #888;
- text-align: center
- }
- .archivenull:before {
- content: "\e869";
- margin-bottom: 10px;
- font-size: 100px;
- color: #e4e8eb;
- font-family: iconfont;
- line-height: 1;
- display: block
- }
- .footer {
- padding: 20px 17px;
- font-size: 14px;
- color: #999;
- text-align: center;
- line-height: 24px;
- border-top: 1px solid #dbe0e8;
- background: #e4e8eb
- }
- .footer a {
- font-size: 14px;
- color: #999
- }
- .footer a:hover {
- color: #0188fb
- }
- a.backtotop {
- width: 45px;
- height: 45px;
- margin-left: 550px;
- text-align: center;
- line-height: 45px;
- border-radius: 5px;
- cursor: pointer;
- opacity: .8;
- position: fixed;
- _position: absolute;
- right: 30px;
- bottom: 30px;
- _bottom: 30px;
- background: rgba(10,10,10,0.2);
- overflow: hidden
- }
- a.backtotop i:after {
- content: "\e600";
- font-size: 32px;
- color: #fff;
- font-family: iconfont
- }
- a.backtotop:hover {
- background: #0188fb
- }
- a.setnight {
- width: 45px;
- height: 45px;
- margin-left: 550px;
- text-align: center;
- line-height: 45px;
- border-radius: 5px;
- cursor: pointer;
- opacity: .8;
- position: fixed;
- _position: absolute;
- right: 30px;
- bottom: 88px;
- _bottom: 88px;
- background: rgba(10,10,10,0.2);
- overflow: hidden
- }
- a.setnight:after {
- content: "\e6e4";
- font-size: 36px;
- color: #fff;
- font-family: iconfont
- }
- a.setnight.black:after {
- content: "\e635"
- }
- a.setnight:hover {
- background: #0188fb
- }
- .errorpage {
- margin-bottom: 20px;
- padding: 100px 30px;
- text-align: center;
- box-shadow: 0 1px 5px 0 rgba(0,0,0,0.05);
- box-sizing: border-box;
- background: #fff
- }
- .errorpage h3 {
- margin: 0 0 10px;
- font-size: 120px;
- line-height: 120px;
- font-weight: bold;
- color: #333;
- text-shadow: rgba(61,61,61,0.3) 1px 1px,rgba(61,61,61,0.2) 2px 2px,rgba(61,61,61,0.3) 3px 3px
- }
- .errorpage h4 {
- margin: 0 0 30px;
- font-size: 30px;
- color: #333;
- line-height: 35px
- }
- .errorpage p {
- margin: 0 0 20px;
- font-size: 16px;
- color: #333
- }
- .errorsearch {
- width: 60%;
- margin: 0 auto 20px;
- zoom: 1
- }
- .errorsearch:after {
- content: "";
- display: block;
- clear: both
- }
- .errschtxt {
- width: 75%;
- height: 36px;
- float: left;
- display: inline;
- padding: 5px 10px;
- line-height: 21px;
- border: 1px solid #e4e8eb;
- box-sizing: border-box;
- border-radius: 3px;
- transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
- }
- .errschtxt:focus {
- color: #495057;
- background-color: #fff;
- border-color: #aab7c1;
- outline: 0;
- box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
- }
- .errschbtn {
- width: 24%;
- height: 36px;
- float: right;
- display: inline;
- line-height: 24px;
- border: 1px solid #e4e8eb;
- border-radius: 3px;
- cursor: pointer;
- background: #fff
- }
- .errschbtn:focus {
- background: #e4e8eb
- }
- .goback {
- height: 36px;
- margin: 0 10px 0 0;
- padding: 0 10px 0 20px;
- font-size: 16px;
- color: #888;
- line-height: 36px;
- border: 2px solid #e4e8eb;
- outline: 0;
- border-radius: 20px;
- cursor: pointer;
- background: #fff;
- display: inline-block
- }
- .goback:after {
- content: "\e6a6";
- font-size: 23px;
- color: #888;
- font-family: iconfont;
- vertical-align: top
- }
- .goback:hover {
- color: #0188fb;
- border-color: #0188fb
- }
- .goback:hover:after {
- color: #0188fb
- }
- .viewall {
- overflow: hidden;
- position: relative
- }
- .teles,.telesmore {
- width: 100%;
- height: 150px;
- color: #0188fb;
- text-align: center;
- font-size: 14px;
- text-indent: 0;
- cursor: pointer;
- background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 50%);
- position: absolute;
- left: 0;
- bottom: 0;
- display: block
- }
- .telesmore i {
- margin: 80px auto 0;
- line-height: 36px;
- text-align: center;
- border: 1px solid #0188fb;
- border-radius: 3px;
- background: #fff;
- display: block
- }
- .telesmore i:after {
- content: "\e69b";
- font-size: 22px;
- font-family: iconfont;
- display: inline-block;
- vertical-align: top;
- -webkit-animation: telesmoreico .4s infinite alternate
- }
- .teles i {
- margin: 72px 0 20px;
- font-size: 18px;
- font-style: normal;
- text-indent: 0;
- line-height: 28px;
- display: inline-block
- }
- .teles i:after {
- content: "\e69b";
- width: 33px;
- margin-left: -20px;
- font-size: 30px;
- font-family: iconfont;
- position: absolute;
- bottom: 24px;
- left: 50%;
- -webkit-animation: telesico .4s infinite alternate;
- -ms-animation: telesico .4s infinite alternate
- }
- @-webkit-keyframes telesico {
- 0% {
- -webkit-transform: translate(0, -2px)
- }
- 100% {
- -webkit-transform: translate(0, 3px)
- }
- }
- @-webkit-keyframes telesmoreico {
- 0% {
- -webkit-transform: translate(0, -2px)
- }
- 100% {
- -webkit-transform: translate(0, 3px)
- }
- }
- @-webkit-keyframes arrow {
- from {
- -webkit-transform: translate3d(-webkit-calc(-44%), 5px, 0);
- transform: translate3d(calc(-44%), 5px, 0)
- }
- to {
- -webkit-transform: translate3d(-webkit-calc(-44%), 0, 0);
- transform: translate3d(calc(-44%), 0, 0)
- }
- }
- @keyframes arrow {
- from {
- -webkit-transform: translate3d(-webkit-calc(-44%), 5px, 0);
- transform: translate3d(calc(-44%), 5px, 0)
- }
- to {
- -webkit-transform: translate3d(-webkit-calc(-44%), 0, 0);
- transform: translate3d(calc(-44%), 0, 0)
- }
- }
- .night {
- background: #191919
- }
- .night .wrapper {
- background: #191919
- }
- .night .header {
- border-bottom: 1px solid #222;
- box-shadow: 0 1px 4px 0 #161616;
- background-color: #202020;
- -webkit-backdrop-filter: blur(10px);
- backdrop-filter: blur(10px)
- }
- .night .header .name a {
- color: #ccc
- }
- .night .logo.on:before {
- content: '';
- position: absolute;
- top: 0;
- left: -75%;
- z-index: 2;
- display: block;
- width: 50%;
- height: 100%;
- background: -webkit-linear-gradient(left, rgba(32,32,32,0) 0, rgba(32,32,32,0.5) 100%);
- background: linear-gradient(to right, rgba(32,32,32,0) 0, rgba(32,32,32,0.5) 100%);
- -webkit-transform: skewX(-17deg);
- -moz-transform: skewX(-17deg);
- -o-transform: skewX(-17deg);
- -ms-transform: skewX(-17deg);
- transform: skewX(-17deg)
- }
- .night .menu li a {
- color: #bbb
- }
- .night .menu li.subcate .subnav a {
- color: #bbb
- }
- .night .menu li .subnav {
- box-shadow: 0 0 2px 0 #151515;
- background: #262626
- }
- .night .menu li .subnav a {
- border-color: #3a3a3a
- }
- .night .menu li .subnav:after {
- color: #bbb;
- border-bottom-color: #262626
- }
- .night .schico a:after {
- color: #ccc
- }
- .night .schfixed {
- box-shadow: 0 0 2px 0 #151515;
- background: #262626
- }
- .night .schfixed input {
- color: #ccc;
- border-color: #3a3a3a;
- background: #202020
- }
- .night .schfixed:after {
- border-bottom-color: #262626
- }
- .night .searchnull:before {
- color: #3a3a3a
- }
- .night .single h1,.night .single h2,.night .single h3,.night .single h4,.night .single h5,.night .single h6 {
- border-color: #3a3a3a
- }
- .night .single p.ue-upload {
- border-color: #3a3a3a
- }
- .night .single blockquote {
- border-color: #666;
- background: #333
- }
- .night .single blockquote:before {
- color: #555
- }
- .night .single td {
- color: #888;
- border-color: #3a3a3a
- }
- .night .single code[class*="language-"],.night .single pre[class*="language-"] {
- text-shadow: 0 1px #3a3a3a;
- background: #333
- }
- .night .single div.prism-show-language>div.prism-show-language-label[data-language] {
- background: #666
- }
- .night .copynotice {
- border-color: #666;
- background: #333
- }
- .night .copynotice b {
- color: #bbb
- }
- .night .copynotice a {
- color: #888
- }
- .night .post {
- border-bottom: 1px solid #3a3a3a
- }
- .night .posttitle {
- border-color: #3a3a3a
- }
- .night .posttitle h1,.night .posttitle h2,.night .posttitle h3,.night .posttitle h4,.night .posttitle h5,.night .posttitle h6 {
- color: #bbb
- }
- .night .post h1 {
- color: #bbb
- }
- .night .post h2 a {
- color: #bbb
- }
- .night .post h2 a:hover {
- color: #0188fb
- }
- .night .post .intro {
- color: #888
- }
- .night .post .readmore {
- border-color: #888
- }
- .night .post .readmore:hover {
- border-color: #0188fb
- }
- .night .post .single {
- color: #888;
- border-color: #3a3a3a
- }
- .night .post .tags a {
- color: #888;
- border-color: #3a3a3a;
- background: none
- }
- .night .post .ctrl a {
- background: #3a3a3a
- }
- .night .telesmore i {
- background: #262626
- }
- .night .teles,.night .telesmore {
- background: linear-gradient(to bottom, rgba(38,38,38,0), #262626 50%)
- }
- .night .pagination-loading {
- background: #262626
- }
- .night .ias_trigger a,.night .ias_loader a {
- border-color: #3a3a3a;
- background: #262626
- }
- .night .pages {
- color: #888
- }
- .night .pages a {
- color: #bbb
- }
- .night .pages a:hover {
- color: #0188fb;
- border-color: #0188fb
- }
- .night a.backlist {
- color: #888;
- border-color: #888
- }
- .night .relate {
- border-color: #3a3a3a
- }
- .night .relateinfo h3 a {
- color: #bbb
- }
- .night .relateinfo h3 a:hover {
- color: #0188fb
- }
- .night .relatelist {
- border-color: #3a3a3a
- }
- .night .relatelist a {
- color: #bbb
- }
- .night .relatelist a:hover {
- color: #0188fb
- }
- .night .relatelist span {
- color: #888
- }
- .night .cmtform {
- border-color: #3a3a3a
- }
- .night .cmtform label {
- color: #888
- }
- .night .cmtform input {
- color: #ccc;
- border-color: #3a3a3a;
- background: #202020
- }
- .night .cmtform input:focus {
- color: #0188fb
- }
- .night .cmtform img.imgcode {
- border-color: #3a3a3a
- }
- .night .cmtarea textarea {
- color: #ccc;
- border-color: #3a3a3a;
- background: #202020
- }
- .night .cmtsubmit button {
- border-color: #888;
- background: none
- }
- .night .cmtsubmit button:hover {
- border-color: #0188fb
- }
- .night .cmtsname {
- color: #888
- }
- .night .cmtsname a {
- color: #888
- }
- .night .cmtsdate {
- color: #888
- }
- .night .cmtsbody {
- color: #ccc
- }
- .night .cmtsreply {
- border-color: #3a3a3a
- }
- .night .cmtsreplyname a {
- color: #888
- }
- .night .cmtsreplycon {
- color: #ccc
- }
- .night .cmtsreplydate {
- color: #888
- }
- .night .cmtsitem {
- border-color: #3a3a3a
- }
- .night .reply-frm {
- border-color: #3a3a3a
- }
- .night #cancel-reply {
- color: #0188fb;
- border-color: #0188fb;
- background: none
- }
- .night .tagscloud li {
- background: #3a3a3a
- }
- .night .tagscloud li a {
- color: #bbb
- }
- .night .tagscloud li:hover a {
- color: #fff
- }
- .night .archivedate {
- border-color: #3a3a3a
- }
- .night .archivelist h3 a {
- color: #bbb
- }
- .night .archivelist h3 a:hover {
- color: #0188fb
- }
- .night .sidebox dt {
- color: #bbb;
- border-bottom: 1px solid #3a3a3a
- }
- .night .sidebox dd a {
- color: #888
- }
- .night .sidebox dd .sideitem .itemtitle {
- color: #bbb
- }
- .night .sidebox dd .sideitem .itemtitle:hover {
- color: #0188fb
- }
- .night .sidebox dd .sidelink a {
- color: #fff
- }
- .night .sidebox dd .sidelink a:hover {
- color: #0188fb
- }
- .night .sidebox dd .sidecmtarticle a {
- color: #bbb
- }
- .night .sidebox dd .sidecmtarticle a:hover {
- color: #0188fb
- }
- .night .sideitem {
- border-color: #3a3a3a
- }
- .night .sideitem .hasimg {
- color: #bbb
- }
- .night .sidelink .sideinfo {
- color: #bbb
- }
- .night .sidecmtinfo em {
- color: #bbb
- }
- .night .sidecmtcon {
- border: 1px dotted #666;
- background: #333
- }
- .night #tpure_RecArticle .noimg {
- border-color: #3a3a3a
- }
- .night #divContorPanel .cp-hello {
- color: #888;
- border-color: #3a3a3a
- }
- .night #divContorPanel .cp-login a,.night #divContorPanel .cp-vrs a {
- border-color: #888
- }
- .night #divContorPanel .cp-login a:hover,.night #divContorPanel .cp-vrs a:hover {
- border-color: #0188fb
- }
- .night #divCatalog li,.night #divPrevious li,.night #divLinkage li,.night #divNavBar li,.night #divComments li,.night #divAuthors li,.night #divFavorites li,.night #divStatistics li {
- border-bottom: 1px dotted #3a3a3a
- }
- .night #divCatalog li:before,.night #divPrevious li:before,.night #divLinkage li:before,.night #divNavBar li:before,.night #divComments li:before,.night #divAuthors li:before,.night #divFavorites li:before,.night #divStatistics li:before {
- color: #888
- }
- .night #divTags li a {
- color: #888;
- border-color: #3a3a3a;
- box-shadow: none
- }
- .night .block,.night .sidebox,.night .pagebar,.night .cmtpagebar {
- background: #262626
- }
- .night .pagebar a,.night .cmtpagebar a {
- color: #bbb;
- border-color: #3a3a3a;
- background: none
- }
- .night .footer {
- border-top: 1px solid #3a3a3a;
- background: #202020
- }
- .night .lazynum {
- color: #999;
- background: #444
- }
- .night a.backtotop,.night .setnight {
- background: rgba(68,68,68,0.8)
- }
- .night a.backtotop:hover {
- background: #0188fb
- }
- .night .errorpage {
- background: #262626
- }
- .night .errorpage h3,.night .errorpage h4,.night .errorpage p {
- color: #bbb
- }
- .night .errorpage .errschtxt {
- color: #ccc;
- border-color: #3a3a3a;
- background: #202020
- }
- .night .errorpage .errschtxt:focus {
- color: #0188fb
- }
- .night .errorpage .errschbtn {
- color: #fff;
- border-color: #0188fb;
- background: #0188fb
- }
- .night .errorpage .goback {
- color: #888;
- border-color: #888;
- background: none
- }
- .night .errorpage .goback:hover {
- color: #0188fb;
- border-color: #0188fb
- }
- .night .advice_content,.night .advice_contactcon,.night .advice_verifycode {
- border-color: #3a3a3a
- }
- .night .advice_content textarea,.night .advice_contactcon input {
- color: #ccc;
- background: #202020;
- display: block
- }
- .night .advice_verifycode {
- color: #ccc;
- background: #202020
- }
- @media screen and (max-width:1920px) {
- .wrap {
- width: 1080px
- }
- .wrapper {
- width: 100%;
- min-width: 100%
- }
- a.backtotop {
- left: 50%;
- bottom: 30px;
- _bottom: 30px
- }
- a.setnight {
- left: 50%;
- bottom: 80px;
- _bottom: 80px
- }
- }
- @media screen and (max-width:1200px) {
- .wrap {
- width: auto;
- padding: 0 20px
- }
- .header .wrap {
- padding: 0
- }
- .header .name a {
- padding-left: 18px
- }
- .logo {
- margin-left: 20px
- }
- .head {
- padding: 0
- }
- .schico {
- right: 10px
- }
- .banner h2 {
- width: 80%
- }
- a.backtotop {
- width: 36px;
- height: 36px;
- margin: auto;
- line-height: 36px;
- right: 10px;
- bottom: 30px;
- left: auto
- }
- a.backtotop i:after {
- font-size: 26px
- }
- a.setnight {
- width: 36px;
- height: 36px;
- margin: auto;
- line-height: 36px;
- right: 10px;
- bottom: 72px;
- left: auto
- }
- a.setnight:after {
- font-size: 30px
- }
- }
- @media screen and (max-width:1080px) {
- .header .name {
- height: 50px
- }
- .header .name a {
- font-size: 20px;
- line-height: 50px
- }
- .logo {
- height: 50px;
- margin-left: 10px
- }
- .logo a {
- height: 50px
- }
- .logo a img {
- height: 36px
- }
- .menu {
- width: 100%;
- height: auto;
- float: left;
- margin: 0;
- border-top: 1px solid #eee;
- display: none
- }
- .menu ul {
- width: 100%;
- padding-right: 0;
- border-left: 0
- }
- .menu ul li {
- width: 100%;
- padding: 0;
- color: #ddd;
- line-height: 40px;
- border-bottom: 1px solid #eee;
- border-right: 0
- }
- .menu ul li:before {
- display: none
- }
- .menu ul li a {
- padding: 0 18px;
- font-size: 16px;
- color: #333;
- border: 0;
- display: block
- }
- .menu ul li.subcate:hover .subnav {
- display: none
- }
- .menu ul li.subcate>a:after {
- content: "\e69b";
- margin-left: 10px;
- font-size: 16px;
- color: #888;
- font-family: iconfont;
- font-weight: 600;
- position: absolute;
- top: 0;
- right: 15px
- }
- .menu ul li.subcate.slidedown>a:after {
- content: "\e6a4";
- color: #0188fb
- }
- .menu ul li.subcate.slidedown .subnav {
- margin-bottom: -1px;
- padding: 0;
- line-height: 40px;
- border-top: 1px solid #e4e8eb;
- border-bottom: 1px solid #e4e8eb;
- box-shadow: none;
- background: #fafafa;
- position: static;
- display: block;
- -webkit-animation: fadeInUp 0s 0s ease both;
- -moz-animation: fadeInUp 0s 0s ease both
- }
- .menu ul li.subcate.slidedown .subnav:before,.menu ul li.subcate.slidedown .subnav:after {
- display: none
- }
- .menu ul li.subcate.slidedown .subnav a {
- padding: 0 18px
- }
- .menu.on {
- width: 100%;
- margin: 0;
- padding: 10px 0 0;
- display: block
- }
- .menuico {
- right: 10px;
- display: block
- }
- .schico {
- display: none
- }
- .sch-m {
- display: block
- }
- .main.fixed {
- padding-top: 50px
- }
- .banner {
- margin-bottom: 20px
- }
- .sidebar {
- display: none
- }
- .content {
- width: 100%
- }
- .night .menu.on {
- border-color: #3a3a3a;
- background: #262626
- }
- .night .menu.on li {
- border-color: #3a3a3a
- }
- .night .menu ul li.subcate.slidedown .subnav {
- border-color: #3a3a3a;
- background: #202020
- }
- }
- @media screen and (max-width:750px) {
- .wrap {
- padding: 0
- }
- .cmtimg {
- display: none
- }
- .main {
- margin-bottom: 0
- }
- .main .mask {
- margin-bottom: 10px
- }
- .banner {
- margin-bottom: 10px;
- font-size: 24px;
- line-height: 32px
- }
- .banner h2 {
- margin-bottom: 10px
- }
- .banner h2:after {
- bottom: -10px
- }
- .sitemap {
- padding: 0 18px
- }
- .block {
- margin-bottom: 10px;
- padding: 15px 18px 10px
- }
- .post {
- margin-bottom: 20px;
- padding-bottom: 10px
- }
- .post h1,.post h2 {
- font-size: 20px;
- line-height: 30px
- }
- .post h1 a,.post h2 a {
- font-size: 20px
- }
- .post h1 .istop:before,.post h2 .istop:before {
- font-size: 32px
- }
- .post .info {
- margin-bottom: 10px
- }
- .post .readmore {
- width: 100%;
- padding: 5px 0;
- text-align: center;
- display: none
- }
- .posttitle h1,.posttitle h2,.posttitle h3,.posttitle h4,.posttitle h5,.posttitle h6 {
- font-size: 20px
- }
- .post .user:before,.post .date:before,.post .cate:before,.post .view:before,.post .cmt:before {
- margin-right: 2px;
- font-size: 20px
- }
- .post.intro.isimg {
- height: auto
- }
- .post .ctrl {
- float: none
- }
- .post .ctrl a {
- margin: 0 8px 0 0
- }
- .single {
- font-size: 18px;
- line-height: 30px
- }
- .copynotice .qr {
- display: none
- }
- a.backlist {
- width: 99%;
- float: none;
- margin: 0 0 20px;
- padding: 0;
- line-height: 36px;
- text-align: center;
- display: block
- }
- .tagscloud li {
- width: 48%
- }
- .relate:last-child {
- padding: 20px 0
- }
- .relateinfo h3 {
- margin-bottom: 8px
- }
- .relateinfo h3 a {
- font-size: 18px
- }
- .relatelist a {
- width: 100%;
- margin: 0;
- white-space: normal
- }
- .relatelist .posttime {
- position: static
- }
- .relatelist:last-child {
- border: 0
- }
- .cmtsitem .avatar {
- width: 38px;
- height: 38px
- }
- .cmtsitem .avatar img {
- width: 38px;
- height: 38px
- }
- .cmtscon {
- margin-left: 50px
- }
- .cmtshead {
- zoom: 1
- }
- .cmtshead:after {
- content: "";
- display: block;
- clear: both
- }
- .cmtsname {
- width: 100%;
- float: left;
- display: inline
- }
- .cmtsdate {
- float: left;
- display: inline
- }
- .cmtsbody,.cmtsreply {
- margin-left: -50px
- }
- .cmtsfoot {
- margin-left: -50px;
- text-align: right
- }
- .cmtarea {
- padding: 0
- }
- .cmtform p {
- width: 100%
- }
- .cmtform input {
- width: 60%
- }
- .cmtform #inpVerify {
- width: 30%
- }
- .cmtform img {
- width: 30%;
- margin: 0
- }
- .cmtsubmit {
- text-align: center
- }
- .cmtsubmit button {
- width: 100%;
- height: 40px;
- margin: 0 0 10px 0
- }
- .reply-frm {
- margin-left: -50px
- }
- .pagebar,.cmtpagebar {
- padding-bottom: 10px
- }
- .pagebar .now-page,.cmtpagebar .now-page {
- padding: 0 5px
- }
- .pagebar a,.cmtpagebar a {
- margin: 0 3px 5px;
- padding: 1px 7px
- }
- .errorpage {
- padding: 50px 18px
- }
- .errorpage h3 {
- font-size: 80px;
- line-height: 80px
- }
- .errorpage h4 {
- font-size: 24px
- }
- .errorsearch {
- width: 100%
- }
- .night .advice_content,.night .advice_contactcon,.night .advice_verifycode {
- border-color: #3a3a3a
- }
- .night .advice_content textarea,.night .advice_contactcon input {
- color: #ccc;
- background: #202020;
- display: block
- }
- .night .advice_verifycode {
- color: #ccc;
- background: #202020
- }
- }
|