No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ask.css 100KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889
  1. @charset "utf-8";
  2. html {
  3. font-family: sans-serif;
  4. -webkit-text-size-adjust: 100%;
  5. -ms-text-size-adjust: 100%
  6. }
  7. body {
  8. margin: 0
  9. }
  10. article,
  11. aside,
  12. details,
  13. figcaption,
  14. figure,
  15. footer,
  16. header,
  17. hgroup,
  18. main,
  19. menu,
  20. nav,
  21. section,
  22. summary {
  23. display: block
  24. }
  25. audio,
  26. canvas,
  27. progress,
  28. video {
  29. display: inline-block;
  30. vertical-align: baseline
  31. }
  32. audio:not([controls]) {
  33. display: none;
  34. height: 0
  35. }
  36. [hidden],
  37. template {
  38. display: none
  39. }
  40. a {
  41. background-color: transparent
  42. }
  43. a:active,
  44. a:hover {
  45. outline: 0
  46. }
  47. abbr[title] {
  48. border-bottom: 1px dotted
  49. }
  50. b,
  51. strong {
  52. font-weight: 700
  53. }
  54. dfn {
  55. font-style: italic
  56. }
  57. h1 {
  58. margin: .67em 0;
  59. font-size: 2em
  60. }
  61. mark {
  62. color: #000;
  63. background: #ff0
  64. }
  65. small {
  66. font-size: 80%
  67. }
  68. sub,
  69. sup {
  70. position: relative;
  71. font-size: 75%;
  72. line-height: 0;
  73. vertical-align: baseline
  74. }
  75. sup {
  76. top: -.5em
  77. }
  78. sub {
  79. bottom: -.25em
  80. }
  81. img {
  82. border: 0
  83. }
  84. svg:not(:root) {
  85. overflow: hidden
  86. }
  87. figure {
  88. margin: 1em 40px
  89. }
  90. hr {
  91. height: 0;
  92. -webkit-box-sizing: content-box;
  93. -moz-box-sizing: content-box;
  94. box-sizing: content-box
  95. }
  96. pre {
  97. overflow: auto
  98. }
  99. code,
  100. kbd,
  101. pre,
  102. samp {
  103. font-family: monospace, monospace;
  104. font-size: 1em
  105. }
  106. button,
  107. input,
  108. optgroup,
  109. select,
  110. textarea {
  111. margin: 0;
  112. font: inherit;
  113. color: inherit
  114. }
  115. button {
  116. overflow: visible
  117. }
  118. button,
  119. select {
  120. text-transform: none
  121. }
  122. button,
  123. html input[type=button],
  124. input[type=reset],
  125. input[type=submit] {
  126. -webkit-appearance: button;
  127. cursor: pointer
  128. }
  129. button[disabled],
  130. html input[disabled] {
  131. cursor: default
  132. }
  133. button::-moz-focus-inner,
  134. input::-moz-focus-inner {
  135. padding: 0;
  136. border: 0
  137. }
  138. input {
  139. line-height: normal
  140. }
  141. input[type=checkbox],
  142. input[type=radio] {
  143. -webkit-box-sizing: border-box;
  144. -moz-box-sizing: border-box;
  145. box-sizing: border-box;
  146. padding: 0
  147. }
  148. input[type=number]::-webkit-inner-spin-button,
  149. input[type=number]::-webkit-outer-spin-button {
  150. height: auto
  151. }
  152. input[type=search] {
  153. -webkit-box-sizing: content-box;
  154. -moz-box-sizing: content-box;
  155. box-sizing: content-box;
  156. -webkit-appearance: textfield
  157. }
  158. input[type=search]::-webkit-search-cancel-button,
  159. input[type=search]::-webkit-search-decoration {
  160. -webkit-appearance: none
  161. }
  162. fieldset {
  163. padding: .35em .625em .75em;
  164. margin: 0 2px;
  165. border: 1px solid silver
  166. }
  167. legend {
  168. padding: 0;
  169. border: 0
  170. }
  171. textarea {
  172. overflow: auto
  173. }
  174. optgroup {
  175. font-weight: 700
  176. }
  177. table {
  178. border-spacing: 0;
  179. border-collapse: collapse
  180. }
  181. td,
  182. th {
  183. padding: 0
  184. }
  185. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  186. @media print {
  187. *,
  188. :after,
  189. :before {
  190. color: #000 !important;
  191. text-shadow: none !important;
  192. background: 0 0 !important;
  193. -webkit-box-shadow: none !important;
  194. box-shadow: none !important
  195. }
  196. a,
  197. a:visited {
  198. text-decoration: underline
  199. }
  200. a[href]:after {
  201. content: " ("attr(href) ")"
  202. }
  203. abbr[title]:after {
  204. content: " ("attr(title) ")"
  205. }
  206. a[href^="javascript:"]:after,
  207. a[href^="#"]:after {
  208. content: ""
  209. }
  210. blockquote,
  211. pre {
  212. border: 1px solid #999;
  213. page-break-inside: avoid
  214. }
  215. thead {
  216. display: table-header-group
  217. }
  218. img,
  219. tr {
  220. page-break-inside: avoid
  221. }
  222. img {
  223. max-width: 100% !important
  224. }
  225. h2,
  226. h3,
  227. p {
  228. orphans: 3;
  229. widows: 3
  230. }
  231. h2,
  232. h3 {
  233. page-break-after: avoid
  234. }
  235. .navbar {
  236. display: none
  237. }
  238. .btn>.caret,
  239. .dropup>.btn>.caret {
  240. border-top-color: #000 !important
  241. }
  242. .label {
  243. border: 1px solid #000
  244. }
  245. .table {
  246. border-collapse: collapse !important
  247. }
  248. .table td,
  249. .table th {
  250. background-color: #fff !important
  251. }
  252. .table-bordered td,
  253. .table-bordered th {
  254. border: 1px solid #ddd !important
  255. }
  256. }
  257. * {
  258. -webkit-box-sizing: border-box;
  259. -moz-box-sizing: border-box;
  260. box-sizing: border-box
  261. }
  262. :after,
  263. :before {
  264. -webkit-box-sizing: border-box;
  265. -moz-box-sizing: border-box;
  266. box-sizing: border-box
  267. }
  268. html {
  269. font-size: 10px;
  270. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  271. }
  272. body {
  273. font-family: Roboto, sans-serif;
  274. font-size: 14px;
  275. line-height: 1.57142857;
  276. color: #76838f;
  277. background-color: #fff
  278. }
  279. button,
  280. input,
  281. select,
  282. textarea {
  283. font-family: inherit;
  284. font-size: inherit;
  285. line-height: inherit
  286. }
  287. a {
  288. color: #ff6f06;
  289. text-decoration: none
  290. }
  291. a:focus,
  292. a:hover {
  293. color: #ff9900;
  294. }
  295. a:focus {
  296. outline: thin dotted;
  297. outline: 5px auto -webkit-focus-ring-color;
  298. outline-offset: -2px
  299. }
  300. figure {
  301. margin: 0
  302. }
  303. img {
  304. vertical-align: middle
  305. }
  306. .carousel-inner>.item>a>img,
  307. .carousel-inner>.item>img,
  308. .img-responsive,
  309. .thumbnail a>img,
  310. .thumbnail>img {
  311. display: block;
  312. max-width: 100%;
  313. height: auto
  314. }
  315. .img-rounded {
  316. border-radius: 4px
  317. }
  318. .img-thumbnail {
  319. display: inline-block;
  320. max-width: 100%;
  321. height: auto;
  322. padding: 4px;
  323. line-height: 1.57142857;
  324. background-color: #fff;
  325. border: 1px solid #e4eaec;
  326. border-radius: 3px;
  327. -webkit-transition: all .2s ease-in-out;
  328. -o-transition: all .2s ease-in-out;
  329. transition: all .2s ease-in-out
  330. }
  331. .img-circle {
  332. border-radius: 50%
  333. }
  334. hr {
  335. margin-top: 22px;
  336. margin-bottom: 22px;
  337. border: 0;
  338. border-top: 1px solid #e4eaec
  339. }
  340. [role=button] {
  341. cursor: pointer
  342. }
  343. .h1,
  344. .h2,
  345. .h3,
  346. .h4,
  347. .h5,
  348. .h6,
  349. h1,
  350. h2,
  351. h3,
  352. h4,
  353. h5,
  354. h6 {
  355. font-family: Roboto, sans-serif;
  356. font-weight: 400;
  357. line-height: 1.2;
  358. color: #37474f
  359. }
  360. .h1 .small,
  361. .h1 small,
  362. .h2 .small,
  363. .h2 small,
  364. .h3 .small,
  365. .h3 small,
  366. .h4 .small,
  367. .h4 small,
  368. .h5 .small,
  369. .h5 small,
  370. .h6 .small,
  371. .h6 small,
  372. h1 .small,
  373. h1 small,
  374. h2 .small,
  375. h2 small,
  376. h3 .small,
  377. h3 small,
  378. h4 .small,
  379. h4 small,
  380. h5 .small,
  381. h5 small,
  382. h6 .small,
  383. h6 small {
  384. font-weight: 400;
  385. line-height: 1;
  386. color: #a3afb7
  387. }
  388. .h1,
  389. .h2,
  390. .h3,
  391. h1,
  392. h2,
  393. h3 {
  394. margin-top: 22px;
  395. margin-bottom: 11px
  396. }
  397. .h1 .small,
  398. .h1 small,
  399. .h2 .small,
  400. .h2 small,
  401. .h3 .small,
  402. .h3 small,
  403. h1 .small,
  404. h1 small,
  405. h2 .small,
  406. h2 small,
  407. h3 .small,
  408. h3 small {
  409. font-size: 65%
  410. }
  411. .h4,
  412. .h5,
  413. .h6,
  414. h4,
  415. h5,
  416. h6 {
  417. margin-top: 11px;
  418. margin-bottom: 11px
  419. }
  420. .h4 .small,
  421. .h4 small,
  422. .h5 .small,
  423. .h5 small,
  424. .h6 .small,
  425. .h6 small,
  426. h4 .small,
  427. h4 small,
  428. h5 .small,
  429. h5 small,
  430. h6 .small,
  431. h6 small {
  432. font-size: 75%
  433. }
  434. .h1,
  435. h1 {
  436. font-size: 36px
  437. }
  438. .h2,
  439. h2 {
  440. font-size: 30px
  441. }
  442. .h3,
  443. h3 {
  444. font-size: 24px
  445. }
  446. .h4,
  447. h4 {
  448. font-size: 18px
  449. }
  450. .h5,
  451. h5 {
  452. font-size: 14px
  453. }
  454. .h6,
  455. h6 {
  456. font-size: 12px
  457. }
  458. p {
  459. margin: 0 0 11px
  460. }
  461. .lead {
  462. margin-bottom: 22px;
  463. font-size: 16px;
  464. font-weight: 300;
  465. line-height: 1.4
  466. }
  467. @media (min-width:768px) {
  468. .lead {
  469. font-size: 21px
  470. }
  471. }
  472. .small,
  473. small {
  474. font-size: 85%
  475. }
  476. .mark,
  477. mark {
  478. padding: .2em;
  479. background-color: #f2a654
  480. }
  481. .text-left {
  482. text-align: left
  483. }
  484. .text-right {
  485. text-align: right
  486. }
  487. .text-center {
  488. text-align: center
  489. }
  490. .text-justify {
  491. text-align: justify
  492. }
  493. .text-nowrap {
  494. white-space: nowrap
  495. }
  496. .text-lowercase {
  497. text-transform: lowercase
  498. }
  499. .text-uppercase {
  500. text-transform: uppercase
  501. }
  502. .text-capitalize {
  503. text-transform: capitalize
  504. }
  505. .text-muted {
  506. color: #526069
  507. }
  508. .text-primary {
  509. color: #ff6f06
  510. }
  511. a.text-primary:focus,
  512. a.text-primary:hover {
  513. color: #358fe4
  514. }
  515. .text-success {
  516. color: #fff
  517. }
  518. a.text-success:focus,
  519. a.text-success:hover {
  520. color: #e6e6e6
  521. }
  522. .text-info {
  523. color: #fff
  524. }
  525. a.text-info:focus,
  526. a.text-info:hover {
  527. color: #e6e6e6
  528. }
  529. .text-warning {
  530. color: #fff
  531. }
  532. a.text-warning:focus,
  533. a.text-warning:hover {
  534. color: #e6e6e6
  535. }
  536. .text-danger {
  537. color: #fff
  538. }
  539. a.text-danger:focus,
  540. a.text-danger:hover {
  541. color: #e6e6e6
  542. }
  543. .bg-primary {
  544. color: #fff;
  545. background-color: #ff6f06
  546. }
  547. a.bg-primary:focus,
  548. a.bg-primary:hover {
  549. background-color: #358fe4
  550. }
  551. .bg-success {
  552. background-color: #46be8a
  553. }
  554. a.bg-success:focus,
  555. a.bg-success:hover {
  556. background-color: #369b6f
  557. }
  558. .bg-info {
  559. background-color: #57c7d4
  560. }
  561. a.bg-info:focus,
  562. a.bg-info:hover {
  563. background-color: #33b6c5
  564. }
  565. .bg-warning {
  566. background-color: #f2a654
  567. }
  568. a.bg-warning:focus,
  569. a.bg-warning:hover {
  570. background-color: #ee8d25
  571. }
  572. .bg-danger {
  573. background-color: #f96868
  574. }
  575. a.bg-danger:focus,
  576. a.bg-danger:hover {
  577. background-color: #f73737
  578. }
  579. .page-header {
  580. padding-bottom: 10px;
  581. margin: 44px 0 22px;
  582. border-bottom: 1px solid transparent
  583. }
  584. ol,
  585. ul {
  586. margin-top: 0;
  587. margin-bottom: 11px
  588. }
  589. ol ol,
  590. ol ul,
  591. ul ol,
  592. ul ul {
  593. margin-bottom: 0
  594. }
  595. .list-unstyled {
  596. padding-left: 0;
  597. list-style: none
  598. }
  599. .list-inline {
  600. padding-left: 0;
  601. margin-left: -5px;
  602. list-style: none
  603. }
  604. .list-inline>li {
  605. display: inline-block;
  606. padding-right: 5px;
  607. padding-left: 5px
  608. }
  609. dl {
  610. margin-top: 0;
  611. margin-bottom: 22px
  612. }
  613. dd,
  614. dt {
  615. line-height: 1.57142857
  616. }
  617. dt {
  618. font-weight: 700
  619. }
  620. dd {
  621. margin-left: 0
  622. }
  623. @media (min-width:768px) {
  624. .dl-horizontal dt {
  625. float: left;
  626. width: 160px;
  627. overflow: hidden;
  628. clear: left;
  629. text-align: right;
  630. text-overflow: ellipsis;
  631. white-space: nowrap
  632. }
  633. .dl-horizontal dd {
  634. margin-left: 180px
  635. }
  636. }
  637. abbr[data-original-title],
  638. abbr[title] {
  639. cursor: help;
  640. border-bottom: 1px dotted #e4eaec
  641. }
  642. .initialism {
  643. font-size: 90%;
  644. text-transform: uppercase
  645. }
  646. .container {
  647. padding-right: 15px;
  648. padding-left: 15px;
  649. margin-right: auto;
  650. margin-left: auto
  651. }
  652. @media (min-width:768px) {
  653. .container {
  654. width: 750px
  655. }
  656. }
  657. @media (min-width:992px) {
  658. .container {
  659. width: 970px
  660. }
  661. }
  662. @media (min-width:1200px) {
  663. .container {
  664. width: 1170px
  665. }
  666. }
  667. .container-fluid {
  668. padding-right: 15px;
  669. padding-left: 15px;
  670. margin-right: auto;
  671. margin-left: auto
  672. }
  673. .row {
  674. margin-right: -15px;
  675. margin-left: -15px
  676. }
  677. .col-lg-1,
  678. .col-lg-10,
  679. .col-lg-11,
  680. .col-lg-12,
  681. .col-lg-2,
  682. .col-lg-3,
  683. .col-lg-4,
  684. .col-lg-5,
  685. .col-lg-6,
  686. .col-lg-7,
  687. .col-lg-8,
  688. .col-lg-9,
  689. .col-md-1,
  690. .col-md-10,
  691. .col-md-11,
  692. .col-md-12,
  693. .col-md-2,
  694. .col-md-3,
  695. .col-md-4,
  696. .col-md-5,
  697. .col-md-6,
  698. .col-md-7,
  699. .col-md-8,
  700. .col-md-9,
  701. .col-sm-1,
  702. .col-sm-10,
  703. .col-sm-11,
  704. .col-sm-12,
  705. .col-sm-2,
  706. .col-sm-3,
  707. .col-sm-4,
  708. .col-sm-5,
  709. .col-sm-6,
  710. .col-sm-7,
  711. .col-sm-8,
  712. .col-sm-9,
  713. .col-xs-1,
  714. .col-xs-10,
  715. .col-xs-11,
  716. .col-xs-12,
  717. .col-xs-2,
  718. .col-xs-3,
  719. .col-xs-4,
  720. .col-xs-5,
  721. .col-xs-6,
  722. .col-xs-7,
  723. .col-xs-8,
  724. .col-xs-9 {
  725. position: relative;
  726. min-height: 1px;
  727. padding-right: 15px;
  728. padding-left: 15px
  729. }
  730. .col-xs-1,
  731. .col-xs-10,
  732. .col-xs-11,
  733. .col-xs-12,
  734. .col-xs-2,
  735. .col-xs-3,
  736. .col-xs-4,
  737. .col-xs-5,
  738. .col-xs-6,
  739. .col-xs-7,
  740. .col-xs-8,
  741. .col-xs-9 {
  742. float: left
  743. }
  744. .col-xs-12 {
  745. width: 100%
  746. }
  747. .col-xs-11 {
  748. width: 91.66666667%
  749. }
  750. .col-xs-10 {
  751. width: 83.33333333%
  752. }
  753. .col-xs-9 {
  754. width: 75%
  755. }
  756. .col-xs-8 {
  757. width: 66.66666667%
  758. }
  759. .col-xs-7 {
  760. width: 58.33333333%
  761. }
  762. .col-xs-6 {
  763. width: 50%
  764. }
  765. .col-xs-5 {
  766. width: 41.66666667%
  767. }
  768. .col-xs-4 {
  769. width: 33.33333333%
  770. }
  771. .col-xs-3 {
  772. width: 25%
  773. }
  774. .col-xs-2 {
  775. width: 16.66666667%
  776. }
  777. .col-xs-1 {
  778. width: 8.33333333%
  779. }
  780. .col-xs-pull-12 {
  781. right: 100%
  782. }
  783. .col-xs-pull-11 {
  784. right: 91.66666667%
  785. }
  786. .col-xs-pull-10 {
  787. right: 83.33333333%
  788. }
  789. .col-xs-pull-9 {
  790. right: 75%
  791. }
  792. .col-xs-pull-8 {
  793. right: 66.66666667%
  794. }
  795. .col-xs-pull-7 {
  796. right: 58.33333333%
  797. }
  798. .col-xs-pull-6 {
  799. right: 50%
  800. }
  801. .col-xs-pull-5 {
  802. right: 41.66666667%
  803. }
  804. .col-xs-pull-4 {
  805. right: 33.33333333%
  806. }
  807. .col-xs-pull-3 {
  808. right: 25%
  809. }
  810. .col-xs-pull-2 {
  811. right: 16.66666667%
  812. }
  813. .col-xs-pull-1 {
  814. right: 8.33333333%
  815. }
  816. .col-xs-pull-0 {
  817. right: auto
  818. }
  819. .col-xs-push-12 {
  820. left: 100%
  821. }
  822. .col-xs-push-11 {
  823. left: 91.66666667%
  824. }
  825. .col-xs-push-10 {
  826. left: 83.33333333%
  827. }
  828. .col-xs-push-9 {
  829. left: 75%
  830. }
  831. .col-xs-push-8 {
  832. left: 66.66666667%
  833. }
  834. .col-xs-push-7 {
  835. left: 58.33333333%
  836. }
  837. .col-xs-push-6 {
  838. left: 50%
  839. }
  840. .col-xs-push-5 {
  841. left: 41.66666667%
  842. }
  843. .col-xs-push-4 {
  844. left: 33.33333333%
  845. }
  846. .col-xs-push-3 {
  847. left: 25%
  848. }
  849. .col-xs-push-2 {
  850. left: 16.66666667%
  851. }
  852. .col-xs-push-1 {
  853. left: 8.33333333%
  854. }
  855. .col-xs-push-0 {
  856. left: auto
  857. }
  858. .col-xs-offset-12 {
  859. margin-left: 100%
  860. }
  861. .col-xs-offset-11 {
  862. margin-left: 91.66666667%
  863. }
  864. .col-xs-offset-10 {
  865. margin-left: 83.33333333%
  866. }
  867. .col-xs-offset-9 {
  868. margin-left: 75%
  869. }
  870. .col-xs-offset-8 {
  871. margin-left: 66.66666667%
  872. }
  873. .col-xs-offset-7 {
  874. margin-left: 58.33333333%
  875. }
  876. .col-xs-offset-6 {
  877. margin-left: 50%
  878. }
  879. .col-xs-offset-5 {
  880. margin-left: 41.66666667%
  881. }
  882. .col-xs-offset-4 {
  883. margin-left: 33.33333333%
  884. }
  885. .col-xs-offset-3 {
  886. margin-left: 25%
  887. }
  888. .col-xs-offset-2 {
  889. margin-left: 16.66666667%
  890. }
  891. .col-xs-offset-1 {
  892. margin-left: 8.33333333%
  893. }
  894. .col-xs-offset-0 {
  895. margin-left: 0
  896. }
  897. @media (min-width:768px) {
  898. .col-sm-1,
  899. .col-sm-10,
  900. .col-sm-11,
  901. .col-sm-12,
  902. .col-sm-2,
  903. .col-sm-3,
  904. .col-sm-4,
  905. .col-sm-5,
  906. .col-sm-6,
  907. .col-sm-7,
  908. .col-sm-8,
  909. .col-sm-9 {
  910. float: left
  911. }
  912. .col-sm-12 {
  913. width: 100%
  914. }
  915. .col-sm-11 {
  916. width: 91.66666667%
  917. }
  918. .col-sm-10 {
  919. width: 83.33333333%
  920. }
  921. .col-sm-9 {
  922. width: 75%
  923. }
  924. .col-sm-8 {
  925. width: 66.66666667%
  926. }
  927. .col-sm-7 {
  928. width: 58.33333333%
  929. }
  930. .col-sm-6 {
  931. width: 50%
  932. }
  933. .col-sm-5 {
  934. width: 41.66666667%
  935. }
  936. .col-sm-4 {
  937. width: 33.33333333%
  938. }
  939. .col-sm-3 {
  940. width: 25%
  941. }
  942. .col-sm-2 {
  943. width: 16.66666667%
  944. }
  945. .col-sm-1 {
  946. width: 8.33333333%
  947. }
  948. .col-sm-pull-12 {
  949. right: 100%
  950. }
  951. .col-sm-pull-11 {
  952. right: 91.66666667%
  953. }
  954. .col-sm-pull-10 {
  955. right: 83.33333333%
  956. }
  957. .col-sm-pull-9 {
  958. right: 75%
  959. }
  960. .col-sm-pull-8 {
  961. right: 66.66666667%
  962. }
  963. .col-sm-pull-7 {
  964. right: 58.33333333%
  965. }
  966. .col-sm-pull-6 {
  967. right: 50%
  968. }
  969. .col-sm-pull-5 {
  970. right: 41.66666667%
  971. }
  972. .col-sm-pull-4 {
  973. right: 33.33333333%
  974. }
  975. .col-sm-pull-3 {
  976. right: 25%
  977. }
  978. .col-sm-pull-2 {
  979. right: 16.66666667%
  980. }
  981. .col-sm-pull-1 {
  982. right: 8.33333333%
  983. }
  984. .col-sm-pull-0 {
  985. right: auto
  986. }
  987. .col-sm-push-12 {
  988. left: 100%
  989. }
  990. .col-sm-push-11 {
  991. left: 91.66666667%
  992. }
  993. .col-sm-push-10 {
  994. left: 83.33333333%
  995. }
  996. .col-sm-push-9 {
  997. left: 75%
  998. }
  999. .col-sm-push-8 {
  1000. left: 66.66666667%
  1001. }
  1002. .col-sm-push-7 {
  1003. left: 58.33333333%
  1004. }
  1005. .col-sm-push-6 {
  1006. left: 50%
  1007. }
  1008. .col-sm-push-5 {
  1009. left: 41.66666667%
  1010. }
  1011. .col-sm-push-4 {
  1012. left: 33.33333333%
  1013. }
  1014. .col-sm-push-3 {
  1015. left: 25%
  1016. }
  1017. .col-sm-push-2 {
  1018. left: 16.66666667%
  1019. }
  1020. .col-sm-push-1 {
  1021. left: 8.33333333%
  1022. }
  1023. .col-sm-push-0 {
  1024. left: auto
  1025. }
  1026. .col-sm-offset-12 {
  1027. margin-left: 100%
  1028. }
  1029. .col-sm-offset-11 {
  1030. margin-left: 91.66666667%
  1031. }
  1032. .col-sm-offset-10 {
  1033. margin-left: 83.33333333%
  1034. }
  1035. .col-sm-offset-9 {
  1036. margin-left: 75%
  1037. }
  1038. .col-sm-offset-8 {
  1039. margin-left: 66.66666667%
  1040. }
  1041. .col-sm-offset-7 {
  1042. margin-left: 58.33333333%
  1043. }
  1044. .col-sm-offset-6 {
  1045. margin-left: 50%
  1046. }
  1047. .col-sm-offset-5 {
  1048. margin-left: 41.66666667%
  1049. }
  1050. .col-sm-offset-4 {
  1051. margin-left: 33.33333333%
  1052. }
  1053. .col-sm-offset-3 {
  1054. margin-left: 25%
  1055. }
  1056. .col-sm-offset-2 {
  1057. margin-left: 16.66666667%
  1058. }
  1059. .col-sm-offset-1 {
  1060. margin-left: 8.33333333%
  1061. }
  1062. .col-sm-offset-0 {
  1063. margin-left: 0
  1064. }
  1065. }
  1066. @media (min-width:992px) {
  1067. .col-md-1,
  1068. .col-md-10,
  1069. .col-md-11,
  1070. .col-md-12,
  1071. .col-md-2,
  1072. .col-md-3,
  1073. .col-md-4,
  1074. .col-md-5,
  1075. .col-md-6,
  1076. .col-md-7,
  1077. .col-md-8,
  1078. .col-md-9 {
  1079. float: left
  1080. }
  1081. .col-md-12 {
  1082. width: 100%
  1083. }
  1084. .col-md-11 {
  1085. width: 91.66666667%
  1086. }
  1087. .col-md-10 {
  1088. width: 83.33333333%
  1089. }
  1090. .col-md-9 {
  1091. width: 75%
  1092. }
  1093. .col-md-8 {
  1094. width: 66.66666667%
  1095. }
  1096. .col-md-7 {
  1097. width: 58.33333333%
  1098. }
  1099. .col-md-6 {
  1100. width: 50%
  1101. }
  1102. .col-md-5 {
  1103. width: 41.66666667%
  1104. }
  1105. .col-md-4 {
  1106. width: 33.33333333%
  1107. }
  1108. .col-md-3 {
  1109. width: 25%
  1110. }
  1111. .col-md-2 {
  1112. width: 16.66666667%
  1113. }
  1114. .col-md-1 {
  1115. width: 8.33333333%
  1116. }
  1117. }
  1118. table {
  1119. background-color: transparent
  1120. }
  1121. caption {
  1122. padding-top: 8px;
  1123. padding-bottom: 8px;
  1124. color: #526069;
  1125. text-align: left
  1126. }
  1127. th {
  1128. text-align: left
  1129. }
  1130. .table {
  1131. width: 100%;
  1132. max-width: 100%;
  1133. margin-bottom: 22px
  1134. }
  1135. .table>tbody>tr>td,
  1136. .table>tbody>tr>th,
  1137. .table>tfoot>tr>td,
  1138. .table>tfoot>tr>th,
  1139. .table>thead>tr>td,
  1140. .table>thead>tr>th {
  1141. padding: 8px;
  1142. line-height: 1.57142857;
  1143. vertical-align: top;
  1144. border-top: 1px solid #e4eaec
  1145. }
  1146. .table>thead>tr>th {
  1147. vertical-align: bottom;
  1148. border-bottom: 2px solid #e4eaec
  1149. }
  1150. .table>caption+thead>tr:first-child>td,
  1151. .table>caption+thead>tr:first-child>th,
  1152. .table>colgroup+thead>tr:first-child>td,
  1153. .table>colgroup+thead>tr:first-child>th,
  1154. .table>thead:first-child>tr:first-child>td,
  1155. .table>thead:first-child>tr:first-child>th {
  1156. border-top: 0
  1157. }
  1158. .table>tbody+tbody {
  1159. border-top: 2px solid #e4eaec
  1160. }
  1161. .table .table {
  1162. background-color: #fff
  1163. }
  1164. .table-condensed>tbody>tr>td,
  1165. .table-condensed>tbody>tr>th,
  1166. .table-condensed>tfoot>tr>td,
  1167. .table-condensed>tfoot>tr>th,
  1168. .table-condensed>thead>tr>td,
  1169. .table-condensed>thead>tr>th {
  1170. padding: 5px
  1171. }
  1172. .table-bordered {
  1173. border: 1px solid #e4eaec
  1174. }
  1175. .table-bordered>tbody>tr>td,
  1176. .table-bordered>tbody>tr>th,
  1177. .table-bordered>tfoot>tr>td,
  1178. .table-bordered>tfoot>tr>th,
  1179. .table-bordered>thead>tr>td,
  1180. .table-bordered>thead>tr>th {
  1181. border: 1px solid #e4eaec
  1182. }
  1183. .table-bordered>thead>tr>td,
  1184. .table-bordered>thead>tr>th {
  1185. border-bottom-width: 2px
  1186. }
  1187. .table-striped>tbody>tr:nth-of-type(odd) {
  1188. background-color: rgba(243, 247, 249, .3)
  1189. }
  1190. .table-hover>tbody>tr:hover {
  1191. background-color: #f3f7f9
  1192. }
  1193. table col[class*=col-] {
  1194. position: static;
  1195. display: table-column;
  1196. float: none
  1197. }
  1198. table td[class*=col-],
  1199. table th[class*=col-] {
  1200. position: static;
  1201. display: table-cell;
  1202. float: none
  1203. }
  1204. .table>tbody>tr.active>td,
  1205. .table>tbody>tr.active>th,
  1206. .table>tbody>tr>td.active,
  1207. .table>tbody>tr>th.active,
  1208. .table>tfoot>tr.active>td,
  1209. .table>tfoot>tr.active>th,
  1210. .table>tfoot>tr>td.active,
  1211. .table>tfoot>tr>th.active,
  1212. .table>thead>tr.active>td,
  1213. .table>thead>tr.active>th,
  1214. .table>thead>tr>td.active,
  1215. .table>thead>tr>th.active {
  1216. background-color: #f3f7f9
  1217. }
  1218. .table-hover>tbody>tr.active:hover>td,
  1219. .table-hover>tbody>tr.active:hover>th,
  1220. .table-hover>tbody>tr:hover>.active,
  1221. .table-hover>tbody>tr>td.active:hover,
  1222. .table-hover>tbody>tr>th.active:hover {
  1223. background-color: #e2ecf1
  1224. }
  1225. .table>tbody>tr.success>td,
  1226. .table>tbody>tr.success>th,
  1227. .table>tbody>tr>td.success,
  1228. .table>tbody>tr>th.success,
  1229. .table>tfoot>tr.success>td,
  1230. .table>tfoot>tr.success>th,
  1231. .table>tfoot>tr>td.success,
  1232. .table>tfoot>tr>th.success,
  1233. .table>thead>tr.success>td,
  1234. .table>thead>tr.success>th,
  1235. .table>thead>tr>td.success,
  1236. .table>thead>tr>th.success {
  1237. background-color: #46be8a
  1238. }
  1239. .table-hover>tbody>tr.success:hover>td,
  1240. .table-hover>tbody>tr.success:hover>th,
  1241. .table-hover>tbody>tr:hover>.success,
  1242. .table-hover>tbody>tr>td.success:hover,
  1243. .table-hover>tbody>tr>th.success:hover {
  1244. background-color: #3dae7d
  1245. }
  1246. .table>tbody>tr.info>td,
  1247. .table>tbody>tr.info>th,
  1248. .table>tbody>tr>td.info,
  1249. .table>tbody>tr>th.info,
  1250. .table>tfoot>tr.info>td,
  1251. .table>tfoot>tr.info>th,
  1252. .table>tfoot>tr>td.info,
  1253. .table>tfoot>tr>th.info,
  1254. .table>thead>tr.info>td,
  1255. .table>thead>tr.info>th,
  1256. .table>thead>tr>td.info,
  1257. .table>thead>tr>th.info {
  1258. background-color: #57c7d4
  1259. }
  1260. .table-hover>tbody>tr.info:hover>td,
  1261. .table-hover>tbody>tr.info:hover>th,
  1262. .table-hover>tbody>tr:hover>.info,
  1263. .table-hover>tbody>tr>td.info:hover,
  1264. .table-hover>tbody>tr>th.info:hover {
  1265. background-color: #43c0cf
  1266. }
  1267. .table>tbody>tr.warning>td,
  1268. .table>tbody>tr.warning>th,
  1269. .table>tbody>tr>td.warning,
  1270. .table>tbody>tr>th.warning,
  1271. .table>tfoot>tr.warning>td,
  1272. .table>tfoot>tr.warning>th,
  1273. .table>tfoot>tr>td.warning,
  1274. .table>tfoot>tr>th.warning,
  1275. .table>thead>tr.warning>td,
  1276. .table>thead>tr.warning>th,
  1277. .table>thead>tr>td.warning,
  1278. .table>thead>tr>th.warning {
  1279. background-color: #f2a654
  1280. }
  1281. .table-hover>tbody>tr.warning:hover>td,
  1282. .table-hover>tbody>tr.warning:hover>th,
  1283. .table-hover>tbody>tr:hover>.warning,
  1284. .table-hover>tbody>tr>td.warning:hover,
  1285. .table-hover>tbody>tr>th.warning:hover {
  1286. background-color: #f09a3c
  1287. }
  1288. .table>tbody>tr.danger>td,
  1289. .table>tbody>tr.danger>th,
  1290. .table>tbody>tr>td.danger,
  1291. .table>tbody>tr>th.danger,
  1292. .table>tfoot>tr.danger>td,
  1293. .table>tfoot>tr.danger>th,
  1294. .table>tfoot>tr>td.danger,
  1295. .table>tfoot>tr>th.danger,
  1296. .table>thead>tr.danger>td,
  1297. .table>thead>tr.danger>th,
  1298. .table>thead>tr>td.danger,
  1299. .table>thead>tr>th.danger {
  1300. background-color: #f96868
  1301. }
  1302. .table-hover>tbody>tr.danger:hover>td,
  1303. .table-hover>tbody>tr.danger:hover>th,
  1304. .table-hover>tbody>tr:hover>.danger,
  1305. .table-hover>tbody>tr>td.danger:hover,
  1306. .table-hover>tbody>tr>th.danger:hover {
  1307. background-color: #f84f4f
  1308. }
  1309. .form-group {
  1310. margin-bottom: 20px
  1311. }
  1312. .btn-group-lg>.btn,
  1313. .btn-lg {
  1314. padding: 10px 18px;
  1315. font-size: 18px;
  1316. line-height: 1.3333333;
  1317. border-radius: 4px
  1318. }
  1319. .btn-group-sm>.btn,
  1320. .btn-sm {
  1321. padding: 6px 13px;
  1322. font-size: 12px;
  1323. line-height: 1.5;
  1324. border-radius: 2px
  1325. }
  1326. .btn-group-xs>.btn,
  1327. .btn-xs {
  1328. padding: 1px 5px;
  1329. font-size: 12px;
  1330. line-height: 1.5;
  1331. border-radius: 2px
  1332. }
  1333. .btn-block {
  1334. display: block;
  1335. width: 100%
  1336. }
  1337. .btn-block+.btn-block {
  1338. margin-top: 5px
  1339. }
  1340. input[type=button].btn-block,
  1341. input[type=reset].btn-block,
  1342. input[type=submit].btn-block {
  1343. width: 100%
  1344. }
  1345. .fade {
  1346. opacity: 0;
  1347. -webkit-transition: opacity .15s linear;
  1348. -o-transition: opacity .15s linear;
  1349. transition: opacity .15s linear
  1350. }
  1351. .fade.in {
  1352. opacity: 1
  1353. }
  1354. .collapse {
  1355. display: none
  1356. }
  1357. .collapse.in {
  1358. display: block
  1359. }
  1360. tr.collapse.in {
  1361. display: table-row
  1362. }
  1363. tbody.collapse.in {
  1364. display: table-row-group
  1365. }
  1366. .caret {
  1367. display: inline-block;
  1368. }
  1369. .dropdown,
  1370. .dropup {
  1371. position: relative
  1372. }
  1373. .dropdown-toggle:focus {
  1374. outline: 0
  1375. }
  1376. .dropdown-menu {
  1377. position: absolute;
  1378. top: 100%;
  1379. left: 0;
  1380. z-index: 1200;
  1381. display: none;
  1382. float: left;
  1383. min-width: 160px;
  1384. padding: 5px 0;
  1385. margin: 2px 0 0;
  1386. font-size: 14px;
  1387. text-align: left;
  1388. list-style: none;
  1389. background-color: #fff;
  1390. -webkit-background-clip: padding-box;
  1391. background-clip: padding-box;
  1392. border: 1px solid #ccc;
  1393. border: 1px solid #e4eaec;
  1394. border-radius: 3px;
  1395. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  1396. box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
  1397. }
  1398. .dropdown-menu.pull-right {
  1399. right: 0;
  1400. left: auto
  1401. }
  1402. .dropdown-menu .divider {
  1403. height: 1px;
  1404. margin: 10px 0;
  1405. overflow: hidden;
  1406. background-color: #e4eaec
  1407. }
  1408. .dropdown-menu>li>a {
  1409. display: block;
  1410. padding: 3px 20px;
  1411. clear: both;
  1412. font-weight: 400;
  1413. line-height: 1.57142857;
  1414. color: #76838f;
  1415. white-space: nowrap
  1416. }
  1417. .dropdown-menu>li>a:focus,
  1418. .dropdown-menu>li>a:hover {
  1419. color: #76838f;
  1420. text-decoration: none;
  1421. background-color: #f3f7f9
  1422. }
  1423. .dropdown-menu>.active>a,
  1424. .dropdown-menu>.active>a:focus,
  1425. .dropdown-menu>.active>a:hover {
  1426. color: #76838f;
  1427. text-decoration: none;
  1428. background-color: #f3f7f9;
  1429. outline: 0
  1430. }
  1431. .dropdown-menu>.disabled>a,
  1432. .dropdown-menu>.disabled>a:focus,
  1433. .dropdown-menu>.disabled>a:hover {
  1434. color: #ccd5db
  1435. }
  1436. .dropdown-menu>.disabled>a:focus,
  1437. .dropdown-menu>.disabled>a:hover {
  1438. text-decoration: none;
  1439. cursor: not-allowed;
  1440. background-color: transparent;
  1441. background-image: none;
  1442. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  1443. }
  1444. .open>.dropdown-menu {
  1445. display: block
  1446. }
  1447. .open>a {
  1448. outline: 0
  1449. }
  1450. .dropdown-menu-right {
  1451. right: 0;
  1452. left: auto
  1453. }
  1454. .dropdown-menu-left {
  1455. right: auto;
  1456. left: 0
  1457. }
  1458. .dropdown-header {
  1459. display: block;
  1460. padding: 3px 20px;
  1461. font-size: 12px;
  1462. line-height: 1.57142857;
  1463. color: #37474f;
  1464. white-space: nowrap
  1465. }
  1466. .dropdown-backdrop {
  1467. position: fixed;
  1468. top: 0;
  1469. right: 0;
  1470. bottom: 0;
  1471. left: 0;
  1472. z-index: 1190
  1473. }
  1474. .pull-right>.dropdown-menu {
  1475. right: 0;
  1476. left: auto
  1477. }
  1478. .dropup .caret,
  1479. .navbar-fixed-bottom .dropdown .caret {
  1480. content: "";
  1481. border-top: 0;
  1482. border-bottom: 4px dashed;
  1483. border-bottom: 4px solid\9
  1484. }
  1485. .dropup .dropdown-menu,
  1486. .navbar-fixed-bottom .dropdown .dropdown-menu {
  1487. top: auto;
  1488. bottom: 100%;
  1489. margin-bottom: 2px
  1490. }
  1491. @media (min-width:768px) {
  1492. .navbar-right .dropdown-menu {
  1493. right: -45px;
  1494. left: auto;
  1495. text-align: center;
  1496. }
  1497. .navbar-right .dropdown-menu-left {
  1498. right: auto;
  1499. left: 0
  1500. }
  1501. }
  1502. .btn-toolbar {
  1503. margin-left: -5px
  1504. }
  1505. .btn-toolbar .btn,
  1506. .btn-toolbar .btn-group,
  1507. .btn-toolbar .input-group {
  1508. float: left
  1509. }
  1510. .btn-toolbar>.btn,
  1511. .btn-toolbar>.btn-group,
  1512. .btn-toolbar>.input-group {
  1513. margin-left: 5px
  1514. }
  1515. .btn .caret {
  1516. margin-left: 0
  1517. }
  1518. .btn-lg .caret {
  1519. border-width: 5px 5px 0;
  1520. border-bottom-width: 0
  1521. }
  1522. .dropup .btn-lg .caret {
  1523. border-width: 0 5px 5px
  1524. }
  1525. [data-toggle=buttons]>.btn input[type=checkbox],
  1526. [data-toggle=buttons]>.btn input[type=radio],
  1527. [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],
  1528. [data-toggle=buttons]>.btn-group>.btn input[type=radio] {
  1529. position: absolute;
  1530. clip: rect(0, 0, 0, 0);
  1531. pointer-events: none
  1532. }
  1533. .nav {
  1534. padding-left: 0;
  1535. margin-bottom: 0;
  1536. list-style: none
  1537. }
  1538. .nav>li {
  1539. position: relative;
  1540. display: block
  1541. }
  1542. .nav>li>a {
  1543. position: relative;
  1544. display: block;
  1545. padding: 10px 15px
  1546. }
  1547. .nav>li>a:focus,
  1548. .nav>li>a:hover {
  1549. text-decoration: none;
  1550. }
  1551. .nav>li.disabled>a {
  1552. color: #a3afb7
  1553. }
  1554. .nav>li.disabled>a:focus,
  1555. .nav>li.disabled>a:hover {
  1556. color: #a3afb7;
  1557. text-decoration: none;
  1558. cursor: not-allowed;
  1559. background-color: transparent
  1560. }
  1561. .nav .open>a,
  1562. .nav .open>a:focus,
  1563. .nav .open>a:hover {
  1564. border-color: #ff6f06
  1565. }
  1566. .nav .nav-divider {
  1567. height: 1px;
  1568. margin: 10px 0;
  1569. overflow: hidden;
  1570. background-color: #e5e5e5
  1571. }
  1572. .nav>li>a>img {
  1573. max-width: none
  1574. }
  1575. .navbar {
  1576. position: relative;
  1577. margin-bottom: 22px;
  1578. border: 1px solid transparent
  1579. }
  1580. @media (min-width:768px) {
  1581. .navbar {
  1582. border-radius: 3px
  1583. }
  1584. }
  1585. @media (min-width:768px) {
  1586. .navbar-header {
  1587. float: left
  1588. }
  1589. }
  1590. .navbar-collapse {
  1591. padding-right: 15px;
  1592. padding-left: 15px;
  1593. overflow-x: visible;
  1594. -webkit-overflow-scrolling: touch;
  1595. border-top: 1px solid transparent;
  1596. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  1597. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1)
  1598. }
  1599. .navbar-collapse.in {
  1600. overflow-y: auto
  1601. }
  1602. @media (min-width:768px) {
  1603. .navbar-collapse {
  1604. width: auto;
  1605. border-top: 0;
  1606. -webkit-box-shadow: none;
  1607. box-shadow: none
  1608. }
  1609. .navbar-collapse.collapse {
  1610. display: block !important;
  1611. height: auto !important;
  1612. padding-bottom: 0;
  1613. overflow: visible !important
  1614. }
  1615. .navbar-collapse.in {
  1616. overflow-y: visible
  1617. }
  1618. .navbar-fixed-bottom .navbar-collapse,
  1619. .navbar-fixed-top .navbar-collapse,
  1620. .navbar-static-top .navbar-collapse {
  1621. padding-right: 0;
  1622. padding-left: 0
  1623. }
  1624. }
  1625. .navbar-fixed-bottom .navbar-collapse,
  1626. .navbar-fixed-top .navbar-collapse {
  1627. max-height: 340px
  1628. }
  1629. @media (max-device-width:480px) and (orientation:landscape) {
  1630. .navbar-fixed-bottom .navbar-collapse,
  1631. .navbar-fixed-top .navbar-collapse {
  1632. max-height: 200px
  1633. }
  1634. }
  1635. .container-fluid>.navbar-collapse,
  1636. .container-fluid>.navbar-header,
  1637. .container>.navbar-collapse,
  1638. .container>.navbar-header {
  1639. margin-right: -15px;
  1640. margin-left: -15px
  1641. }
  1642. @media (min-width:768px) {
  1643. .container-fluid>.navbar-collapse,
  1644. .container-fluid>.navbar-header,
  1645. .container>.navbar-collapse,
  1646. .container>.navbar-header {
  1647. margin-right: 0;
  1648. margin-left: 0
  1649. }
  1650. }
  1651. .navbar-static-top {
  1652. z-index: 1200;
  1653. border-width: 0 0 1px
  1654. }
  1655. @media (min-width:768px) {
  1656. .navbar-static-top {
  1657. border-radius: 0
  1658. }
  1659. }
  1660. .navbar-fixed-bottom,
  1661. .navbar-fixed-top {
  1662. position: fixed;
  1663. right: 0;
  1664. left: 0;
  1665. z-index: 1500
  1666. }
  1667. @media (min-width:768px) {
  1668. .navbar-fixed-bottom,
  1669. .navbar-fixed-top {
  1670. border-radius: 0
  1671. }
  1672. }
  1673. .navbar-fixed-top {
  1674. top: 0;
  1675. border-width: 0 0 1px
  1676. }
  1677. .navbar-fixed-bottom {
  1678. bottom: 0;
  1679. margin-bottom: 0;
  1680. border-width: 1px 0 0
  1681. }
  1682. .navbar-brand {
  1683. float: left;
  1684. height: 66px;
  1685. padding: 22px 15px;
  1686. font-size: 18px;
  1687. line-height: 22px
  1688. }
  1689. .navbar-brand:focus,
  1690. .navbar-brand:hover {
  1691. text-decoration: none
  1692. }
  1693. .navbar-brand>img {
  1694. display: block
  1695. }
  1696. @media (min-width:768px) {
  1697. .navbar>.container .navbar-brand,
  1698. .navbar>.container-fluid .navbar-brand {
  1699. margin-left: -15px
  1700. }
  1701. }
  1702. .navbar-toggle {
  1703. position: relative;
  1704. float: right;
  1705. padding: 9px 10px;
  1706. margin-top: 16px;
  1707. margin-right: 15px;
  1708. margin-bottom: 16px;
  1709. background-color: transparent;
  1710. background-image: none;
  1711. border: 1px solid transparent;
  1712. border-radius: 3px
  1713. }
  1714. .navbar-toggle:focus {
  1715. outline: 0
  1716. }
  1717. .navbar-toggle .icon-bar {
  1718. display: block;
  1719. width: 22px;
  1720. height: 2px;
  1721. border-radius: 1px
  1722. }
  1723. .navbar-toggle .icon-bar+.icon-bar {
  1724. margin-top: 4px
  1725. }
  1726. @media (min-width:768px) {
  1727. .navbar-toggle {
  1728. display: none
  1729. }
  1730. }
  1731. .navbar-nav {
  1732. margin: 11px -15px
  1733. }
  1734. .navbar-nav>li>a {
  1735. padding-top: 10px;
  1736. padding-bottom: 10px;
  1737. line-height: 22px
  1738. }
  1739. @media (max-width:767px) {
  1740. .navbar-nav .open .dropdown-menu {
  1741. position: static;
  1742. float: none;
  1743. width: auto;
  1744. margin-top: 0;
  1745. background-color: transparent;
  1746. border: 0;
  1747. -webkit-box-shadow: none;
  1748. box-shadow: none
  1749. }
  1750. .navbar-nav .open .dropdown-menu .dropdown-header,
  1751. .navbar-nav .open .dropdown-menu>li>a {
  1752. padding: 5px 15px 5px 25px
  1753. }
  1754. .navbar-nav .open .dropdown-menu>li>a {
  1755. line-height: 22px
  1756. }
  1757. .navbar-nav .open .dropdown-menu>li>a:focus,
  1758. .navbar-nav .open .dropdown-menu>li>a:hover {
  1759. background-image: none
  1760. }
  1761. }
  1762. @media (min-width:768px) {
  1763. .navbar-nav {
  1764. float: left;
  1765. margin: 0
  1766. }
  1767. .navbar-nav>li {
  1768. float: left
  1769. }
  1770. .navbar-nav>li>a {
  1771. font-size: 16px;
  1772. padding-top: 22px;
  1773. padding-bottom: 22px;
  1774. }
  1775. }
  1776. .navbar-nav>li>.dropdown-menu {
  1777. margin-top: 0;
  1778. border-top-left-radius: 0;
  1779. border-top-right-radius: 0
  1780. }
  1781. .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
  1782. margin-bottom: 0;
  1783. border-top-left-radius: 3px;
  1784. border-top-right-radius: 3px;
  1785. border-bottom-right-radius: 0;
  1786. border-bottom-left-radius: 0
  1787. }
  1788. .navbar-btn {
  1789. margin-top: 15px;
  1790. margin-bottom: 15px
  1791. }
  1792. .navbar-btn.btn-sm {
  1793. margin-top: 17px;
  1794. margin-bottom: 17px
  1795. }
  1796. .navbar-btn.btn-xs {
  1797. margin-top: 22px;
  1798. margin-bottom: 22px
  1799. }
  1800. .navbar-text {
  1801. margin-top: 22px;
  1802. margin-bottom: 22px
  1803. }
  1804. @media (min-width:768px) {
  1805. .navbar-text {
  1806. float: left;
  1807. margin-right: 15px;
  1808. margin-left: 15px
  1809. }
  1810. }
  1811. @media (min-width:768px) {
  1812. .navbar-left {
  1813. float: left !important
  1814. }
  1815. .navbar-right {
  1816. float: right;
  1817. margin-right: -15px
  1818. }
  1819. .navbar-right~.navbar-right {
  1820. margin-right: 0
  1821. }
  1822. }
  1823. .navbar-default {
  1824. background-color: #fff;
  1825. border-color: #e4eaec
  1826. }
  1827. .navbar-default .navbar-brand {
  1828. color: #37474f
  1829. }
  1830. .navbar-default .navbar-brand:focus,
  1831. .navbar-default .navbar-brand:hover {
  1832. color: #37474f;
  1833. background-color: none
  1834. }
  1835. .navbar-default .navbar-text {
  1836. color: #76838f
  1837. }
  1838. .navbar-default .navbar-nav>li>a {
  1839. color: #76838f
  1840. }
  1841. .navbar-default .navbar-nav>li>a:focus,
  1842. .navbar-default .navbar-nav>li>a:hover {
  1843. color: #526069;
  1844. }
  1845. .navbar-default .navbar-nav>.active>a,
  1846. .navbar-default .navbar-nav>.active>a:focus,
  1847. .navbar-default .navbar-nav>.active>a:hover {
  1848. color: #526069;
  1849. }
  1850. .navbar-default .navbar-nav>.disabled>a,
  1851. .navbar-default .navbar-nav>.disabled>a:focus,
  1852. .navbar-default .navbar-nav>.disabled>a:hover {
  1853. color: #ccd5db;
  1854. background-color: transparent
  1855. }
  1856. .navbar-default .navbar-toggle {
  1857. border-color: transparent
  1858. }
  1859. .navbar-default .navbar-toggle:focus,
  1860. .navbar-default .navbar-toggle:hover {
  1861. background-color: rgba(243, 247, 249, .3)
  1862. }
  1863. .navbar-default .navbar-toggle .icon-bar {
  1864. background-color: #76838f
  1865. }
  1866. .navbar-default .navbar-collapse,
  1867. .navbar-default .navbar-form {
  1868. border-color: #e4eaec
  1869. }
  1870. .navbar-default .navbar-nav>.open>a,
  1871. .navbar-default .navbar-nav>.open>a:focus,
  1872. .navbar-default .navbar-nav>.open>a:hover {
  1873. color: #526069;
  1874. }
  1875. @media (max-width:767px) {
  1876. .navbar-default .navbar-nav .open .dropdown-menu>li>a {
  1877. color: #76838f
  1878. }
  1879. .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
  1880. .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
  1881. color: #526069;
  1882. background-color: rgba(243, 247, 249, .3)
  1883. }
  1884. .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
  1885. .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
  1886. .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
  1887. color: #526069;
  1888. background-color: rgba(243, 247, 249, .6)
  1889. }
  1890. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
  1891. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
  1892. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
  1893. color: #ccd5db;
  1894. background-color: transparent
  1895. }
  1896. }
  1897. .navbar-default .navbar-link {
  1898. color: #76838f
  1899. }
  1900. .navbar-default .navbar-link:hover {
  1901. color: #526069
  1902. }
  1903. .navbar-default .btn-link {
  1904. color: #76838f
  1905. }
  1906. .navbar-default .btn-link:focus,
  1907. .navbar-default .btn-link:hover {
  1908. color: #526069
  1909. }
  1910. .navbar-default .btn-link[disabled]:focus,
  1911. .navbar-default .btn-link[disabled]:hover,
  1912. fieldset[disabled] .navbar-default .btn-link:focus,
  1913. fieldset[disabled] .navbar-default .btn-link:hover {
  1914. color: #ccd5db
  1915. }
  1916. .btn-group-vertical>.btn-group:after,
  1917. .btn-group-vertical>.btn-group:before,
  1918. .btn-toolbar:after,
  1919. .btn-toolbar:before,
  1920. .clearfix:after,
  1921. .clearfix:before,
  1922. .container-fluid:after,
  1923. .container-fluid:before,
  1924. .container:after,
  1925. .container:before,
  1926. .dl-horizontal dd:after,
  1927. .dl-horizontal dd:before,
  1928. .form-horizontal .form-group:after,
  1929. .form-horizontal .form-group:before,
  1930. .modal-footer:after,
  1931. .modal-footer:before,
  1932. .modal-header:after,
  1933. .modal-header:before,
  1934. .nav:after,
  1935. .nav:before,
  1936. .navbar-collapse:after,
  1937. .navbar-collapse:before,
  1938. .navbar-header:after,
  1939. .navbar-header:before,
  1940. .navbar:after,
  1941. .navbar:before,
  1942. .pager:after,
  1943. .pager:before,
  1944. .panel-body:after,
  1945. .panel-body:before,
  1946. .row:after,
  1947. .row:before {
  1948. display: table;
  1949. content: " "
  1950. }
  1951. .btn-group-vertical>.btn-group:after,
  1952. .btn-toolbar:after,
  1953. .clearfix:after,
  1954. .container-fluid:after,
  1955. .container:after,
  1956. .dl-horizontal dd:after,
  1957. .form-horizontal .form-group:after,
  1958. .modal-footer:after,
  1959. .modal-header:after,
  1960. .nav:after,
  1961. .navbar-collapse:after,
  1962. .navbar-header:after,
  1963. .navbar:after,
  1964. .pager:after,
  1965. .panel-body:after,
  1966. .row:after {
  1967. clear: both
  1968. }
  1969. .pull-right {
  1970. float: right !important
  1971. }
  1972. .pull-left {
  1973. float: left !important
  1974. }
  1975. .hide {
  1976. display: none !important
  1977. }
  1978. .show {
  1979. display: block !important
  1980. }
  1981. .hidden {
  1982. display: none !important
  1983. }
  1984. .mark,
  1985. mark {
  1986. color: #fff;
  1987. border-radius: 2px
  1988. }
  1989. pre code {
  1990. border: none
  1991. }
  1992. .container {
  1993. max-width: 100%
  1994. }
  1995. @media (min-width:1600px) {
  1996. .container {
  1997. width: 1310px
  1998. }
  1999. }
  2000. .breadcrumb {
  2001. padding: 14px 10px;
  2002. margin-bottom: 5px;
  2003. list-style: none;
  2004. background-color: transparent;
  2005. border-radius: 3px
  2006. }
  2007. .breadcrumb>li {
  2008. display: inline-block;
  2009. margin-right: 8px;
  2010. margin-top: 5px;
  2011. }
  2012. .breadcrumb>li+li:before {
  2013. padding: 0 5px;
  2014. color: #ff6f06;
  2015. /*content: "/\00a0"*/
  2016. }
  2017. .breadcrumb>.active {
  2018. color: #76838f
  2019. }
  2020. .comments {
  2021. padding: 0;
  2022. margin: 0;
  2023. }
  2024. .comments .comment {
  2025. border: none;
  2026. border-bottom: 1px solid #e4eaec;
  2027. }
  2028. .comments .comment .comment:first-child {
  2029. border-top: 1px solid #e4eaec;
  2030. }
  2031. .comments .comment .comment:last-child {
  2032. border-bottom: none;
  2033. }
  2034. .comment {
  2035. padding: 20px 0;
  2036. margin: 0;
  2037. }
  2038. .comment .comment {
  2039. padding-bottom: 20px;
  2040. margin-top: 20px;
  2041. }
  2042. .comment .comment:last-child {
  2043. padding-bottom: 0;
  2044. }
  2045. .panel-body>.example-wrap:last-child {
  2046. margin-bottom: 0;
  2047. }
  2048. .panel-body>.row:last-child>[class*="col-"]:last-child .example-wrap:last-child {
  2049. margin-bottom: 0;
  2050. }
  2051. /*web-icons.min.css*/
  2052. @font-face {
  2053. font-family: 'Web Icons';
  2054. font-style: normal;
  2055. font-weight: 400;
  2056. src: url(../fonts/web-icons.eot);
  2057. src: url(../fonts/web-icons.eot) format('embedded-opentype'), url(../fonts/web-icons.woff2) format('woff2'), url(../fonts/web-icons.woff) format('woff'), url(../fonts/web-icons.ttf) format('truetype'), url(../fonts/web-icons.svg) format('svg')
  2058. }
  2059. [class*=" wb-"],
  2060. [class^=wb-] {
  2061. position: relative;
  2062. display: inline-block;
  2063. font-family: 'Web Icons';
  2064. font-style: normal;
  2065. font-weight: 400;
  2066. -webkit-transform: translate(0, 0);
  2067. -ms-transform: translate(0, 0);
  2068. -o-transform: translate(0, 0);
  2069. transform: translate(0, 0);
  2070. text-rendering: auto;
  2071. speak: none;
  2072. -webkit-font-smoothing: antialiased;
  2073. -moz-osx-font-smoothing: grayscale
  2074. }
  2075. .wb-check-circle:before {
  2076. content: "\f191";
  2077. }
  2078. /*font-awesome.min.css*/
  2079. /*!
  2080. * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
  2081. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  2082. */
  2083. [class*=" fa-"],
  2084. [class^=fa-] {
  2085. position: relative;
  2086. display: inline-block;
  2087. font-family: FontAwesome;
  2088. font-style: normal;
  2089. font-weight: 400;
  2090. -webkit-transform: translate(0, 0);
  2091. -ms-transform: translate(0, 0);
  2092. -o-transform: translate(0, 0);
  2093. transform: translate(0, 0);
  2094. text-rendering: auto;
  2095. speak: none;
  2096. -webkit-font-smoothing: antialiased;
  2097. -moz-osx-font-smoothing: grayscale
  2098. }
  2099. @font-face {
  2100. font-family: FontAwesome;
  2101. font-style: normal;
  2102. font-weight: 400;
  2103. src: url(../fonts/fontawesome-webfont.eot);
  2104. src: url(../fonts/fontawesome-webfont.eot) format('embedded-opentype'), url(../fonts/fontawesome-webfont.woff2) format('woff2'), url(../fonts/fontawesome-webfont.woff) format('woff'), url(../fonts/fontawesome-webfont.ttf) format('truetype'), url(../fonts/fontawesome-webfont.svg) format('svg')
  2105. }
  2106. .fa-database:before {
  2107. content: "\f1c0"
  2108. }
  2109. .fa-ban:before {
  2110. content: "\f05e";
  2111. }
  2112. .fa-question:before {
  2113. content: "\f128"
  2114. }
  2115. .fa-download:before {
  2116. content: "\f019"
  2117. }
  2118. .fa-angle-down:before {
  2119. content: "\f107"
  2120. }
  2121. .fa-comments-o:before {
  2122. content: "\f0e6";
  2123. }
  2124. /*7-stroke.min.css*/
  2125. /*formValidation.min.css*/
  2126. /*asScrollable.min.css*/
  2127. /*alertify.min.css*/
  2128. /*webui-popover.min.css*/
  2129. /*flag-icon.min.css*/
  2130. .dropdown-menu .flag-icon {
  2131. margin-right: 5px
  2132. }
  2133. /*eyoucms.css*/
  2134. /*变量定义*/
  2135. /*变量*/
  2136. /*文字颜色(深)*/
  2137. /*鼠标经过文字颜色*/
  2138. /*选中状态*/
  2139. /*圆角度*/
  2140. /*导航高度*/
  2141. /*文字颜色(淡)*/
  2142. /*文字颜色(浅)*/
  2143. /*导航选中背景*/
  2144. /*首页间隔区块背景*/
  2145. /*面包屑导航*/
  2146. /*内页主体背景*/
  2147. /*编辑器内容背景*/
  2148. /*编辑器文字颜色*/
  2149. /*内页背景色*/
  2150. /*边框颜色*/
  2151. /*样式方法*/
  2152. /*超链接文字颜色*/
  2153. .less-link {
  2154. color: #999999;
  2155. }
  2156. .less-link:hover {
  2157. color: #ff6f06;
  2158. }
  2159. .less-decorationnone {
  2160. text-decoration: none;
  2161. }
  2162. .less-decorationnone:active,
  2163. .less-decorationnone:focus,
  2164. .less-decorationnone:hover {
  2165. text-decoration: none;
  2166. }
  2167. /*弹性布局*/
  2168. .flex {
  2169. display: -webkit-box;
  2170. display: -moz-box;
  2171. display: -webkit-flex;
  2172. display: -moz-flex;
  2173. display: -ms-flexbox;
  2174. display: flex;
  2175. }
  2176. .flexs {
  2177. -webkit-box-flex: 1;
  2178. -moz-box-flex: 1;
  2179. -webkit-flex: 1;
  2180. -ms-flex: 1;
  2181. flex: 1;
  2182. }
  2183. /*弹性布局垂直居中*/
  2184. .less-flex-vm {
  2185. display: -webkit-box;
  2186. display: -ms-flexbox;
  2187. display: -webkit-flex;
  2188. display: flex;
  2189. -webkit-box-align: center;
  2190. -ms-flex-align: center;
  2191. -webkit-align-items: center;
  2192. align-items: center;
  2193. }
  2194. /*css3样式*/
  2195. .less-transition {
  2196. transition: all 0.5s;
  2197. -moz-transition: all 0.5s;
  2198. -webkit-transition: all 0.5s;
  2199. -o-transition: all 0.5s;
  2200. }
  2201. /*行高*/
  2202. .height-20 {
  2203. height: 20px;
  2204. }
  2205. /**/
  2206. .less-page-content {
  2207. background: #ffffff;
  2208. padding: 30px;
  2209. }
  2210. @media (max-width: 767px) {
  2211. .less-page-content {
  2212. padding: 10px;
  2213. }
  2214. }
  2215. .less-page-body {
  2216. padding: 30px 0px;
  2217. background: #ffffff;
  2218. }
  2219. @media (max-width: 767px) {
  2220. .less-page-body {
  2221. padding: 0px;
  2222. }
  2223. }
  2224. .less-uldestyle {
  2225. padding: 0px;
  2226. list-style: none;
  2227. }
  2228. /**/
  2229. @keyframes mrotatex {
  2230. from {
  2231. -webkit-transform: rotateX(0deg);
  2232. -moz-transform: rotateX(0deg);
  2233. -o-transform: rotateX(0deg);
  2234. -ms-transform: rotateX(0deg);
  2235. transform: rotateX(0deg);
  2236. }
  2237. to {
  2238. -webkit-transform: rotateX(180deg);
  2239. -moz-transform: rotateX(180deg);
  2240. -o-transform: rotateX(180deg);
  2241. -ms-transform: rotateX(180deg);
  2242. transform: rotateX(180deg);
  2243. }
  2244. }
  2245. @-moz-keyframes mrotatex {
  2246. from {
  2247. -webkit-transform: rotateX(0deg);
  2248. -moz-transform: rotateX(0deg);
  2249. -o-transform: rotateX(0deg);
  2250. -ms-transform: rotateX(0deg);
  2251. transform: rotateX(0deg);
  2252. }
  2253. to {
  2254. -webkit-transform: rotateX(180deg);
  2255. -moz-transform: rotateX(180deg);
  2256. -o-transform: rotateX(180deg);
  2257. -ms-transform: rotateX(180deg);
  2258. transform: rotateX(180deg);
  2259. }
  2260. }
  2261. @-webkit-keyframes mrotatex {
  2262. from {
  2263. -webkit-transform: rotateX(0deg);
  2264. -moz-transform: rotateX(0deg);
  2265. -o-transform: rotateX(0deg);
  2266. -ms-transform: rotateX(0deg);
  2267. transform: rotateX(0deg);
  2268. }
  2269. to {
  2270. -webkit-transform: rotateX(180deg);
  2271. -moz-transform: rotateX(180deg);
  2272. -o-transform: rotateX(180deg);
  2273. -ms-transform: rotateX(180deg);
  2274. transform: rotateX(180deg);
  2275. }
  2276. }
  2277. @-o-keyframes mrotatex {
  2278. from {
  2279. -webkit-transform: rotateX(0deg);
  2280. -moz-transform: rotateX(0deg);
  2281. -o-transform: rotateX(0deg);
  2282. -ms-transform: rotateX(0deg);
  2283. transform: rotateX(0deg);
  2284. }
  2285. to {
  2286. -webkit-transform: rotateX(180deg);
  2287. -moz-transform: rotateX(180deg);
  2288. -o-transform: rotateX(180deg);
  2289. -ms-transform: rotateX(180deg);
  2290. transform: rotateX(180deg);
  2291. }
  2292. }
  2293. @keyframes circle {
  2294. 0% {
  2295. -webkit-transform: rotate(0deg);
  2296. -moz-transform: rotate(0deg);
  2297. -o-transform: rotate(0deg);
  2298. -ms-transform: rotate(0deg);
  2299. transform: rotate(0deg);
  2300. }
  2301. 100% {
  2302. -webkit-transform: rotate(-60deg);
  2303. -moz-transform: rotate(-60deg);
  2304. -o-transform: rotate(-60deg);
  2305. -ms-transform: rotate(-60deg);
  2306. transform: rotate(-60deg);
  2307. }
  2308. }
  2309. @-moz-keyframes circle {
  2310. 0% {
  2311. -webkit-transform: rotate(0);
  2312. -moz-transform: rotate(0);
  2313. -o-transform: rotate(0);
  2314. -ms-transform: rotate(0);
  2315. transform: rotate(0);
  2316. }
  2317. 100% {
  2318. -webkit-transform: rotate(-60deg);
  2319. -moz-transform: rotate(-60deg);
  2320. -o-transform: rotate(-60deg);
  2321. -ms-transform: rotate(-60deg);
  2322. transform: rotate(-60deg);
  2323. }
  2324. }
  2325. @-webkit-keyframes circle {
  2326. 0% {
  2327. -webkit-transform: rotate(0);
  2328. -moz-transform: rotate(0);
  2329. -o-transform: rotate(0);
  2330. -ms-transform: rotate(0);
  2331. transform: rotate(0);
  2332. }
  2333. 100% {
  2334. -webkit-transform: rotate(-60deg);
  2335. -moz-transform: rotate(-60deg);
  2336. -o-transform: rotate(-60deg);
  2337. -ms-transform: rotate(-60deg);
  2338. transform: rotate(-60deg);
  2339. }
  2340. }
  2341. @-o-keyframes circle {
  2342. 0% {
  2343. -webkit-transform: rotate(0);
  2344. -moz-transform: rotate(0);
  2345. -o-transform: rotate(0);
  2346. -ms-transform: rotate(0);
  2347. transform: rotate(0);
  2348. }
  2349. 100% {
  2350. -webkit-transform: rotate(-60deg);
  2351. -moz-transform: rotate(-60deg);
  2352. -o-transform: rotate(-60deg);
  2353. -ms-transform: rotate(-60deg);
  2354. transform: rotate(-60deg);
  2355. }
  2356. }
  2357. /* 反馈弹窗 */
  2358. /* 表单验证码图片 */
  2359. #getcode {
  2360. height: 24px;
  2361. }
  2362. /*初始化样式*/
  2363. /*全局样式*/
  2364. html,
  2365. body {
  2366. width: 100%;
  2367. max-width: 100%;
  2368. min-width: 320px;
  2369. }
  2370. body {
  2371. font: 14px/1.5 Roboto, PingFang SC, Lantinghei SC, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif !important;
  2372. color: #999999;
  2373. overflow-x: hidden;
  2374. }
  2375. body.indexcss {
  2376. background: #f7f7f7;
  2377. }
  2378. #product-summary .summary-body h3,
  2379. #product-summary .summary-body p.desc,
  2380. #product-seo section.section h3,
  2381. #product-seo section.section p.desc,
  2382. #product-exp .tab-exp h3,
  2383. #product-exp .tab-exp p.desc,
  2384. #product-code .tab-code h3,
  2385. #product-code .tab-code p.desc,
  2386. #product-para .para-list li .para-title,
  2387. #product-seave h3,
  2388. #product-seave p.desc {
  2389. font: 16px/1.5 "HanHei-SC", "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", Roboto, Arial, sans-serif;
  2390. }
  2391. .tooltip-inner {
  2392. padding: 8px 15px;
  2393. white-space: nowrap;
  2394. font: 14px/1.5 "HanHei-SC", "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", Roboto, Arial, sans-serif;
  2395. background: #263238;
  2396. }
  2397. .webui-popover-content .icon-play {
  2398. position: relative;
  2399. top: 2px;
  2400. }
  2401. /* 省略号 */
  2402. .slh,
  2403. .ey_page li a {
  2404. display: block;
  2405. overflow: hidden;
  2406. white-space: nowrap;
  2407. text-overflow: ellipsis;
  2408. }
  2409. /*其他*/
  2410. .height100 {
  2411. height: 100% !important;
  2412. }
  2413. .loader.loader-circle {
  2414. border-left-color: #ff6f06;
  2415. }
  2416. .horizontal {
  2417. -webkit-transform: rotate(90deg);
  2418. -moz-transform: rotate(90deg);
  2419. -o-transform: rotate(90deg);
  2420. -ms-transform: rotate(90deg);
  2421. transform: rotate(90deg);
  2422. }
  2423. .white * {
  2424. color: #fff;
  2425. }
  2426. .navbar {
  2427. width: 100%;
  2428. }
  2429. .navbar-toolbar .open .dropdown-menu-right {
  2430. left: auto;
  2431. overflow: visible;
  2432. }
  2433. @media (min-width: 480px) {
  2434. .visible-sxs {
  2435. display: none;
  2436. }
  2437. }
  2438. @media (max-width: 479px) {
  2439. .hidden-sxs {
  2440. display: none;
  2441. }
  2442. }
  2443. /*动画*/
  2444. [class*=animation-] {
  2445. -webkit-animation-duration: 1s;
  2446. -moz-animation-duration: 1s;
  2447. -o-animation-duration: 1s;
  2448. -ms-animation-duration: 1s;
  2449. animation-duration: 1s;
  2450. }
  2451. .animation-time500 {
  2452. -webkit-animation-duration: 0.5s;
  2453. -moz-animation-duration: 0.5s;
  2454. -o-animation-duration: 0.5s;
  2455. -ms-animation-duration: 0.5s;
  2456. animation-duration: 0.5s;
  2457. }
  2458. .animation-slide-top10 {
  2459. animation-name: slide-top10;
  2460. -webkit-animation-name: slide-top10;
  2461. -moz-animation-name: slide-top10;
  2462. -ms-animation-name: slide-top10;
  2463. -o-animation-name: slide-top10;
  2464. }
  2465. .animation-slide-bottom10 {
  2466. animation-name: slide-bottom10;
  2467. -webkit-animation-name: slide-bottom10;
  2468. -moz-animation-name: slide-bottom10;
  2469. -ms-animation-name: slide-bottom10;
  2470. -o-animation-name: slide-bottom10;
  2471. }
  2472. .animation-slide-left10 {
  2473. animation-name: slide-left10;
  2474. -webkit-animation-name: slide-left10;
  2475. -moz-animation-name: slide-left10;
  2476. -ms-animation-name: slide-left10;
  2477. -o-animation-name: slide-left10;
  2478. }
  2479. .animation-slide-right10 {
  2480. animation-name: slide-right10;
  2481. -webkit-animation-name: slide-right10;
  2482. -moz-animation-name: slide-right10;
  2483. -ms-animation-name: slide-right10;
  2484. -o-animation-name: slide-right10;
  2485. }
  2486. .animation-slide-top50 {
  2487. animation-name: slide-top50;
  2488. -webkit-animation-name: slide-top50;
  2489. -moz-animation-name: slide-top50;
  2490. -ms-animation-name: slide-top50;
  2491. -o-animation-name: slide-top50;
  2492. }
  2493. .animation-slide-bottom50 {
  2494. animation-name: slide-bottom50;
  2495. -webkit-animation-name: slide-bottom50;
  2496. -moz-animation-name: slide-bottom50;
  2497. -ms-animation-name: slide-bottom50;
  2498. -o-animation-name: slide-bottom50;
  2499. }
  2500. .animation-slide-left50 {
  2501. animation-name: slide-left50;
  2502. -webkit-animation-name: slide-left50;
  2503. -moz-animation-name: slide-left50;
  2504. -ms-animation-name: slide-left50;
  2505. -o-animation-name: slide-left50;
  2506. }
  2507. .animation-slide-right50 {
  2508. animation-name: slide-right50;
  2509. -webkit-animation-name: slide-right50;
  2510. -moz-animation-name: slide-right50;
  2511. -ms-animation-name: slide-right50;
  2512. -o-animation-name: slide-right50;
  2513. }
  2514. .animation-delay-1200 {
  2515. animation-delay: 1200ms;
  2516. -webkit-animation-delay: 1200ms;
  2517. -moz-animation-delay: 1200ms;
  2518. -ms-animation-delay: 1200ms;
  2519. -o-animation-delay: 1200ms;
  2520. }
  2521. .animation-delay-1400 {
  2522. animation-delay: 1400ms;
  2523. -webkit-animation-delay: 1400ms;
  2524. -moz-animation-delay: 1400ms;
  2525. -ms-animation-delay: 1400ms;
  2526. -o-animation-delay: 1400ms;
  2527. }
  2528. .animation-delay-1600 {
  2529. animation-delay: 1600ms;
  2530. -webkit-animation-delay: 1600ms;
  2531. -moz-animation-delay: 1600ms;
  2532. -ms-animation-delay: 1600ms;
  2533. -o-animation-delay: 1600ms;
  2534. }
  2535. @-webkit-keyframes slide-top10 {
  2536. 0% {
  2537. opacity: 0;
  2538. -webkit-transform: translate3d(0, -10%, 0);
  2539. transform: translate3d(0, -10%, 0);
  2540. }
  2541. 100% {
  2542. opacity: 1;
  2543. -webkit-transform: translate3d(0, 0, 0);
  2544. transform: translate3d(0, 0, 0);
  2545. }
  2546. }
  2547. @-o-keyframes slide-top10 {
  2548. 0% {
  2549. opacity: 0;
  2550. -webkit-transform: translate3d(0, -10%, 0);
  2551. transform: translate3d(0, -10%, 0);
  2552. }
  2553. 100% {
  2554. opacity: 1;
  2555. -webkit-transform: translate3d(0, 0, 0);
  2556. transform: translate3d(0, 0, 0);
  2557. }
  2558. }
  2559. @keyframes slide-top10 {
  2560. 0% {
  2561. opacity: 0;
  2562. -webkit-transform: translate3d(0, -10%, 0);
  2563. transform: translate3d(0, -10%, 0);
  2564. }
  2565. 100% {
  2566. opacity: 1;
  2567. -webkit-transform: translate3d(0, 0, 0);
  2568. transform: translate3d(0, 0, 0);
  2569. }
  2570. }
  2571. @-webkit-keyframes slide-bottom10 {
  2572. 0% {
  2573. opacity: 0;
  2574. -webkit-transform: translate3d(0, 10%, 0);
  2575. transform: translate3d(0, 10%, 0);
  2576. }
  2577. 100% {
  2578. opacity: 1;
  2579. -webkit-transform: translate3d(0, 0, 0);
  2580. transform: translate3d(0, 0, 0);
  2581. }
  2582. }
  2583. @-o-keyframes slide-bottom10 {
  2584. 0% {
  2585. opacity: 0;
  2586. -webkit-transform: translate3d(0, 10%, 0);
  2587. transform: translate3d(0, 10%, 0);
  2588. }
  2589. 100% {
  2590. opacity: 1;
  2591. -webkit-transform: translate3d(0, 0, 0);
  2592. transform: translate3d(0, 0, 0);
  2593. }
  2594. }
  2595. @keyframes slide-bottom10 {
  2596. 0% {
  2597. opacity: 0;
  2598. -webkit-transform: translate3d(0, 10%, 0);
  2599. transform: translate3d(0, 10%, 0);
  2600. }
  2601. 100% {
  2602. opacity: 1;
  2603. -webkit-transform: translate3d(0, 0, 0);
  2604. transform: translate3d(0, 0, 0);
  2605. }
  2606. }
  2607. @-webkit-keyframes slide-left10 {
  2608. 0% {
  2609. opacity: 0;
  2610. -webkit-transform: translate3d(-10%, 0, 0);
  2611. transform: translate3d(-10%, 0, 0);
  2612. }
  2613. 100% {
  2614. opacity: 1;
  2615. -webkit-transform: translate3d(0, 0, 0);
  2616. transform: translate3d(0, 0, 0);
  2617. }
  2618. }
  2619. @-o-keyframes slide-left10 {
  2620. 0% {
  2621. opacity: 0;
  2622. -webkit-transform: translate3d(-10%, 0, 0);
  2623. transform: translate3d(-10%, 0, 0);
  2624. }
  2625. 100% {
  2626. opacity: 1;
  2627. -webkit-transform: translate3d(0, 0, 0);
  2628. transform: translate3d(0, 0, 0);
  2629. }
  2630. }
  2631. @keyframes slide-left10 {
  2632. 0% {
  2633. opacity: 0;
  2634. -webkit-transform: translate3d(-10%, 0, 0);
  2635. transform: translate3d(-10%, 0, 0);
  2636. }
  2637. 100% {
  2638. opacity: 1;
  2639. -webkit-transform: translate3d(0, 0, 0);
  2640. transform: translate3d(0, 0, 0);
  2641. }
  2642. }
  2643. @-webkit-keyframes slide-right10 {
  2644. 0% {
  2645. opacity: 0;
  2646. -webkit-transform: translate3d(10%, 0, 0);
  2647. transform: translate3d(10%, 0, 0);
  2648. }
  2649. 100% {
  2650. opacity: 1;
  2651. -webkit-transform: translate3d(0, 0, 0);
  2652. transform: translate3d(0, 0, 0);
  2653. }
  2654. }
  2655. @-o-keyframes slide-right10 {
  2656. 0% {
  2657. opacity: 0;
  2658. -webkit-transform: translate3d(10%, 0, 0);
  2659. transform: translate3d(10%, 0, 0);
  2660. }
  2661. 100% {
  2662. opacity: 1;
  2663. -webkit-transform: translate3d(0, 0, 0);
  2664. transform: translate3d(0, 0, 0);
  2665. }
  2666. }
  2667. @keyframes slide-right10 {
  2668. 0% {
  2669. opacity: 0;
  2670. -webkit-transform: translate3d(10%, 0, 0);
  2671. transform: translate3d(10%, 0, 0);
  2672. }
  2673. 100% {
  2674. opacity: 1;
  2675. -webkit-transform: translate3d(0, 0, 0);
  2676. transform: translate3d(0, 0, 0);
  2677. }
  2678. }
  2679. @-webkit-keyframes slide-top50 {
  2680. 0% {
  2681. opacity: 0;
  2682. -webkit-transform: translate3d(0, -50%, 0);
  2683. transform: translate3d(0, -50%, 0);
  2684. }
  2685. 100% {
  2686. opacity: 1;
  2687. -webkit-transform: translate3d(0, 0, 0);
  2688. transform: translate3d(0, 0, 0);
  2689. }
  2690. }
  2691. @-o-keyframes slide-top50 {
  2692. 0% {
  2693. opacity: 0;
  2694. -webkit-transform: translate3d(0, -50%, 0);
  2695. transform: translate3d(0, -50%, 0);
  2696. }
  2697. 100% {
  2698. opacity: 1;
  2699. -webkit-transform: translate3d(0, 0, 0);
  2700. transform: translate3d(0, 0, 0);
  2701. }
  2702. }
  2703. @keyframes slide-top50 {
  2704. 0% {
  2705. opacity: 0;
  2706. -webkit-transform: translate3d(0, -50%, 0);
  2707. transform: translate3d(0, -50%, 0);
  2708. }
  2709. 100% {
  2710. opacity: 1;
  2711. -webkit-transform: translate3d(0, 0, 0);
  2712. transform: translate3d(0, 0, 0);
  2713. }
  2714. }
  2715. @-webkit-keyframes slide-bottom50 {
  2716. 0% {
  2717. opacity: 0;
  2718. -webkit-transform: translate3d(0, 50%, 0);
  2719. transform: translate3d(0, 50%, 0);
  2720. }
  2721. 100% {
  2722. opacity: 1;
  2723. -webkit-transform: translate3d(0, 0, 0);
  2724. transform: translate3d(0, 0, 0);
  2725. }
  2726. }
  2727. @-o-keyframes slide-bottom50 {
  2728. 0% {
  2729. opacity: 0;
  2730. -webkit-transform: translate3d(0, 50%, 0);
  2731. transform: translate3d(0, 50%, 0);
  2732. }
  2733. 100% {
  2734. opacity: 1;
  2735. -webkit-transform: translate3d(0, 0, 0);
  2736. transform: translate3d(0, 0, 0);
  2737. }
  2738. }
  2739. @keyframes slide-bottom50 {
  2740. 0% {
  2741. opacity: 0;
  2742. -webkit-transform: translate3d(0, 50%, 0);
  2743. transform: translate3d(0, 50%, 0);
  2744. }
  2745. 100% {
  2746. opacity: 1;
  2747. -webkit-transform: translate3d(0, 0, 0);
  2748. transform: translate3d(0, 0, 0);
  2749. }
  2750. }
  2751. @-webkit-keyframes slide-left50 {
  2752. 0% {
  2753. opacity: 0;
  2754. -webkit-transform: translate3d(-50%, 0, 0);
  2755. transform: translate3d(-50%, 0, 0);
  2756. }
  2757. 100% {
  2758. opacity: 1;
  2759. -webkit-transform: translate3d(0, 0, 0);
  2760. transform: translate3d(0, 0, 0);
  2761. }
  2762. }
  2763. @-o-keyframes slide-left50 {
  2764. 0% {
  2765. opacity: 0;
  2766. -webkit-transform: translate3d(-50%, 0, 0);
  2767. transform: translate3d(-50%, 0, 0);
  2768. }
  2769. 100% {
  2770. opacity: 1;
  2771. -webkit-transform: translate3d(0, 0, 0);
  2772. transform: translate3d(0, 0, 0);
  2773. }
  2774. }
  2775. @keyframes slide-left50 {
  2776. 0% {
  2777. opacity: 0;
  2778. -webkit-transform: translate3d(-50%, 0, 0);
  2779. transform: translate3d(-50%, 0, 0);
  2780. }
  2781. 100% {
  2782. opacity: 1;
  2783. -webkit-transform: translate3d(0, 0, 0);
  2784. transform: translate3d(0, 0, 0);
  2785. }
  2786. }
  2787. @-webkit-keyframes slide-right50 {
  2788. 0% {
  2789. opacity: 0;
  2790. -webkit-transform: translate3d(50%, 0, 0);
  2791. transform: translate3d(50%, 0, 0);
  2792. }
  2793. 100% {
  2794. opacity: 1;
  2795. -webkit-transform: translate3d(0, 0, 0);
  2796. transform: translate3d(0, 0, 0);
  2797. }
  2798. }
  2799. @-o-keyframes slide-right50 {
  2800. 0% {
  2801. opacity: 0;
  2802. -webkit-transform: translate3d(50%, 0, 0);
  2803. transform: translate3d(50%, 0, 0);
  2804. }
  2805. 100% {
  2806. opacity: 1;
  2807. -webkit-transform: translate3d(0, 0, 0);
  2808. transform: translate3d(0, 0, 0);
  2809. }
  2810. }
  2811. @keyframes slide-right50 {
  2812. 0% {
  2813. opacity: 0;
  2814. -webkit-transform: translate3d(50%, 0, 0);
  2815. transform: translate3d(50%, 0, 0);
  2816. }
  2817. 100% {
  2818. opacity: 1;
  2819. -webkit-transform: translate3d(0, 0, 0);
  2820. transform: translate3d(0, 0, 0);
  2821. }
  2822. }
  2823. /*导航*/
  2824. .ey-nav001 {
  2825. height: 60px;
  2826. margin-bottom: 0px;
  2827. border-bottom: 1px solid #f0f2f5;
  2828. box-shadow: none;
  2829. transition: all 0.5s;
  2830. -moz-transition: all 0.5s;
  2831. -webkit-transition: all 0.5s;
  2832. -o-transition: all 0.5s;
  2833. z-index: 2;
  2834. /*2018*/
  2835. }
  2836. .ey-nav001 .head-ad {
  2837. height: 40px;
  2838. line-height: 40px;
  2839. /* 如果浏览器不支持渐变,使用图像作为背景 */
  2840. background: #e53b75;
  2841. background: linear-gradient(0deg, #e53b75, #7c51d1);
  2842. /* Webkit: Safari 5.1+, Chrome 10+ */
  2843. background: -webkit-linear-gradient(0deg, #e53b75, #7c51d1);
  2844. /* Firefox 3.6+ */
  2845. background: -moz-linear-gradient(0deg, #e53b75, #7c51d1);
  2846. /* Opera 11.10+ */
  2847. background: -o-linear-gradient(0deg, #e53b75, #7c51d1);
  2848. /* IE 10 */
  2849. background: -ms-linear-gradient(0deg, #e53b75, #7c51d1);
  2850. /* IE < 10 */
  2851. filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr=#e53b75, endColorStr=#7c51d1, GradientType=1);
  2852. }
  2853. .ey-nav001 .head-ad a {
  2854. display: block;
  2855. color: #fff !important;
  2856. text-decoration: none !important;
  2857. }
  2858. .ey-nav001.navbar-fixed-top {
  2859. z-index: 999;
  2860. }
  2861. .ey-nav001.navbar-shadow {
  2862. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  2863. }
  2864. .ey-nav001 .label {
  2865. margin-left: 8px;
  2866. position: relative;
  2867. }
  2868. .ey-nav001 .navbar-logo {
  2869. margin: 0px;
  2870. padding: 0px;
  2871. margin-left: 0px !important;
  2872. display: block;
  2873. height: 60px;
  2874. }
  2875. .ey-nav001 .navbar-logo img {
  2876. max-height: 38px;
  2877. margin-left: 10px;
  2878. }
  2879. .ey-nav001 .dropdown-menu>li>a.active {
  2880. background: #f5f5f5;
  2881. }
  2882. .ey-nav001 .ey-nav001-login {
  2883. padding-top: 15px;
  2884. text-align: center;
  2885. }
  2886. .ey-nav001 .nav-item a {
  2887. font-size: 15px;
  2888. padding: 0;
  2889. color: #606060 !important;
  2890. font-family: 微软雅黑 light;
  2891. }
  2892. .ey-nav001 .nav-item a:hover {
  2893. color: #ff6f06 !important;
  2894. }
  2895. .ey-nav001 .nav-item a:hover,
  2896. .ey-nav001 .nav-item a.active {
  2897. color: #ff6f06 !important;
  2898. }
  2899. .ey-nav001 .btn-login {
  2900. padding: 0px 20px;
  2901. border-radius: 0px;
  2902. background: #fff;
  2903. border: 1px solid #ff6f06;
  2904. color: #ff6f06;
  2905. font-size: 15px;
  2906. }
  2907. .ey-nav001 .btn-register {
  2908. padding: 0px 20px;
  2909. border-radius: 0px;
  2910. background: #fff;
  2911. border: 1px solid #999;
  2912. color: #303030;
  2913. font-size: 15px;
  2914. }
  2915. @media (min-width: 768px) {
  2916. .ey-nav001 .navlist {}
  2917. .ey-nav001 .nav-item {
  2918. margin-right: 30px;
  2919. }
  2920. .ey-nav001 .nav>li>a {
  2921. padding-top: 0px;
  2922. padding-bottom: 0px;
  2923. height: 60px;
  2924. line-height: 60px;
  2925. }
  2926. .ey-nav001 .dropdown-menu {
  2927. top: 55px;
  2928. }
  2929. .ey-nav001 .dropdown-menu.bullet {
  2930. top: 50px;
  2931. }
  2932. .ey-nav001 .dropdown-menu li {
  2933. margin: 0;
  2934. }
  2935. .ey-nav001 .dropdown-menu a {
  2936. padding: 6px 8px;
  2937. font-size: 14px;
  2938. }
  2939. .ey-nav001 .ey-nav001-login {
  2940. height: 60px;
  2941. padding-top: 0px;
  2942. margin-left: 20px;
  2943. }
  2944. .ey-nav001 .navbar-collapse {
  2945. padding: 0;
  2946. }
  2947. .ey-nav001 .navbar-collapse .navbar-right {
  2948. margin-right: 0;
  2949. }
  2950. }
  2951. @media (max-width: 991px) {
  2952. .ey-nav001 .navlist {
  2953. margin-right: 0 !important;
  2954. }
  2955. .ey-nav001 .nav>li {
  2956. margin-left: 0 !important;
  2957. }
  2958. }
  2959. @media (max-width: 767px) {
  2960. .ey-nav001 .nav>li>a {
  2961. padding: 10px 15px;
  2962. }
  2963. .ey-nav001 .dropdown-menu>li>.dropdown-menu>li>a {
  2964. padding-left: 40px;
  2965. }
  2966. .ey-nav001.navbar-fixed-top .navbar-collapse {
  2967. max-height: 400px;
  2968. }
  2969. .ey-nav001 .navbar-collapse-toolbar.in {
  2970. overflow-y: auto;
  2971. }
  2972. .ey-nav001 .navbar-collapse {
  2973. background: #fff;
  2974. }
  2975. .ey-nav001 .navbar-logo {
  2976. margin-left: 10px !important;
  2977. height: 60px;
  2978. }
  2979. .ey-nav001 .navbar-logo img {
  2980. max-height: 40px;
  2981. }
  2982. .ey-nav001 .navbar-toggle {
  2983. height: 60px;
  2984. }
  2985. }
  2986. /*footer*/
  2987. footer {
  2988. border-top: 1px solid #f0f2f5;
  2989. padding: 20px 0px;
  2990. color: #aaaaaa;
  2991. height: auto;
  2992. line-height: 1.8;
  2993. }
  2994. footer p {
  2995. margin-bottom: 0px;
  2996. }
  2997. @media (max-width: 991px) {
  2998. footer {
  2999. padding: 30px 0;
  3000. }
  3001. }
  3002. @media (max-width: 767px) {
  3003. footer {
  3004. padding: 20px 0;
  3005. }
  3006. }
  3007. /*首页*/
  3008. .blocks-2>li:nth-child(2n+3),
  3009. .blocks-3>li:nth-child(3n+4),
  3010. .blocks-4>li:nth-child(4n+5),
  3011. .blocks-5>li:nth-child(5n+6),
  3012. .blocks-6>li:nth-child(6n+7),
  3013. .block-first {
  3014. clear: none;
  3015. }
  3016. @media (min-width: 1600px) {
  3017. .container {
  3018. width: 1200px;
  3019. }
  3020. }
  3021. ul,
  3022. li {
  3023. padding: 0;
  3024. list-style: none;
  3025. }
  3026. .wb-eye:before {
  3027. content: "\f13f";
  3028. }
  3029. /*问答中心*/
  3030. .wenda h4 {
  3031. padding: 0px;
  3032. margin: 0px;
  3033. }
  3034. .ask_c {
  3035. width: 100%;
  3036. padding-left: 0px;
  3037. }
  3038. .place {
  3039. height: 44px;
  3040. line-height: 22px;
  3041. overflow: hidden;
  3042. border-bottom: 1px solid #e7e7e7;
  3043. background-color: #FFF;
  3044. padding-left: 10px;
  3045. }
  3046. .wenda .ey_pager {
  3047. padding: 15px;
  3048. clear: both;
  3049. }
  3050. .clear {
  3051. clear: both;
  3052. }
  3053. footer div a {
  3054. color: #aaaaaa;
  3055. }
  3056. .overflow {
  3057. overflow: hidden;
  3058. }
  3059. .none {
  3060. display: none;
  3061. }
  3062. /*PSD下载样式*/
  3063. .layui-layer-content h2 {
  3064. font-size: 14px;
  3065. }
  3066. .layui-layer-content {
  3067. padding: 15px 45px;
  3068. }
  3069. .layui-layer-content b {
  3070. font-weight: bold;
  3071. color: #ff0000;
  3072. }
  3073. .ask-avatar i.vip {
  3074. background: url(../images/mbvip.png) no-repeat;
  3075. }
  3076. .ask-avatar i.svip {
  3077. background: url(../images/mbsvip.png) no-repeat;
  3078. }
  3079. .ask-avatar i.vip,
  3080. .ask-avatar i.svip {
  3081. display: inline-block;
  3082. width: 20px;
  3083. height: 23px;
  3084. background-position: center;
  3085. vertical-align: text-bottom;
  3086. border: none;
  3087. position: absolute;
  3088. bottom: 8px;
  3089. right: -6px;
  3090. }
  3091. /*新增导航热点标签*/
  3092. .nav span.hot {
  3093. position: absolute;
  3094. width: 26px;
  3095. height: 12px;
  3096. top: 10px;
  3097. right: -6px;
  3098. background: url(../img/hot_03.gif) no-repeat;
  3099. z-index: 1;
  3100. display: block;
  3101. }
  3102. html,
  3103. body {
  3104. font-family: "Helvetica Neue", "Helvetica", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "微软雅黑", "Arial", "sans-serif", "Chinese Quote", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto";
  3105. }
  3106. body {
  3107. background: #f7f7f7;
  3108. }
  3109. a {
  3110. color: currentColor;
  3111. text-decoration: none;
  3112. cursor: pointer;
  3113. }
  3114. a:hover {
  3115. color: currentColor;
  3116. text-decoration: none;
  3117. }
  3118. button,
  3119. input,
  3120. optgroup,
  3121. select,
  3122. textarea {
  3123. font-family: sans-serif;
  3124. font-size: 100%;
  3125. line-height: 1.15;
  3126. margin: 0;
  3127. }
  3128. .h1,
  3129. .h2,
  3130. .h3,
  3131. h1,
  3132. h2,
  3133. h3 {
  3134. margin: 0px;
  3135. font-size: 100%;
  3136. }
  3137. /* @base:'../images/web_v1.5/'; */
  3138. a {
  3139. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  3140. -webkit-user-select: none;
  3141. -moz-user-focus: none;
  3142. -moz-user-select: none;
  3143. }
  3144. .icon-browsingvolume {
  3145. font-size: 12px;
  3146. }
  3147. .mask {
  3148. position: fixed;
  3149. top: 0;
  3150. left: 0;
  3151. width: 100%;
  3152. height: 100%;
  3153. background-color: rgba(0, 0, 0, 0.5);
  3154. }
  3155. * {
  3156. margin: 0;
  3157. padding: 0;
  3158. }
  3159. img {
  3160. border: 0;
  3161. }
  3162. ol,
  3163. ul,
  3164. li {
  3165. list-style: none;
  3166. }
  3167. html,
  3168. body,
  3169. button,
  3170. input,
  3171. optgroup,
  3172. select,
  3173. textarea {
  3174. font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, STHeiti, WenQuanYi Micro Hei, Helvetica, Arial, sans-serif;
  3175. font-weight: normal;
  3176. }
  3177. .resetEditer ul {
  3178. padding-left: 20px;
  3179. }
  3180. .resetEditer ul li {
  3181. list-style-type: disc;
  3182. }
  3183. .resetEditer ol {
  3184. padding-left: 20px;
  3185. }
  3186. .resetEditer ol li {
  3187. list-style-type: decimal;
  3188. }
  3189. .container {
  3190. max-width: initial;
  3191. }
  3192. .mian-body {
  3193. margin: 0 auto;
  3194. justify-content: space-between;
  3195. margin-top: 20px;
  3196. padding: 30px 0;
  3197. }
  3198. .mian-body .aside-left {
  3199. display: initial;
  3200. }
  3201. .mian-body .aside-right {
  3202. display: initial;
  3203. }
  3204. /* .moveease{
  3205. transition: all 600ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3206. } */
  3207. .aside-left .nav-swiper {
  3208. width: 100%;
  3209. height: 350px;
  3210. margin-bottom: 20px;
  3211. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  3212. }
  3213. .aside-left .nav-swiper .swiper-slide {
  3214. background-size: cover;
  3215. background-position: center;
  3216. border-radius: 4px;
  3217. -webkit-transform: translate3d(0, 0, 0);
  3218. -moz-transform: translate3d(0, 0, 0);
  3219. -ms-transform: translate3d(0, 0, 0);
  3220. transform: translate3d(0, 0, 0);
  3221. height: 350px;
  3222. }
  3223. .aside-left .nav-swiper .swiper-slide .slide-tetx {
  3224. font-size: 18px;
  3225. color: white;
  3226. font-weight: bold;
  3227. position: absolute;
  3228. bottom: 30px;
  3229. left: 30px;
  3230. overflow: hidden;
  3231. text-overflow: ellipsis;
  3232. white-space: nowrap;
  3233. width: 431px;
  3234. z-index: 2;
  3235. }
  3236. .aside-left .nav-swiper .swiper-slide .swiper-mask {
  3237. height: 70px;
  3238. background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  3239. position: absolute;
  3240. z-index: 0;
  3241. bottom: 0;
  3242. width: 100%;
  3243. }
  3244. .aside-left .nav-swiper .banner-swiper-pagination {
  3245. left: 578px;
  3246. bottom: 30px;
  3247. width: fit-content;
  3248. }
  3249. .aside-left .nav-swiper .banner-swiper-pagination .swiper-pagination-bullet {
  3250. width: 20px;
  3251. height: 4px;
  3252. background: #ffffff;
  3253. opacity: 0.5;
  3254. border-radius: 0;
  3255. }
  3256. .aside-left .nav-swiper .banner-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  3257. opacity: 1;
  3258. }
  3259. .aside-left .nav-swiper .swiper-button-next,
  3260. .aside-left .nav-swiper .swiper-button-prev {
  3261. background-image: none;
  3262. color: white;
  3263. width: 40px;
  3264. height: 50px;
  3265. background: rgba(0, 0, 0, 0.6);
  3266. border-radius: 4px 0px 0px 4px;
  3267. text-align: center;
  3268. line-height: 50px;
  3269. right: 0;
  3270. outline: none;
  3271. }
  3272. .aside-left .nav-swiper .swiper-button-next i,
  3273. .aside-left .nav-swiper .swiper-button-prev i {
  3274. font-size: 22px;
  3275. color: #CCC;
  3276. }
  3277. .aside-left .nav-swiper .swiper-button-prev {
  3278. transform: rotateY(180deg);
  3279. border-radius: 0px 4px 4px 0px;
  3280. left: 0;
  3281. }
  3282. .aside-left .ask-article-nav {
  3283. background-color: white;
  3284. height: 50px;
  3285. line-height: 50px;
  3286. }
  3287. .aside-left .ask-article-nav span {
  3288. font-size: 18px;
  3289. color: #333;
  3290. margin-left: 15px;
  3291. position: relative;
  3292. cursor: pointer;
  3293. }
  3294. .aside-left .ask-article-nav span .icon-jifenguizeguankong2{
  3295. font-size: 20px;
  3296. }
  3297. .aside-left .ask-article-nav span.act {
  3298. font-weight: bold;
  3299. }
  3300. .aside-left .ask-article-nav span.act i{
  3301. font-weight: 400;
  3302. }
  3303. .aside-left .ask-article-nav span.act:after {
  3304. position: absolute;
  3305. bottom: -14px;
  3306. left: 0;
  3307. content: '';
  3308. height: 3px;
  3309. width: 100%;
  3310. background-color: #ff6f06;
  3311. }
  3312. .aside-left .ask-article-nav button {
  3313. width: 100px;
  3314. height: 32px;
  3315. background-color: #F2F2F2;
  3316. font-size: 14px;
  3317. color: #999;
  3318. border-radius: 4px;
  3319. outline: none;
  3320. border: none;
  3321. float: right;
  3322. margin-top: 9px;
  3323. margin-right: 15px;
  3324. font-weight: 400;
  3325. }
  3326. .aside-left .ask-article-nav button:hover {
  3327. background-color: #ff6f06;
  3328. color: white;
  3329. }
  3330. .aside-left .load-more {
  3331. height: 60px;
  3332. line-height: 60px;
  3333. text-align: center;
  3334. font-size: 16px;
  3335. color: #ff6f06;
  3336. background-color: #F2F2F2;
  3337. }
  3338. .aside-left .article-list {
  3339. background-color: white;
  3340. border-radius: 4px 4px 0px 0px;
  3341. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  3342. }
  3343. .aside-left .article-list .article-ul .ask-article-list-item {
  3344. padding: 22px;
  3345. border-top: 1px solid #f2f2f2;
  3346. display: flex;
  3347. }
  3348. .aside-left .article-list .article-ul .ask-article-list-item .sq {
  3349. width: 40px;
  3350. height: 20px;
  3351. background: #FF5500;
  3352. border-radius: 4px;
  3353. color: white;
  3354. font-size: 12px;
  3355. display: inline-block;
  3356. text-align: center;
  3357. line-height: 21px;
  3358. }
  3359. .aside-left .article-list .article-ul .ask-article-list-item .sq.sqo {
  3360. background: #FF9900;
  3361. }
  3362. .aside-left .article-list .article-ul .ask-article-list-item:first-child {
  3363. border-top: 1px solid #e6e6e6;
  3364. }
  3365. .aside-left .article-list .article-ul .ask-article-list-item .list-avter {
  3366. margin-right: 20px;
  3367. flex-shrink: 0;
  3368. position: relative;
  3369. }
  3370. .aside-left .article-list .article-ul .ask-article-list-item .list-avter i {
  3371. position: absolute;
  3372. top: 22px;
  3373. right: -5px;
  3374. }
  3375. .aside-left .article-list .article-ul .ask-article-list-item .list-avter img {
  3376. width: 40px;
  3377. height: 40px;
  3378. border-radius: 100%
  3379. }
  3380. .aside-left .article-list .article-ul .ask-article-list-item .list-avter+div {
  3381. flex-grow: 1;
  3382. }
  3383. .jxuan {
  3384. width: 60px;
  3385. height: 20px;
  3386. background: rgba(255, 85, 0, 1);
  3387. border-radius: 4px;
  3388. color: white;
  3389. font-size: 12px;
  3390. display: inline-block;
  3391. text-align: center;
  3392. line-height: 18px;
  3393. }
  3394. .aside-left .article-list .article-ul .ask-article-list-item .went-head {
  3395. font-size: 16px;
  3396. color: #333;
  3397. line-height: 28px;
  3398. }
  3399. .aside-left .article-list .article-ul .ask-article-list-item .went-head:hover,
  3400. .aside-left .article-list .article-ul .ask-article-list-item .went-head:visited {
  3401. text-decoration: none;
  3402. }
  3403. .aside-left .article-list .article-ul .ask-article-list-item .went-head .went-head-text:hover {
  3404. color: #ff6f06;
  3405. }
  3406. .aside-left .article-list .article-ul .ask-article-list-item:hover {
  3407. background-color: #F7F7F7;
  3408. }
  3409. .aside-left .article-list .article-ul .ask-article-list-item .tx-list {
  3410. margin-top: 16px;
  3411. display: flex;
  3412. align-items: center;
  3413. }
  3414. .aside-left .article-list .article-ul .ask-article-list-item .tx-list img {
  3415. width: 20px;
  3416. height: 20px;
  3417. border-radius: 100%
  3418. }
  3419. .aside-left .article-list .article-ul .ask-article-list-item .tx-list a {
  3420. margin-right: 5px;
  3421. }
  3422. .aside-left .article-list .article-ul .ask-article-list-item .tx-list .list-text {
  3423. font-size: 12px;
  3424. color: #999;
  3425. }
  3426. .aside-left .article-list .article-ul .ask-article-list-item .tx-list .more-info {
  3427. font-size: 12px;
  3428. color: #999;
  3429. }
  3430. .aside-left .article-list .hot-zhuanchang {
  3431. padding: 0 30px;
  3432. padding-bottom: 30px;
  3433. box-sizing: border-box;
  3434. background-color: #F7F7F7;
  3435. }
  3436. .aside-left .article-list .hot-zhuanchang .hot-zhuanchang-head {
  3437. height: 70px;
  3438. line-height: 70px;
  3439. display: flex;
  3440. align-items: center;
  3441. justify-content: space-between;
  3442. }
  3443. .aside-left .article-list .hot-zhuanchang .hot-zhuanchang-head span {
  3444. font-size: 18px;
  3445. color: #333;
  3446. font-weight: bold;
  3447. }
  3448. .aside-left .article-list .hot-zhuanchang .hot-zhuanchang-head a {
  3449. font-size: 14px;
  3450. color: #ff6f06;
  3451. }
  3452. .aside-left .article-list .hot-zhuanchang .hot-ul {
  3453. display: flex;
  3454. }
  3455. .aside-left .article-list .hot-zhuanchang .hot-ul li img {
  3456. transition: all 0.25s linear;
  3457. position: relative;
  3458. }
  3459. .aside-left .article-list .hot-zhuanchang .hot-ul li img:hover {
  3460. box-shadow: 2px 2px 10px 0px rgba(153, 153, 153, 0.1);
  3461. -webkit-transform: translateY(-10px);
  3462. -moz-transform: translateY(-10px);
  3463. -ms-transform: translateY(-10px);
  3464. -o-transform: translateY(-10px);
  3465. transform: translateY(-10px);
  3466. }
  3467. .aside-left .article-list .hot-zhuanchang .hot-ul li .jiesao {
  3468. font-size: 16px;
  3469. color: #333;
  3470. line-height: 28px;
  3471. margin-right: 13px;
  3472. display: -webkit-box;
  3473. -webkit-box-orient: vertical;
  3474. -webkit-line-clamp: 2;
  3475. overflow: hidden;
  3476. margin-bottom: 20px;
  3477. margin-top: 13px;
  3478. max-width: 300px;
  3479. }
  3480. .aside-left .article-list .hot-zhuanchang .hot-ul li .tiwen {
  3481. font-size: 12px;
  3482. color: #999;
  3483. }
  3484. .aside-left .zhuanchang-list {
  3485. background-color: white;
  3486. }
  3487. .aside-left .zhuanchang-list .zhuanchang-ul li {
  3488. border-top: 1px solid #f2f2f2;
  3489. padding: 30px 30px 24px;
  3490. }
  3491. .aside-left .zhuanchang-list .zhuanchang-ul li:hover {
  3492. background-color: #f7f7f7;
  3493. }
  3494. .aside-left .zhuanchang-list .zhuanchang-ul li:first-child {
  3495. border-top: 1px solid #e6e6e6;
  3496. }
  3497. .aside-left .zhuanchang-list .zhuanchang-ul li .zc-text {
  3498. font-size: 16px;
  3499. color: #333;
  3500. line-height: 28px;
  3501. margin-top: 14px;
  3502. margin-bottom: 10px;
  3503. }
  3504. .aside-left .zhuanchang-list .zhuanchang-ul li .zc-info {
  3505. font-size: 12px;
  3506. color: #999;
  3507. }
  3508. .aside-left .zhuanchang-list .zhuanchang-ul li .zc-info .zc-flr {
  3509. color: #FF5500;
  3510. float: right;
  3511. }
  3512. .aside-left .huifu-edit {
  3513. background-color: white;
  3514. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  3515. margin-top: 20px;
  3516. padding: 30px;
  3517. -webkit-box-sizing: border-box;
  3518. -moz-box-sizing: border-box;
  3519. box-sizing: border-box;
  3520. }
  3521. .aside-left .huifu-edit .not-log {
  3522. width: 620px;
  3523. height: 179px;
  3524. background-image: url('../images/answerinput.png');
  3525. background-repeat: no-repeat;
  3526. background-size: 100% 100%;
  3527. text-align: center;
  3528. font-size: 14px;
  3529. color: #999;
  3530. }
  3531. .aside-left .huifu-edit .not-log a {
  3532. color: #ff5500;
  3533. line-height: 179px;
  3534. }
  3535. .aside-left .huifu-edit .huifu-user {
  3536. display: flex;
  3537. margin-bottom: 14px;
  3538. }
  3539. .aside-left .huifu-edit .huifu-user .user-nice {
  3540. margin-left: 20px;
  3541. }
  3542. .aside-left .huifu-edit .huifu-user .user-nice>p.nice {
  3543. font-size: 16px;
  3544. color: #ff6f06;
  3545. font-weight: bold;
  3546. line-height: 32px;
  3547. }
  3548. .aside-left .huifu-edit .huifu-user .user-nice>p.jianjie {
  3549. font-size: 14px;
  3550. color: #999;
  3551. }
  3552. .aside-left .huifu-edit .edit-opt {
  3553. height: 32px;
  3554. display: flex;
  3555. margin-top: 20px;
  3556. justify-content: space-between;
  3557. width: 100%;
  3558. align-items: center;
  3559. }
  3560. .aside-left .huifu-edit .edit-opt span {
  3561. font-size: 14px;
  3562. color: #999;
  3563. }
  3564. .aside-left .huifu-edit .edit-opt .cbox-wrap {
  3565. width: 16px;
  3566. height: 16px;
  3567. display: inline-block;
  3568. background-image: url('../images/checkbox_up@2x.png');
  3569. position: relative;
  3570. background-size: cover;
  3571. top: 3px;
  3572. }
  3573. .aside-left .huifu-edit .edit-opt .cbox-wrap.act {
  3574. background-image: url('../images/checkbox_pre@2x.png');
  3575. }
  3576. .aside-left .huifu-edit .edit-opt .cbox-wrap .cbox {
  3577. position: absolute;
  3578. opacity: 0;
  3579. cursor: pointer;
  3580. }
  3581. .aside-left .huifu-edit .edit-opt span.editbutton {
  3582. width: 100px;
  3583. height: 32px;
  3584. background-color: #ff6f06;
  3585. border-radius: 4px;
  3586. outline: none;
  3587. font-size: 14px;
  3588. color: white;
  3589. border: none;
  3590. display: inline-block;
  3591. text-align: center;
  3592. line-height: 32px;
  3593. }
  3594. .aside-left .huifu-edit .huifu-null {
  3595. text-align: center;
  3596. font-size: 14px;
  3597. color: #999;
  3598. padding: 10px 0;
  3599. }
  3600. .aside-left .huifu-edit .huifu-null img{
  3601. display: unset;
  3602. }
  3603. .aside-right .block-head {
  3604. height: 50px;
  3605. line-height: 50px;
  3606. padding: 0 15px;
  3607. font-size: 18px;
  3608. color: #333;
  3609. }
  3610. .aside-right .block-head .hot-sw {
  3611. float: right;
  3612. font-size: 14px;
  3613. }
  3614. .aside-right .block-head .hot-sw span.act {
  3615. color: #ff6f06;
  3616. font-weight: normal;
  3617. cursor: pointer;
  3618. }
  3619. .aside-right .hot-wenda {
  3620. background-color: white;
  3621. margin-bottom: 20px;
  3622. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  3623. border-radius: 4px;
  3624. }
  3625. .aside-right .hot-wenda ul li {
  3626. border-top: 0.5px solid #F2F2F2;
  3627. line-height: 25px;
  3628. padding: 15px 24px;
  3629. box-sizing: border-box;
  3630. text-align: justify;
  3631. font-size: 14px;
  3632. color: #333;
  3633. }
  3634. .aside-right .hot-wenda ul li:hover {
  3635. background-color: #F7F7F7;
  3636. color: #ff6f06;
  3637. }
  3638. .aside-right .hot-users {
  3639. background-color: white;
  3640. border-radius: 4px;
  3641. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  3642. }
  3643. .aside-right .hot-users ul li {
  3644. border-top: 0.5px solid #F2F2F2;
  3645. padding: 15px 15px;
  3646. box-sizing: border-box;
  3647. text-align: justify;
  3648. font-size: 14px;
  3649. color: #333;
  3650. display: flex;
  3651. }
  3652. .aside-right .hot-users ul li .hot-user-avter {
  3653. border-radius: 100%;
  3654. flex-shrink: 0;
  3655. margin-right: 16px;
  3656. }
  3657. .aside-right .hot-users ul li .hot-user-avter img {
  3658. border-radius: 100%;
  3659. }
  3660. .aside-right .hot-users ul li .hot-user-info {
  3661. flex-grow: 1;
  3662. overflow: hidden;
  3663. }
  3664. .aside-right .hot-users ul li .hot-user-info .hot-nice {
  3665. font-size: 14px;
  3666. color: #333;
  3667. white-space: nowrap;
  3668. overflow: hidden;
  3669. text-overflow: ellipsis;
  3670. }
  3671. .aside-right .hot-users ul li .hot-user-info .hot-nice span {
  3672. float: right;
  3673. color: #FF5500;
  3674. font-weight: normal;
  3675. }
  3676. .aside-right .hot-users ul li .hot-user-info .hot-nice a:hover {
  3677. color: #ff6f06;
  3678. }
  3679. .aside-right .hot-users ul li .hot-user-info .hot-des {
  3680. font-size: 12px;
  3681. color: #999;
  3682. display: -webkit-box;
  3683. -webkit-box-orient: vertical;
  3684. -webkit-line-clamp: 2;
  3685. overflow: hidden;
  3686. margin-top: 8px;
  3687. line-height: 18px;
  3688. }
  3689. .aside-right .hot-users ul li:hover {
  3690. background-color: #F7F7F7;
  3691. }
  3692. .aside-right .hot-last {
  3693. background-color: white;
  3694. margin-top: 20px;
  3695. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  3696. border-radius: 4px;
  3697. }
  3698. .aside-right .hot-last ul {
  3699. padding: 30px 24px;
  3700. margin-bottom: 10px;
  3701. display: flex;
  3702. justify-content: space-between;
  3703. }
  3704. .aside-right .hot-last ul li div {
  3705. font-size: 12px;
  3706. color: #999;
  3707. margin-top: 10px;
  3708. line-height: 21px;
  3709. }
  3710. .aside-right .hot-ewm {
  3711. text-align: center;
  3712. padding-bottom: 38px;
  3713. border-bottom: 0.5px solid #E6E6E6;
  3714. }
  3715. .aside-right .hot-ewm p {
  3716. font-size: 14px;
  3717. color: #333;
  3718. line-height: 22px;
  3719. margin-top: 12px;
  3720. }
  3721. .aside-right .last-footer {
  3722. padding: 25px 25px 30px;
  3723. font-size: 14px;
  3724. color: #333;
  3725. }
  3726. .aside-right .last-footer p {
  3727. line-height: 21px;
  3728. }
  3729. .aside-right .last-footer .last-footer-a {
  3730. margin-top: 14px;
  3731. display: flex;
  3732. align-items: center;
  3733. justify-content: space-between;
  3734. }
  3735. .aside-right .last-footer .last-footer-a button {
  3736. width: 100px;
  3737. height: 40px;
  3738. background: #ff6f06;
  3739. border-radius: 4px;
  3740. font-size: 14px;
  3741. color: white;
  3742. border: none;
  3743. }
  3744. .aside-right .last-footer .last-footer-a button:hover {
  3745. background-color: #ff6600;
  3746. }
  3747. /* 问答专场 */
  3748. .wenda {
  3749. padding: 30px;
  3750. color: #999;
  3751. font-size: 14px;
  3752. line-height: 25px;
  3753. background-color: white;
  3754. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  3755. word-wrap: break-word;
  3756. }
  3757. .wenda .wt-head {
  3758. line-height: 27px;
  3759. font-size: 18px;
  3760. color: #333;
  3761. font-weight: bold;
  3762. margin-bottom: 14px;
  3763. text-indent: 20px;
  3764. }
  3765. .wenda .wt-desc {
  3766. margin-bottom: 40px;
  3767. }
  3768. .wenda .wt-desc a {
  3769. color: #ff6f06;
  3770. }
  3771. .wenda .wt-desc img {
  3772. max-width: 100% !important;
  3773. height: auto !important;
  3774. }
  3775. .wenda .if-zhuang {
  3776. font-size: 12px;
  3777. margin-bottom: 20px;
  3778. }
  3779. .wenda .wt-opt .a {
  3780. cursor: pointer;
  3781. }
  3782. .wenda .wt-opt .a:hover {
  3783. color: #ff6f06;
  3784. }
  3785. .wenda .yingdao-app {
  3786. display: flex;
  3787. align-items: center;
  3788. font-size: 14px;
  3789. color: #FF5500;
  3790. justify-content: space-between;
  3791. padding-top: 25px;
  3792. border-top: 0.5px solid #F2F2F2;
  3793. margin-top: 30px;
  3794. position: relative;
  3795. }
  3796. .wenda .yingdao-app .ydewm {
  3797. position: absolute;
  3798. right: 0;
  3799. }
  3800. .wenda .yingdao-app .ydewm:hover .hoverewm {
  3801. display: block;
  3802. }
  3803. .wenda .yingdao-app .ydewm .hoverewm {
  3804. position: absolute;
  3805. display: none;
  3806. z-index: 5;
  3807. padding: 20px;
  3808. width: 112px;
  3809. top: 25px;
  3810. background: #ffffff;
  3811. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.3);
  3812. border-radius: 4px;
  3813. text-align: center;
  3814. font-size: 14px;
  3815. color: #333;
  3816. right: 0;
  3817. top: 56px;
  3818. }
  3819. .wenti-huifu {
  3820. background-color: white;
  3821. margin-top: 20px;
  3822. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  3823. box-sizing: border-box;
  3824. border-radius: 4px;
  3825. }
  3826. .wenti-huifu .huifu-head {
  3827. height: 50px;
  3828. position: relative;
  3829. }
  3830. .wenti-huifu .huifu-head>div:first-child {
  3831. top: 50%;
  3832. position: absolute;
  3833. left: 10px;
  3834. transform: translateY(-50%);
  3835. }
  3836. .wenti-huifu .huifu-head>div:first-child strong {
  3837. font-size: 18px;
  3838. color: #333;
  3839. }
  3840. .wenti-huifu .huifu-head .hf-head-flr {
  3841. position: absolute;
  3842. right: 10px;
  3843. top: 50%;
  3844. transform: translateY(-50%);
  3845. }
  3846. .wenti-huifu .huifu-head .hf-head-flr ul {
  3847. display: none;
  3848. position: absolute;
  3849. width: 120px;
  3850. background-color: white;
  3851. top: 45px;
  3852. box-shadow: 0px 3px 30px 0px rgba(153, 153, 153, 0.3);
  3853. border-radius: 4px;
  3854. font-size: 14px;
  3855. color: #333;
  3856. padding: 10px 0;
  3857. left: -20px;
  3858. }
  3859. .wenti-huifu .huifu-head .hf-head-flr ul li {
  3860. text-align: center;
  3861. height: 48px;
  3862. line-height: 48px;
  3863. cursor: pointer;
  3864. }
  3865. .wenti-huifu .huifu-head .hf-head-flr ul li:hover {
  3866. background-color: #F7F7F7;
  3867. color: #ff6f06;
  3868. }
  3869. .wenti-huifu .huifu-list {
  3870. box-sizing: border-box;
  3871. }
  3872. .wenti-huifu .huifu-list .huifu-li {
  3873. padding: 15px 10px;
  3874. border-top: 0.5px solid #F2F2F2;
  3875. }
  3876. .wenti-huifu .huifu-list .huifu-user {
  3877. display: flex;
  3878. margin-bottom: 14px;
  3879. }
  3880. .wenti-huifu .huifu-list .huifu-user .user-nice {
  3881. margin-left: 20px;
  3882. }
  3883. .wenti-huifu .huifu-list .huifu-user .user-nice>p.nice {
  3884. font-size: 16px;
  3885. color: #ff6f06;
  3886. font-weight: bold;
  3887. line-height: 32px;
  3888. }
  3889. .wenti-huifu .huifu-list .huifu-user .user-nice>p.jianjie {
  3890. font-size: 14px;
  3891. color: #999;
  3892. }
  3893. .wenti-huifu .huifu-list .huifu-user .dianzan-bnt {
  3894. width: 60px;
  3895. height: 40px;
  3896. font-size: 14px;
  3897. color: #4A4B4C;
  3898. background-color: #EDF0F2;
  3899. border-radius: 4px;
  3900. text-align: center;
  3901. line-height: 40px;
  3902. cursor: pointer;
  3903. }
  3904. .wenti-huifu .huifu-list .huifu-user .dianzan-bnt.dianzan-bnt-act {
  3905. color: #FF5500;
  3906. }
  3907. .wenti-huifu .huifu-list .weiguan-people {
  3908. line-height: 28px;
  3909. font-size: 14px;
  3910. color: #7A8A99;
  3911. margin-bottom: 17px;
  3912. }
  3913. .wenti-huifu .huifu-list .huifu-text-box a {
  3914. color: #ff6f06;
  3915. }
  3916. .wenti-huifu .huifu-list .huifu-text-box .huifu-content {
  3917. font-size: 16px;
  3918. color: #333;
  3919. line-height: 28px;
  3920. margin-bottom: 17px;
  3921. word-wrap: break-word;
  3922. }
  3923. .wenti-huifu .huifu-list .huifu-text-box .huifu-content img {
  3924. max-width: 100%;
  3925. height: auto;
  3926. display: block;
  3927. }
  3928. .wenti-huifu .huifu-list .huifu-text-box .huifu-content .audio-replay-wrap .audio-controls .controls-wrap {
  3929. cursor: pointer;
  3930. display: inline-flex;
  3931. width: 150px;
  3932. box-sizing: border-box;
  3933. align-items: center;
  3934. font-size: 14px;
  3935. color: white;
  3936. padding: 0 20px;
  3937. height: 40px;
  3938. background-color: #297ACC;
  3939. position: relative;
  3940. border-radius: 34px;
  3941. }
  3942. .wenti-huifu .huifu-list .huifu-text-box .huifu-content .audio-replay-wrap .audio-controls .controls-wrap:after {
  3943. content: '';
  3944. position: absolute;
  3945. left: -2px;
  3946. bottom: -2px;
  3947. background-image: url('../images/after.png');
  3948. width: 14px;
  3949. height: 20px;
  3950. background-size: cover;
  3951. }
  3952. .wenti-huifu .huifu-list .huifu-text-box .huifu-content .audio-replay-wrap .audio-controls .controls-wrap .play-icon {
  3953. display: inline-block;
  3954. width: 10px;
  3955. height: 15px;
  3956. background-image: url('../images/yuyinpng.png');
  3957. background-size: contain;
  3958. }
  3959. .wenti-huifu .huifu-list .huifu-text-box .huifu-content .audio-replay-wrap .audio-controls .controls-wrap .play-icon.playing {
  3960. background-image: url('../images/yuyin_active.gif');
  3961. }
  3962. .wenti-huifu .huifu-list .huifu-text-box .huifu-content .audio-replay-wrap .audio-controls .audio-longtime {
  3963. font-size: 12px;
  3964. color: #999;
  3965. margin-left: 4px;
  3966. }
  3967. .wenti-huifu .huifu-list .huifu-text-box .huifu-time {
  3968. font-size: 12px;
  3969. color: #999;
  3970. line-height: 28px;
  3971. }
  3972. .wenti-huifu .huifu-list .huifu-text-box .huifu-time span {
  3973. cursor: pointer;
  3974. }
  3975. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu {
  3976. margin-top: 21px;
  3977. background-color: #F5F6F7;
  3978. padding: 15px 10px;
  3979. box-sizing: border-box;
  3980. /* display:none; */
  3981. }
  3982. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .secend-ul .secend-li {
  3983. padding-bottom: 15px;
  3984. padding-top: 30px;
  3985. border-bottom: 0.5px solid #F2F2F2;
  3986. }
  3987. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .secend-ul .secend-li:first-child {
  3988. padding-top: 0;
  3989. }
  3990. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .secend-ul .secend-li .head-secend {
  3991. height: 30px;
  3992. display: flex;
  3993. align-items: center;
  3994. font-size: 14px;
  3995. color: #999;
  3996. }
  3997. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .secend-ul .secend-li .head-secend strong {
  3998. color: #333;
  3999. font-weight: bold;
  4000. }
  4001. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .secend-ul .secend-li .secend-huifu-text {
  4002. line-height: 25px;
  4003. font-size: 14px;
  4004. color: #333;
  4005. margin-top: 15px;
  4006. }
  4007. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .huifu-area {
  4008. margin-top: 20px;
  4009. }
  4010. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .huifu-area textarea {
  4011. resize: none;
  4012. width: 100%;
  4013. height: 60px;
  4014. border-radius: 4px;
  4015. font-size: 14px;
  4016. color: #999;
  4017. line-height: 25px;
  4018. padding-top: 9px;
  4019. padding-left: 20px;
  4020. box-sizing: border-box;
  4021. border: 0.5px solid #E6E6E6;
  4022. }
  4023. .editreplaybtn {
  4024. width: 100px;
  4025. height: 32px;
  4026. background-color: #ff6f06;
  4027. border-radius: 4px;
  4028. outline: none;
  4029. font-size: 14px;
  4030. color: white;
  4031. border: none;
  4032. display: inline-block;
  4033. text-align: center;
  4034. line-height: 32px;
  4035. }
  4036. .text_r {
  4037. text-align: right;
  4038. }
  4039. .mar_r10 {
  4040. margin-right: 10px;
  4041. }
  4042. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .huifu-area .huifu-btn {
  4043. margin-top: 10px;
  4044. height: 24px;
  4045. display: flex;
  4046. align-items: center;
  4047. justify-content: space-between;
  4048. font-size: 12px;
  4049. color: #999;
  4050. }
  4051. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .huifu-area .huifu-btn button {
  4052. width: 60px;
  4053. height: 24px;
  4054. border-radius: 4px;
  4055. font-size: 14px;
  4056. color: #999;
  4057. border: none;
  4058. outline: none;
  4059. }
  4060. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .huifu-area .huifu-btn button:nth-child(1) {
  4061. background-color: #F2F2F2;
  4062. margin-right: 20px;
  4063. }
  4064. .wenti-huifu .huifu-list .huifu-text-box .secend-huifu .huifu-area .huifu-btn button:nth-child(2) {
  4065. background-color: #ff6f06;
  4066. color: white;
  4067. }
  4068. .wt-opti {
  4069. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  4070. border-radius: 4px;
  4071. background-color: white;
  4072. margin-bottom: 20px;
  4073. }
  4074. .wt-opti .people-info {
  4075. padding: 15px 25px;
  4076. display: flex;
  4077. border-bottom: 0.5px solid #F2F2F2;
  4078. }
  4079. .wt-opti .people-info .people-info-a {
  4080. margin-left: 20px;
  4081. }
  4082. .wt-opti .people-info .people-info-a h3 {
  4083. font-size: 16px;
  4084. color: #ff6f06;
  4085. font-weight: bold;
  4086. line-height: 32px;
  4087. }
  4088. .wt-opti .people-info .people-info-a div {
  4089. line-height: 25px;
  4090. font-size: 14px;
  4091. color: #999;
  4092. }
  4093. .wt-opti .people-btn {
  4094. height: 68px;
  4095. line-height: 94px;
  4096. display: flex;
  4097. align-items: center;
  4098. justify-content: center;
  4099. padding: 0px 24px;
  4100. }
  4101. .wt-opti .people-btn button.tw {
  4102. width: 116px;
  4103. height: 40px;
  4104. background: #f2f2f2;
  4105. border-radius: 4px;
  4106. outline: none;
  4107. font-size: 14px;
  4108. color: #ff6f06;
  4109. background-color: #F2F2F2;
  4110. border: none;
  4111. width: 100%;
  4112. }
  4113. .wt-opti .people-btn button.act {
  4114. background-color: #ff6f06;
  4115. color: white;
  4116. }
  4117. /* 我的消息 */
  4118. .ask-article-nav {
  4119. background-color: white;
  4120. height: 70px;
  4121. line-height: 70px;
  4122. }
  4123. .ask-article-nav span {
  4124. font-size: 18px;
  4125. color: #333;
  4126. margin-left: 30px;
  4127. position: relative;
  4128. cursor: pointer;
  4129. }
  4130. .ask-article-nav span.act {
  4131. font-weight: bold;
  4132. }
  4133. .ask-article-nav span.act:after {
  4134. position: absolute;
  4135. bottom: -25px;
  4136. left: 0;
  4137. content: '';
  4138. height: 3px;
  4139. width: 100%;
  4140. background-color: #ff6f06;
  4141. }
  4142. /* 新增首页悬赏红包 */
  4143. .list-avter .p {
  4144. width: 40px;
  4145. height: 40px;
  4146. border-radius: 100%;
  4147. background-color: #FFEEE5;
  4148. line-height: 40px;
  4149. text-align: center;
  4150. }
  4151. .list-avter .p .icon-jifenguizeguankong2{
  4152. font-size: 20px;
  4153. }
  4154. .list-avter .p.g {
  4155. background-color: #F2F2F2;
  4156. }
  4157. .list-avter .p.g i {
  4158. color: #999;
  4159. }
  4160. .list-avter .p i {
  4161. color: #FF5500;
  4162. font-size: 18px;
  4163. }
  4164. .list-avter .rmbb {
  4165. font-size: 14px;
  4166. color: #FF5500;
  4167. font-weight: bold;
  4168. margin-top: 5px;
  4169. text-align: center;
  4170. }
  4171. .went-head .rview {
  4172. font-size: 14px;
  4173. color: #999;
  4174. line-height: 21px;
  4175. margin-top: 5px;
  4176. display: -webkit-box;
  4177. -webkit-box-orient: vertical;
  4178. -webkit-line-clamp: 2;
  4179. overflow: hidden;
  4180. }
  4181. .aside-right .hot-rp {
  4182. background-color: white;
  4183. margin-bottom: 20px;
  4184. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  4185. border-radius: 4px;
  4186. display: none;
  4187. }
  4188. .aside-right .hot-rp.act {
  4189. display: block;
  4190. }
  4191. .aside-right .hot-rp .hot-rp-t {
  4192. display: flex;
  4193. align-items: center;
  4194. padding: 29px 25px;
  4195. width: 100%;
  4196. box-sizing: border-box;
  4197. border-bottom: 1px solid #E6E6E6;
  4198. }
  4199. .aside-right .hot-rp .hot-rp-t img {
  4200. margin-right: 10px;
  4201. }
  4202. .aside-right .hot-rp .hot-rp-t h3 {
  4203. font-size: 18px;
  4204. color: #333;
  4205. margin-bottom: 7px;
  4206. }
  4207. .aside-right .hot-rp .hot-rp-t p,
  4208. .aside-right .hot-rp .hot-rp-t a {
  4209. font-size: 14px;
  4210. color: #999;
  4211. }
  4212. .aside-right .hot-rp .hot-rp-t a {
  4213. align-self: flex-start;
  4214. }
  4215. .aside-right .hot-rp .hot-rp-m {
  4216. padding: 29px 25px 21px;
  4217. border-bottom: 1px solid #E6E6E6;
  4218. }
  4219. .aside-right .hot-rp .hot-rp-m h3 {
  4220. font-size: 14px;
  4221. color: #333;
  4222. line-height: 25px;
  4223. display: -webkit-box;
  4224. -webkit-box-orient: vertical;
  4225. -webkit-line-clamp: 2;
  4226. overflow: hidden;
  4227. margin-bottom: 9px;
  4228. }
  4229. .aside-right .hot-rp .hot-rp-m .qn {
  4230. font-size: 14px;
  4231. color: #999;
  4232. display: flex;
  4233. justify-content: space-between;
  4234. line-height: 25px;
  4235. margin-bottom: 15px;
  4236. }
  4237. .aside-right .hot-rp .hot-rp-m .prc {
  4238. width: 252px;
  4239. height: 40px;
  4240. background: #ffeee5;
  4241. border-radius: 4px;
  4242. line-height: 40px;
  4243. text-align: center;
  4244. font-size: 16px;
  4245. color: #FF5500;
  4246. cursor: pointer;
  4247. font-weight: bold;
  4248. }
  4249. .aside-right .hot-rp .hot-rp-m .prc:hover {
  4250. background-color: #FFE6D9;
  4251. }
  4252. .aside-right .hot-rp .hot-rp-b {
  4253. height: 50px;
  4254. line-height: 50px;
  4255. text-align: center;
  4256. font-size: 16px;
  4257. color: #ff6f06;
  4258. cursor: pointer;
  4259. moz-user-select: -moz-none;
  4260. -moz-user-select: none;
  4261. -o-user-select: none;
  4262. -khtml-user-select: none;
  4263. -webkit-user-select: none;
  4264. -ms-user-select: none;
  4265. user-select: none;
  4266. }
  4267. /* 提问修改 */
  4268. .main_box_a {
  4269. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  4270. opacity: 0.99;
  4271. border-radius: 4px;
  4272. background: white;
  4273. padding-bottom: 40px;
  4274. }
  4275. .tiwen_box {
  4276. /*width: 1200px;*/
  4277. width: 100%;
  4278. border: none;
  4279. background-color: white;
  4280. height: initial;
  4281. }
  4282. .tiwen_box .tt-img {
  4283. height: 70px;
  4284. display: flex;
  4285. align-items: center;
  4286. justify-content: center;
  4287. border-bottom: 1px solid #E6E6E6;
  4288. margin-bottom: 22px;
  4289. }
  4290. .tiwen_box .tt-img img {
  4291. vertical-align: middle;
  4292. width: 468px;
  4293. }
  4294. .tiwen_box .tiwen_main {
  4295. width: 800px;
  4296. margin: 20px auto;
  4297. }
  4298. .tiwen_box .tiwen_main .ti big {
  4299. font-size: 18px;
  4300. color: #ff6f06;
  4301. }
  4302. .tiwen_box .tiwen_main .ti font {
  4303. font-size: 12px;
  4304. color: #999;
  4305. }
  4306. .tiwen_box textarea {
  4307. width: 800px;
  4308. height: 280px;
  4309. }
  4310. .tiwen_box .tiwen_main .ts {
  4311. margin-bottom: 8px;
  4312. position: relative;
  4313. }
  4314. .tiwen_box .tiwen_main .ts .lxs {
  4315. position: absolute;
  4316. display: none;
  4317. width: 100%;
  4318. top: 50px;
  4319. left: 0;
  4320. box-shadow: 0px 3px 10px 0px rgba(153, 153, 153, 0.1);
  4321. border-radius: 4px;
  4322. background-color: white;
  4323. z-index: 5;
  4324. }
  4325. .tiwen_box .tiwen_main .ts .lxs p {
  4326. padding: 20px 30px 10px;
  4327. display: flex;
  4328. align-items: center;
  4329. justify-content: space-between;
  4330. font-size: 14px;
  4331. color: #999;
  4332. }
  4333. .tiwen_box .tiwen_main .ts .lxs ul li {
  4334. height: 40px;
  4335. line-height: 40px;
  4336. padding: 0 30px;
  4337. font-size: 14px;
  4338. color: #333;
  4339. display: flex;
  4340. align-items: center;
  4341. justify-content: space-between;
  4342. }
  4343. .tiwen_box .tiwen_main .ts .lxs ul li span {
  4344. color: #ff6f06;
  4345. }
  4346. .tiwen_box .tiwen_main .ts .lxs ul li:hover {
  4347. background-color: #F5F6F7;
  4348. color: #ff6f06;
  4349. }
  4350. .tiwen_box .tiwen_main .tit_input {
  4351. width: 800px;
  4352. height: 50px;
  4353. background: #ffffff;
  4354. border: 1px solid #f2f2f2;
  4355. border-radius: 4px;
  4356. margin-bottom: 15px;
  4357. padding: 5px 10px;
  4358. line-height: 30px;
  4359. color: #666;
  4360. }
  4361. .tiwen_box .tiwen_main .da {
  4362. margin-bottom: 28px;
  4363. }
  4364. .tiwen_box .tiwen_main .et {
  4365. display: flex;
  4366. justify-content: space-between;
  4367. }
  4368. .tiwen_box .tiwen_main .et .el {
  4369. font-size: 14px;
  4370. color: #ff6f06;
  4371. }
  4372. .tiwen_box .tiwen_main .et font {
  4373. font-size: 14px;
  4374. color: #FF5500;
  4375. margin-right: 30px;
  4376. }
  4377. .tiwen_box .tiwen_main .et .rc {
  4378. display: inline-flex;
  4379. align-items: center;
  4380. }
  4381. .tiwen_box .tiwen_main .et .sz_button {
  4382. width: 100px;
  4383. height: 32px;
  4384. background: #ff6f06;
  4385. border-radius: 4px;
  4386. font-size: 14px;
  4387. color: white;
  4388. font-weight: normal;
  4389. border: none;
  4390. }
  4391. .twnav a {
  4392. padding: 8px 12px;
  4393. text-align: center;
  4394. cursor: pointer;
  4395. font-size: 12px;
  4396. width: auto;
  4397. overflow: visible;
  4398. border: 1px solid #D3D3D3;
  4399. background: #F3F3F3;
  4400. margin-right: 4px;
  4401. color: #555;
  4402. }
  4403. .twnav a:hover,
  4404. .twnav a.act:hover,
  4405. .twnav a.act {
  4406. text-decoration: none;
  4407. }
  4408. .twnav a.act {
  4409. background: #13A3D9;
  4410. color: #fff;
  4411. border-color: #108DBB;
  4412. }
  4413. .solved {
  4414. background: url(../images/solve.jpg) 0px 5px no-repeat;
  4415. }
  4416. .no_solve {
  4417. background: url(../images/no_solve.gif) 0px 5px no-repeat;
  4418. }
  4419. .fa-thumbs-up:before {
  4420. content: "\f164";
  4421. }
  4422. .fa-edit:before,
  4423. .fa-pencil-square-o:before {
  4424. content: "\f044";
  4425. }
  4426. .fa-trophy:before {
  4427. content: "\f091";
  4428. }
  4429. .sbox {
  4430. background: #fff;
  4431. }
  4432. .sbox .navbar-right {
  4433. float: left;
  4434. }
  4435. .sbox .navbar-right .dropdown-menu {
  4436. right: -26px;
  4437. }
  4438. .sbox .navbar-right a.active {
  4439. color: #ff7600 !important;
  4440. }
  4441. .sbox .search {
  4442. float: right;
  4443. background: #fff;
  4444. border: 1px solid #e4e4e4;
  4445. height: 32px;
  4446. width: 190px;
  4447. display: inline-block;
  4448. margin-top: 20px;
  4449. transition: all .3s;
  4450. margin-right: 15px;
  4451. position: relative;
  4452. }
  4453. .sbox .search.active {
  4454. border-color: #35b558;
  4455. box-shadow: 0 0 5px #35b558;
  4456. }
  4457. .sbox .search.active .search-result {
  4458. z-index: 999;
  4459. position: relative;
  4460. display: block;
  4461. }
  4462. .sbox .search.active input {
  4463. border-right-color: #35b558;
  4464. }
  4465. .sbox .search input {
  4466. float: left;
  4467. width: 150px;
  4468. height: 30px;
  4469. border: none;
  4470. padding: 0px 8px;
  4471. border-right: 1px solid #e4e4e4;
  4472. outline: none;
  4473. font-size: 12px;
  4474. }
  4475. .sbox .search .search-result {
  4476. display: none;
  4477. width: 230px;
  4478. margin-left: -1px;
  4479. margin-top: 31px;
  4480. border: 1px solid #e4e4e4;
  4481. background-color: #fff;
  4482. list-style: none;
  4483. box-shadow: -1px 3px 5px rgba(000, 000, 000, 0.3);
  4484. }
  4485. .sbox .search-icon {
  4486. width: 18px;
  4487. height: 18px;
  4488. float: right;
  4489. margin-top: 6px;
  4490. margin-right: 10px;
  4491. display: inline-block;
  4492. background: url(../images/icon.png) 0 0 no-repeat;
  4493. background-position: 0 0;
  4494. cursor: pointer;
  4495. }
  4496. .hot-list {
  4497. padding: 10px 0;
  4498. width: 228px;
  4499. position: absolute;
  4500. left: 0;
  4501. top: 31px;
  4502. margin: 0;
  4503. line-height: 32px;
  4504. font-size: 14px;
  4505. border-radius: 2px;
  4506. box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
  4507. background-color: #fff;
  4508. display: none;
  4509. z-index: 999999;
  4510. }
  4511. .hot-list>a {
  4512. display: block;
  4513. color: #333;
  4514. text-decoration: none;
  4515. overflow: hidden;
  4516. padding-right: 10px;
  4517. }
  4518. .hot-list>a:hover {
  4519. background-color: #f3f3f3;
  4520. }
  4521. .hot-list>a>div {
  4522. float: left;
  4523. width: 196px;
  4524. height: 32px;
  4525. overflow: hidden;
  4526. }
  4527. .hot-list>a>div.number {
  4528. text-align: center;
  4529. width: 22px;
  4530. color: #ff8105
  4531. }
  4532. .hot-list>a>div.number.c1 {
  4533. color: #ff2c00
  4534. }
  4535. .hot-list>a>div.number.c2 {
  4536. color: #ff5a00
  4537. }
  4538. .hot-list>a>div.number.c3 {
  4539. color: #3cbe85
  4540. }
  4541. /*个人页面*/
  4542. .mar_t25 {
  4543. margin-top: 25px;
  4544. }
  4545. .font24 {
  4546. font-size: 24px;
  4547. }
  4548. .font16 {
  4549. font-size: 16px;
  4550. color: #333;
  4551. }
  4552. .n_yinc {
  4553. max-height: 50px;
  4554. overflow: hidden;
  4555. }
  4556. .jiu_font {
  4557. color: rgba(0, 0, 0, .44);
  4558. font-size: 14px;
  4559. margin-bottom: 10px;
  4560. }
  4561. .news_ul li {
  4562. border-bottom: 1px solid #f2f2f2;
  4563. border-bottom: 1px solid #f2f2f2;
  4564. padding: 20px 0 15px 0;
  4565. line-height: 24px;
  4566. word-break: normal;
  4567. word-wrap: break-word;
  4568. text-align: left;
  4569. }
  4570. .n_ws {
  4571. display: inline-block;
  4572. vertical-align: top;
  4573. overflow: hidden;
  4574. width: 100%;
  4575. }
  4576. .b_line {
  4577. border-bottom: 1px #f2f2f2 solid;
  4578. }
  4579. .pad_b {
  4580. padding-bottom: 13px;
  4581. }
  4582. .hui_back {
  4583. background: #f9f9f9;
  4584. border-bottom: 1px solid #e7e7e7;
  4585. height: 260px;
  4586. padding: 60px 0px;
  4587. }
  4588. .mar_t38 {
  4589. margin-top: 38px;
  4590. }
  4591. .mar_b20 {
  4592. margin-bottom: 20px;
  4593. }
  4594. .title_center {
  4595. height: 40px;
  4596. border-bottom: #ebebeb 1px solid;
  4597. line-height: 40px;
  4598. }
  4599. .title_center .a_link {
  4600. padding: 10px 21px;
  4601. font-size: 16px;
  4602. color: #999;
  4603. }
  4604. .title_center .over {
  4605. border-bottom: 1px #ff5400 solid;
  4606. color: #ff5400;
  4607. }
  4608. .me_box {
  4609. width: 100%;
  4610. height: 174px;
  4611. margin-top: 30px;
  4612. }
  4613. .me_list {
  4614. margin-left: 18px;
  4615. width: 94%;
  4616. }
  4617. .askbox {
  4618. background: #fff;
  4619. }
  4620. .me_dl {
  4621. width: 660px;
  4622. height: 100px;
  4623. }
  4624. .me_dl dd {
  4625. width: 140px;
  4626. height: 140px;
  4627. }
  4628. .me_dl dd img {
  4629. width: 140px;
  4630. height: 140px;
  4631. border-radius: 100%;
  4632. }
  4633. .me_dl dt {
  4634. width: 500px;
  4635. }
  4636. .shuju_box {
  4637. height: 78px;
  4638. }
  4639. .shuju_box li {
  4640. width: 100px;
  4641. display: block;
  4642. float: left;
  4643. margin: 16px 0 15px 0;
  4644. text-align: center;
  4645. }
  4646. .sj_line {
  4647. background: url(../images/l_line.jpg) no-repeat center right;
  4648. }
  4649. .me_r_box {
  4650. width: 300px;
  4651. }
  4652. .me_bianji {
  4653. width: 52px;
  4654. height: 37px;
  4655. background: url(../images/bianji.png) no-repeat 20px 10px;
  4656. border: #c6c6c6 1px solid;
  4657. color: #999;
  4658. border-radius: 50px;
  4659. font-size: 16px;
  4660. line-height: 37px;
  4661. padding-left: 50px;
  4662. margin: 0 auto;
  4663. }
  4664. .me_bianji:hover {
  4665. border: #999 1px solid;
  4666. background: url(../images/bianji.png)#ededed no-repeat 20px 10px;
  4667. cursor: pointer;
  4668. }
  4669. .me_guanzh {
  4670. width: 71px;
  4671. height: 37px;
  4672. background-color: #406080;
  4673. font-size: 14px;
  4674. color: white;
  4675. border-radius: 4px;
  4676. line-height: 37px;
  4677. padding-left: 46px;
  4678. margin: 0 auto;
  4679. }
  4680. .me_guanzh:hover {
  4681. background-color: #334C66;
  4682. cursor: pointer;
  4683. }
  4684. .me_guanzh_no {
  4685. width: 117px;
  4686. height: 37px;
  4687. border: #c6c6c6 1px solid;
  4688. color: #999;
  4689. border-radius: 50px;
  4690. font-size: 16px;
  4691. line-height: 37px;
  4692. text-align: center;
  4693. margin: 0 auto;
  4694. }
  4695. .me_guanzh_no:hover {
  4696. border: #999 1px solid;
  4697. cursor: pointer;
  4698. }
  4699. .me_left_box {
  4700. margin-bottom: -30000px;
  4701. padding-bottom: 30000px;
  4702. background-color: #fff;
  4703. border-right: 1px #ebebeb solid;
  4704. }
  4705. .me_right_box {
  4706. width: 100%;
  4707. min-height: 500px;
  4708. padding-bottom: 50px;
  4709. }
  4710. .mar_b20 {
  4711. margin-bottom: 20px;
  4712. }
  4713. .me_nav_ul li a {
  4714. height: 44px;
  4715. line-height: 44px;
  4716. display: block;
  4717. color: #666;
  4718. border-left: 4px #fff solid;
  4719. padding-left: 15px;
  4720. }
  4721. .me_nav_ul li a:hover {
  4722. color: #ff5400;
  4723. }
  4724. .me_nav_ul li a.over {
  4725. color: #ff5400;
  4726. border-left: 4px #ff5400 solid;
  4727. background: #f5f5f5;
  4728. }
  4729. .top_line {
  4730. border-top: 1px #ebebeb solid;
  4731. }
  4732. .me_tit_em {
  4733. width: 60px;
  4734. height: 17px;
  4735. text-align: center;
  4736. line-height: 17px;
  4737. font-size: 11px;
  4738. border-radius: 10px;
  4739. border: 1px #ff5400 solid;
  4740. color: #ff5400;
  4741. margin-top: -3px;
  4742. display: inline-block;
  4743. vertical-align: middle;
  4744. }
  4745. .fa-plus:before {
  4746. content: "\f067";
  4747. }
  4748. .float_l {
  4749. float: left;
  4750. }
  4751. .float_r {
  4752. float: right;
  4753. }
  4754. .login_tips1 {
  4755. /* top:0px; left:0px; */
  4756. height: 32px;
  4757. line-height: 32px;
  4758. text-align: center;
  4759. color: #999;
  4760. }
  4761. .pro_rela {
  4762. position: relative;
  4763. }
  4764. @media (min-width: 640px) {
  4765. .pro_rela .login_tips1 {
  4766. top: 4px;
  4767. left: 0px;
  4768. width: 100%;
  4769. position: absolute;
  4770. }
  4771. }
  4772. @media (max-width: 640px) {
  4773. .aside-left .article-list .article-ul .ask-article-list-item .tx-list {
  4774. margin-top: 0
  4775. }
  4776. .mian-body .aside-left {
  4777. display: block;
  4778. padding: 0;
  4779. }
  4780. .sbox {
  4781. padding: 20px 15px;
  4782. }
  4783. .sbox .search {
  4784. margin: 0 auto;
  4785. float: unset;
  4786. display: block;
  4787. }
  4788. .sbox .nav>li {
  4789. width: auto;
  4790. }
  4791. .sbox .navbar-nav {
  4792. margin: 0;
  4793. padding: 10px 0;
  4794. width: 100%;
  4795. display: flex;
  4796. flex-flow: row nowrap !important;
  4797. overflow-x: auto;
  4798. list-style: none;
  4799. }
  4800. .edui-editor-iframeholder {
  4801. height: 200px !important;
  4802. }
  4803. .sbox .nav>li>a {
  4804. padding: 10px 15px;
  4805. font-size: 16px;
  4806. white-space: nowrap;
  4807. }
  4808. .aside-left .article-list .article-ul .ask-article-list-item {
  4809. padding: 10px;
  4810. }
  4811. .aside-left .article-list .article-ul .ask-article-list-item .list-avter {
  4812. margin-right: 10px;
  4813. }
  4814. .me_dl {
  4815. height: 50px;
  4816. }
  4817. .me_left_box {
  4818. display: none;
  4819. }
  4820. .askbox .col-md-10 {
  4821. padding: 0px;
  4822. }
  4823. .aside-left .huifu-edit {
  4824. padding: 10px;
  4825. }
  4826. .aside-left .huifu-edit .huifu-user {
  4827. margin-bottom: 4px;
  4828. }
  4829. .aside-left .huifu-edit .edit-opt {
  4830. margin-top: 10px;
  4831. }
  4832. .wenda {
  4833. padding: 10px;
  4834. }
  4835. .caret {
  4836. display: none;
  4837. }
  4838. .tiwen_box .tt-img img {
  4839. vertical-align: middle;
  4840. width: 100%;
  4841. }
  4842. .main_box_a{
  4843. padding: 15px;
  4844. }
  4845. .tiwen_box .tiwen_main{
  4846. width: 100%;
  4847. }
  4848. .tiwen_box .tiwen_main .tit_input{
  4849. width: 100%;
  4850. }
  4851. }
  4852. @font-face {
  4853. font-family: "iconfont"; /* Project id 2123820 */
  4854. src: url('../fonts/iconfont.woff2?t=1655201418793') format('woff2'),
  4855. url('../fonts/iconfont.woff?t=1655201418793') format('woff'),
  4856. url('../fonts/iconfont.ttf?t=1655201418793') format('truetype');
  4857. }
  4858. .iconfont {
  4859. font-family: "iconfont" !important;
  4860. font-size: 16px;
  4861. font-style: normal;
  4862. -webkit-font-smoothing: antialiased;
  4863. -moz-osx-font-smoothing: grayscale;
  4864. }
  4865. .icon-jifenguizeguankong2:before {
  4866. content: "\e6ae";
  4867. }
  4868. .icon-remen:before {
  4869. content: "\e62f";
  4870. }
  4871. .icon-hongbao:before {
  4872. content: "\e60d";
  4873. }