bottom.css 110 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870
  1. html {
  2. -ms-text-size-adjust: 100%;
  3. -webkit-text-size-adjust: 100%
  4. }
  5. body {
  6. -webkit-font-smoothing: antialiased;
  7. line-height: 1.6
  8. }
  9. input, textarea, button, a {
  10. outline: 0
  11. }
  12. body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, fieldset, textarea {
  13. margin: 0
  14. }
  15. fieldset, legend, textarea, input {
  16. padding: 0
  17. }
  18. ul, ol {
  19. padding-left: 0;
  20. list-style-type: none
  21. }
  22. a img, fieldset {
  23. border: 0
  24. }
  25. article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  26. display: block
  27. }
  28. audio, canvas, video {
  29. display: inline-block
  30. }
  31. audio:not([controls]) {
  32. display: none;
  33. height: 0
  34. }
  35. [hidden] {
  36. display: none
  37. }
  38. svg:not(:root) {
  39. overflow: hidden
  40. }
  41. figure {
  42. margin: 0
  43. }
  44. button, input, select, textarea {
  45. font-family: inherit;
  46. font-size: 100%;
  47. margin: 0
  48. }
  49. button, select {
  50. text-transform: none
  51. }
  52. button, html input[type="button"], input[type="reset"], input[type="submit"] {
  53. cursor: pointer;
  54. -webkit-appearance: button
  55. }
  56. button[disabled], html input[disabled] {
  57. cursor: default
  58. }
  59. input[type="checkbox"], input[type="radio"] {
  60. box-sizing: border-box;
  61. padding: 0
  62. }
  63. input[type="search"] {
  64. box-sizing: content-box;
  65. -moz-box-sizing: content-box;
  66. -webkit-appearance: textfield;
  67. -webkit-box-sizing: content-box
  68. }
  69. input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  70. -webkit-appearance: none
  71. }
  72. button::-moz-focus-inner, input::-moz-focus-inner {
  73. border: 0;
  74. padding: 0
  75. }
  76. textarea {
  77. overflow: auto;
  78. vertical-align: top;
  79. resize: none
  80. }
  81. input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  82. box-shadow: inset 0 0 0 1000px #fff;
  83. -moz-box-shadow: inset 0 0 0 1000px #fff;
  84. -webkit-box-shadow: inset 0 0 0 1000px #fff
  85. }
  86. select {
  87. border-radius: 0;
  88. -webkit-border-radius: 0
  89. }
  90. body {
  91. line-height: 1.6;
  92. font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "\9ED1\4F53", Arial, sans-serif;
  93. color: #222;
  94. font-size: 14px
  95. }
  96. textarea, input {
  97. color: #222
  98. }
  99. textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  100. color: #a3a3a3
  101. }
  102. textarea:-moz-placeholder, input:-moz-placeholder {
  103. color: #a3a3a3
  104. }
  105. textarea::-moz-placeholder, input::-moz-placeholder {
  106. color: #a3a3a3
  107. }
  108. textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  109. color: #a3a3a3
  110. }
  111. textarea.placeholder, input.placeholder {
  112. color: #a3a3a3
  113. }
  114. textarea {
  115. resize: none;
  116. overflow-y: auto
  117. }
  118. a {
  119. color: #576b95;
  120. text-decoration: none
  121. }
  122. a:hover {
  123. text-decoration: underline
  124. }
  125. button, input, select, textarea {
  126. *font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "\9ED1\4F53", Arial, sans-serif
  127. }
  128. .page_pay_qrcode .main_bd {
  129. padding: 50px 80px
  130. }
  131. .page_appmsg_edit .main_bd {
  132. padding: 50px 30px 0
  133. }
  134. .page_tpl_edit .main_bd {
  135. padding: 50px
  136. }
  137. .page_media_list .main_bd {
  138. padding: 20px 0 40px 0
  139. }
  140. .page_mass_list .main_bd {
  141. padding-bottom: 40px
  142. }
  143. .screen_small .dialog_bd {
  144. max-height: 485px;
  145. overflow-y: auto
  146. }
  147. .global_text {
  148. font-size: 14px;
  149. font-weight: 400
  150. }
  151. .mini_tips a {
  152. color: #222
  153. }
  154. .container_box {
  155. min-height: 700px
  156. }
  157. .container_box.cell_layout {
  158. *overflow: hidden
  159. }
  160. .container_box.cell_layout .col_side, .container_box.cell_layout .col_main {
  161. display: table-cell;
  162. vertical-align: top;
  163. word-wrap: break-word;
  164. word-break: break-all
  165. }
  166. .container_box.cell_layout .col_side {
  167. width: 17.5%;
  168. max-width: 208px
  169. }
  170. .container_box.cell_layout .col_main {
  171. width: 2000px;
  172. height: 700px
  173. }
  174. .container_box.cell_layout .col_side {
  175. *float: left;
  176. *width: 208px;
  177. *padding-bottom: 9999em;
  178. *margin-bottom: -9999em
  179. }
  180. .container_box.cell_layout .col_main {
  181. *zoom: 1;
  182. *width: auto;
  183. *height: auto
  184. }
  185. .container_hd, .main_hd {
  186. line-height: 40px
  187. }
  188. .container_hd .info, .main_hd .info {
  189. margin-top: -40px;
  190. text-align: right
  191. }
  192. .container_hd h2, .main_hd h2 {
  193. font-weight: 400;
  194. font-style: normal
  195. }
  196. .container_hd .extra_info, .main_hd .extra_info {
  197. margin-top: -40px;
  198. text-align: right
  199. }
  200. .ft.links {
  201. font-size: 12px
  202. }
  203. .ft .links_item {
  204. border-left-color: #222;
  205. *line-height: 15px
  206. }
  207. .ft .links_item a {
  208. color: #222
  209. }
  210. .foot {
  211. padding: 24px 0;
  212. color: #222;
  213. text-align: center
  214. }
  215. .copyright {
  216. display: inline
  217. }
  218. body.scaled {
  219. padding-top: 56px
  220. }
  221. .container_box.simple {
  222. overflow: hidden;
  223. background-color: #fff
  224. }
  225. .container_hd h2, .main_hd h2 {
  226. font-size: 16px;
  227. padding: 0 30px;
  228. line-height: 75px
  229. }
  230. .container_hd .extra_info, .main_hd .extra_info {
  231. line-height: 43px;
  232. margin-top: -43px;
  233. padding-right: 30px
  234. }
  235. .container_hd .extra_info.align_title, .main_hd .extra_info.align_title {
  236. margin-top: -75px;
  237. line-height: 75px
  238. }
  239. .container_hd .extra_info.align_nav, .main_hd .extra_info.align_nav {
  240. margin-top: -80px;
  241. line-height: 80px
  242. }
  243. .container_hd .title_tab, .main_hd .title_tab {
  244. margin-top: -14px
  245. }
  246. .container_hd.border, .main_hd.border {
  247. border-bottom: 1px solid #e7e7eb;
  248. margin-bottom: 40px
  249. }
  250. .container_hd.border_primary h2, .main_hd.border_primary h2 {
  251. border: 1px solid #e7e7eb
  252. }
  253. .page_news .container_hd h2, .page_simple .container_hd h2, .page_news .main_hd h2, .page_simple .main_hd h2 {
  254. line-height: 52px;
  255. background-color: #f4f5f9
  256. }
  257. .page_news .container_hd .extra_info.align_title, .page_simple .container_hd .extra_info.align_title, .page_news .main_hd .extra_info.align_title, .page_simple .main_hd .extra_info.align_title {
  258. margin-top: -52px;
  259. line-height: 52px
  260. }
  261. .container_bd, .main_bd {
  262. padding-bottom: 30px
  263. }
  264. .col_side {
  265. min-height: 1px
  266. }
  267. .inner_side {
  268. *padding-bottom: 9999em;
  269. *margin-bottom: -9999em;
  270. min-height: 1px
  271. }
  272. .side_l .col_side {
  273. border-right: 1px solid #e7e7eb
  274. }
  275. .side_l.inner_container_box .inner_side {
  276. border-right: 1px solid #e7e7eb
  277. }
  278. .side_r .col_side {
  279. border-left: 1px solid #e7e7eb
  280. }
  281. .side_r.inner_container_box .inner_side {
  282. border-left: 1px solid #e7e7eb
  283. }
  284. .inner_container_box {
  285. *zoom: 1;
  286. *overflow: hidden;
  287. background-color: #fff;
  288. border: 1px solid #e7e7eb
  289. }
  290. .inner_container_box:after {
  291. content: "\200B";
  292. display: block;
  293. height: 0;
  294. clear: both
  295. }
  296. .inner_container_box .bd {
  297. min-height: 530px
  298. }
  299. .inner_container_box.cell_layout {
  300. *overflow: hidden
  301. }
  302. .inner_container_box.cell_layout .inner_side, .inner_container_box.cell_layout .inner_main {
  303. display: table-cell;
  304. vertical-align: top;
  305. word-wrap: break-word;
  306. word-break: break-all
  307. }
  308. .inner_container_box.cell_layout .inner_side {
  309. width: 27%;
  310. max-width: 240px
  311. }
  312. .inner_container_box.cell_layout .inner_main {
  313. width: 2000px
  314. }
  315. .inner_container_box.cell_layout .inner_side {
  316. *float: left;
  317. *width: 240px
  318. }
  319. .inner_container_box.cell_layout .inner_main {
  320. *zoom: 1;
  321. *width: auto
  322. }
  323. .inner_container_box.cell_layout.side_r {
  324. *padding-right: 241px
  325. }
  326. .inner_container_box.cell_layout.side_r .inner_main {
  327. *float: left;
  328. *width: 100%
  329. }
  330. .grid_line {
  331. *zoom: 1
  332. }
  333. .grid_line:after {
  334. content: "\200B";
  335. display: block;
  336. height: 0;
  337. clear: both
  338. }
  339. .grid_line.with_1 .grid_item {
  340. width: 100%
  341. }
  342. .grid_line.with_2 .grid_item {
  343. width: 50%
  344. }
  345. .grid_line.with_3 .grid_item {
  346. width: 33.33%
  347. }
  348. .grid_line.with_4 .grid_item {
  349. width: 25%
  350. }
  351. .grid_line.with_5 .grid_item {
  352. width: 20%
  353. }
  354. .grid_line.with_6 .grid_item {
  355. width: 16.66%
  356. }
  357. .grid_line.with_7 .grid_item {
  358. width: 14.28%
  359. }
  360. .grid_line.with_8 .grid_item {
  361. width: 12.5%
  362. }
  363. .grid_line .no_extra.grid_item {
  364. float: none;
  365. width: auto;
  366. overflow: hidden;
  367. *zoom: 1;
  368. *overflow: visible
  369. }
  370. .grid_item {
  371. float: left
  372. }
  373. .grid_item.no_extra {
  374. float: none;
  375. width: auto;
  376. overflow: hidden;
  377. *zoom: 1;
  378. *overflow: visible
  379. }
  380. .grid_item.no_extra_flex {
  381. display: table-cell;
  382. vertical-align: top;
  383. float: none;
  384. width: auto;
  385. *display: block;
  386. *zoom: 1
  387. }
  388. .grid_item.no_extra_flex:after {
  389. content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
  390. visibility: hidden;
  391. clear: both;
  392. height: 0 !important;
  393. display: block;
  394. line-height: 0
  395. }
  396. .size1of1 {
  397. width: 100%
  398. }
  399. .size1of2 {
  400. width: 50%
  401. }
  402. .size1of3 {
  403. width: 33.33%
  404. }
  405. .size1of4 {
  406. width: 25%
  407. }
  408. .size1of5 {
  409. width: 20%
  410. }
  411. .size1of6 {
  412. width: 16.66%
  413. }
  414. .size1of7 {
  415. width: 14.28%
  416. }
  417. .size1of8 {
  418. width: 12.5%
  419. }
  420. .icon_radio {
  421. background: url(images/base_z451259.png) 0 0 no-repeat;
  422. width: 16px;
  423. height: 16px;
  424. vertical-align: middle;
  425. display: inline-block;
  426. margin-top: -0.2em;
  427. *margin-top: 0
  428. }
  429. .icon_radio.selected, .selected .icon_radio {
  430. background: url(images/base_z451259.png) 0 -20px no-repeat
  431. }
  432. .icon_radio.selected.disabled, .selected.disabled .icon_radio {
  433. background: url(images/base_z451259.png) 0 -40px no-repeat
  434. }
  435. .icon_checkbox {
  436. background: url(images/base_z451259.png) 0 -60px no-repeat;
  437. width: 16px;
  438. height: 16px;
  439. vertical-align: middle;
  440. display: inline-block;
  441. margin-top: -0.2em;
  442. *margin-top: 0
  443. }
  444. .icon_checkbox.selected, .selected .icon_checkbox {
  445. background: url(images/base_z451259.png) 0 -80px no-repeat
  446. }
  447. .icon_checkbox.disabled, .disabled .icon_checkbox {
  448. background: url(images/base_z451259.png) 0 -100px no-repeat
  449. }
  450. .icon_checkbox.selected.disabled, .selected.disabled .icon_checkbox {
  451. background: url(images/base_z451259.png) 0 -120px no-repeat
  452. }
  453. .frm_tab {
  454. overflow: hidden;
  455. *zoom: 1
  456. }
  457. .frm_tab_navs {
  458. *zoom: 1
  459. }
  460. .frm_tab_navs:after {
  461. content: "\200B";
  462. display: block;
  463. height: 0;
  464. clear: both
  465. }
  466. .frm_tab_nav {
  467. float: left;
  468. background-color: #fff;
  469. background-image: -moz-linear-gradient(top, #fff 0, #fff 100%);
  470. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#fff));
  471. background-image: -webkit-linear-gradient(top, #fff 0, #fff 100%);
  472. background-image: -o-linear-gradient(top, #fff 0, #fff 100%);
  473. background-image: linear-gradient(to bottom, #fff 0, #fff 100%);
  474. border-color: #e7e7eb;
  475. color: #222;
  476. height: 30px;
  477. line-height: 30px;
  478. *line-height: 28px;
  479. width: auto;
  480. padding-left: 36px;
  481. padding-right: 36px;
  482. border-radius: 0;
  483. -moz-border-radius: 0;
  484. -webkit-border-radius: 0;
  485. margin-right: -1px
  486. }
  487. .frm_tab_nav button {
  488. color: #222
  489. }
  490. .frm_tab_nav:hover {
  491. background-color: #e7e7eb;
  492. background-image: -moz-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  493. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7eb), to(#e7e7eb));
  494. background-image: -webkit-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  495. background-image: -o-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  496. background-image: linear-gradient(to bottom, #e7e7eb 0, #e7e7eb 100%);
  497. border-color: #dadbe0;
  498. box-shadow: none;
  499. -moz-box-shadow: none;
  500. -webkit-box-shadow: none;
  501. color: #222
  502. }
  503. .frm_tab_nav:hover button {
  504. color: #222
  505. }
  506. .frm_tab_nav:hover {
  507. box-shadow: none;
  508. -moz-box-shadow: none;
  509. -webkit-box-shadow: none
  510. }
  511. .frm_tab_nav.selected {
  512. background: 0;
  513. background-color: #888;
  514. border-color: #e7e7eb;
  515. box-shadow: inset 0 3px 8px #555;
  516. -moz-box-shadow: inset 0 3px 8px #555;
  517. -webkit-box-shadow: inset 0 3px 8px #555;
  518. color: #fff
  519. }
  520. .frm_tab_panel {
  521. padding: 10px 0
  522. }
  523. .frm_tab_split {
  524. position: relative;
  525. margin-top: 20px;
  526. border-bottom: 1px solid #e7e7eb;
  527. box-shadow: 0 1px 0 0 #fff;
  528. -moz-box-shadow: 0 1px 0 0 #fff;
  529. -webkit-box-shadow: 0 1px 0 0 #fff
  530. }
  531. .frm_tab_split .arrow_stop {
  532. position: relative
  533. }
  534. .frm_tab_split .arrow {
  535. position: absolute;
  536. left: 0;
  537. display: inline-block;
  538. width: 0;
  539. height: 0;
  540. border-width: 12px;
  541. border-style: dashed;
  542. border-color: transparent;
  543. border-top-width: 0;
  544. border-bottom-color: #e7e7eb;
  545. border-bottom-style: solid
  546. }
  547. .frm_tab_split .arrow_out {
  548. top: -12px;
  549. border-bottom-color: #e7e7eb
  550. }
  551. .frm_tab_split .arrow_in {
  552. top: -10px;
  553. border-bottom-color: #fff
  554. }
  555. .frm_tab_split .arrow_extra {
  556. top: -11px;
  557. border-bottom-color: #fff
  558. }
  559. .frm_tab_tips {
  560. padding-top: 4px;
  561. color: #8d8d8d
  562. }
  563. .form_wrp.simple {
  564. text-align: center
  565. }
  566. .form_wrp.simple .form {
  567. display: inline-block;
  568. *display: inline;
  569. *zoom: 1;
  570. text-align: left
  571. }
  572. .form.tips_inline .frm_tips {
  573. width: auto;
  574. display: inline-block
  575. }
  576. .frm_vertical_lh {
  577. line-height: 32px
  578. }
  579. .frm_vertical_pt {
  580. padding-top: .3em
  581. }
  582. .frm_fieldset {
  583. padding-top: 25px;
  584. padding-top: 0 \9
  585. }
  586. .frm_fieldset.no_legend {
  587. padding-top: 25px
  588. }
  589. .frm_legend {
  590. display: block;
  591. width: 100%;
  592. *margin-left: -0.35em;
  593. margin-bottom: 25px \9;
  594. padding-bottom: 5px
  595. }
  596. .frm_legend .tips {
  597. color: #8d8d8d;
  598. margin-left: 14px
  599. }
  600. .frm_desc {
  601. color: #222
  602. }
  603. .frm_tips {
  604. color: #8d8d8d
  605. }
  606. .frm_tips.gap_bottom {
  607. padding-bottom: 5px
  608. }
  609. .frm_tips, .frm_msg {
  610. padding-top: 4px;
  611. width: 300px
  612. }
  613. .frm_msg {
  614. display: none;
  615. overflow: hidden;
  616. *zoom: 1
  617. }
  618. .frm_msg i {
  619. float: left;
  620. font-weight: 400;
  621. font-style: normal;
  622. margin-right: 3px
  623. }
  624. .frm_msg.success {
  625. color: #7fba4f
  626. }
  627. .frm_msg.fail {
  628. color: #e15f63
  629. }
  630. .frm_control_group {
  631. *zoom: 1;
  632. padding-bottom: 25px
  633. }
  634. .frm_control_group:after {
  635. content: "\200B";
  636. display: block;
  637. height: 0;
  638. clear: both
  639. }
  640. .frm_control_group.show_value {
  641. padding-bottom: 15px
  642. }
  643. .frm_control_group.show_value .frm_input_box {
  644. height: auto;
  645. word-wrap: break-word;
  646. word-break: break-all;
  647. padding: 0;
  648. border-width: 0;
  649. box-shadow: none;
  650. -moz-box-shadow: none;
  651. -webkit-box-shadow: none;
  652. background: 0;
  653. line-height: 1.6;
  654. vertical-align: top;
  655. margin-top: .3em
  656. }
  657. .frm_control_group.frm_label_block .frm_label {
  658. display: block;
  659. width: auto;
  660. float: none;
  661. font-size: 14px;
  662. margin-bottom: .5em
  663. }
  664. .frm_control_group.frm_control_block .frm_textarea_box, .frm_control_group.frm_control_block .frm_input_box, .frm_control_group.frm_control_block .frm_msg, .frm_control_group.frm_control_block .frm_tips {
  665. display: block;
  666. width: auto
  667. }
  668. .frm_label {
  669. float: left;
  670. width: 5em;
  671. margin-top: .3em;
  672. margin-right: 1em;
  673. font-size: 14px
  674. }
  675. .frm_label_tips {
  676. display: block;
  677. color: #8d8d8d
  678. }
  679. .frm_controls {
  680. display: table-cell;
  681. vertical-align: top;
  682. float: none;
  683. width: auto;
  684. *display: block;
  685. *zoom: 1
  686. }
  687. .frm_controls:after {
  688. content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
  689. visibility: hidden;
  690. clear: both;
  691. height: 0 !important;
  692. display: block;
  693. line-height: 0
  694. }
  695. .frm_input, .frm_textarea {
  696. width: 100%;
  697. background-color: transparent;
  698. border: 0;
  699. outline: 0
  700. }
  701. .frm_input {
  702. height: 22px;
  703. *line-height: 22px;
  704. margin: 4px 0
  705. }
  706. .frm_textarea {
  707. height: 100px
  708. }
  709. .frm_input_box {
  710. display: inline-block;
  711. position: relative;
  712. height: 30px;
  713. line-height: 30px;
  714. vertical-align: middle;
  715. width: 278px;
  716. font-size: 14px;
  717. padding: 0 10px;
  718. border: 1px solid #e7e7eb;
  719. box-shadow: none;
  720. -moz-box-shadow: none;
  721. -webkit-box-shadow: none;
  722. border-radius: 0;
  723. -moz-border-radius: 0;
  724. -webkit-border-radius: 0;
  725. background-color: #fff
  726. }
  727. .frm_input_box .frm_input_append {
  728. *height: 30px;
  729. font-size: 0
  730. }
  731. .frm_input_box.search {
  732. border-radius: 0;
  733. -moz-border-radius: 0;
  734. -webkit-border-radius: 0
  735. }
  736. .frm_input_box.append {
  737. padding-right: 30px
  738. }
  739. .frm_input_box.append .frm_input_append {
  740. position: absolute;
  741. top: 0;
  742. right: .8em
  743. }
  744. .frm_input_box.prepend {
  745. padding-left: 30px
  746. }
  747. .frm_input_box.prepend .frm_input_append {
  748. position: absolute;
  749. top: 0;
  750. left: .8em
  751. }
  752. .frm_input_box.tips_inline {
  753. padding-right: 10px
  754. }
  755. .frm_input_box.tips_inline .frm_input_append {
  756. font-size: 14px
  757. }
  758. .frm_input_box.with_counter .frm_counter {
  759. width: 50px;
  760. color: #8d8d8d;
  761. font-size: 14px;
  762. font-weight: 400;
  763. font-style: normal
  764. }
  765. .frm_input_box.with_counter.warn .frm_counter {
  766. color: #e15f63
  767. }
  768. .frm_input_box.counter_in {
  769. padding-right: 70px
  770. }
  771. .frm_input_box.counter_in .frm_counter {
  772. right: 0;
  773. text-align: right;
  774. padding-right: 10px
  775. }
  776. .frm_input_box.counter_out {
  777. padding-right: 10px
  778. }
  779. .frm_input_box.counter_out .frm_counter {
  780. right: -60px;
  781. padding-left: 10px
  782. }
  783. .frm_input_box.vcode {
  784. width: 157px
  785. }
  786. .frm_input_box.zone {
  787. width: 72px;
  788. margin-right: 5px
  789. }
  790. .frm_input_box.phone {
  791. width: 175px
  792. }
  793. .frm_msg.align_counter, .frm_tips.align_counter, .align_counter .frm_msg, .align_counter .frm_tips {
  794. margin-top: -27px
  795. }
  796. .frm_textarea_box {
  797. display: inline-block;
  798. width: 288px;
  799. padding: 4px 0 4px 10px;
  800. font-size: 14px;
  801. border: 1px solid #e7e7eb;
  802. box-shadow: none;
  803. -moz-box-shadow: none;
  804. -webkit-box-shadow: none;
  805. border-radius: 0;
  806. -moz-border-radius: 0;
  807. -webkit-border-radius: 0;
  808. background-color: #fff
  809. }
  810. .frm_textarea_box.with_counter {
  811. position: relative;
  812. margin-bottom: 27px
  813. }
  814. .frm_textarea_box.with_counter .frm_counter {
  815. color: #8d8d8d;
  816. font-size: 14px;
  817. font-weight: 400;
  818. font-style: normal
  819. }
  820. .frm_textarea_box.with_counter.warn .frm_counter {
  821. color: #e15f63
  822. }
  823. .frm_textarea_box.counter_out .frm_counter {
  824. position: absolute;
  825. bottom: -27px;
  826. right: 0
  827. }
  828. .disabled.frm_input_box, .disabled.frm_textarea_box {
  829. background-color: #eee
  830. }
  831. .disabled .frm_input_box, .disabled .frm_textarea_box {
  832. background-color: #eee
  833. }
  834. .focus.frm_input_box, .focus.frm_textarea_box, .focus.frm_select_box {
  835. border-color: #6bbe6e
  836. }
  837. .focus.frm_select_box {
  838. *border-color: transparent
  839. }
  840. .frm_radio, .frm_checkbox {
  841. position: absolute;
  842. left: -999em
  843. }
  844. .frm_radio_label, .frm_checkbox_label {
  845. display: inline-block;
  846. text-align: left;
  847. cursor: pointer;
  848. margin-right: 1em
  849. }
  850. .frm_radio_label.no_extra, .frm_checkbox_label.no_extra {
  851. margin-right: 0
  852. }
  853. .frm_radio_label.disabled, .frm_checkbox_label.disabled {
  854. color: #999;
  855. cursor: default
  856. }
  857. .icon_radio {
  858. margin-right: 4px
  859. }
  860. .icon_checkbox {
  861. margin-right: 4px
  862. }
  863. .frm_select_box {
  864. display: inline-block;
  865. *display: inline;
  866. *zoom: 1;
  867. position: relative;
  868. background-color: #fff;
  869. background-image: -moz-linear-gradient(top, #fff 0, #fff 100%);
  870. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#fff));
  871. background-image: -webkit-linear-gradient(top, #fff 0, #fff 100%);
  872. background-image: -o-linear-gradient(top, #fff 0, #fff 100%);
  873. background-image: linear-gradient(to bottom, #fff 0, #fff 100%);
  874. border-color: #e7e7eb;
  875. color: #222;
  876. vertical-align: middle;
  877. font-size: 14px;
  878. *top: .6em;
  879. *margin-right: 5px;
  880. padding: 4px 0;
  881. border: 1px solid #e7e7eb;
  882. border-radius: 3px;
  883. -moz-border-radius: 3px;
  884. -webkit-border-radius: 3px;
  885. *background-color: transparent;
  886. *border-color: transparent;
  887. *padding-top: 0;
  888. *padding-bottom: 0
  889. }
  890. .frm_select_box button {
  891. color: #222
  892. }
  893. .frm_select_box:hover {
  894. background-color: #e7e7eb;
  895. background-image: -moz-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  896. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7eb), to(#e7e7eb));
  897. background-image: -webkit-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  898. background-image: -o-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  899. background-image: linear-gradient(to bottom, #e7e7eb 0, #e7e7eb 100%);
  900. border-color: #dadbe0;
  901. box-shadow: none;
  902. -moz-box-shadow: none;
  903. -webkit-box-shadow: none;
  904. color: #222
  905. }
  906. .frm_select_box:hover button {
  907. color: #222
  908. }
  909. .frm_select_label {
  910. *margin-top: -0.2em
  911. }
  912. .frm_select {
  913. position: relative;
  914. z-index: 1;
  915. height: 22px;
  916. padding: 0 30px 0 10px;
  917. line-height: 22px;
  918. background-color: transparent;
  919. border: 0;
  920. outline: 0
  921. }
  922. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  923. .frm_select_box {
  924. padding: 0
  925. }
  926. .frm_select_box:after {
  927. content: " ";
  928. position: absolute;
  929. right: 15px;
  930. top: 50%;
  931. margin-top: -2px;
  932. display: inline-block;
  933. width: 0;
  934. height: 0;
  935. border-width: 4px;
  936. border-style: dashed;
  937. border-color: transparent;
  938. border-bottom-width: 0;
  939. border-top-color: #777;
  940. border-top-style: solid
  941. }
  942. .frm_select {
  943. -webkit-appearance: none;
  944. height: 32px
  945. }
  946. }
  947. .clear_dib_gap {
  948. font-size: 0
  949. }
  950. .dropdown_wrp.frm_input_in_box {
  951. height: 32px;
  952. margin-right: -1px
  953. }
  954. .frm_search_type {
  955. float: left;
  956. line-height: 30px;
  957. border: 1px solid #e7e7eb;
  958. border-right-width: 0;
  959. color: #222;
  960. min-width: 50px;
  961. padding: 0 10px;
  962. background-color: #fff
  963. }
  964. .frm_input_box.search.with_del {
  965. padding-right: 60px
  966. }
  967. .frm_input_box.search .frm_input_append {
  968. right: 0;
  969. width: 30px;
  970. text-align: center
  971. }
  972. .frm_input_box.search .search_gray {
  973. vertical-align: -webkit-baseline-middle;
  974. margin-top: -0.2em
  975. }
  976. .frm_input_box.search .del_btn {
  977. right: 30px
  978. }
  979. .frm_input_box .del_btn {
  980. position: absolute;
  981. right: 0;
  982. width: 30px;
  983. height: 30px;
  984. text-align: center;
  985. font-size: 0
  986. }
  987. .frm_input_box .del_btn i {
  988. vertical-align: -webkit-baseline-middle;
  989. margin-top: -0.2em
  990. }
  991. .frm_input_box .del_btn:hover {
  992. text-decoration: none
  993. }
  994. .frm_input_box.disabled .frm_input, .frm_input_box .frm_input[disabled] {
  995. color: #8d8d8d
  996. }
  997. .frm_input_box.counter_in {
  998. width: 228px;
  999. padding-right: 60px
  1000. }
  1001. .frm_area_code_area {
  1002. display: inline-block;
  1003. border: 1px solid #e7e7eb;
  1004. padding-left: 10px
  1005. }
  1006. .frm_area_code_area.bdrnone {
  1007. border-right: 0
  1008. }
  1009. .frm_area_code_area .ic_area_code {
  1010. vertical-align: middle
  1011. }
  1012. .frm_area_code_area .dropdown_switch {
  1013. border: 0
  1014. }
  1015. .frm_area_code_area .dropdown_switch:hover {
  1016. background: 0
  1017. }
  1018. .frm_area_code_area .frm_input_box {
  1019. border: 0;
  1020. padding-left: 0
  1021. }
  1022. .frm_control {
  1023. margin-bottom: 25px
  1024. }
  1025. .frm_control_group.drop_gap {
  1026. padding-bottom: 0
  1027. }
  1028. .icon_radio, .icon_checkbox {
  1029. margin-right: 3px;
  1030. margin-top: -2px;
  1031. *margin-top: 0
  1032. }
  1033. .icon_radio {
  1034. background: url(images/base_z451259.png) 0 -140px no-repeat;
  1035. width: 16px;
  1036. height: 16px;
  1037. vertical-align: middle;
  1038. display: inline-block
  1039. }
  1040. .icon_radio.selected, .selected .icon_radio {
  1041. background: url(images/base_z451259.png) 0 -160px no-repeat
  1042. }
  1043. .icon_radio.disabled, .disabled .icon_radio {
  1044. background: url(images/base_z451259.png) 0 -180px no-repeat
  1045. }
  1046. .icon_radio.selected.disabled, .selected.disabled .icon_radio {
  1047. background: url(images/base_z451259.png) 0 -200px no-repeat
  1048. }
  1049. .icon_checkbox {
  1050. background: url(images/base_z451259.png) 0 -220px no-repeat;
  1051. width: 16px;
  1052. height: 16px;
  1053. vertical-align: middle;
  1054. display: inline-block
  1055. }
  1056. .icon_checkbox.selected, .selected .icon_checkbox {
  1057. background: url(images/base_z451259.png) 0 -240px no-repeat
  1058. }
  1059. .icon_checkbox.disabled, .disabled .icon_checkbox {
  1060. background: url(images/base_z451259.png) 0 -260px no-repeat
  1061. }
  1062. .icon_checkbox.selected.disabled, .selected.disabled .icon_checkbox {
  1063. background: url(images/base_z451259.png) 0 -280px no-repeat
  1064. }
  1065. .icon_search_del {
  1066. cursor: pointer;
  1067. background: url(images/base_z451259.png) 0 -300px no-repeat;
  1068. width: 14px;
  1069. height: 14px;
  1070. vertical-align: middle;
  1071. display: inline-block
  1072. }
  1073. .icon_search_del:hover {
  1074. background: url(images/base_z451259.png) 0 -318px no-repeat
  1075. }
  1076. .frm_legend.default {
  1077. margin-bottom: 20px;
  1078. border-bottom: 1px solid #e7e7eb
  1079. }
  1080. .form_mod_title {
  1081. margin-bottom: 10px;
  1082. padding-bottom: 5px;
  1083. margin-top: 40px;
  1084. font-size: 14px;
  1085. font-weight: 400;
  1086. border-bottom: 1px solid #e7e7eb
  1087. }
  1088. .frm_msg i {
  1089. float: none;
  1090. margin-right: 0
  1091. }
  1092. .tab_navs {
  1093. *zoom: 1;
  1094. text-align: center;
  1095. line-height: 30px;
  1096. border-bottom: 1px solid #e7e7eb;
  1097. box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  1098. -moz-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  1099. -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5)
  1100. }
  1101. .tab_navs:after {
  1102. content: "\200B";
  1103. display: block;
  1104. height: 0;
  1105. clear: both
  1106. }
  1107. .tab_nav {
  1108. float: left;
  1109. font-size: 14px
  1110. }
  1111. .tab_nav a {
  1112. display: block;
  1113. *height: 1%;
  1114. text-decoration: none;
  1115. color: #222;
  1116. outline: 0;
  1117. padding: 0 20px
  1118. }
  1119. .tab_nav.selected {
  1120. background-color: #d4d5d5
  1121. }
  1122. .mt .tab_nav a {
  1123. border-right: 1px solid #e7e7eb
  1124. }
  1125. .mt .tab_nav.selected {
  1126. border-top: 3px solid #757474;
  1127. position: relative;
  1128. top: -1px
  1129. }
  1130. .mt .tab_nav.selected a {
  1131. position: relative;
  1132. background-color: #d4d5d5;
  1133. line-height: 29px;
  1134. margin-bottom: -2px
  1135. }
  1136. .mt .tab_nav.no_extra a {
  1137. border-right-width: 0
  1138. }
  1139. .title_tab .tab_navs {
  1140. line-height: 40px;
  1141. border-bottom-color: #e7e7eb;
  1142. box-shadow: none;
  1143. -moz-box-shadow: none;
  1144. -webkit-box-shadow: none
  1145. }
  1146. .title_tab .tab_nav {
  1147. margin-bottom: -1px
  1148. }
  1149. .title_tab .tab_nav a {
  1150. padding: 0 18px
  1151. }
  1152. .title_tab .tab_nav.first a, .title_tab .tab_nav:first-child a {
  1153. padding-left: 30px
  1154. }
  1155. .title_tab .tab_nav:hover {
  1156. border-bottom: 3px solid #a0a3ab
  1157. }
  1158. .title_tab .tab_nav.selected {
  1159. background: 0;
  1160. border-bottom: 3px solid #44b549
  1161. }
  1162. .tips_box {
  1163. padding: 6px 15px;
  1164. background-color: #e0eaf6;
  1165. border: 0;
  1166. color: #222;
  1167. border-radius: 0;
  1168. -moz-border-radius: 0;
  1169. -webkit-border-radius: 0
  1170. }
  1171. .tips_box .em {
  1172. color: #e15f63
  1173. }
  1174. .tips_box_primary {
  1175. padding: 6px 15px;
  1176. background-color: #f1f1f1;
  1177. border: 1px solid #d1d1d1;
  1178. color: #666;
  1179. border-radius: 3px;
  1180. -moz-border-radius: 3px;
  1181. -webkit-border-radius: 3px
  1182. }
  1183. .tips_box_primary .em {
  1184. color: #e15f63
  1185. }
  1186. .disabled_box {
  1187. padding: .4em .8em;
  1188. font-size: 14px;
  1189. border: 1px solid #e7e7eb;
  1190. box-shadow: none;
  1191. -moz-box-shadow: none;
  1192. -webkit-box-shadow: none;
  1193. border-radius: 0;
  1194. -moz-border-radius: 0;
  1195. -webkit-border-radius: 0;
  1196. background-color: #f4f5f9
  1197. }
  1198. .notices_box {
  1199. line-height: 40px;
  1200. border-radius: 0;
  1201. -moz-border-radius: 0;
  1202. -webkit-border-radius: 0;
  1203. background-color: #fff;
  1204. border: 1px solid #e7e7eb
  1205. }
  1206. .msg_box {
  1207. line-height: 36px;
  1208. text-align: center
  1209. }
  1210. .msg_box .inner {
  1211. background-color: #c8e7fc
  1212. }
  1213. .msg_box a {
  1214. display: block;
  1215. color: #6d7f8b
  1216. }
  1217. .global_link_opr {
  1218. margin-left: 1em
  1219. }
  1220. .global_link_opr:first-child {
  1221. margin-left: 0
  1222. }
  1223. .empty_tips.empty_tips {
  1224. padding: 100px 0;
  1225. text-align: center;
  1226. font-size: 14px;
  1227. color: #8d8d8d
  1228. }
  1229. .empty_item .empty_tips.empty_tips {
  1230. padding: 100px 0;
  1231. text-align: center;
  1232. font-size: 14px;
  1233. color: #8d8d8d
  1234. }
  1235. .mini_tips i {
  1236. font-weight: 400;
  1237. font-style: normal;
  1238. margin-top: -3px;
  1239. margin-right: 3px;
  1240. *margin-top: 0
  1241. }
  1242. .mini_tips .icon_mini_tips {
  1243. *margin-top: 2px
  1244. }
  1245. .mini_tips.weak_text {
  1246. color: #8d8d8d
  1247. }
  1248. .mini_tips.warn {
  1249. color: #e15f63
  1250. }
  1251. .mini_tips.success {
  1252. color: #7fba4f
  1253. }
  1254. .mini_tips.icon_after i {
  1255. margin-right: 0;
  1256. margin-left: 3px
  1257. }
  1258. .article_box.inset {
  1259. border: 1px solid #e7e7eb;
  1260. background-color: #f4f5f9;
  1261. border-radius: 0;
  1262. -moz-border-radius: 0;
  1263. -webkit-border-radius: 0;
  1264. box-shadow: none;
  1265. -moz-box-shadow: none;
  1266. -webkit-box-shadow: none;
  1267. height: 500px;
  1268. overflow-y: auto
  1269. }
  1270. .article_box.inset .inner {
  1271. padding-left: 50px;
  1272. padding-right: 50px
  1273. }
  1274. .article_box .inner {
  1275. padding: 90px 75px
  1276. }
  1277. .article_box h3 {
  1278. text-align: center;
  1279. font-size: 22px;
  1280. padding-bottom: 14px
  1281. }
  1282. .article_box h4 {
  1283. padding-bottom: 14px;
  1284. font-weight: 700;
  1285. font-size: 16px
  1286. }
  1287. .article_box h5 {
  1288. padding-bottom: 14px;
  1289. font-weight: 700;
  1290. font-size: 16px
  1291. }
  1292. .article_box h6 {
  1293. padding-bottom: 14px;
  1294. font-weight: 700;
  1295. font-size: 14px
  1296. }
  1297. .article_box ul.disc {
  1298. padding-left: 20px;
  1299. list-style-type: disc
  1300. }
  1301. .article_box dl, .article_box li, .article_box p {
  1302. padding-bottom: 14px;
  1303. font-size: 14px
  1304. }
  1305. .article_box pre {
  1306. white-space: pre-wrap
  1307. }
  1308. .article_box strong {
  1309. font-weight: 400;
  1310. font-style: normal
  1311. }
  1312. .article_box .media {
  1313. text-align: center;
  1314. padding-bottom: 28px
  1315. }
  1316. .article_box .img_wrp {
  1317. display: inline-block;
  1318. max-width: 750px
  1319. }
  1320. .article_box .img_wrp img {
  1321. width: 100%;
  1322. *width: auto;
  1323. *max-width: 100%;
  1324. vertical-align: top
  1325. }
  1326. .article_box .img_wrp .mobile_width {
  1327. width: 175px
  1328. }
  1329. .article_box .sign, .article_box .company_sign {
  1330. padding-top: 4em;
  1331. text-align: right
  1332. }
  1333. .article_box .sign.strong, .article_box .company_sign.strong {
  1334. font-weight: 700;
  1335. font-size: 16px
  1336. }
  1337. .article_box .no_extra {
  1338. padding-bottom: 0
  1339. }
  1340. .text_box h4 {
  1341. font-size: 16px;
  1342. font-weight: 400;
  1343. font-style: normal;
  1344. margin-bottom: 10px
  1345. }
  1346. .text_box .spacing {
  1347. margin-top: 10px
  1348. }
  1349. .mod_hd, .mod_ft {
  1350. *zoom: 1
  1351. }
  1352. .mod_hd:after, .mod_ft:after {
  1353. content: "\200B";
  1354. display: block;
  1355. height: 0;
  1356. clear: both
  1357. }
  1358. .mod_info {
  1359. float: left
  1360. }
  1361. .mod_opr {
  1362. text-align: right
  1363. }
  1364. .mod_opr .btn {
  1365. margin-top: -0.2em
  1366. }
  1367. .global_mod .global_extra {
  1368. text-align: right
  1369. }
  1370. .global_mod.mt_layout {
  1371. line-height: 40px
  1372. }
  1373. .global_mod.mt_layout .global_extra {
  1374. margin-top: -40px
  1375. }
  1376. .global_mod.float_layout {
  1377. *zoom: 1
  1378. }
  1379. .global_mod.float_layout:after {
  1380. content: "\200B";
  1381. display: block;
  1382. height: 0;
  1383. clear: both
  1384. }
  1385. .global_mod.float_layout .global_info {
  1386. float: left
  1387. }
  1388. .global_mod.gap_top .gap_top_item {
  1389. margin-top: 5px
  1390. }
  1391. .global_mod.with_default_gap {
  1392. padding: 9px 20px
  1393. }
  1394. .global_mod.with_border {
  1395. border-bottom: 1px solid #e7e7eb
  1396. }
  1397. .vm_box {
  1398. display: inline-block;
  1399. height: 100%;
  1400. vertical-align: middle
  1401. }
  1402. .mod_default_box {
  1403. background-color: #fff;
  1404. border-radius: 4px;
  1405. box-shadow: 0 1px 2px rgba(150, 150, 150, 0.3);
  1406. padding: 20px 30px 30px
  1407. }
  1408. .mod_default_box.only_table {
  1409. padding-top: 30px
  1410. }
  1411. .mod_default_hd {
  1412. position: relative;
  1413. margin-bottom: 30px
  1414. }
  1415. .mod_default_hd h4 {
  1416. font-weight: 400;
  1417. font-size: 20px;
  1418. margin-bottom: 15px;
  1419. display: inline-block;
  1420. margin-right: 20px;
  1421. margin-bottom: 0;
  1422. padding: 0
  1423. }
  1424. .mod_default_hd .mod_hd_extra {
  1425. position: absolute;
  1426. top: 0;
  1427. right: 0;
  1428. line-height: 32px
  1429. }
  1430. .mod_default_hd .mod_hd_desc {
  1431. display: inline-block
  1432. }
  1433. .mod_default_hd .desc {
  1434. display: inline-block;
  1435. color: #8d8d8d
  1436. }
  1437. .gap_veritcal_global {
  1438. margin-bottom: 20px
  1439. }
  1440. .mini_tip i {
  1441. margin-right: 5px
  1442. }
  1443. .msg_box {
  1444. display: none
  1445. }
  1446. .tips_box_tl {
  1447. padding: 6px 15px;
  1448. background-color: #e0eaf6;
  1449. text-align: left
  1450. }
  1451. .article_box h3 {
  1452. padding-bottom: 1em;
  1453. font-size: 18px;
  1454. font-weight: 400;
  1455. font-style: normal
  1456. }
  1457. .article_box h4, .article_box h5, .article_box h6 {
  1458. font-weight: 400;
  1459. font-style: normal;
  1460. font-size: 14px
  1461. }
  1462. .news_box.inset {
  1463. border: 1px solid #e7e7eb;
  1464. word-wrap: break-word;
  1465. word-break: break-all;
  1466. height: 500px;
  1467. overflow-y: auto
  1468. }
  1469. .news_box.inset .inner {
  1470. padding-left: 50px;
  1471. padding-right: 50px
  1472. }
  1473. .news_box.inset.in_dialog {
  1474. height: 300px
  1475. }
  1476. .news_box.inset.in_dialog .inner {
  1477. padding: 30px 40px
  1478. }
  1479. .news_box.inset.in_dialog p {
  1480. padding-bottom: .5em
  1481. }
  1482. .news_box .inner {
  1483. padding: 90px 75px
  1484. }
  1485. .news_box pre {
  1486. white-space: pre-wrap
  1487. }
  1488. .news_box h3 {
  1489. padding-bottom: 1em;
  1490. text-align: center;
  1491. font-size: 18px;
  1492. font-weight: 400;
  1493. font-style: normal
  1494. }
  1495. .news_box h4, .news_box h5, .news_box h6 {
  1496. padding-bottom: 1em;
  1497. font-weight: 400;
  1498. font-style: normal;
  1499. font-size: 14px
  1500. }
  1501. .news_box p, .news_box .table_wrp {
  1502. padding-bottom: 1em;
  1503. font-size: 14px
  1504. }
  1505. .news_box ol, .news_box ul {
  1506. padding-bottom: 14px
  1507. }
  1508. .news_box li p {
  1509. padding-bottom: 0
  1510. }
  1511. .news_box strong {
  1512. font-weight: 400;
  1513. font-style: normal
  1514. }
  1515. .news_box .em_text {
  1516. font-weight: 700
  1517. }
  1518. .news_box .warn_text {
  1519. color: #e15f63
  1520. }
  1521. .news_box img {
  1522. max-width: 100%
  1523. }
  1524. .news_box .media {
  1525. text-align: center;
  1526. padding-bottom: 2em
  1527. }
  1528. .news_box .img_wrp {
  1529. display: inline-block;
  1530. max-width: 750px
  1531. }
  1532. .news_box .img_wrp img {
  1533. width: 100%;
  1534. *width: auto;
  1535. *max-width: 100%;
  1536. vertical-align: top
  1537. }
  1538. .news_box .img_wrp .mobile_width {
  1539. width: 175px
  1540. }
  1541. .news_box .sign, .news_box .company_sign {
  1542. padding-top: 4em;
  1543. text-align: right
  1544. }
  1545. .news_box .sign.strong, .news_box .company_sign.strong {
  1546. font-weight: 700;
  1547. font-size: 16px
  1548. }
  1549. .news_box .no_extra {
  1550. padding-bottom: 0
  1551. }
  1552. .announcement_box .announcement_inner {
  1553. padding: 90px 75px
  1554. }
  1555. .news_box .announcement_box .announcement_inner {
  1556. padding: 0
  1557. }
  1558. .announcement_box .announcement_title {
  1559. padding-bottom: 42px;
  1560. text-align: center;
  1561. font-size: 18px
  1562. }
  1563. .announcement_box .announcement_content * {
  1564. max-width: 100%;
  1565. box-sizing: border-box;
  1566. -moz-box-sizing: border-box;
  1567. -webkit-box-sizing: border-box
  1568. }
  1569. .announcement_box .announcement_sign, .announcement_box .announcement_company_sign {
  1570. padding-top: 28px;
  1571. text-align: right
  1572. }
  1573. .announcement_box h1, .announcement_box h2, .announcement_box h3, .announcement_box h4, .announcement_box h5, .announcement_box h6 {
  1574. font-weight: 400;
  1575. font-size: 14px
  1576. }
  1577. .announcement_box pre {
  1578. white-space: pre-wrap
  1579. }
  1580. .announcement_box .gap {
  1581. padding-bottom: 1em
  1582. }
  1583. .announcement_box .no_gap {
  1584. padding-bottom: 0
  1585. }
  1586. .announcement_box strong, .announcement_box .strong {
  1587. font-weight: 700
  1588. }
  1589. .announcement_box .normal {
  1590. font-weight: 400
  1591. }
  1592. .announcement_box h3, .announcement_box h4, .announcement_box h5, .announcement_box h6, .announcement_box .table_wrp, .announcement_box ol, .announcement_box ul, .announcement_box p {
  1593. padding-bottom: 0
  1594. }
  1595. .announcement_box h3 {
  1596. text-align: left
  1597. }
  1598. .global_box {
  1599. background-color: #f4f5f9;
  1600. border: 1px solid #e7e7eb
  1601. }
  1602. .default_box .default_box_inner {
  1603. padding: 20px;
  1604. border: 1px solid #e7e7eb
  1605. }
  1606. .default_box .default_box_arrow_wrp, .default_box .default_box_arrow {
  1607. position: absolute
  1608. }
  1609. .default_box.with_arrow {
  1610. position: relative
  1611. }
  1612. .default_box.to_top {
  1613. padding-top: 7px
  1614. }
  1615. .default_box.to_top .default_box_arrow_wrp {
  1616. top: 0;
  1617. left: 20px
  1618. }
  1619. .default_box.to_top .default_box_arrow {
  1620. display: inline-block;
  1621. width: 0;
  1622. height: 0;
  1623. border-width: 7px;
  1624. border-style: dashed;
  1625. border-color: transparent;
  1626. border-top-width: 0;
  1627. border-bottom-color: #e7e7eb;
  1628. border-bottom-style: solid
  1629. }
  1630. .default_box.to_top .default_box_arrow_out {
  1631. top: 0
  1632. }
  1633. .default_box.to_top .default_box_arrow_in {
  1634. top: 1px;
  1635. border-bottom-color: #fff
  1636. }
  1637. .split_tips_global {
  1638. margin-left: .5em;
  1639. border-left: 1px solid #8d8d8d;
  1640. padding-left: .5em;
  1641. display: inline-block;
  1642. line-height: 1em
  1643. }
  1644. .radius_tag {
  1645. display: inline-block;
  1646. vertical-align: middle;
  1647. padding: 1px .7em;
  1648. font-size: 14px;
  1649. line-height: 1.3;
  1650. color: #8d8d8d;
  1651. border: 1px solid #9e9e9e;
  1652. background-color: #fff;
  1653. overflow: hidden;
  1654. border-top-left-radius: 10px 50%;
  1655. -moz-border-radius-topleft: 10px 50%;
  1656. -webkit-border-top-left-radius: 10px 50%;
  1657. border-top-right-radius: 10px 50%;
  1658. -moz-border-radius-topright: 10px 50%;
  1659. -webkit-border-top-right-radius: 10px 50%;
  1660. border-bottom-left-radius: 10px 50%;
  1661. -moz-border-radius-bottomleft: 10px 50%;
  1662. -webkit-border-bottom-left-radius: 10px 50%;
  1663. border-bottom-right-radius: 10px 50%;
  1664. -moz-border-radius-bottomright: 10px 50%;
  1665. -webkit-border-bottom-right-radius: 10px 50%
  1666. }
  1667. .highlight_box {
  1668. position: relative;
  1669. padding: 9px 30px;
  1670. background-color: #f4f5f9;
  1671. margin-bottom: 20px;
  1672. line-height: 1.6;
  1673. *zoom: 1
  1674. }
  1675. .highlight_box .opr {
  1676. float: right;
  1677. padding: 7px 0 0 2em
  1678. }
  1679. .highlight_box .opr.opr_desc {
  1680. padding-top: 0;
  1681. color: #8d8d8d
  1682. }
  1683. .highlight_box .links {
  1684. margin-left: -14px;
  1685. font-size: 0;
  1686. padding: 3px 0
  1687. }
  1688. .highlight_box .links .links_item {
  1689. vertical-align: middle;
  1690. margin-top: -0.2em;
  1691. font-size: 14px;
  1692. border-left-color: #d9dadc
  1693. }
  1694. .highlight_box .links .links_item:hover a {
  1695. color: #222
  1696. }
  1697. .highlight_box .links .selected a {
  1698. color: #222
  1699. }
  1700. .highlight_box .title {
  1701. font-weight: 400;
  1702. font-style: normal
  1703. }
  1704. .highlight_box .title .icon_common.new {
  1705. height: 14px;
  1706. margin-top: 0
  1707. }
  1708. .highlight_box .desc {
  1709. color: #8d8d8d;
  1710. overflow: hidden
  1711. }
  1712. .highlight_box.border {
  1713. border-top: 1px solid #e7e7eb
  1714. }
  1715. .highlight_box.icon_wrap {
  1716. padding-top: 14px;
  1717. padding-bottom: 14px;
  1718. overflow: hidden;
  1719. *zoom: 1
  1720. }
  1721. .highlight_box.icon_wrap .icon {
  1722. float: left;
  1723. margin-right: 15px
  1724. }
  1725. .highlight_box.icon_wrap .icon.lock {
  1726. background: url(images/base_z451259.png) 0 -336px no-repeat;
  1727. width: 48px;
  1728. height: 48px;
  1729. vertical-align: middle;
  1730. display: inline-block
  1731. }
  1732. .highlight_box.icon_wrap .icon.unlock {
  1733. background: url(images/base_z451259.png) 0 -388px no-repeat;
  1734. width: 48px;
  1735. height: 48px;
  1736. vertical-align: middle;
  1737. display: inline-block
  1738. }
  1739. .highlight_box.icon_wrap .icon_profile {
  1740. width: 48px;
  1741. height: 48px
  1742. }
  1743. .highlight_box.icon_wrap .icon_msg_small {
  1744. margin-top: 5px
  1745. }
  1746. .highlight_box.icon_wrap .title, .highlight_box.icon_wrap .desc {
  1747. overflow: hidden;
  1748. *zoom: 1
  1749. }
  1750. .highlight_box.icon_small .icon {
  1751. margin-left: -10px;
  1752. margin-right: 0
  1753. }
  1754. .highlight_box.single_line .title, .highlight_box.single_line .desc {
  1755. padding-top: 14px
  1756. }
  1757. .highlight_box.page_global_tips {
  1758. margin: -12px 30px 20px
  1759. }
  1760. .highlight_box.global {
  1761. margin: 0 30px 40px;
  1762. border-top-width: 0
  1763. }
  1764. .weui-desktop-layout__main__hd .highlight_box {
  1765. background: transparent;
  1766. padding-left: 0;
  1767. padding-top: 12px;
  1768. padding-bottom: 12px
  1769. }
  1770. .tool_bar {
  1771. *zoom: 1;
  1772. margin-top: 40px;
  1773. padding-top: 20px
  1774. }
  1775. .tool_bar:after {
  1776. content: "\200B";
  1777. display: block;
  1778. height: 0;
  1779. clear: both
  1780. }
  1781. .tool_bar .btn {
  1782. margin-right: 1em
  1783. }
  1784. .tool_bar.with_form {
  1785. margin-top: 15px
  1786. }
  1787. .tool_bar.border {
  1788. border-top: 1px solid #e7e7eb;
  1789. box-shadow: none;
  1790. -moz-box-shadow: none;
  1791. -webkit-box-shadow: none
  1792. }
  1793. .tool_bar.tc .btn {
  1794. margin-left: .5em;
  1795. margin-right: .5em
  1796. }
  1797. .tool_bar.tr .btn {
  1798. margin-left: 1em;
  1799. margin-right: 0
  1800. }
  1801. .tool_area {
  1802. *zoom: 1
  1803. }
  1804. .tool_area:after {
  1805. content: "\200B";
  1806. display: block;
  1807. height: 0;
  1808. clear: both
  1809. }
  1810. .title_bar {
  1811. *zoom: 1
  1812. }
  1813. .title_bar:after {
  1814. content: "\200B";
  1815. display: block;
  1816. height: 0;
  1817. clear: both
  1818. }
  1819. .title_bar .info {
  1820. float: left
  1821. }
  1822. .title_bar .opr {
  1823. float: right
  1824. }
  1825. .parent_title_bar {
  1826. *zoom: 1;
  1827. line-height: 35px;
  1828. border-bottom: 2px solid #e7e7eb
  1829. }
  1830. .parent_title_bar:after {
  1831. content: "\200B";
  1832. display: block;
  1833. height: 0;
  1834. clear: both
  1835. }
  1836. .parent_title_bar h3 {
  1837. font-size: 16px;
  1838. font-weight: 400;
  1839. font-style: normal
  1840. }
  1841. .sub_title_bar {
  1842. *zoom: 1;
  1843. line-height: 38px;
  1844. padding: 0 20px
  1845. }
  1846. .sub_title_bar:after {
  1847. content: "\200B";
  1848. display: block;
  1849. height: 0;
  1850. clear: both
  1851. }
  1852. .sub_title_bar .info {
  1853. float: left
  1854. }
  1855. .sub_title_bar .opr {
  1856. float: right
  1857. }
  1858. .sub_title_bar h3 {
  1859. font-weight: 400;
  1860. font-style: normal;
  1861. font-size: 14px
  1862. }
  1863. .sub_title_bar h4 {
  1864. float: left;
  1865. font-weight: 400;
  1866. font-style: normal;
  1867. font-size: 14px
  1868. }
  1869. .tool_bar {
  1870. padding-bottom: 50px;
  1871. padding-top: 20px
  1872. }
  1873. .tool_bar.simple_gap {
  1874. margin-left: 20px;
  1875. margin-bottom: 20px
  1876. }
  1877. .title_bar {
  1878. padding: 0 20px;
  1879. background-color: #f4f5f9;
  1880. border-bottom: 1px solid #e7e7eb;
  1881. line-height: 40px
  1882. }
  1883. .title_bar h3 {
  1884. font-size: 14px;
  1885. font-weight: 400;
  1886. font-style: normal
  1887. }
  1888. .global_title_bar {
  1889. *zoom: 1;
  1890. background-color: #f4f5f9;
  1891. font-size: 16px;
  1892. border-bottom: 1px solid #e7e7eb
  1893. }
  1894. .global_title_bar:after {
  1895. content: "\200B";
  1896. display: block;
  1897. height: 0;
  1898. clear: both
  1899. }
  1900. .global_title_bar .info {
  1901. float: left
  1902. }
  1903. .global_title_bar .opr {
  1904. float: right
  1905. }
  1906. .parent_title_bar {
  1907. border-width: 1px
  1908. }
  1909. .sub_title_bar {
  1910. padding: 0 30px;
  1911. line-height: 55px
  1912. }
  1913. .sub_title_bar.default {
  1914. background-color: #f4f5f9;
  1915. border-bottom: 1px solid #e7e7eb
  1916. }
  1917. .sub_title_bar.light {
  1918. background-color: #f4f5f9;
  1919. border-bottom: 1px solid #e7e7eb
  1920. }
  1921. .sub_title_bar.in_dialog {
  1922. background-color: #fff;
  1923. padding: 0 20px;
  1924. border-bottom: 1px solid #e7e7eb
  1925. }
  1926. .sub_title_bar.dark {
  1927. background-color: #dfdfdf;
  1928. background-image: -moz-linear-gradient(top, #dfdfdf 0, #dfdfdf 100%);
  1929. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dfdfdf), to(#dfdfdf));
  1930. background-image: -webkit-linear-gradient(top, #dfdfdf 0, #dfdfdf 100%);
  1931. background-image: -o-linear-gradient(top, #dfdfdf 0, #dfdfdf 100%);
  1932. background-image: linear-gradient(to bottom, #dfdfdf 0, #dfdfdf 100%);
  1933. border-bottom: 1px solid #bebebe;
  1934. box-shadow: inset 0 1px 0 0 #ebebeb, 0 1px 2px #ddd;
  1935. -moz-box-shadow: inset 0 1px 0 0 #ebebeb, 0 1px 2px #ddd;
  1936. -webkit-box-shadow: inset 0 1px 0 0 #ebebeb, 0 1px 2px #ddd
  1937. }
  1938. .sub_title_bar.global {
  1939. padding: 0;
  1940. font-size: 16px
  1941. }
  1942. .sub_title_bar.no_extra {
  1943. background: 0;
  1944. border-bottom-width: 0;
  1945. line-height: normal;
  1946. padding: 0
  1947. }
  1948. .tool_area {
  1949. padding: 0 30px
  1950. }
  1951. button.btn {
  1952. height: 32px;
  1953. line-height: 28px
  1954. }
  1955. .btn button {
  1956. display: block;
  1957. height: 100%;
  1958. background-color: transparent;
  1959. border: 0;
  1960. outline: 0;
  1961. overflow: visible;
  1962. padding: 0 22px
  1963. }
  1964. .btn.btn_input {
  1965. padding: 0
  1966. }
  1967. .btn.btn_input.btn_vcode {
  1968. margin-left: 5px
  1969. }
  1970. .btn.btn_input.btn_vcode button {
  1971. width: 110px;
  1972. padding: 0
  1973. }
  1974. .btn.btn_vcode {
  1975. padding: 0;
  1976. width: 110px;
  1977. margin-left: 5px
  1978. }
  1979. .btn {
  1980. display: inline-block;
  1981. overflow: visible;
  1982. padding: 0 22px;
  1983. height: 30px;
  1984. line-height: 30px;
  1985. *line-height: 28px;
  1986. vertical-align: middle;
  1987. text-align: center;
  1988. text-decoration: none;
  1989. border-radius: 3px;
  1990. -moz-border-radius: 3px;
  1991. -webkit-border-radius: 3px;
  1992. font-size: 14px;
  1993. border-width: 1px;
  1994. border-style: solid;
  1995. cursor: pointer
  1996. }
  1997. .btn:hover {
  1998. text-decoration: none
  1999. }
  2000. .btn.btn_mini {
  2001. height: 21px;
  2002. line-height: 21px;
  2003. *line-height: 19px;
  2004. padding: 0 10px
  2005. }
  2006. .btn.btn_small {
  2007. height: 25px;
  2008. line-height: 25px;
  2009. *line-height: 23px;
  2010. padding: 0 12px
  2011. }
  2012. .btn.btn_large {
  2013. height: 38px;
  2014. line-height: 38px;
  2015. *line-height: 36px;
  2016. padding: 0 70px
  2017. }
  2018. .btn.btn_p20 {
  2019. padding: 0 20px
  2020. }
  2021. .btn.btn_p30 {
  2022. padding: 0 30px
  2023. }
  2024. .btn.btn_w125 {
  2025. width: 125px;
  2026. padding: 0
  2027. }
  2028. .btn.btn_w150 {
  2029. width: 150px;
  2030. padding: 0
  2031. }
  2032. .btn.btn_w220 {
  2033. width: 220px;
  2034. padding: 0
  2035. }
  2036. .btn_default {
  2037. background-color: #fff;
  2038. background-image: -moz-linear-gradient(top, #fff 0, #fff 100%);
  2039. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#fff));
  2040. background-image: -webkit-linear-gradient(top, #fff 0, #fff 100%);
  2041. background-image: -o-linear-gradient(top, #fff 0, #fff 100%);
  2042. background-image: linear-gradient(to bottom, #fff 0, #fff 100%);
  2043. border-color: #e7e7eb;
  2044. color: #222
  2045. }
  2046. .btn_default button {
  2047. color: #222
  2048. }
  2049. .btn_default:hover {
  2050. background-color: #e7e7eb;
  2051. background-image: -moz-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2052. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7eb), to(#e7e7eb));
  2053. background-image: -webkit-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2054. background-image: -o-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2055. background-image: linear-gradient(to bottom, #e7e7eb 0, #e7e7eb 100%);
  2056. border-color: #dadbe0;
  2057. box-shadow: none;
  2058. -moz-box-shadow: none;
  2059. -webkit-box-shadow: none;
  2060. color: #222
  2061. }
  2062. .btn_default:hover button {
  2063. color: #222
  2064. }
  2065. .btn_warn {
  2066. background-color: #f24d4d;
  2067. background-image: -moz-linear-gradient(top, #f24d4d 0, #f24d4d 100%);
  2068. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f24d4d), to(#f24d4d));
  2069. background-image: -webkit-linear-gradient(top, #f24d4d 0, #f24d4d 100%);
  2070. background-image: -o-linear-gradient(top, #f24d4d 0, #f24d4d 100%);
  2071. background-image: linear-gradient(to bottom, #f24d4d 0, #f24d4d 100%);
  2072. border-color: #f24d4d;
  2073. color: #fff
  2074. }
  2075. .btn_warn button {
  2076. color: #fff
  2077. }
  2078. .btn_warn:hover {
  2079. background-color: #d43d3d;
  2080. background-image: -moz-linear-gradient(top, #d43d3d 0, #d43d3d 100%);
  2081. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#d43d3d), to(#d43d3d));
  2082. background-image: -webkit-linear-gradient(top, #d43d3d 0, #d43d3d 100%);
  2083. background-image: -o-linear-gradient(top, #d43d3d 0, #d43d3d 100%);
  2084. background-image: linear-gradient(to bottom, #d43d3d 0, #d43d3d 100%);
  2085. border-color: #d43d3d;
  2086. box-shadow: none;
  2087. -moz-box-shadow: none;
  2088. -webkit-box-shadow: none;
  2089. color: #fff
  2090. }
  2091. .btn_warn:hover button {
  2092. color: #fff
  2093. }
  2094. .btn_primary {
  2095. background-color: #44b549;
  2096. background-image: -moz-linear-gradient(top, #44b549 0, #44b549 100%);
  2097. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#44b549), to(#44b549));
  2098. background-image: -webkit-linear-gradient(top, #44b549 0, #44b549 100%);
  2099. background-image: -o-linear-gradient(top, #44b549 0, #44b549 100%);
  2100. background-image: linear-gradient(to bottom, #44b549 0, #44b549 100%);
  2101. border-color: #44b549;
  2102. color: #fff
  2103. }
  2104. .btn_primary button {
  2105. color: #fff
  2106. }
  2107. .btn_primary:hover {
  2108. background-color: #2f9833;
  2109. background-image: -moz-linear-gradient(top, #2f9833 0, #2f9833 100%);
  2110. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2f9833), to(#2f9833));
  2111. background-image: -webkit-linear-gradient(top, #2f9833 0, #2f9833 100%);
  2112. background-image: -o-linear-gradient(top, #2f9833 0, #2f9833 100%);
  2113. background-image: linear-gradient(to bottom, #2f9833 0, #2f9833 100%);
  2114. border-color: #2f9833;
  2115. box-shadow: none;
  2116. -moz-box-shadow: none;
  2117. -webkit-box-shadow: none;
  2118. color: #fff
  2119. }
  2120. .btn_primary:hover button {
  2121. color: #fff
  2122. }
  2123. .btn_disabled {
  2124. background-color: #e7e7eb;
  2125. background-image: -moz-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2126. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7eb), to(#e7e7eb));
  2127. background-image: -webkit-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2128. background-image: -o-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2129. background-image: linear-gradient(to bottom, #e7e7eb 0, #e7e7eb 100%);
  2130. border-color: #dadbe0;
  2131. color: #a5a6aa;
  2132. cursor: default
  2133. }
  2134. .btn_disabled button {
  2135. color: #a5a6aa;
  2136. cursor: default
  2137. }
  2138. .btn_disabled:hover {
  2139. background-color: #e7e7eb;
  2140. background-image: -moz-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2141. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7eb), to(#e7e7eb));
  2142. background-image: -webkit-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2143. background-image: -o-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2144. background-image: linear-gradient(to bottom, #e7e7eb 0, #e7e7eb 100%);
  2145. box-shadow: none;
  2146. -moz-box-shadow: none;
  2147. -webkit-box-shadow: none;
  2148. border-color: #dadbe0;
  2149. color: #a5a6aa
  2150. }
  2151. .btn_disabled:hover button {
  2152. color: #a5a6aa;
  2153. cursor: default
  2154. }
  2155. .btn_loading {
  2156. background-color: #e7e7eb;
  2157. background-image: -moz-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2158. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7eb), to(#e7e7eb));
  2159. background-image: -webkit-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2160. background-image: -o-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2161. background-image: linear-gradient(to bottom, #e7e7eb 0, #e7e7eb 100%);
  2162. border-color: #dadbe0;
  2163. color: #a5a6aa;
  2164. cursor: default;
  2165. position: relative
  2166. }
  2167. .btn_loading button {
  2168. color: #a5a6aa;
  2169. cursor: default
  2170. }
  2171. .btn_loading:hover {
  2172. background-color: #e7e7eb;
  2173. background-image: -moz-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2174. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7eb), to(#e7e7eb));
  2175. background-image: -webkit-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2176. background-image: -o-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2177. background-image: linear-gradient(to bottom, #e7e7eb 0, #e7e7eb 100%);
  2178. box-shadow: none;
  2179. -moz-box-shadow: none;
  2180. -webkit-box-shadow: none;
  2181. border-color: #dadbe0;
  2182. color: #a5a6aa
  2183. }
  2184. .btn_loading:hover button {
  2185. color: #a5a6aa;
  2186. cursor: default
  2187. }
  2188. .btn_loading button {
  2189. position: relative
  2190. }
  2191. .btn_loading i {
  2192. position: absolute;
  2193. top: 50%;
  2194. left: 4px;
  2195. margin-top: -8px;
  2196. background: transparent url(/mpres/htmledition/common/images/icon/common/icon16_loading_light3a7b38.gif) no-repeat 0 0;
  2197. width: 16px;
  2198. height: 16px;
  2199. vertical-align: middle;
  2200. display: inline-block
  2201. }
  2202. .btn {
  2203. min-width: 60px
  2204. }
  2205. .btn.btn_input {
  2206. min-width: 104px
  2207. }
  2208. .btn.btn_input button {
  2209. width: 100%
  2210. }
  2211. .btn.btn_add i {
  2212. margin-right: 5px;
  2213. margin-top: -2px;
  2214. *margin-top: 2px
  2215. }
  2216. .btn.btn_add .add_gray:hover {
  2217. background: url(images/base_z451259.png) 0 -440px no-repeat
  2218. }
  2219. .btn.btn_disabled .add_white {
  2220. background: url(images/base_z451259.png) 0 -458px no-repeat
  2221. }
  2222. .btn.btn_small {
  2223. min-width: 0
  2224. }
  2225. .btn_loading i {
  2226. width: 18px;
  2227. height: 18px
  2228. }
  2229. .btn_loading.btn_primary {
  2230. background-color: #2f9833;
  2231. background-image: -moz-linear-gradient(top, #2f9833 0, #2f9833 100%);
  2232. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2f9833), to(#2f9833));
  2233. background-image: -webkit-linear-gradient(top, #2f9833 0, #2f9833 100%);
  2234. background-image: -o-linear-gradient(top, #2f9833 0, #2f9833 100%);
  2235. background-image: linear-gradient(to bottom, #2f9833 0, #2f9833 100%);
  2236. border-color: #2f9833;
  2237. box-shadow: none;
  2238. -moz-box-shadow: none;
  2239. -webkit-box-shadow: none;
  2240. color: #fff
  2241. }
  2242. .btn_loading.btn_primary button {
  2243. color: #fff
  2244. }
  2245. .btn_loading.btn_primary i {
  2246. filter: alpha(opacity=70);
  2247. -moz-opacity: .7;
  2248. -khtml-opacity: .7;
  2249. opacity: .7
  2250. }
  2251. .btn_loading.btn_default {
  2252. background-color: #e7e7eb;
  2253. background-image: -moz-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2254. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7eb), to(#e7e7eb));
  2255. background-image: -webkit-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2256. background-image: -o-linear-gradient(top, #e7e7eb 0, #e7e7eb 100%);
  2257. background-image: linear-gradient(to bottom, #e7e7eb 0, #e7e7eb 100%);
  2258. border-color: #dadbe0;
  2259. box-shadow: none;
  2260. -moz-box-shadow: none;
  2261. -webkit-box-shadow: none;
  2262. color: #222
  2263. }
  2264. .btn_loading.btn_default button {
  2265. color: #222
  2266. }
  2267. .btn_primary_border {
  2268. color: #44b549;
  2269. border-color: #44b549;
  2270. padding: 0 10px
  2271. }
  2272. .btn_primary_border:hover {
  2273. color: #2f9833;
  2274. border-color: #2f9833;
  2275. background: #fff
  2276. }
  2277. .icon_msg {
  2278. width: 56px;
  2279. height: 56px;
  2280. vertical-align: middle;
  2281. display: inline-block
  2282. }
  2283. .icon_msg.success {
  2284. background: url(images/base_z451259.png) 0 -476px no-repeat
  2285. }
  2286. .icon_msg.warn {
  2287. background: url(images/base_z451259.png) 0 -536px no-repeat
  2288. }
  2289. .icon_msg.error {
  2290. background: url(images/base_z451259.png) 0 -596px no-repeat
  2291. }
  2292. .icon_msg.mail {
  2293. background: url(images/base_z451259.png) 0 -656px no-repeat
  2294. }
  2295. .icon_msg.waiting {
  2296. background: url(images/base_z451259.png) 0 -716px no-repeat
  2297. }
  2298. .icon_msg.ask {
  2299. background: transparent url(/mpres/htmledition/common/images/icon/msg/icon_msg_ask.png?__sprite) no-repeat 0 0
  2300. }
  2301. .icon_msg.info {
  2302. background: url(images/base_z451259.png) 0 -776px no-repeat
  2303. }
  2304. .icon_msg_mini {
  2305. width: 16px;
  2306. height: 16px;
  2307. vertical-align: middle;
  2308. display: inline-block
  2309. }
  2310. .icon_msg_mini.success {
  2311. background: url(images/base_z451259.png) 0 -836px no-repeat
  2312. }
  2313. .icon_msg_mini.warn {
  2314. background: url(images/base_z451259.png) 0 -856px no-repeat
  2315. }
  2316. .icon_msg_mini.info {
  2317. background: url(images/base_z451259.png) 0 -876px no-repeat
  2318. }
  2319. .icon_msg_mini.waiting {
  2320. background: url(images/base_z451259.png) 0 -896px no-repeat
  2321. }
  2322. .icon_msg_mini.ask {
  2323. background: url(images/base_z451259.png) 0 -916px no-repeat
  2324. }
  2325. .icon_msg_small {
  2326. width: 32px;
  2327. height: 32px;
  2328. vertical-align: middle;
  2329. display: inline-block
  2330. }
  2331. .icon_msg_small.success {
  2332. background: url(images/base_z451259.png) 0 -936px no-repeat
  2333. }
  2334. .icon_msg_small.warn {
  2335. background: url(images/base_z451259.png) 0 -972px no-repeat
  2336. }
  2337. .icon_msg_small.info {
  2338. background: url(images/base_z451259.png) 0 -1008px no-repeat
  2339. }
  2340. .icon_msg_small.waiting {
  2341. background: url(images/base_z451259.png) 0 -1044px no-repeat
  2342. }
  2343. .icon_msg_small.ask {
  2344. background: url(images/base_z451259.png) 0 -1080px no-repeat
  2345. }
  2346. .icon37_msg {
  2347. width: 37px;
  2348. height: 37px;
  2349. vertical-align: middle;
  2350. display: inline-block
  2351. }
  2352. .icon37_msg.success {
  2353. background: url(images/base_z451259.png) 0 -1116px no-repeat
  2354. }
  2355. .icon37_msg.warn {
  2356. background: url(images/base_z451259.png) 0 -1157px no-repeat
  2357. }
  2358. .icon37_msg.info {
  2359. background: url(images/base_z451259.png) 0 -1198px no-repeat
  2360. }
  2361. .icon37_msg.error {
  2362. background: url(images/base_z451259.png) 0 -1239px no-repeat
  2363. }
  2364. .icon37_msg.mail {
  2365. background: url(images/base_z451259.png) 0 -1280px no-repeat
  2366. }
  2367. .icon37_msg.waiting {
  2368. background: url(images/base_z451259.png) 0 -1321px no-repeat
  2369. }
  2370. .icon20_msg {
  2371. width: 20px;
  2372. height: 20px;
  2373. vertical-align: middle;
  2374. display: inline-block
  2375. }
  2376. .icon20_msg.success {
  2377. background: url(images/base_z451259.png) 0 -1362px no-repeat
  2378. }
  2379. .icon20_msg.warn {
  2380. background: url(images/base_z451259.png) 0 -1386px no-repeat
  2381. }
  2382. .icon20_msg.error {
  2383. background: url(images/base_z451259.png) 0 -1410px no-repeat
  2384. }
  2385. .icon20_msg.info {
  2386. background: url(images/base_z451259.png) 0 -1434px no-repeat
  2387. }
  2388. .icon18_msg {
  2389. width: 18px;
  2390. height: 18px;
  2391. vertical-align: middle;
  2392. display: inline-block
  2393. }
  2394. .icon18_msg.ask {
  2395. background: url(images/base_z451259.png) 0 -1458px no-repeat
  2396. }
  2397. .icon18_msg.success {
  2398. background: url(images/base_z451259.png) 0 -1480px no-repeat
  2399. }
  2400. .icon18_msg.warn {
  2401. background: url(images/base_z451259.png) 0 -1502px no-repeat
  2402. }
  2403. .icon18_msg.error {
  2404. background: url(images/base_z451259.png) 0 -1524px no-repeat
  2405. }
  2406. .icon18_msg.info {
  2407. background: url(images/base_z451259.png) 0 -1546px no-repeat
  2408. }
  2409. .icon18_msg.waiting {
  2410. background: url(images/base_z451259.png) 0 -1568px no-repeat
  2411. }
  2412. .page_msg .inner {
  2413. position: relative;
  2414. *zoom: 1;
  2415. background-color: #e0eaf6
  2416. }
  2417. .page_msg .inner:after {
  2418. content: "\200B";
  2419. display: block;
  2420. height: 0;
  2421. clear: both
  2422. }
  2423. .page_msg .msg_icon_wrp, .page_msg .msg_icon_wrapper {
  2424. float: left;
  2425. margin-right: 10px;
  2426. font-size: 0
  2427. }
  2428. .page_msg .msg_content {
  2429. overflow: hidden;
  2430. *zoom: 1;
  2431. padding-top: 5px
  2432. }
  2433. .page_msg .msg_opr {
  2434. display: none;
  2435. position: absolute;
  2436. right: 10px;
  2437. top: 50%;
  2438. margin-top: -10px
  2439. }
  2440. .page_msg h4 {
  2441. font-size: 16px;
  2442. font-weight: 700
  2443. }
  2444. .page_msg p {
  2445. font-size: 14px;
  2446. color: #8d8d8d
  2447. }
  2448. .page_msg .spacing {
  2449. padding: .5em 0 2em
  2450. }
  2451. .page_msg .line_break_before {
  2452. padding-top: 1em
  2453. }
  2454. .page_msg.large .inner {
  2455. padding: 12px 70px
  2456. }
  2457. .page_msg.small .inner {
  2458. padding: 20px 40px 20px 20px
  2459. }
  2460. .page_msg.mini .inner {
  2461. padding: 9px 20px
  2462. }
  2463. .page_msg.mini .msg_icon_wrp {
  2464. margin-top: 3px;
  2465. margin-right: 6px
  2466. }
  2467. .page_msg.mini .msg_content {
  2468. padding-top: 0
  2469. }
  2470. .page_msg.single_line .msg_content {
  2471. padding-top: 15px
  2472. }
  2473. .page_msg.default .inner {
  2474. background-color: transparent;
  2475. border: 0;
  2476. box-shadow: none;
  2477. -moz-box-shadow: none;
  2478. -webkit-box-shadow: none
  2479. }
  2480. .page_msg.simple {
  2481. text-align: center
  2482. }
  2483. .page_msg.simple .inner {
  2484. display: inline-block;
  2485. *display: inline;
  2486. *zoom: 1;
  2487. text-align: left;
  2488. min-width: 55%
  2489. }
  2490. .icon_msg {
  2491. width: 46px;
  2492. height: 46px;
  2493. vertical-align: middle;
  2494. display: inline-block
  2495. }
  2496. .icon_msg.success {
  2497. background: url(images/base_z451259.png) 0 -1590px no-repeat
  2498. }
  2499. .icon_msg.warn {
  2500. background: url(images/base_z451259.png) 0 -1640px no-repeat
  2501. }
  2502. .icon_msg.warn_primary {
  2503. background: url(images/base_z451259.png) 0 -1690px no-repeat
  2504. }
  2505. .icon_msg.error {
  2506. background: url(images/base_z451259.png) 0 -1740px no-repeat
  2507. }
  2508. .icon_msg.waiting {
  2509. background: url(images/base_z451259.png) 0 -1790px no-repeat
  2510. }
  2511. .icon_msg.info {
  2512. background: url(images/base_z451259.png) 0 -1840px no-repeat
  2513. }
  2514. .icon_msg.mail {
  2515. background: url(images/base_z451259.png) 0 -1890px no-repeat
  2516. }
  2517. .icon_msg.phone {
  2518. width: 144px;
  2519. height: 144px;
  2520. background: url(images/base_z_@all451259.png) 0 0 no-repeat
  2521. }
  2522. .icon_msg_primary {
  2523. width: 46px;
  2524. height: 46px;
  2525. vertical-align: middle;
  2526. display: inline-block
  2527. }
  2528. .icon_msg_primary.success {
  2529. background: url(images/base_z451259.png) 0 -1940px no-repeat
  2530. }
  2531. .icon_msg_primary.warn {
  2532. background: url(images/base_z451259.png) 0 -1990px no-repeat
  2533. }
  2534. .icon_msg_primary.waiting {
  2535. background: url(images/base_z451259.png) 0 -2040px no-repeat
  2536. }
  2537. .icon_msg_primary.info {
  2538. background: url(images/base_z451259.png) 0 -2090px no-repeat
  2539. }
  2540. .icon_msg_primary.mail {
  2541. background: url(images/base_z451259.png) 0 -2140px no-repeat
  2542. }
  2543. .page_msg.mini p {
  2544. color: #222
  2545. }
  2546. .page_msg.single_line .msg_content {
  2547. padding-top: 10px
  2548. }
  2549. .page_msg.with_closed {
  2550. position: relative
  2551. }
  2552. .page_msg h4 {
  2553. font-size: 14px;
  2554. font-weight: 400;
  2555. font-style: normal
  2556. }
  2557. .page_msg .msg_content {
  2558. padding-top: 0
  2559. }
  2560. .page_msg .msg_closed {
  2561. position: absolute;
  2562. right: 10px;
  2563. top: 50%;
  2564. margin-top: -5px;
  2565. line-height: 300px;
  2566. overflow: hidden;
  2567. cursor: pointer;
  2568. background: url(images/base_z451259.png) 0 -2190px no-repeat;
  2569. width: 10px;
  2570. height: 10px;
  2571. vertical-align: middle;
  2572. display: inline-block
  2573. }
  2574. .page_msg.announcement_msg {
  2575. margin-bottom: 20px
  2576. }
  2577. .page_msg.announcement_msg.mini .inner {
  2578. padding: 9px 20px;
  2579. background-color: #e0eaf6
  2580. }
  2581. .popover_close {
  2582. display: none;
  2583. position: absolute;
  2584. right: 10px;
  2585. top: 22px;
  2586. background: url(images/base_z451259.png) 0 -2204px no-repeat
  2587. }
  2588. .popover_close:hover {
  2589. background: url(images/base_z451259.png) 0 -2224px no-repeat
  2590. }
  2591. .popover {
  2592. width: 257px;
  2593. position: absolute;
  2594. margin-top: 12px;
  2595. z-index: 999
  2596. }
  2597. .popover .popover_inner {
  2598. border: 1px solid #d9dadc;
  2599. word-wrap: break-word;
  2600. word-break: break-all;
  2601. padding: 30px;
  2602. background-color: #fff;
  2603. box-shadow: none;
  2604. -moz-box-shadow: none;
  2605. -webkit-box-shadow: none
  2606. }
  2607. .popover .popover_arrow {
  2608. position: absolute;
  2609. left: 50%;
  2610. margin-left: -8px;
  2611. margin-top: -8px;
  2612. display: inline-block;
  2613. width: 0;
  2614. height: 0;
  2615. border-width: 8px;
  2616. border-style: dashed;
  2617. border-color: transparent;
  2618. border-top-width: 0;
  2619. border-bottom-color: #d9dadc;
  2620. border-bottom-style: solid
  2621. }
  2622. .popover .popover_arrow_out {
  2623. top: 0
  2624. }
  2625. .popover .popover_arrow_in {
  2626. border-bottom-color: #fff;
  2627. top: 1px
  2628. }
  2629. .popover .popover_title {
  2630. font-size: 14px;
  2631. font-weight: 700
  2632. }
  2633. .popover .popover_tips {
  2634. color: #8d8d8d
  2635. }
  2636. .popover .popover_bar {
  2637. text-align: center;
  2638. margin-top: 20px
  2639. }
  2640. .popover .popover_bar .btn {
  2641. margin: 0 .3em
  2642. }
  2643. .popover.simple .popover_bar {
  2644. text-align: left
  2645. }
  2646. .popover.simple .btn {
  2647. margin-left: 0;
  2648. margin-right: .6em
  2649. }
  2650. .popover.pos_left .popover_arrow {
  2651. left: 42px
  2652. }
  2653. .popover.pos_right .popover_arrow {
  2654. left: auto;
  2655. right: 28px
  2656. }
  2657. .popover.pos_down_center .popover_arrow {
  2658. top: auto;
  2659. bottom: -8px;
  2660. border-bottom-width: 0;
  2661. border-top: 8px solid #fff
  2662. }
  2663. .popover.pos_down_center .popover_arrow_out {
  2664. border-top-color: #d9dadc
  2665. }
  2666. .popover.normal_flow {
  2667. position: relative;
  2668. width: auto;
  2669. z-index: 0
  2670. }
  2671. .popover.normal_flow .popover_inner {
  2672. padding: 14px 20px;
  2673. box-shadow: none;
  2674. -moz-box-shadow: none;
  2675. -webkit-box-shadow: none;
  2676. border-color: #e7e7eb
  2677. }
  2678. .popover.normal_flow .popover_content {
  2679. width: auto
  2680. }
  2681. .popover.normal_flow .popover_arrow_out {
  2682. border-bottom-color: #e7e7eb
  2683. }
  2684. .popover.arrow_left {
  2685. margin-left: 8px;
  2686. margin-top: 0
  2687. }
  2688. .popover.arrow_left .popover_arrow {
  2689. top: 25px;
  2690. left: 0;
  2691. display: inline-block;
  2692. width: 0;
  2693. height: 0;
  2694. border-width: 8px;
  2695. border-style: dashed;
  2696. border-color: transparent;
  2697. border-left-width: 0;
  2698. border-right-color: #d9dadc;
  2699. border-right-style: solid
  2700. }
  2701. .popover.arrow_left .popover_arrow_in {
  2702. left: 1px;
  2703. border-right-color: #fff
  2704. }
  2705. .popover.z_top {
  2706. z-index: 10000
  2707. }
  2708. .popover {
  2709. width: 290px;
  2710. z-index: 99999;
  2711. font-weight: normal;
  2712. font-style: normal;
  2713. text-align: left;
  2714. color: #222;
  2715. line-height: 1.6
  2716. }
  2717. .popover .popover_title {
  2718. font-weight: 400;
  2719. font-style: normal;
  2720. padding-bottom: 5px
  2721. }
  2722. .popover .frm_input_box {
  2723. display: block;
  2724. width: auto
  2725. }
  2726. .popover .popover_bar {
  2727. text-align: justify;
  2728. text-justify: distribute-all-lines;
  2729. font-size: 0
  2730. }
  2731. .popover .popover_bar:after {
  2732. display: inline-block;
  2733. width: 100%;
  2734. height: 0;
  2735. font-size: 0;
  2736. margin: 0;
  2737. padding: 0;
  2738. overflow: hidden;
  2739. content: "."
  2740. }
  2741. .popover .popover_bar .tj_item {
  2742. font-size: 14px;
  2743. text-align: left;
  2744. text-justify: auto
  2745. }
  2746. .popover .popover_bar .btn {
  2747. margin: 0
  2748. }
  2749. .popover .popover_bar.tc {
  2750. text-align: center
  2751. }
  2752. .popover.without_bar .popover_bar {
  2753. display: none
  2754. }
  2755. .copylink_wrp {
  2756. display: inline-block;
  2757. *display: inline;
  2758. *zoom: 1
  2759. }
  2760. .copylink {
  2761. display: inline-block
  2762. }
  2763. .icon_goback {
  2764. background: url(images/base_z451259.png) 0 -2244px no-repeat;
  2765. width: 26px;
  2766. height: 26px;
  2767. vertical-align: middle;
  2768. display: inline-block;
  2769. line-height: 100px;
  2770. overflow: hidden
  2771. }
  2772. .icon_goback:hover {
  2773. background: url(images/base_z451259.png) 0 -2274px no-repeat
  2774. }
  2775. .page_nav {
  2776. margin: 26px 30px 40px;
  2777. margin-left: 0;
  2778. color: #9a9a9a
  2779. }
  2780. .page_nav .icon_goback {
  2781. margin-right: 5px;
  2782. display: none
  2783. }
  2784. .page_nav .gap {
  2785. margin: 0 .35em
  2786. }
  2787. .page_nav a, .page_nav .gap {
  2788. color: #44b549
  2789. }
  2790. .page_nav a:hover {
  2791. color: #44b549
  2792. }
  2793. .page_nav.title_bottom {
  2794. margin-top: 0
  2795. }
  2796. .gototop {
  2797. position: fixed;
  2798. bottom: 100px;
  2799. left: 0;
  2800. right: 0
  2801. }
  2802. .gototop_inner {
  2803. width: 1024px;
  2804. margin-left: auto;
  2805. margin-right: auto;
  2806. text-align: right
  2807. }
  2808. .gototop_tips {
  2809. background: url(images/base_z451259.png) 0 -2304px no-repeat;
  2810. width: 47px;
  2811. height: 47px;
  2812. vertical-align: middle;
  2813. display: inline-block;
  2814. cursor: pointer;
  2815. line-height: 200px;
  2816. overflow: hidden;
  2817. margin-right: -80px
  2818. }
  2819. .page_tips {
  2820. position: fixed;
  2821. top: 0;
  2822. left: 0;
  2823. text-align: center;
  2824. width: 100%;
  2825. z-index: 10000
  2826. }
  2827. .page_tips .inner {
  2828. display: inline-block;
  2829. *display: inline;
  2830. *zoom: 1;
  2831. min-width: 280px;
  2832. padding: 5px 30px;
  2833. color: #fff
  2834. }
  2835. .page_tips.success .inner {
  2836. background-color: #44b549
  2837. }
  2838. .page_tips.error .inner {
  2839. background-color: #eaa000
  2840. }
  2841. .mask {
  2842. position: fixed;
  2843. top: 0;
  2844. left: 0;
  2845. width: 100%;
  2846. height: 100%;
  2847. filter: alpha(opacity=75);
  2848. -moz-opacity: .75;
  2849. -khtml-opacity: .75;
  2850. opacity: .75;
  2851. background-color: #000;
  2852. z-index: 9998
  2853. }
  2854. .card_mask_global {
  2855. position: absolute;
  2856. top: 0;
  2857. left: 0;
  2858. right: 0;
  2859. bottom: 0;
  2860. background: rgba(0, 0, 0, 0.7) !important;
  2861. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#b3000000', endcolorstr='#b3000000');
  2862. cursor: pointer;
  2863. color: #fff
  2864. }
  2865. .card_mask_global.vm_helper {
  2866. text-align: center
  2867. }
  2868. .card_mask_global.vm_helper:after {
  2869. content: " ";
  2870. display: inline-block;
  2871. vertical-align: middle;
  2872. width: 0;
  2873. height: 100%;
  2874. overflow: hidden
  2875. }
  2876. .card_mask_global.vm_helper .icon_card_selected_global {
  2877. position: static;
  2878. margin: 0
  2879. }
  2880. .card_mask_global.vm_helper p {
  2881. margin-top: 5px
  2882. }
  2883. .card_mask_content {
  2884. display: inline-block;
  2885. vertical-align: middle;
  2886. max-width: 100%;
  2887. word-wrap: break-word;
  2888. word-break: break-all
  2889. }
  2890. .icon_card_selected_global {
  2891. position: absolute;
  2892. top: 50%;
  2893. left: 50%;
  2894. margin-top: -23px;
  2895. margin-left: -23px;
  2896. background: url(images/base_z451259.png) 0 -2355px no-repeat;
  2897. width: 46px;
  2898. height: 46px;
  2899. vertical-align: middle;
  2900. display: inline-block
  2901. }
  2902. .table_wrp.list {
  2903. padding: 20px
  2904. }
  2905. .table_wrp.list .table {
  2906. border-top-width: 0
  2907. }
  2908. .table_wrp.list .table_cell {
  2909. vertical-align: top;
  2910. padding-left: 20px;
  2911. padding-right: 20px
  2912. }
  2913. .table_wrp.list .tbody .table_cell {
  2914. padding-top: 15px;
  2915. padding-bottom: 15px
  2916. }
  2917. .table_wrp.outside_border {
  2918. border: 1px solid #e7e7eb;
  2919. border-bottom-width: 0
  2920. }
  2921. .table_wrp.with_border .table {
  2922. border: 1px solid #e7e7eb
  2923. }
  2924. .table {
  2925. width: 100%;
  2926. font-size: 14px;
  2927. background-color: #fff;
  2928. text-align: center;
  2929. border-top: 1px solid #e7e7eb;
  2930. border-bottom: 1px solid #e7e7eb;
  2931. border-spacing: 0
  2932. }
  2933. .table_cell {
  2934. padding: 0;
  2935. font-weight: 400;
  2936. font-style: normal
  2937. }
  2938. .thead {
  2939. background-color: #f4f5f9
  2940. }
  2941. .thead .table_cell {
  2942. line-height: 32px;
  2943. border-left: 1px solid #e7e7eb;
  2944. border-bottom: 1px solid #e7e7eb
  2945. }
  2946. .thead .table_cell:first-child {
  2947. border-left-width: 0
  2948. }
  2949. .tbody tr:hover, .tbody tr.even {
  2950. background-color: transparent
  2951. }
  2952. .tbody tr.empty_item:hover {
  2953. background: 0
  2954. }
  2955. .tbody tr:first-child .table_cell {
  2956. border-top-width: 0
  2957. }
  2958. .tbody .table_cell {
  2959. padding-top: 6px;
  2960. padding-bottom: 6px;
  2961. border-top: 1px solid #e7e7eb
  2962. }
  2963. .thead .table_cell {
  2964. border-left-width: 0;
  2965. line-height: 40px;
  2966. vertical-align: middle
  2967. }
  2968. .tbody .table_cell.hd_dropdown_area {
  2969. padding-left: 30px
  2970. }
  2971. .tbody .table_cell {
  2972. padding-top: 9px;
  2973. padding-bottom: 9px
  2974. }
  2975. .table_cell {
  2976. padding-left: 20px;
  2977. padding-right: 20px
  2978. }
  2979. .table_cell:first-child {
  2980. text-align: left
  2981. }
  2982. .table_cell.last_child {
  2983. text-align: right
  2984. }
  2985. .tbody .table_cell.rank_area {
  2986. padding-right: 34px
  2987. }
  2988. .table_wrp.inside_table .thead .table_cell {
  2989. line-height: 32px
  2990. }
  2991. .table_wrp.with_opr_border {
  2992. border: 1px solid #e7e7eb
  2993. }
  2994. .table_wrp.with_opr_border .table {
  2995. border-width: 0
  2996. }
  2997. .table_wrp.default_head_skin .thead {
  2998. background-color: transparent
  2999. }
  3000. .table_wrp.gray_head_skin .table_opr {
  3001. background-color: #f4f5f9
  3002. }
  3003. .table_wrp.with_table_list .table {
  3004. border: 1px solid #e7e7eb
  3005. }
  3006. .table_wrp.with_table_list .table_cell {
  3007. vertical-align: top
  3008. }
  3009. .table_opr.with_btn_line {
  3010. padding: 10px 20px
  3011. }
  3012. .table_opr_meta_btn {
  3013. margin-right: 12px
  3014. }
  3015. .links_item {
  3016. display: inline-block;
  3017. *display: inline;
  3018. *zoom: 1;
  3019. vertical-align: middle;
  3020. padding: 0 1em;
  3021. line-height: 1em;
  3022. *line-height: 18px;
  3023. border-left: 1px solid #d9dadc
  3024. }
  3025. .links_item.no_extra {
  3026. border-left-width: 0
  3027. }
  3028. .links_item:first-child {
  3029. border-left-width: 0
  3030. }
  3031. .links_item a {
  3032. display: block;
  3033. color: #797979
  3034. }
  3035. .links.tab_links {
  3036. margin-left: -1em
  3037. }
  3038. .links.tab_links .links_item {
  3039. border-left-color: #d9dadc
  3040. }
  3041. .links.tab_links .links_item:hover a {
  3042. color: #222
  3043. }
  3044. .links.tab_links .selected a {
  3045. color: #222
  3046. }
  3047. .faq {
  3048. width: 178px;
  3049. margin-top: -42px;
  3050. position: relative;
  3051. top: -18px;
  3052. padding-left: 20px;
  3053. font-size: 0
  3054. }
  3055. .faq .links {
  3056. text-align: left
  3057. }
  3058. .faq .links_item {
  3059. padding: 0 .5em;
  3060. font-size: 12px;
  3061. *line-height: 15px
  3062. }
  3063. .faq .links_item a {
  3064. color: #8d8d8d
  3065. }
  3066. .faq .links_item a:hover {
  3067. color: #576b95
  3068. }
  3069. .faq .links_item.no_extra {
  3070. padding-left: 0
  3071. }
  3072. .faq .tail {
  3073. color: #8d8d8d;
  3074. font-size: 12px;
  3075. line-height: 30px
  3076. }
  3077. .weui-desktop-link_download:before {
  3078. content: "";
  3079. background: url(images/base_z451259.png) 0 -2405px no-repeat;
  3080. width: 18px;
  3081. height: 16px;
  3082. vertical-align: middle;
  3083. display: inline-block;
  3084. margin-top: -0.2em;
  3085. margin-right: 5px
  3086. }
  3087. .pop_closed {
  3088. background: url(images/base_z451259.png) 0 -2425px no-repeat
  3089. }
  3090. .pop_closed:hover {
  3091. background: url(images/base_z451259.png) 0 -2445px no-repeat
  3092. }
  3093. .dialog_wrp {
  3094. position: fixed;
  3095. top: 50%;
  3096. left: 50%;
  3097. width: 726px;
  3098. z-index: 3
  3099. }
  3100. .dialog_wrp.label_block .frm_label {
  3101. display: block;
  3102. width: auto;
  3103. float: none;
  3104. font-size: 14px;
  3105. margin-bottom: .5em
  3106. }
  3107. .dialog_wrp.cascade_input .frm_control_group {
  3108. display: inline-block;
  3109. *display: inline;
  3110. *zoom: 1
  3111. }
  3112. .dialog_wrp.cascade_input .frm_input_box, .dialog_wrp.cascade_input .frm_tips, .dialog_wrp.cascade_input .frm_msg {
  3113. width: auto
  3114. }
  3115. .dialog_wrp.cascade_input .frm_input_box {
  3116. display: block
  3117. }
  3118. .dialog_wrp.cascade_input .frm_controls {
  3119. padding-left: 0
  3120. }
  3121. .dialog_wrp.align_edge .dialog_bd {
  3122. padding: 0
  3123. }
  3124. .dialog_wrp.simple .dialog_bd {
  3125. text-align: center
  3126. }
  3127. .dialog {
  3128. overflow: hidden;
  3129. border: 1px solid transparent;
  3130. background-color: #fff;
  3131. border-radius: 0;
  3132. -moz-border-radius: 0;
  3133. -webkit-border-radius: 0
  3134. }
  3135. .dialog_hd {
  3136. position: relative;
  3137. padding: 0 20px;
  3138. line-height: 38px;
  3139. height: 38px;
  3140. background-color: #f4f5f9;
  3141. background-image: -moz-linear-gradient(top, #f4f5f9 0, #f4f5f9 100%);
  3142. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f5f9), to(#f4f5f9));
  3143. background-image: -webkit-linear-gradient(top, #f4f5f9 0, #f4f5f9 100%);
  3144. background-image: -o-linear-gradient(top, #f4f5f9 0, #f4f5f9 100%);
  3145. background-image: linear-gradient(to bottom, #f4f5f9 0, #f4f5f9 100%);
  3146. border-bottom: 1px solid #e7e7eb
  3147. }
  3148. .dialog_hd h3 {
  3149. color: #222
  3150. }
  3151. .pop_closed {
  3152. position: absolute;
  3153. top: 50%;
  3154. margin-top: -8px;
  3155. right: 20px;
  3156. width: 16px;
  3157. height: 16px;
  3158. line-height: 999em;
  3159. overflow: hidden
  3160. }
  3161. .dialog_bd {
  3162. padding: 66px 45px 108px
  3163. }
  3164. .dialog_ft {
  3165. margin: 0;
  3166. padding: 25px 0;
  3167. text-align: center;
  3168. border-top: 1px solid transparent;
  3169. box-shadow: none;
  3170. -moz-box-shadow: none;
  3171. -webkit-box-shadow: none
  3172. }
  3173. .dialog_ft .btn {
  3174. margin-left: .3em;
  3175. margin-right: .3em
  3176. }
  3177. .dialog_content_list {
  3178. height: 420px;
  3179. padding: 0 120px;
  3180. overflow-y: scroll;
  3181. position: relative
  3182. }
  3183. .simple_dialog_content {
  3184. display: inline-block;
  3185. *display: inline;
  3186. *zoom: 1;
  3187. text-align: left;
  3188. width: 420px
  3189. }
  3190. .simple_dialog_content .frm_input_box, .simple_dialog_content .frm_textarea_box {
  3191. display: block
  3192. }
  3193. .simple_dialog_content .frm_input_box, .simple_dialog_content .frm_textarea_box, .simple_dialog_content .frm_tips, .simple_dialog_content .frm_msg {
  3194. width: auto
  3195. }
  3196. .dialog_with_tool_context .dialog_bd {
  3197. position: relative
  3198. }
  3199. .dialog_tool_context {
  3200. position: absolute;
  3201. bottom: 0;
  3202. left: 0;
  3203. right: 0;
  3204. text-align: center
  3205. }
  3206. .dialog_wrp {
  3207. z-index: 9999
  3208. }
  3209. .dialog {
  3210. border-width: 0;
  3211. overflow: visible
  3212. }
  3213. .dialog_ft {
  3214. padding: 0;
  3215. line-height: 65px;
  3216. background-color: #f4f5f9;
  3217. position: relative
  3218. }
  3219. .dialog_tool_tips {
  3220. position: absolute;
  3221. left: 20px;
  3222. top: 20px;
  3223. line-height: 1.6;
  3224. color: #8d8d8d
  3225. }
  3226. .dialog_hd {
  3227. line-height: 52px;
  3228. height: 52px;
  3229. border-bottom-width: 0
  3230. }
  3231. .dialog_hd h3 {
  3232. font-weight: 400;
  3233. font-style: normal
  3234. }
  3235. .has_ft_desc .dialog_bd {
  3236. position: relative
  3237. }
  3238. .has_ft_desc .dialog_ft_desc {
  3239. position: absolute;
  3240. bottom: -40px;
  3241. left: 20px
  3242. }
  3243. .pop_closed {
  3244. background: url(images/base_z451259.png) 0 -2465px no-repeat
  3245. }
  3246. .pop_closed:hover {
  3247. background: url(images/base_z451259.png) 0 -2485px no-repeat
  3248. }
  3249. .dialog_with_tool_area .dialog_bd {
  3250. position: relative
  3251. }
  3252. .dialog_tool_area {
  3253. position: absolute;
  3254. left: 0;
  3255. right: 0;
  3256. bottom: 20px;
  3257. padding-left: 45px;
  3258. padding-right: 45px;
  3259. text-align: center
  3260. }
  3261. .dialog_tool_context {
  3262. bottom: 20px
  3263. }
  3264. .s_dialog_ft {
  3265. position: relative;
  3266. padding: 26px 30px;
  3267. background-color: #f4f5f9;
  3268. text-align: center;
  3269. border-top: 1px solid #e7e7eb
  3270. }
  3271. .s_dialog_ft .mini_tips {
  3272. position: absolute;
  3273. left: 20px;
  3274. top: 20px;
  3275. color: #8d8d8d;
  3276. line-height: 1.6
  3277. }
  3278. .s_dialog_ft .btn {
  3279. margin: 0 .5em
  3280. }
  3281. .ml1e {
  3282. margin-left: 1em
  3283. }
  3284. .dialog_process .form {
  3285. padding-left: 45px;
  3286. padding-right: 45px
  3287. }
  3288. .dialog_process .dialog_bd {
  3289. padding: 0 0 55px
  3290. }
  3291. .dialog_process .processor_bar {
  3292. margin-bottom: 45px
  3293. }
  3294. .safe_check .form .inner {
  3295. width: 425px;
  3296. margin: 0 auto
  3297. }
  3298. .safe_check .form .frm_hd {
  3299. margin-bottom: 1.5em
  3300. }
  3301. .safe_check .form .frm_hd .frm_title {
  3302. margin-bottom: 0;
  3303. font-weight: 400;
  3304. font-style: normal;
  3305. font-size: 14px
  3306. }
  3307. .safe_check .form .frm_hd .frm_desc {
  3308. color: #8d8d8d
  3309. }
  3310. .safe_check .form .frm_label {
  3311. float: left;
  3312. width: 5em;
  3313. margin-bottom: 0;
  3314. font-size: 14px
  3315. }
  3316. .safe_check .form .frm_radio_block_desc {
  3317. padding-left: 23px
  3318. }
  3319. .safe_check .form .page_msg {
  3320. margin-left: -14em
  3321. }
  3322. .safe_check .form_width_auto .inner {
  3323. width: auto;
  3324. max-width: 500px;
  3325. margin: 0 auto
  3326. }
  3327. .safe_check .form_owner_info .frm_label {
  3328. width: 8em
  3329. }
  3330. .safe_check .form_owner_info .inner {
  3331. width: 500px
  3332. }
  3333. .safe_check .tool_bar {
  3334. padding-bottom: 0
  3335. }
  3336. .safe_check .tool_bar.tc {
  3337. padding-left: 0;
  3338. text-align: center
  3339. }
  3340. .safe_check h4 {
  3341. font-weight: 400
  3342. }
  3343. .page_msg .extra_msg h4 {
  3344. font-weight: 400
  3345. }
  3346. .qrcode_scan .js_status, .qrcode_scan .status_wrp {
  3347. width: 280px
  3348. }
  3349. .qrcode_scan .qrcode_wrp {
  3350. width: 280px;
  3351. height: 280px
  3352. }
  3353. .bubble_tips {
  3354. display: inline-block;
  3355. *display: inline;
  3356. *zoom: 1;
  3357. vertical-align: middle;
  3358. position: relative;
  3359. color: #8d8d8d
  3360. }
  3361. .bubble_tips.warn {
  3362. color: #8d8d8d
  3363. }
  3364. .bubble_tips.success {
  3365. color: #7fba4f
  3366. }
  3367. .bubble_tips.gap_left {
  3368. margin-left: 10px
  3369. }
  3370. .bubble_tips.gap_right {
  3371. margin-right: 10px
  3372. }
  3373. .bubble_left {
  3374. margin-left: 6px
  3375. }
  3376. .bubble_left .bubble_tips_arrow.in {
  3377. left: -5px
  3378. }
  3379. .bubble_left .bubble_tips_arrow.out {
  3380. border-right-color: #e7e7eb;
  3381. left: -6px
  3382. }
  3383. .bubble_right {
  3384. margin-right: 6px
  3385. }
  3386. .bubble_right .bubble_tips_arrow {
  3387. border-left-width: 6px;
  3388. border-right-color: transparent;
  3389. border-right-style: dashed;
  3390. border-right-width: 0;
  3391. border-left-color: #fff;
  3392. border-left-style: solid
  3393. }
  3394. .bubble_right .bubble_tips_arrow.in {
  3395. right: -5px
  3396. }
  3397. .bubble_right .bubble_tips_arrow.out {
  3398. border-left-color: #e7e7eb;
  3399. right: -6px
  3400. }
  3401. .bubble_top {
  3402. margin-top: 6px
  3403. }
  3404. .bubble_top .bubble_tips_arrow {
  3405. border-left-width: 6px;
  3406. border-right-color: transparent;
  3407. border-right-style: dashed;
  3408. border-top-width: 0;
  3409. border-bottom-color: #fff;
  3410. border-bottom-style: solid;
  3411. left: 50%;
  3412. margin-left: -6px
  3413. }
  3414. .bubble_top .bubble_tips_arrow.in {
  3415. top: 1px
  3416. }
  3417. .bubble_top .bubble_tips_arrow.out {
  3418. border-bottom-color: #e7e7eb;
  3419. top: 0
  3420. }
  3421. .bubble_bottom {
  3422. margin-bottom: 6px
  3423. }
  3424. .bubble_bottom .bubble_tips_arrow {
  3425. border-left-width: 6px;
  3426. border-right-color: transparent;
  3427. border-right-style: dashed;
  3428. border-bottom-width: 0;
  3429. border-top-color: #fff;
  3430. border-top-style: solid;
  3431. top: auto;
  3432. margin-top: 0;
  3433. margin-bottom: -6px;
  3434. left: 50%;
  3435. margin-left: -6px
  3436. }
  3437. .bubble_bottom .bubble_tips_arrow.in {
  3438. bottom: 1px
  3439. }
  3440. .bubble_bottom .bubble_tips_arrow.out {
  3441. border-top-color: #e7e7eb;
  3442. bottom: 0
  3443. }
  3444. .bubble_tips_inner {
  3445. padding: 4.5px 10px;
  3446. border: 1px solid #e7e7eb;
  3447. line-height: 21px;
  3448. background-color: #fff;
  3449. word-wrap: break-word;
  3450. word-break: break-all
  3451. }
  3452. .bubble_tips_arrow {
  3453. position: absolute;
  3454. top: 50%;
  3455. margin-top: -6px;
  3456. display: inline-block;
  3457. width: 0;
  3458. height: 0;
  3459. border-width: 6px;
  3460. border-style: dashed;
  3461. border-color: transparent;
  3462. border-left-width: 0;
  3463. border-right-color: #fff;
  3464. border-right-style: solid
  3465. }
  3466. .icon_dropdown_switch, .icon_rank {
  3467. display: inline-block;
  3468. vertical-align: middle;
  3469. margin-top: -3px;
  3470. position: relative;
  3471. width: 10px;
  3472. height: 12px
  3473. }
  3474. .icon_dropdown_switch .arrow, .icon_rank .arrow {
  3475. display: inline-block;
  3476. width: 0;
  3477. height: 0;
  3478. border-width: 5px;
  3479. border-style: dashed;
  3480. border-color: transparent;
  3481. border-top-width: 0;
  3482. border-bottom-color: #c6c6c6;
  3483. border-bottom-style: solid;
  3484. vertical-align: top
  3485. }
  3486. .icon_dropdown_switch .arrow_down, .icon_rank .arrow_down {
  3487. position: absolute;
  3488. left: 0;
  3489. bottom: 0;
  3490. border-bottom-color: transparent;
  3491. border-bottom-style: dashed;
  3492. border-top-width: 5px;
  3493. border-top-color: #c6c6c6;
  3494. border-top-style: solid;
  3495. border-bottom-width: 0
  3496. }
  3497. .dropdown_switch_area:hover, .rank_area:hover {
  3498. cursor: pointer
  3499. }
  3500. .dropdown_switch_area:hover .arrow_down, .rank_area:hover .arrow_down {
  3501. border-top-color: #a0a0a0
  3502. }
  3503. .dropdown_switch_area:hover .arrow_up, .rank_area:hover .arrow_up {
  3504. border-bottom-color: #a0a0a0
  3505. }
  3506. .tbody .rank_area:hover, .s_tbody .rank_area:hover {
  3507. cursor: text
  3508. }
  3509. .dropdown_closed .arrow_up, .rank_down .arrow_up {
  3510. display: none
  3511. }
  3512. .dropdown_closed .arrow_down, .rank_down .arrow_down {
  3513. bottom: 3px
  3514. }
  3515. .dropdown_opened .arrow_down, .rank_up .arrow_down {
  3516. display: none
  3517. }
  3518. .dropdown_opened .arrow_up, .rank_up .arrow_up {
  3519. margin-top: 3px
  3520. }
  3521. .icon20_common {
  3522. width: 20px;
  3523. height: 20px;
  3524. vertical-align: middle;
  3525. display: inline-block
  3526. }
  3527. .icon20_common.add_gray {
  3528. background: url(images/base_z451259.png) 0 -2505px no-repeat
  3529. }
  3530. .icon35_common {
  3531. width: 35px;
  3532. height: 35px;
  3533. vertical-align: middle;
  3534. display: inline-block
  3535. }
  3536. .icon35_common.add_gray {
  3537. background: url(images/base_z451259.png) 0 -2529px no-repeat
  3538. }
  3539. .icon36_common {
  3540. width: 36px;
  3541. height: 36px;
  3542. vertical-align: middle;
  3543. display: inline-block
  3544. }
  3545. .icon36_common.add_gray {
  3546. background: url(images/base_z451259.png) 0 -2568px no-repeat
  3547. }
  3548. .create_access {
  3549. display: block;
  3550. border: 2px dotted #d9dadc;
  3551. line-height: 80px;
  3552. text-align: center;
  3553. margin-bottom: 20px
  3554. }
  3555. .create_access i {
  3556. cursor: pointer;
  3557. line-height: 300px;
  3558. overflow: hidden
  3559. }
  3560. .create_access a {
  3561. display: none;
  3562. vertical-align: middle;
  3563. margin-left: 10px;
  3564. margin-right: 10px;
  3565. color: #8d8d8d;
  3566. font-size: 14px;
  3567. line-height: normal
  3568. }
  3569. .create_access a strong {
  3570. display: block;
  3571. padding-top: 3px;
  3572. font-weight: 400;
  3573. font-style: normal
  3574. }
  3575. .create_access:hover {
  3576. border-color: #b3b3b3
  3577. }
  3578. .create_access:hover .add_gray {
  3579. display: none
  3580. }
  3581. .create_access:hover a {
  3582. display: inline-block
  3583. }
  3584. .create_access_square_wrp {
  3585. display: inline-block;
  3586. width: 100px;
  3587. height: 100px
  3588. }
  3589. .create_access_square_wrp .create_access_primary {
  3590. line-height: 96px
  3591. }
  3592. .create_access_primary {
  3593. display: block;
  3594. border: 2px dotted #d9dadc;
  3595. line-height: 60px;
  3596. font-size: 0;
  3597. text-align: center;
  3598. margin-bottom: 20px
  3599. }
  3600. .create_access_primary i {
  3601. cursor: pointer;
  3602. line-height: 300px;
  3603. overflow: hidden
  3604. }
  3605. .create_access_primary:hover {
  3606. border-color: #b3b3b3
  3607. }
  3608. .create_access_primary:hover .icon20_common {
  3609. background: url(images/base_z451259.png) 0 -2608px no-repeat
  3610. }
  3611. .create_access_primary:hover .icon35_common {
  3612. background: url(images/base_z451259.png) 0 -2632px no-repeat
  3613. }
  3614. .create_access_primary:hover .icon36_common {
  3615. background: url(images/base_z451259.png) 0 -2671px no-repeat
  3616. }
  3617. .create_access_primary:hover .icon42_common {
  3618. background: url(images/base_z451259.png) 0 -2711px no-repeat
  3619. }
  3620. .scale_tips {
  3621. position: fixed;
  3622. top: 0;
  3623. left: 0;
  3624. right: 0;
  3625. background-color: #fcf6e6;
  3626. line-height: 56px;
  3627. *height: 52px;
  3628. white-space: nowrap;
  3629. color: #8d8d8d;
  3630. text-align: center;
  3631. z-index: 3
  3632. }
  3633. .icon_scale_tips {
  3634. background: url(images/base_z451259.png) 0 -2757px no-repeat;
  3635. width: 20px;
  3636. height: 20px;
  3637. vertical-align: middle;
  3638. display: inline-block;
  3639. margin-top: -0.2em;
  3640. *margin-top: 0;
  3641. margin-right: .5em
  3642. }
  3643. .scale_tips_content {
  3644. display: inline-block;
  3645. *display: inline;
  3646. *zoom: 1;
  3647. vertical-align: middle
  3648. }
  3649. .faqscene {
  3650. position: fixed;
  3651. z-index: 3;
  3652. bottom: 320px;
  3653. left: 0;
  3654. right: 0;
  3655. height: 0
  3656. }
  3657. .faqscene .faqscene_inner {
  3658. width: 1200px;
  3659. height: 0;
  3660. margin: 0 auto;
  3661. position: relative
  3662. }
  3663. .faqscene .faqscene_name {
  3664. float: right;
  3665. text-align: center;
  3666. width: 20px;
  3667. padding: 15px 6px;
  3668. margin-right: -33px;
  3669. line-height: 20px;
  3670. background-color: #fff;
  3671. border: 1px solid #b3b3b4;
  3672. cursor: default
  3673. }
  3674. .faqscene .faqscene_panel {
  3675. position: absolute;
  3676. right: 0;
  3677. bottom: -112px;
  3678. padding: 15px 20px;
  3679. min-width: 300px;
  3680. max-width: 380px;
  3681. word-wrap: break-word;
  3682. word-break: break-all;
  3683. background-color: #fff;
  3684. border: 1px solid #b3b3b4;
  3685. box-shadow: 0 2px #d5d5d5;
  3686. -moz-box-shadow: 0 2px #d5d5d5;
  3687. -webkit-box-shadow: 0 2px #d5d5d5
  3688. }
  3689. .faqscene .faqscene_hd {
  3690. font-size: 16px
  3691. }
  3692. .faqscene .faqscene_tabs a {
  3693. color: #222
  3694. }
  3695. .faqscene .faqscene_tabs .faqscene_tab_hd {
  3696. padding: 10px 0 4px;
  3697. border-bottom: 1px solid #e7e7eb
  3698. }
  3699. .faqscene .faqscene_tabs .faqscene_tab_hd li {
  3700. display: inline-block;
  3701. *display: inline;
  3702. *zoom: 1;
  3703. width: auto;
  3704. overflow: hidden;
  3705. text-overflow: ellipsis;
  3706. white-space: nowrap;
  3707. word-wrap: normal;
  3708. margin-left: 10px
  3709. }
  3710. .faqscene .faqscene_tabs .faqscene_tab_hd li:first-child {
  3711. margin-left: 0
  3712. }
  3713. .faqscene .faqscene_tabs .faqscene_tab_hd li a {
  3714. color: #888;
  3715. text-decoration: none
  3716. }
  3717. .faqscene .faqscene_tabs .faqscene_tab_hd li a:hover, .faqscene .faqscene_tabs .faqscene_tab_hd li a.active {
  3718. color: #222
  3719. }
  3720. .faqscene .faqscene_tabs .faqscene_tab_hd ul {
  3721. width: auto;
  3722. overflow: hidden;
  3723. text-overflow: ellipsis;
  3724. white-space: nowrap;
  3725. word-wrap: normal
  3726. }
  3727. .faqscene .faqscene_tabs .faqscene_tab_bd {
  3728. padding-top: 5px
  3729. }
  3730. .faqscene .faqscene_tabs .faqscene_tab_bd ul {
  3731. padding: 4px 0;
  3732. min-height: 100px
  3733. }
  3734. .faqscene .faqscene_tabs .faqscene_tab_bd li {
  3735. line-height: 30px;
  3736. position: relative;
  3737. padding-left: 10px;
  3738. width: auto;
  3739. overflow: hidden;
  3740. text-overflow: ellipsis;
  3741. white-space: nowrap;
  3742. word-wrap: normal
  3743. }
  3744. .faqscene .faqscene_tabs .faqscene_tab_bd li:before {
  3745. content: ' ';
  3746. font-size: 0;
  3747. width: 4px;
  3748. height: 4px;
  3749. background-color: #c7c7c7;
  3750. border-radius: 2px;
  3751. -moz-border-radius: 2px;
  3752. -webkit-border-radius: 2px;
  3753. position: absolute;
  3754. top: 50%;
  3755. left: 0;
  3756. margin-top: -2px
  3757. }
  3758. .faqscene .faqscene_tabs .faqscene_tab_bd a:hover {
  3759. color: #576b95
  3760. }
  3761. .faqscene .faqscene_ft {
  3762. padding-left: 10px
  3763. }
  3764. .faqscene .faqscene_close {
  3765. position: absolute;
  3766. top: 17px;
  3767. right: 16px;
  3768. display: inline-block;
  3769. *display: inline;
  3770. *zoom: 1;
  3771. width: 18px;
  3772. height: 18px;
  3773. text-align: center;
  3774. line-height: 999px;
  3775. overflow: hidden;
  3776. background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASBAMAAACk4JNkAAAAElBMVEUAAACen6Gen6Gen6Gen6Gen6HHskWrAAAABXRSTlMAowNbXKRhl0MAAAA2SURBVAjXYyAeGCowMAmDWaJCDIqBIAaQUgJyQIBJVDBQgQEiGAoUgrMQsggdCFPgJosQ7xAAAoEFuCOFwmEAAAAASUVORK5CYII=')
  3777. }
  3778. .faqscene .faqscene_close:hover {
  3779. background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASBAMAAACk4JNkAAAAElBMVEUAAACHhoaHhoaHhoaHhoaHhoYqfBoTAAAABXRSTlMAowNbXKRhl0MAAAA2SURBVAjXYyAeGCowMAmDWaJCDIqBIAaQUgJyQIBJVDBQgQEiGAoUgrMQsggdCFPgJosQ7xAAAoEFuCOFwmEAAAAASUVORK5CYII=')
  3780. }
  3781. .faqscene_qrcode_panel {
  3782. position: absolute;
  3783. right: 0;
  3784. text-align: center;
  3785. padding: 10px 20px 15px;
  3786. border: 1px solid #b3b3b4;
  3787. background-color: #fff
  3788. }
  3789. .faqscene_qrcode_panel strong {
  3790. font-weight: 400
  3791. }
  3792. .faqscene_qrcode_panel img {
  3793. display: block;
  3794. margin: 0 auto;
  3795. width: 110px;
  3796. height: 110px
  3797. }
  3798. .profile_link_msg_global.send {
  3799. margin: -15px 0 20px
  3800. }
  3801. .profile_link_msg_global.send_msg {
  3802. margin-top: -9px
  3803. }
  3804. .profile_link_msg_global.reply {
  3805. margin: -15px 0 20px
  3806. }
  3807. .profile_link_msg_global.keywords {
  3808. margin: 0 30px 20px
  3809. }
  3810. .profile_link_msg_global.menu_send {
  3811. margin-top: 4px
  3812. }
  3813. .profile_link_msg_global.menu_url {
  3814. margin: 4px 0 -10px
  3815. }
  3816. .profile_link_msg_global.source_url {
  3817. margin-left: 1.7em
  3818. }
  3819. .icon_menu {
  3820. width: 18px;
  3821. height: 18px;
  3822. vertical-align: middle;
  3823. display: inline-block
  3824. }
  3825. .icon_menu.service {
  3826. background: url(images/base_z451259.png) 0 -2781px no-repeat
  3827. }
  3828. .icon_menu_switch {
  3829. background: url(images/base_z451259.png) 0 -2803px no-repeat;
  3830. width: 16px;
  3831. height: 16px;
  3832. vertical-align: middle;
  3833. display: inline-block
  3834. }
  3835. .closed .icon_menu_switch {
  3836. background: url(images/base_z451259.png) 0 -2823px no-repeat
  3837. }
  3838. .closed.selected .icon_menu_switch {
  3839. background: url(images/base_z451259.png) 0 -2843px no-repeat
  3840. }
  3841. .menu_box {
  3842. margin-bottom: 150px
  3843. }
  3844. .menu {
  3845. padding-top: 6px;
  3846. *font-size: 0
  3847. }
  3848. .menu.closed .menu_item {
  3849. display: none
  3850. }
  3851. .menu_title {
  3852. position: relative;
  3853. padding: 0 30px 0;
  3854. width: auto;
  3855. overflow: hidden;
  3856. text-overflow: ellipsis;
  3857. white-space: nowrap;
  3858. word-wrap: normal;
  3859. line-height: 34px;
  3860. *font-size: 14px;
  3861. color: #8d8d8d
  3862. }
  3863. .menu_title .new {
  3864. margin-left: 3px
  3865. }
  3866. .menu_title a {
  3867. display: block;
  3868. padding: 0 30px 0;
  3869. color: #222;
  3870. text-decoration: none
  3871. }
  3872. .menu_title a:hover {
  3873. text-decoration: none
  3874. }
  3875. .menu_title.clickable {
  3876. padding: 0
  3877. }
  3878. .menu_title.clickable i {
  3879. cursor: pointer
  3880. }
  3881. .menu_title.clickable:hover {
  3882. background-color: #f4f5f9
  3883. }
  3884. .menu_title.selected {
  3885. background-color: #44b549;
  3886. color: #fff
  3887. }
  3888. .menu_title.selected:hover {
  3889. background-color: #44b549
  3890. }
  3891. .menu_title.selected a {
  3892. color: #fff
  3893. }
  3894. .menu_item {
  3895. line-height: 34px;
  3896. *font-size: 14px
  3897. }
  3898. .menu_item a {
  3899. display: block;
  3900. padding: 0 20px 0 58px;
  3901. width: auto;
  3902. overflow: hidden;
  3903. text-overflow: ellipsis;
  3904. white-space: nowrap;
  3905. word-wrap: normal;
  3906. color: #222
  3907. }
  3908. .menu_item a:hover {
  3909. text-decoration: none
  3910. }
  3911. .icon_menu {
  3912. margin-right: 10px;
  3913. margin-top: -0.2em;
  3914. *margin-top: 0
  3915. }
  3916. .icon_menu_switch {
  3917. position: absolute;
  3918. right: 16px;
  3919. top: 50%;
  3920. margin-top: -9px
  3921. }
  3922. .menu {
  3923. padding-bottom: 6px;
  3924. border-top: 1px solid #e7e7eb
  3925. }
  3926. .menu.no_extra {
  3927. border-top-width: 0;
  3928. margin-top: 13px
  3929. }
  3930. .menu.extra {
  3931. border-bottom: 1px solid #e7e7eb
  3932. }
  3933. .menu_title {
  3934. margin-bottom: 0
  3935. }
  3936. .menu_item:hover {
  3937. background-color: #f4f5f9
  3938. }
  3939. .menu_item.selected {
  3940. background-color: #44b549;
  3941. color: #fff
  3942. }
  3943. .menu_item.selected a {
  3944. color: #fff
  3945. }
  3946. .menu_plugins {
  3947. padding: 10px 0;
  3948. *font-size: 14px
  3949. }
  3950. .menu_plugins .btn_plugins_add {
  3951. display: block;
  3952. line-height: 34px;
  3953. color: #8d8d8d;
  3954. padding-left: 41px;
  3955. width: 121px;
  3956. margin: 0 auto;
  3957. background: url(images/base_z451259.png) 0 -2863px no-repeat;
  3958. cursor: pointer
  3959. }
  3960. .menu_plugins .btn_plugins_add:hover {
  3961. text-decoration: none;
  3962. color: #222;
  3963. background: url(images/base_z451259.png) 0 -2901px no-repeat
  3964. }
  3965. .menu_plugins .btn_plugins_add i {
  3966. margin-right: 5px
  3967. }
  3968. .ad_menu {
  3969. margin-bottom: 150px
  3970. }
  3971. .ad_menu .ad_menu_list {
  3972. width: 100%;
  3973. padding: 10px 0
  3974. }
  3975. .ad_menu .ad_menu_list .ad_menu_item {
  3976. width: 100%
  3977. }
  3978. .ad_menu .ad_menu_list .ad_menu_item .menu_link {
  3979. display: block;
  3980. padding: 10px 15px;
  3981. color: #222
  3982. }
  3983. .ad_menu .ad_menu_list .ad_menu_item .menu_link .business_logo {
  3984. width: 36px;
  3985. height: 36px;
  3986. display: inline-block;
  3987. vertical-align: top
  3988. }
  3989. .ad_menu .ad_menu_list .ad_menu_item .menu_link .business_name {
  3990. vertical-align: top;
  3991. width: 100px;
  3992. margin-left: 6px;
  3993. max-height: 40px;
  3994. display: inline-block;
  3995. margin-top: -6px
  3996. }
  3997. .ad_menu .ad_menu_list .ad_menu_item .menu_link:hover, .ad_menu .ad_menu_list .ad_menu_item .menu_link:visited {
  3998. background-color: #f0f1f3;
  3999. text-decoration: none
  4000. }
  4001. .ad_menu .ad_menu_list .ad_menu_item.selected {
  4002. background-color: #f0f1f3
  4003. }
  4004. .menu_primary_box {
  4005. width: 208px
  4006. }
  4007. .menu_primary_item {
  4008. line-height: 32px
  4009. }
  4010. .menu_primary_item:hover {
  4011. background-color: #f4f5f9
  4012. }
  4013. .menu_primary_item.selected {
  4014. background-color: #44b549
  4015. }
  4016. .menu_primary_item.selected .menu_primary_link {
  4017. color: #fff
  4018. }
  4019. .menu_primary_item.sub .menu_primary_link strong {
  4020. margin-left: 28px
  4021. }
  4022. .menu_primary_link {
  4023. display: block;
  4024. color: #222
  4025. }
  4026. .menu_primary_link:hover {
  4027. text-decoration: none
  4028. }
  4029. .menu_primary_link strong {
  4030. display: block;
  4031. cursor: pointer;
  4032. margin: 0 14px;
  4033. width: auto;
  4034. overflow: hidden;
  4035. text-overflow: ellipsis;
  4036. white-space: nowrap;
  4037. word-wrap: normal;
  4038. font-weight: 400;
  4039. font-style: normal
  4040. }
  4041. .inner_menu_box.sorting .inner_menu_item {
  4042. background-color: #fff
  4043. }
  4044. .inner_menu_box.sorting .menu_opr {
  4045. display: block
  4046. }
  4047. .inner_menu_box.gray .inner_menu.dragging dt.inner_menu_item {
  4048. background-color: #f4f5f9
  4049. }
  4050. .inner_menu_box.gray .inner_menu_item:hover, .inner_menu_box.gray .inner_menu_item.selected {
  4051. background-color: #f4f5f9
  4052. }
  4053. .inner_menu_box.gray.sorting .inner_menu_item {
  4054. background-color: #fff
  4055. }
  4056. .inner_menu_box.gray.sorting .inner_menu_item.dragging {
  4057. background-color: #f4f5f9
  4058. }
  4059. .inner_menu_box.with_switch .icon_dot {
  4060. position: absolute;
  4061. top: 50%;
  4062. left: 25px;
  4063. margin-top: -14px;
  4064. -webkit-transform: scale(0.8);
  4065. font-size: 10px
  4066. }
  4067. .inner_menu_box.with_switch dt .inner_menu_link {
  4068. padding-left: 20px
  4069. }
  4070. .inner_menu_box.with_switch dd .inner_menu_link {
  4071. padding-left: 36px
  4072. }
  4073. .inner_menu {
  4074. border-top: 1px solid #e7e7eb
  4075. }
  4076. .inner_menu:first-child {
  4077. border-top-width: 0
  4078. }
  4079. .inner_menu .menu_opr {
  4080. display: none;
  4081. position: absolute;
  4082. top: 0;
  4083. right: 1em
  4084. }
  4085. .inner_menu .menu_opr a {
  4086. display: inline-block;
  4087. margin-left: .5em;
  4088. margin-top: -0.2em
  4089. }
  4090. .inner_menu .menu_opr a.no_extra {
  4091. margin-left: 0
  4092. }
  4093. .inner_menu.no_extra {
  4094. border-top-width: 0
  4095. }
  4096. .inner_menu_item {
  4097. position: relative;
  4098. line-height: 32px
  4099. }
  4100. .inner_menu_item:hover, .inner_menu_item.selected {
  4101. background-color: #f4f5f9
  4102. }
  4103. .inner_menu_item:hover .menu_opr, .inner_menu_item.selected .menu_opr {
  4104. display: block
  4105. }
  4106. .inner_menu_item:hover a, .inner_menu_item.selected a {
  4107. text-decoration: none
  4108. }
  4109. .inner_menu_link {
  4110. display: block;
  4111. color: #222;
  4112. padding-left: 1em;
  4113. text-decoration: none
  4114. }
  4115. .inner_menu_link strong {
  4116. display: inline-block;
  4117. margin-top: -2px;
  4118. width: auto;
  4119. overflow: hidden;
  4120. text-overflow: ellipsis;
  4121. white-space: nowrap;
  4122. word-wrap: normal;
  4123. max-width: 80px;
  4124. font-weight: 400;
  4125. font-style: normal;
  4126. vertical-align: middle;
  4127. cursor: pointer
  4128. }
  4129. .icon_dot {
  4130. display: inline-block;
  4131. font-weight: 400;
  4132. font-style: normal;
  4133. vertical-align: middle;
  4134. margin-top: -0.2em;
  4135. margin-right: 5px;
  4136. font-size: 14px;
  4137. color: #d5d5d5
  4138. }
  4139. .icon_arrow_default {
  4140. background: url(images/base_z451259.png) 0 -2939px no-repeat;
  4141. width: 16px;
  4142. height: 15px;
  4143. vertical-align: middle;
  4144. display: inline-block;
  4145. line-height: 300px;
  4146. overflow: hidden
  4147. }
  4148. .icon_common.new {
  4149. margin-left: 6px;
  4150. background: url(images/base_z451259.png) 0 -2958px no-repeat;
  4151. width: 18px;
  4152. height: 12px;
  4153. vertical-align: middle;
  4154. display: inline-block;
  4155. line-height: 100px;
  4156. overflow: hidden
  4157. }
  4158. .icon_common.beta {
  4159. margin-top: -5px;
  4160. margin-left: 3px;
  4161. background: url(images/base_z451259.png) 0 -2971px no-repeat;
  4162. width: 25px;
  4163. height: 12px;
  4164. vertical-align: middle;
  4165. display: inline-block;
  4166. line-height: 100px;
  4167. overflow: hidden
  4168. }
  4169. .icon13_common {
  4170. width: 13px;
  4171. height: 13px;
  4172. vertical-align: middle;
  4173. display: inline-block;
  4174. line-height: 100px;
  4175. overflow: hidden
  4176. }
  4177. .icon13_common.arrow_right_gray {
  4178. background: transparent url(/mpres/htmledition/common/images/icon/common/icon13_arrow_right_gray3a7b38.png) no-repeat 0 0
  4179. }
  4180. .icon14_common {
  4181. width: 14px;
  4182. height: 14px;
  4183. vertical-align: middle;
  4184. display: inline-block;
  4185. line-height: 100px;
  4186. overflow: hidden
  4187. }
  4188. .icon14_common.rank_gray {
  4189. cursor: pointer;
  4190. background: url(images/base_z451259.png) 0 -2988px no-repeat
  4191. }
  4192. .icon14_common.rank_gray:hover {
  4193. background: url(images/base_z451259.png) 0 -3006px no-repeat
  4194. }
  4195. .single_up .icon14_common.rank_gray, .icon14_common.rank_gray.single_up {
  4196. background: url(images/base_z451259.png) 0 -3024px no-repeat
  4197. }
  4198. .single_up .icon14_common.rank_gray:hover, .icon14_common.rank_gray.single_up:hover {
  4199. background: url(images/base_z451259.png) 0 -3042px no-repeat
  4200. }
  4201. .single_down .icon14_common.rank_gray, .icon14_common.rank_gray.single_down {
  4202. background: url(images/base_z451259.png) 0 -3060px no-repeat
  4203. }
  4204. .single_down .icon14_common.rank_gray:hover, .icon14_common.rank_gray.single_down:hover {
  4205. background: url(images/base_z451259.png) 0 -3078px no-repeat
  4206. }
  4207. .icon14_common.add_white {
  4208. background: url(images/base_z451259.png) 0 -3096px no-repeat
  4209. }
  4210. .icon14_common.add_gray {
  4211. background: url(images/base_z451259.png) 0 -3114px no-repeat
  4212. }
  4213. .icon14_common.add_gray:hover {
  4214. background: url(images/base_z451259.png) 0 -3132px no-repeat
  4215. }
  4216. .icon14_common.edit_gray {
  4217. background: url(images/base_z451259.png) 0 -3150px no-repeat
  4218. }
  4219. .icon14_common.edit_gray:hover {
  4220. background: url(images/base_z451259.png) 0 -3168px no-repeat
  4221. }
  4222. .icon14_common.del_gray {
  4223. background: url(images/base_z451259.png) 0 -3186px no-repeat
  4224. }
  4225. .icon14_common.del_gray:hover {
  4226. background: url(images/base_z451259.png) 0 -3204px no-repeat
  4227. }
  4228. .icon14_common.sort_gray {
  4229. background: url(images/base_z451259.png) 0 -3222px no-repeat
  4230. }
  4231. .icon14_common.sort_gray:hover {
  4232. background: url(images/base_z451259.png) 0 -3240px no-repeat
  4233. }
  4234. .icon14_common.add_blue {
  4235. background: url(images/base_z451259.png) 0 -3258px no-repeat
  4236. }
  4237. .icon14_common.switch_gray {
  4238. background: url(images/base_z451259.png) 0 -3276px no-repeat
  4239. }
  4240. .icon14_common.switch_gray:hover {
  4241. background: url(images/base_z451259.png) 0 -3294px no-repeat
  4242. }
  4243. a:hover .icon14_common.switch_gray {
  4244. background: url(images/base_z451259.png) 0 -3312px no-repeat
  4245. }
  4246. .icon16_common {
  4247. width: 16px;
  4248. height: 16px;
  4249. vertical-align: middle;
  4250. display: inline-block;
  4251. line-height: 100px;
  4252. overflow: hidden
  4253. }
  4254. .icon16_common.waiting_gray {
  4255. background: url(images/base_z451259.png) 0 -3330px no-repeat
  4256. }
  4257. .icon16_common.close {
  4258. background: url(images/base_z451259.png) 0 -3350px no-repeat
  4259. }
  4260. .icon16_common.close:hover {
  4261. background: url(images/base_z451259.png) 0 -3370px no-repeat
  4262. }
  4263. .icon16_common.close_flat {
  4264. background: url(images/base_z451259.png) 0 -3390px no-repeat
  4265. }
  4266. .icon16_common.close_flat:hover {
  4267. background: url(images/base_z451259.png) 0 -3410px no-repeat
  4268. }
  4269. .icon16_common.edit_gray {
  4270. background: url(images/base_z451259.png) 0 -3430px no-repeat
  4271. }
  4272. .icon16_common.del_gray {
  4273. background: url(images/base_z451259.png) 0 -3450px no-repeat
  4274. }
  4275. .icon16_common.enter_gray {
  4276. background: url(images/base_z451259.png) 0 -3470px no-repeat
  4277. }
  4278. .icon16_common.enter_gray.frm_input_append {
  4279. margin-top: -8px
  4280. }
  4281. .icon16_common.star_gray {
  4282. background: url(images/base_z451259.png) 0 -3490px no-repeat
  4283. }
  4284. .icon16_common.star_gray:hover {
  4285. background: url(images/base_z451259.png) 0 -3509px no-repeat
  4286. }
  4287. .icon16_common.star_blue {
  4288. background: url(images/base_z451259.png) 0 -3529px no-repeat
  4289. }
  4290. .icon16_common.star_orange {
  4291. background: url(images/base_z451259.png) 0 -3549px no-repeat
  4292. }
  4293. .icon16_common.star_orange:hover {
  4294. background: url(images/base_z451259.png) 0 -3571px no-repeat
  4295. }
  4296. .icon16_common.woman_orange {
  4297. background: url(images/base_z451259.png) 0 -3591px no-repeat
  4298. }
  4299. .icon16_common.man_blue {
  4300. background: url(images/base_z451259.png) 0 -3611px no-repeat
  4301. }
  4302. .icon16_common.reply_blue {
  4303. background: url(images/base_z451259.png) 0 -3631px no-repeat
  4304. }
  4305. .icon16_common.reply_blue:hover {
  4306. background: url(images/base_z451259.png) 0 -3651px no-repeat
  4307. }
  4308. .icon16_common.del_gray {
  4309. background: url(images/base_z451259.png) 0 -3671px no-repeat
  4310. }
  4311. .icon16_common.del_gray:hover {
  4312. background: url(images/base_z451259.png) 0 -3691px no-repeat
  4313. }
  4314. .icon16_common.search_gray {
  4315. background: url(images/base_z451259.png) 0 -3711px no-repeat
  4316. }
  4317. .icon16_common.sort_gray {
  4318. background: url(images/base_z451259.png) 0 -3731px no-repeat
  4319. }
  4320. .icon16_common.sort_gray:hover {
  4321. background: url(images/base_z451259.png) 0 -3751px no-repeat
  4322. }
  4323. .icon16_common.add_gray {
  4324. background: url(images/base_z451259.png) 0 -3771px no-repeat
  4325. }
  4326. .icon16_common.add_gray:hover {
  4327. background: url(images/base_z451259.png) 0 -3791px no-repeat
  4328. }
  4329. .icon16_common.save_gray {
  4330. background: url(images/base_z451259.png) 0 -3811px no-repeat
  4331. }
  4332. .icon16_common.save_gray:hover {
  4333. background: url(images/base_z451259.png) 0 -3831px no-repeat
  4334. }
  4335. .icon18_common {
  4336. width: 18px;
  4337. height: 18px;
  4338. vertical-align: middle;
  4339. display: inline-block;
  4340. line-height: 100px;
  4341. overflow: hidden
  4342. }
  4343. .icon18_common.woman_orange {
  4344. background: url(images/base_z451259.png) 0 -3851px no-repeat
  4345. }
  4346. .icon18_common.man_blue {
  4347. background: url(images/base_z451259.png) 0 -3873px no-repeat
  4348. }
  4349. .icon18_common.error {
  4350. background: url(images/base_z451259.png) 0 -3895px no-repeat
  4351. }
  4352. .icon18_common.add_blue {
  4353. background: url(images/base_z451259.png) 0 -3917px no-repeat
  4354. }
  4355. .selected .icon18_common.add_blue {
  4356. background: url(images/base_z451259.png) 0 -3939px no-repeat
  4357. }
  4358. .icon18_common.add_white {
  4359. background: url(images/base_z451259.png) 0 -3961px no-repeat
  4360. }
  4361. .icon18_common.del_blue {
  4362. background: url(images/base_z451259.png) 0 -3983px no-repeat
  4363. }
  4364. .icon18_common.del_blue:hover {
  4365. background: url(images/base_z451259.png) 0 -4005px no-repeat
  4366. }
  4367. .icon18_common.del_gray {
  4368. background: url(images/base_z451259.png) 0 -4027px no-repeat
  4369. }
  4370. a:hover .icon18_common.del_gray, .icon18_common.del_gray:hover {
  4371. background: url(images/base_z451259.png) 0 -4049px no-repeat
  4372. }
  4373. .icon18_common.link_gray {
  4374. background: url(images/base_z451259.png) 0 -4071px no-repeat
  4375. }
  4376. .icon18_common.link_gray:hover, .hover .icon18_common.link_gray, a:hover .icon18_common.link_gray {
  4377. background: url(images/base_z451259.png) 0 -4093px no-repeat
  4378. }
  4379. .icon18_common.download_blue {
  4380. background: url(images/base_z451259.png) 0 -4115px no-repeat
  4381. }
  4382. .icon18_common.download_blue:hover {
  4383. background: url(images/base_z451259.png) 0 -4137px no-repeat
  4384. }
  4385. .icon18_common.upload_gray {
  4386. background: url(images/base_z451259.png) 0 -4159px no-repeat
  4387. }
  4388. .icon18_common.upload_gray:hover {
  4389. background: url(images/base_z451259.png) 0 -4181px no-repeat
  4390. }
  4391. .icon18_common.download_simple_gray {
  4392. background: url(images/base_z451259.png) 0 -4203px no-repeat
  4393. }
  4394. .icon18_common.download_simple_gray:hover, a:hover .icon18_common.download_simple_gray {
  4395. background: url(images/base_z451259.png) 0 -4225px no-repeat
  4396. }
  4397. .icon18_common.download_gray {
  4398. background: url(images/base_z451259.png) 0 -4247px no-repeat
  4399. }
  4400. .icon18_common.download_gray:hover, a:hover .icon18_common.download_gray {
  4401. background: url(images/base_z451259.png) 0 -4269px no-repeat
  4402. }
  4403. .icon18_common.move_gray {
  4404. background: url(images/base_z451259.png) 0 -4291px no-repeat
  4405. }
  4406. .icon18_common.move_gray:hover, a:hover .icon18_common.move_gray {
  4407. background: url(images/base_z451259.png) 0 -4313px no-repeat
  4408. }
  4409. .icon18_common.reply_gray {
  4410. background: url(images/base_z451259.png) 0 -4335px no-repeat
  4411. }
  4412. .icon18_common.reply_gray:hover {
  4413. background: url(images/base_z451259.png) 0 -4357px no-repeat
  4414. }
  4415. .icon18_common.star_gray {
  4416. background: url(images/base_z451259.png) 0 -4379px no-repeat
  4417. }
  4418. .icon18_common.star_gray:hover {
  4419. background: url(images/base_z451259.png) 0 -4401px no-repeat
  4420. }
  4421. .icon18_common.save_gray {
  4422. background: url(images/base_z451259.png) 0 -4423px no-repeat
  4423. }
  4424. .icon18_common.save_gray:hover {
  4425. background: url(images/base_z451259.png) 0 -4445px no-repeat
  4426. }
  4427. .icon18_common.edit_blue {
  4428. background: url(images/base_z451259.png) 0 -4467px no-repeat
  4429. }
  4430. .icon18_common.edit_blue:hover {
  4431. background: url(images/base_z451259.png) 0 -4489px no-repeat
  4432. }
  4433. .selected .icon18_common.edit_blue {
  4434. background: url(images/base_z451259.png) 0 -4511px no-repeat
  4435. }
  4436. .icon18_common.zoomout_gray {
  4437. background: url(images/base_z451259.png) 0 -4533px no-repeat
  4438. }
  4439. .icon18_common.zoomout_gray:hover, a:hover .icon18_common.zoomout_gray {
  4440. background: url(images/base_z451259.png) 0 -4555px no-repeat
  4441. }
  4442. .icon18_common.edit_gray {
  4443. background: url(images/base_z451259.png) 0 -4577px no-repeat
  4444. }
  4445. .icon18_common.edit_gray:hover, a:hover .icon18_common.edit_gray {
  4446. background: url(images/base_z451259.png) 0 -4599px no-repeat
  4447. }
  4448. .icon18_common.star_orange {
  4449. background: url(images/base_z451259.png) 0 -4621px no-repeat
  4450. }
  4451. .icon18_common.save_blue {
  4452. background: url(images/base_z451259.png) 0 -4643px no-repeat
  4453. }
  4454. .icon18_common.save_blue:hover {
  4455. background: url(images/base_z451259.png) 0 -4665px no-repeat
  4456. }
  4457. .icon18_common.qrcode_gray {
  4458. background: url(images/base_z451259.png) 0 -4687px no-repeat
  4459. }
  4460. .icon18_common.qrcode_gray:hover, a:hover .icon18_common.qrcode_gray {
  4461. background: url(images/base_z451259.png) 0 -4709px no-repeat
  4462. }
  4463. .icon20_common {
  4464. width: 20px;
  4465. height: 20px;
  4466. vertical-align: middle;
  4467. display: inline-block;
  4468. line-height: 100px;
  4469. overflow: hidden
  4470. }
  4471. .icon20_common.reply_gray {
  4472. background: url(images/base_z451259.png) 0 -4731px no-repeat
  4473. }
  4474. .icon20_common.reply_gray:hover {
  4475. background: url(images/base_z451259.png) 0 -4755px no-repeat
  4476. }
  4477. .icon20_common.speaker {
  4478. background: url(images/base_z451259.png) 0 -4779px no-repeat
  4479. }
  4480. .icon20_common.sort_gray {
  4481. background: url(images/base_z451259.png) 0 -4799px no-repeat
  4482. }
  4483. .icon20_common.sort_up_white {
  4484. background: url(images/base_z451259.png) 0 -4824px no-repeat
  4485. }
  4486. .icon20_common.sort_down_white {
  4487. background: url(images/base_z451259.png) 0 -4848px no-repeat
  4488. }
  4489. .icon20_common.edit_media_white {
  4490. background: url(images/base_z451259.png) 0 -4872px no-repeat
  4491. }
  4492. .icon20_common.del_media_white {
  4493. background: url(images/base_z451259.png) 0 -4896px no-repeat
  4494. }
  4495. .icon21_common {
  4496. width: 21px;
  4497. height: 21px;
  4498. vertical-align: middle;
  4499. display: inline-block;
  4500. line-height: 100px;
  4501. overflow: hidden
  4502. }
  4503. .icon21_common.error {
  4504. background: url(images/base_z451259.png) 0 -4920px no-repeat
  4505. }
  4506. .icon21_common.success {
  4507. background: url(images/base_z451259.png) 0 -4945px no-repeat
  4508. }
  4509. .icon21_common.waiting {
  4510. background: url(images/base_z451259.png) 0 -4970px no-repeat
  4511. }
  4512. .icon22_common {
  4513. width: 22px;
  4514. height: 22px;
  4515. vertical-align: middle;
  4516. display: inline-block;
  4517. line-height: 100px;
  4518. overflow: hidden
  4519. }
  4520. .icon22_common.checked {
  4521. background: url(images/base_z451259.png) 0 -4995px no-repeat
  4522. }
  4523. .icon22_common.error {
  4524. background: url(images/base_z451259.png) 0 -5021px no-repeat
  4525. }
  4526. .icon22_common.success {
  4527. background: url(images/base_z451259.png) 0 -5047px no-repeat
  4528. }
  4529. .icon22_common.fail {
  4530. background: url(images/base_z451259.png) 0 -5073px no-repeat
  4531. }
  4532. .icon24_common {
  4533. width: 24px;
  4534. height: 24px;
  4535. vertical-align: middle;
  4536. display: inline-block;
  4537. line-height: 100px;
  4538. overflow: hidden
  4539. }
  4540. .icon24_common.add_gray {
  4541. background: url(images/base_z451259.png) 0 -5099px no-repeat
  4542. }
  4543. .icon24_common.sort_up_white {
  4544. background: url(images/base_z451259.png) 0 -5127px no-repeat
  4545. }
  4546. .icon24_common.sort_down_white {
  4547. background: url(images/base_z451259.png) 0 -5155px no-repeat
  4548. }
  4549. .icon24_common.del_media_white {
  4550. background: url(images/base_z451259.png) 0 -5183px no-repeat
  4551. }
  4552. .icon28_common {
  4553. width: 28px;
  4554. height: 28px;
  4555. vertical-align: middle;
  4556. display: inline-block;
  4557. line-height: 100px;
  4558. overflow: hidden
  4559. }
  4560. .icon28_common.upload_blue {
  4561. background: url(images/base_z451259.png) 0 -5211px no-repeat
  4562. }
  4563. .icon_dot {
  4564. font-family: "Microsoft YaHei", sans-serif
  4565. }
  4566. .icon12_del {
  4567. display: inline-block;
  4568. text-decoration: none;
  4569. vertical-align: middle;
  4570. font-weight: 400;
  4571. font-style: normal;
  4572. cursor: pointer;
  4573. font-size: 12px;
  4574. color: #b3b3b3
  4575. }
  4576. .icon12_del:hover {
  4577. color: #545454
  4578. }
  4579. .icon_loading_small {
  4580. width: 40px;
  4581. height: 40px;
  4582. vertical-align: middle;
  4583. display: inline-block;
  4584. line-height: 100px;
  4585. overflow: hidden
  4586. }
  4587. .icon_loading_small.white {
  4588. background: transparent url(/mpres/htmledition/images/icon/loading/icon40_loading_white3a7b38.gif) no-repeat 0 0
  4589. }
  4590. .icon_loading_small.gray {
  4591. background: transparent url(/mpres/htmledition/images/icon/loading/icon40_loading_gray3a7b38.gif) no-repeat 0 0
  4592. }
  4593. .icon32_loading {
  4594. width: 32px;
  4595. height: 32px;
  4596. vertical-align: middle;
  4597. display: inline-block;
  4598. line-height: 100px;
  4599. overflow: hidden
  4600. }
  4601. .icon46_loading {
  4602. width: 46px;
  4603. height: 46px;
  4604. vertical-align: middle;
  4605. display: inline-block;
  4606. line-height: 100px;
  4607. overflow: hidden
  4608. }
  4609. .icon46_loading.light {
  4610. width: 46px;
  4611. height: 46px;
  4612. vertical-align: middle;
  4613. display: inline-block;
  4614. -webkit-animation: loadingAnimation 1.6s linear infinite forwards;
  4615. -moz-animation: loadingAnimation 1.6s linear infinite forwards;
  4616. -ms-animation: loadingAnimation 1.6s linear infinite forwards;
  4617. animation: loadingAnimation 1.6s linear infinite forwards
  4618. }
  4619. @-webkit-keyframes loadingAnimation {
  4620. 0% {
  4621. -webkit-transform-origin: center center;
  4622. -webkit-transform: rotate(0deg)
  4623. }
  4624. 25% {
  4625. -webkit-transform-origin: center center;
  4626. -webkit-transform: rotate(90deg)
  4627. }
  4628. 50% {
  4629. -webkit-transform-origin: center center;
  4630. -webkit-transform: rotate(180deg)
  4631. }
  4632. 75% {
  4633. -webkit-transform-origin: center center;
  4634. -webkit-transform: rotate(270deg)
  4635. }
  4636. 100% {
  4637. -webkit-transform-origin: center center;
  4638. -webkit-transform: rotate(360deg)
  4639. }
  4640. }
  4641. @-moz-keyframes loadingAnimation {
  4642. 0% {
  4643. -moz-transform-origin: center center;
  4644. -moz-transform: rotate(0deg)
  4645. }
  4646. 25% {
  4647. -moz-transform-origin: center center;
  4648. -moz-transform: rotate(90deg)
  4649. }
  4650. 50% {
  4651. -moz-transform-origin: center center;
  4652. -moz-transform: rotate(180deg)
  4653. }
  4654. 75% {
  4655. -moz-transform-origin: center center;
  4656. -moz-transform: rotate(270deg)
  4657. }
  4658. 100% {
  4659. -moz-transform-origin: center center;
  4660. -moz-transform: rotate(360deg)
  4661. }
  4662. }
  4663. @-ms-keyframes loadingAnimation {
  4664. 0% {
  4665. -ms-transform-origin: center center;
  4666. -ms-transform: rotate(0deg)
  4667. }
  4668. 25% {
  4669. -ms-transform-origin: center center;
  4670. -ms-transform: rotate(90deg)
  4671. }
  4672. 50% {
  4673. -ms-transform-origin: center center;
  4674. -ms-transform: rotate(180deg)
  4675. }
  4676. 75% {
  4677. -ms-transform-origin: center center;
  4678. -ms-transform: rotate(270deg)
  4679. }
  4680. 100% {
  4681. -ms-transform-origin: center center;
  4682. -ms-transform: rotate(360deg)
  4683. }
  4684. }
  4685. @keyframes loadingAnimation {
  4686. 0% {
  4687. transform-origin: center center;
  4688. transform: rotate(0deg)
  4689. }
  4690. 25% {
  4691. transform-origin: center center;
  4692. transform: rotate(90deg)
  4693. }
  4694. 50% {
  4695. transform-origin: center center;
  4696. transform: rotate(180deg)
  4697. }
  4698. 75% {
  4699. transform-origin: center center;
  4700. transform: rotate(270deg)
  4701. }
  4702. 100% {
  4703. transform-origin: center center;
  4704. transform: rotate(360deg)
  4705. }
  4706. }
  4707. .icon_mini_tips {
  4708. width: 16px;
  4709. height: 16px;
  4710. vertical-align: middle;
  4711. display: inline-block;
  4712. line-height: 100px;
  4713. overflow: hidden
  4714. }
  4715. .icon_mini_tips.document_link {
  4716. background: url(images/base_z451259.png) 0 -5243px no-repeat
  4717. }
  4718. .icon_mini_tips.ask_white {
  4719. background: url(images/base_z451259.png) 0 -5263px no-repeat
  4720. }
  4721. .icon_verify {
  4722. width: 82px;
  4723. height: 30px;
  4724. vertical-align: middle;
  4725. display: inline-block
  4726. }
  4727. .icon_verify.waiting {
  4728. background: url(images/base_z451259.png) 0 -5283px no-repeat
  4729. }
  4730. .icon_verify.fail {
  4731. background: url(images/base_z451259.png) 0 -5317px no-repeat
  4732. }
  4733. .icon_verify_checked {
  4734. background: url(images/base_z451259.png) 0 -5351px no-repeat;
  4735. width: 16px;
  4736. height: 16px;
  4737. vertical-align: middle;
  4738. display: inline-block
  4739. }
  4740. .icon_wxverify_status {
  4741. display: inline-block;
  4742. vertical-align: middle
  4743. }
  4744. .icon_wxverify_status.name_waiting {
  4745. width: 86px;
  4746. height: 24px;
  4747. background: url(images/base_z451259.png) 0 -5371px no-repeat
  4748. }
  4749. .icon_wxverify_status.file_success {
  4750. width: 96px;
  4751. height: 24px;
  4752. background: url(images/base_z451259.png) 0 -5399px no-repeat
  4753. }
  4754. .icon_card_selected {
  4755. background: url(images/base_z451259.png) 0 -5427px no-repeat;
  4756. width: 46px;
  4757. height: 46px;
  4758. vertical-align: middle;
  4759. display: inline-block
  4760. }
  4761. .icon_noie6 {
  4762. width: 369px;
  4763. height: 390px;
  4764. vertical-align: middle;
  4765. display: inline-block
  4766. }
  4767. .icon_tag_default {
  4768. line-height: 100px;
  4769. overflow: hidden;
  4770. width: 38px;
  4771. height: 20px;
  4772. vertical-align: middle;
  4773. display: inline-block;
  4774. margin-top: -0.2em
  4775. }
  4776. .icon_tag_default.original {
  4777. background: url(images/base_z451259.png) 0 -5477px no-repeat
  4778. }
  4779. .icon_tag_default.republish {
  4780. background: url(images/base_z451259.png) 0 -5501px no-repeat
  4781. }
  4782. .icon_tag_global {
  4783. display: inline-block;
  4784. vertical-align: middle;
  4785. padding: 1px .7em;
  4786. font-size: 14px;
  4787. line-height: 1.3;
  4788. color: #8d8d8d;
  4789. border: 1px solid #9e9e9e;
  4790. background-color: #fff;
  4791. overflow: hidden;
  4792. border-top-left-radius: 10px 50%;
  4793. -moz-border-radius-topleft: 10px 50%;
  4794. -webkit-border-top-left-radius: 10px 50%;
  4795. border-top-right-radius: 10px 50%;
  4796. -moz-border-radius-topright: 10px 50%;
  4797. -webkit-border-top-right-radius: 10px 50%;
  4798. border-bottom-left-radius: 10px 50%;
  4799. -moz-border-radius-bottomleft: 10px 50%;
  4800. -webkit-border-bottom-left-radius: 10px 50%;
  4801. border-bottom-right-radius: 10px 50%;
  4802. -moz-border-radius-bottomright: 10px 50%;
  4803. -webkit-border-bottom-right-radius: 10px 50%
  4804. }
  4805. .icon_tag_global_del {
  4806. margin-left: 5px;
  4807. margin-top: -0.2em;
  4808. line-height: 999px;
  4809. overflow: hidden;
  4810. background: url(images/base_z451259.png) 0 -5525px no-repeat;
  4811. width: 14px;
  4812. height: 14px;
  4813. vertical-align: middle;
  4814. display: inline-block;
  4815. vertical-align: -3px;
  4816. cursor: pointer
  4817. }
  4818. .icon_tag_global_del:hover {
  4819. background: url(images/base_z451259.png) 0 -5543px no-repeat
  4820. }
  4821. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  4822. .icon_msg.phone {
  4823. background-size: 144px auto
  4824. }
  4825. }