style.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218
  1. @charset "utf-8";
  2. a,img,button,input,textarea {
  3. -webkit-tap-highlight-color: rgba(255,255,255,0)
  4. }
  5. 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 {
  6. margin: 0;
  7. padding: 0;
  8. font-size: 100%;
  9. border: 0;
  10. vertical-align: baseline
  11. }
  12. body {
  13. font-size: 16px;
  14. color: #333;
  15. font-family: Penrose,"PingFang SC","Hiragino Sans GB",Tahoma,Arial,"Lantinghei SC","Microsoft YaHei","simsun",sans-serif
  16. }
  17. h1,h2,h3,h4,h5,h6 {
  18. font-weight: normal
  19. }
  20. a {
  21. color: #0188fb;
  22. text-decoration: none;
  23. -webkit-transition: background-color .15s linear,color .15s linear;
  24. -moz-transition: background-color .15s linear,color .15s linear;
  25. -o-transition: background-color .15s linear,color .15s linear;
  26. -ms-transition: background-color .15s linear,color .15s linear;
  27. transition: background-color .15s linear,color .15s linear
  28. }
  29. a:hover {
  30. color: #0188fb;
  31. text-decoration: none
  32. }
  33. i {
  34. font-style: normal
  35. }
  36. ul,ol {
  37. list-style-type: none
  38. }
  39. img {
  40. max-width: 100%;
  41. height: auto;
  42. width: auto\9;
  43. border: 0;
  44. -webkit-transform: translateZ(0);
  45. transform: translateZ(0);
  46. -webkit-transition: -webkit-transform .2s ease 0s;
  47. transition: transform .2s ease 0s
  48. }
  49. input,textarea {
  50. font-size: 16px;
  51. 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;
  52. outline: 0
  53. }
  54. @font-face {
  55. font-family:'iconfont';
  56. src:url('../fonts/iconfont.eot');
  57. src:url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'),
  58. url('../fonts/iconfont.woff2') format('woff2'),
  59. url('../fonts/iconfont.woff') format('woff'),
  60. url('../fonts/iconfont.ttf') format('truetype'),
  61. url('../fonts/iconfont.svg#iconfont') format('svg');font-weight:normal;font-style:normal
  62. }
  63. .shadow {
  64. box-shadow: 0 1px 2px rgba(0,0,0,0.08)
  65. }
  66. .hide {
  67. display: none !important
  68. }
  69. .wrap {
  70. width: 70%;
  71. margin: 0 auto;
  72. zoom: 1
  73. }
  74. .wrap:after {
  75. content: "";
  76. display: block;
  77. clear: both
  78. }
  79. .wrapper {
  80. background: #f6f8f9;
  81. position: relative
  82. }
  83. .head {
  84. padding-left: 100px;
  85. position: relative;
  86. zoom: 1
  87. }
  88. .head:after {
  89. content: "";
  90. display: block;
  91. clear: both
  92. }
  93. .header {
  94. background: #fff;
  95. box-shadow: 0 1px 4px 0 rgba(238,238,238,0.5);
  96. position: relative;
  97. z-index: 99
  98. }
  99. .header .name {
  100. width: 200px;
  101. height: 70px;
  102. float: left;
  103. display: inline;
  104. white-space: nowrap;
  105. text-overflow: ellipsis;
  106. overflow: hidden;
  107. position: relative;
  108. z-index: 1
  109. }
  110. .header .name a {
  111. font-size: 28px;
  112. color: #333;
  113. line-height: 70px
  114. }
  115. .header .subname {
  116. float: left;
  117. display: inline;
  118. margin: 30px 0 0 10px;
  119. font-size: 16px;
  120. color: #333
  121. }
  122. .header.fixed {
  123. border-bottom: 1px solid #eee;
  124. position: fixed;
  125. width: 100%;
  126. z-index: 99
  127. }
  128. .lazyline {
  129. height: 2px;
  130. background-color: #0188fb;
  131. position: absolute;
  132. top: 0;
  133. top: 2px\0;
  134. left: 0;
  135. z-index: 2
  136. }
  137. .lazynum {
  138. padding: 0 10px;
  139. font-size: 12px;
  140. color: #fff;
  141. line-height: 20px;
  142. border-top-left-radius: 10px;
  143. border-bottom-left-radius: 10px;
  144. background: #ccc;
  145. position: fixed;
  146. right: 0;
  147. bottom: 5px
  148. }
  149. .logo {
  150. height: 70px;
  151. float: left;
  152. display: inline;
  153. overflow: hidden;
  154. position: relative;
  155. z-index: 99
  156. }
  157. .logo a {
  158. width: 100%;
  159. height: 70px;
  160. display: table-cell;
  161. vertical-align: middle;
  162. transition: all ease .3s
  163. }
  164. .logo a img {
  165. border-radius: 50%;
  166. height: 50px;
  167. vertical-align: middle
  168. }
  169. .logo.on:before {
  170. content: '';
  171. position: absolute;
  172. top: 0;
  173. left: -75%;
  174. z-index: 2;
  175. display: block;
  176. width: 50%;
  177. height: 100%;
  178. background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0, rgba(255,255,255,0.5) 100%);
  179. background: linear-gradient(to right, rgba(255,255,255,0) 0, rgba(255,255,255,0.5) 100%);
  180. -webkit-transform: skewX(-17deg);
  181. -moz-transform: skewX(-17deg);
  182. -o-transform: skewX(-17deg);
  183. -ms-transform: skewX(-17deg);
  184. transform: skewX(-17deg)
  185. }
  186. .logo:hover:before {
  187. -webkit-animation: shine 1s;
  188. -moz-animation: shine 1s;
  189. animation: shine 1s
  190. }
  191. @-webkit-keyframes shine {
  192. 100% {
  193. left: 125%
  194. }
  195. }
  196. @keyframes shine {
  197. 100% {
  198. left: 125%
  199. }
  200. }
  201. .nav {
  202. border-bottom: 1px solid #ddd;
  203. border-image: -webkit-linear-gradient(right, #e2e2e2 20%, #fff 100%) 100 100 100 100;
  204. border-image: -moz-linear-gradient(right, #e2e2e2 20%, #fff 100%) 100 100 100 100;
  205. border-image: linear-gradient(right, #e2e2e2 20%, #fff 100%) 100 100 100 100
  206. }
  207. .nav dl {
  208. padding-right: 50px;
  209. line-height: 35px;
  210. font-size: 0;
  211. text-align: right
  212. }
  213. .nav dl dd {
  214. margin: 0 10px;
  215. font-size: 14px;
  216. color: #333;
  217. display: inline-block;
  218. vertical-align: top
  219. }
  220. .nav dl dd a {
  221. color: #333
  222. }
  223. .menu {
  224. float: left;
  225. display: inline;
  226. line-height: 70px
  227. }
  228. .menu ul {
  229. padding-right: 35px;
  230. zoom: 1
  231. }
  232. .menu ul:after {
  233. content: "";
  234. display: block;
  235. clear: both
  236. }
  237. .menu ul.nosch {
  238. padding: 0
  239. }
  240. .menu li {
  241. float: left;
  242. display: inline;
  243. margin: 0 30px 0 0;
  244. position: relative
  245. }
  246. .menu li a {
  247. font-size: 16px;
  248. color: #333;
  249. position: relative;
  250. display: inline-block
  251. }
  252. .menu li a:hover {
  253. color: #0188fb
  254. }
  255. .menu li:before {
  256. content: "";
  257. width: 0;
  258. height: 3px;
  259. background: #0188fb;
  260. position: absolute;
  261. left: 50%;
  262. bottom: 0;
  263. -webkit-transition: all .2s;
  264. -moz-transition: all .2s;
  265. -o-transition: all .2s;
  266. transition: all .2s
  267. }
  268. .menu li:hover:before,.menu li.on:before {
  269. width: 32px;
  270. margin-left: -16px
  271. }
  272. .menu li:hover a,.menu li.on a {
  273. color: #0188fb
  274. }
  275. .menu li .subnav {
  276. min-width: 200px;
  277. padding: 10px 0;
  278. line-height: 40px;
  279. border-top: 1px solid #0188fb;
  280. box-shadow: 0 2px 2px 0 #ddd;
  281. background: #fff;
  282. position: absolute;
  283. top: 70px;
  284. left: -20px;
  285. z-index: 99;
  286. display: none;
  287. -webkit-animation: fadeInUp .3s 0s ease both;
  288. -moz-animation: fadeInUp .3s 0s ease both
  289. }
  290. .menu li .subnav a {
  291. padding: 0 20px;
  292. font-size: 14px;
  293. border-bottom: 1px solid #f5f5f5;
  294. white-space: nowrap;
  295. text-overflow: ellipsis;
  296. overflow: hidden;
  297. display: block
  298. }
  299. .menu li .subnav a:after {
  300. content: "\e6a6";
  301. font-size: 16px;
  302. color: #ccc;
  303. font-family: iconfont;
  304. font-weight: 600;
  305. position: absolute;
  306. top: 0;
  307. right: 15px;
  308. vertical-align: top;
  309. -moz-transition: opacity .5s;
  310. -o-transition: opacity .5s;
  311. -webkit-transition: opacity .5s;
  312. transition: opacity .5s
  313. }
  314. .menu li .subnav a:hover:after {
  315. color: #0188fb
  316. }
  317. .menu li .subnav a.on {
  318. color: #0188fb
  319. }
  320. .menu li .subnav a.on:after {
  321. opacity: 1
  322. }
  323. .menu li .subnav a:last-child {
  324. border: 0
  325. }
  326. .menu li .subnav:before {
  327. content: "";
  328. width: 0;
  329. height: 0;
  330. margin: -21px 0 0 0;
  331. border: 10px solid transparent;
  332. border-bottom-color: #0188fb;
  333. position: absolute;
  334. top: 0;
  335. left: 26px;
  336. z-index: 3
  337. }
  338. .menu li .subnav:after {
  339. content: "";
  340. width: 0;
  341. height: 0;
  342. margin: -20px 0 0 0;
  343. border: 10px solid transparent;
  344. border-bottom-color: #fff;
  345. position: absolute;
  346. top: 0;
  347. left: 26px;
  348. z-index: 3
  349. }
  350. .menu li.subcate:hover a {
  351. color: #0188fb
  352. }
  353. .menu li.subcate:hover:before {
  354. display: none
  355. }
  356. .menu li.subcate:hover .subnav {
  357. display: block
  358. }
  359. .menu li.subcate:hover .subnav a:hover {
  360. color: #0188fb
  361. }
  362. .menu li.subcate:hover .subnav a.on {
  363. color: #0188fb
  364. }
  365. .menu li.subcate:hover .subnav a.on:after {
  366. color: #0188fb
  367. }
  368. .menu li.subcate .subnav a {
  369. color: #333
  370. }
  371. .menu.on {
  372. width: 100%;
  373. float: left;
  374. display: inline;
  375. margin: 0 -20px;
  376. padding: 10px 20px 0;
  377. border-top: 1px solid #e4e8eb;
  378. background: #fff;
  379. position: absolute;
  380. top: 50px;
  381. z-index: 9;
  382. display: block
  383. }
  384. .menu.on li {
  385. width: 100%;
  386. float: none;
  387. line-height: 40px;
  388. border-bottom: 1px dotted #e4e8eb;
  389. display: block
  390. }
  391. .menu.on li a {
  392. display: block
  393. }
  394. .menuico {
  395. width: 38px;
  396. height: 38px;
  397. float: right;
  398. border-radius: 2px;
  399. cursor: pointer;
  400. position: relative;
  401. z-index: 10;
  402. top: 7px;
  403. display: none;
  404. -webkit-transition: all .2s ease-in;
  405. -moz-transition: all .2s ease-in;
  406. -o-transition: all .2s ease-in;
  407. transition: all .2s ease-in
  408. }
  409. .menuico span {
  410. width: 21px;
  411. height: 2px;
  412. background-color: #0188fb;
  413. position: absolute;
  414. top: 50%;
  415. left: 50%;
  416. display: block;
  417. -webkit-transform: translateX(-50%) translateY(-50%);
  418. -moz-transform: translateX(-50%) translateY(-50%);
  419. transform: translateX(-50%) translateY(-50%);
  420. -webkit-transition: all .2s ease-in;
  421. -moz-transition: all .2s ease-in;
  422. -o-transition: all .2s ease-in;
  423. transition: all .2s ease-in
  424. }
  425. .menuico span:first-child {
  426. margin-top: -6px
  427. }
  428. .menuico span:last-child {
  429. margin-top: 6px
  430. }
  431. .menuico.on span:first-child {
  432. width: 20px;
  433. margin-top: -8px;
  434. margin-left: -7px;
  435. -webkit-transform: rotate(45deg);
  436. -moz-transform: rotate(45deg);
  437. transform: rotate(45deg)
  438. }
  439. .menuico.on span:nth-child(2) {
  440. opacity: 0;
  441. width: 2px;
  442. left: 20px;
  443. -moz-transition-delay: 0s;
  444. -o-transition-delay: 0s;
  445. -webkit-transition-delay: 0s;
  446. transition-delay: 0s;
  447. -webkit-transition: all .1s ease-in;
  448. -moz-transition: all .1s ease-in;
  449. -o-transition: all .1s ease-in;
  450. transition: all .1s ease-in
  451. }
  452. .menuico.on span {
  453. background-color: #333;
  454. -webkit-transform-origin: 0;
  455. -moz-transform-origin: 0;
  456. transform-origin: 0
  457. }
  458. .menuico.on span:last-child {
  459. width: 20px;
  460. margin-top: 6px;
  461. margin-left: -7px;
  462. -webkit-transform: rotate(-45deg);
  463. -moz-transform: rotate(-45deg);
  464. transform: rotate(-45deg)
  465. }
  466. .fademask.on {
  467. width: 100%;
  468. height: 100%;
  469. background: rgba(0,0,0,0.5);
  470. position: fixed;
  471. top: 0;
  472. right: 0;
  473. bottom: 0;
  474. left: 0;
  475. z-index: 1
  476. }
  477. .sch {
  478. display: inline-block
  479. }
  480. .schico {
  481. width: 45px;
  482. height: 70px;
  483. line-height: 74px;
  484. text-align: center;
  485. cursor: pointer;
  486. position: absolute;
  487. top: 0;
  488. right: 0;
  489. transition: all ease .3s
  490. }
  491. .schico a {
  492. display: block
  493. }
  494. .schico a:after {
  495. content: "\e6e1";
  496. font-size: 30px;
  497. color: #888;
  498. font-weight: bold;
  499. font-family: iconfont
  500. }
  501. .sch-m {
  502. line-height: 0;
  503. position: relative;
  504. display: none
  505. }
  506. .sch-m input {
  507. width: 100%;
  508. height: 50px;
  509. padding: 0 18px;
  510. font-size: 18px;
  511. color: #333;
  512. line-height: 50px;
  513. border: 0;
  514. outline: 0;
  515. border-bottom: 2px solid #0188fb;
  516. border-radius: 3px;
  517. box-sizing: border-box;
  518. background: transparent
  519. }
  520. .sch-m input:focus {
  521. color: #0188fb
  522. }
  523. .sch-m button {
  524. width: 30px;
  525. height: 30px;
  526. padding: 0;
  527. border: 0;
  528. outline: 0;
  529. cursor: pointer;
  530. background: transparent;
  531. position: absolute;
  532. bottom: 10px;
  533. right: 10px
  534. }
  535. .sch-m button:after {
  536. content: "\e6e1";
  537. font-size: 30px;
  538. color: #0188fb;
  539. font-family: iconfont;
  540. font-weight: 600;
  541. display: inline-block;
  542. vertical-align: top
  543. }
  544. .schfixed {
  545. width: 262px;
  546. padding: 20px;
  547. border-top: 1px solid #0188fb;
  548. box-shadow: 0 0 2px 0 #ddd;
  549. background: #fff;
  550. position: absolute;
  551. top: 70px;
  552. right: 0;
  553. z-index: 10;
  554. display: none
  555. }
  556. .schfixed:before {
  557. content: "";
  558. width: 0;
  559. height: 0;
  560. margin: -20px 0 0 0;
  561. border: 10px solid transparent;
  562. border-bottom-color: #0188fb;
  563. position: absolute;
  564. top: 0;
  565. right: 14px;
  566. z-index: 3
  567. }
  568. .schfixed:after {
  569. content: "";
  570. width: 0;
  571. height: 0;
  572. margin: -19px 0 0 0;
  573. border: 10px solid transparent;
  574. border-bottom-color: #fff;
  575. position: absolute;
  576. top: 0;
  577. right: 14px;
  578. z-index: 3
  579. }
  580. .schfixed form {
  581. position: relative;
  582. zoom: 1
  583. }
  584. .schfixed form:after {
  585. content: "";
  586. display: block;
  587. clear: both
  588. }
  589. .schfixed input {
  590. width: 100%;
  591. height: 38px;
  592. float: left;
  593. display: inline;
  594. padding: 0 38px 0 10px;
  595. font-size: 14px;
  596. color: #333;
  597. line-height: 36px;
  598. border: 1px solid #e4e8eb;
  599. outline: 0;
  600. border-radius: 3px;
  601. box-sizing: border-box;
  602. background: #fff
  603. }
  604. .schfixed input:focus {
  605. color: #0188fb;
  606. background-color: #fff;
  607. border-color: #aab7c1;
  608. outline: 0;
  609. box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
  610. }
  611. .schfixed button {
  612. width: 38px;
  613. height: 38px;
  614. padding: 0;
  615. line-height: 38px;
  616. border: 0;
  617. outline: 0;
  618. cursor: pointer;
  619. background: #0188fb;
  620. position: absolute;
  621. top: 0;
  622. right: 0
  623. }
  624. .schfixed button:after {
  625. content: "\e6e1";
  626. font-size: 26px;
  627. color: #fff;
  628. font-family: iconfont;
  629. display: inline-block;
  630. vertical-align: top
  631. }
  632. .schfixed.on {
  633. display: block
  634. }
  635. .schbox {
  636. width: 100%;
  637. height: 100%;
  638. position: fixed;
  639. top: 0;
  640. left: 0;
  641. z-index: 11;
  642. display: none
  643. }
  644. .schbox.on {
  645. display: block
  646. }
  647. .schbg {
  648. background: rgba(0,0,0,0.9);
  649. position: absolute;
  650. top: 0;
  651. right: 0;
  652. bottom: 0;
  653. left: 0;
  654. z-index: 1
  655. }
  656. .schclose {
  657. font-size: 40px;
  658. color: #0188fb;
  659. font-family: iconfont;
  660. cursor: pointer;
  661. position: absolute;
  662. top: 0;
  663. right: 40px;
  664. z-index: 2
  665. }
  666. .schform {
  667. width: 600px;
  668. position: absolute;
  669. top: 100px;
  670. left: 50%;
  671. z-index: 2;
  672. transform: translate(-50%, 0)
  673. }
  674. .schform form {
  675. position: relative
  676. }
  677. .schform input {
  678. width: 100%;
  679. font-size: 22px;
  680. color: #0188fb;
  681. line-height: 50px;
  682. border: 0;
  683. outline: 0;
  684. border-bottom: 2px solid #0188fb;
  685. border-radius: 3px;
  686. background: transparent
  687. }
  688. .schform input:focus {
  689. color: #495057;
  690. background-color: #fff;
  691. border-color: #aab7c1;
  692. outline: 0;
  693. box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
  694. }
  695. .schform button {
  696. width: 39px;
  697. height: 39px;
  698. border: 0;
  699. outline: 0;
  700. cursor: pointer;
  701. background: transparent;
  702. position: absolute;
  703. bottom: 8px;
  704. right: 0
  705. }
  706. .schform button:after {
  707. content: "\e077";
  708. font-size: 28px;
  709. color: #0188fb;
  710. font-family: iconfont;
  711. display: inline-block;
  712. vertical-align: top
  713. }
  714. .schads {
  715. margin-top: 30px
  716. }
  717. .schads h3 {
  718. margin: 10px 0;
  719. font-size: 15px;
  720. color: #e4e8eb;
  721. line-height: 30px
  722. }
  723. .schads a {
  724. margin-bottom: 10px;
  725. display: block
  726. }
  727. .searchnull {
  728. padding: 20% 0;
  729. color: #888;
  730. text-align: center
  731. }
  732. .searchnull:before {
  733. content: "\e869";
  734. margin-bottom: 10px;
  735. font-size: 100px;
  736. color: #e4e8eb;
  737. font-family: iconfont;
  738. display: block
  739. }
  740. .main {
  741. margin-bottom: 20px
  742. }
  743. .main .mask {
  744. margin-bottom: 20px
  745. }
  746. .main.fixed {
  747. padding-top: 70px
  748. }
  749. .main .block:last-child {
  750. margin-bottom: 0
  751. }
  752. .banner {
  753. margin-bottom: 30px;
  754. padding: 0 18px;
  755. font-size: 40px;
  756. color: #fff;
  757. text-align: center;
  758. background-repeat: no-repeat;
  759. background-position: 50% 0;
  760. background-size: cover;
  761. overflow: hidden;
  762. position: relative
  763. }
  764. .banner:before {
  765. content: "";
  766. width: 100%;
  767. height: 100%;
  768. background: none;
  769. position: absolute;
  770. top: 0;
  771. left: 0;
  772. z-index: 1
  773. }
  774. .banner h2 {
  775. margin-bottom: 20px;
  776. text-shadow: 0 1px 5px #999;
  777. position: absolute;
  778. top: 50%;
  779. left: 50%;
  780. transform: translate(-50%, -50%);
  781. z-index: 2
  782. }
  783. .banner h2:after {
  784. content: "";
  785. width: 40px;
  786. height: 2px;
  787. margin-left: -20px;
  788. background: #fff;
  789. position: absolute;
  790. left: 50%;
  791. bottom: -20px
  792. }
  793. .display {
  794. background-size: cover
  795. }
  796. .loader {
  797. width: 50px;
  798. height: 50px;
  799. margin: -25px 0 0 -25px;
  800. border-top: 1px solid rgba(0,0,0,0.08);
  801. border-right: 1px solid rgba(0,0,0,0.08);
  802. border-bottom: 1px solid rgba(0,0,0,0.08);
  803. border-left: 1px solid rgba(0,0,0,0.5);
  804. border-radius: 50%;
  805. position: absolute;
  806. top: 50%;
  807. left: 50%;
  808. z-index: 20;
  809. -webkit-animation: loader 700ms infinite linear;
  810. animation: loader 700ms infinite linear
  811. }
  812. @keyframes loader {
  813. 0% {
  814. transform: rotate(0deg)
  815. }
  816. 100% {
  817. transform: rotate(360deg)
  818. }
  819. }
  820. .sitemap {
  821. margin-bottom: 5px;
  822. font-size: 14px;
  823. color: #888;
  824. line-height: 24px
  825. }
  826. .sitemap a {
  827. font-size: 14px;
  828. color: #888
  829. }
  830. .sitemap a:hover {
  831. color: #0188fb
  832. }
  833. .content {
  834. width: 70%;
  835. float: left;
  836. display: inline
  837. }
  838. .content.wide {
  839. width: 100%
  840. }
  841. .block {
  842. margin-bottom: 20px;
  843. padding: 30px;
  844. box-shadow: 0 1px 5px 0 rgba(0,0,0,0.05);
  845. box-sizing: border-box;
  846. background: #fff
  847. }
  848. .block .post:last-child {
  849. margin-bottom: 0;
  850. padding-bottom: 0;
  851. border: 0
  852. }
  853. .block .cmtsitem:last-child {
  854. padding-bottom: 0;
  855. border-bottom: 0
  856. }
  857. .block#divCommentPost {
  858. margin-bottom: 0
  859. }
  860. .post {
  861. margin-bottom: 20px;
  862. padding-bottom: 20px;
  863. border-bottom: 1px solid #e4e8eb;
  864. zoom: 1
  865. }
  866. .post:after {
  867. content: "";
  868. display: block;
  869. clear: both
  870. }
  871. .post h1 {
  872. margin-bottom: 8px;
  873. font-size: 26px;
  874. color: #333;
  875. font-weight: 700;
  876. line-height: 36px
  877. }
  878. .post h2 {
  879. margin-bottom: 5px;
  880. line-height: 36px;
  881. font-weight: 700
  882. }
  883. .post h2 a {
  884. font-size: 26px;
  885. color: #333
  886. }
  887. .post h2 a:hover {
  888. color: #0188fb
  889. }
  890. .post h2 .istop {
  891. color: #888;
  892. vertical-align: top
  893. }
  894. .post h2 .istop:before {
  895. content: "\e67a";
  896. font-size: 42px;
  897. color: #0188fb;
  898. font-family: iconfont;
  899. font-weight: normal;
  900. vertical-align: top
  901. }
  902. .post .info {
  903. margin-bottom: 15px;
  904. font-size: 14px;
  905. zoom: 1
  906. }
  907. .post .info:after {
  908. content: "";
  909. display: block;
  910. clear: both
  911. }
  912. .post .info.simple {
  913. margin: 0
  914. }
  915. .post .user,.post .date,.post .cate,.post .view,.post .cmt {
  916. margin-right: 15px;
  917. color: #888
  918. }
  919. .post .user:before,.post .date:before,.post .cate:before,.post .view:before,.post .cmt:before {
  920. margin-right: 5px;
  921. font-size: 18px;
  922. font-family: iconfont;
  923. vertical-align: top
  924. }
  925. .post .user a,.post .date a,.post .cate a,.post .view a,.post .cmt a {
  926. color: #888
  927. }
  928. .post .user a:hover,.post .date a:hover,.post .cate a:hover,.post .view a:hover,.post .cmt a:hover {
  929. color: #0188fb
  930. }
  931. .post .user:before {
  932. content: "\e6a9"
  933. }
  934. .post .date:before {
  935. content: "\e69c"
  936. }
  937. .post .cate:before {
  938. content: "\e6e2"
  939. }
  940. .post .view:before {
  941. content: "\e6a7"
  942. }
  943. .post .cmt:before {
  944. content: "\e6a8"
  945. }
  946. .post .ctrl {
  947. float: right;
  948. display: inline;
  949. display: inline-block
  950. }
  951. .post .ctrl a {
  952. width: 21px;
  953. height: 20px;
  954. margin: 0 0 0 8px;
  955. text-align: center;
  956. line-height: 20px;
  957. border-radius: 2px;
  958. background: #e4e8eb;
  959. display: inline-block;
  960. vertical-align: top
  961. }
  962. .post .ctrl a:before {
  963. content: "A⁺";
  964. font-size: 16px;
  965. color: #999;
  966. font-family: iconfont
  967. }
  968. .post .ctrl a:nth-child(2):before {
  969. content: "A⁻"
  970. }
  971. .post .ctrl a:nth-child(3):before {
  972. content: "A"
  973. }
  974. .postimg {
  975. width: 120px;
  976. float: left;
  977. display: inline;
  978. margin: 0 20px 0 0;
  979. border-radius: 3px;
  980. overflow: hidden
  981. }
  982. .postimg a {
  983. width: 100%;
  984. height: 0;
  985. padding-bottom: 70%;
  986. text-align: center;
  987. overflow: hidden;
  988. position: relative;
  989. display: block
  990. }
  991. .postimg a img {
  992. min-width: 100%;
  993. min-height: 100%;
  994. position: absolute;
  995. top: 0;
  996. left: 0
  997. }
  998. .postimg:hover img {
  999. -moz-transform: scale(1.1);
  1000. -o-transform: scale(1.1);
  1001. transform: scale(1.1)
  1002. }
  1003. .post .intro {
  1004. margin-bottom: 10px;
  1005. color: #888;
  1006. line-height: 28px;
  1007. word-wrap: break-word;
  1008. word-break: break-all;
  1009. text-align: justify;
  1010. text-justify: inter-ideograph
  1011. }
  1012. .post .intro a {
  1013. color: #888
  1014. }
  1015. .post .intro.isimg {
  1016. height: 85px;
  1017. -webkit-box-orient: vertical;
  1018. -webkit-line-clamp: 3;
  1019. overflow: hidden;
  1020. display: -webkit-box
  1021. }
  1022. .post object,.post embed,.post iframe,.post table {
  1023. max-width: 100%
  1024. }
  1025. .post .readmore {
  1026. padding: 5px 10px 5px 20px;
  1027. color: #888;
  1028. border: 2px solid #e4e8eb;
  1029. border-radius: 20px;
  1030. display: inline-block
  1031. }
  1032. .post .readmore:after {
  1033. content: "\e6a6";
  1034. margin-left: 5px;
  1035. font-family: iconfont
  1036. }
  1037. .post .readmore:hover {
  1038. color: #0188fb;
  1039. border-color: #0188fb
  1040. }
  1041. .post .readmore:hover:after {
  1042. color: #0188fb
  1043. }
  1044. .posttitle {
  1045. padding: 0 0 10px;
  1046. line-height: 30px;
  1047. border-bottom: 1px solid #e4e8eb
  1048. }
  1049. .posttitle h1,.posttitle h2,.posttitle h3,.posttitle h4,.posttitle h5,.posttitle h6 {
  1050. font-size: 22px;
  1051. color: #333
  1052. }
  1053. .post .tags {
  1054. color: #888;
  1055. text-indent: 0
  1056. }
  1057. .post .tags a {
  1058. margin: 0 5px 10px;
  1059. padding: 0 12px;
  1060. font-size: 16px;
  1061. color: #333;
  1062. line-height: 27px;
  1063. border: 1px solid #e4e8eb;
  1064. border-radius: 2px;
  1065. display: inline-block
  1066. }
  1067. .post .tags a:hover {
  1068. color: #0188fb;
  1069. border: 1px solid #0188fb
  1070. }
  1071. .pagebar,.cmtpagebar {
  1072. width: 100%;
  1073. margin: 0 auto;
  1074. padding: 15px 0 10px;
  1075. font-size: 0;
  1076. text-align: center;
  1077. }
  1078. .pagebar .now-page,.cmtpagebar .now-page {
  1079. font-size: 14px;
  1080. color: #fff;
  1081. font-weight: 400;
  1082. padding: 5px 10px;
  1083. margin: 0 5px 5px;
  1084. border: 1px solid #0188fb;
  1085. border-radius: 2px;
  1086. background: #0188fb;
  1087. display: inline-block
  1088. }
  1089. .pagebar a,.cmtpagebar a {
  1090. margin: 2px;
  1091. padding: 5px 10px;
  1092. font-size: 14px;
  1093. color: #777;
  1094. font-weight: 400;
  1095. border: 1px solid #e2e2e2;
  1096. border-radius: 2px;
  1097. background: #fff;
  1098. display: inline-block
  1099. }
  1100. .pagebar a:hover,.cmtpagebar a:hover {
  1101. color: #fff;
  1102. border: 1px solid #0188fb;
  1103. background: #0188fb
  1104. }
  1105. .pagination-loading {
  1106. margin: 0 0 20px;
  1107. text-align: center;
  1108. border-radius: 2px;
  1109. background: #ebebeb
  1110. }
  1111. .pagination-loading a {
  1112. padding: 10px 0;
  1113. border: 1px solid #e4e8eb;
  1114. display: block
  1115. }
  1116. .pagination {
  1117. margin: 0 0 5px 0;
  1118. border-radius: 0;
  1119. }
  1120. .pagination {
  1121. display: -ms-flexbox;
  1122. display: flex;
  1123. padding-left: 0;
  1124. list-style: none;
  1125. border-radius: .25rem;
  1126. }
  1127. .pagination > .active > a,
  1128. .pagination > .active > a:focus,
  1129. .pagination > .active > a:hover,
  1130. .pagination > .active > span,
  1131. .pagination > .active > span:focus,
  1132. .pagination > .active > span:hover {
  1133. background-color: #2d8cf0;
  1134. border-color: #2d8cf0;
  1135. }
  1136. .pagination > .active > a {
  1137. color: #fff;
  1138. }
  1139. .ias_trigger,.ias_loader {
  1140. margin: 0 0 20px;
  1141. font-size: 16px;
  1142. color: #888
  1143. }
  1144. .ias_trigger a,.ias_loader a {
  1145. padding: 10px 0;
  1146. font-size: 16px;
  1147. color: #666;
  1148. text-align: center;
  1149. border: 1px solid #e4e8eb;
  1150. background: #fff;
  1151. display: block
  1152. }
  1153. .ias_trigger a:hover,.ias_loader a:hover {
  1154. color: #888;
  1155. background: #e4e8eb
  1156. }
  1157. .ias_loader {
  1158. line-height: 44px
  1159. }
  1160. .contitle {
  1161. margin-bottom: 30px;
  1162. line-height: 38px;
  1163. border-bottom: 1px solid #e4e8eb;
  1164. background: #fff
  1165. }
  1166. .contitle h1,.contitle h2 {
  1167. margin-bottom: -1px;
  1168. font-size: 16px;
  1169. border-bottom: 1px solid #0188fb;
  1170. display: inline-block;
  1171. vertical-align: top
  1172. }
  1173. .single {
  1174. padding: 20px 0 0;
  1175. line-height: 2;
  1176. border-top: 1px dotted #e4e8eb;
  1177. word-wrap: break-word;
  1178. word-break: break-all;
  1179. overflow: hidden
  1180. }
  1181. .single ul,.single ol {
  1182. margin-bottom: 20px;
  1183. list-style-position: inside
  1184. }
  1185. .single ul p,.single ol p {
  1186. display: inline
  1187. }
  1188. .single p {
  1189. margin-bottom: 1em;
  1190. text-align: justify;
  1191. text-justify: inter-ideograph;
  1192. position: relative
  1193. }
  1194. .single p img.ue-image {
  1195. margin: 0 auto;
  1196. display: block
  1197. }
  1198. .single p img.ue-emoticon {
  1199. vertical-align: middle
  1200. }
  1201. .single p.ue-upload {
  1202. padding: 10px;
  1203. border: 1px dashed #e4e8eb
  1204. }
  1205. .single p.ue-upload img {
  1206. vertical-align: top !important
  1207. }
  1208. .single p.ue-upload a {
  1209. font-size: 14px !important;
  1210. color: #0188fb !important
  1211. }
  1212. .single h1,.single h2,.single h3,.single h4,.single h5,.single h6 {
  1213. margin-bottom: 20px;
  1214. line-height: 1.5;
  1215. border-bottom: 1px solid #e4e8eb;
  1216. position: relative
  1217. }
  1218. .single h1:after,.single h2:after,.single h3:after,.single h4:after,.single h5:after,.single h6:after {
  1219. content: "";
  1220. width: 32px;
  1221. height: 0;
  1222. border-bottom: 2px solid #0188fb;
  1223. position: absolute;
  1224. left: 0;
  1225. bottom: -1px
  1226. }
  1227. .single h1 {
  1228. font-size: 32px
  1229. }
  1230. .single h2 {
  1231. font-size: 28px
  1232. }
  1233. .single h3 {
  1234. font-size: 24px
  1235. }
  1236. .single h4 {
  1237. font-size: 22px
  1238. }
  1239. .single h5 {
  1240. font-size: 18px
  1241. }
  1242. .single h6 {
  1243. font-size: 16px
  1244. }
  1245. .single blockquote {
  1246. margin-bottom: 20px;
  1247. padding: 10px 20px 10px 50px;
  1248. font-size: 14px;
  1249. color: #888;
  1250. line-height: 24px;
  1251. border: 1px dotted #ccc;
  1252. background: #f8f8f8;
  1253. position: relative
  1254. }
  1255. .single blockquote:before {
  1256. content: "“";
  1257. font-size: 70px;
  1258. color: #e4e8eb;
  1259. font-family: arial;
  1260. line-height: 1;
  1261. position: absolute;
  1262. top: 5px;
  1263. left: 14px
  1264. }
  1265. .single blockquote p {
  1266. margin: 0
  1267. }
  1268. .single table {
  1269. margin-bottom: 20px;
  1270. font-size: 14px;
  1271. border-collapse: collapse;
  1272. border-spacing: 0
  1273. }
  1274. .single .th {
  1275. width: 100px;
  1276. background: #f5f5f5
  1277. }
  1278. .single td {
  1279. width: 308px;
  1280. padding: 5px 10px;
  1281. color: #666;
  1282. line-height: 24px;
  1283. word-break: break-all;
  1284. border: 1px solid #e4e8eb
  1285. }
  1286. .single div.prism-show-language>div.prism-show-language-label[data-language] {
  1287. font-size: 14px
  1288. }
  1289. .single pre[class*="language-"] {
  1290. margin-bottom: 20px;
  1291. font-size: 14px
  1292. }
  1293. .single.indent p,.single.indent ol,.single.indent ul {
  1294. text-indent: 2em
  1295. }
  1296. .single.indent blockquote p {
  1297. text-indent: 0
  1298. }
  1299. .videowrap {
  1300. overflow: hidden
  1301. }
  1302. .videobox {
  1303. width: 100%;
  1304. height: 0;
  1305. padding-bottom: 56.25%;
  1306. background: #111;
  1307. display: block
  1308. }
  1309. .videobox object,.videobox video,.videobox embed,.videobox iframe {
  1310. width: 100%;
  1311. height: 100%;
  1312. position: absolute;
  1313. display: block
  1314. }
  1315. .copynotice {
  1316. width: 100%;
  1317. margin-bottom: 20px;
  1318. padding: 10px 15px;
  1319. font-size: 14px;
  1320. color: #888;
  1321. text-indent: 0;
  1322. text-align: justify;
  1323. text-justify: inter-ideograph;
  1324. line-height: 22px;
  1325. border: 1px dotted #ccc;
  1326. box-sizing: border-box;
  1327. background: #f8f8f8;
  1328. display: flex;
  1329. zoom: 1;
  1330. -webkit-justify-content: center;
  1331. justify-content: center;
  1332. -webkit-align-items: flex-end;
  1333. align-items: center
  1334. }
  1335. .copynotice:after {
  1336. content: "";
  1337. display: block;
  1338. clear: both
  1339. }
  1340. .copynotice .qr {
  1341. width: 70px;
  1342. height: 70px;
  1343. float: left;
  1344. display: inline;
  1345. margin-right: 15px;
  1346. border: 3px solid #fff;
  1347. background: #fff
  1348. }
  1349. .copynotice b,.copynotice strong {
  1350. margin: 0 5px;
  1351. color: #333
  1352. }
  1353. .copynoticetxt {
  1354. width: 100%;
  1355. vertical-align: middle
  1356. }
  1357. .copynoticetxt p {
  1358. margin: 0
  1359. }
  1360. .copynoticetxt a {
  1361. color: #333
  1362. }
  1363. .sharebox .label {
  1364. font-size: 14px;
  1365. color: #999;
  1366. line-height: 30px
  1367. }
  1368. .sharebox .label,.sharebox .sharebtn {
  1369. display: inline-block
  1370. }
  1371. .pages {
  1372. margin-top: 20px;
  1373. overflow: hidden;
  1374. zoom: 1
  1375. }
  1376. .pages:after {
  1377. content: "";
  1378. display: block;
  1379. clear: both
  1380. }
  1381. .pages a {
  1382. color: #333
  1383. }
  1384. .pages a:hover {
  1385. color: #0188fb
  1386. }
  1387. .pages p {
  1388. height: 30px;
  1389. color: #999;
  1390. white-space: nowrap;
  1391. text-overflow: ellipsis;
  1392. overflow: hidden
  1393. }
  1394. .pages span {
  1395. color: #888
  1396. }
  1397. a.backlist {
  1398. float: right;
  1399. display: inline;
  1400. margin: 10px 0 0;
  1401. padding: 5px 10px 5px 20px;
  1402. color: #888;
  1403. border: 2px solid #e4e8eb;
  1404. border-radius: 20px;
  1405. display: inline-block
  1406. }
  1407. a.backlist:after {
  1408. content: "\e6a6";
  1409. margin-left: 5px;
  1410. font-family: iconfont
  1411. }
  1412. a.backlist:hover {
  1413. color: #0188fb;
  1414. border-color: #0188fb
  1415. }
  1416. .relate {
  1417. padding: 20px 0;
  1418. border-top: 1px dotted #e4e8eb;
  1419. overflow: hidden;
  1420. zoom: 1
  1421. }
  1422. .relate:after {
  1423. content: "";
  1424. display: block;
  1425. clear: both
  1426. }
  1427. .relatecon .relate:first-child {
  1428. border: 0
  1429. }
  1430. .relatelist {
  1431. margin-top: 5px;
  1432. padding-bottom: 5px;
  1433. font-size: 12px;
  1434. color: #999;
  1435. line-height: 27px;
  1436. border-bottom: 1px dotted #e4e8eb;
  1437. position: relative
  1438. }
  1439. .relatelist a {
  1440. width: 75%;
  1441. margin-right: 20px;
  1442. font-size: 16px;
  1443. color: #333;
  1444. white-space: nowrap;
  1445. text-overflow: ellipsis;
  1446. overflow: hidden;
  1447. display: inline-block;
  1448. vertical-align: top
  1449. }
  1450. .relatelist a:hover {
  1451. color: #0188fb
  1452. }
  1453. .relatelist .posttime {
  1454. font-size: 14px;
  1455. color: #bbb;
  1456. position: absolute;
  1457. top: 0;
  1458. right: 0
  1459. }
  1460. .relate:last-child {
  1461. padding: 20px 0 0
  1462. }
  1463. .relateinfo h3 {
  1464. margin: 0 0 10px
  1465. }
  1466. .relateinfo h3 a {
  1467. font-size: 18px;
  1468. color: #333;
  1469. font-weight: 700
  1470. }
  1471. .relateinfo h3 a:hover {
  1472. color: #0188fb
  1473. }
  1474. .relateinfo p {
  1475. max-height: 47px;
  1476. color: #888;
  1477. line-height: 26px;
  1478. -webkit-box-orient: vertical;
  1479. -webkit-line-clamp: 2;
  1480. overflow: hidden;
  1481. display: -webkit-box
  1482. }
  1483. .relateinfo p a {
  1484. color: #888
  1485. }
  1486. .relateimg {
  1487. width: 120px;
  1488. float: left;
  1489. display: inline;
  1490. margin-right: 20px
  1491. }
  1492. .relateimg a {
  1493. width: 100%;
  1494. height: 0;
  1495. padding-bottom: 70%;
  1496. overflow: hidden;
  1497. position: relative;
  1498. display: block
  1499. }
  1500. .relateimg a img {
  1501. width: 100%;
  1502. min-height: 100%;
  1503. position: absolute;
  1504. top: 0;
  1505. left: 0
  1506. }
  1507. .relateimg:hover img {
  1508. -moz-transform: scale(1.1);
  1509. -o-transform: scale(1.1);
  1510. transform: scale(1.1)
  1511. }
  1512. .cmtsitem {
  1513. padding: 24px 0;
  1514. border-bottom: 1px dotted #e4e8eb;
  1515. zoom: 1
  1516. }
  1517. .cmtsitem:after {
  1518. content: "";
  1519. display: block;
  1520. clear: both
  1521. }
  1522. .cmtsitem .avatar {
  1523. width: 48px;
  1524. height: 48px;
  1525. float: left;
  1526. display: inline;
  1527. margin-right: 10px;
  1528. overflow: hidden
  1529. }
  1530. .cmtsitem .avatar img {
  1531. width: 48px;
  1532. height: 48px;
  1533. border-radius: 3px
  1534. }
  1535. .cmtsitem .cmtscon .avatar {
  1536. display: none
  1537. }
  1538. .cmtscon {
  1539. margin-left: 65px;
  1540. zoom: 1
  1541. }
  1542. .cmtscon:after {
  1543. content: "";
  1544. display: block;
  1545. clear: both
  1546. }
  1547. .cmtsdate {
  1548. float: right;
  1549. display: inline;
  1550. font-size: 14px;
  1551. color: #bbb
  1552. }
  1553. .cmtsname {
  1554. font-size: 14px;
  1555. color: #333;
  1556. display: inline-block
  1557. }
  1558. .cmtsname a {
  1559. font-size: 14px;
  1560. color: #333
  1561. }
  1562. .cmtsbody {
  1563. margin-top: 10px;
  1564. line-height: 26px;
  1565. word-wrap: break-word;
  1566. word-break: break-all
  1567. }
  1568. .cmtsbody .cmtscon {
  1569. margin: 0;
  1570. padding-left: 20px;
  1571. border-left: 2px solid #e4e8eb
  1572. }
  1573. .cmtsbody .cmtsfoot {
  1574. display: none !important
  1575. }
  1576. .cmtsreply {
  1577. margin-top: 15px;
  1578. padding-left: 20px;
  1579. border-left: 2px solid #e4e8eb
  1580. }
  1581. .cmtsreplyname {
  1582. font-size: 14px;
  1583. color: #888
  1584. }
  1585. .cmtsreplyname a {
  1586. font-size: 14px;
  1587. color: #333
  1588. }
  1589. .cmtsreplycon {
  1590. margin-top: 10px;
  1591. word-wrap: break-word;
  1592. word-break: break-all
  1593. }
  1594. .cmtsreplydate {
  1595. margin-top: 10px;
  1596. font-size: 14px;
  1597. color: #bbb
  1598. }
  1599. .cmtsfoot {
  1600. margin-top: 10px
  1601. }
  1602. .cmtsfoot .reply {
  1603. font-size: 14px;
  1604. color: #888
  1605. }
  1606. .cmtsfoot .reply:before {
  1607. content: "\e6a8";
  1608. margin-right: 3px;
  1609. font-size: 22px;
  1610. color: #888;
  1611. font-family: iconfont;
  1612. vertical-align: top
  1613. }
  1614. .cmtsfoot .reply:hover {
  1615. color: #0188fb
  1616. }
  1617. .cmtsfoot .reply:hover:before {
  1618. color: #0188fb
  1619. }
  1620. .cmts.nocmt {
  1621. padding: 15px 30px
  1622. }
  1623. .cmts.nocmt:before {
  1624. content: attr(data-content);
  1625. width: 100%;
  1626. font-size: 20px;
  1627. color: #888;
  1628. text-align: center;
  1629. display: inline-block
  1630. }
  1631. .reply-frm {
  1632. border-left: 2px solid #e4e8eb;
  1633. padding: 0 0 0 20px;
  1634. margin-top: 15px;
  1635. box-shadow: none
  1636. }
  1637. .reply-frm .cmtimg {
  1638. display: none !important
  1639. }
  1640. .reply-frm .cmtarea {
  1641. padding: 0
  1642. }
  1643. #cancel-reply {
  1644. height: 26px;
  1645. margin-left: 20px;
  1646. padding: 0 10px 0 6px;
  1647. font-size: 14px;
  1648. color: #0188fb;
  1649. line-height: 25px;
  1650. border: 2px solid #0188fb;
  1651. outline: 0;
  1652. box-sizing: content-box;
  1653. border-radius: 20px;
  1654. cursor: pointer;
  1655. background: #fff;
  1656. vertical-align: top;
  1657. display: none
  1658. }
  1659. #cancel-reply:before {
  1660. content: "\e6db";
  1661. margin-right: 3px;
  1662. font-size: 23px;
  1663. color: #0188fb;
  1664. font-family: iconfont;
  1665. vertical-align: sub
  1666. }
  1667. .comment {
  1668. margin-top: 20px;
  1669. zoom: 1
  1670. }
  1671. .comment:after {
  1672. content: "";
  1673. display: block;
  1674. clear: both
  1675. }
  1676. .cmtimg {
  1677. width: 48px;
  1678. float: left;
  1679. text-align: center
  1680. }
  1681. .cmtimg img {
  1682. width: 48px;
  1683. height: 48px;
  1684. border-radius: 3px
  1685. }
  1686. .cmtimg p {
  1687. height: 20px;
  1688. font-size: 14px;
  1689. color: #888;
  1690. overflow: hidden
  1691. }
  1692. .cmtinfo {
  1693. padding-left: 70px;
  1694. font-size: 14px;
  1695. word-break: break-all
  1696. }
  1697. .cmtinfo a {
  1698. color: #333
  1699. }
  1700. .cmtinfo .cmt {
  1701. margin: 15px 0 0 -20px;
  1702. padding-bottom: 0
  1703. }
  1704. .cmtinfo .cmt .cmt {
  1705. margin: 15px 0 0 -20px;
  1706. padding-bottom: 0
  1707. }
  1708. .cmtinfo .cmt .cmt .cmt {
  1709. margin: 15px 0 0 -20px;
  1710. padding-bottom: 0
  1711. }
  1712. .cmtinfo .cmtinfo {
  1713. width: 500px
  1714. }
  1715. .cmtinfo .cmtinfo .cmtinfo {
  1716. width: 430px
  1717. }
  1718. .cmtinfo .cmtinfo .cmtinfo .cmtinfo {
  1719. width: 360px
  1720. }
  1721. .cmttime,.cmttime a {
  1722. font-size: 12px;
  1723. color: #888
  1724. }
  1725. .cmtarea {
  1726. padding-left: 68px
  1727. }
  1728. .cmtarea textarea {
  1729. width: 100%;
  1730. margin: 0 0 10px;
  1731. padding: 5px 15px;
  1732. font-size: 16px;
  1733. color: #333;
  1734. line-height: 28px;
  1735. border: 1px solid #e4e8eb;
  1736. outline: 0;
  1737. border-radius: 3px;
  1738. overflow: hidden;
  1739. vertical-align: top;
  1740. box-sizing: border-box
  1741. }
  1742. .cmtarea textarea:focus {
  1743. color: #0188fb;
  1744. background-color: #fff;
  1745. border-color: #aab7c1;
  1746. outline: 0;
  1747. box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
  1748. }
  1749. .cmtsubmit button {
  1750. height: 36px;
  1751. margin: 0 10px 0 0;
  1752. padding: 0 20px;
  1753. font-size: 16px;
  1754. color: #888;
  1755. line-height: 32px;
  1756. border: 2px solid #e4e8eb;
  1757. outline: 0;
  1758. border-radius: 20px;
  1759. cursor: pointer;
  1760. background: #fff
  1761. }
  1762. .cmtsubmit button:before {
  1763. content: "\e69a";
  1764. margin-right: 3px;
  1765. font-size: 23px;
  1766. color: #888;
  1767. font-family: iconfont;
  1768. vertical-align: top
  1769. }
  1770. .cmtsubmit button:hover {
  1771. color: #0188fb;
  1772. border-color: #0188fb
  1773. }
  1774. .cmtsubmit button:hover:before {
  1775. color: #0188fb
  1776. }
  1777. .cmtsubmit span {
  1778. font-size: 14px;
  1779. color: #888
  1780. }
  1781. .cmtform {
  1782. width: 100%;
  1783. float: left;
  1784. margin: 0 0 20px;
  1785. padding: 0 0 20px;
  1786. border-bottom: 1px dotted #e4e8eb;
  1787. display: none
  1788. }
  1789. .cmtform p {
  1790. width: 49%;
  1791. float: left;
  1792. padding: 5px 0
  1793. }
  1794. .cmtform input {
  1795. width: 180px;
  1796. height: 27px;
  1797. padding: 2px 6px;
  1798. color: #333;
  1799. border: 1px solid #e4e8eb;
  1800. outline: 0;
  1801. border-radius: 3px
  1802. }
  1803. .cmtform input:focus {
  1804. color: #0188fb;
  1805. background-color: #fff;
  1806. border-color: #aab7c1;
  1807. outline: 0;
  1808. box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
  1809. }
  1810. .cmtform input {
  1811. *display: inline
  1812. }
  1813. .cmtform label {
  1814. padding: 0 10px;
  1815. line-height: 27px
  1816. }
  1817. .cmtform #inpVerify {
  1818. width: 100px
  1819. }
  1820. .cmtform img.imgcode {
  1821. width: 68px;
  1822. height: 31px;
  1823. margin-left: 10px;
  1824. border: 1px solid #e4e8eb;
  1825. cursor: pointer;
  1826. vertical-align: top
  1827. }
  1828. .sidebar {
  1829. width: 28%;
  1830. float: right;
  1831. display: inline
  1832. }
  1833. .sidebar.fixed .sidebox.fixed {
  1834. top: 75px
  1835. }
  1836. .sidebox {
  1837. margin-bottom: 20px;
  1838. padding: 30px;
  1839. box-shadow: 0 1px 5px 0 rgba(0,0,0,0.05);
  1840. box-sizing: border-box;
  1841. background: #fff
  1842. }
  1843. .sidebox dt {
  1844. margin-bottom: 10px;
  1845. padding: 0 0 10px;
  1846. font-size: 18px;
  1847. border-bottom: 1px solid #e4e8eb
  1848. }
  1849. .sidebox dd {
  1850. line-height: 30px
  1851. }
  1852. .sidebox dd ul {
  1853. overflow: hidden;
  1854. zoom: 1
  1855. }
  1856. .sidebox dd ul:after {
  1857. content: "";
  1858. display: block;
  1859. clear: both
  1860. }
  1861. .sidebox dd li {
  1862. border-bottom: 1px dotted #e4e8eb;
  1863. text-overflow: ellipsis;
  1864. overflow: hidden;
  1865. white-space: nowrap;
  1866. line-height: 2.5em;
  1867. }
  1868. .sidebox dd a {
  1869. color: #333
  1870. }
  1871. .sidebox dd a:hover, .sidebox dd .act{
  1872. color: #0188fb
  1873. }
  1874. .sidebox dd .sidelink a {
  1875. color: #fff
  1876. }
  1877. .sidebox dd .sidelink a:hover {
  1878. color: #fff
  1879. }
  1880. .sidebox dd .noimg .sidelink a {
  1881. font-size: 16px;
  1882. color: #333
  1883. }
  1884. .sidebox dd .noimg .sidelink a:hover {
  1885. color: #0188fb
  1886. }
  1887. .sidebox dd .sidecmtcon {
  1888. color: #888
  1889. }
  1890. .sidebox dd .sidecmtcon a {
  1891. color: #888
  1892. }
  1893. .sidebox .tagslist{
  1894. overflow: hidden;
  1895. }
  1896. .sidebox .tagslist a{
  1897. margin: 10px 10px 0 0;
  1898. display: block;
  1899. float: left;
  1900. border: 1px solid #eee;
  1901. padding: 1px 10px;
  1902. border-radius: 5px;
  1903. }
  1904. .sidebox.fixed {
  1905. position: fixed;
  1906. top: 0;
  1907. -webkit-transform: translateZ(0)
  1908. }
  1909. .sidebox.sticky {
  1910. position: absolute
  1911. }
  1912. .sideitem {
  1913. margin-bottom: 10px;
  1914. padding-bottom: 8px;
  1915. line-height: 26px;
  1916. border-bottom: 1px dotted #e4e8eb;
  1917. border-radius: 5px;
  1918. overflow: hidden;
  1919. position: relative;
  1920. zoom: 1
  1921. }
  1922. .sideitem:after {
  1923. content: "";
  1924. display: block;
  1925. clear: both
  1926. }
  1927. .sideitem:last-child {
  1928. margin: 0;
  1929. padding: 0
  1930. }
  1931. .sideitemimg {
  1932. background: #333
  1933. }
  1934. .sideitemimg a {
  1935. width: 100%;
  1936. height: 0;
  1937. padding-bottom: 70%;
  1938. text-align: center;
  1939. overflow: hidden;
  1940. position: relative;
  1941. display: block
  1942. }
  1943. .sideitemimg a img {
  1944. min-width: 100%;
  1945. min-height: 100%;
  1946. opacity: 1;
  1947. position: absolute;
  1948. top: 0;
  1949. left: 0;
  1950. -webkit-transition: opacity .3s ease-in-out;
  1951. -moz-transition: opacity .3s ease-in-out;
  1952. -o-transition: opacity .3s ease-in-out;
  1953. transition: opacity .3s ease-in-out
  1954. }
  1955. .sideitem:hover .sideitemimg img {
  1956. opacity: .8
  1957. }
  1958. .sideitem:hover .sidelink {
  1959. bottom: 0
  1960. }
  1961. .sideitem .itemtitle {
  1962. max-height: 52px;
  1963. overflow: hidden;
  1964. display: -webkit-box;
  1965. -webkit-box-orient: vertical;
  1966. -webkit-line-clamp: 2
  1967. }
  1968. .sideitem .hasimg {
  1969. white-space: nowrap;
  1970. text-overflow: ellipsis;
  1971. overflow: hidden
  1972. }
  1973. .sideitem .hasimg a {
  1974. display: inline
  1975. }
  1976. .sideitem.noimg .itemtitle {
  1977. color: #333
  1978. }
  1979. .sideitem.noimg .sideinfo {
  1980. color: #888
  1981. }
  1982. .sideitem.noimg .sidelink {
  1983. padding: 0;
  1984. background: none;
  1985. position: static
  1986. }
  1987. .sideimg {
  1988. width: 70px;
  1989. float: left;
  1990. display: inline;
  1991. margin-right: 10px;
  1992. border-radius: 5px;
  1993. overflow: hidden
  1994. }
  1995. .sideimg a {
  1996. width: 100%;
  1997. height: 0;
  1998. padding-bottom: 70%;
  1999. text-align: center;
  2000. overflow: hidden;
  2001. position: relative;
  2002. display: block
  2003. }
  2004. .sideimg a img {
  2005. min-width: 100%;
  2006. min-height: 100%;
  2007. opacity: 1;
  2008. position: absolute;
  2009. top: 0;
  2010. left: 0
  2011. }
  2012. .sideimg:hover img {
  2013. -moz-transform: scale(1.1);
  2014. -o-transform: scale(1.1);
  2015. transform: scale(1.1)
  2016. }
  2017. .sidelink {
  2018. padding: 5px 10px 5px;
  2019. color: #fff;
  2020. background: rgba(0,0,0,0.6);
  2021. position: absolute;
  2022. top: auto;
  2023. right: 0;
  2024. bottom: -25px;
  2025. left: 0;
  2026. -webkit-transition: bottom .3s ease-in-out;
  2027. -moz-transition: bottom .3s ease-in-out;
  2028. -o-transition: bottom .3s ease-in-out;
  2029. transition: bottom .3s ease-in-out
  2030. }
  2031. .sidelink a {
  2032. font-size: 14px;
  2033. line-height: 22px;
  2034. display: inline-block
  2035. }
  2036. .sidelink .sideinfo {
  2037. color: #e4e8eb
  2038. }
  2039. .sideinfo {
  2040. font-size: 12px;
  2041. color: #888;
  2042. text-align: right;
  2043. white-space: nowrap;
  2044. text-overflow: ellipsis;
  2045. overflow: hidden;
  2046. zoom: 1
  2047. }
  2048. .sideinfo:after {
  2049. content: "";
  2050. display: block;
  2051. clear: both
  2052. }
  2053. .sideinfo span,.sideinfo em {
  2054. float: left;
  2055. display: inline;
  2056. margin-right: 10px;
  2057. font-style: normal
  2058. }
  2059. .sideinfo span:before,.sideinfo em:before {
  2060. margin-right: 3px;
  2061. font-size: 16px;
  2062. font-family: iconfont;
  2063. vertical-align: middle
  2064. }
  2065. .sideinfo span.view:before,.sideinfo em.view:before {
  2066. content: "\e6a7"
  2067. }
  2068. .sideinfo span.cmt:before,.sideinfo em.cmt:before {
  2069. content: "\e6a8"
  2070. }
  2071. .sideinfo span.date:before,.sideinfo em.date:before {
  2072. content: "\e69c"
  2073. }
  2074. .sideinfo em span {
  2075. float: none
  2076. }
  2077. .sidecmtinfo {
  2078. font-size: 13px;
  2079. color: #888;
  2080. text-align: right;
  2081. zoom: 1
  2082. }
  2083. .sidecmtinfo:after {
  2084. content: "";
  2085. display: block;
  2086. clear: both
  2087. }
  2088. .sidecmtinfo em {
  2089. float: left;
  2090. display: inline;
  2091. color: #333;
  2092. font-style: normal
  2093. }
  2094. .sidecmtinfo em:before {
  2095. content: "\e6a9";
  2096. font-size: 17px;
  2097. font-family: iconfont;
  2098. vertical-align: top
  2099. }
  2100. .sidecmtcon {
  2101. max-height: 44px;
  2102. margin: 8px 0 5px;
  2103. padding: 5px 10px;
  2104. font-size: 13px;
  2105. color: #888;
  2106. line-height: 22px;
  2107. border: 1px solid #eee;
  2108. background: #f7f7f7;
  2109. overflow: hidden;
  2110. position: relative;
  2111. display: -webkit-box;
  2112. -webkit-box-orient: vertical;
  2113. -webkit-line-clamp: 2
  2114. }
  2115. .sidecmtarticle {
  2116. white-space: nowrap;
  2117. text-overflow: ellipsis;
  2118. overflow: hidden
  2119. }
  2120. .sidecmtarticle a {
  2121. font-size: 13px;
  2122. color: #0188fb
  2123. }
  2124. .sidecmtarticle a:before {
  2125. content: "\e6e2";
  2126. font-size: 18px;
  2127. font-family: iconfont;
  2128. vertical-align: bottom
  2129. }
  2130. #tpure_RecArticle .sideitem {
  2131. margin-bottom: 10px;
  2132. padding: 0;
  2133. border: 0
  2134. }
  2135. #tpure_RecArticle .sideitem:last-child {
  2136. margin: 0
  2137. }
  2138. #tpure_RecArticle .noimg {
  2139. margin-bottom: 10px;
  2140. padding-bottom: 8px;
  2141. border-bottom: 1px dotted #e4e8eb;
  2142. border-radius: 0
  2143. }
  2144. #hcsticky .sidebox:last-child {
  2145. margin-bottom: 0
  2146. }
  2147. #divTags li {
  2148. width: auto;
  2149. float: left;
  2150. display: inline;
  2151. margin: 10px 0 0;
  2152. padding: 0;
  2153. white-space: nowrap;
  2154. border: 0
  2155. }
  2156. #divTags li a {
  2157. margin: 0 8px 0 0;
  2158. padding: 0 8px;
  2159. font-size: 14px;
  2160. color: #333;
  2161. line-height: 28px;
  2162. border-radius: 3px;
  2163. box-shadow: 0 1px 1px 0 #ddd;
  2164. border: 1px solid #e4e8eb;
  2165. display: inline-block;
  2166. vertical-align: top
  2167. }
  2168. #divTags ul li a:hover {
  2169. text-decoration: none;
  2170. color: #0188fb;
  2171. border: 1px solid #0188fb
  2172. }
  2173. #divCalendar .function_t {
  2174. display: none
  2175. }
  2176. #divCalendar .function_c {
  2177. width: 232px;
  2178. padding: 0 4px 15px 4px
  2179. }
  2180. #divCalendar table {
  2181. width: 100%;
  2182. font-size: 14px;
  2183. table-layout: fixed
  2184. }
  2185. #divCalendar caption {
  2186. height: 24px;
  2187. margin: 0 0 10px;
  2188. padding: 0;
  2189. font-weight: bold;
  2190. text-align: center
  2191. }
  2192. #divCalendar caption a {
  2193. padding: 0 18px;
  2194. color: #8a9ead
  2195. }
  2196. #divCalendar th {
  2197. height: 26px;
  2198. color: #fff;
  2199. font-weight: normal;
  2200. line-height: 26px;
  2201. text-transform: uppercase;
  2202. border: 1px solid #b6c5d0;
  2203. background: #b6c5d0
  2204. }
  2205. #divCalendar td {
  2206. height: 30px;
  2207. color: #888;
  2208. line-height: 30px;
  2209. text-align: center;
  2210. border: 1px solid #e4e8eb
  2211. }
  2212. #divCalendar td.pad {
  2213. background: none
  2214. }
  2215. #divCalendar td a {
  2216. line-height: 30px;
  2217. color: #0188fb;
  2218. border: 1px solid #0188fb;
  2219. display: block
  2220. }
  2221. #divCalendar #today {
  2222. color: #0188fb;
  2223. font-weight: bold
  2224. }
  2225. #divAuthors .article-nums {
  2226. display: none
  2227. }
  2228. #divPrevious .article-date,#divNavBar .subnav {
  2229. display: none
  2230. }
  2231. #divCatalog ul.ul-subcates li a {
  2232. padding-left: 37px
  2233. }
  2234. #divSearchPanel form {
  2235. margin-top: 20px;
  2236. zoom: 1
  2237. }
  2238. #divSearchPanel form:after {
  2239. content: "";
  2240. display: block;
  2241. clear: both
  2242. }
  2243. #divSearchPanel input[type="text"] {
  2244. width: 70%;
  2245. height: 36px;
  2246. float: left;
  2247. display: inline;
  2248. padding: 5px 10px;
  2249. line-height: 21px;
  2250. border: 1px solid #e4e8eb;
  2251. box-sizing: border-box;
  2252. border-radius: 3px;
  2253. transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
  2254. }
  2255. #divSearchPanel input[type="text"]:focus {
  2256. color: #495057;
  2257. background-color: #fff;
  2258. border-color: #aab7c1;
  2259. outline: 0;
  2260. box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
  2261. }
  2262. #divSearchPanel input[type="submit"] {
  2263. width: 22%;
  2264. height: 36px;
  2265. float: right;
  2266. display: inline;
  2267. line-height: 24px;
  2268. border: 1px solid #e4e8eb;
  2269. border-radius: 3px;
  2270. cursor: pointer;
  2271. background: #fff
  2272. }
  2273. #divSearchPanel input[type="submit"]:focus {
  2274. background: #e4e8eb
  2275. }
  2276. #divMisc ul li,#divFavorites ul li,#divStatistics ul li {
  2277. width: 50%;
  2278. float: left;
  2279. display: inline;
  2280. overflow: hidden
  2281. }
  2282. #divMisc li a {
  2283. padding: 5px 0;
  2284. background: none;
  2285. display: inline-block;
  2286. vertical-align: top
  2287. }
  2288. #divMisc li a img {
  2289. display: block
  2290. }
  2291. #divNavBar li,#divCatalog li,#divLinkage li,#divFavorites li,#divArchives li,#divAuthors li {
  2292. width: 50%;
  2293. height: 36px;
  2294. float: left;
  2295. line-height: 36px;
  2296. border-bottom: 1px dotted #e4e8eb;
  2297. overflow: hidden
  2298. }
  2299. #divCatalog li,#divPrevious li,#divLinkage li,#divNavBar li,#divComments li,#divAuthors li,#divFavorites li,#divStatistics li {
  2300. height: 36px;
  2301. line-height: 36px;
  2302. border-bottom: 1px dotted #e4e8eb;
  2303. white-space: nowrap;
  2304. text-overflow: ellipsis;
  2305. overflow: hidden
  2306. }
  2307. #divCatalog li:before,#divPrevious li:before,#divLinkage li:before,#divNavBar li:before,#divComments li:before,#divAuthors li:before,#divFavorites li:before,#divStatistics li:before {
  2308. content: "\e6a6";
  2309. margin: 0 5px 0 0;
  2310. font-size: 12px;
  2311. color: #333;
  2312. font-family: iconfont;
  2313. display: inline-block;
  2314. vertical-align: top
  2315. }
  2316. #divContorPanel dd {
  2317. text-align: center
  2318. }
  2319. #divContorPanel .cp-hello {
  2320. width: 100%;
  2321. margin-bottom: 15px;
  2322. padding: 10px 0;
  2323. border-bottom: 1px dotted #e4e8eb;
  2324. display: inline-block
  2325. }
  2326. #divContorPanel .cp-hello:before {
  2327. content: "\e6a9";
  2328. margin-right: 3px;
  2329. font-size: 22px;
  2330. font-family: iconfont;
  2331. display: inline-block;
  2332. vertical-align: top
  2333. }
  2334. #divContorPanel .cp-login a,#divContorPanel .cp-vrs a {
  2335. padding: 0 16px 0 10px;
  2336. font-size: 14px;
  2337. color: #888;
  2338. border: 2px solid #e4e8eb;
  2339. border-radius: 20px;
  2340. display: inline-block
  2341. }
  2342. #divContorPanel .cp-login a:before,#divContorPanel .cp-vrs a:before {
  2343. font-size: 20px;
  2344. font-family: iconfont;
  2345. vertical-align: top
  2346. }
  2347. #divContorPanel .cp-login a:hover,#divContorPanel .cp-vrs a:hover {
  2348. color: #0188fb;
  2349. border-color: #0188fb
  2350. }
  2351. #divContorPanel .cp-login a:hover:before,#divContorPanel .cp-vrs a:hover:before {
  2352. color: #0188fb
  2353. }
  2354. #divContorPanel .cp-login a:before {
  2355. content: "\e699"
  2356. }
  2357. #divContorPanel .cp-vrs a:before {
  2358. content: "\e6e2"
  2359. }
  2360. #divContorPanel .sidecon div {
  2361. padding: 20px;
  2362. text-align: center;
  2363. line-height: 24px;
  2364. border: 1px dotted #f0f0f0;
  2365. background: #fbfbfb
  2366. }
  2367. .tag-count {
  2368. display: none
  2369. }
  2370. #divArchives a {
  2371. font-size: 14px
  2372. }
  2373. .tagscloud {
  2374. margin-left: -2%;
  2375. font-size: 0
  2376. }
  2377. .tagscloud li {
  2378. width: 23%;
  2379. margin: 0 0 2% 2%;
  2380. background: #f5f5f5;
  2381. position: relative;
  2382. display: inline-block;
  2383. vertical-align: top
  2384. }
  2385. .tagscloud li a {
  2386. width: 100%;
  2387. padding: 0 50px 0 10px;
  2388. font-size: 14px;
  2389. color: #333;
  2390. box-sizing: border-box;
  2391. white-space: nowrap;
  2392. text-overflow: ellipsis;
  2393. overflow: hidden;
  2394. display: block;
  2395. transition: background-color 0s linear,color 0s linear
  2396. }
  2397. .tagscloud li span {
  2398. font-size: 12px;
  2399. color: #999;
  2400. font-family: arial;
  2401. line-height: 28px;
  2402. position: absolute;
  2403. top: 0;
  2404. right: 10px;
  2405. z-index: 1
  2406. }
  2407. .tagscloud li:hover {
  2408. color: #fff;
  2409. background: #0188fb
  2410. }
  2411. .tagscloud li:hover a,.tagscloud li:hover span {
  2412. color: #fff
  2413. }
  2414. .tagsnull {
  2415. padding: 10% 0;
  2416. color: #888;
  2417. text-align: center
  2418. }
  2419. .tagsnull:before {
  2420. content: "\e869";
  2421. margin-bottom: 10px;
  2422. font-size: 100px;
  2423. color: #e4e8eb;
  2424. font-family: iconfont;
  2425. line-height: 1;
  2426. display: block
  2427. }
  2428. .archivedate {
  2429. margin-bottom: 10px;
  2430. font-size: 18px;
  2431. color: #0188fb;
  2432. border-bottom: 1px solid #e4e8eb
  2433. }
  2434. .archivelist li {
  2435. line-height: 28px;
  2436. zoom: 1
  2437. }
  2438. .archivelist li:after {
  2439. content: "";
  2440. display: block;
  2441. clear: both
  2442. }
  2443. .archivelist h3 {
  2444. margin: 0;
  2445. font-size: 14px;
  2446. line-height: inherit;
  2447. border: 0;
  2448. text-overflow: ellipsis;
  2449. white-space: nowrap;
  2450. overflow: hidden
  2451. }
  2452. .archivelist h3 a {
  2453. font-size: 14px;
  2454. color: #333
  2455. }
  2456. .archivelist h3 a:hover {
  2457. color: #0188fb
  2458. }
  2459. .archivelist h3:after {
  2460. display: none
  2461. }
  2462. .archivetime {
  2463. float: left;
  2464. display: inline;
  2465. margin-right: 10px;
  2466. font-size: 14px;
  2467. color: #999
  2468. }
  2469. .archivenull {
  2470. padding: 20% 0;
  2471. color: #888;
  2472. text-align: center
  2473. }
  2474. .archivenull:before {
  2475. content: "\e869";
  2476. margin-bottom: 10px;
  2477. font-size: 100px;
  2478. color: #e4e8eb;
  2479. font-family: iconfont;
  2480. line-height: 1;
  2481. display: block
  2482. }
  2483. .footer {
  2484. padding: 20px 17px;
  2485. font-size: 14px;
  2486. color: #999;
  2487. text-align: center;
  2488. line-height: 24px;
  2489. border-top: 1px solid #dbe0e8;
  2490. background: #e4e8eb
  2491. }
  2492. .footer a {
  2493. font-size: 14px;
  2494. color: #999
  2495. }
  2496. .footer a:hover {
  2497. color: #0188fb
  2498. }
  2499. a.backtotop {
  2500. width: 45px;
  2501. height: 45px;
  2502. margin-left: 550px;
  2503. text-align: center;
  2504. line-height: 45px;
  2505. border-radius: 5px;
  2506. cursor: pointer;
  2507. opacity: .8;
  2508. position: fixed;
  2509. _position: absolute;
  2510. right: 30px;
  2511. bottom: 30px;
  2512. _bottom: 30px;
  2513. background: rgba(10,10,10,0.2);
  2514. overflow: hidden
  2515. }
  2516. a.backtotop i:after {
  2517. content: "\e600";
  2518. font-size: 32px;
  2519. color: #fff;
  2520. font-family: iconfont
  2521. }
  2522. a.backtotop:hover {
  2523. background: #0188fb
  2524. }
  2525. a.setnight {
  2526. width: 45px;
  2527. height: 45px;
  2528. margin-left: 550px;
  2529. text-align: center;
  2530. line-height: 45px;
  2531. border-radius: 5px;
  2532. cursor: pointer;
  2533. opacity: .8;
  2534. position: fixed;
  2535. _position: absolute;
  2536. right: 30px;
  2537. bottom: 88px;
  2538. _bottom: 88px;
  2539. background: rgba(10,10,10,0.2);
  2540. overflow: hidden
  2541. }
  2542. a.setnight:after {
  2543. content: "\e6e4";
  2544. font-size: 36px;
  2545. color: #fff;
  2546. font-family: iconfont
  2547. }
  2548. a.setnight.black:after {
  2549. content: "\e635"
  2550. }
  2551. a.setnight:hover {
  2552. background: #0188fb
  2553. }
  2554. .errorpage {
  2555. margin-bottom: 20px;
  2556. padding: 100px 30px;
  2557. text-align: center;
  2558. box-shadow: 0 1px 5px 0 rgba(0,0,0,0.05);
  2559. box-sizing: border-box;
  2560. background: #fff
  2561. }
  2562. .errorpage h3 {
  2563. margin: 0 0 10px;
  2564. font-size: 120px;
  2565. line-height: 120px;
  2566. font-weight: bold;
  2567. color: #333;
  2568. 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
  2569. }
  2570. .errorpage h4 {
  2571. margin: 0 0 30px;
  2572. font-size: 30px;
  2573. color: #333;
  2574. line-height: 35px
  2575. }
  2576. .errorpage p {
  2577. margin: 0 0 20px;
  2578. font-size: 16px;
  2579. color: #333
  2580. }
  2581. .errorsearch {
  2582. width: 60%;
  2583. margin: 0 auto 20px;
  2584. zoom: 1
  2585. }
  2586. .errorsearch:after {
  2587. content: "";
  2588. display: block;
  2589. clear: both
  2590. }
  2591. .errschtxt {
  2592. width: 75%;
  2593. height: 36px;
  2594. float: left;
  2595. display: inline;
  2596. padding: 5px 10px;
  2597. line-height: 21px;
  2598. border: 1px solid #e4e8eb;
  2599. box-sizing: border-box;
  2600. border-radius: 3px;
  2601. transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
  2602. }
  2603. .errschtxt:focus {
  2604. color: #495057;
  2605. background-color: #fff;
  2606. border-color: #aab7c1;
  2607. outline: 0;
  2608. box-shadow: 0 0 0 .2rem rgba(31,73,119,0.1)
  2609. }
  2610. .errschbtn {
  2611. width: 24%;
  2612. height: 36px;
  2613. float: right;
  2614. display: inline;
  2615. line-height: 24px;
  2616. border: 1px solid #e4e8eb;
  2617. border-radius: 3px;
  2618. cursor: pointer;
  2619. background: #fff
  2620. }
  2621. .errschbtn:focus {
  2622. background: #e4e8eb
  2623. }
  2624. .goback {
  2625. height: 36px;
  2626. margin: 0 10px 0 0;
  2627. padding: 0 10px 0 20px;
  2628. font-size: 16px;
  2629. color: #888;
  2630. line-height: 36px;
  2631. border: 2px solid #e4e8eb;
  2632. outline: 0;
  2633. border-radius: 20px;
  2634. cursor: pointer;
  2635. background: #fff;
  2636. display: inline-block
  2637. }
  2638. .goback:after {
  2639. content: "\e6a6";
  2640. font-size: 23px;
  2641. color: #888;
  2642. font-family: iconfont;
  2643. vertical-align: top
  2644. }
  2645. .goback:hover {
  2646. color: #0188fb;
  2647. border-color: #0188fb
  2648. }
  2649. .goback:hover:after {
  2650. color: #0188fb
  2651. }
  2652. .viewall {
  2653. overflow: hidden;
  2654. position: relative
  2655. }
  2656. .teles,.telesmore {
  2657. width: 100%;
  2658. height: 150px;
  2659. color: #0188fb;
  2660. text-align: center;
  2661. font-size: 14px;
  2662. text-indent: 0;
  2663. cursor: pointer;
  2664. background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 50%);
  2665. position: absolute;
  2666. left: 0;
  2667. bottom: 0;
  2668. display: block
  2669. }
  2670. .telesmore i {
  2671. margin: 80px auto 0;
  2672. line-height: 36px;
  2673. text-align: center;
  2674. border: 1px solid #0188fb;
  2675. border-radius: 3px;
  2676. background: #fff;
  2677. display: block
  2678. }
  2679. .telesmore i:after {
  2680. content: "\e69b";
  2681. font-size: 22px;
  2682. font-family: iconfont;
  2683. display: inline-block;
  2684. vertical-align: top;
  2685. -webkit-animation: telesmoreico .4s infinite alternate
  2686. }
  2687. .teles i {
  2688. margin: 72px 0 20px;
  2689. font-size: 18px;
  2690. font-style: normal;
  2691. text-indent: 0;
  2692. line-height: 28px;
  2693. display: inline-block
  2694. }
  2695. .teles i:after {
  2696. content: "\e69b";
  2697. width: 33px;
  2698. margin-left: -20px;
  2699. font-size: 30px;
  2700. font-family: iconfont;
  2701. position: absolute;
  2702. bottom: 24px;
  2703. left: 50%;
  2704. -webkit-animation: telesico .4s infinite alternate;
  2705. -ms-animation: telesico .4s infinite alternate
  2706. }
  2707. @-webkit-keyframes telesico {
  2708. 0% {
  2709. -webkit-transform: translate(0, -2px)
  2710. }
  2711. 100% {
  2712. -webkit-transform: translate(0, 3px)
  2713. }
  2714. }
  2715. @-webkit-keyframes telesmoreico {
  2716. 0% {
  2717. -webkit-transform: translate(0, -2px)
  2718. }
  2719. 100% {
  2720. -webkit-transform: translate(0, 3px)
  2721. }
  2722. }
  2723. @-webkit-keyframes arrow {
  2724. from {
  2725. -webkit-transform: translate3d(-webkit-calc(-44%), 5px, 0);
  2726. transform: translate3d(calc(-44%), 5px, 0)
  2727. }
  2728. to {
  2729. -webkit-transform: translate3d(-webkit-calc(-44%), 0, 0);
  2730. transform: translate3d(calc(-44%), 0, 0)
  2731. }
  2732. }
  2733. @keyframes arrow {
  2734. from {
  2735. -webkit-transform: translate3d(-webkit-calc(-44%), 5px, 0);
  2736. transform: translate3d(calc(-44%), 5px, 0)
  2737. }
  2738. to {
  2739. -webkit-transform: translate3d(-webkit-calc(-44%), 0, 0);
  2740. transform: translate3d(calc(-44%), 0, 0)
  2741. }
  2742. }
  2743. .night {
  2744. background: #191919
  2745. }
  2746. .night .wrapper {
  2747. background: #191919
  2748. }
  2749. .night .header {
  2750. border-bottom: 1px solid #222;
  2751. box-shadow: 0 1px 4px 0 #161616;
  2752. background-color: #202020;
  2753. -webkit-backdrop-filter: blur(10px);
  2754. backdrop-filter: blur(10px)
  2755. }
  2756. .night .header .name a {
  2757. color: #ccc
  2758. }
  2759. .night .logo.on:before {
  2760. content: '';
  2761. position: absolute;
  2762. top: 0;
  2763. left: -75%;
  2764. z-index: 2;
  2765. display: block;
  2766. width: 50%;
  2767. height: 100%;
  2768. background: -webkit-linear-gradient(left, rgba(32,32,32,0) 0, rgba(32,32,32,0.5) 100%);
  2769. background: linear-gradient(to right, rgba(32,32,32,0) 0, rgba(32,32,32,0.5) 100%);
  2770. -webkit-transform: skewX(-17deg);
  2771. -moz-transform: skewX(-17deg);
  2772. -o-transform: skewX(-17deg);
  2773. -ms-transform: skewX(-17deg);
  2774. transform: skewX(-17deg)
  2775. }
  2776. .night .menu li a {
  2777. color: #bbb
  2778. }
  2779. .night .menu li.subcate .subnav a {
  2780. color: #bbb
  2781. }
  2782. .night .menu li .subnav {
  2783. box-shadow: 0 0 2px 0 #151515;
  2784. background: #262626
  2785. }
  2786. .night .menu li .subnav a {
  2787. border-color: #3a3a3a
  2788. }
  2789. .night .menu li .subnav:after {
  2790. color: #bbb;
  2791. border-bottom-color: #262626
  2792. }
  2793. .night .schico a:after {
  2794. color: #ccc
  2795. }
  2796. .night .schfixed {
  2797. box-shadow: 0 0 2px 0 #151515;
  2798. background: #262626
  2799. }
  2800. .night .schfixed input {
  2801. color: #ccc;
  2802. border-color: #3a3a3a;
  2803. background: #202020
  2804. }
  2805. .night .schfixed:after {
  2806. border-bottom-color: #262626
  2807. }
  2808. .night .searchnull:before {
  2809. color: #3a3a3a
  2810. }
  2811. .night .single h1,.night .single h2,.night .single h3,.night .single h4,.night .single h5,.night .single h6 {
  2812. border-color: #3a3a3a
  2813. }
  2814. .night .single p.ue-upload {
  2815. border-color: #3a3a3a
  2816. }
  2817. .night .single blockquote {
  2818. border-color: #666;
  2819. background: #333
  2820. }
  2821. .night .single blockquote:before {
  2822. color: #555
  2823. }
  2824. .night .single td {
  2825. color: #888;
  2826. border-color: #3a3a3a
  2827. }
  2828. .night .single code[class*="language-"],.night .single pre[class*="language-"] {
  2829. text-shadow: 0 1px #3a3a3a;
  2830. background: #333
  2831. }
  2832. .night .single div.prism-show-language>div.prism-show-language-label[data-language] {
  2833. background: #666
  2834. }
  2835. .night .copynotice {
  2836. border-color: #666;
  2837. background: #333
  2838. }
  2839. .night .copynotice b {
  2840. color: #bbb
  2841. }
  2842. .night .copynotice a {
  2843. color: #888
  2844. }
  2845. .night .post {
  2846. border-bottom: 1px solid #3a3a3a
  2847. }
  2848. .night .posttitle {
  2849. border-color: #3a3a3a
  2850. }
  2851. .night .posttitle h1,.night .posttitle h2,.night .posttitle h3,.night .posttitle h4,.night .posttitle h5,.night .posttitle h6 {
  2852. color: #bbb
  2853. }
  2854. .night .post h1 {
  2855. color: #bbb
  2856. }
  2857. .night .post h2 a {
  2858. color: #bbb
  2859. }
  2860. .night .post h2 a:hover {
  2861. color: #0188fb
  2862. }
  2863. .night .post .intro {
  2864. color: #888
  2865. }
  2866. .night .post .readmore {
  2867. border-color: #888
  2868. }
  2869. .night .post .readmore:hover {
  2870. border-color: #0188fb
  2871. }
  2872. .night .post .single {
  2873. color: #888;
  2874. border-color: #3a3a3a
  2875. }
  2876. .night .post .tags a {
  2877. color: #888;
  2878. border-color: #3a3a3a;
  2879. background: none
  2880. }
  2881. .night .post .ctrl a {
  2882. background: #3a3a3a
  2883. }
  2884. .night .telesmore i {
  2885. background: #262626
  2886. }
  2887. .night .teles,.night .telesmore {
  2888. background: linear-gradient(to bottom, rgba(38,38,38,0), #262626 50%)
  2889. }
  2890. .night .pagination-loading {
  2891. background: #262626
  2892. }
  2893. .night .ias_trigger a,.night .ias_loader a {
  2894. border-color: #3a3a3a;
  2895. background: #262626
  2896. }
  2897. .night .pages {
  2898. color: #888
  2899. }
  2900. .night .pages a {
  2901. color: #bbb
  2902. }
  2903. .night .pages a:hover {
  2904. color: #0188fb;
  2905. border-color: #0188fb
  2906. }
  2907. .night a.backlist {
  2908. color: #888;
  2909. border-color: #888
  2910. }
  2911. .night .relate {
  2912. border-color: #3a3a3a
  2913. }
  2914. .night .relateinfo h3 a {
  2915. color: #bbb
  2916. }
  2917. .night .relateinfo h3 a:hover {
  2918. color: #0188fb
  2919. }
  2920. .night .relatelist {
  2921. border-color: #3a3a3a
  2922. }
  2923. .night .relatelist a {
  2924. color: #bbb
  2925. }
  2926. .night .relatelist a:hover {
  2927. color: #0188fb
  2928. }
  2929. .night .relatelist span {
  2930. color: #888
  2931. }
  2932. .night .cmtform {
  2933. border-color: #3a3a3a
  2934. }
  2935. .night .cmtform label {
  2936. color: #888
  2937. }
  2938. .night .cmtform input {
  2939. color: #ccc;
  2940. border-color: #3a3a3a;
  2941. background: #202020
  2942. }
  2943. .night .cmtform input:focus {
  2944. color: #0188fb
  2945. }
  2946. .night .cmtform img.imgcode {
  2947. border-color: #3a3a3a
  2948. }
  2949. .night .cmtarea textarea {
  2950. color: #ccc;
  2951. border-color: #3a3a3a;
  2952. background: #202020
  2953. }
  2954. .night .cmtsubmit button {
  2955. border-color: #888;
  2956. background: none
  2957. }
  2958. .night .cmtsubmit button:hover {
  2959. border-color: #0188fb
  2960. }
  2961. .night .cmtsname {
  2962. color: #888
  2963. }
  2964. .night .cmtsname a {
  2965. color: #888
  2966. }
  2967. .night .cmtsdate {
  2968. color: #888
  2969. }
  2970. .night .cmtsbody {
  2971. color: #ccc
  2972. }
  2973. .night .cmtsreply {
  2974. border-color: #3a3a3a
  2975. }
  2976. .night .cmtsreplyname a {
  2977. color: #888
  2978. }
  2979. .night .cmtsreplycon {
  2980. color: #ccc
  2981. }
  2982. .night .cmtsreplydate {
  2983. color: #888
  2984. }
  2985. .night .cmtsitem {
  2986. border-color: #3a3a3a
  2987. }
  2988. .night .reply-frm {
  2989. border-color: #3a3a3a
  2990. }
  2991. .night #cancel-reply {
  2992. color: #0188fb;
  2993. border-color: #0188fb;
  2994. background: none
  2995. }
  2996. .night .tagscloud li {
  2997. background: #3a3a3a
  2998. }
  2999. .night .tagscloud li a {
  3000. color: #bbb
  3001. }
  3002. .night .tagscloud li:hover a {
  3003. color: #fff
  3004. }
  3005. .night .archivedate {
  3006. border-color: #3a3a3a
  3007. }
  3008. .night .archivelist h3 a {
  3009. color: #bbb
  3010. }
  3011. .night .archivelist h3 a:hover {
  3012. color: #0188fb
  3013. }
  3014. .night .sidebox dt {
  3015. color: #bbb;
  3016. border-bottom: 1px solid #3a3a3a
  3017. }
  3018. .night .sidebox dd a {
  3019. color: #888
  3020. }
  3021. .night .sidebox dd .sideitem .itemtitle {
  3022. color: #bbb
  3023. }
  3024. .night .sidebox dd .sideitem .itemtitle:hover {
  3025. color: #0188fb
  3026. }
  3027. .night .sidebox dd .sidelink a {
  3028. color: #fff
  3029. }
  3030. .night .sidebox dd .sidelink a:hover {
  3031. color: #0188fb
  3032. }
  3033. .night .sidebox dd .sidecmtarticle a {
  3034. color: #bbb
  3035. }
  3036. .night .sidebox dd .sidecmtarticle a:hover {
  3037. color: #0188fb
  3038. }
  3039. .night .sideitem {
  3040. border-color: #3a3a3a
  3041. }
  3042. .night .sideitem .hasimg {
  3043. color: #bbb
  3044. }
  3045. .night .sidelink .sideinfo {
  3046. color: #bbb
  3047. }
  3048. .night .sidecmtinfo em {
  3049. color: #bbb
  3050. }
  3051. .night .sidecmtcon {
  3052. border: 1px dotted #666;
  3053. background: #333
  3054. }
  3055. .night #tpure_RecArticle .noimg {
  3056. border-color: #3a3a3a
  3057. }
  3058. .night #divContorPanel .cp-hello {
  3059. color: #888;
  3060. border-color: #3a3a3a
  3061. }
  3062. .night #divContorPanel .cp-login a,.night #divContorPanel .cp-vrs a {
  3063. border-color: #888
  3064. }
  3065. .night #divContorPanel .cp-login a:hover,.night #divContorPanel .cp-vrs a:hover {
  3066. border-color: #0188fb
  3067. }
  3068. .night #divCatalog li,.night #divPrevious li,.night #divLinkage li,.night #divNavBar li,.night #divComments li,.night #divAuthors li,.night #divFavorites li,.night #divStatistics li {
  3069. border-bottom: 1px dotted #3a3a3a
  3070. }
  3071. .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 {
  3072. color: #888
  3073. }
  3074. .night #divTags li a {
  3075. color: #888;
  3076. border-color: #3a3a3a;
  3077. box-shadow: none
  3078. }
  3079. .night .block,.night .sidebox,.night .pagebar,.night .cmtpagebar {
  3080. background: #262626
  3081. }
  3082. .night .pagebar a,.night .cmtpagebar a {
  3083. color: #bbb;
  3084. border-color: #3a3a3a;
  3085. background: none
  3086. }
  3087. .night .footer {
  3088. border-top: 1px solid #3a3a3a;
  3089. background: #202020
  3090. }
  3091. .night .lazynum {
  3092. color: #999;
  3093. background: #444
  3094. }
  3095. .night a.backtotop,.night .setnight {
  3096. background: rgba(68,68,68,0.8)
  3097. }
  3098. .night a.backtotop:hover {
  3099. background: #0188fb
  3100. }
  3101. .night .errorpage {
  3102. background: #262626
  3103. }
  3104. .night .errorpage h3,.night .errorpage h4,.night .errorpage p {
  3105. color: #bbb
  3106. }
  3107. .night .errorpage .errschtxt {
  3108. color: #ccc;
  3109. border-color: #3a3a3a;
  3110. background: #202020
  3111. }
  3112. .night .errorpage .errschtxt:focus {
  3113. color: #0188fb
  3114. }
  3115. .night .errorpage .errschbtn {
  3116. color: #fff;
  3117. border-color: #0188fb;
  3118. background: #0188fb
  3119. }
  3120. .night .errorpage .goback {
  3121. color: #888;
  3122. border-color: #888;
  3123. background: none
  3124. }
  3125. .night .errorpage .goback:hover {
  3126. color: #0188fb;
  3127. border-color: #0188fb
  3128. }
  3129. .night .advice_content,.night .advice_contactcon,.night .advice_verifycode {
  3130. border-color: #3a3a3a
  3131. }
  3132. .night .advice_content textarea,.night .advice_contactcon input {
  3133. color: #ccc;
  3134. background: #202020;
  3135. display: block
  3136. }
  3137. .night .advice_verifycode {
  3138. color: #ccc;
  3139. background: #202020
  3140. }
  3141. @media screen and (max-width:1920px) {
  3142. .wrap {
  3143. width: 1080px
  3144. }
  3145. .wrapper {
  3146. width: 100%;
  3147. min-width: 100%
  3148. }
  3149. a.backtotop {
  3150. left: 50%;
  3151. bottom: 30px;
  3152. _bottom: 30px
  3153. }
  3154. a.setnight {
  3155. left: 50%;
  3156. bottom: 80px;
  3157. _bottom: 80px
  3158. }
  3159. }
  3160. @media screen and (max-width:1200px) {
  3161. .wrap {
  3162. width: auto;
  3163. padding: 0 20px
  3164. }
  3165. .header .wrap {
  3166. padding: 0
  3167. }
  3168. .header .name a {
  3169. padding-left: 18px
  3170. }
  3171. .logo {
  3172. margin-left: 20px
  3173. }
  3174. .head {
  3175. padding: 0
  3176. }
  3177. .schico {
  3178. right: 10px
  3179. }
  3180. .banner h2 {
  3181. width: 80%
  3182. }
  3183. a.backtotop {
  3184. width: 36px;
  3185. height: 36px;
  3186. margin: auto;
  3187. line-height: 36px;
  3188. right: 10px;
  3189. bottom: 30px;
  3190. left: auto
  3191. }
  3192. a.backtotop i:after {
  3193. font-size: 26px
  3194. }
  3195. a.setnight {
  3196. width: 36px;
  3197. height: 36px;
  3198. margin: auto;
  3199. line-height: 36px;
  3200. right: 10px;
  3201. bottom: 72px;
  3202. left: auto
  3203. }
  3204. a.setnight:after {
  3205. font-size: 30px
  3206. }
  3207. }
  3208. @media screen and (max-width:1080px) {
  3209. .header .name {
  3210. height: 50px
  3211. }
  3212. .header .name a {
  3213. font-size: 20px;
  3214. line-height: 50px
  3215. }
  3216. .logo {
  3217. height: 50px;
  3218. margin-left: 10px
  3219. }
  3220. .logo a {
  3221. height: 50px
  3222. }
  3223. .logo a img {
  3224. height: 36px
  3225. }
  3226. .menu {
  3227. width: 100%;
  3228. height: auto;
  3229. float: left;
  3230. margin: 0;
  3231. border-top: 1px solid #eee;
  3232. display: none
  3233. }
  3234. .menu ul {
  3235. width: 100%;
  3236. padding-right: 0;
  3237. border-left: 0
  3238. }
  3239. .menu ul li {
  3240. width: 100%;
  3241. padding: 0;
  3242. color: #ddd;
  3243. line-height: 40px;
  3244. border-bottom: 1px solid #eee;
  3245. border-right: 0
  3246. }
  3247. .menu ul li:before {
  3248. display: none
  3249. }
  3250. .menu ul li a {
  3251. padding: 0 18px;
  3252. font-size: 16px;
  3253. color: #333;
  3254. border: 0;
  3255. display: block
  3256. }
  3257. .menu ul li.subcate:hover .subnav {
  3258. display: none
  3259. }
  3260. .menu ul li.subcate>a:after {
  3261. content: "\e69b";
  3262. margin-left: 10px;
  3263. font-size: 16px;
  3264. color: #888;
  3265. font-family: iconfont;
  3266. font-weight: 600;
  3267. position: absolute;
  3268. top: 0;
  3269. right: 15px
  3270. }
  3271. .menu ul li.subcate.slidedown>a:after {
  3272. content: "\e6a4";
  3273. color: #0188fb
  3274. }
  3275. .menu ul li.subcate.slidedown .subnav {
  3276. margin-bottom: -1px;
  3277. padding: 0;
  3278. line-height: 40px;
  3279. border-top: 1px solid #e4e8eb;
  3280. border-bottom: 1px solid #e4e8eb;
  3281. box-shadow: none;
  3282. background: #fafafa;
  3283. position: static;
  3284. display: block;
  3285. -webkit-animation: fadeInUp 0s 0s ease both;
  3286. -moz-animation: fadeInUp 0s 0s ease both
  3287. }
  3288. .menu ul li.subcate.slidedown .subnav:before,.menu ul li.subcate.slidedown .subnav:after {
  3289. display: none
  3290. }
  3291. .menu ul li.subcate.slidedown .subnav a {
  3292. padding: 0 18px
  3293. }
  3294. .menu.on {
  3295. width: 100%;
  3296. margin: 0;
  3297. padding: 10px 0 0;
  3298. display: block
  3299. }
  3300. .menuico {
  3301. right: 10px;
  3302. display: block
  3303. }
  3304. .schico {
  3305. display: none
  3306. }
  3307. .sch-m {
  3308. display: block
  3309. }
  3310. .main.fixed {
  3311. padding-top: 50px
  3312. }
  3313. .banner {
  3314. margin-bottom: 20px
  3315. }
  3316. .sidebar {
  3317. display: none
  3318. }
  3319. .content {
  3320. width: 100%
  3321. }
  3322. .night .menu.on {
  3323. border-color: #3a3a3a;
  3324. background: #262626
  3325. }
  3326. .night .menu.on li {
  3327. border-color: #3a3a3a
  3328. }
  3329. .night .menu ul li.subcate.slidedown .subnav {
  3330. border-color: #3a3a3a;
  3331. background: #202020
  3332. }
  3333. }
  3334. @media screen and (max-width:750px) {
  3335. .wrap {
  3336. padding: 0
  3337. }
  3338. .cmtimg {
  3339. display: none
  3340. }
  3341. .main {
  3342. margin-bottom: 0
  3343. }
  3344. .main .mask {
  3345. margin-bottom: 10px
  3346. }
  3347. .banner {
  3348. margin-bottom: 10px;
  3349. font-size: 24px;
  3350. line-height: 32px
  3351. }
  3352. .banner h2 {
  3353. margin-bottom: 10px
  3354. }
  3355. .banner h2:after {
  3356. bottom: -10px
  3357. }
  3358. .sitemap {
  3359. padding: 0 18px
  3360. }
  3361. .block {
  3362. margin-bottom: 10px;
  3363. padding: 15px 18px 10px
  3364. }
  3365. .post {
  3366. margin-bottom: 20px;
  3367. padding-bottom: 10px
  3368. }
  3369. .post h1,.post h2 {
  3370. font-size: 20px;
  3371. line-height: 30px
  3372. }
  3373. .post h1 a,.post h2 a {
  3374. font-size: 20px
  3375. }
  3376. .post h1 .istop:before,.post h2 .istop:before {
  3377. font-size: 32px
  3378. }
  3379. .post .info {
  3380. margin-bottom: 10px
  3381. }
  3382. .post .readmore {
  3383. width: 100%;
  3384. padding: 5px 0;
  3385. text-align: center;
  3386. display: none
  3387. }
  3388. .posttitle h1,.posttitle h2,.posttitle h3,.posttitle h4,.posttitle h5,.posttitle h6 {
  3389. font-size: 20px
  3390. }
  3391. .post .user:before,.post .date:before,.post .cate:before,.post .view:before,.post .cmt:before {
  3392. margin-right: 2px;
  3393. font-size: 20px
  3394. }
  3395. .post.intro.isimg {
  3396. height: auto
  3397. }
  3398. .post .ctrl {
  3399. float: none
  3400. }
  3401. .post .ctrl a {
  3402. margin: 0 8px 0 0
  3403. }
  3404. .single {
  3405. font-size: 18px;
  3406. line-height: 30px
  3407. }
  3408. .copynotice .qr {
  3409. display: none
  3410. }
  3411. a.backlist {
  3412. width: 99%;
  3413. float: none;
  3414. margin: 0 0 20px;
  3415. padding: 0;
  3416. line-height: 36px;
  3417. text-align: center;
  3418. display: block
  3419. }
  3420. .tagscloud li {
  3421. width: 48%
  3422. }
  3423. .relate:last-child {
  3424. padding: 20px 0
  3425. }
  3426. .relateinfo h3 {
  3427. margin-bottom: 8px
  3428. }
  3429. .relateinfo h3 a {
  3430. font-size: 18px
  3431. }
  3432. .relatelist a {
  3433. width: 100%;
  3434. margin: 0;
  3435. white-space: normal
  3436. }
  3437. .relatelist .posttime {
  3438. position: static
  3439. }
  3440. .relatelist:last-child {
  3441. border: 0
  3442. }
  3443. .cmtsitem .avatar {
  3444. width: 38px;
  3445. height: 38px
  3446. }
  3447. .cmtsitem .avatar img {
  3448. width: 38px;
  3449. height: 38px
  3450. }
  3451. .cmtscon {
  3452. margin-left: 50px
  3453. }
  3454. .cmtshead {
  3455. zoom: 1
  3456. }
  3457. .cmtshead:after {
  3458. content: "";
  3459. display: block;
  3460. clear: both
  3461. }
  3462. .cmtsname {
  3463. width: 100%;
  3464. float: left;
  3465. display: inline
  3466. }
  3467. .cmtsdate {
  3468. float: left;
  3469. display: inline
  3470. }
  3471. .cmtsbody,.cmtsreply {
  3472. margin-left: -50px
  3473. }
  3474. .cmtsfoot {
  3475. margin-left: -50px;
  3476. text-align: right
  3477. }
  3478. .cmtarea {
  3479. padding: 0
  3480. }
  3481. .cmtform p {
  3482. width: 100%
  3483. }
  3484. .cmtform input {
  3485. width: 60%
  3486. }
  3487. .cmtform #inpVerify {
  3488. width: 30%
  3489. }
  3490. .cmtform img {
  3491. width: 30%;
  3492. margin: 0
  3493. }
  3494. .cmtsubmit {
  3495. text-align: center
  3496. }
  3497. .cmtsubmit button {
  3498. width: 100%;
  3499. height: 40px;
  3500. margin: 0 0 10px 0
  3501. }
  3502. .reply-frm {
  3503. margin-left: -50px
  3504. }
  3505. .pagebar,.cmtpagebar {
  3506. padding-bottom: 10px
  3507. }
  3508. .pagebar .now-page,.cmtpagebar .now-page {
  3509. padding: 0 5px
  3510. }
  3511. .pagebar a,.cmtpagebar a {
  3512. margin: 0 3px 5px;
  3513. padding: 1px 7px
  3514. }
  3515. .errorpage {
  3516. padding: 50px 18px
  3517. }
  3518. .errorpage h3 {
  3519. font-size: 80px;
  3520. line-height: 80px
  3521. }
  3522. .errorpage h4 {
  3523. font-size: 24px
  3524. }
  3525. .errorsearch {
  3526. width: 100%
  3527. }
  3528. .night .advice_content,.night .advice_contactcon,.night .advice_verifycode {
  3529. border-color: #3a3a3a
  3530. }
  3531. .night .advice_content textarea,.night .advice_contactcon input {
  3532. color: #ccc;
  3533. background: #202020;
  3534. display: block
  3535. }
  3536. .night .advice_verifycode {
  3537. color: #ccc;
  3538. background: #202020
  3539. }
  3540. }
粤ICP备19079148号