global.css 211 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439
  1. @charset "UTF-8";
  2. /*! normalize.css v1.1.3 | MIT License | git.io/normalize */
  3. /* ==========================================================================
  4. HTML5 display definitions
  5. ========================================================================== */
  6. /**
  7. * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
  8. */
  9. article,
  10. aside,
  11. details,
  12. figcaption,
  13. figure,
  14. footer,
  15. header,
  16. hgroup,
  17. main,
  18. nav,
  19. section,
  20. summary {
  21. display: block; }
  22. /**
  23. * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  24. */
  25. audio,
  26. canvas,
  27. video {
  28. display: inline-block;
  29. *display: inline;
  30. *zoom: 1; }
  31. /**
  32. * Prevent modern browsers from displaying `audio` without controls.
  33. * Remove excess height in iOS 5 devices.
  34. */
  35. audio:not([controls]) {
  36. display: none;
  37. height: 0; }
  38. /**
  39. * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
  40. * Known issue: no IE 6 support.
  41. */
  42. [hidden] {
  43. display: none; }
  44. /* ==========================================================================
  45. Base
  46. ========================================================================== */
  47. /**
  48. * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
  49. * `em` units.
  50. * 2. Prevent iOS text size adjust after orientation change, without disabling
  51. * user zoom.
  52. */
  53. html {
  54. font-size: 100%;
  55. /* 1 */
  56. -ms-text-size-adjust: 100%;
  57. /* 2 */
  58. -webkit-text-size-adjust: 100%;
  59. /* 2 */ }
  60. /**
  61. * Address margins handled incorrectly in IE 6/7.
  62. */
  63. body {
  64. margin: 0; }
  65. /* ==========================================================================
  66. Links
  67. ========================================================================== */
  68. /**
  69. * Address `outline` inconsistency between Chrome and other browsers.
  70. */
  71. a:focus {
  72. outline: thin dotted; }
  73. /**
  74. * Improve readability when focused and also mouse hovered in all browsers.
  75. */
  76. a:active,
  77. a:hover {
  78. outline: 0; }
  79. /* ==========================================================================
  80. Typography
  81. ========================================================================== */
  82. /**
  83. * Address font sizes and margins set differently in IE 6/7.
  84. * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
  85. * and Chrome.
  86. */
  87. h1 {
  88. font-size: 2em;
  89. margin: 0.67em 0; }
  90. h2 {
  91. font-size: 1.5em;
  92. margin: 0.83em 0; }
  93. h3 {
  94. font-size: 1.17em;
  95. margin: 1em 0; }
  96. h4 {
  97. font-size: 1em;
  98. margin: 1.33em 0; }
  99. h5 {
  100. font-size: 0.83em;
  101. margin: 1.67em 0; }
  102. h6 {
  103. font-size: 0.67em;
  104. margin: 2.33em 0; }
  105. /**
  106. * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
  107. */
  108. abbr[title] {
  109. border-bottom: 1px dotted; }
  110. /**
  111. * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
  112. */
  113. b,
  114. strong {
  115. font-weight: bold; }
  116. blockquote {
  117. margin: 1em 40px; }
  118. /**
  119. * Address styling not present in Safari 5 and Chrome.
  120. */
  121. dfn {
  122. font-style: italic; }
  123. /**
  124. * Address differences between Firefox and other browsers.
  125. * Known issue: no IE 6/7 normalization.
  126. */
  127. hr {
  128. -moz-box-sizing: content-box;
  129. box-sizing: content-box;
  130. height: 0; }
  131. /**
  132. * Address styling not present in IE 6/7/8/9.
  133. */
  134. mark {
  135. background: #ff0;
  136. color: #000; }
  137. /**
  138. * Address margins set differently in IE 6/7.
  139. */
  140. p,
  141. pre {
  142. margin: 1em 0; }
  143. /**
  144. * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
  145. */
  146. code,
  147. kbd,
  148. pre,
  149. samp {
  150. font-family: monospace, serif;
  151. _font-family: 'courier new', monospace;
  152. font-size: 1em; }
  153. /**
  154. * Improve readability of pre-formatted text in all browsers.
  155. */
  156. pre {
  157. white-space: pre;
  158. white-space: pre-wrap;
  159. word-wrap: break-word; }
  160. /**
  161. * Address CSS quotes not supported in IE 6/7.
  162. */
  163. q {
  164. quotes: none; }
  165. /**
  166. * Address `quotes` property not supported in Safari 4.
  167. */
  168. q:before,
  169. q:after {
  170. content: '';
  171. content: none; }
  172. /**
  173. * Address inconsistent and variable font size in all browsers.
  174. */
  175. small {
  176. font-size: 80%; }
  177. /**
  178. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  179. */
  180. sub,
  181. sup {
  182. font-size: 75%;
  183. line-height: 0;
  184. position: relative;
  185. vertical-align: baseline; }
  186. sup {
  187. top: -0.5em; }
  188. sub {
  189. bottom: -0.25em; }
  190. /* ==========================================================================
  191. Lists
  192. ========================================================================== */
  193. /**
  194. * Address margins set differently in IE 6/7.
  195. */
  196. dl,
  197. menu,
  198. ol,
  199. ul {
  200. margin: 1em 0; }
  201. dd {
  202. margin: 0 0 0 40px; }
  203. /**
  204. * Address paddings set differently in IE 6/7.
  205. */
  206. menu,
  207. ol,
  208. ul {
  209. padding: 0 0 0 40px; }
  210. /**
  211. * Correct list images handled incorrectly in IE 7.
  212. */
  213. nav ul,
  214. nav ol {
  215. list-style: none;
  216. list-style-image: none; }
  217. /* ==========================================================================
  218. Embedded content
  219. ========================================================================== */
  220. /**
  221. * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
  222. * 2. Improve image quality when scaled in IE 7.
  223. */
  224. img {
  225. border: 0;
  226. /* 1 */
  227. -ms-interpolation-mode: bicubic;
  228. /* 2 */ }
  229. /**
  230. * Correct overflow displayed oddly in IE 9.
  231. */
  232. svg:not(:root) {
  233. overflow: hidden; }
  234. /* ==========================================================================
  235. Figures
  236. ========================================================================== */
  237. /**
  238. * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
  239. */
  240. figure {
  241. margin: 0; }
  242. /* ==========================================================================
  243. Forms
  244. ========================================================================== */
  245. /**
  246. * Correct margin displayed oddly in IE 6/7.
  247. */
  248. form {
  249. margin: 0; }
  250. /**
  251. * Define consistent border, margin, and padding.
  252. */
  253. fieldset {
  254. border: 1px solid #c0c0c0;
  255. margin: 0 2px;
  256. padding: 0.35em 0.625em 0.75em; }
  257. /**
  258. * 1. Correct color not being inherited in IE 6/7/8/9.
  259. * 2. Correct text not wrapping in Firefox 3.
  260. * 3. Correct alignment displayed oddly in IE 6/7.
  261. */
  262. legend {
  263. border: 0;
  264. /* 1 */
  265. padding: 0;
  266. white-space: normal;
  267. /* 2 */
  268. *margin-left: -7px;
  269. /* 3 */ }
  270. /**
  271. * 1. Correct font size not being inherited in all browsers.
  272. * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
  273. * and Chrome.
  274. * 3. Improve appearance and consistency in all browsers.
  275. */
  276. button,
  277. input,
  278. select,
  279. textarea {
  280. font-size: 100%;
  281. /* 1 */
  282. margin: 0;
  283. /* 2 */
  284. vertical-align: middle;
  285. /* 3 */ }
  286. /**
  287. * Address Firefox 3+ setting `line-height` on `input` using `!important` in
  288. * the UA stylesheet.
  289. */
  290. button,
  291. input {
  292. line-height: normal; }
  293. /**
  294. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  295. * All other form control elements do not inherit `text-transform` values.
  296. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
  297. * Correct `select` style inheritance in Firefox 4+ and Opera.
  298. */
  299. button,
  300. select {
  301. text-transform: none; }
  302. /**
  303. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  304. * and `video` controls.
  305. * 2. Correct inability to style clickable `input` types in iOS.
  306. * 3. Improve usability and consistency of cursor style between image-type
  307. * `input` and others.
  308. * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
  309. * Known issue: inner spacing remains in IE 6.
  310. */
  311. button,
  312. html input[type="button"],
  313. input[type="reset"],
  314. input[type="submit"] {
  315. -webkit-appearance: button;
  316. /* 2 */
  317. cursor: pointer;
  318. /* 3 */
  319. *overflow: visible;
  320. /* 4 */ }
  321. /**
  322. * Re-set default cursor for disabled elements.
  323. */
  324. button[disabled],
  325. html input[disabled] {
  326. cursor: default; }
  327. /**
  328. * 1. Address box sizing set to content-box in IE 8/9.
  329. * 2. Remove excess padding in IE 8/9.
  330. * 3. Remove excess padding in IE 7.
  331. * Known issue: excess padding remains in IE 6.
  332. */
  333. input[type="checkbox"],
  334. input[type="radio"] {
  335. box-sizing: border-box;
  336. /* 1 */
  337. padding: 0;
  338. /* 2 */
  339. *height: 13px;
  340. /* 3 */
  341. *width: 13px;
  342. /* 3 */ }
  343. /**
  344. * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  345. * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  346. * (include `-moz` to future-proof).
  347. */
  348. input[type="search"] {
  349. -webkit-appearance: textfield;
  350. /* 1 */
  351. -moz-box-sizing: content-box;
  352. -webkit-box-sizing: content-box;
  353. /* 2 */
  354. box-sizing: content-box; }
  355. /**
  356. * Remove inner padding and search cancel button in Safari 5 and Chrome
  357. * on OS X.
  358. */
  359. input[type="search"]::-webkit-search-cancel-button,
  360. input[type="search"]::-webkit-search-decoration {
  361. -webkit-appearance: none; }
  362. /**
  363. * Remove inner padding and border in Firefox 3+.
  364. */
  365. button::-moz-focus-inner,
  366. input::-moz-focus-inner {
  367. border: 0;
  368. padding: 0; }
  369. /**
  370. * 1. Remove default vertical scrollbar in IE 6/7/8/9.
  371. * 2. Improve readability and alignment in all browsers.
  372. */
  373. textarea {
  374. overflow: auto;
  375. /* 1 */
  376. vertical-align: top;
  377. /* 2 */ }
  378. /* ==========================================================================
  379. Tables
  380. ========================================================================== */
  381. /**
  382. * Remove most spacing between table cells.
  383. */
  384. table {
  385. border-collapse: collapse;
  386. border-spacing: 0; }
  387. .video, .video .box-bd .mod-pic, .hover-content .hover-hd, .personal, .text .more-info, .fight-rank, .phone-card .left-part ul, .da-ye-types, .my-card .left-part .top, .my-card .left-part .small ul, .my-card .left-part .block ul, .my-card .right-part, .my-card .right-part ul li, .my-card .right-part ul li p, .mobile-huya .huya-ad-v2, .da-ye-bd ul, .mod-top .no-data, .mod-bottom, .mod-bottom .right-part .right-hd, .academy, .academy ul, .hero-rank, .hero-rank .hero-detail-list .thead-simulate, .heros-content .mod-pic, .information, .information .right, .information .left, .activecenter, .activecenter .mod-slide, .activecenter .mod-act-m, .live, .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .tag, .live .more-live, .live .more-live .nav-right, .live .directroom-poplayer, .live .directroom-poplayer .vs-team, .change-name .tips, .search-box, .whole-game .box-hd, .whole-wrap .box-hd, .whole-game .top-game, .whole-wrap .top-game, .whole-game .top-game ul, .whole-wrap .top-game ul, .whole-game .top-game ul li, .whole-wrap .top-game ul li, .whole-game .mod-tabs-hd, .whole-wrap .mod-tabs-hd, .whole-game .mod-tabs-bd .popgame-list, .whole-wrap .mod-tabs-bd .popgame-list, .message .mod-tabs-content .title, .clothes-hero .hero-content ul, .clothes-hero .hero-content .bottom, .clothes-hero .hero-content .bottom .right-btns, .clothes-hero .hero-content .tip .inner .title, .clothes-hero .hero-content .tip .inner .content .main, .clothes-hero .hero-content .hover-tip .main ul, .clothes-detail .detail-top, .clothes-detail .detail-content li, .clothes-detail .detail-content li .title, .clothes-detail .detail-content li .img-block-wrap, .agency .mod-tabs-hd, .agency .center-top, .agency .content-right, .agency .content-right .vip-content, .agency .center-bottom li .icons, .agency .select-area, .agency .channel, .agency .select, .more-box ul, .bbs-box .rank-ul.username .ul-top, .bbs-box .mod-tabs-hd, .bbs-box ul.top-nav, .bbs-box .sub-nav, .check-card .inner, .check-card .win-hd, .check-card .win-bd .top-line, .check-card .win-bd-content li, .check-card .win-bd-content li .post-info-link, .check-card .win-bd-content li .post-reply, .sameCity .area, .aonic .area, .clearfix, .mod-tabs-trigger, .top-message, .personal-top {
  388. *zoom: 1; }
  389. .video:before, .video .box-bd .mod-pic:before, .hover-content .hover-hd:before, .personal:before, .text .more-info:before, .fight-rank:before, .phone-card .left-part ul:before, .da-ye-types:before, .my-card .left-part .top:before, .my-card .left-part .small ul:before, .my-card .left-part .block ul:before, .my-card .right-part:before, .my-card .right-part ul li:before, .my-card .right-part ul li p:before, .mobile-huya .huya-ad-v2:before, .da-ye-bd ul:before, .mod-top .no-data:before, .mod-bottom:before, .mod-bottom .right-part .right-hd:before, .academy:before, .academy ul:before, .hero-rank:before, .hero-rank .hero-detail-list .thead-simulate:before, .heros-content .mod-pic:before, .information:before, .information .right:before, .information .left:before, .activecenter:before, .activecenter .mod-slide:before, .activecenter .mod-act-m:before, .live:before, .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .tag:before, .live .more-live:before, .live .more-live .nav-right:before, .live .directroom-poplayer:before, .live .directroom-poplayer .vs-team:before, .change-name .tips:before, .search-box:before, .whole-game .box-hd:before, .whole-wrap .box-hd:before, .whole-game .top-game:before, .whole-wrap .top-game:before, .whole-game .top-game ul:before, .whole-wrap .top-game ul:before, .whole-game .top-game ul li:before, .whole-wrap .top-game ul li:before, .whole-game .mod-tabs-hd:before, .whole-wrap .mod-tabs-hd:before, .whole-game .mod-tabs-bd .popgame-list:before, .whole-wrap .mod-tabs-bd .popgame-list:before, .message .mod-tabs-content .title:before, .clothes-hero .hero-content ul:before, .clothes-hero .hero-content .bottom:before, .clothes-hero .hero-content .bottom .right-btns:before, .clothes-hero .hero-content .tip .inner .title:before, .clothes-hero .hero-content .tip .inner .content .main:before, .clothes-hero .hero-content .hover-tip .main ul:before, .clothes-detail .detail-top:before, .clothes-detail .detail-content li:before, .clothes-detail .detail-content li .title:before, .clothes-detail .detail-content li .img-block-wrap:before, .agency .mod-tabs-hd:before, .agency .center-top:before, .agency .content-right:before, .agency .content-right .vip-content:before, .agency .center-bottom li .icons:before, .agency .select-area:before, .agency .channel:before, .agency .select:before, .more-box ul:before, .bbs-box .rank-ul.username .ul-top:before, .bbs-box .mod-tabs-hd:before, .bbs-box ul.top-nav:before, .bbs-box .sub-nav:before, .check-card .inner:before, .check-card .win-hd:before, .check-card .win-bd .top-line:before, .check-card .win-bd-content li:before, .check-card .win-bd-content li .post-info-link:before, .check-card .win-bd-content li .post-reply:before, .sameCity .area:before, .aonic .area:before, .clearfix:before, .mod-tabs-trigger:before, .top-message:before, .personal-top:before, .video:after, .video .box-bd .mod-pic:after, .hover-content .hover-hd:after, .personal:after, .text .more-info:after, .fight-rank:after, .phone-card .left-part ul:after, .da-ye-types:after, .my-card .left-part .top:after, .my-card .left-part .small ul:after, .my-card .left-part .block ul:after, .my-card .right-part:after, .my-card .right-part ul li:after, .my-card .right-part ul li p:after, .mobile-huya .huya-ad-v2:after, .da-ye-bd ul:after, .mod-top .no-data:after, .mod-bottom:after, .mod-bottom .right-part .right-hd:after, .academy:after, .academy ul:after, .hero-rank:after, .hero-rank .hero-detail-list .thead-simulate:after, .heros-content .mod-pic:after, .information:after, .information .right:after, .information .left:after, .activecenter:after, .activecenter .mod-slide:after, .activecenter .mod-act-m:after, .live:after, .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .tag:after, .live .more-live:after, .live .more-live .nav-right:after, .live .directroom-poplayer:after, .live .directroom-poplayer .vs-team:after, .change-name .tips:after, .search-box:after, .whole-game .box-hd:after, .whole-wrap .box-hd:after, .whole-game .top-game:after, .whole-wrap .top-game:after, .whole-game .top-game ul:after, .whole-wrap .top-game ul:after, .whole-game .top-game ul li:after, .whole-wrap .top-game ul li:after, .whole-game .mod-tabs-hd:after, .whole-wrap .mod-tabs-hd:after, .whole-game .mod-tabs-bd .popgame-list:after, .whole-wrap .mod-tabs-bd .popgame-list:after, .message .mod-tabs-content .title:after, .clothes-hero .hero-content ul:after, .clothes-hero .hero-content .bottom:after, .clothes-hero .hero-content .bottom .right-btns:after, .clothes-hero .hero-content .tip .inner .title:after, .clothes-hero .hero-content .tip .inner .content .main:after, .clothes-hero .hero-content .hover-tip .main ul:after, .clothes-detail .detail-top:after, .clothes-detail .detail-content li:after, .clothes-detail .detail-content li .title:after, .clothes-detail .detail-content li .img-block-wrap:after, .agency .mod-tabs-hd:after, .agency .center-top:after, .agency .content-right:after, .agency .content-right .vip-content:after, .agency .center-bottom li .icons:after, .agency .select-area:after, .agency .channel:after, .agency .select:after, .more-box ul:after, .bbs-box .rank-ul.username .ul-top:after, .bbs-box .mod-tabs-hd:after, .bbs-box ul.top-nav:after, .bbs-box .sub-nav:after, .check-card .inner:after, .check-card .win-hd:after, .check-card .win-bd .top-line:after, .check-card .win-bd-content li:after, .check-card .win-bd-content li .post-info-link:after, .check-card .win-bd-content li .post-reply:after, .sameCity .area:after, .aonic .area:after, .clearfix:after, .mod-tabs-trigger:after, .top-message:after, .personal-top:after {
  390. content: "";
  391. display: table;
  392. line-height: 0; }
  393. .video:after, .video .box-bd .mod-pic:after, .hover-content .hover-hd:after, .personal:after, .text .more-info:after, .fight-rank:after, .phone-card .left-part ul:after, .da-ye-types:after, .my-card .left-part .top:after, .my-card .left-part .small ul:after, .my-card .left-part .block ul:after, .my-card .right-part:after, .my-card .right-part ul li:after, .my-card .right-part ul li p:after, .mobile-huya .huya-ad-v2:after, .da-ye-bd ul:after, .mod-top .no-data:after, .mod-bottom:after, .mod-bottom .right-part .right-hd:after, .academy:after, .academy ul:after, .hero-rank:after, .hero-rank .hero-detail-list .thead-simulate:after, .heros-content .mod-pic:after, .information:after, .information .right:after, .information .left:after, .activecenter:after, .activecenter .mod-slide:after, .activecenter .mod-act-m:after, .live:after, .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .tag:after, .live .more-live:after, .live .more-live .nav-right:after, .live .directroom-poplayer:after, .live .directroom-poplayer .vs-team:after, .change-name .tips:after, .search-box:after, .whole-game .box-hd:after, .whole-wrap .box-hd:after, .whole-game .top-game:after, .whole-wrap .top-game:after, .whole-game .top-game ul:after, .whole-wrap .top-game ul:after, .whole-game .top-game ul li:after, .whole-wrap .top-game ul li:after, .whole-game .mod-tabs-hd:after, .whole-wrap .mod-tabs-hd:after, .whole-game .mod-tabs-bd .popgame-list:after, .whole-wrap .mod-tabs-bd .popgame-list:after, .message .mod-tabs-content .title:after, .clothes-hero .hero-content ul:after, .clothes-hero .hero-content .bottom:after, .clothes-hero .hero-content .bottom .right-btns:after, .clothes-hero .hero-content .tip .inner .title:after, .clothes-hero .hero-content .tip .inner .content .main:after, .clothes-hero .hero-content .hover-tip .main ul:after, .clothes-detail .detail-top:after, .clothes-detail .detail-content li:after, .clothes-detail .detail-content li .title:after, .clothes-detail .detail-content li .img-block-wrap:after, .agency .mod-tabs-hd:after, .agency .center-top:after, .agency .content-right:after, .agency .content-right .vip-content:after, .agency .center-bottom li .icons:after, .agency .select-area:after, .agency .channel:after, .agency .select:after, .more-box ul:after, .bbs-box .rank-ul.username .ul-top:after, .bbs-box .mod-tabs-hd:after, .bbs-box ul.top-nav:after, .bbs-box .sub-nav:after, .check-card .inner:after, .check-card .win-hd:after, .check-card .win-bd .top-line:after, .check-card .win-bd-content li:after, .check-card .win-bd-content li .post-info-link:after, .check-card .win-bd-content li .post-reply:after, .sameCity .area:after, .aonic .area:after, .clearfix:after, .mod-tabs-trigger:after, .top-message:after, .personal-top:after {
  394. clear: both; }
  395. .video .r-c {
  396. width: 210px;
  397. margin-top: -3px; }
  398. .video .r-c .hd h3 {
  399. font-size: 12px;
  400. font-weight: bold;
  401. color: #666; }
  402. .video .r-c .mod-art {
  403. margin-top: 6px;
  404. height: 396px;
  405. overflow: hidden; }
  406. .video .r-c .mod-art li {
  407. height: 34px;
  408. padding: 10px 8px;
  409. background-color: #f3f3f3;
  410. margin-bottom: 3px;
  411. *margin-bottom: -2px; }
  412. .video .r-c .mod-art li.first {
  413. background-color: #ecf3f9; }
  414. .video .r-c .mod-art li .num {
  415. display: inline-block;
  416. *display: inline;
  417. *zoom: 1;
  418. width: 16px;
  419. height: 15px;
  420. line-height: 15px;
  421. text-align: center;
  422. background-color: #a8bfd1;
  423. color: #fff;
  424. font-style: normal;
  425. -webkit-border-radius: 3px;
  426. border-radius: 3px;
  427. -webkit-background-clip: padding-box;
  428. -moz-background-clip: padding;
  429. background-clip: padding-box; }
  430. .video .r-c .mod-art li a {
  431. display: block;
  432. margin-left: 25px;
  433. color: #666;
  434. font-size: 12px;
  435. margin-top: -21px;
  436. line-height: 18px; }
  437. .video .box-bd {
  438. margin-top: 15px; }
  439. .video .box-bd .l-c {
  440. width: 360px; }
  441. .video .box-bd .mod-pic li {
  442. float: left;
  443. _display: inline;
  444. text-align: center;
  445. margin: 0 8px 5px 0;
  446. width: 170px; }
  447. .video .box-bd .mod-pic li a {
  448. position: relative; }
  449. .video .box-bd .mod-pic li a img {
  450. width: 170px;
  451. height: 100px; }
  452. .video .box-bd .mod-pic li a em {
  453. color: #666;
  454. font-size: 12px;
  455. display: block;
  456. font-style: normal;
  457. height: 22px;
  458. line-height: 22px;
  459. overflow: hidden;
  460. text-overflow: ellipsis; }
  461. .video .box-bd .mod-pic li a p {
  462. position: absolute;
  463. left: 0;
  464. bottom: 3px;
  465. bottom: 32px\0;
  466. *bottom: 26px;
  467. width: 170px;
  468. height: 30px;
  469. background-color: #000;
  470. filter: alpha(opacity=40);
  471. opacity: 0.4; }
  472. .video .box-bd .mod-pic li a .time {
  473. position: absolute;
  474. right: 10px;
  475. bottom: 10px;
  476. bottom: 36px\0;
  477. *bottom: 33px;
  478. left: 130px\0;
  479. color: #999;
  480. font-size: 12px;
  481. z-index: 1; }
  482. .video-search {
  483. width: 583px !important; }
  484. .video-search input {
  485. width: 550px !important; }
  486. .clothes-out .step-search {
  487. border-bottom: 1px solid #d7e5ed;
  488. height: 58px; }
  489. .clothes-out .step-search .sort-select {
  490. width: 270px;
  491. margin-right: 30px;
  492. color: #666; }
  493. .clothes-out .step-search .sort-select label {
  494. display: inline-block;
  495. *display: inline;
  496. *zoom: 1;
  497. margin: 0 20px 9px 0; }
  498. .clothes-out .step-search .sort-select label input {
  499. width: 12px;
  500. height: 12px;
  501. border: 1px solid #c1c1c1;
  502. background-color: #fff;
  503. margin-right: 5px; }
  504. .clothes-out .step-search .sort-select label.red {
  505. color: #ff7a43; }
  506. .clothes-out .step-search .btn .clothes-types {
  507. margin-left: 15px; }
  508. .clothes-out .step-search .btn .clothes-types a {
  509. display: block;
  510. color: #666;
  511. margin-bottom: 10px; }
  512. .clothes-out .hero-list {
  513. position: relative;
  514. height: 429px; }
  515. .clothes-out .hero-list .mod-pic {
  516. position: relative;
  517. padding: 15px 0; }
  518. .clothes-out .hero-list .mod-pic li {
  519. float: left;
  520. _display: inline;
  521. overflow: hidden;
  522. margin: 0 14px 22px 0;
  523. width: 60px;
  524. height: 80px; }
  525. .clothes-out .hero-list .mod-pic li a {
  526. display: inline-block;
  527. *display: inline;
  528. *zoom: 1;
  529. text-align: center; }
  530. .clothes-out .hero-list .mod-pic li a img {
  531. display: block;
  532. width: 60px;
  533. height: 60px; }
  534. .clothes-out .hero-list .mod-pic li em {
  535. display: inline-block;
  536. *display: inline;
  537. *zoom: 1;
  538. text-align: center;
  539. cursor: pointer;
  540. line-height: 18px;
  541. padding: 4px 1px 0; }
  542. .personal-top {
  543. position: relative !important;
  544. top: 0 !important;
  545. left: 0 !important; }
  546. .hover-content {
  547. position: absolute;
  548. left: 56px;
  549. top: -61px;
  550. width: 252px;
  551. height: 200px;
  552. border: 1px solid #e7e7e7;
  553. background-color: #fff;
  554. z-index: 9;
  555. padding-bottom: 5px; }
  556. .hover-content.blank-content {
  557. height: 37px !important;
  558. border-bottom: 1px solid #e7e7e7; }
  559. .hover-content.hover-hero {
  560. display: block; }
  561. .hover-content .inner {
  562. padding: 10px 10px 10px; }
  563. .hover-content .hover-hd {
  564. border-bottom: 1px solid #e7e7e7;
  565. padding-bottom: 5px; }
  566. .hover-content .hover-hd img {
  567. float: left;
  568. _display: inline;
  569. margin-right: 10px;
  570. width: 40px;
  571. height: 40px; }
  572. .hover-content .info {
  573. float: left;
  574. _display: inline;
  575. line-height: 20px; }
  576. .hover-content .info h3, .hover-content .info p {
  577. font-size: 12px;
  578. color: #666; }
  579. .hover-content .info h3 {
  580. font-weight: bold; }
  581. .hover-content .info p span {
  582. color: #ff7a43; }
  583. .hover-content .championStat {
  584. position: absolute;
  585. right: 10px;
  586. top: 20px; }
  587. .hover-content .fuzhu, .hover-content .daye, .hover-content .adc, .hover-content .zhongdan, .hover-content .shangdan {
  588. width: 35px;
  589. height: 17px;
  590. display: block; }
  591. .hover-content .fuzhu {
  592. background: url(../img/fuzhu.png); }
  593. .hover-content .daye {
  594. background: url(../img/daye.png); }
  595. .hover-content .adc {
  596. background: url(../img/adc.png); }
  597. .hover-content .zhongdan {
  598. background: url(../img/zhongdan.png); }
  599. .hover-content .shangdan {
  600. background: url(../img/shangdan.png); }
  601. .hover-content .ch_level {
  602. left: 152px !important;
  603. top: 13px !important; }
  604. .hover-content .hover-bd {
  605. padding: 5px 0; }
  606. .hover-content .hover-bd li {
  607. margin-bottom: 6px; }
  608. .hover-content .hover-bd li i {
  609. display: inline-block;
  610. *display: inline;
  611. *zoom: 1;
  612. width: 4px;
  613. height: 2px;
  614. vertical-align: middle;
  615. background-image: url(../slice/dot.png); }
  616. .hover-content .hover-bd li .first {
  617. display: inline-block;
  618. *display: inline;
  619. *zoom: 1;
  620. width: 102px; }
  621. .hover-content .hover-bd .handles {
  622. color: #666; }
  623. .hover-content .hover-bd .handles a {
  624. color: #408bcb; }
  625. .hover-content .hover-bd .handles .share {
  626. display: inline-block;
  627. *display: inline;
  628. *zoom: 1;
  629. width: 16px;
  630. height: 16px;
  631. vertical-align: middle;
  632. margin-right: 15px;
  633. float: right !important;
  634. _display: inline;
  635. *margin-top: -18px; }
  636. .hover-content .avatar-arrow {
  637. top: 75px;
  638. left: -7px;
  639. width: 7px !important;
  640. height: 13px !important;
  641. background-image: url(../slice/p-arrow-left.png) !important; }
  642. .personal {
  643. position: relative;
  644. clear: both; }
  645. .personal .links span {
  646. float: none !important; }
  647. .personal .a-hide {
  648. display: none !important; }
  649. .personal .no-data-tip {
  650. text-align: center;
  651. margin: 135px 0; }
  652. .personal .no-data-tip img {
  653. margin-bottom: 10px; }
  654. .personal .box-bd {
  655. position: relative;
  656. clear: both; }
  657. .personal .box-bd .tier_0, .personal .box-bd .tier_1, .personal .box-bd .tier_2, .personal .box-bd .tier_3, .personal .box-bd .tier_4, .personal .box-bd .tier_5, .personal .box-bd .tier_6 {
  658. text-align: center;
  659. font-weight: bold; }
  660. .personal .box-bd .tier_0 div, .personal .box-bd .tier_1 div, .personal .box-bd .tier_2 div, .personal .box-bd .tier_3 div, .personal .box-bd .tier_4 div, .personal .box-bd .tier_5 div, .personal .box-bd .tier_6 div {
  661. margin: 0 auto 5px; }
  662. .personal .box-bd .tier_0 p {
  663. color: #c6521e; }
  664. .personal .box-bd .tier_1 p {
  665. color: #e89c25; }
  666. .personal .box-bd .tier_2 p {
  667. color: #4c9c95; }
  668. .personal .box-bd .tier_3 p {
  669. color: #4c9c95; }
  670. .personal .box-bd .tier_4 p {
  671. color: #3d8fc8; }
  672. .personal .box-bd .tier_5 p {
  673. color: #4c9c95; }
  674. .personal .box-bd .tier_6 p {
  675. color: #c06625; }
  676. .personal .box-bd .tier_img_1 {
  677. *right: -6px !important;
  678. *bottom: -8px !important;
  679. right: -6px\0 !important;
  680. bottom: -8px\0 !important;
  681. width: 53px;
  682. height: 41px;
  683. background: url(../img/rank-vip1.png) no-repeat; }
  684. .personal .box-bd .tier_img_2 {
  685. *right: -6px !important;
  686. *bottom: -8px !important;
  687. right: -8px\0 !important;
  688. bottom: -10px\0 !important;
  689. width: 53px;
  690. height: 45px;
  691. background: url(../img/rank-vip2.png) no-repeat; }
  692. .personal .box-bd .tier_img_3 {
  693. *right: -6px !important;
  694. *bottom: -8px !important;
  695. right: -6px\0 !important;
  696. bottom: -8px\0 !important;
  697. width: 53px;
  698. height: 48px;
  699. background: url(../img/rank-vip3.png) no-repeat; }
  700. .personal .box-bd .tier_img_4 {
  701. *right: -6px !important;
  702. *bottom: -8px !important;
  703. right: -8px\0 !important;
  704. bottom: -8px\0 !important;
  705. width: 52px;
  706. height: 50px;
  707. background: url(../img/rank-vip4.png) no-repeat; }
  708. .personal .box-bd .tier_img_5 {
  709. *right: -12px !important;
  710. *bottom: -14px !important;
  711. right: -12px\0 !important;
  712. bottom: -14px\0 !important;
  713. width: 64px;
  714. height: 50px;
  715. background: url(../img/rank-vip5.png) no-repeat; }
  716. .personal .box-bd .tier_img_6 {
  717. width: 60px;
  718. height: 50px;
  719. background: url(../img/rank-vip7.png) no-repeat; }
  720. .personal .box-bd .tier_img_7 {
  721. width: 63px;
  722. height: 52px;
  723. background: url(../img/rank-vip6.png) no-repeat; }
  724. .personal .box-bd .intro {
  725. position: relative;
  726. z-index: 9;
  727. border-bottom: 1px solid #f0f0f0;
  728. height: 84px;
  729. width: 600px;
  730. float: left;
  731. _display: inline; }
  732. .personal .box-bd .intro .blacklist {
  733. padding-left: 5px;
  734. *margin-left: -2px; }
  735. .personal .box-bd .intro .blacklist .black-eye {
  736. display: inline-block;
  737. *display: inline;
  738. *zoom: 1;
  739. width: 14px;
  740. height: 11px;
  741. background-image: url(../slice/eye.png); }
  742. .personal .box-bd .intro .blacklist label {
  743. color: #666; }
  744. .personal .box-bd .intro .info {
  745. float: left;
  746. _display: inline; }
  747. .personal .box-bd .mod-tabs {
  748. clear: both; }
  749. .personal .box-bd .mod-tabs-content {
  750. clear: both; }
  751. .personal .attention {
  752. display: inline-block;
  753. *display: inline;
  754. *zoom: 1;
  755. background: url(../img/attention-bg.png);
  756. width: 42px;
  757. height: 19px;
  758. margin-top: 2px;
  759. margin-left: 5px;
  760. cursor: pointer;
  761. vertical-align: -3px; }
  762. .personal .attention.already {
  763. width: 52px !important;
  764. background: url(../img/attention-already-bg.png); }
  765. .avatar {
  766. position: relative;
  767. width: 66px;
  768. float: left;
  769. _display: inline;
  770. margin-right: 15px; }
  771. .avatar a {
  772. display: block; }
  773. .avatar a img {
  774. width: 66px;
  775. height: 66px;
  776. -webkit-border-radius: 66px;
  777. border-radius: 66px;
  778. -webkit-background-clip: padding-box;
  779. -moz-background-clip: padding;
  780. background-clip: padding-box;
  781. behavior: url(js/PIE.htc); }
  782. .avatar .p_level {
  783. position: absolute;
  784. right: 0;
  785. bottom: 0;
  786. color: #fff;
  787. width: 18px;
  788. height: 18px;
  789. line-height: 18px;
  790. text-align: center;
  791. background: url(../img/p_level.png); }
  792. .text {
  793. float: left;
  794. _display: inline;
  795. line-height: 24px;
  796. width: 277px; }
  797. .text .name-info {
  798. padding-top: 3px;
  799. margin-bottom: -2px;
  800. width: 230px; }
  801. .text .name-info .name {
  802. color: #666;
  803. font-size: 16px;
  804. font-weight: bold;
  805. padding-right: 5px; }
  806. .text img {
  807. vertical-align: -2px; }
  808. .text .more-info {
  809. height: 20px;
  810. color: #666;
  811. font-size: 12px; }
  812. .blacklist-content2 a {
  813. display: inline-block;
  814. *display: inline;
  815. *zoom: 1;
  816. color: #408bcb;
  817. margin-left: 5px; }
  818. .fighting {
  819. width: 95px;
  820. height: 64px;
  821. position: absolute;
  822. top: 5px;
  823. right: 175px;
  824. background: url(../img/bg-flighting.png); }
  825. .fighting p, .fighting .fight-block {
  826. text-align: center;
  827. font-weight: bold; }
  828. .fighting p strong, .fighting .fight-block strong {
  829. line-height: 32px;
  830. color: #fff;
  831. font-size: 14px; }
  832. .fighting p a.question-mark, .fighting .fight-block a.question-mark {
  833. display: inline-block;
  834. *display: inline;
  835. *zoom: 1;
  836. width: 16px;
  837. height: 16px;
  838. background-image: url(../slice/question.png);
  839. margin-left: 2px;
  840. vertical-align: -2px;
  841. *vertical-align: 1px; }
  842. .fighting p em, .fighting .fight-block em {
  843. line-height: 35px;
  844. font-size: 18px;
  845. color: #408bcb; }
  846. .fight-rank {
  847. right: -312px;
  848. top: 32px;
  849. width: 316px;
  850. padding: 15px; }
  851. .fight-rank p {
  852. text-align: left;
  853. margin-bottom: 5px; }
  854. .fight-rank h3 {
  855. margin-bottom: 15px;
  856. text-align: left; }
  857. .fight-rank a {
  858. color: #408bcb;
  859. float: left;
  860. _display: inline; }
  861. .com-hero {
  862. position: relative;
  863. width: 357px;
  864. float: left;
  865. _display: inline;
  866. padding-top: 4px;
  867. line-height: 20px;
  868. margin-left: 20px;
  869. padding-bottom: 15px;
  870. z-index: 1;
  871. clear: both;
  872. margin-top: -62px; }
  873. .com-hero h3 {
  874. color: #666;
  875. line-height: 16px;
  876. display: inline;
  877. font-weight: bold; }
  878. .com-hero ul.mod-pic {
  879. height: 45px;
  880. margin-left: 15px;
  881. margin-top: -3px; }
  882. .com-hero .more {
  883. display: inline-block;
  884. *display: inline;
  885. *zoom: 1; }
  886. .mod-pic-li {
  887. position: relative;
  888. width: 45px;
  889. height: 45px;
  890. margin-left: 15px;
  891. *margin-left: 14px;
  892. float: left;
  893. _display: inline; }
  894. .mod-pic-li a.core {
  895. display: inline-block;
  896. *display: inline;
  897. *zoom: 1;
  898. text-align: center;
  899. position: relative; }
  900. .mod-pic-li a.core p {
  901. color: #666;
  902. clear: both;
  903. height: 20px;
  904. overflow: hidden;
  905. width: 48px;
  906. margin-left: -1px;
  907. margin-top: -4px; }
  908. .mod-pic-li img.core-img {
  909. width: 45px;
  910. height: 45px; }
  911. .phone-card .left-part {
  912. float: left;
  913. _display: inline;
  914. border-right: 1px solid #f0f0f0;
  915. width: 374px;
  916. height: 344px;
  917. padding-right: 6px; }
  918. .phone-card .left-part h2 {
  919. font-size: 12px;
  920. color: #666;
  921. font-weight: bold; }
  922. .phone-card .left-part ul li {
  923. float: left;
  924. _display: inline;
  925. margin: 10px 12px 0 0; }
  926. .phone-card .left-part ul li img {
  927. width: 110px;
  928. height: 105px; }
  929. .phone-card .left-part ul li p {
  930. font-size: 12px;
  931. color: #666;
  932. padding-top: 5px; }
  933. .right-part {
  934. float: left;
  935. _display: inline;
  936. padding-left: 20px; }
  937. .right-part .qrcode {
  938. margin: 0 auto;
  939. text-align: center;
  940. padding: 20px 0; }
  941. .right-part .qrcode a {
  942. display: inline-block;
  943. *display: inline;
  944. *zoom: 1;
  945. width: 115px;
  946. height: 38px;
  947. line-height: 38px;
  948. text-align: center;
  949. color: #fff;
  950. background-color: #408bcb;
  951. -webkit-border-radius: 3px;
  952. border-radius: 3px;
  953. -webkit-background-clip: padding-box;
  954. -moz-background-clip: padding;
  955. background-clip: padding-box;
  956. margin-top: 20px; }
  957. .right-part .qrcode a:hover {
  958. background-color: #4b9add; }
  959. .right-part .info h2 {
  960. font-size: 12px;
  961. color: #666;
  962. font-weight: bold;
  963. padding-bottom: 6px; }
  964. .right-part .info p {
  965. width: 358px;
  966. line-height: 20px; }
  967. .personal-tabs {
  968. position: relative; }
  969. .personal-tabs .J_nav li {
  970. width: 25%; }
  971. .daye-hover {
  972. width: 102px;
  973. top: 37px;
  974. left: 111px; }
  975. .daye-hover .avatar-arrow {
  976. top: 39px;
  977. left: -7px; }
  978. .daye-hover p {
  979. padding-bottom: 10px; }
  980. .da-ye-types {
  981. padding-bottom: 10px; }
  982. .da-ye-types a {
  983. display: inline-block;
  984. *display: inline;
  985. *zoom: 1;
  986. float: left;
  987. _display: inline;
  988. width: 50%;
  989. color: #666;
  990. margin-bottom: 5px; }
  991. .da-ye-types i {
  992. display: inline-block;
  993. *display: inline;
  994. *zoom: 1;
  995. width: 8px;
  996. height: 8px;
  997. margin-right: 5px; }
  998. .da-ye-types i.a-yellow {
  999. background-color: #fbb28f; }
  1000. .da-ye-types i.a-blue {
  1001. background-color: #9dc7eb; }
  1002. .da-ye-types i.a-purple {
  1003. background-color: #cea9d7; }
  1004. .da-ye-types i.a-red {
  1005. background-color: #fa9f9f; }
  1006. .da-ye-types i.a-green {
  1007. background-color: #80c989; }
  1008. .kda-hover {
  1009. width: 174px;
  1010. top: 37px;
  1011. left: 254px; }
  1012. .kda-hover .avatar-arrow {
  1013. top: 39px;
  1014. left: -7px; }
  1015. .kda-hover .da-ye-types {
  1016. text-align: center;
  1017. padding: 5px 0 0;
  1018. border-bottom: 1px solid #e7e7e7; }
  1019. .kda-hover .da-ye-types a {
  1020. display: block;
  1021. margin-bottom: 10px;
  1022. color: #666;
  1023. cursor: inherit; }
  1024. .kda-hover .formula {
  1025. text-align: center;
  1026. padding: 5px 0 0;
  1027. color: #999; }
  1028. .arrow-hover-top .win-lost p {
  1029. text-align: center;
  1030. color: #666;
  1031. font-weight: bold; }
  1032. .win-line {
  1033. margin: 8px 0;
  1034. position: relative;
  1035. width: 100%;
  1036. height: 5px;
  1037. background: #ebebeb; }
  1038. .win-line em {
  1039. position: absolute;
  1040. left: 0;
  1041. height: 5px;
  1042. background: #64bf8c; }
  1043. .kill-hover {
  1044. width: 54px;
  1045. top: 37px;
  1046. left: 386px; }
  1047. .kill-hover .avatar-arrow {
  1048. top: 39px;
  1049. left: -7px; }
  1050. .kill-hover .da-ye-types {
  1051. margin-top: 10px;
  1052. border-top: 1px solid #e7e7e7;
  1053. padding-top: 10px; }
  1054. .kill-hover .da-ye-types a {
  1055. display: block;
  1056. margin-bottom: 5px;
  1057. color: #666; }
  1058. .more {
  1059. float: right;
  1060. _display: inline;
  1061. font-size: 12px;
  1062. color: #999; }
  1063. .more i {
  1064. display: inline-block;
  1065. *display: inline;
  1066. *zoom: 1;
  1067. width: 6px;
  1068. height: 4px;
  1069. margin-left: 3px;
  1070. vertical-align: middle;
  1071. background-image: url(../slice/arrow.png); }
  1072. .my-card .left-part .how {
  1073. float: right;
  1074. _display: inline;
  1075. margin-top: -16px;
  1076. margin-right: 10px;
  1077. color: #408bcb;
  1078. cursor: pointer; }
  1079. .my-card .left-part .top {
  1080. color: #666; }
  1081. .my-card .left-part .top img {
  1082. width: 80px !important;
  1083. height: 85px !important;
  1084. float: left;
  1085. _display: inline; }
  1086. .my-card .left-part .top .top-info {
  1087. float: left;
  1088. _display: inline;
  1089. margin-left: 15px; }
  1090. .my-card .left-part .top h3 {
  1091. margin-top: 4px;
  1092. color: #666;
  1093. font-size: 12px;
  1094. font-weight: bold; }
  1095. .my-card .left-part .small, .my-card .left-part .block {
  1096. margin-top: 15px; }
  1097. .my-card .left-part .small h3, .my-card .left-part .block h3 {
  1098. color: #666;
  1099. font-size: 12px;
  1100. font-weight: bold; }
  1101. .my-card .left-part .small ul li, .my-card .left-part .block ul li {
  1102. float: left;
  1103. _display: inline; }
  1104. .my-card .left-part .block img {
  1105. width: 65px !important;
  1106. height: 65px !important; }
  1107. .my-card .left-part .block li {
  1108. margin-right: 7px !important; }
  1109. .my-card .left-part .small img {
  1110. width: 35px !important;
  1111. height: 35px !important; }
  1112. .my-card .left-part .small li {
  1113. margin-right: 5px !important; }
  1114. .my-card .left-part .phone-p {
  1115. margin-top: 20px;
  1116. color: #ff7a43; }
  1117. .my-card .right-part h3 {
  1118. color: #666;
  1119. font-size: 12px;
  1120. font-weight: bold; }
  1121. .my-card .right-part .back {
  1122. cursor: pointer;
  1123. float: right;
  1124. _display: inline;
  1125. color: #999;
  1126. *margin-top: -18px; }
  1127. .my-card .right-part .back i {
  1128. display: inline-block;
  1129. *display: inline;
  1130. *zoom: 1;
  1131. width: 6px;
  1132. height: 5px;
  1133. background-image: url(../slice/arrow-left.png);
  1134. vertical-align: middle;
  1135. margin-right: 3px; }
  1136. .my-card .right-part ul {
  1137. height: 320px;
  1138. width: 355px;
  1139. overflow-y: hidden; }
  1140. .my-card .right-part ul li {
  1141. border-bottom: 1px solid #f0f0f0;
  1142. padding-bottom: 10px; }
  1143. .my-card .right-part ul li p {
  1144. color: #666;
  1145. line-height: 20px;
  1146. margin: 10px 0; }
  1147. .my-card .right-part ul li p span {
  1148. float: right;
  1149. _display: inline;
  1150. color: #ccc;
  1151. *margin-top: -20px;
  1152. margin-right: 5px;
  1153. display: inline-block;
  1154. *display: inline;
  1155. *zoom: 1; }
  1156. .my-card .right-part ul li img {
  1157. margin-right: 5px; }
  1158. .comment-info {
  1159. margin-right: 5px;
  1160. padding-top: 5px;
  1161. float: right;
  1162. _display: inline;
  1163. color: #666; }
  1164. .comment-info .first {
  1165. display: inline-block;
  1166. *display: inline;
  1167. *zoom: 1;
  1168. margin-right: 5px; }
  1169. .comment-info i {
  1170. display: inline-block;
  1171. *display: inline;
  1172. *zoom: 1;
  1173. vertical-align: middle; }
  1174. .comment-info .comment {
  1175. width: 14px;
  1176. height: 12px;
  1177. background-image: url(../slice/comment.png); }
  1178. .comment-info .like {
  1179. width: 13px;
  1180. height: 12px;
  1181. cursor: pointer;
  1182. background-image: url(../slice/like.png); }
  1183. .comment-info .like:hover {
  1184. background-image: url(../slice/like-hover.png); }
  1185. .mobile-huya {
  1186. padding-top: 15px; }
  1187. .mobile-huya .huya-ad-info-inner {
  1188. width: 238px; }
  1189. .mobile-huya .huya-ad-v2 .huya-ad-pic {
  1190. float: left;
  1191. _display: inline;
  1192. width: 305px;
  1193. height: 310px; }
  1194. .mobile-huya .huya-ad-v2 .huya-ad-info {
  1195. margin-left: 40px;
  1196. float: left;
  1197. _display: inline; }
  1198. .mobile-huya .huya-ad-v2 .huya-top {
  1199. text-align: center; }
  1200. .mobile-huya .huya-ad-v2 .blue-btn {
  1201. display: block;
  1202. width: 140px;
  1203. margin: 20px auto 15px; }
  1204. .mobile-huya .huya-ad-v2 .txt-list li {
  1205. padding: 4px 0; }
  1206. .mobile-huya .huya-ad-v2 .txt-list i {
  1207. display: inline-block;
  1208. *display: inline;
  1209. *zoom: 1;
  1210. width: 4px;
  1211. height: 2px;
  1212. vertical-align: middle;
  1213. margin-right: 3px;
  1214. background: url(../img/dot.png) no-repeat; }
  1215. .da-ye-bd {
  1216. float: left;
  1217. _display: inline;
  1218. width: 390px;
  1219. padding: 2px 0 0px 10px;
  1220. border-bottom: 1px solid #f0f0f0; }
  1221. .da-ye-bd .da-ye-wrap {
  1222. position: relative; }
  1223. .da-ye-bd .da-ye-wrap p {
  1224. position: absolute;
  1225. top: 0;
  1226. left: 0px;
  1227. color: #666; }
  1228. .da-ye-bd .da-ye {
  1229. float: left;
  1230. _display: inline;
  1231. width: 110px;
  1232. height: 110px;
  1233. margin: 11px -25px 0 -5px;
  1234. font-size: 30px; }
  1235. .da-ye-bd #kda {
  1236. margin: 28px 0 0 0; }
  1237. .da-ye-bd .avatar-arrow {
  1238. width: 7px !important;
  1239. height: 13px !important;
  1240. background: url(../img/p-arrow-left.png) no-repeat !important; }
  1241. .da-ye-bd .da-ye2 {
  1242. margin: -10px -20px 0 -72px !important; }
  1243. .da-ye-bd li {
  1244. float: left;
  1245. _display: inline;
  1246. text-align: center;
  1247. margin-left: 75px; }
  1248. .da-ye-bd li .percent1 {
  1249. background: url(../img/round.png) no-repeat;
  1250. width: 83px;
  1251. height: 83px;
  1252. line-height: 20px;
  1253. text-align: center; }
  1254. .da-ye-bd li .percent1 h2 {
  1255. padding-top: 24px;
  1256. color: #fa935b;
  1257. font-size: 20px;
  1258. font-weight: bold; }
  1259. .da-ye-bd li .percent1 p {
  1260. color: #fa935b;
  1261. font-size: 12px;
  1262. margin-top: 0px; }
  1263. .da-ye-bd li.kill-li {
  1264. margin-left: 39px; }
  1265. .da-ye-bd li .percent2 {
  1266. background-image: url(../slice/circle.png);
  1267. width: 80px;
  1268. height: 80px;
  1269. line-height: 20px;
  1270. text-align: center;
  1271. margin-top: 11px; }
  1272. .da-ye-bd li .percent2 h2 {
  1273. padding-top: 24px;
  1274. color: #408bcb;
  1275. font-size: 20px;
  1276. font-weight: bold; }
  1277. .da-ye-bd li .percent2 p {
  1278. color: #408bcb;
  1279. font-size: 12px;
  1280. margin-top: 0px; }
  1281. .da-ye-bd li p {
  1282. font-size: 12px;
  1283. color: #666;
  1284. margin-top: -26px; }
  1285. .history_info {
  1286. float: left;
  1287. _display: inline; }
  1288. .result {
  1289. float: right;
  1290. _display: inline; }
  1291. .history_li img {
  1292. float: left;
  1293. _display: inline;
  1294. width: 30px;
  1295. height: 30px; }
  1296. .mod-top {
  1297. position: relative;
  1298. clear: both;
  1299. padding: 10px 0 0;
  1300. width: 390px;
  1301. float: left;
  1302. _display: inline; }
  1303. .mod-top li {
  1304. float: left;
  1305. _display: inline;
  1306. width: 24%;
  1307. *width: 25%;
  1308. margin-bottom: 10px; }
  1309. .mod-top li .percent {
  1310. float: left;
  1311. _display: inline;
  1312. width: 67px;
  1313. height: 66px;
  1314. line-height: 20px;
  1315. text-align: center; }
  1316. .mod-top li .percent h2 {
  1317. padding-top: 15px;
  1318. color: #408bcb;
  1319. font-size: 20px;
  1320. font-weight: bold; }
  1321. .mod-top li .percent p {
  1322. color: #999;
  1323. font-size: 12px; }
  1324. .mod-top li .percent.p-0 {
  1325. background-image: url(../slice/ratio-bg-0.png); }
  1326. .mod-top li .percent.p-5 {
  1327. background-image: url(../slice/ratio-bg-5.png); }
  1328. .mod-top li .percent.p-10 {
  1329. background-image: url(../slice/ratio-bg-10.png); }
  1330. .mod-top li .percent.p-20 {
  1331. background-image: url(../slice/ratio-bg-20.png); }
  1332. .mod-top li .percent.p-30 {
  1333. background-image: url(../slice/ratio-bg-30.png); }
  1334. .mod-top li .percent.p-40 {
  1335. background-image: url(../slice/ratio-bg-40.png); }
  1336. .mod-top li .percent.p-50 {
  1337. background-image: url(../slice/ratio-bg-50.png); }
  1338. .mod-top li .percent.p-60 {
  1339. background-image: url(../slice/ratio-bg-60.png); }
  1340. .mod-top li .percent.p-70 {
  1341. background-image: url(../slice/ratio-bg-70.png); }
  1342. .mod-top li .percent.p-80 {
  1343. background-image: url(../slice/ratio-bg-80.png); }
  1344. .mod-top li .percent.p-90 {
  1345. background-image: url(../slice/ratio-bg-90.png); }
  1346. .mod-top li .percent.p-95 {
  1347. background-image: url(../slice/ratio-bg-95.png); }
  1348. .mod-top li .percent.p-100 {
  1349. background-image: url(../slice/ratio-bg-100.png); }
  1350. .mod-top li .game-info {
  1351. float: left;
  1352. _display: inline;
  1353. margin-left: 20px;
  1354. padding-top: 3px;
  1355. line-height: 20px; }
  1356. .mod-top li .game-info h3 {
  1357. font-size: 12px;
  1358. color: #666; }
  1359. .mod-top li .game-info p {
  1360. font-size: 12px;
  1361. color: #999; }
  1362. .mod-top li .game-info .win-blue {
  1363. color: #408bcb; }
  1364. .mod-top li .game-info .lost-red {
  1365. color: #f16868; }
  1366. .mod-top li .circle-div {
  1367. float: left;
  1368. _display: inline;
  1369. color: #408bcb; }
  1370. .mod-top li .g-win {
  1371. color: #408bcb;
  1372. padding-right: 10px; }
  1373. .mod-top li .g-lost {
  1374. color: #f16868; }
  1375. .mod-top li .g-total {
  1376. color: #999; }
  1377. .mod-top .no-data {
  1378. margin-left: 72px;
  1379. height: 95px;
  1380. padding-top: 26px; }
  1381. .mod-top .no-data img {
  1382. float: left;
  1383. _display: inline;
  1384. height: 71px; }
  1385. .mod-top .no-data .no-data-info {
  1386. float: left;
  1387. _display: inline;
  1388. margin-left: 15px;
  1389. padding-top: 20px; }
  1390. #gameCount {
  1391. padding-left: 15px; }
  1392. .mod-bottom {
  1393. padding-top: 10px; }
  1394. .mod-bottom .left-part {
  1395. position: absolute;
  1396. top: 192px;
  1397. left: 0; }
  1398. .mod-bottom .right-part {
  1399. float: left;
  1400. _display: inline;
  1401. width: 190px; }
  1402. .mod-bottom .right-part .right-hd h2, .mod-bottom .right-part .right-hd span {
  1403. float: left;
  1404. _display: inline; }
  1405. .mod-bottom .right-part .right-hd h2 {
  1406. color: #666;
  1407. font-size: 12px;
  1408. font-weight: bold;
  1409. margin-right: 3px; }
  1410. .mod-bottom .right-part .right-hd span {
  1411. *margin-top: -1px; }
  1412. .mod-bottom .right-part .right-hd span.flag {
  1413. width: 63px;
  1414. height: 19px;
  1415. line-height: 19px;
  1416. text-align: center; }
  1417. .mod-bottom .right-part .right-hd span.flag i {
  1418. display: inline-block;
  1419. *display: inline;
  1420. *zoom: 1;
  1421. vertical-align: -2px;
  1422. margin-right: 2px; }
  1423. .mod-bottom .right-part .right-hd .flag1 {
  1424. background-image: url(../slice/angle-pink.png);
  1425. color: #f16868; }
  1426. .mod-bottom .right-part .right-hd .flag1 i {
  1427. width: 13px;
  1428. height: 13px;
  1429. background-image: url(../slice/flag1.png); }
  1430. .mod-bottom .right-part .right-hd .flag2 {
  1431. background-image: url(../slice/angle-blue.png);
  1432. color: #5490c0; }
  1433. .mod-bottom .right-part .right-hd .flag2 i {
  1434. width: 14px;
  1435. height: 13px;
  1436. background-image: url(../slice/flag2.png); }
  1437. .mod-bottom .right-part .right-hd .flag3 {
  1438. background-image: url(../slice/angle-yellow.png);
  1439. width: 78px !important;
  1440. color: #f16868; }
  1441. .mod-bottom .right-part .right-hd .flag3 i {
  1442. width: 14px;
  1443. height: 12px;
  1444. background-image: url(../slice/flag3.png); }
  1445. .mod-bottom .right-part .right-hd .flag4 {
  1446. background-image: url(../slice/pink-bg.png);
  1447. width: 79px !important;
  1448. color: #af73c7; }
  1449. .mod-bottom .right-part .right-hd .flag4 i {
  1450. width: 14px;
  1451. height: 13px;
  1452. background-image: url(../slice/flag4.png); }
  1453. .mod-bottom .right-part .right-hd .first-win .first-msg {
  1454. display: inline-block;
  1455. *display: inline;
  1456. *zoom: 1;
  1457. margin-right: 3px;
  1458. width: 18px;
  1459. height: 18px;
  1460. background: url(../img/first-win-dark.png); }
  1461. .mod-bottom .right-part .right-hd .first-win .first-msg.active-status {
  1462. cursor: pointer;
  1463. background: url(../img/first-win.png); }
  1464. .mod-bottom .right-part .right-hd .first-win .first-time {
  1465. color: #7e92a5;
  1466. display: inline-block;
  1467. *display: inline;
  1468. *zoom: 1; }
  1469. .mod-bottom .right-part .right-hd .first-win .first-time .f-time {
  1470. float: none; }
  1471. .mod-bottom .right-part .first-win-hover {
  1472. display: none;
  1473. position: absolute;
  1474. padding: 10px;
  1475. border: 1px solid #e7e7e7;
  1476. background: #fff;
  1477. z-index: 9;
  1478. width: 54px;
  1479. top: 63px;
  1480. right: 82px; }
  1481. .mod-bottom .right-bd {
  1482. margin-top: 8px;
  1483. width: 190px; }
  1484. .mod-bottom .right-bd ul {
  1485. height: 285px; }
  1486. .mod-bottom .right-bd li {
  1487. margin-bottom: 12px;
  1488. height: 32px; }
  1489. .mod-bottom .right-bd li img {
  1490. vertical-align: middle;
  1491. margin-right: 10px; }
  1492. .mod-bottom .right-bd li span {
  1493. display: inline-block;
  1494. *display: inline;
  1495. *zoom: 1;
  1496. text-align: left; }
  1497. .mod-bottom .right-bd li .result {
  1498. width: 32px;
  1499. color: #4eb95a;
  1500. padding-right: 5px; }
  1501. .mod-bottom .right-bd li .result.red {
  1502. color: #ef3d3d; }
  1503. .mod-bottom .right-bd li .type {
  1504. width: 100px;
  1505. *width: 99px;
  1506. color: #666; }
  1507. .mod-bottom .right-bd li .time {
  1508. color: #999; }
  1509. .hero-tip {
  1510. width: 28px;
  1511. height: 64px;
  1512. background: url(../img/common-hero.png);
  1513. float: left;
  1514. _display: inline; }
  1515. .hero-nav {
  1516. position: absolute;
  1517. top: -1px;
  1518. width: 17px;
  1519. height: 64px;
  1520. text-align: center;
  1521. background-color: #ddebf7;
  1522. -webkit-border-radius: 3px;
  1523. -moz-border-radius: 3px;
  1524. -ms-border-radius: 3px;
  1525. -o-border-radius: 3px;
  1526. border-radius: 3px; }
  1527. .hero-nav i {
  1528. display: inline-block;
  1529. *display: inline;
  1530. *zoom: 1;
  1531. width: 5px;
  1532. height: 9px;
  1533. margin-top: 26px; }
  1534. .hero-nav.h-l {
  1535. left: 0; }
  1536. .hero-nav.h-l i {
  1537. background: url(../img/h-l.png); }
  1538. .hero-nav.h-r {
  1539. right: 0; }
  1540. .hero-nav.h-r i {
  1541. background: url(../img/h-r.png); }
  1542. .hero-nav:hover {
  1543. background-color: #ecf3f9; }
  1544. #gameCount2015 ul {
  1545. height: 68px;
  1546. padding: 2px 0;
  1547. border-bottom: 1px solid #f0f0f0; }
  1548. #gameCount2015 ul.last {
  1549. border-bottom: none !important; }
  1550. #gameCount2015 li {
  1551. width: 23% !important;
  1552. margin-bottom: 3px !important; }
  1553. .content-2015 {
  1554. position: absolute;
  1555. width: 100%;
  1556. z-index: 999999;
  1557. background-color: #fff; }
  1558. .mode-2 {
  1559. border-bottom: none;
  1560. padding: 10px 0 !important; }
  1561. .nav-top-bottom {
  1562. height: 9px;
  1563. line-height: 9px;
  1564. background: #ddebf7;
  1565. text-align: center;
  1566. cursor: pointer;
  1567. display: block; }
  1568. .nav-top-bottom i {
  1569. display: inline-block;
  1570. *display: inline;
  1571. *zoom: 1;
  1572. width: 9px;
  1573. height: 5px;
  1574. vertical-align: 2px;
  1575. background-image: url(../slice/blue-arrow-down.png); }
  1576. .nav-top-bottom.active i {
  1577. background-image: url(../slice/blue-arrow-up.png); }
  1578. .table-history {
  1579. text-align: center;
  1580. color: #666;
  1581. margin-top: 88px; }
  1582. .table-history th, .table-history td {
  1583. border-right: 1px solid #fcfdfd;
  1584. height: 24px;
  1585. line-height: 24px; }
  1586. .table-history .last {
  1587. border-right: none; }
  1588. .table-history th {
  1589. background: #ddebf7; }
  1590. .table-history td {
  1591. background: #ecf3f9; }
  1592. #commonHero {
  1593. width: 314px; }
  1594. .duan_wei {
  1595. float: right;
  1596. _display: inline;
  1597. margin-top: 18px; }
  1598. .duan_wei div, .duan_wei p {
  1599. float: left;
  1600. _display: inline; }
  1601. .duan_wei p {
  1602. margin: 9px 0 0 0px;
  1603. width: 80px;
  1604. height: 30px;
  1605. text-align: center;
  1606. background: #ecf3f9;
  1607. line-height: 30px;
  1608. color: #4c9c95;
  1609. font-size: 14px;
  1610. font-weight: bold; }
  1611. .ch_level {
  1612. position: absolute;
  1613. left: -10px;
  1614. top: -8px;
  1615. z-index: 2;
  1616. width: 35px;
  1617. height: 30px; }
  1618. .ch_level.level_1 {
  1619. background: url(../img/champion_level_1.png); }
  1620. .ch_level.level_2 {
  1621. background: url(../img/champion_level_2.png); }
  1622. .ch_level.level_3 {
  1623. background: url(../img/champion_level_3.png); }
  1624. .ch_level.level_4 {
  1625. background: url(../img/champion_level_4.png); }
  1626. .ch_level.level_5 {
  1627. background: url(../img/champion_level_5.png); }
  1628. .personal-hover .hover-bd li {
  1629. margin-bottom: 8px !important; }
  1630. .split-line {
  1631. position: absolute;
  1632. top: 21px;
  1633. width: 1px;
  1634. height: 100px;
  1635. background: #f0f0f0; }
  1636. .split-line.one {
  1637. left: 136px; }
  1638. .split-line.two {
  1639. right: 115px; }
  1640. .li-golden {
  1641. border-right: 1px solid #f0f0f0;
  1642. margin-right: 21px;
  1643. padding-right: 5px; }
  1644. .new-split {
  1645. width: 1px;
  1646. height: 11px;
  1647. background: #ccc;
  1648. margin: 0 9px;
  1649. display: inline-block;
  1650. vertical-align: -1px; }
  1651. .ad-wrap {
  1652. position: absolute;
  1653. bottom: -3px;
  1654. left: 0; }
  1655. .personal-nav-wrap {
  1656. width: 600px;
  1657. padding: 15px;
  1658. padding-bottom: 0; }
  1659. .my-attention table {
  1660. color: #666;
  1661. min-height: 100px; }
  1662. .my-attention table thead {
  1663. color: #999; }
  1664. .my-attention table thead th {
  1665. padding: 12px 0 10px;
  1666. *padding-top: 4px;
  1667. border-bottom: 1px solid #f0f0f0; }
  1668. .my-attention table tbody tr:hover td {
  1669. background: #ecf3f9; }
  1670. .my-attention table tbody td {
  1671. padding: 5px; }
  1672. .my-attention .profileIcon {
  1673. width: 28px;
  1674. height: 28px;
  1675. margin-right: 10px;
  1676. vertical-align: middle; }
  1677. .my-attention .champions {
  1678. with: 20px;
  1679. height: 20px;
  1680. vertical-align: middle; }
  1681. .my-attention .page-nav {
  1682. margin-top: 10px;
  1683. margin-right: 0px !important; }
  1684. .academy ul {
  1685. padding: 20px 0;
  1686. width: 630px;
  1687. margin-left: -26px;
  1688. height: 380px;
  1689. overflow-y: hidden; }
  1690. .academy ul li {
  1691. float: left;
  1692. _display: inline;
  1693. margin-left: 27px;
  1694. color: #666;
  1695. padding: 0;
  1696. width: 130px;
  1697. height: 188px;
  1698. overflow: hidden;
  1699. margin-bottom: 12px; }
  1700. .academy ul li img {
  1701. margin-bottom: 5px; }
  1702. .academy ul li p {
  1703. height: 22px;
  1704. line-height: 22px;
  1705. overflow: hidden; }
  1706. .academy .enter {
  1707. float: left;
  1708. _display: inline; }
  1709. .academy .enter a {
  1710. color: #408bcb; }
  1711. .academy .page-nav {
  1712. *margin-top: 0px !important; }
  1713. .heroRankCrumbs {
  1714. background: #ecf3f9;
  1715. height: 30px;
  1716. line-height: 30px;
  1717. padding: 0 15px;
  1718. color: #666;
  1719. width: 600px; }
  1720. .heroRankCrumbs a {
  1721. outline: none; }
  1722. .heroRankCrumbs .fnMenu {
  1723. float: right;
  1724. margin-top: 7px; }
  1725. .heroRankCrumbs .fnMenu a {
  1726. cursor: pointer;
  1727. width: 13px;
  1728. height: 13px;
  1729. float: left;
  1730. _display: inline;
  1731. padding: 4px 8px;
  1732. border: 1px solid #cfdeea;
  1733. background: #ecf3f9;
  1734. margin-top: -4px; }
  1735. .heroRankCrumbs .fnMenu a:hover {
  1736. background: #cfdeea; }
  1737. .heroRankCrumbs .fnMenu .refresh {
  1738. -webkit-border-radius: 2px;
  1739. border-radius: 2px;
  1740. -webkit-background-clip: padding-box;
  1741. -moz-background-clip: padding;
  1742. background-clip: padding-box; }
  1743. .heroRankCrumbs .fnMenu .refresh i {
  1744. display: inline-block;
  1745. *display: inline;
  1746. *zoom: 1;
  1747. width: 13px;
  1748. height: 13px;
  1749. margin-bottom: 12px;
  1750. background-image: url(../slice/refresh.png); }
  1751. .heroRankCrumbs .fnMenu .back {
  1752. -webkit-border-radius: 2px;
  1753. border-radius: 2px;
  1754. -webkit-background-clip: padding-box;
  1755. -moz-background-clip: padding;
  1756. background-clip: padding-box;
  1757. margin-right: 12px; }
  1758. .heroRankCrumbs .fnMenu .back i {
  1759. display: inline-block;
  1760. *display: inline;
  1761. *zoom: 1;
  1762. width: 13px;
  1763. height: 13px;
  1764. margin-bottom: 12px;
  1765. background-image: url(../slice/back-arrow.png); }
  1766. .heroRanks-tc .hero-rank .mod-tabs-trigger li {
  1767. width: auto;
  1768. float: left;
  1769. margin: 0 5px; }
  1770. .heroRanks-tc .hero-rank .mod-tabs-trigger li a {
  1771. float: left;
  1772. padding: 0 10px;
  1773. outline: none;
  1774. width: auto;
  1775. display: block; }
  1776. .heroRanks-tc .hero-rank .search-input {
  1777. float: left; }
  1778. .heroRanks-tc .hero-rank #server {
  1779. float: left;
  1780. -webkit-border-radius: 3px;
  1781. border-radius: 3px;
  1782. -webkit-background-clip: padding-box;
  1783. -moz-background-clip: padding;
  1784. background-clip: padding-box;
  1785. outline: none;
  1786. width: 124px;
  1787. height: 30px;
  1788. line-height: 30px;
  1789. border: 1px solid #dbdbdb;
  1790. text-indent: 10px;
  1791. margin: -4px 8px 0 0;
  1792. padding: 5px 0\0;
  1793. *vertical-align: bottom;
  1794. *padding: 5px 0;
  1795. *display: inline-block; }
  1796. .heroRanks-tc .errorTips {
  1797. text-align: center;
  1798. padding-top: 20px;
  1799. font-size: 16px; }
  1800. .heroRanks-tc .hero-detail tr {
  1801. text-align: center; }
  1802. .hero-rank {
  1803. clear: both; }
  1804. .hero-rank #rankListBody .type6 a {
  1805. color: #408bcb; }
  1806. .hero-rank .choose-type a {
  1807. display: inline-block;
  1808. *display: inline;
  1809. *zoom: 1;
  1810. width: 50px;
  1811. height: 25px;
  1812. line-height: 25px;
  1813. text-align: center;
  1814. color: #666; }
  1815. .hero-rank .choose-type a.active {
  1816. background-color: #ddebf7;
  1817. -webkit-border-radius: 3px;
  1818. border-radius: 3px;
  1819. -webkit-background-clip: padding-box;
  1820. -moz-background-clip: padding;
  1821. background-clip: padding-box; }
  1822. .hero-rank .search-input {
  1823. margin: -4px 0 0;
  1824. *margin-top: -26px;
  1825. width: 124px; }
  1826. .hero-rank .search-input input {
  1827. width: 90px; }
  1828. .hero-rank .type-title {
  1829. border-bottom: 1px solid #f0f0f0;
  1830. padding: 12px 0 10px;
  1831. *padding-top: 4px;
  1832. color: #999;
  1833. clear: both; }
  1834. .hero-rank .mod-tabs-trigger li {
  1835. display: inline-block;
  1836. width: 60px;
  1837. height: 25px;
  1838. line-height: 25px;
  1839. text-align: center;
  1840. color: #666;
  1841. background: none;
  1842. font-weight: normal; }
  1843. .hero-rank .mod-tabs-trigger li.selected {
  1844. background-color: #ddebf7;
  1845. border-radius: 3px; }
  1846. .hero-rank .detail {
  1847. float: left;
  1848. _display: inline;
  1849. color: #999; }
  1850. .hero-rank .detail span {
  1851. color: #ccc; }
  1852. .hero-rank .page-nav {
  1853. margin-right: 0px !important;
  1854. *margin-top: 3px !important; }
  1855. .hero-rank #dataLists {
  1856. width: 100%;
  1857. height: 393px;
  1858. overflow: hidden; }
  1859. .hero-rank #dataLists thead th {
  1860. border-bottom: 1px solid #f0f0f0;
  1861. padding: 10px;
  1862. color: #999;
  1863. font-weight: normal; }
  1864. .hero-rank #dataLists tbody td {
  1865. height: 34px;
  1866. color: #666; }
  1867. .hero-rank #dataLists tbody td .hero-name {
  1868. vertical-align: middle; }
  1869. .hero-rank #dataLists tbody td .hero-name img {
  1870. margin-right: 5px;
  1871. vertical-align: middle; }
  1872. .hero-rank #dataLists .rank-type {
  1873. display: inline-block;
  1874. *display: inline;
  1875. *zoom: 1;
  1876. width: 14px;
  1877. height: 19px; }
  1878. .hero-rank #dataLists .rank-1 {
  1879. background-image: url(../slice/rank-type1.png); }
  1880. .hero-rank #dataLists .rank-2 {
  1881. background-image: url(../slice/rank-type2.png); }
  1882. .hero-rank #dataLists .rank-3 {
  1883. background-image: url(../slice/rank-type3.png); }
  1884. .hero-rank .hero-detail-list {
  1885. overflow-y: auto; }
  1886. .hero-rank .hero-detail-list .list-table {
  1887. height: 330px; }
  1888. .hero-rank .hero-detail-list .thead-simulate {
  1889. border-bottom: 1px solid #f0f0f0; }
  1890. .hero-rank .hero-detail-list .thead-simulate li {
  1891. float: left;
  1892. _display: inline;
  1893. padding: 10px 0;
  1894. color: #999;
  1895. text-align: center; }
  1896. .hero-rank .hero-detail-list .thead-simulate .col-60 {
  1897. width: 60px; }
  1898. .hero-rank .hero-detail-list .thead-simulate .col-100 {
  1899. width: 89px; }
  1900. .hero-rank .hero-detail-list .thead-simulate .col-110 {
  1901. width: 90px; }
  1902. .hero-rank .mod-tabs-trigger {
  1903. float: left; }
  1904. .heros-content {
  1905. clear: both;
  1906. padding-top: 30px; }
  1907. .heros-content .heros-search .search-input {
  1908. margin: 15px 0 10px 0; }
  1909. .heros-content .mod-pic {
  1910. margin: 15px 0 20px -10px; }
  1911. .heros-content .mod-pic li {
  1912. float: left;
  1913. _display: inline;
  1914. margin-left: 10px;
  1915. margin-bottom: 5px; }
  1916. .heros-content .mod-pic li img {
  1917. width: 44px;
  1918. height: 44px; }
  1919. .heros-content .search-result {
  1920. clear: both; }
  1921. .heros-content .search-result label {
  1922. color: #999; }
  1923. .heros-content .search-result a {
  1924. color: #666; }
  1925. .information {
  1926. background-color: #fff; }
  1927. .information a {
  1928. cursor: pointer; }
  1929. .information a img {
  1930. width: 170px;
  1931. height: 100px; }
  1932. .information .right {
  1933. float: left;
  1934. width: 285px;
  1935. height: 437px;
  1936. margin-right: 0px; }
  1937. .information .right .slideBox li i {
  1938. width: 72px;
  1939. position: absolute;
  1940. height: 25px;
  1941. background-image: url("../slice/tagBg.png");
  1942. left: 0;
  1943. top: 10px;
  1944. color: #fff;
  1945. line-height: 25px;
  1946. font-size: 12px;
  1947. text-align: center;
  1948. opacity: 0.8;
  1949. filter: alpha(opacity=80); }
  1950. .information .right .slideBox li p {
  1951. position: absolute;
  1952. bottom: 8px;
  1953. padding: 10px;
  1954. left: 0;
  1955. font-size: 14px;
  1956. line-height: 15px;
  1957. color: #ffffff; }
  1958. .information .right .title {
  1959. width: 350px;
  1960. margin-top: 22px;
  1961. height: 10px; }
  1962. .information .right .title .titleP {
  1963. float: left;
  1964. font-size: 12px;
  1965. color: #666666; }
  1966. .information .right .title .titleP span {
  1967. cursor: default; }
  1968. .information .right .title .titleP span.current {
  1969. font-weight: bold; }
  1970. .information .right .videoList {
  1971. position: relative;
  1972. margin-top: 10px;
  1973. width: 360px;
  1974. height: 220px; }
  1975. .information .right .videoList li {
  1976. cursor: pointer;
  1977. float: left;
  1978. position: relative;
  1979. margin-top: 10px;
  1980. margin-right: 10px;
  1981. width: 170px;
  1982. height: 100px; }
  1983. .information .right .videoList li .title {
  1984. left: 0;
  1985. height: 15px;
  1986. width: 160px;
  1987. font-size: 12px;
  1988. color: #cccccc;
  1989. position: absolute;
  1990. bottom: 0;
  1991. padding: 5px;
  1992. background: url(../img/shadow.png); }
  1993. .information .right .videoList li p {
  1994. width: 125px;
  1995. height: 16px;
  1996. overflow: hidden;
  1997. position: absolute;
  1998. bottom: 5px;
  1999. left: 45px;
  2000. text-overflow: ellipsis;
  2001. vertical-align: bottom;
  2002. white-space: nowrap;
  2003. color: #ccc; }
  2004. .information .right .videoList li .time {
  2005. position: absolute;
  2006. right: 0px;
  2007. bottom: 0;
  2008. padding: 5px;
  2009. color: #999999; }
  2010. .information .right .videoList ul {
  2011. display: none; }
  2012. .information .right .videoList ul.current {
  2013. display: block; }
  2014. .information .left {
  2015. float: left;
  2016. width: 314px;
  2017. height: 426px;
  2018. margin-top: 14px; }
  2019. .information .left .right-title {
  2020. font-size: 16px;
  2021. color: #333;
  2022. text-align: center; }
  2023. .information .left .right-title a {
  2024. font-weight: bold; }
  2025. .information .left .right-link {
  2026. font-size: 12px;
  2027. color: #666;
  2028. text-align: center;
  2029. height: 25px;
  2030. line-height: 25px;
  2031. overflow: hidden; }
  2032. .information .left .right-link a {
  2033. padding: 0 5px;
  2034. cursor: pointer;
  2035. float: left;
  2036. height: 26px;
  2037. line-height: 26px;
  2038. overflow: hidden;
  2039. text-overflow: ellipsis;
  2040. vertical-align: bottom;
  2041. white-space: nowrap;
  2042. width: 91px; }
  2043. .information .left .right-link span {
  2044. float: left;
  2045. _display: inline;
  2046. margin-top: -1px;
  2047. padding: 0; }
  2048. .information .left .list {
  2049. margin-top: 0px;
  2050. color: #666;
  2051. line-height: 26px;
  2052. font-size: 14px;
  2053. width: 315px;
  2054. height: 165px;
  2055. overflow: hidden; }
  2056. .information .left .list li {
  2057. height: 24px;
  2058. position: relative; }
  2059. .information .left .list li a:hover {
  2060. color: #ff7a43; }
  2061. .information .left .list li .tag {
  2062. color: #999; }
  2063. .information .left .list li .time {
  2064. font-size: 12px;
  2065. color: #999;
  2066. position: absolute;
  2067. right: 5px;
  2068. top: 0; }
  2069. .information .left .title {
  2070. height: 25px; }
  2071. .information .left .title .titleP {
  2072. float: left;
  2073. font-size: 12px;
  2074. color: #666666; }
  2075. .information .left .title .titleP span {
  2076. font-weight: bold; }
  2077. .information .left .list-d {
  2078. font-size: 12px;
  2079. line-height: 21px;
  2080. color: #666;
  2081. float: left;
  2082. width: 320px; }
  2083. .information .left .list-d a:hover {
  2084. color: #ff7a43; }
  2085. .information .left .mt10 {
  2086. margin-top: 10px; }
  2087. .information .left .title-hero {
  2088. position: relative;
  2089. margin-top: 5px;
  2090. float: left;
  2091. width: 321px; }
  2092. .information .left .title-hero span {
  2093. font-size: 12px;
  2094. color: #666666;
  2095. font-weight: bold; }
  2096. .information .left .title-hero .more {
  2097. position: absolute;
  2098. right: 5px;
  2099. top: 0; }
  2100. .information .left .hero-list {
  2101. position: relative;
  2102. float: left;
  2103. width: 321px;
  2104. margin-top: -5px; }
  2105. .information .left .hero-list ul {
  2106. overflow: hidden; }
  2107. .information .left .hero-list li {
  2108. float: left;
  2109. margin-right: 6px;
  2110. margin-top: 15px;
  2111. padding: 0;
  2112. width: 26px;
  2113. height: 26px; }
  2114. .information .left .hero-list li a {
  2115. padding: 0;
  2116. margin: 0; }
  2117. .information .left .hero-list li a img {
  2118. width: 26px;
  2119. height: 26px; }
  2120. .information .left .hero-list .btn-d {
  2121. height: 25px;
  2122. width: 314px;
  2123. position: relative;
  2124. float: left;
  2125. _display: inline;
  2126. background-color: #ecf3f9;
  2127. margin-top: 9px; }
  2128. .information .left .hero-list .btn-d a {
  2129. display: black;
  2130. text-align: center;
  2131. font-size: 12px;
  2132. color: #047bc2;
  2133. line-height: 25px; }
  2134. .information .left .hero-list .btn-d .d-gg {
  2135. background-color: #ddebf7;
  2136. width: 100px;
  2137. height: 25px;
  2138. float: left;
  2139. position: relative; }
  2140. .information .left .hero-list .btn-d .d-gg i {
  2141. width: 12px;
  2142. height: 11px;
  2143. display: block;
  2144. background-image: url("../slice/sound.png");
  2145. position: absolute;
  2146. top: 7px;
  2147. left: 12px; }
  2148. .information .left .hero-list .btn-d .d-gg span {
  2149. padding-left: 35px;
  2150. font-size: 12px;
  2151. color: #666;
  2152. line-height: 25px;
  2153. text-align: center; }
  2154. .information .left .hero-list .btn-d .tempWrap {
  2155. overflow: hidden; }
  2156. .information .left .hero-list .btn-d .d-content {
  2157. width: 212px;
  2158. float: left;
  2159. _display: inline;
  2160. overflow: hidden; }
  2161. .information .left .hero-list .btn-d .d-content li {
  2162. margin: 0;
  2163. float: none;
  2164. width: auto;
  2165. height: 25px;
  2166. overflow: hidden; }
  2167. .information .left .hero-list .btn-d .d-content li a {
  2168. display: block; }
  2169. .information .slideBox {
  2170. width: 350px;
  2171. height: 175px;
  2172. overflow: hidden;
  2173. position: relative; }
  2174. .information .slideBox .hd {
  2175. height: 15px;
  2176. overflow: hidden;
  2177. position: absolute;
  2178. right: 10px;
  2179. bottom: 5px;
  2180. z-index: 1; }
  2181. .information .slideBox .hd ul {
  2182. overflow: hidden;
  2183. zoom: 1;
  2184. float: left; }
  2185. .information .slideBox .hd ul li {
  2186. border-radius: 15px;
  2187. float: left;
  2188. margin-right: 5px;
  2189. width: 8px;
  2190. height: 8px;
  2191. line-height: 14px;
  2192. text-align: center;
  2193. background: #868385;
  2194. cursor: pointer; }
  2195. .information .slideBox .hd ul li.on {
  2196. background: #fff;
  2197. color: #fff; }
  2198. .information .slideBox .bd {
  2199. position: relative;
  2200. height: 100%;
  2201. z-index: 0; }
  2202. .information .slideBox .bd img {
  2203. width: 350px;
  2204. height: 175px; }
  2205. .information .topLiveContent li {
  2206. position: relative; }
  2207. .information .topLiveContent .shadow {
  2208. position: absolute;
  2209. bottom: 0;
  2210. background: url(../img/shadow.png);
  2211. width: 100%;
  2212. height: 40px; }
  2213. .mod-tabs-box {
  2214. width: 630px;
  2215. height: 30px;
  2216. line-height: 30px;
  2217. color: #666;
  2218. font-size: 12px;
  2219. background-color: #ecf3f9;
  2220. position: relative; }
  2221. .mod-tabs-box .nav-p {
  2222. padding-left: 10px; }
  2223. .mod-tabs-box .problem {
  2224. color: #408bcb;
  2225. position: absolute;
  2226. right: 90px;
  2227. top: 0;
  2228. display: block; }
  2229. .mod-tabs-box .line {
  2230. position: absolute;
  2231. top: 0;
  2232. right: 80px;
  2233. width: 1px;
  2234. height: 30px;
  2235. color: #ccc; }
  2236. .mod-tabs-box .icon {
  2237. display: block;
  2238. width: 25px;
  2239. height: 20px;
  2240. position: absolute;
  2241. cursor: pointer;
  2242. border: 1px solid #cfdeea;
  2243. background-color: #ecf3f9;
  2244. margin-top: -5px; }
  2245. .mod-tabs-box .icon:hover {
  2246. background-color: #cfdeea; }
  2247. .mod-tabs-box .back {
  2248. right: 43px;
  2249. top: 9px; }
  2250. .mod-tabs-box .back i {
  2251. display: inline-block;
  2252. *display: inline;
  2253. *zoom: 1;
  2254. width: 13px;
  2255. height: 13px;
  2256. margin: 0 0px 3px 6px;
  2257. background-image: url(../slice/back.png); }
  2258. .mod-tabs-box .refresh {
  2259. right: 10px;
  2260. top: 9px; }
  2261. .mod-tabs-box .refresh i {
  2262. display: inline-block;
  2263. *display: inline;
  2264. *zoom: 1;
  2265. width: 13px;
  2266. height: 13px;
  2267. margin: 0 0px 3px 6px;
  2268. background-image: url(../slice/refresh.png); }
  2269. .activecenter {
  2270. position: relative;
  2271. background-color: #fff; }
  2272. .activecenter a {
  2273. cursor: pointer; }
  2274. .activecenter .mod-title {
  2275. font-size: 12px;
  2276. color: #666;
  2277. font-weight: bold; }
  2278. .activecenter .mod-img-box-l {
  2279. float: left;
  2280. _display: inline;
  2281. width: 400px;
  2282. height: 190px;
  2283. margin-top: 10px;
  2284. margin-right: 10px; }
  2285. .activecenter .mod-img-box-l a {
  2286. width: 400px;
  2287. height: 190px;
  2288. display: block;
  2289. position: relative;
  2290. margin-top: 6px; }
  2291. .activecenter .mod-img-box-l a p {
  2292. position: absolute;
  2293. color: #fff;
  2294. bottom: 10px;
  2295. left: 20px;
  2296. font-size: 14px; }
  2297. .activecenter .mod-img-box-l img {
  2298. width: 400px;
  2299. height: 190px; }
  2300. .activecenter .tagBg {
  2301. width: 62px;
  2302. position: absolute;
  2303. height: 25px;
  2304. background-image: url("../slice/tagBg.png");
  2305. left: 0;
  2306. top: 10px;
  2307. color: #fff;
  2308. line-height: 25px;
  2309. font-size: 12px;
  2310. text-align: center;
  2311. opacity: 0.8;
  2312. filter: alpha(opacity=80);
  2313. text-align: left;
  2314. padding-left: 10px; }
  2315. .activecenter .tagBg2 {
  2316. background-image: url("../slice/tagBg2.png"); }
  2317. .activecenter .tagBg3 {
  2318. background-image: url("../slice/tagBg3.png"); }
  2319. .activecenter .mod-img-box-r {
  2320. width: 190px;
  2321. height: 212px;
  2322. margin-top: 10px;
  2323. float: left;
  2324. _display: inline; }
  2325. .activecenter .mod-img-box-r img {
  2326. opacity: 0.9;
  2327. filter: alpha(opacity=90); }
  2328. .activecenter .mod-img-box-r img:hover {
  2329. opacity: 1;
  2330. filter: alpha(opacity=100); }
  2331. .activecenter .mod-img-box-r a {
  2332. margin-bottom: 5px;
  2333. width: 190px;
  2334. height: 60px;
  2335. display: block; }
  2336. .activecenter .mt15 {
  2337. margin-top: 6px; }
  2338. .activecenter .mod-slide {
  2339. clear: both;
  2340. padding-top: 12px; }
  2341. .activecenter .mod-act-m {
  2342. bottom: 224px;
  2343. z-index: 100;
  2344. width: 600px;
  2345. height: 0px;
  2346. position: absolute;
  2347. margin-top: 14px;
  2348. float: left;
  2349. _display: inline; }
  2350. .activecenter .mod-act-m .mod-line {
  2351. width: 760px;
  2352. height: 1px;
  2353. position: absolute;
  2354. bottom: 5px;
  2355. background-color: #e6e6e6; }
  2356. .activecenter .mod-act-m .mod-line i {
  2357. position: absolute;
  2358. background-image: url("../slice/point.png");
  2359. display: block;
  2360. width: 10px;
  2361. height: 10px;
  2362. cursor: pointer; }
  2363. .activecenter .mod-act-m .mod-line .i-hover {
  2364. background-image: url("../slice/pointhover.png"); }
  2365. .activecenter .mod-act-m .mod-line .icon1 {
  2366. left: 86px;
  2367. top: -4px; }
  2368. .activecenter .mod-act-m .mod-line .icon2 {
  2369. left: 275px;
  2370. top: -4px; }
  2371. .activecenter .mod-act-m .mod-line .icon3 {
  2372. left: 471px;
  2373. top: -4px; }
  2374. .activecenter .mod-act-m .mod-line .icon4 {
  2375. left: 665px;
  2376. top: -4px; }
  2377. .activecenter .mod-act-m .mod-line .mod-box {
  2378. color: #999;
  2379. text-align: center;
  2380. line-height: 22px;
  2381. padding: 0px 5px;
  2382. position: absolute;
  2383. top: -34px;
  2384. background-color: #ededed;
  2385. border-radius: 5px; }
  2386. .activecenter .mod-act-m .mod-line .mod-box span {
  2387. left: 7px;
  2388. display: block;
  2389. width: 0;
  2390. height: 0;
  2391. border-width: 5px;
  2392. border-style: solid;
  2393. border-color: #ededed #fff #fff #fff;
  2394. position: absolute;
  2395. top: 21px; }
  2396. .activecenter .mod-act-m .mod-line .box1 {
  2397. left: 78px; }
  2398. .activecenter .mod-act-m .mod-line .box2 {
  2399. left: 267px; }
  2400. .activecenter .mod-act-m .mod-line .box3 {
  2401. left: 463px; }
  2402. .activecenter .mod-act-m .mod-line .box4 {
  2403. left: 657px; }
  2404. .activecenter .mod-act-m .mod-line .box-hover {
  2405. background-color: #ecf3f9;
  2406. color: #ff6600; }
  2407. .activecenter .picList li {
  2408. position: relative; }
  2409. .activecenter .picList .pic {
  2410. text-align: center;
  2411. line-height: 0; }
  2412. .activecenter .picList .pic img {
  2413. width: 190px;
  2414. height: 145px; }
  2415. .activecenter .picList .title {
  2416. line-height: 24px; }
  2417. .activecenter .picList .title a {
  2418. text-align: left;
  2419. font-size: 12px;
  2420. color: #999;
  2421. float: left; }
  2422. .activecenter .leftLoop {
  2423. overflow: hidden;
  2424. position: relative;
  2425. border: 1px solid #fff; }
  2426. .activecenter .leftLoop .bd .prev, .activecenter .leftLoop .bd .next {
  2427. display: block;
  2428. width: 24px;
  2429. height: 62px;
  2430. line-height: 10px;
  2431. cursor: pointer;
  2432. background-image: url("../slice/prev.png");
  2433. position: absolute;
  2434. z-index: 2;
  2435. top: 87px; }
  2436. .activecenter .leftLoop .bd .next {
  2437. background-image: url("../slice/next2.png");
  2438. right: 0; }
  2439. .activecenter .leftLoop .bd .next:hover {
  2440. background-image: url("../slice/nexthover.png"); }
  2441. .activecenter .leftLoop .bd .prev {
  2442. left: 0; }
  2443. .activecenter .leftLoop .bd .prev:hover {
  2444. background-image: url("../slice/prevhover.png"); }
  2445. .activecenter .leftLoop .hd ul {
  2446. float: right;
  2447. overflow: hidden;
  2448. zoom: 1;
  2449. margin-top: 10px; }
  2450. .activecenter .leftLoop .hd ul li {
  2451. position: relative;
  2452. _display: inline;
  2453. float: left;
  2454. overflow: hidden;
  2455. background: #ccc;
  2456. margin-right: 12px;
  2457. text-indent: -999px;
  2458. cursor: pointer;
  2459. -webkit-border-radius: 10px;
  2460. -moz-border-radius: 10px;
  2461. border-radius: 10px; }
  2462. .activecenter .leftLoop .hd ul li.on {
  2463. background: #f00; }
  2464. .activecenter .leftLoop .bd ul {
  2465. overflow: hidden;
  2466. zoom: 1; }
  2467. .activecenter .leftLoop .bd ul li {
  2468. margin: 0 24px 0 0;
  2469. text-align: center;
  2470. float: left;
  2471. display: _inline; }
  2472. .activecenter .tempWrap {
  2473. overflow: hidden;
  2474. position: relative;
  2475. width: 600px; }
  2476. .activecenter .picList {
  2477. position: relative;
  2478. overflow: hidden;
  2479. height: 210px; }
  2480. .activecenter .picList li {
  2481. float: left;
  2482. _display: inline;
  2483. width: 180px; }
  2484. .activecenter .picList li .tagBg {
  2485. top: 55px !important; }
  2486. .activecenter .picList li .border-line {
  2487. position: relative;
  2488. width: 100%;
  2489. height: 1px;
  2490. background-color: #ecf3f9;
  2491. margin: 10px 0;
  2492. padding-right: 15px; }
  2493. .activecenter .picList li .border-line i {
  2494. position: absolute;
  2495. background: url(../img/point.png);
  2496. display: block;
  2497. width: 10px;
  2498. height: 10px;
  2499. cursor: pointer;
  2500. left: 86px;
  2501. top: -4px; }
  2502. .activecenter .picList li .border-line .i-hover {
  2503. background: url(../img/pointhover.png); }
  2504. .activecenter .picList li .mod-box {
  2505. position: relative;
  2506. color: #999;
  2507. text-align: center;
  2508. line-height: 22px;
  2509. padding: 0px 5px;
  2510. background-color: #ededed;
  2511. border-radius: 5px;
  2512. margin: 0 auto 0 80px;
  2513. width: 60px; }
  2514. .activecenter .picList li .mod-box span {
  2515. left: 7px;
  2516. display: block;
  2517. width: 0;
  2518. height: 0;
  2519. border-width: 5px;
  2520. border-style: solid;
  2521. border-color: #ededed #fff #fff #fff;
  2522. position: absolute;
  2523. top: 21px; }
  2524. .activecenter .picList li .box-hover {
  2525. background-color: #ecf3f9;
  2526. color: #ff6600; }
  2527. @font-face {
  2528. font-family: 'iconfont';
  2529. src: url("../font/iconfont.eot");
  2530. /* IE9*/
  2531. src: url("../font/iconfont.eot?#iefix") format("embedded-opentype"), url("../font/iconfont.woff") format("woff"), url("../font/iconfont.ttf") format("truetype"), url("../font/iconfont.svg#iconfont") format("svg");
  2532. /* iOS 4.1- */ }
  2533. .iconfont {
  2534. font-family: "iconfont" !important;
  2535. font-size: 16px;
  2536. font-style: normal;
  2537. -webkit-font-smoothing: antialiased;
  2538. -webkit-text-stroke-width: 0.2px;
  2539. -moz-osx-font-smoothing: grayscale; }
  2540. .tag_icon_bottom {
  2541. font-size: 23px;
  2542. color: #333;
  2543. -webkit-transition: font-size 0.25s ease-out 0s;
  2544. -moz-transition: font-size 0.25s ease-out 0s;
  2545. transition: font-size 0.25s ease-out 0s; }
  2546. .lolbox-icon {
  2547. float: right;
  2548. _display: inline;
  2549. width: 16px;
  2550. height: 16px;
  2551. margin-top: 3px;
  2552. background: url(http://a.dwstatic.com/huya/main/img/pic-global_782237f.png) -152px -51px no-repeat; }
  2553. .live a {
  2554. cursor: pointer; }
  2555. .live .mod-tabs-hd {
  2556. width: 760px;
  2557. position: relative; }
  2558. .live .nav {
  2559. height: 30px; }
  2560. .live .nav li {
  2561. line-height: 30px;
  2562. font-weight: normal; }
  2563. .live .nav .selected {
  2564. font-weight: bold; }
  2565. .live .mod-tabs-bd.nav_live {
  2566. width: 760px;
  2567. margin-top: 14px;
  2568. height: 413px; }
  2569. .live .mod-tabs-bd.nav_live .directroom-replay > li {
  2570. float: left;
  2571. _display: inline;
  2572. position: relative;
  2573. width: 170px;
  2574. margin-right: 15px;
  2575. height: 160px; }
  2576. .live .mod-tabs-bd.nav_live .directroom-replay > li.current {
  2577. z-index: 100; }
  2578. .live .mod-tabs-bd.nav_live .directroom-replay > li p {
  2579. color: #666;
  2580. line-height: 22px;
  2581. font-size: 12px; }
  2582. .live .mod-tabs-bd.nav_live .directroom-replay > li .video-p1 {
  2583. padding-top: 5px;
  2584. white-space: nowrap;
  2585. overflow: hidden;
  2586. -webkit-text-overflow: ellipsis;
  2587. -o-text-overflow: ellipsis;
  2588. -moz-text-overflow: ellipsis;
  2589. -ms-text-overflow: ellipsis;
  2590. text-overflow: ellipsis; }
  2591. .live .mod-tabs-bd.nav_live .directroom-replay > li .video-p2 {
  2592. color: #999; }
  2593. .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img {
  2594. position: relative;
  2595. width: 170px;
  2596. height: 95px; }
  2597. .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .screenshot {
  2598. width: 170px;
  2599. height: 95px; }
  2600. .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .avatar {
  2601. position: absolute;
  2602. left: 0;
  2603. bottom: 0;
  2604. border: 1px solid #96a19d;
  2605. width: 36px;
  2606. height: 36px; }
  2607. .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .tag {
  2608. position: absolute;
  2609. top: 5px;
  2610. left: -2px;
  2611. width: 70px; }
  2612. .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .tag .tag_font {
  2613. display: block;
  2614. color: #fff;
  2615. line-height: 18px;
  2616. text-align: center;
  2617. width: 100%;
  2618. float: left;
  2619. _display: inline;
  2620. padding: 3px 0; }
  2621. .live .mod-tabs-bd.nav_live .directroom-replay > li .live-img .tag .tag_icon_bottom {
  2622. position: absolute;
  2623. right: -17px; }
  2624. .live .more-live {
  2625. margin-top: 15px; }
  2626. .live .more-live p {
  2627. float: left;
  2628. _display: inline; }
  2629. .live .more-live p span {
  2630. color: #ff7a43; }
  2631. .live .more-live p a {
  2632. color: #408bcb; }
  2633. .live .more-live .nav-right {
  2634. float: right;
  2635. _display: inline; }
  2636. .live .more-live .nav-right a {
  2637. color: #666; }
  2638. .live .more-live .nav-right .line {
  2639. color: #ccc;
  2640. padding: 0 5px; }
  2641. .live .more-live .nav-right .selected {
  2642. font-weight: bold; }
  2643. .live .directroom-poplayer {
  2644. display: none;
  2645. width: 280px;
  2646. border: 1px solid #D1D2D2;
  2647. position: absolute;
  2648. top: 0px;
  2649. left: 172px;
  2650. z-index: 222;
  2651. background-color: #fff;
  2652. padding: 7px 10px 5px 10px; }
  2653. .live .directroom-poplayer i {
  2654. width: 7px;
  2655. height: 13px;
  2656. position: absolute;
  2657. top: 10px;
  2658. left: -7px;
  2659. background-image: url(../img/icon-map.png);
  2660. background-repeat: no-repeat;
  2661. background-position: -30px -80px; }
  2662. .live .directroom-poplayer li {
  2663. position: relative;
  2664. margin: 0px;
  2665. width: 125px; }
  2666. .live .directroom-poplayer .vs-team {
  2667. float: left;
  2668. _display: inline;
  2669. width: 125px;
  2670. text-align: right;
  2671. color: #666666; }
  2672. .live .directroom-poplayer .vs-team li {
  2673. float: left;
  2674. _display: inline;
  2675. overflow: hidden;
  2676. margin-bottom: 3px; }
  2677. .live .directroom-poplayer .vs-team li img {
  2678. float: right;
  2679. _display: inline;
  2680. margin-left: 4px; }
  2681. .live .directroom-poplayer .vs-team-right {
  2682. margin-left: 26px;
  2683. text-align: left; }
  2684. .live .directroom-poplayer .vs-team-right li img {
  2685. float: left;
  2686. _display: inline;
  2687. margin-right: 4px;
  2688. margin-left: 0; }
  2689. .live .directroom-poplayer.directroom-poplayer-left {
  2690. left: -305px; }
  2691. .live .directroom-poplayer.directroom-poplayer-left i {
  2692. left: auto;
  2693. right: -7px;
  2694. background-position: -51px -80px; }
  2695. .live .directroom-poplayer .vs {
  2696. position: absolute;
  2697. top: 50%;
  2698. left: 142px;
  2699. margin-top: -0.5em;
  2700. color: #999999; }
  2701. .mod-tabs-bd.nav_subscribe {
  2702. padding-top: 20px; }
  2703. .mod-tabs-bd.nav_subscribe .list {
  2704. position: relative;
  2705. height: 438px; }
  2706. .mod-tabs-bd.nav_subscribe .list li {
  2707. float: left;
  2708. position: relative;
  2709. width: 345px;
  2710. height: 60px;
  2711. padding: 10px; }
  2712. .mod-tabs-bd.nav_subscribe .list li img {
  2713. position: absolute;
  2714. top: 10px;
  2715. left: 10px;
  2716. width: 60px;
  2717. height: 60px; }
  2718. .mod-tabs-bd.nav_subscribe .list li .text {
  2719. position: relative;
  2720. width: 150px;
  2721. height: 100%;
  2722. padding-left: 75px;
  2723. line-height: 20px; }
  2724. .mod-tabs-bd.nav_subscribe .list li .text .name, .mod-tabs-bd.nav_subscribe .list li .text p {
  2725. display: block;
  2726. width: 100%;
  2727. white-space: nowrap;
  2728. text-overflow: ellipsis;
  2729. overflow: hidden;
  2730. color: #666;
  2731. font-size: 12px; }
  2732. .mod-tabs-bd.nav_subscribe .list li .btn {
  2733. position: absolute;
  2734. top: 23px;
  2735. right: 20px;
  2736. width: 95px;
  2737. height: 33px;
  2738. color: #7d7e7f;
  2739. text-align: center;
  2740. line-height: 33px;
  2741. background-color: #d9e4ed;
  2742. -webkit-border-radius: 3px;
  2743. border-radius: 3px;
  2744. -webkit-background-clip: padding-box;
  2745. -moz-background-clip: padding;
  2746. background-clip: padding-box; }
  2747. .mod-tabs-bd.nav_subscribe .list li .btn:hover {
  2748. background-color: #408bcb;
  2749. color: #fff; }
  2750. .mod-tabs-bd.nav_subscribe .list li:hover {
  2751. background-color: #ecf3f9; }
  2752. .popIframe {
  2753. width: 428px;
  2754. height: 292px;
  2755. position: absolute;
  2756. top: 135px;
  2757. left: 41px;
  2758. z-index: 300;
  2759. display: none; }
  2760. .subscription-list {
  2761. text-align: center;
  2762. padding-top: 40px; }
  2763. .feedback h3 {
  2764. color: #666;
  2765. font-size: 16px;
  2766. font-weight: 500; }
  2767. .feedback .content {
  2768. padding: 16px 0 0 10px; }
  2769. .feedback .content .form-group {
  2770. color: #666;
  2771. margin-bottom: 12px; }
  2772. .feedback .content .form-group label {
  2773. display: inline-block;
  2774. *display: inline;
  2775. *zoom: 1;
  2776. width: 80px;
  2777. text-align: right;
  2778. margin-right: 5px; }
  2779. .feedback .content .form-group select, .feedback .content .form-group input {
  2780. outline: none;
  2781. width: 225px;
  2782. height: 30px;
  2783. line-height: 30px;
  2784. border: 1px solid #dbdbdb;
  2785. text-indent: 10px; }
  2786. .feedback .content .form-group select {
  2787. padding: 5px 0\0;
  2788. *vertical-align: bottom;
  2789. *padding: 5px 0;
  2790. *display: inline-block; }
  2791. .feedback .content .form-group textarea {
  2792. width: 400px;
  2793. height: 100px;
  2794. border: 1px solid #dbdbdb;
  2795. outline: none;
  2796. color: #333;
  2797. resize: none;
  2798. padding: 10px;
  2799. overflow-y: auto; }
  2800. .feedback .content .form-group img {
  2801. display: inline-block;
  2802. *display: inline;
  2803. *zoom: 1;
  2804. margin-right: 10px; }
  2805. .feedback .content .upload-group {
  2806. position: relative; }
  2807. .feedback .content .upload-group a {
  2808. position: absolute;
  2809. left: 90px;
  2810. width: 60px;
  2811. height: 18px;
  2812. color: #408bcb;
  2813. cursor: pointer; }
  2814. .feedback .content .upload-group input {
  2815. filter: alpha(opacity=0);
  2816. opacity: 0;
  2817. position: absolute;
  2818. left: 90px;
  2819. width: 60px;
  2820. height: 18px;
  2821. cursor: pointer; }
  2822. .feedback .content .upload-group .tips {
  2823. padding-left: 90px;
  2824. color: #ffa274;
  2825. font-weight: bolder;
  2826. padding: 10px 0 0 90px; }
  2827. .feedback .content #previewBox {
  2828. padding-left: 90px; }
  2829. .feedback .content .submit input {
  2830. border: none;
  2831. width: 85px;
  2832. height: 30px;
  2833. line-height: 30px;
  2834. text-align: center;
  2835. color: #fff;
  2836. background-color: #408bcb;
  2837. -webkit-border-radius: 3px;
  2838. border-radius: 3px;
  2839. -webkit-background-clip: padding-box;
  2840. -moz-background-clip: padding;
  2841. background-clip: padding-box;
  2842. text-indent: 0; }
  2843. .feedback .content .submit input:hover {
  2844. background-color: #4b9add; }
  2845. .feedback .content .feedback-info {
  2846. float: right;
  2847. margin-top: -34px;
  2848. margin-right: 132px;
  2849. color: #999; }
  2850. .feedback .content .feedback-info span {
  2851. color: #ff7a43; }
  2852. .change-name .top-message {
  2853. top: 0;
  2854. left: 0; }
  2855. .change-name .content {
  2856. text-align: center;
  2857. margin-top: 90px;
  2858. margin-left: -80px; }
  2859. .change-name .submit input {
  2860. width: 120px !important;
  2861. margin-left: -16px; }
  2862. .change-name .change-name-des {
  2863. margin-left: 266px;
  2864. text-align: left; }
  2865. .change-name .change-name-des h3 {
  2866. font-size: 12px;
  2867. color: #999;
  2868. font-weight: bold;
  2869. margin: 10px 0; }
  2870. .change-name .change-name-des p {
  2871. line-height: 24px; }
  2872. .change-name .tips i {
  2873. display: inline-block;
  2874. *display: inline;
  2875. *zoom: 1;
  2876. float: left;
  2877. _display: inline;
  2878. background-image: url(../slice/plaint.png);
  2879. width: 18px;
  2880. height: 18px;
  2881. margin-right: 10px; }
  2882. .change-name .tips .tips-info {
  2883. float: left;
  2884. _display: inline; }
  2885. .change-name .tips .tips-info a {
  2886. color: #408bcb; }
  2887. .change-name .tips.success-tip {
  2888. display: none; }
  2889. .change-name .tips.success-tip i {
  2890. background-image: url(../slice/check1.png);
  2891. background-size: 100%; }
  2892. .search-box h3 {
  2893. float: left;
  2894. _display: inline;
  2895. color: #666;
  2896. font-size: 16px; }
  2897. .search-box h3 span {
  2898. font-weight: bold; }
  2899. .search-box .content {
  2900. width: 600px;
  2901. height: 470px;
  2902. text-align: center; }
  2903. .search-box .content img {
  2904. margin: 112px 0 10px -81px; }
  2905. .search-box .content .s_1 {
  2906. color: #999;
  2907. font-size: 16px;
  2908. font-weight: bold;
  2909. margin-bottom: 15px; }
  2910. .search-box .content .s_2, .search-box .content .s_3 {
  2911. color: #b3b3b3;
  2912. line-height: 20px; }
  2913. .search-box .content .s_2 a, .search-box .content .s_3 a {
  2914. color: #408bcb;
  2915. cursor: pointer; }
  2916. .search-box.clothes-work img {
  2917. margin-left: -66px !important; }
  2918. .search-content .title {
  2919. color: #666;
  2920. font-size: 16px;
  2921. margin-bottom: 9px; }
  2922. .search-content .title span {
  2923. font-weight: bold; }
  2924. .search-content .type-title .type1 {
  2925. margin-left: -59px;
  2926. margin-right: 58px;
  2927. text-align: center !important; }
  2928. .search-content .type1, .search-content .type2, .search-content .type3 {
  2929. display: inline-block;
  2930. *display: inline;
  2931. *zoom: 1; }
  2932. .search-content .type1 {
  2933. width: 150px !important;
  2934. text-align: left !important;
  2935. padding-left: 24px; }
  2936. .search-content .type2 {
  2937. width: 316px !important; }
  2938. .search-content .type3 {
  2939. width: 80px !important; }
  2940. .search-content ul li {
  2941. padding: 8px 4px !important; }
  2942. .search-page-nav {
  2943. margin-top: 30px !important; }
  2944. .search-content2 .type-title {
  2945. border-bottom: 1px solid #f5f5f5;
  2946. padding: 5px; }
  2947. .search-content2 .type1, .search-content2 .type2, .search-content2 .type3 {
  2948. text-align: center; }
  2949. .main-wrap li:hover {
  2950. background-color: #ecf3f9;
  2951. cursor: pointer; }
  2952. .whole-wrap {
  2953. width: 630px; }
  2954. .whole-game .box-hd, .whole-wrap .box-hd {
  2955. height: 30px;
  2956. line-height: 30px;
  2957. background-color: #ecf3f9;
  2958. padding: 0 10px; }
  2959. .whole-game .box-hd a, .whole-wrap .box-hd a {
  2960. color: #666; }
  2961. .whole-game .box-hd .icons, .whole-wrap .box-hd .icons {
  2962. cursor: pointer;
  2963. margin-top: -28px;
  2964. *margin-top: -22px;
  2965. float: right;
  2966. _display: inline; }
  2967. .whole-game .box-hd .icons i, .whole-wrap .box-hd .icons i {
  2968. display: inline-block;
  2969. *display: inline;
  2970. *zoom: 1;
  2971. width: 13px;
  2972. height: 13px;
  2973. background-image: url(../slice/back-arrow.png); }
  2974. .whole-game .box-hd .icons i:hover, .whole-wrap .box-hd .icons i:hover {
  2975. background-image: url(../slice/back-arrow-hover.png); }
  2976. .whole-game .box-hd .icons.refresh, .whole-wrap .box-hd .icons.refresh {
  2977. margin-left: 10px; }
  2978. .whole-game .box-hd .icons.refresh i, .whole-wrap .box-hd .icons.refresh i {
  2979. background: url(../img/refresh.png) no-repeat !important; }
  2980. .whole-game .box-hd .icons.refresh i:hover, .whole-wrap .box-hd .icons.refresh i:hover {
  2981. background: url(../img/refresh-hover.png) no-repeat !important; }
  2982. .whole-game .top-game, .whole-wrap .top-game {
  2983. position: relative;
  2984. margin: 10px 0 15px;
  2985. overflow: hidden;
  2986. width: 600px;
  2987. height: 110px; }
  2988. .whole-game .top-game ul, .whole-wrap .top-game ul {
  2989. position: absolute;
  2990. left: 0px;
  2991. right: 0px;
  2992. padding: 0 15px;
  2993. overflow: hidden; }
  2994. .whole-game .top-game ul li, .whole-wrap .top-game ul li {
  2995. padding-left: 15px;
  2996. width: 268px;
  2997. cursor: pointer;
  2998. float: left;
  2999. _display: inline; }
  3000. .whole-game .top-game ul li img, .whole-wrap .top-game ul li img {
  3001. float: left;
  3002. _display: inline;
  3003. margin-right: 14px; }
  3004. .whole-game .top-game .nav-a, .whole-wrap .top-game .nav-a {
  3005. cursor: pointer;
  3006. position: absolute;
  3007. z-index: 1;
  3008. width: 15px;
  3009. height: 110px;
  3010. line-height: 110px;
  3011. text-align: center;
  3012. background-color: #f3f3f3;
  3013. -webkit-border-radius: 3px;
  3014. border-radius: 3px;
  3015. -webkit-background-clip: padding-box;
  3016. -moz-background-clip: padding;
  3017. background-clip: padding-box; }
  3018. .whole-game .top-game .nav-a:hover, .whole-wrap .top-game .nav-a:hover {
  3019. background-color: #ecf3f9; }
  3020. .whole-game .top-game .nav-a i, .whole-wrap .top-game .nav-a i {
  3021. display: inline-block;
  3022. *display: inline;
  3023. *zoom: 1;
  3024. width: 5px;
  3025. height: 7px;
  3026. *margin-top: 50px;
  3027. background-image: url(../slice/pre1.png); }
  3028. .whole-game .top-game .nav-a.pre, .whole-wrap .top-game .nav-a.pre {
  3029. left: 0; }
  3030. .whole-game .top-game .nav-a.next, .whole-wrap .top-game .nav-a.next {
  3031. right: 0; }
  3032. .whole-game .top-game .nav-a.next i, .whole-wrap .top-game .nav-a.next i {
  3033. background-image: url(../slice/next1.png); }
  3034. .whole-game li .cont .desc, .whole-wrap li .cont .desc {
  3035. color: #999;
  3036. line-height: 18px;
  3037. height: 34px;
  3038. overflow: hidden; }
  3039. .whole-game li .cont .title, .whole-wrap li .cont .title {
  3040. margin-bottom: 1px; }
  3041. .whole-game li .cont .new, .whole-wrap li .cont .new {
  3042. display: inline-block;
  3043. *display: inline;
  3044. *zoom: 1;
  3045. width: 23px;
  3046. height: 11px;
  3047. background-image: url(../slice/type-new.png);
  3048. margin-left: 5px;
  3049. *margin-top: -16px; }
  3050. .whole-game li .cont .name, .whole-wrap li .cont .name {
  3051. vertical-align: middle;
  3052. color: #666;
  3053. font-size: 14px;
  3054. font-weight: bold; }
  3055. .whole-game li .cont .score, .whole-wrap li .cont .score {
  3056. padding-left: 5px;
  3057. color: #ff4300; }
  3058. .whole-game li .cont .desc, .whole-wrap li .cont .desc {
  3059. color: #999; }
  3060. .whole-game li .cont .get-it, .whole-wrap li .cont .get-it {
  3061. display: inline-block;
  3062. *display: inline;
  3063. *zoom: 1;
  3064. width: 100px;
  3065. height: 31px;
  3066. text-align: center;
  3067. line-height: 31px;
  3068. color: #fff;
  3069. margin-top: 15px;
  3070. -webkit-border-radius: 3px;
  3071. border-radius: 3px;
  3072. -webkit-background-clip: padding-box;
  3073. -moz-background-clip: padding;
  3074. background-clip: padding-box;
  3075. background-color: #408bcb; }
  3076. .whole-game li .cont .get-it:hover, .whole-wrap li .cont .get-it:hover {
  3077. background-color: #4b9add; }
  3078. .whole-game li .cont .action a, .whole-wrap li .cont .action a {
  3079. color: #666; }
  3080. .whole-game li .cont .action span, .whole-wrap li .cont .action span {
  3081. display: inline-block;
  3082. *display: inline;
  3083. *zoom: 1;
  3084. color: #ccc;
  3085. padding: 0 10px; }
  3086. .whole-game li .cont .comment, .whole-wrap li .cont .comment {
  3087. margin: 1px 0; }
  3088. .whole-game .mod-tabs-hd .mod-tabs-trigger, .whole-wrap .mod-tabs-hd .mod-tabs-trigger {
  3089. float: left;
  3090. _display: inline;
  3091. width: 460px; }
  3092. .whole-game .mod-tabs-hd .mod-tabs-trigger li, .whole-wrap .mod-tabs-hd .mod-tabs-trigger li {
  3093. width: 20% !important; }
  3094. .whole-game .mod-tabs-hd .search-input, .whole-wrap .mod-tabs-hd .search-input {
  3095. width: 128px;
  3096. margin-right: 0 !important;
  3097. margin-top: 0 !important; }
  3098. .whole-game .mod-tabs-bd .popgame-list, .whole-wrap .mod-tabs-bd .popgame-list {
  3099. padding: 15px 0 0 0; }
  3100. .whole-game .mod-tabs-bd .popgame-list li, .whole-wrap .mod-tabs-bd .popgame-list li {
  3101. position: relative;
  3102. width: 33.3%;
  3103. margin-bottom: 15px;
  3104. float: left;
  3105. _display: inline; }
  3106. .whole-game .mod-tabs-bd .popgame-list li img, .whole-wrap .mod-tabs-bd .popgame-list li img {
  3107. float: left;
  3108. _display: inline;
  3109. margin-right: 15px;
  3110. width: 70px;
  3111. height: 70px; }
  3112. .whole-game .mod-tabs-bd .popgame-list li .comment-level, .whole-wrap .mod-tabs-bd .popgame-list li .comment-level {
  3113. display: inline-block;
  3114. *display: inline;
  3115. *zoom: 1;
  3116. width: 12px;
  3117. height: 11px;
  3118. background-image: url(../slice/star2.png); }
  3119. .whole-game .mod-tabs-bd .popgame-list li .comment-level.half, .whole-wrap .mod-tabs-bd .popgame-list li .comment-level.half {
  3120. background-image: url(../slice/start-half.png) !important; }
  3121. .whole-game .mod-tabs-bd .popgame-list li .comment-level.full, .whole-wrap .mod-tabs-bd .popgame-list li .comment-level.full {
  3122. background-image: url(../slice/star.png) !important; }
  3123. .whole-game .mod-tabs-bd .popgame-list li .tip, .whole-wrap .mod-tabs-bd .popgame-list li .tip {
  3124. position: absolute;
  3125. top: 5px;
  3126. left: 0;
  3127. width: 33px;
  3128. height: 15px;
  3129. z-index: 2; }
  3130. .whole-game .mod-tabs-bd .popgame-list li .tip.hot, .whole-wrap .mod-tabs-bd .popgame-list li .tip.hot {
  3131. background-image: url(../slice/hot.png); }
  3132. .whole-game .mod-tabs-bd .popgame-list li .tip.new, .whole-wrap .mod-tabs-bd .popgame-list li .tip.new {
  3133. background-image: url(../slice/new.png); }
  3134. .gameDesc {
  3135. width: 96px;
  3136. overflow: hidden;
  3137. white-space: nowrap;
  3138. -webkit-text-overflow: ellipsis;
  3139. -moz-text-overflow: ellipsis;
  3140. -ms-text-overflow: ellipsis;
  3141. -o-text-overflow: ellipsis;
  3142. text-overflow: ellipsis; }
  3143. .message .mod-tabs-content {
  3144. margin-top: 34px; }
  3145. .message .mod-tabs-content .title {
  3146. font-size: 12px !important; }
  3147. .message .mod-tabs-content .type-title .type1 {
  3148. margin: 0 -100px 0 100px; }
  3149. .message .mod-tabs-content .type-title .type2 {
  3150. margin: 0 30px 0 -30px; }
  3151. .message .mod-tabs-content .type1 {
  3152. text-align: left !important;
  3153. width: 70% !important; }
  3154. .message .mod-tabs-content .type2 {
  3155. text-align: right !important;
  3156. width: 28% !important; }
  3157. .message .mod-tabs-content ul {
  3158. height: 360px;
  3159. overflow-y: hidden;
  3160. margin-bottom: 6px; }
  3161. .message .mod-tabs-content ul li {
  3162. float: none !important;
  3163. padding: 10px 0; }
  3164. .message .read-status {
  3165. padding-left: 10px;
  3166. *margin-top: 3px;
  3167. color: #cccccc;
  3168. float: left;
  3169. _display: inline; }
  3170. .message .read-status a {
  3171. color: #408bcb; }
  3172. .message .read-status span {
  3173. display: inline-block;
  3174. *display: inline;
  3175. *zoom: 1;
  3176. padding: 0 5px; }
  3177. .message .page-nav {
  3178. *margin-top: 4px !important; }
  3179. .clothes-hero {
  3180. position: relative; }
  3181. .clothes-hero .hero-content {
  3182. padding-right: 10px;
  3183. position: relative;
  3184. height: 416px;
  3185. clear: both;
  3186. overflow: hidden;
  3187. margin-top: 34px; }
  3188. .clothes-hero .hero-content ul {
  3189. clear: both; }
  3190. .clothes-hero .hero-content ul li {
  3191. margin-bottom: 25px; }
  3192. .clothes-hero .hero-content .top {
  3193. padding-bottom: 15px;
  3194. color: #999; }
  3195. .clothes-hero .hero-content .top h3 {
  3196. display: inline-block;
  3197. *display: inline;
  3198. *zoom: 1;
  3199. font-weight: bold;
  3200. font-size: 12px;
  3201. color: #666;
  3202. margin-right: 12px; }
  3203. .clothes-hero .hero-content .top span {
  3204. display: inline-block;
  3205. *display: inline;
  3206. *zoom: 1;
  3207. padding-right: 12px; }
  3208. .clothes-hero .hero-content .top .good i, .clothes-hero .hero-content .top .bad i {
  3209. display: inline-block;
  3210. *display: inline;
  3211. *zoom: 1;
  3212. width: 14px;
  3213. height: 14px;
  3214. margin-bottom: -2px;
  3215. margin-right: 5px; }
  3216. .clothes-hero .hero-content .top .good i {
  3217. background-image: url(../slice/good.png); }
  3218. .clothes-hero .hero-content .top .bad i {
  3219. background-image: url(../slice/bad.png); }
  3220. .clothes-hero .hero-content .bottom {
  3221. color: #666; }
  3222. .clothes-hero .hero-content .bottom img {
  3223. display: inline-block;
  3224. *display: inline;
  3225. *zoom: 1;
  3226. margin-right: 2px;
  3227. vertical-align: middle; }
  3228. .clothes-hero .hero-content .bottom .right-btns {
  3229. *margin-top: -41px;
  3230. float: right;
  3231. _display: inline; }
  3232. .clothes-hero .hero-content .bottom .right-btns .btn {
  3233. cursor: pointer;
  3234. float: left;
  3235. _display: inline;
  3236. -webkit-border-radius: 3px;
  3237. border-radius: 3px;
  3238. -webkit-background-clip: padding-box;
  3239. -moz-background-clip: padding;
  3240. background-clip: padding-box;
  3241. width: 95px;
  3242. height: 33px;
  3243. line-height: 33px;
  3244. text-align: center;
  3245. color: #fff;
  3246. background-color: #408bcb; }
  3247. .clothes-hero .hero-content .bottom .right-btns .btn:hover {
  3248. background-color: #4b9add; }
  3249. .clothes-hero .hero-content .bottom .right-btns .btn i {
  3250. display: inline-block;
  3251. *display: inline;
  3252. *zoom: 1;
  3253. vertical-align: middle; }
  3254. .clothes-hero .hero-content .bottom .right-btns .btn.replace-btn i {
  3255. margin-right: 5px;
  3256. width: 14px;
  3257. height: 11px;
  3258. background-image: url(../slice/replace.png); }
  3259. .clothes-hero .hero-content .bottom .right-btns .btn.look {
  3260. margin-left: 10px; }
  3261. .clothes-hero .hero-content .bottom .right-btns .btn.look i {
  3262. margin-left: 5px;
  3263. width: 6px;
  3264. height: 4px;
  3265. background-image: url(../slice/look-arrow.png); }
  3266. .clothes-hero .hero-content .bottom span {
  3267. padding-left: 10px; }
  3268. .clothes-hero .hero-content .tip {
  3269. display: none;
  3270. width: 275px;
  3271. height: 170px;
  3272. border-top: 3px solid #408bcb; }
  3273. .clothes-hero .hero-content .tip .inner {
  3274. border: 1px solid #e7e7e7;
  3275. border-top: none;
  3276. padding: 15px 14px; }
  3277. .clothes-hero .hero-content .tip .inner .title h3 {
  3278. float: left;
  3279. _display: inline;
  3280. font-size: 12px;
  3281. font-weight: bold;
  3282. color: #666; }
  3283. .clothes-hero .hero-content .tip .inner .title a {
  3284. float: right;
  3285. _display: inline;
  3286. width: 10px;
  3287. height: 9px;
  3288. background-image: url(../slice/close.png); }
  3289. .clothes-hero .hero-content .tip .inner .title a:hover {
  3290. background-image: url(../slice/close-hover.png); }
  3291. .clothes-hero .hero-content .tip .inner .content {
  3292. text-align: center; }
  3293. .clothes-hero .hero-content .tip .inner .content .main {
  3294. padding: 27px 0 27px 40px; }
  3295. .clothes-hero .hero-content .tip .inner .content i {
  3296. float: left;
  3297. _display: inline;
  3298. width: 24px;
  3299. height: 24px;
  3300. background-image: url(../slice/check1.png);
  3301. margin-right: 10px; }
  3302. .clothes-hero .hero-content .tip .inner .content .info {
  3303. float: left;
  3304. _display: inline; }
  3305. .clothes-hero .hero-content .tip .inner .content .info h4 {
  3306. color: #666;
  3307. font-size: 12px;
  3308. margin-bottom: 5px;
  3309. margin-top: -2px; }
  3310. .clothes-hero .hero-content .tip .inner .content .info p {
  3311. color: #999; }
  3312. .clothes-hero .hero-content .tip .inner .content .confirm {
  3313. -webkit-border-radius: 3px;
  3314. border-radius: 3px;
  3315. -webkit-background-clip: padding-box;
  3316. -moz-background-clip: padding;
  3317. background-clip: padding-box;
  3318. width: 85px;
  3319. height: 30px;
  3320. line-height: 30px;
  3321. text-align: center;
  3322. background-color: #408bcb;
  3323. color: #fff;
  3324. margin: 0 auto 20px;
  3325. cursor: pointer; }
  3326. .clothes-hero .hero-content .hover-tip {
  3327. display: none;
  3328. background-image: url(../slice/triangle-block.png);
  3329. width: 258px;
  3330. height: 267px; }
  3331. .clothes-hero .hero-content .hover-tip .inner {
  3332. padding: 14px; }
  3333. .clothes-hero .hero-content .hover-tip .top {
  3334. padding-bottom: 5px !important;
  3335. border-bottom: 1px solid #e7e7e7; }
  3336. .clothes-hero .hero-content .hover-tip .top h3 {
  3337. color: #666;
  3338. font-size: 12px;
  3339. margin-bottom: 5px;
  3340. margin-top: -2px; }
  3341. .clothes-hero .hero-content .hover-tip .top p {
  3342. color: #999;
  3343. margin: 5px 0; }
  3344. .clothes-hero .hero-content .hover-tip .content {
  3345. padding-top: 5px;
  3346. color: #666;
  3347. line-height: 20px; }
  3348. .clothes-hero .hero-content .hover-tip .main p {
  3349. margin-top: 5px; }
  3350. .clothes-hero .hero-content .hover-tip .main ul {
  3351. padding: 10px 0; }
  3352. .clothes-hero .hero-content .hover-tip .main ul li {
  3353. margin-bottom: 5px !important;
  3354. float: left;
  3355. _display: inline;
  3356. width: 50%; }
  3357. .clothes-hero .hero-content .hover-tip .main ul li img {
  3358. vertical-align: middle; }
  3359. .clothes-hero .page-nav {
  3360. margin-top: 21px !important;
  3361. margin-right: 0 !important; }
  3362. .clothes-detail .hover-tip {
  3363. background-size: 100% 78%; }
  3364. .clothes-detail .hover-tip .top {
  3365. border-bottom: none !important; }
  3366. .clothes-detail .hover-tip .main p {
  3367. color: #999 !important; }
  3368. .clothes-detail .detail-top {
  3369. border-bottom: 1px solid #f0f0f0;
  3370. padding-bottom: 10px; }
  3371. .clothes-detail .detail-top-left {
  3372. float: left;
  3373. _display: inline; }
  3374. .clothes-detail .detail-top-left h3 {
  3375. margin-bottom: 6px; }
  3376. .clothes-detail .detail-top-left p span {
  3377. color: #408bcb; }
  3378. .clothes-detail .detail-top-right {
  3379. position: relative;
  3380. float: right;
  3381. _display: inline; }
  3382. .clothes-detail .detail-top-right .manipulate {
  3383. display: inline-block;
  3384. *display: inline;
  3385. *zoom: 1;
  3386. float: left;
  3387. _display: inline;
  3388. -webkit-border-radius: 3px;
  3389. border-radius: 3px;
  3390. -webkit-background-clip: padding-box;
  3391. -moz-background-clip: padding;
  3392. background-clip: padding-box;
  3393. width: 38px;
  3394. height: 38px;
  3395. background-color: #dbe7f1;
  3396. text-align: center;
  3397. color: #408bcb;
  3398. margin-right: 5px;
  3399. vertical-align: middle; }
  3400. .clothes-detail .detail-top-right .manipulate i {
  3401. display: block;
  3402. margin: 5px auto 0px; }
  3403. .clothes-detail .detail-top-right .replace i {
  3404. width: 14px;
  3405. height: 11px;
  3406. background-image: url(../slice/d-replace.png); }
  3407. .clothes-detail .detail-top-right .replace:hover i {
  3408. background-image: url(../slice/replace-hover.png); }
  3409. .clothes-detail .detail-top-right .collect i {
  3410. width: 15px;
  3411. height: 14px;
  3412. background-image: url(../slice/collect.png); }
  3413. .clothes-detail .detail-top-right .collect:hover i {
  3414. background-image: url(../slice/collect-hover.png); }
  3415. .clothes-detail .detail-top-right .good i {
  3416. width: 14px;
  3417. height: 14px;
  3418. background-image: url(../slice/d-good.png); }
  3419. .clothes-detail .detail-top-right .good:hover i {
  3420. background-image: url(../slice/d-good-hover.png); }
  3421. .clothes-detail .detail-top-right .bad i {
  3422. width: 14px;
  3423. height: 14px;
  3424. background-image: url(../slice/d-bad.png); }
  3425. .clothes-detail .detail-top-right .bad:hover i {
  3426. background-image: url(../slice/d-bad-hover.png); }
  3427. .clothes-detail .detail-top-right .replace-tip {
  3428. display: none;
  3429. position: absolute;
  3430. bottom: -26px;
  3431. left: 0;
  3432. color: #666;
  3433. padding: 2px;
  3434. border: 1px solid #e7e7e7;
  3435. background-color: #fff;
  3436. -webkit-box-shadow: 2px 2px 2px #ececec;
  3437. box-shadow: 2px 2px 2px #ececec; }
  3438. .clothes-detail .btn-con {
  3439. margin: 0 0 0 8px !important; }
  3440. .clothes-detail .detail-content {
  3441. position: relative;
  3442. padding: 15px 0; }
  3443. .clothes-detail .detail-content li .title {
  3444. padding-bottom: 10px; }
  3445. .clothes-detail .detail-content li .title h3 {
  3446. float: left;
  3447. _display: inline; }
  3448. .clothes-detail .detail-content li .title a {
  3449. float: right;
  3450. _display: inline;
  3451. color: #408bcb;
  3452. font-weight: bold; }
  3453. .clothes-detail .detail-content li .title a i {
  3454. display: inline-block;
  3455. *display: inline;
  3456. *zoom: 1;
  3457. width: 9px;
  3458. height: 5px;
  3459. background-image: url(../slice/blue-arrow-down.png);
  3460. margin: 0 0 1px 3px;
  3461. *margin-bottom: 5px; }
  3462. .clothes-detail .detail-content li .title span {
  3463. display: inline-block;
  3464. *display: inline;
  3465. *zoom: 1;
  3466. color: #999;
  3467. padding-left: 20px; }
  3468. .clothes-detail .detail-content li .img-block {
  3469. float: left;
  3470. _display: inline;
  3471. width: 30px;
  3472. text-align: center;
  3473. margin-right: 3px; }
  3474. .clothes-detail .detail-content li .img-block-wrap {
  3475. float: left;
  3476. _display: inline;
  3477. margin-right: 17px; }
  3478. .clothes-detail .detail-content li .li-content img {
  3479. display: inline-block;
  3480. *display: inline;
  3481. *zoom: 1;
  3482. vertical-align: middle;
  3483. margin-right: 4px; }
  3484. .clothes-detail .detail-content li .li-content span {
  3485. display: inline-block;
  3486. *display: inline;
  3487. *zoom: 1;
  3488. padding-left: 10px;
  3489. color: #666; }
  3490. .clothes-detail .rank-ul {
  3491. padding: 10px !important;
  3492. z-index: 99;
  3493. right: 0px !important;
  3494. top: 34px !important; }
  3495. .clothes-detail .rank-ul h4 {
  3496. color: #333;
  3497. font-size: 12px;
  3498. font-weight: bold;
  3499. margin-bottom: 10px; }
  3500. .clothes-detail .rank-ul img {
  3501. vertical-align: middle;
  3502. display: inline-block;
  3503. *display: inline;
  3504. *zoom: 1;
  3505. margin-right: 5px; }
  3506. .clothes-detail .rank-ul .article-block {
  3507. margin-bottom: 10px; }
  3508. .clothes-detail .rank-ul .article-block > div {
  3509. margin-bottom: 10px; }
  3510. .clothes-detail .rank-ul .article-block > span {
  3511. color: #666; }
  3512. .clothes-detail .more-comment {
  3513. display: block;
  3514. text-align: center;
  3515. height: 30px;
  3516. line-height: 30px;
  3517. color: #408bcb;
  3518. background-color: #ecf3f9;
  3519. margin: 15px 0 0; }
  3520. .clothes-detail .more-comment i {
  3521. display: inline-block;
  3522. *display: inline;
  3523. *zoom: 1;
  3524. width: 9px;
  3525. height: 5px;
  3526. background-image: url(../slice/blue-arrow-down.png);
  3527. margin: 0 0 1px 3px; }
  3528. .clothes-detail .dw-comment-ps_note {
  3529. color: #999;
  3530. margin-top: 10px; }
  3531. .clothes-detail .dw-comment-sequence a {
  3532. color: #666 !important;
  3533. height: 22px;
  3534. padding: 2px 10px; }
  3535. .clothes-detail .dw-comment-sequence a.selected {
  3536. background-color: #ddebf7 !important;
  3537. color: #666 !important;
  3538. -webkit-border-radius: 3px;
  3539. border-radius: 3px;
  3540. -webkit-background-clip: padding-box;
  3541. -moz-background-clip: padding;
  3542. background-clip: padding-box; }
  3543. .clothes-detail .dw-comment-comment_list .comment_content .comment_info {
  3544. color: #408bcb !important; }
  3545. .clothes-detail .dw-comment-comment_list .comment_text {
  3546. color: #666 !important; }
  3547. .clothes-detail textarea {
  3548. outline: none; }
  3549. .agency {
  3550. margin-top: -10px; }
  3551. .agency .mod-tabs-trigger {
  3552. float: left;
  3553. _display: inline;
  3554. display: none;
  3555. width: 325px;
  3556. margin-top: 5px; }
  3557. .agency .mod-tabs-trigger li {
  3558. width: 25% !important;
  3559. background-color: #fff !important;
  3560. font-weight: 200 !important; }
  3561. .agency .mod-tabs-trigger li.selected {
  3562. font-weight: bold !important;
  3563. background-color: #ddebf7 !important; }
  3564. .agency .mod-tabs-trigger li a {
  3565. display: block; }
  3566. .agency .mod-tabs-content {
  3567. margin-top: 10px !important; }
  3568. .agency .center-top {
  3569. color: #999;
  3570. margin-bottom: 9px;
  3571. text-align: left;
  3572. height: 20px; }
  3573. .agency .center-top img {
  3574. vertical-align: middle;
  3575. display: inline-block;
  3576. *display: inline;
  3577. *zoom: 1;
  3578. margin-right: 5px;
  3579. width: 28px;
  3580. height: 28px; }
  3581. .agency .center-top .h3 {
  3582. color: #666;
  3583. font-size: 14px;
  3584. font-weight: bold; }
  3585. .agency .center-top .cash {
  3586. color: #666; }
  3587. .agency .center-top .money {
  3588. color: #fd7e40;
  3589. font-weight: bold; }
  3590. .agency .center-top #topAgencyContainer {
  3591. float: left; }
  3592. .agency .center-top .center-right {
  3593. float: right;
  3594. _display: inline;
  3595. *margin-top: -23px; }
  3596. .agency .center-top #agencyChannel {
  3597. display: none; }
  3598. .agency .mod-slide-s2 {
  3599. width: 310px !important;
  3600. height: 165px !important; }
  3601. .agency .mod-slide-s2 .J_content li a {
  3602. width: 310px !important;
  3603. height: 165px !important;
  3604. position: relative; }
  3605. .agency .mod-slide-s2 .J_content li a p {
  3606. position: absolute;
  3607. left: 10px;
  3608. bottom: 10px;
  3609. color: #fff;
  3610. font-size: 14px; }
  3611. .agency .mod-slide-s2 .J_content li a img {
  3612. width: 310px !important;
  3613. height: 165px !important; }
  3614. .agency .mod-slide-s2 .mod-slide-trigger {
  3615. bottom: 14px !important;
  3616. right: 15px !important; }
  3617. .agency .mod-slide-s2 .J_nav li {
  3618. width: 6px;
  3619. height: 6px;
  3620. background-image: url(../slice/slider-nav.png) !important;
  3621. background-color: transparent; }
  3622. .agency .mod-slide-s2 .J_nav li.selected {
  3623. background-image: url(../slice/slider-nav-selected.png) !important; }
  3624. .agency .content-left {
  3625. float: left;
  3626. _display: inline; }
  3627. .agency .content-right {
  3628. margin-left: 8px;
  3629. padding: 28px 6px 2px;
  3630. background-color: #ecf3f9;
  3631. height: 135px;
  3632. position: relative;
  3633. float: left;
  3634. _display: inline; }
  3635. .agency .content-right .vip {
  3636. float: left;
  3637. _display: inline;
  3638. color: #666;
  3639. font-size: 14px;
  3640. font-weight: bold;
  3641. vertical-align: bottom; }
  3642. .agency .content-right .vip-cash {
  3643. float: left;
  3644. _display: inline;
  3645. margin-left: 10px; }
  3646. .agency .content-right .vip-cash.top-vip {
  3647. margin-top: -17px; }
  3648. .agency .content-right .vip-cash p {
  3649. display: inline-block;
  3650. *display: inline;
  3651. *zoom: 1;
  3652. color: #999;
  3653. margin-bottom: 5px; }
  3654. .agency .content-right .vip-cash p span {
  3655. color: #ff6600; }
  3656. .agency .content-right .pencent-wrap {
  3657. position: relative;
  3658. width: 100px;
  3659. height: 10px;
  3660. line-height: 10px;
  3661. margin-right: 15px;
  3662. background-image: url(../slice/pencent-wrap.png); }
  3663. .agency .content-right .pencent-wrap .pencent {
  3664. position: absolute;
  3665. left: 0;
  3666. width: 100%;
  3667. height: 100%; }
  3668. .agency .content-right .pencent-wrap .pencent span {
  3669. height: 10px;
  3670. overflow: hidden;
  3671. float: left;
  3672. background: url(../slice/pencent.png) no-repeat; }
  3673. .agency .content-right .pencent-wrap .pencent .body {
  3674. background-position: 0 -10px;
  3675. background-repeat: repeat-x; }
  3676. .agency .content-right .pencent-wrap .pencent .start {
  3677. width: 2.58%; }
  3678. .agency .content-right .pencent-wrap .pencent .end {
  3679. width: 2.58%;
  3680. background-position: 0 -20px; }
  3681. .agency .content-right input[type=button] {
  3682. width: 75px;
  3683. height: 30px;
  3684. line-height: 30px;
  3685. text-align: center;
  3686. border: none;
  3687. -webkit-border-radius: 3px;
  3688. border-radius: 3px;
  3689. -webkit-background-clip: padding-box;
  3690. -moz-background-clip: padding;
  3691. background-clip: padding-box;
  3692. background-color: #f1885b;
  3693. color: #fff;
  3694. margin-top: -17px; }
  3695. .agency .content-right input[type=button]:hover {
  3696. background-color: #f49e79; }
  3697. .agency .content-right .vip-top {
  3698. position: relative;
  3699. margin-bottom: 10px; }
  3700. .agency .content-right .vip-content {
  3701. position: relative; }
  3702. .agency .content-right .vip-content #vip-switch-content {
  3703. width: 243px;
  3704. height: 84px;
  3705. overflow: hidden;
  3706. position: relative;
  3707. margin-top: 10px; }
  3708. .agency .content-right .vip-content #vip-switch-content .wrap {
  3709. width: 100%;
  3710. position: absolute; }
  3711. .agency .content-right .vip-content .rights, .agency .content-right .vip-content ul {
  3712. float: left;
  3713. _display: inline;
  3714. padding-top: 5px\0;
  3715. *padding-top: 5px;
  3716. width: 280px;
  3717. height: 84px;
  3718. overflow: hidden;
  3719. text-align: left; }
  3720. .agency .content-right .vip-content li {
  3721. text-align: left;
  3722. line-height: 21px;
  3723. height: 21px;
  3724. overflow: hidden; }
  3725. .agency .content-right .check-vip {
  3726. position: absolute;
  3727. right: -6px;
  3728. bottom: 0px;
  3729. width: 30px;
  3730. height: 92px;
  3731. margin-top: -15px;
  3732. -webkit-border-radius: 3px;
  3733. border-radius: 3px;
  3734. -webkit-background-clip: padding-box;
  3735. -moz-background-clip: padding;
  3736. background-clip: padding-box;
  3737. background-color: #ddebf7;
  3738. cursor: pointer; }
  3739. .agency .content-right .check-vip:hover {
  3740. background-color: #eaf3fb; }
  3741. .agency .content-right .check-vip a {
  3742. display: inline-block;
  3743. *display: inline;
  3744. *zoom: 1;
  3745. width: 23px;
  3746. margin-left: 2px;
  3747. margin-top: 5px;
  3748. color: #408bcb; }
  3749. .agency .content-right .check-vip i {
  3750. display: inline-block;
  3751. *display: inline;
  3752. *zoom: 1; }
  3753. .agency .content-right .check-vip .vipLevelLogo {
  3754. width: 14px;
  3755. height: 33px;
  3756. display: block;
  3757. background: url(../img/vip_sprites.png) no-repeat 100px 100px; }
  3758. .agency .content-right .check-vip .vip-0 {
  3759. background-position: -54px -33px; }
  3760. .agency .content-right .check-vip .vip-1 {
  3761. background-position: 0 0; }
  3762. .agency .content-right .check-vip .vip-2 {
  3763. background-position: -12px 0; }
  3764. .agency .content-right .check-vip .vip-3 {
  3765. background-position: -26px 0; }
  3766. .agency .content-right .check-vip .vip-4 {
  3767. background-position: -40px 0; }
  3768. .agency .content-right .check-vip .vip-5 {
  3769. background-position: -54px 0; }
  3770. .agency .content-right .check-vip .vip-6 {
  3771. background-position: 2px -33px; }
  3772. .agency .content-right .check-vip .vip-7 {
  3773. background-position: -12px -33px; }
  3774. .agency .content-right .check-vip .vip-8 {
  3775. background-position: -26px -33px; }
  3776. .agency .content-right .check-vip .vip-9 {
  3777. background-position: -40px -33px; }
  3778. .agency .content-right .check-vip .nav-arrow {
  3779. width: 14px;
  3780. height: 14px;
  3781. overflow: hidden;
  3782. background: url(../img/vip-arrow.png) no-repeat -100px -100px; }
  3783. .agency .content-right .check-vip .al {
  3784. background-position: 0 -14px; }
  3785. .agency .content-right .check-vip .ar {
  3786. background-position: 0 0; }
  3787. .agency .center {
  3788. position: relative;
  3789. clear: both;
  3790. height: 399px; }
  3791. .agency .center.play-with {
  3792. height: 344px; }
  3793. .agency .center-bottom {
  3794. clear: both;
  3795. padding-bottom: 10px; }
  3796. .agency .center-bottom h3 {
  3797. color: #666;
  3798. font-size: 14px;
  3799. font-weight: bold;
  3800. text-align: left;
  3801. padding-bottom: 7px; }
  3802. .agency .center-bottom ul {
  3803. float: left;
  3804. _display: inline;
  3805. margin-left: -15px; }
  3806. .agency .center-bottom li {
  3807. margin: 0 0 15px 15px;
  3808. float: left;
  3809. _display: inline;
  3810. width: 135px; }
  3811. .agency .center-bottom li.last {
  3812. margin-bottom: 0; }
  3813. .agency .center-bottom li .coach-top {
  3814. position: relative;
  3815. height: 130px; }
  3816. .agency .center-bottom li .coach-top img {
  3817. width: 135px;
  3818. height: 130px; }
  3819. .agency .center-bottom li .coach-top .price {
  3820. position: absolute;
  3821. left: 10px;
  3822. bottom: 10px;
  3823. color: #ccc;
  3824. z-index: 5; }
  3825. .agency .center-bottom li .coach-top .price span {
  3826. color: #fd7e40;
  3827. font-weight: bold;
  3828. display: inline-block;
  3829. *display: inline;
  3830. *zoom: 1;
  3831. margin-right: 10px; }
  3832. .agency .center-bottom li .coach-top .mask {
  3833. position: absolute;
  3834. bottom: -2px;
  3835. left: 0;
  3836. width: 135px;
  3837. height: 42px;
  3838. overflow: hidden;
  3839. background: url(../img/shadow.png);
  3840. z-index: 1; }
  3841. .agency .center-bottom li i {
  3842. display: inline-block;
  3843. *display: inline;
  3844. *zoom: 1;
  3845. vertical-align: middle; }
  3846. .agency .center-bottom li .title {
  3847. margin: 10px 0 5px;
  3848. text-align: left;
  3849. color: #666; }
  3850. .agency .center-bottom li .title i {
  3851. width: 16px;
  3852. height: 14px;
  3853. margin-left: 5px;
  3854. background-image: url(../slice/icons-grade-set.png);
  3855. background-repeat: no-repeat; }
  3856. .agency .center-bottom li .title .level-0 {
  3857. background-image: none; }
  3858. .agency .center-bottom li .title .level-1 {
  3859. background-position: 0 0; }
  3860. .agency .center-bottom li .title .level-2 {
  3861. background-position: -20px 0; }
  3862. .agency .center-bottom li .title .level-3 {
  3863. background-position: -40px 0; }
  3864. .agency .center-bottom li .title .level-4 {
  3865. background-position: -60px 0; }
  3866. .agency .center-bottom li .title .level-5 {
  3867. background-position: -80px 0; }
  3868. .agency .center-bottom li .title .level-6 {
  3869. background-position: 0 -20px; }
  3870. .agency .center-bottom li .title .level-7 {
  3871. background-position: -20px -20px; }
  3872. .agency .center-bottom li .title .level-8 {
  3873. background-position: -40px -20px; }
  3874. .agency .center-bottom li .title .level-9 {
  3875. background-position: -60px -20px; }
  3876. .agency .center-bottom li .title .level-10 {
  3877. background-position: -80px -20px; }
  3878. .agency .center-bottom li .title .level-11 {
  3879. background-position: 0 -40px; }
  3880. .agency .center-bottom li .title .level-12 {
  3881. background-position: -20px -40px; }
  3882. .agency .center-bottom li .title .level-13 {
  3883. background-position: -40px -40px; }
  3884. .agency .center-bottom li .title .level-14 {
  3885. background-position: -60px -40px; }
  3886. .agency .center-bottom li .title .level-15 {
  3887. background-position: -80px -40px; }
  3888. .agency .center-bottom li .icons .sword {
  3889. float: left;
  3890. _display: inline;
  3891. color: #666;
  3892. margin-right: 6px; }
  3893. .agency .center-bottom li .icons .sword i {
  3894. margin-right: 2px;
  3895. width: 12px;
  3896. height: 11px;
  3897. background-image: url(../slice/sword.png); }
  3898. .agency .center-bottom li .icons .sex, .agency .center-bottom li .icons .voice, .agency .center-bottom li .icons .win, .agency .center-bottom li .icons .lost {
  3899. float: right;
  3900. _display: inline;
  3901. margin-left: 3px; }
  3902. .agency .center-bottom li .icons .sex {
  3903. width: 16px;
  3904. height: 16px;
  3905. background-image: url(../slice/sex.png); }
  3906. .agency .center-bottom li .icons .voice {
  3907. width: 16px;
  3908. height: 16px;
  3909. background-image: url(../slice/voice.png); }
  3910. .agency .center-bottom li .icons .win {
  3911. width: 16px;
  3912. height: 16px;
  3913. background-image: url(../slice/win.png); }
  3914. .agency .center-bottom li .icons .lost {
  3915. width: 16px;
  3916. height: 16px;
  3917. background-image: url(../slice/lost.png); }
  3918. .agency .buyer-teacher {
  3919. *margin-top: 8px; }
  3920. .agency .select-area {
  3921. clear: both;
  3922. padding-top: 12px;
  3923. position: relative; }
  3924. .agency .select-area select {
  3925. -webkit-border-radius: 3px;
  3926. border-radius: 3px;
  3927. -webkit-background-clip: padding-box;
  3928. -moz-background-clip: padding;
  3929. background-clip: padding-box;
  3930. outline: none;
  3931. width: 135px;
  3932. height: 30px;
  3933. line-height: 30px;
  3934. border: 1px solid #dbdbdb;
  3935. text-indent: 10px;
  3936. margin-right: 8px;
  3937. padding: 5px 0\0;
  3938. *vertical-align: bottom;
  3939. *padding: 5px 0;
  3940. *display: inline-block; }
  3941. .agency .select-area label {
  3942. display: inline-block;
  3943. *display: inline;
  3944. *zoom: 1;
  3945. margin-left: 5px; }
  3946. .agency .select-area .search-input {
  3947. width: 165px;
  3948. margin-top: 0px;
  3949. margin-right: 0;
  3950. *margin-top: -34px; }
  3951. .agency .select-area .search-input input {
  3952. width: 140px; }
  3953. .agency .channel {
  3954. margin-left: -15px;
  3955. padding-bottom: 10px;
  3956. height: 130px; }
  3957. .agency .channel li {
  3958. float: left;
  3959. _display: inline;
  3960. position: relative;
  3961. cursor: pointer;
  3962. margin-left: 15px;
  3963. *margin-left: 14px; }
  3964. .agency .channel li img {
  3965. width: 135px;
  3966. height: 130px; }
  3967. .agency .channel li .info {
  3968. position: absolute;
  3969. left: 0px;
  3970. bottom: 0px;
  3971. width: 115px;
  3972. height: 32px;
  3973. padding: 5px 10px;
  3974. text-align: left; }
  3975. .agency .channel li .info h4 {
  3976. font-size: 12px;
  3977. color: #eaeaea;
  3978. position: relative;
  3979. z-index: 5;
  3980. padding-top: 5px; }
  3981. .agency .channel li .info .desc {
  3982. color: #ddd;
  3983. height: 20px;
  3984. line-height: 14px;
  3985. overflow: hidden;
  3986. position: relative;
  3987. z-index: 5; }
  3988. .agency .channel li .info .mask {
  3989. position: absolute;
  3990. top: 3px;
  3991. left: 0;
  3992. width: 135px;
  3993. height: 42px;
  3994. overflow: hidden;
  3995. background: url(../img/shadow.png);
  3996. z-index: 1; }
  3997. .agency .channel li .tip {
  3998. position: absolute;
  3999. top: 5px;
  4000. left: 0;
  4001. width: 51px;
  4002. height: 25px;
  4003. line-height: 25px;
  4004. text-align: center;
  4005. color: #fff; }
  4006. .agency .channel li .tip.hot {
  4007. background-image: url(../slice/channel-tip1.png); }
  4008. .agency .channel li .tip.new {
  4009. background-image: url(../slice/channel-tip2.png); }
  4010. .agency .select {
  4011. float: left;
  4012. _display: inline;
  4013. -webkit-border-radius: 3px;
  4014. border-radius: 3px;
  4015. -webkit-background-clip: padding-box;
  4016. -moz-background-clip: padding;
  4017. background-clip: padding-box;
  4018. outline: none;
  4019. width: 125px;
  4020. height: 30px;
  4021. padding-left: 10px;
  4022. line-height: 30px;
  4023. border: 1px solid #dbdbdb;
  4024. margin-right: 8px;
  4025. border: 1px solid #dbdbdb;
  4026. cursor: pointer; }
  4027. .agency .select i {
  4028. float: right;
  4029. _display: inline;
  4030. display: inline-block;
  4031. *display: inline;
  4032. *zoom: 1;
  4033. width: 9px;
  4034. height: 5px;
  4035. margin: 13px 9px;
  4036. *margin-top: -16px;
  4037. vertical-align: middle;
  4038. background: url(../img/marrow-down.png); }
  4039. .agency .order-by-ul {
  4040. left: 0px;
  4041. top: 44px;
  4042. right: auto;
  4043. width: 123px;
  4044. *width: 127px; }
  4045. .agency .order-by-ul li {
  4046. cursor: pointer; }
  4047. .agency .order-by-ul.server-ul {
  4048. left: 119px; }
  4049. .agency-help {
  4050. padding: 0 !important;
  4051. width: 630px !important; }
  4052. .agency-help .top-message {
  4053. top: 0;
  4054. width: 790px; }
  4055. .agency-help .top-message #usernameWrap {
  4056. margin-left: 15px; }
  4057. .agency-help .agency {
  4058. padding-top: 40px; }
  4059. .agency-help .manual .problem {
  4060. background: #F4FAFF;
  4061. border-bottom: 1px solid #EBEBEB;
  4062. padding: 10px;
  4063. line-height: 24px;
  4064. overflow: hidden;
  4065. zoom: 1; }
  4066. .agency-help .manual .problem h3 {
  4067. background: #E6F0F7;
  4068. border: 1px solid #CDDEE8;
  4069. font-weight: 400;
  4070. display: inline-block;
  4071. float: left;
  4072. padding: 3px 10px;
  4073. line-height: 20px;
  4074. margin-right: 20px; }
  4075. .agency-help .manual .problem .problem-bd {
  4076. width: 530px;
  4077. float: left; }
  4078. .agency-help .manual .problem .problem-bd a {
  4079. display: inline-block;
  4080. width: 170px; }
  4081. .agency-help .manual #QAWrap {
  4082. height: 289px;
  4083. overflow: hidden;
  4084. margin: 20px 10px 20px 20px;
  4085. padding-right: 20px; }
  4086. .agency-help .manual #QAWrap li {
  4087. border-bottom: 1px solid #EBEBEB;
  4088. padding-bottom: 15px;
  4089. margin-bottom: 15px; }
  4090. .agency-help .manual #QAWrap li h4 {
  4091. color: #333;
  4092. margin-bottom: 5px; }
  4093. .chong {
  4094. position: absolute;
  4095. left: 0;
  4096. top: -18px; }
  4097. .chong .payfor {
  4098. color: #ff6600; }
  4099. .more-box {
  4100. height: 488px; }
  4101. .more-box h3 {
  4102. margin-bottom: 15px; }
  4103. .more-box ul {
  4104. padding-left: 10px; }
  4105. .more-box ul li {
  4106. float: left;
  4107. _display: inline;
  4108. text-align: center;
  4109. padding: 9px;
  4110. margin-right: 30px; }
  4111. .more-box ul li p {
  4112. color: #666; }
  4113. .more-box ul li:hover {
  4114. background-color: #ecf3f9; }
  4115. .more-box .more-block {
  4116. margin-bottom: 25px; }
  4117. .theme-box .type-title .type4 {
  4118. margin-left: 0 !important; }
  4119. .theme-box .mod-tabs-content ul .type4 {
  4120. margin-left: 0 !important; }
  4121. .theme-box .type-title .type1 {
  4122. width: 252px !important;
  4123. margin-left: 67px !important;
  4124. margin-right: 0px !important; }
  4125. .theme-box .mod-tabs-content ul .type1 {
  4126. width: 313px !important; }
  4127. .theme-box .sub-nav {
  4128. margin-bottom: 10px !important; }
  4129. .bbs-box {
  4130. position: relative; }
  4131. .bbs-box .type-title span, .bbs-box .mod-tabs-content ul span {
  4132. display: inline-block;
  4133. *display: inline;
  4134. *zoom: 1; }
  4135. .bbs-box .type-title span {
  4136. color: #999; }
  4137. .bbs-box .mod-tabs-content ul .type1 {
  4138. color: #666; }
  4139. .bbs-box .mod-tabs-content ul .type2, .bbs-box .mod-tabs-content ul .type3, .bbs-box .mod-tabs-content ul .type4 {
  4140. color: #999; }
  4141. .bbs-box .my-attention .more-actions {
  4142. position: absolute;
  4143. bottom: 14px;
  4144. left: 15px;
  4145. padding-top: 10px; }
  4146. .bbs-box .mod-tabs-content {
  4147. height: 355px;
  4148. overflow: hidden;
  4149. border-bottom: 1px solid #f0f0f0; }
  4150. .bbs-box .bbs-sign {
  4151. width: 45px;
  4152. height: 20px;
  4153. line-height: 20px;
  4154. text-align: center;
  4155. color: #fff;
  4156. background-color: #f1885b;
  4157. margin-right: 10px;
  4158. *vertical-align: 1px;
  4159. -webkit-border-radius: 3px;
  4160. border-radius: 3px;
  4161. -webkit-background-clip: padding-box;
  4162. -moz-background-clip: padding;
  4163. background-clip: padding-box; }
  4164. .bbs-box .bbs-sign:hover {
  4165. background-color: #f49e79; }
  4166. .bbs-box .bbs-sign.already {
  4167. background-color: #d4d3cf; }
  4168. .bbs-box .more-nav.more-actions .more-del {
  4169. padding: 2px 10px !important; }
  4170. .bbs-box .rank-ul.username {
  4171. z-index: 99;
  4172. right: 0;
  4173. width: 223px;
  4174. padding: 15px; }
  4175. .bbs-box .rank-ul.username .ul-top {
  4176. clear: both;
  4177. position: relative; }
  4178. .bbs-box .rank-ul.username .ul-top h3 a {
  4179. display: inline-block;
  4180. *display: inline;
  4181. *zoom: 1;
  4182. width: 13px;
  4183. height: 13px;
  4184. margin-bottom: 2px;
  4185. margin-left: 5px;
  4186. background-image: url(../slice/refresh.png); }
  4187. .bbs-box .rank-ul.username .ul-top h3 a:hover {
  4188. background-image: url(../slice/refresh-hover.png); }
  4189. .bbs-box .rank-ul.username .ul-top p a {
  4190. display: inline-block;
  4191. *display: inline;
  4192. *zoom: 1;
  4193. width: 13px;
  4194. height: 13px;
  4195. margin-bottom: -1px;
  4196. margin-left: 5px;
  4197. background-image: url(../slice/question1.png); }
  4198. .bbs-box .rank-ul.username .ul-content {
  4199. background-color: #ecf3f9;
  4200. width: 100%; }
  4201. .bbs-box .rank-ul.username .ul-content li {
  4202. height: 30px;
  4203. line-height: 30px; }
  4204. .bbs-box .rank-ul.username .ul-content li span {
  4205. display: inline-block;
  4206. *display: inline;
  4207. *zoom: 1;
  4208. width: 10px;
  4209. height: 9px;
  4210. margin-right: 5px; }
  4211. .bbs-box .rank-ul.username .ul-content li span.checked {
  4212. background-image: url(../slice/red-check.png); }
  4213. .bbs-box .rank-ul.username .ul-content li a {
  4214. display: inline-block;
  4215. *display: inline;
  4216. *zoom: 1;
  4217. width: 90px;
  4218. text-align: center; }
  4219. .bbs-box .rank-ul.username .ul-content li a.first {
  4220. text-align: left; }
  4221. .bbs-box .mod-tabs-hd {
  4222. background-color: #ecf3f9;
  4223. height: 30px;
  4224. line-height: 30px; }
  4225. .bbs-box .mod-tabs-hd .rank-ul {
  4226. top: 40px !important;
  4227. overflow-y: auto;
  4228. overflow-x: hidden;
  4229. min-width: 66px; }
  4230. .bbs-box .mod-tabs-hd .rank-ul li {
  4231. text-align: left !important; }
  4232. .bbs-box .mod-tabs-hd .rank-ul.girlAcademy {
  4233. right: 226px !important; }
  4234. .bbs-box .mod-tabs-hd .rank-ul.sameCity {
  4235. right: 131px !important; }
  4236. .bbs-box .mod-tabs-hd .rank-ul.aonic {
  4237. right: 219px !important; }
  4238. .bbs-box .mod-tabs-hd .more {
  4239. float: right;
  4240. _display: inline; }
  4241. .bbs-box .mod-tabs-hd .more span {
  4242. color: #ccc; }
  4243. .bbs-box .mod-tabs-hd .more a {
  4244. display: inline-block;
  4245. *display: inline;
  4246. *zoom: 1;
  4247. color: #408bcb;
  4248. margin-left: 10px; }
  4249. .bbs-box .mod-tabs-hd .more a i {
  4250. display: inline-block;
  4251. *display: inline;
  4252. *zoom: 1;
  4253. margin-right: 4px;
  4254. margin-bottom: -2px; }
  4255. .bbs-box .mod-tabs-hd .more .name {
  4256. color: #666;
  4257. padding-right: 10px; }
  4258. .bbs-box .mod-tabs-hd .more .name i {
  4259. display: inline-block;
  4260. *display: inline;
  4261. *zoom: 1;
  4262. width: 17px;
  4263. height: 15px;
  4264. margin: 0px 0 -1px 5px;
  4265. background: url(../img/marrow-down1.png) no-repeat; }
  4266. .bbs-box .mod-tabs-hd .more .myTheme i {
  4267. width: 14px;
  4268. height: 13px;
  4269. background-image: url(../slice/theme.png); }
  4270. .bbs-box .mod-tabs-hd .more .myTheme i:hover {
  4271. background-image: url(../slice/theme-hover.png); }
  4272. .bbs-box .mod-tabs-hd .more .shortMsg i {
  4273. width: 14px;
  4274. height: 12px;
  4275. background-image: url(../slice/envelope.png); }
  4276. .bbs-box .mod-tabs-hd .more .shortMsg i:hover {
  4277. background-image: url(../slice/envelope-hover.png); }
  4278. .bbs-box .ul-bottom {
  4279. float: none !important;
  4280. text-align: center; }
  4281. .bbs-box ul.top-nav {
  4282. float: left;
  4283. _display: inline;
  4284. height: 30px;
  4285. line-height: 30px;
  4286. width: 480px; }
  4287. .bbs-box ul.top-nav li {
  4288. float: left;
  4289. _display: inline;
  4290. width: 80px;
  4291. text-align: center; }
  4292. .bbs-box ul.top-nav li.selected {
  4293. font-weight: bold;
  4294. background-color: #ddebf7; }
  4295. .bbs-box ul.top-nav li i {
  4296. display: inline-block;
  4297. *display: inline;
  4298. *zoom: 1;
  4299. width: 17px;
  4300. height: 15px;
  4301. margin: 0 0 -2px 5px; }
  4302. .bbs-box ul.top-nav li i.up {
  4303. background: url(../img/marrow-up1.png); }
  4304. .bbs-box ul.top-nav li i.down {
  4305. background: url(../img/marrow-down1.png) no-repeat; }
  4306. .bbs-box ul.top-nav li a {
  4307. display: inline-block;
  4308. *display: inline;
  4309. *zoom: 1;
  4310. width: 100%;
  4311. height: 100%; }
  4312. .bbs-box ul.top-nav .all-time ul {
  4313. display: none;
  4314. clear: both;
  4315. position: absolute;
  4316. z-index: 20;
  4317. width: 82px;
  4318. height: 125px;
  4319. top: 80px;
  4320. left: 253px;
  4321. background-color: #fff;
  4322. border: 1px solid #e7e7e7;
  4323. text-align: center; }
  4324. .bbs-box ul.top-nav .all-time ul li {
  4325. float: none !important;
  4326. width: 100%;
  4327. border-top: 1px solid #e7e7e7; }
  4328. .bbs-box ul.top-nav .all-time ul li.first {
  4329. border-top: none; }
  4330. .bbs-box ul.top-nav .all-time ul li:hover {
  4331. background-color: #ecf3f9; }
  4332. .bbs-box .sub-nav {
  4333. clear: both;
  4334. margin: 10px 0 0; }
  4335. .bbs-box .sub-nav .top-nav {
  4336. width: 342px; }
  4337. .bbs-box .sub-nav .rank-ul {
  4338. padding: 0 5px;
  4339. top: 80px; }
  4340. .bbs-box .sub-nav .rank-ul li {
  4341. height: 28px;
  4342. line-height: 28px; }
  4343. .bbs-box .sub-nav .rank-ul.list-ul, .bbs-box .sub-nav .rank-ul.brief-ul {
  4344. right: 15px;
  4345. z-index: 5 !important; }
  4346. .bbs-box .sub-nav .more-nav {
  4347. position: relative;
  4348. float: right;
  4349. _display: inline; }
  4350. .bbs-box .sub-nav .more-nav a {
  4351. display: inline-block;
  4352. *display: inline;
  4353. *zoom: 1;
  4354. padding: 2px; }
  4355. .bbs-box .sub-nav .more-nav a i {
  4356. display: inline-block;
  4357. *display: inline;
  4358. *zoom: 1;
  4359. width: 14px;
  4360. height: 14px; }
  4361. .bbs-box .sub-nav .more-nav a.list-mode i {
  4362. background-image: url(../slice/list-mode.png); }
  4363. .bbs-box .sub-nav .more-nav a.brief-mode i {
  4364. background-image: url(../slice/brief-mode.png); }
  4365. .bbs-box .sub-nav .more-nav a:hover {
  4366. background: #99b2c6; }
  4367. .bbs-box .sub-nav .more-nav a:hover.list-mode i {
  4368. background-image: url(../slice/list-mode-hover.png); }
  4369. .bbs-box .sub-nav .more-nav a:hover.brief-mode i {
  4370. background-image: url(../slice/brief-mode-hover.png); }
  4371. .bbs-box .type-title .type1 {
  4372. width: 450px;
  4373. margin-left: -102px;
  4374. margin-right: 102px; }
  4375. .bbs-box .type-title .type4 {
  4376. width: 90px;
  4377. text-align: right;
  4378. margin-left: -17px; }
  4379. .bbs-box .mod-tabs-content {
  4380. clear: both; }
  4381. .bbs-box .mod-tabs-content ul {
  4382. clear: both;
  4383. position: absolute;
  4384. top: 100px;
  4385. overflow-y: hidden; }
  4386. .bbs-box .mod-tabs-content ul li {
  4387. padding: 5px; }
  4388. .bbs-box .mod-tabs-content ul .type1 {
  4389. width: 288px;
  4390. overflow: hidden;
  4391. text-overflow: ellipsis;
  4392. white-space: nowrap; }
  4393. .bbs-box .mod-tabs-content ul .type4 {
  4394. width: 90px;
  4395. text-align: left;
  4396. margin-left: -10px; }
  4397. .bbs-box span.type2 {
  4398. width: 90px;
  4399. text-align: left;
  4400. padding-left: 20px; }
  4401. .bbs-box .receive-msg .type-title .type1 {
  4402. width: 270px;
  4403. margin-left: 120px;
  4404. margin-right: 0px; }
  4405. .bbs-box .receive-msg .mod-tabs-content {
  4406. height: 350px !important; }
  4407. .bbs-box .receive-msg .mod-tabs-content ul .type1 {
  4408. width: 388px; }
  4409. .bbs-box .receive-msg .mod-tabs-content ul .type4 {
  4410. margin-left: -4px; }
  4411. .bbs-box .receive-msg label {
  4412. padding-right: 5px; }
  4413. .bbs-box .msg-info {
  4414. padding: 0px 27px;
  4415. line-height: 24px; }
  4416. .bbs-box .msg-detail {
  4417. padding-left: 37px;
  4418. padding-top: 5px; }
  4419. .bbs-box .bbs-tip {
  4420. text-align: center;
  4421. height: 25px;
  4422. line-height: 25px;
  4423. background-color: #fff4ef;
  4424. margin: 10px 0 0; }
  4425. .bbs-box .bbs-tip a {
  4426. color: #f1885b; }
  4427. .bbs-box .bbs-mall-all li {
  4428. padding: 8px 5px; }
  4429. .bbs-box .bbs-mall-all li span {
  4430. display: inline-block;
  4431. *display: inline;
  4432. *zoom: 1; }
  4433. .bbs-box .bbs-mall-all .type3, .bbs-box .bbs-mall-all .type4 {
  4434. text-align: left;
  4435. color: #666; }
  4436. .bbs-box .bbs-mall-all .type2 {
  4437. color: #666;
  4438. -webkit-text-overflow: ellipsis;
  4439. -moz-text-overflow: ellipsis;
  4440. -ms-text-overflow: ellipsis;
  4441. text-overflow: ellipsis;
  4442. overflow: hidden;
  4443. vertical-align: bottom;
  4444. white-space: nowrap; }
  4445. .bbs-box .bbs-mall-all .type1 i {
  4446. margin-right: 5px;
  4447. margin-bottom: -2px; }
  4448. .bbs-box .bbs-mall-all .type3 {
  4449. width: 50px;
  4450. padding-left: 50px; }
  4451. .bbs-box .bbs-mall-all .one .type1 {
  4452. color: #ff7a43;
  4453. -webkit-text-overflow: ellipsis;
  4454. -moz-text-overflow: ellipsis;
  4455. -ms-text-overflow: ellipsis;
  4456. text-overflow: ellipsis;
  4457. overflow: hidden;
  4458. vertical-align: bottom;
  4459. white-space: nowrap; }
  4460. .bbs-box .bbs-mall-all .two .type1 {
  4461. color: #408bcb; }
  4462. .bbs-box .bbs-mall-all .four .type1 {
  4463. color: #ef3d3d; }
  4464. .bbs-box .more-actions {
  4465. margin-top: -1px;
  4466. *margin-top: 6px;
  4467. padding-left: 0 !important; }
  4468. .bbs-box .more-actions a.more-del i {
  4469. display: inline-block;
  4470. *display: inline;
  4471. *zoom: 1;
  4472. width: 6px;
  4473. height: 7px;
  4474. margin: 0px 3px 5px 0;
  4475. background-image: url(../slice/cross.png); }
  4476. .bbs-box .hot-card {
  4477. position: absolute;
  4478. right: -301px;
  4479. top: 130px;
  4480. z-index: 9;
  4481. clear: both; }
  4482. .bbs-box .hot-card .inner {
  4483. position: absolute;
  4484. left: -34px;
  4485. top: 50%;
  4486. margin-top: -34px;
  4487. margin-right: 10px;
  4488. width: 20px;
  4489. display: block;
  4490. background-color: #b9cbda;
  4491. -webkit-border-radius: 3px;
  4492. border-radius: 3px;
  4493. -webkit-background-clip: padding-box;
  4494. -moz-background-clip: padding;
  4495. background-clip: padding-box;
  4496. text-align: center;
  4497. padding: 6px 7px; }
  4498. .bbs-box .hot-card .inner:hover {
  4499. background-color: #b9d0e1; }
  4500. .bbs-box .hot-card .inner p {
  4501. color: #fff;
  4502. font-weight: bold;
  4503. line-height: 20px;
  4504. width: 20px; }
  4505. .bbs-box .hot-card .inner i {
  4506. display: inline-block;
  4507. *display: inline;
  4508. *zoom: 1;
  4509. width: 8px;
  4510. height: 7px;
  4511. background-image: url(../slice/tie-arrow.png); }
  4512. .bbs-box .hot-card .hot-content {
  4513. width: 273px;
  4514. height: 297px;
  4515. border: 1px solid #e7e7e7;
  4516. padding: 13px;
  4517. background-color: #fff; }
  4518. .bbs-box .hot-card .hot-content li {
  4519. margin-bottom: 12px;
  4520. margin-bottom: 12px;
  4521. white-space: nowrap;
  4522. overflow: hidden;
  4523. -webkit-text-overflow: ellipsis;
  4524. text-overflow: ellipsis; }
  4525. .bbs-box .hot-card .hot-content li a {
  4526. color: #666;
  4527. cursor: pointer; }
  4528. .bbs-box .hot-card .hot-content li a i {
  4529. display: inline-block;
  4530. *display: inline;
  4531. *zoom: 1;
  4532. width: 4px;
  4533. height: 2px;
  4534. background-image: url(../slice/dot.png);
  4535. vertical-align: middle;
  4536. margin-right: 2px; }
  4537. .bbs-box .bbs-icon {
  4538. display: inline-block;
  4539. *display: inline;
  4540. *zoom: 1;
  4541. width: 15px; }
  4542. .bbs-box .icon-1 {
  4543. height: 17px;
  4544. background-image: url(../slice/mall-1.png); }
  4545. .bbs-box .icon-2 {
  4546. height: 13px;
  4547. background-image: url(../slice/mall-2.png); }
  4548. .bbs-box .icon-3 {
  4549. height: 13px;
  4550. background-image: url(../slice/mall-3.png); }
  4551. .bbs-box .icon-4 {
  4552. height: 14px;
  4553. background-image: url(../slice/mall-4.png); }
  4554. .bbs-box .icon-5 {
  4555. height: 14px;
  4556. background-image: url(../slice/mall-5.png); }
  4557. .bbs-box .icon-6 {
  4558. height: 15px;
  4559. background-image: url(../slice/mall-6.png); }
  4560. .bbs-box .icon-7 {
  4561. height: 14px;
  4562. background-image: url(../slice/mall-7.png); }
  4563. .bbs-box .icon-8 {
  4564. height: 14px;
  4565. background-image: url(../slice/mall-8.png); }
  4566. .bbs-box .icon-9 {
  4567. height: 13px;
  4568. background-image: url(../slice/mall-9.png); }
  4569. .bbs-box .icon-10 {
  4570. height: 13px;
  4571. background-image: url(../slice/mall-10.png); }
  4572. .bbs-box .icon-11 {
  4573. width: 13px;
  4574. height: 10px;
  4575. background-image: url(../slice/mall-11.png); }
  4576. .bbs-mall-list .page-nav {
  4577. margin-top: 0px !important;
  4578. position: absolute;
  4579. right: 15px;
  4580. bottom: 15px; }
  4581. .bbs-mall-brief .brief-list {
  4582. height: 345px !important;
  4583. padding-right: 10px; }
  4584. .bbs-mall-brief .brief-list li {
  4585. width: 570px; }
  4586. .bbs-mall-brief .brief-list li:hover {
  4587. background-color: #fff !important; }
  4588. .bbs-mall-brief .brief-list li .title {
  4589. padding-bottom: 10px; }
  4590. .bbs-mall-brief .brief-list li .title .title-msg {
  4591. margin-left: 0px !important;
  4592. font-weight: bold;
  4593. width: 388px;
  4594. overflow: hidden;
  4595. white-space: nowrap;
  4596. -webkit-text-overflow: ellipsis;
  4597. -moz-text-overflow: ellipsis;
  4598. -ms-text-overflow: ellipsis;
  4599. -otext-overflow: ellipsis;
  4600. text-overflow: ellipsis; }
  4601. .bbs-mall-brief .brief-list li .title .title-msg.red {
  4602. color: #ff7a43; }
  4603. .bbs-mall-brief .brief-list li .title .title-msg.blue {
  4604. color: #408bcb; }
  4605. .bbs-mall-brief .brief-list li .title a {
  4606. display: inline-block;
  4607. *display: inline;
  4608. *zoom: 1;
  4609. margin-left: 10px; }
  4610. .bbs-mall-brief .brief-list li .title i {
  4611. display: inline-block;
  4612. *display: inline;
  4613. *zoom: 1;
  4614. margin-right: 5px;
  4615. height: 12px;
  4616. margin-bottom: -2px; }
  4617. .bbs-mall-brief .brief-list li .title .time {
  4618. background-image: url(../slice/brief-time.png);
  4619. width: 12px; }
  4620. .bbs-mall-brief .brief-list li .title .comment {
  4621. background-image: url(../slice/brief-comment.png);
  4622. width: 13px; }
  4623. .bbs-mall-brief .brief-list li .title .man {
  4624. background-image: url(../slice/brief-man.png);
  4625. width: 14px; }
  4626. .bbs-mall-brief .brief-list li p {
  4627. line-height: 20px;
  4628. padding-bottom: 10px; }
  4629. .check-card {
  4630. width: 816px;
  4631. border: 1px solid #e7e7e7;
  4632. border-top: 3px solid #408bcb; }
  4633. .check-card .inner {
  4634. padding: 15px; }
  4635. .check-card .inner .page-nav {
  4636. margin: 20px 22px 10px 0; }
  4637. .check-card .win-hd {
  4638. padding-bottom: 10px; }
  4639. .check-card .win-hd h3 {
  4640. float: left;
  4641. _display: inline; }
  4642. .check-card .win-hd a {
  4643. display: inline-block;
  4644. *display: inline;
  4645. *zoom: 1;
  4646. float: right;
  4647. _display: inline; }
  4648. .check-card .win-hd a i {
  4649. display: inline-block;
  4650. *display: inline;
  4651. *zoom: 1;
  4652. width: 10px;
  4653. height: 9px;
  4654. background-image: url(../slice/close.png); }
  4655. .check-card .win-bd {
  4656. padding: 0 10px; }
  4657. .check-card .win-bd .top-line {
  4658. padding: 0 10px;
  4659. height: 30px;
  4660. line-height: 30px;
  4661. color: #666;
  4662. background-color: #ecf3f9;
  4663. margin-bottom: 15px; }
  4664. .check-card .win-bd .top-line span {
  4665. color: #999; }
  4666. .check-card .win-bd .top-line a {
  4667. color: #408bcb;
  4668. float: right;
  4669. _display: inline; }
  4670. .check-card .win-bd-content li {
  4671. margin-bottom: 15px; }
  4672. .check-card .win-bd-content li .img {
  4673. float: left;
  4674. _display: inline;
  4675. margin-right: 15px; }
  4676. .check-card .win-bd-content li .img i {
  4677. display: inline-block;
  4678. *display: inline;
  4679. *zoom: 1;
  4680. width: 12px;
  4681. height: 11px;
  4682. margin-right: 2px;
  4683. background-image: url(../slice/sword.png); }
  4684. .check-card .win-bd-content li .card-list-content {
  4685. width: 680px;
  4686. float: left;
  4687. _display: inline; }
  4688. .check-card .win-bd-content li .card-list-top h3 a {
  4689. color: #408bcb;
  4690. font-weight: bold;
  4691. font-size: 14px;
  4692. padding-bottom: 15px; }
  4693. .check-card .win-bd-content li .card-list-top p {
  4694. line-height: 20px; }
  4695. .check-card .win-bd-content li .edit-by {
  4696. text-align: center;
  4697. padding: 35px 0 20px 0;
  4698. border-bottom: 1px solid #f0f0f0; }
  4699. .check-card .win-bd-content li .edit-by p {
  4700. color: #ccc; }
  4701. .check-card .win-bd-content li .post-info-link {
  4702. padding: 15px 0; }
  4703. .check-card .win-bd-content li .post-time {
  4704. float: left;
  4705. _display: inline;
  4706. color: #999; }
  4707. .check-card .win-bd-content li .post-time span {
  4708. display: inline-block;
  4709. *display: inline;
  4710. *zoom: 1;
  4711. padding-left: 10px; }
  4712. .check-card .win-bd-content li .post-time span a {
  4713. color: #408bcb; }
  4714. .check-card .win-bd-content li .post-info-right {
  4715. float: right;
  4716. _display: inline; }
  4717. .check-card .win-bd-content li .post-info-right a {
  4718. color: #408bcb; }
  4719. .check-card .win-bd-content li .post-info-right span {
  4720. display: inline-block;
  4721. *display: inline;
  4722. *zoom: 1;
  4723. color: #ccc;
  4724. padding: 0 10px; }
  4725. .check-card .win-bd-content li .post-reply {
  4726. position: relative;
  4727. background-color: #ecf3f9;
  4728. padding: 9px 19px 19px; }
  4729. .check-card .win-bd-content li .reply-item {
  4730. position: relative;
  4731. color: #666;
  4732. line-height: 22px;
  4733. border-top: 1px solid #e1e6eb;
  4734. padding: 10px 0; }
  4735. .check-card .win-bd-content li .reply-item.first-item {
  4736. border-top: none !important; }
  4737. .check-card .win-bd-content li .reply-item a {
  4738. color: #408bcb;
  4739. display: inline-block;
  4740. *display: inline;
  4741. *zoom: 1;
  4742. padding-right: 10px; }
  4743. .check-card .win-bd-content li .reply-item span {
  4744. position: absolute;
  4745. right: 0;
  4746. bottom: 10px;
  4747. color: #999; }
  4748. .check-card .win-bd-content li .card-comment {
  4749. float: right;
  4750. _display: inline;
  4751. margin-top: 10px; }
  4752. .check-card .win-bd-content .card-publish {
  4753. margin-left: 64px;
  4754. width: 660px;
  4755. background-color: #ecf3f9;
  4756. padding: 10px; }
  4757. .check-card .win-bd-content .card-publish input {
  4758. border: 1px solid #dbdbdb;
  4759. width: 505px;
  4760. height: 28px;
  4761. line-height: 28px;
  4762. text-indent: 10px;
  4763. color: #999; }
  4764. .check-card .win-bd-content .card-publish .blue-btn {
  4765. margin: 0 10px;
  4766. vertical-align: middle; }
  4767. .check-card .win-bd-content .card-publish .high-mode {
  4768. color: #408bcb; }
  4769. .publish {
  4770. width: 550px; }
  4771. .publish .win-bd {
  4772. padding: 0; }
  4773. .publish .publish-top {
  4774. margin-bottom: 15px; }
  4775. .publish .publish-top input {
  4776. width: 293px;
  4777. height: 30px;
  4778. line-height: 30px;
  4779. text-indent: 10px;
  4780. color: #666;
  4781. border: 1px solid #dbdbdb;
  4782. -webkit-border-radius: 3px;
  4783. border-radius: 3px;
  4784. -webkit-background-clip: padding-box;
  4785. -moz-background-clip: padding;
  4786. background-clip: padding-box; }
  4787. .publish .publish-top span {
  4788. display: inline-block;
  4789. *display: inline;
  4790. *zoom: 1;
  4791. margin: 0 18px 0 10px;
  4792. color: #999; }
  4793. .publish .publish-top select {
  4794. outline: none;
  4795. width: 126px;
  4796. height: 30px;
  4797. line-height: 30px;
  4798. border: 1px solid #dbdbdb;
  4799. text-indent: 10px; }
  4800. .publish .publish-top select option {
  4801. height: 30px;
  4802. line-height: 30px; }
  4803. .publish .edit-block {
  4804. width: 508px;
  4805. height: 293px;
  4806. margin-bottom: 15px; }
  4807. .publish .publish-bottom a {
  4808. display: inline-block;
  4809. *display: inline;
  4810. *zoom: 1; }
  4811. .publish .publish-bottom span {
  4812. display: inline-block;
  4813. *display: inline;
  4814. *zoom: 1;
  4815. color: #999;
  4816. margin-left: 10px; }
  4817. .sameCity, .aonic {
  4818. width: 250px; }
  4819. .sameCity.aonic li a, .aonic.aonic li a {
  4820. padding-left: 13px !important; }
  4821. .sameCity .rank-title, .aonic .rank-title {
  4822. font-weight: bold;
  4823. font-size: 15px;
  4824. color: #333;
  4825. padding-left: 15px; }
  4826. .sameCity .area, .aonic .area {
  4827. zoom: 1; }
  4828. .sameCity .area li, .aonic .area li {
  4829. float: left;
  4830. _display: inline;
  4831. width: 73px;
  4832. height: 30px;
  4833. padding-left: 0 !important; }
  4834. .sameCity .area li a, .aonic .area li a {
  4835. color: #666;
  4836. display: block;
  4837. text-align: left;
  4838. padding-left: 25px; }
  4839. #forumchecknew {
  4840. position: absolute;
  4841. top: 88px;
  4842. width: 600px;
  4843. z-index: 1; }
  4844. .clothesOut-step-1 {
  4845. color: #666; }
  4846. .clothesOut-step-1 h3 {
  4847. font-size: 16px;
  4848. font-weight: 500;
  4849. padding-bottom: 15px; }
  4850. .clothesOut-step-1 .step-status {
  4851. background-image: url(../slice/status.jpg);
  4852. padding-top: 42px;
  4853. padding-bottom: 15px;
  4854. border-bottom: 1px solid #f0f0f0; }
  4855. .clothesOut-step-1 .step-status .inner {
  4856. position: relative;
  4857. height: 60px; }
  4858. .clothesOut-step-1 .step-status .inner p {
  4859. position: absolute;
  4860. left: 72px;
  4861. top: 0;
  4862. height: 20px;
  4863. line-height: 20px;
  4864. font-size: 12px;
  4865. color: #666; }
  4866. .clothesOut-step-1 .step-status .inner strong {
  4867. position: absolute;
  4868. left: 72px;
  4869. bottom: 0;
  4870. height: 30px;
  4871. line-height: 30px;
  4872. font-size: 24px;
  4873. color: #666; }
  4874. .clothesOut-step-1 .step-status .inner .next {
  4875. position: absolute;
  4876. right: 0;
  4877. top: 50%;
  4878. margin-top: -19px;
  4879. width: 115px;
  4880. height: 38px;
  4881. line-height: 38px;
  4882. text-align: center;
  4883. background-color: #408bcb;
  4884. -webkit-border-radius: 3px;
  4885. border-radius: 3px;
  4886. -webkit-background-clip: padding-box;
  4887. -moz-background-clip: padding;
  4888. background-clip: padding-box;
  4889. color: #fff; }
  4890. .clothesOut-step-1 .step-status .inner .next:hover {
  4891. background-color: #4b9add; }
  4892. .clothesOut-step-1 .step-search {
  4893. height: 30px;
  4894. padding-top: 6px;
  4895. padding-bottom: 10px; }
  4896. .clothesOut-step-1 .step-search .title {
  4897. line-height: 30px;
  4898. font-weight: bold;
  4899. padding-right: 20px; }
  4900. .clothesOut-step-1 .step-search .sort-select {
  4901. width: 500px;
  4902. color: #666; }
  4903. .clothesOut-step-1 .step-search .sort-select label {
  4904. display: inline-block;
  4905. *display: inline;
  4906. *zoom: 1;
  4907. margin: 7px 20px 0 0; }
  4908. .clothesOut-step-1 .step-search .sort-select label input {
  4909. width: 12px;
  4910. height: 12px;
  4911. border: 1px solid #c1c1c1;
  4912. background-color: #fff;
  4913. margin-right: 5px; }
  4914. .clothesOut-step-1 .step-search .sort-select label.red {
  4915. color: #ff7a43; }
  4916. .clothesOut-step-1 .step-search .search-input {
  4917. width: 173px;
  4918. margin-right: 0;
  4919. margin-top: 0; }
  4920. .clothesOut-step-1 .step-search .search-input input {
  4921. width: 147px; }
  4922. .clothesOut-step-1 .hero-list {
  4923. position: relative;
  4924. height: 287px; }
  4925. .clothesOut-step-1 .hero-list .mod-pic {
  4926. position: relative;
  4927. padding: 0; }
  4928. .clothesOut-step-1 .hero-list .mod-pic li {
  4929. float: left;
  4930. _display: inline;
  4931. overflow: hidden;
  4932. margin: 0 14px 21px 0;
  4933. width: 60px;
  4934. height: 80px; }
  4935. .clothesOut-step-1 .hero-list .mod-pic li a {
  4936. display: inline-block;
  4937. *display: inline;
  4938. *zoom: 1;
  4939. text-align: center; }
  4940. .clothesOut-step-1 .hero-list .mod-pic li a img {
  4941. display: block;
  4942. width: 60px;
  4943. height: 60px; }
  4944. .clothesOut-step-1 .hero-list .mod-pic li em {
  4945. display: inline-block;
  4946. *display: inline;
  4947. *zoom: 1;
  4948. text-align: center;
  4949. cursor: pointer;
  4950. line-height: 18px;
  4951. padding: 4px 1px 0; }
  4952. .clothesOut-step-2 {
  4953. color: #666;
  4954. position: relative; }
  4955. .clothesOut-step-2 h3 {
  4956. font-size: 16px;
  4957. font-weight: 500;
  4958. padding-bottom: 15px; }
  4959. .clothesOut-step-2 .step-status {
  4960. background: url(../slice/status.jpg) no-repeat -760px 0;
  4961. padding-top: 38px;
  4962. padding-bottom: 18px;
  4963. border-bottom: 1px solid #f0f0f0; }
  4964. .clothesOut-step-2 .step-status .inner {
  4965. position: relative;
  4966. height: 60px; }
  4967. .clothesOut-step-2 .step-status .inner p {
  4968. position: absolute;
  4969. left: 72px;
  4970. top: 0;
  4971. height: 20px;
  4972. line-height: 20px;
  4973. font-size: 12px;
  4974. color: #666; }
  4975. .clothesOut-step-2 .step-status .inner strong {
  4976. position: absolute;
  4977. left: 72px;
  4978. bottom: 0;
  4979. height: 30px;
  4980. line-height: 30px;
  4981. font-size: 24px;
  4982. color: #666; }
  4983. .clothesOut-step-2 .step-status .inner .prev {
  4984. position: absolute;
  4985. right: 125px;
  4986. top: 50%;
  4987. margin-top: -19px;
  4988. width: 115px;
  4989. height: 38px;
  4990. line-height: 38px;
  4991. text-align: center;
  4992. background-color: #97bbd9;
  4993. -webkit-border-radius: 3px;
  4994. border-radius: 3px;
  4995. -webkit-background-clip: padding-box;
  4996. -moz-background-clip: padding;
  4997. background-clip: padding-box;
  4998. color: #fff; }
  4999. .clothesOut-step-2 .step-status .inner .prev:hover {
  5000. background-color: #a6c8e4; }
  5001. .clothesOut-step-2 .step-status .inner .next {
  5002. position: absolute;
  5003. right: 0;
  5004. top: 50%;
  5005. margin-top: -19px;
  5006. width: 115px;
  5007. height: 38px;
  5008. line-height: 38px;
  5009. text-align: center;
  5010. background-color: #408bcb;
  5011. -webkit-border-radius: 3px;
  5012. border-radius: 3px;
  5013. -webkit-background-clip: padding-box;
  5014. -moz-background-clip: padding;
  5015. background-clip: padding-box;
  5016. color: #fff; }
  5017. .clothesOut-step-2 .step-status .inner .next:hover {
  5018. background-color: #4b9add; }
  5019. .clothesOut-step-2 .content {
  5020. position: relative;
  5021. height: 306px;
  5022. padding: 10px 0; }
  5023. .clothesOut-step-2 .content .btn {
  5024. position: absolute;
  5025. top: 10px;
  5026. width: 45px;
  5027. height: 21px;
  5028. line-height: 21px;
  5029. text-align: center;
  5030. background-color: #408bcb;
  5031. -webkit-border-radius: 2px;
  5032. border-radius: 2px;
  5033. -webkit-background-clip: padding-box;
  5034. -moz-background-clip: padding;
  5035. background-clip: padding-box;
  5036. color: #fff;
  5037. cursor: pointer; }
  5038. .clothesOut-step-2 .content .btn.back-btn {
  5039. left: 645px; }
  5040. .clothesOut-step-2 .content .btn.reset-btn {
  5041. left: 695px; }
  5042. .clothesOut-step-2 .content .btn:hover {
  5043. background-color: #4b9add; }
  5044. .clothesOut-step-2 .content h6 {
  5045. font-size: 12px;
  5046. margin: 0;
  5047. height: 21px;
  5048. line-height: 21px;
  5049. padding-bottom: 10px; }
  5050. .clothesOut-step-2 .content h6 span {
  5051. margin-left: 10px;
  5052. font-weight: normal; }
  5053. .clothesOut-step-2 .content .point-list {
  5054. position: relative;
  5055. height: 50px;
  5056. padding-bottom: 10px; }
  5057. .clothesOut-step-2 .content .point-list .ul-1 {
  5058. position: absolute;
  5059. top: 0;
  5060. left: 0; }
  5061. .clothesOut-step-2 .content .point-list .ul-1 li {
  5062. float: left;
  5063. margin-right: 3px;
  5064. width: 30px;
  5065. text-align: center; }
  5066. .clothesOut-step-2 .content .point-list .ul-1 li em {
  5067. height: 20px;
  5068. line-height: 20px; }
  5069. .clothesOut-step-2 .content .point-list .ul-2 {
  5070. position: absolute;
  5071. top: 0;
  5072. right: 0; }
  5073. .clothesOut-step-2 .content .point-list .ul-2 li {
  5074. float: left;
  5075. margin-left: 3px;
  5076. width: 30px;
  5077. text-align: center; }
  5078. .clothesOut-step-2 .content .point-list .ul-2 li div {
  5079. width: 30px;
  5080. height: 30px;
  5081. line-height: 30px;
  5082. text-align: center;
  5083. background-color: #ecf3f9; }
  5084. .clothesOut-step-2 .content .point-list .ul-2 li em {
  5085. height: 20px;
  5086. line-height: 20px; }
  5087. .clothesOut-step-2 .content .point-list .ul-2 li.on div {
  5088. background-color: #ddebf7; }
  5089. .clothesOut-step-2 .content .add-box {
  5090. height: 48px;
  5091. padding-bottom: 20px; }
  5092. .clothesOut-step-2 .content .add-box ul li {
  5093. float: left;
  5094. margin-right: 4px;
  5095. width: 44px;
  5096. height: 44px;
  5097. border: 2px solid #ecf3f9;
  5098. background: url(../slice/add-icon.jpg) no-repeat center center; }
  5099. .clothesOut-step-2 .content .add-box textarea {
  5100. width: 506px;
  5101. height: 25;
  5102. border: 1px solid #dbdbdb;
  5103. padding: 9px 10px; }
  5104. .clothesOut-step-2 .content .add-box textarea.type-2 {
  5105. width: 400px; }
  5106. .clothesOut-step-2 .content .add-rune-btn {
  5107. height: 30px;
  5108. line-height: 30px;
  5109. color: #408bcb;
  5110. background-color: #ecf3f9;
  5111. cursor: pointer;
  5112. text-align: center; }
  5113. .clothesOut-step-2 .content .add-rune-btn:hover {
  5114. color: #f1885b; }
  5115. .clothesOut-step-2 .content .rune-box {
  5116. padding-top: 20px;
  5117. overflow: hidden; }
  5118. .clothesOut-step-2 .content .rune-box ul {
  5119. width: 110%; }
  5120. .clothesOut-step-2 .content .rune-box ul li {
  5121. float: left;
  5122. position: relative;
  5123. margin-bottom: 10px;
  5124. margin-right: 30px;
  5125. line-height: 30px;
  5126. width: 355px;
  5127. height: 30px; }
  5128. .clothesOut-step-2 .content .rune-box ul li i {
  5129. position: absolute;
  5130. top: 0;
  5131. left: 0;
  5132. width: 30px;
  5133. height: 30px;
  5134. line-height: 30px; }
  5135. .clothesOut-step-2 .content .rune-box ul li label {
  5136. display: inline-block;
  5137. *display: inline;
  5138. *zoom: 1;
  5139. width: 62px;
  5140. padding-right: 9px;
  5141. text-align: right; }
  5142. .clothesOut-step-2 .content .rune-box ul li input {
  5143. position: absolute;
  5144. top: 0;
  5145. right: 0;
  5146. width: 262px;
  5147. height: 28px;
  5148. line-height: 28px;
  5149. border: 1px solid #dbdbdb;
  5150. padding: 0 10px; }
  5151. .clothesOut-step-2 .content .rune-box ul li.li-5 input {
  5152. width: 92px;
  5153. margin-left: 5px; }
  5154. .clothesOut-step-2 .content .rune-box ul li.li-5 input.inp_1 {
  5155. position: static;
  5156. margin-right: 10px; }
  5157. .clothesOut-step-2 .content .rune-box ul li.li-5 input.inp_2 {
  5158. /* position: static;
  5159. margin-right: 10px;*/ }
  5160. .clothesOut-step-2 .popupBox {
  5161. display: none;
  5162. position: absolute;
  5163. top: 0;
  5164. left: 0;
  5165. z-index: 100;
  5166. width: 100%;
  5167. height: 100%; }
  5168. .clothesOut-step-2 .popupBox.cur {
  5169. display: block; }
  5170. .clothesOut-step-2 .popupBox .mask {
  5171. position: absolute;
  5172. top: 0;
  5173. left: 0;
  5174. z-index: 100;
  5175. width: 100%;
  5176. height: 100%;
  5177. background-color: #000;
  5178. opacity: 0.5;
  5179. filter: alpha(opacity=50); }
  5180. .clothesOut-step-2 .popupBox .inner {
  5181. position: absolute;
  5182. top: 50%;
  5183. left: 50%;
  5184. margin-left: -282px;
  5185. margin-top: -161px;
  5186. z-index: 101;
  5187. width: 560px;
  5188. height: 323px;
  5189. border-top: 3px solid #408bcb;
  5190. padding: 15px;
  5191. background-color: #fff; }
  5192. .clothesOut-step-2 .popupBox .inner h6 {
  5193. font-size: 12px;
  5194. margin: 0;
  5195. padding-bottom: 15px; }
  5196. .clothesOut-step-2 .popupBox .inner .equip-box {
  5197. position: relative;
  5198. height: 48px;
  5199. padding-bottom: 15px;
  5200. line-height: 48px; }
  5201. .clothesOut-step-2 .popupBox .inner .equip-box .title {
  5202. float: left;
  5203. height: 100%;
  5204. width: 57px; }
  5205. .clothesOut-step-2 .popupBox .inner .equip-box ul li {
  5206. position: relative;
  5207. float: left;
  5208. margin-right: 4px;
  5209. width: 44px;
  5210. height: 44px;
  5211. border: 2px solid #ecf3f9;
  5212. background: url(../slice/add-icon.jpg) no-repeat center center; }
  5213. .clothesOut-step-2 .popupBox .inner .equip-box ul li i {
  5214. display: none;
  5215. position: absolute;
  5216. top: -8px;
  5217. right: -8px;
  5218. z-index: 102;
  5219. width: 16px;
  5220. height: 16px;
  5221. background: url(../slice/remove-icon.png) no-repeat; }
  5222. .clothesOut-step-2 .popupBox .inner .equip-box ul li:hover {
  5223. border-color: #becfdd; }
  5224. .clothesOut-step-2 .popupBox .inner .equip-box ul li:hover i {
  5225. display: block; }
  5226. .clothesOut-step-2 .popupBox .inner .equip-box .btn {
  5227. position: absolute;
  5228. top: 10px;
  5229. width: 85px;
  5230. height: 30px;
  5231. line-height: 30px;
  5232. text-align: center;
  5233. -webkit-border-radius: 3px;
  5234. border-radius: 3px;
  5235. -webkit-background-clip: padding-box;
  5236. -moz-background-clip: padding;
  5237. background-clip: padding-box;
  5238. color: #fff;
  5239. cursor: pointer; }
  5240. .clothesOut-step-2 .popupBox .inner .equip-box .btn.ok {
  5241. right: 95px;
  5242. background-color: #408bcb; }
  5243. .clothesOut-step-2 .popupBox .inner .equip-box .btn.ok:hover {
  5244. background-color: #4b9add; }
  5245. .clothesOut-step-2 .popupBox .inner .equip-box .btn.empty {
  5246. right: 0px;
  5247. background-color: #8cb4d5; }
  5248. .clothesOut-step-2 .popupBox .inner .equip-box .btn.empty:hover {
  5249. background-color: #a6c8e4; }
  5250. .clothesOut-step-2 .popupBox .inner .mod-tabs-trigger.col-5 li {
  5251. width: 20%; }
  5252. .clothesOut-step-2 .popupBox .inner .mod-tabs-bd .title {
  5253. margin: 10px 0;
  5254. height: 25px;
  5255. line-height: 25px; }
  5256. .clothesOut-step-2 .popupBox .inner .mod-tabs-bd .title span {
  5257. cursor: pointer;
  5258. padding: 0 12px;
  5259. display: inline-block;
  5260. *display: inline;
  5261. *zoom: 1;
  5262. -webkit-border-radius: 2px;
  5263. border-radius: 2px;
  5264. -webkit-background-clip: padding-box;
  5265. -moz-background-clip: padding;
  5266. background-clip: padding-box; }
  5267. .clothesOut-step-2 .popupBox .inner .mod-tabs-bd .title span.selected {
  5268. background-color: #ddebf7; }
  5269. .clothesOut-step-2 .popupBox .inner .mod-tabs-bd .list {
  5270. width: 105%;
  5271. height: 160px;
  5272. overflow: auto !important; }
  5273. .clothesOut-step-2 .popupBox .inner .mod-tabs-bd .list li {
  5274. float: left;
  5275. margin-bottom: 4px;
  5276. margin-right: 4px;
  5277. width: 36px;
  5278. height: 36px; }
  5279. .clothesOut-step-2 .popupBox .inner .close {
  5280. position: absolute;
  5281. top: 15px;
  5282. right: 15px;
  5283. background: url(../slice/close.jpg) no-repeat;
  5284. width: 10px;
  5285. height: 10px;
  5286. cursor: pointer; }
  5287. .clothesOut-step-3 {
  5288. color: #666; }
  5289. .clothesOut-step-3 h3 {
  5290. font-size: 16px;
  5291. font-weight: 500;
  5292. padding-bottom: 15px; }
  5293. .clothesOut-step-3 .step-status {
  5294. background: url(../../slice/status.jpg) no-repeat -1520px 0;
  5295. padding-top: 43px;
  5296. padding-bottom: 18px;
  5297. border-bottom: 1px solid #f0f0f0; }
  5298. .clothesOut-step-3 .step-status .inner {
  5299. position: relative;
  5300. height: 60px; }
  5301. .clothesOut-step-3 .step-status .inner p {
  5302. position: absolute;
  5303. left: 72px;
  5304. top: 0;
  5305. height: 20px;
  5306. line-height: 20px;
  5307. font-size: 12px;
  5308. color: #666; }
  5309. .clothesOut-step-3 .step-status .inner strong {
  5310. position: absolute;
  5311. left: 72px;
  5312. bottom: 0;
  5313. height: 30px;
  5314. line-height: 30px;
  5315. font-size: 24px;
  5316. color: #666; }
  5317. .clothesOut-step-3 .step-status .inner .prev {
  5318. position: absolute;
  5319. right: 125px;
  5320. top: 50%;
  5321. margin-top: -19px;
  5322. width: 115px;
  5323. height: 38px;
  5324. line-height: 38px;
  5325. text-align: center;
  5326. background-color: #97bbd9;
  5327. -webkit-border-radius: 3px;
  5328. border-radius: 3px;
  5329. -webkit-background-clip: padding-box;
  5330. -moz-background-clip: padding;
  5331. background-clip: padding-box;
  5332. color: #fff; }
  5333. .clothesOut-step-3 .step-status .inner .prev:hover {
  5334. background-color: #a6c8e4; }
  5335. .clothesOut-step-3 .step-status .inner .submit {
  5336. position: absolute;
  5337. right: 0;
  5338. top: 50%;
  5339. margin-top: -19px;
  5340. width: 115px;
  5341. height: 38px;
  5342. line-height: 38px;
  5343. text-align: center;
  5344. background-color: #f1885b;
  5345. -webkit-border-radius: 3px;
  5346. border-radius: 3px;
  5347. -webkit-background-clip: padding-box;
  5348. -moz-background-clip: padding;
  5349. background-clip: padding-box;
  5350. color: #fff; }
  5351. .clothesOut-step-3 .step-status .inner .submit:hover {
  5352. background-color: #f49e79; }
  5353. .clothesOut-step-3 .step-status .inner .name {
  5354. position: absolute;
  5355. top: 50%;
  5356. margin-top: -19px;
  5357. right: 260px;
  5358. width: 292px;
  5359. height: 38px;
  5360. line-height: 38px; }
  5361. .clothesOut-step-3 .step-status .inner .name label {
  5362. font-weight: bold; }
  5363. .clothesOut-step-3 .step-status .inner .name input {
  5364. width: 208px;
  5365. height: 28px;
  5366. line-height: 28px;
  5367. border: 1px solid #dbdbdb;
  5368. padding: 0 10px; }
  5369. .clothesOut-step-3 .content {
  5370. position: relative;
  5371. height: 315px;
  5372. padding: 7px 0; }
  5373. .clothesOut-step-3 .content h6 {
  5374. margin: 0;
  5375. height: 21px;
  5376. line-height: 21px;
  5377. padding-bottom: 5px;
  5378. font-size: 12px; }
  5379. .clothesOut-step-3 .content h6 span {
  5380. margin-left: 10px;
  5381. font-weight: normal; }
  5382. .clothesOut-step-3 .content .point-list {
  5383. position: relative;
  5384. height: 50px;
  5385. padding-bottom: 20px; }
  5386. .clothesOut-step-3 .content .point-list .ul-1 {
  5387. position: absolute;
  5388. top: 0;
  5389. left: 0; }
  5390. .clothesOut-step-3 .content .point-list .ul-1 li {
  5391. float: left;
  5392. margin-right: 3px;
  5393. width: 30px;
  5394. text-align: center; }
  5395. .clothesOut-step-3 .content .point-list .ul-1 li em {
  5396. height: 20px;
  5397. line-height: 20px; }
  5398. .clothesOut-step-3 .content .point-list .ul-2 {
  5399. position: absolute;
  5400. top: 0;
  5401. right: 0; }
  5402. .clothesOut-step-3 .content .point-list .ul-2 li {
  5403. float: left;
  5404. margin-left: 3px;
  5405. width: 30px;
  5406. text-align: center; }
  5407. .clothesOut-step-3 .content .point-list .ul-2 li div {
  5408. width: 30px;
  5409. height: 30px;
  5410. line-height: 30px;
  5411. text-align: center;
  5412. background-color: #ecf3f9; }
  5413. .clothesOut-step-3 .content .point-list .ul-2 li em {
  5414. height: 20px;
  5415. line-height: 20px; }
  5416. .clothesOut-step-3 .content .point-list .ul-2 li.on div {
  5417. background-color: #ddebf7; }
  5418. .clothesOut-step-3 .content .add-box {
  5419. height: 48px;
  5420. padding-bottom: 20px; }
  5421. .clothesOut-step-3 .content .add-box ul li {
  5422. float: left;
  5423. margin-right: 4px;
  5424. width: 48px;
  5425. height: 48px;
  5426. background: url(../../slice/add-icon.jpg) no-repeat; }
  5427. .clothesOut-step-3 .content .add-box .text {
  5428. margin-left: 15px;
  5429. height: 48px;
  5430. line-height: 48px; }
  5431. .game-page .rank-ul {
  5432. width: 320px;
  5433. right: 0;
  5434. top: 35px;
  5435. max-height: auto !important; }
  5436. .game-page .rank-ul .title {
  5437. background-color: #ecf3f9;
  5438. height: 30px;
  5439. line-height: 30px; }
  5440. .game-page .rank-ul .title span {
  5441. display: inline-block;
  5442. *display: inline;
  5443. *zoom: 1;
  5444. width: 24%;
  5445. text-align: center; }
  5446. .game-page .rank-ul li span {
  5447. display: inline-block;
  5448. *display: inline;
  5449. *zoom: 1;
  5450. width: 24%;
  5451. text-align: center; }
  5452. .game-page .box-hd {
  5453. position: relative;
  5454. height: 20px;
  5455. line-height: 20px;
  5456. padding: 5px 10px;
  5457. background-color: #ecf3f9;
  5458. width: 610px; }
  5459. .game-page .box-hd .sign {
  5460. position: absolute;
  5461. top: 5px;
  5462. left: 10px;
  5463. width: 45px;
  5464. height: 20px;
  5465. line-height: 20px;
  5466. text-align: center;
  5467. color: #fff;
  5468. -webkit-border-radius: 2px;
  5469. border-radius: 2px;
  5470. -webkit-background-clip: padding-box;
  5471. -moz-background-clip: padding;
  5472. background-clip: padding-box;
  5473. background-color: #f1885b; }
  5474. .game-page .box-hd .sign:hover {
  5475. background-color: #f49e79; }
  5476. .game-page .box-hd .sign.cur {
  5477. background-color: #d4d3cf; }
  5478. .game-page .box-hd p {
  5479. text-indent: 65px; }
  5480. .game-page .box-hd p a {
  5481. color: #408bcb; }
  5482. .game-page .box-hd .refresh {
  5483. position: absolute;
  5484. top: 8px;
  5485. right: 10px;
  5486. cursor: pointer;
  5487. border: 1px solid #cfdeea;
  5488. background-color: #ecf3f9;
  5489. width: 25px;
  5490. height: 20px;
  5491. margin-top: -4px;
  5492. -webkit-border-radius: 2px;
  5493. border-radius: 2px;
  5494. -webkit-background-clip: padding-box;
  5495. -moz-background-clip: padding;
  5496. background-clip: padding-box; }
  5497. .game-page .box-hd .refresh:hover {
  5498. background-color: #cfdeea; }
  5499. .game-page .box-hd .refresh i {
  5500. display: inline-block;
  5501. *display: inline;
  5502. *zoom: 1;
  5503. margin: 4px 0 1px 6px;
  5504. width: 13px;
  5505. height: 13px;
  5506. background: url(../img/refresh.png) no-repeat; }
  5507. .game-page .box-bd {
  5508. position: relative; }
  5509. .game-page .box-bd .new-icon {
  5510. width: 23px;
  5511. height: 11px;
  5512. background-image: url(../slice/inew.png); }
  5513. .game-page .box-bd .hot-icon {
  5514. width: 23px;
  5515. height: 11px;
  5516. background-image: url(../slice/ihot.png); }
  5517. .game-page .box-bd h6 {
  5518. margin: 0;
  5519. position: relative;
  5520. height: 10px;
  5521. padding: 10px 0 15px;
  5522. font-size: 12px;
  5523. color: #666; }
  5524. .game-page .box-bd h6 .more {
  5525. position: absolute;
  5526. top: 12px;
  5527. right: 0;
  5528. font-weight: normal;
  5529. color: #999; }
  5530. .game-page .box-bd h6 .blue {
  5531. position: absolute;
  5532. top: 10px;
  5533. right: 0;
  5534. font-weight: normal;
  5535. color: #408bcb; }
  5536. .game-page .box-bd .prev, .game-page .box-bd .next {
  5537. cursor: pointer;
  5538. background-color: #ecf3f9;
  5539. background-repeat: no-repeat;
  5540. background-position: center center;
  5541. -webkit-border-radius: 3px;
  5542. border-radius: 3px;
  5543. -webkit-background-clip: padding-box;
  5544. -moz-background-clip: padding;
  5545. background-clip: padding-box;
  5546. text-align: center; }
  5547. .game-page .box-bd .prev.disable, .game-page .box-bd .next.disable {
  5548. cursor: default;
  5549. background-color: #f3f3f3; }
  5550. .game-page .box-bd .prev i {
  5551. display: inline-block;
  5552. *display: inline;
  5553. *zoom: 1;
  5554. width: 7px;
  5555. height: 4px;
  5556. margin-bottom: 3px;
  5557. background-image: url(../slice/arrow-gray-u.png); }
  5558. .game-page .box-bd .prev i:hover {
  5559. background-image: url(../slice/arrow-gray-u-h.png); }
  5560. .game-page .box-bd .next i {
  5561. display: inline-block;
  5562. *display: inline;
  5563. *zoom: 1;
  5564. width: 7px;
  5565. height: 4px;
  5566. margin-bottom: 3px;
  5567. background-image: url(../slice/arrow-gray-d.png); }
  5568. .game-page .box-bd .next i:hover {
  5569. background-image: url(../slice/arrow-gray-d-h.png); }
  5570. .game-page .box-bd .box-bd-l {
  5571. position: absolute;
  5572. top: 0;
  5573. left: 0;
  5574. width: 145px; }
  5575. .game-page .box-bd .box-bd-l .latest-play {
  5576. position: relative;
  5577. height: 220px;
  5578. overflow: hidden; }
  5579. .game-page .box-bd .box-bd-l .latest-play .scroll-wrap {
  5580. position: absolute;
  5581. top: 38px;
  5582. height: 152px;
  5583. margin-bottom: 8px;
  5584. width: 100%;
  5585. overflow-y: hidden; }
  5586. .game-page .box-bd .box-bd-l .latest-play ul {
  5587. position: absolute;
  5588. top: 0px;
  5589. left: 0;
  5590. width: 100%;
  5591. overflow: hidden;
  5592. z-index: 0; }
  5593. .game-page .box-bd .box-bd-l .latest-play ul li {
  5594. width: 100%;
  5595. margin-bottom: 10px;
  5596. height: 44px;
  5597. overflow: hidden;
  5598. cursor: pointer; }
  5599. .game-page .box-bd .box-bd-l .latest-play ul li img {
  5600. float: left;
  5601. _display: inline;
  5602. width: 44px;
  5603. height: 44px; }
  5604. .game-page .box-bd .box-bd-l .latest-play ul li .text {
  5605. float: right;
  5606. _display: inline;
  5607. width: 91px;
  5608. padding: 2px 0; }
  5609. .game-page .box-bd .box-bd-l .latest-play ul li .text .name {
  5610. height: 20px;
  5611. line-height: 20px;
  5612. color: #333; }
  5613. .game-page .box-bd .box-bd-l .latest-play ul li .text .p-2 {
  5614. position: relative;
  5615. height: 20px;
  5616. line-height: 20px;
  5617. color: #999; }
  5618. .game-page .box-bd .box-bd-l .latest-play ul li .text .p-2 .server {
  5619. display: block;
  5620. float: left;
  5621. _display: inline;
  5622. width: 65px;
  5623. white-space: nowrap;
  5624. text-overflow: ellipsis;
  5625. overflow: hidden; }
  5626. .game-page .box-bd .box-bd-l .latest-play ul li .text .p-2 i {
  5627. display: block;
  5628. float: left;
  5629. _display: inline;
  5630. margin-left: -5px;
  5631. text-align: center;
  5632. color: #ccc; }
  5633. .game-page .box-bd .box-bd-l .latest-play ul li .text .p-2 .btn {
  5634. position: absolute;
  5635. top: 0;
  5636. right: 0;
  5637. text-align: right; }
  5638. .game-page .box-bd .box-bd-l .latest-play .prev {
  5639. position: absolute;
  5640. bottom: 0;
  5641. left: 0;
  5642. width: 72px;
  5643. height: 15px; }
  5644. .game-page .box-bd .box-bd-l .latest-play .next {
  5645. position: absolute;
  5646. bottom: 0;
  5647. right: 0;
  5648. width: 72px;
  5649. height: 15px; }
  5650. .game-page .box-bd .box-bd-l .new-play {
  5651. margin-top: 4px; }
  5652. .game-page .box-bd .box-bd-l .new-play ul li {
  5653. margin-bottom: 10px;
  5654. position: relative;
  5655. width: 145px;
  5656. height: 90px; }
  5657. .game-page .box-bd .box-bd-l .new-play ul li .text {
  5658. width: 100%;
  5659. position: absolute;
  5660. bottom: 0;
  5661. left: 0;
  5662. height: 20px;
  5663. line-height: 20px;
  5664. color: #fff;
  5665. text-indent: 5px;
  5666. background: url(../img/shadow.png); }
  5667. .game-page .box-bd .box-bd-l .new-play ul li .text i {
  5668. padding: 10px 0;
  5669. color: #fff; }
  5670. .game-page .box-bd-r {
  5671. position: absolute;
  5672. top: 0;
  5673. right: 0;
  5674. width: 150px; }
  5675. .game-page .box-bd-r .all-game ul {
  5676. height: 109px;
  5677. overflow: hidden; }
  5678. .game-page .box-bd-r .all-game ul li {
  5679. position: relative;
  5680. height: 20px;
  5681. overflow: hidden;
  5682. margin-bottom: 10px; }
  5683. .game-page .box-bd-r .all-game ul li img {
  5684. display: block;
  5685. float: left;
  5686. _display: inline;
  5687. width: 20px;
  5688. height: 20px; }
  5689. .game-page .box-bd-r .all-game ul li .name {
  5690. margin-left: 10px;
  5691. display: block;
  5692. float: left;
  5693. _display: inline;
  5694. max-width: 65px;
  5695. height: 20px;
  5696. line-height: 20px;
  5697. white-space: nowrap;
  5698. text-overflow: ellipsis;
  5699. overflow: hidden;
  5700. color: #333; }
  5701. .game-page .box-bd-r .all-game ul li .new-icon, .game-page .box-bd-r .all-game ul li .hot-icon {
  5702. display: block;
  5703. float: left;
  5704. _display: inline;
  5705. margin-left: 10px;
  5706. margin-top: 4px; }
  5707. .game-page .box-bd-r .all-game ul li .btn {
  5708. float: right;
  5709. _display: inline; }
  5710. .game-page .box-bd-r .all-game ul li .btn .server {
  5711. display: block;
  5712. float: left;
  5713. _display: inline;
  5714. width: 24px; }
  5715. .game-page .box-bd-r .all-game ul li .btn span {
  5716. display: block;
  5717. float: left;
  5718. _display: inline;
  5719. width: 20px;
  5720. text-align: center;
  5721. color: #cacbcb; }
  5722. .game-page .box-bd-r .all-game ul li .btn .site {
  5723. display: block;
  5724. float: left;
  5725. _display: inline;
  5726. width: 24px; }
  5727. .game-page .new-server {
  5728. position: relative;
  5729. height: 221px;
  5730. overflow: hidden; }
  5731. .game-page .new-server .scroll-wrap {
  5732. position: absolute;
  5733. top: 37px;
  5734. height: 160px;
  5735. margin-bottom: 4px;
  5736. width: 100%;
  5737. overflow-y: hidden;
  5738. padding-bottom: 6px; }
  5739. .game-page .new-server ul {
  5740. position: absolute;
  5741. top: 0px;
  5742. left: 0;
  5743. width: 100%;
  5744. overflow: hidden;
  5745. z-index: 0; }
  5746. .game-page .new-server ul li {
  5747. position: relative;
  5748. height: 32px;
  5749. overflow: hidden;
  5750. margin-bottom: 10px;
  5751. cursor: pointer; }
  5752. .game-page .new-server ul li img {
  5753. position: absolute;
  5754. top: 0;
  5755. left: 0;
  5756. width: 32px;
  5757. height: 32px; }
  5758. .game-page .new-server ul li .text {
  5759. position: absolute;
  5760. top: 0;
  5761. left: 40px;
  5762. height: 30px;
  5763. white-space: nowrap;
  5764. text-overflow: ellipsis;
  5765. overflow: hidden;
  5766. color: #666; }
  5767. .game-page .new-server ul li .text .server {
  5768. margin-left: 2px; }
  5769. .game-page .new-server ul li .btn {
  5770. position: absolute;
  5771. top: 5px;
  5772. right: 0px;
  5773. width: 45px;
  5774. height: 20px;
  5775. color: #fff;
  5776. text-align: center;
  5777. line-height: 20px;
  5778. background-color: #408bcb;
  5779. -webkit-border-radius: 2px;
  5780. border-radius: 2px;
  5781. -webkit-background-clip: padding-box;
  5782. -moz-background-clip: padding;
  5783. background-clip: padding-box; }
  5784. .game-page .new-server ul li .btn:hover {
  5785. background-color: #50a1e0; }
  5786. .game-page .new-server .prev {
  5787. position: absolute;
  5788. bottom: 0;
  5789. left: 0;
  5790. width: 75px;
  5791. height: 15px; }
  5792. .game-page .new-server .next {
  5793. position: absolute;
  5794. bottom: 0;
  5795. right: 0;
  5796. width: 75px;
  5797. height: 15px; }
  5798. .game-page .actCenter {
  5799. padding: 18px 0 0 0;
  5800. margin-left: -50px; }
  5801. .game-page .actCenter a {
  5802. display: block;
  5803. position: relative;
  5804. width: 200px;
  5805. height: 65px;
  5806. background: url(../img/activeCenter.png) no-repeat; }
  5807. .game-page .actCenter a:hover {
  5808. background: url(../img/activeCenter-h.png) no-repeat; }
  5809. .game-page .actCenter a i {
  5810. position: absolute;
  5811. top: -6px;
  5812. left: 60px;
  5813. width: 20px;
  5814. height: 20px;
  5815. color: #fff;
  5816. line-height: 20px;
  5817. text-align: center;
  5818. background-image: url(../slice/circle-o.png); }
  5819. .game-page .slideBox {
  5820. width: 280px;
  5821. height: 185px;
  5822. overflow: hidden;
  5823. position: relative; }
  5824. .game-page .slideBox .hd {
  5825. height: 15px;
  5826. overflow: hidden;
  5827. position: absolute;
  5828. right: 10px;
  5829. bottom: 5px;
  5830. z-index: 1; }
  5831. .game-page .slideBox .hd ul {
  5832. overflow: hidden;
  5833. zoom: 1;
  5834. float: left; }
  5835. .game-page .slideBox .hd ul li {
  5836. border-radius: 15px;
  5837. float: left;
  5838. margin-right: 5px;
  5839. width: 8px;
  5840. height: 8px;
  5841. line-height: 14px;
  5842. text-align: center;
  5843. background: #868385;
  5844. cursor: pointer; }
  5845. .game-page .slideBox .hd ul li.on {
  5846. background: #fff;
  5847. color: #fff; }
  5848. .game-page .slideBox .bd {
  5849. position: relative;
  5850. height: 100%;
  5851. z-index: 0; }
  5852. .game-page .slideBox .bd img {
  5853. width: 280px;
  5854. height: 185px; }
  5855. .game-h6 {
  5856. position: absolute;
  5857. background-color: #fff;
  5858. z-index: 10; }
  5859. .bonusrecord-popupbox {
  5860. width: 480px;
  5861. display: inline-block; }
  5862. .pal {
  5863. padding: 20px; }
  5864. .commonquestion-popupbox {
  5865. width: 480px; }
  5866. .commonquestion-popupbox .pop-box-bd {
  5867. height: 420px;
  5868. overflow-x: hidden;
  5869. overflow-y: auto; }
  5870. .commonquestion-list {
  5871. padding: 0 20px 20px 20px;
  5872. list-style: none; }
  5873. .mbl {
  5874. margin-bottom: 20px; }
  5875. .mbm {
  5876. margin-bottom: 10px; }
  5877. .fsl {
  5878. font-size: 14px; }
  5879. .no-record {
  5880. display: inline-block;
  5881. *display: inline;
  5882. *zoom: 1;
  5883. margin-right: 10px;
  5884. width: 18px;
  5885. height: 18px;
  5886. vertical-align: middle;
  5887. background-image: url(../slice/no-record.png); }
  5888. #adLatest .mask-bg {
  5889. position: absolute;
  5890. bottom: -6px;
  5891. left: 0;
  5892. width: 100%;
  5893. height: 45px;
  5894. background: url(../img/shadow.png); }
  5895. .all-game {
  5896. width: 200px;
  5897. margin-left: -50px; }
  5898. .box-bd-m {
  5899. position: relative;
  5900. margin-left: 155px;
  5901. width: 281px; }
  5902. .box-bd-m .slideBox li i {
  5903. width: 72px;
  5904. position: absolute;
  5905. height: 25px;
  5906. background: url("../slice/tagBg.png") no-repeat;
  5907. left: 0;
  5908. top: 10px;
  5909. color: #fff;
  5910. line-height: 25px;
  5911. font-size: 12px;
  5912. text-align: center;
  5913. opacity: 0.8;
  5914. filter: alpha(opacity=80); }
  5915. .box-bd-m .slideBox li p {
  5916. position: absolute;
  5917. bottom: 0;
  5918. padding: 10px;
  5919. left: 0;
  5920. font-size: 14px;
  5921. line-height: 15px;
  5922. color: #ffffff;
  5923. z-index: 10; }
  5924. .box-bd-m .rank .inner {
  5925. position: relative;
  5926. height: 210px;
  5927. overflow: hidden; }
  5928. .box-bd-m .rank .inner ul {
  5929. position: absolute;
  5930. top: -14px;
  5931. left: 0;
  5932. width: 100%;
  5933. height: 100%;
  5934. overflow: hidden; }
  5935. .box-bd-m .rank .inner ul li {
  5936. padding-top: 13px;
  5937. position: relative; }
  5938. .box-bd-m .rank .inner ul li .default {
  5939. height: 12px;
  5940. line-height: 12px; }
  5941. .box-bd-m .rank .inner ul li .default .num {
  5942. display: block;
  5943. float: left;
  5944. _display: inline;
  5945. width: 15px; }
  5946. .box-bd-m .rank .inner ul li .default .name {
  5947. display: block;
  5948. float: left;
  5949. _display: inline;
  5950. max-width: 60px;
  5951. white-space: nowrap;
  5952. text-overflow: ellipsis;
  5953. overflow: hidden;
  5954. color: #333; }
  5955. .box-bd-m .rank .inner ul li .default .new-icon, .box-bd-m .rank .inner ul li .default .hot-icon {
  5956. display: block;
  5957. float: left;
  5958. _display: inline;
  5959. margin-left: 10px; }
  5960. .box-bd-m .rank .inner ul li .default .type {
  5961. float: right;
  5962. _display: inline;
  5963. width: 60px;
  5964. text-align: right;
  5965. color: #999; }
  5966. .box-bd-m .rank .inner ul li .on {
  5967. display: none;
  5968. position: relative;
  5969. height: 50px;
  5970. overflow: hidden;
  5971. padding-bottom: 14px;
  5972. border-bottom: 1px solid #f0f0f0; }
  5973. .box-bd-m .rank .inner ul li .on .num {
  5974. position: absolute;
  5975. top: 0;
  5976. left: 0;
  5977. margin-right: 5px;
  5978. width: 15px;
  5979. height: 15px;
  5980. line-height: 15px;
  5981. text-align: center;
  5982. color: #fff;
  5983. background-color: #a8bfd1;
  5984. display: inline-block;
  5985. *display: inline;
  5986. *zoom: 1;
  5987. -webkit-border-radius: 2px;
  5988. border-radius: 2px;
  5989. -webkit-background-clip: padding-box;
  5990. -moz-background-clip: padding;
  5991. background-clip: padding-box; }
  5992. .box-bd-m .rank .inner ul li .on img {
  5993. position: absolute;
  5994. top: 0;
  5995. left: 20px;
  5996. width: 50px;
  5997. height: 50px;
  5998. cursor: pointer; }
  5999. .box-bd-m .rank .inner ul li .on .text {
  6000. position: absolute;
  6001. left: 81px;
  6002. top: 0;
  6003. width: 100px;
  6004. height: 50px; }
  6005. .box-bd-m .rank .inner ul li .on .text .name {
  6006. position: absolute;
  6007. top: 0;
  6008. left: 0;
  6009. display: block;
  6010. width: 74px;
  6011. height: 16px;
  6012. line-height: 16px;
  6013. white-space: nowrap;
  6014. text-overvflow: ellipsis;
  6015. overflow: hidden;
  6016. color: #333; }
  6017. .box-bd-m .rank .inner ul li .on .text .btn {
  6018. position: absolute;
  6019. bottom: 0;
  6020. left: 0;
  6021. height: 16px;
  6022. line-height: 16px;
  6023. color: #999; }
  6024. .box-bd-m .rank .inner ul li .on .text .btn i {
  6025. padding: 0 10px; }
  6026. .box-bd-m .rank .inner ul li .on .text .btn span {
  6027. color: #ccc; }
  6028. .box-bd-m .rank .inner ul li .on .new-icon, .box-bd-m .rank .inner ul li .on .hot-icon {
  6029. position: absolute;
  6030. top: 3px;
  6031. right: 0; }
  6032. .box-bd-m .rank .inner ul li.cur .default {
  6033. display: none; }
  6034. .box-bd-m .rank .inner ul li.cur .on {
  6035. display: block; }
  6036. .box-bd-m .rank.b-l {
  6037. float: left;
  6038. _display: inline;
  6039. width: 220px;
  6040. padding-left: 5px;
  6041. margin-top: 5px; }
  6042. .box-bd-m .rank.b-r {
  6043. float: right;
  6044. _display: inline;
  6045. width: 180px;
  6046. margin-top: 19px; }
  6047. .stars {
  6048. position: absolute;
  6049. top: 20px;
  6050. left: 0;
  6051. text-align: right;
  6052. width: 100%;
  6053. height: 12px;
  6054. line-height: 12px;
  6055. color: #ff4300; }
  6056. .stars .icon {
  6057. position: absolute;
  6058. top: 0;
  6059. left: 0;
  6060. display: block;
  6061. width: 65px;
  6062. height: 11px;
  6063. background: url(../img/star-bottom.png) no-repeat; }
  6064. .stars .icon i {
  6065. display: block;
  6066. width: 70%;
  6067. height: 100%;
  6068. background: url(../img/star-top.png) no-repeat; }
  6069. .subscribe .mod-tabs-bd {
  6070. padding-top: 20px; }
  6071. .subscribe .list {
  6072. position: relative;
  6073. height: 438px; }
  6074. .subscribe .list li {
  6075. float: left;
  6076. position: relative;
  6077. width: 345px;
  6078. height: 60px;
  6079. padding: 10px; }
  6080. .subscribe .list li img {
  6081. position: absolute;
  6082. top: 10px;
  6083. left: 10px; }
  6084. .subscribe .list li .text {
  6085. position: relative;
  6086. width: 150px;
  6087. height: 100%;
  6088. padding-left: 75px;
  6089. line-height: 20px; }
  6090. .subscribe .list li .text .name, .subscribe .list li .text p {
  6091. display: block;
  6092. width: 100%;
  6093. white-space: nowrap;
  6094. text-overflow: ellipsis;
  6095. overflow: hidden;
  6096. color: #666;
  6097. font-size: 12px; }
  6098. .subscribe .list li .btn {
  6099. position: absolute;
  6100. top: 23px;
  6101. right: 20px;
  6102. width: 95px;
  6103. height: 33px;
  6104. color: #7d7e7f;
  6105. text-align: center;
  6106. line-height: 33px;
  6107. background-color: #d9e4ed;
  6108. -webkit-border-radius: 3px;
  6109. border-radius: 3px;
  6110. -webkit-background-clip: padding-box;
  6111. -moz-background-clip: padding;
  6112. background-clip: padding-box; }
  6113. .subscribe .list li .btn:hover {
  6114. background-color: #408bcb;
  6115. color: #fff; }
  6116. .subscribe .list li:hover {
  6117. background-color: #ecf3f9; }
  6118. #combat-query h1 {
  6119. margin-top: 20px;
  6120. text-align: center;
  6121. color: #9dc1de; }
  6122. #combat-query h1 i {
  6123. display: inline-block;
  6124. *display: inline;
  6125. *zoom: 1;
  6126. width: 30px;
  6127. height: 29px;
  6128. vertical-align: middle;
  6129. margin-right: 2px;
  6130. background-image: url(../slice/combat-search-icon.png); }
  6131. #combat-query .searchbox {
  6132. width: 580px;
  6133. margin: 20px auto 0;
  6134. position: relative; }
  6135. #combat-query .searchbox .wrap {
  6136. border: 2px solid #cbdbe8;
  6137. border-right: none;
  6138. border-radius: 3px 0 0 3px;
  6139. height: 36px; }
  6140. #combat-query .searchbox .wrap .select {
  6141. float: left;
  6142. width: 93px;
  6143. height: 36px;
  6144. line-height: 36px;
  6145. padding-left: 15px;
  6146. color: #666;
  6147. cursor: default;
  6148. position: relative;
  6149. background: #ecf3f9; }
  6150. #combat-query .searchbox .wrap .select .default {
  6151. height: 36px;
  6152. cursor: pointer; }
  6153. #combat-query .searchbox .wrap .select i {
  6154. display: inline-block;
  6155. *display: inline;
  6156. *zoom: 1;
  6157. width: 9px;
  6158. height: 5px;
  6159. margin-left: 10px;
  6160. *margin-top: -1px;
  6161. margin-top: -1px\0;
  6162. background-image: url(../slice/combat-search-arrow-d.png); }
  6163. #combat-query .searchbox .wrap .select .lists {
  6164. position: absolute;
  6165. width: 98px;
  6166. left: -2px;
  6167. border: 1px solid #e7e7e7;
  6168. padding: 5px;
  6169. background: #fff; }
  6170. #combat-query .searchbox .wrap .select .lists a {
  6171. display: block;
  6172. color: #666;
  6173. padding: 0 10px; }
  6174. #combat-query .searchbox .wrap .select .lists a:hover {
  6175. background: #ecf3f9; }
  6176. #combat-query .searchbox .wrap .select .rank-ul {
  6177. width: 140px;
  6178. left: -1px;
  6179. top: 40px; }
  6180. #combat-query .searchbox .wrap .select .rank-ul li {
  6181. text-align: left !important; }
  6182. #combat-query .searchbox .wrap .select .rank-ul .sn {
  6183. display: inline-block;
  6184. *display: inline;
  6185. *zoom: 1;
  6186. width: 70px; }
  6187. #combat-query .searchbox .wrap .keyword {
  6188. display: inline-block;
  6189. *display: inline;
  6190. *zoom: 1;
  6191. float: left;
  6192. _display: inline;
  6193. width: 350px;
  6194. height: 36px;
  6195. padding: 0 10px;
  6196. color: #ccc;
  6197. *padding-top: 16px;
  6198. *height: 20px;
  6199. padding-top: 6px\0;
  6200. height: 24px\0;
  6201. background: #fdfdfd; }
  6202. #combat-query .searchbox .search-btn {
  6203. width: 80px;
  6204. height: 40px;
  6205. border-radius: 0 3px 3px 0;
  6206. color: #fff;
  6207. padding-left: 20px;
  6208. position: absolute;
  6209. right: 0;
  6210. top: 0;
  6211. background: #80b0d6; }
  6212. #combat-query .searchbox .search-icon {
  6213. position: absolute;
  6214. right: 50px;
  6215. top: 13px;
  6216. display: inline-block;
  6217. *display: inline;
  6218. *zoom: 1;
  6219. width: 14px;
  6220. height: 14px;
  6221. background-image: url(../slice/white-search.png);
  6222. z-index: 2; }
  6223. #combat-query .search-record {
  6224. width: 580px;
  6225. margin: auto; }
  6226. #combat-query .search-record dl {
  6227. height: 30px;
  6228. line-height: 30px;
  6229. margin: 5px 0 0;
  6230. overflow: hidden; }
  6231. #combat-query .search-record dt {
  6232. float: left;
  6233. padding: 0 5px;
  6234. color: #999; }
  6235. #combat-query .search-record dd {
  6236. float: left;
  6237. margin: 0; }
  6238. #combat-query .search-record dd a {
  6239. margin: 0 5px;
  6240. float: left;
  6241. color: #6c9cc2; }
  6242. #combat-query .search-record dd.records {
  6243. width: 472px;
  6244. height: 30px;
  6245. overflow: hidden;
  6246. -webkit-text-overflow: ellipsis;
  6247. -ms-text-overflow: ellipsis;
  6248. text-overflow: ellipsis;
  6249. overflow: hidden;
  6250. vertical-align: bottom;
  6251. white-space: nowrap; }
  6252. #combat-query .search-record dd.records a {
  6253. margin: 0; }
  6254. #combat-query .search-record dd.records span {
  6255. padding: 0 5px; }
  6256. #combat-query .search-record dd.records label {
  6257. cursor: pointer; }
  6258. #combat-query .search-record .fn .clear {
  6259. margin-top: 4px;
  6260. display: block;
  6261. color: #80a2c0;
  6262. cursor: default;
  6263. width: 29px;
  6264. height: 18px;
  6265. line-height: 18px;
  6266. overflow: hidden;
  6267. padding-left: 19px;
  6268. border: 1px solid #cbdbe8;
  6269. border-radius: 2px; }
  6270. #combat-query .search-record .fn .clear i {
  6271. display: inline-block;
  6272. *display: inline;
  6273. *zoom: 1;
  6274. width: 9px;
  6275. height: 9px;
  6276. margin: 0 4px 0 -14px;
  6277. background-image: url(../slice/bubble-close.png); }
  6278. #combat-query .hr {
  6279. margin: 0px auto 0;
  6280. width: 580px;
  6281. height: 25px;
  6282. line-height: 25px;
  6283. position: relative; }
  6284. #combat-query .hr .line {
  6285. width: 100%;
  6286. height: 1px;
  6287. background: #e9e9e9;
  6288. overflow: hidden;
  6289. position: absolute;
  6290. top: 16px; }
  6291. #combat-query .hr .title {
  6292. color: #999;
  6293. background: #fff;
  6294. position: absolute;
  6295. top: 0;
  6296. left: 50%;
  6297. margin-left: -35px;
  6298. width: 70px;
  6299. height: 100%;
  6300. text-align: center;
  6301. z-index: 5; }
  6302. #combat-query .enter {
  6303. width: 580px;
  6304. height: 115px;
  6305. margin: 10px auto; }
  6306. #combat-query .enter li {
  6307. float: left;
  6308. margin-right: 70px;
  6309. cursor: pointer;
  6310. width: 80px; }
  6311. #combat-query .enter li.last {
  6312. margin-right: 0; }
  6313. #combat-query .enter li.first {
  6314. margin-left: 100px; }
  6315. #combat-query .enter .bd {
  6316. display: inline-block;
  6317. *display: inline;
  6318. *zoom: 1;
  6319. width: 80px;
  6320. height: 80px;
  6321. position: relative; }
  6322. #combat-query .enter .bd .mark-new {
  6323. position: absolute;
  6324. width: 35px;
  6325. height: 15px;
  6326. right: 0;
  6327. top: 5px;
  6328. background-image: url(../slice/mark-new.png); }
  6329. #combat-query .enter .zj1 {
  6330. background: url(../img/zj1.png) no-repeat; }
  6331. #combat-query .enter .zj1:hover {
  6332. background: url(../img/zj1-hover.png) no-repeat; }
  6333. #combat-query .enter .zj2 {
  6334. background: url(../img/zj2.png) no-repeat; }
  6335. #combat-query .enter .zj2:hover {
  6336. background: url(../img/zj2-hover.png) no-repeat; }
  6337. #combat-query .enter .zj3 {
  6338. background: url(../img/zj3.png) no-repeat; }
  6339. #combat-query .enter .zj3:hover {
  6340. background: url(../img/zj3-hover.png) no-repeat; }
  6341. #combat-query .enter .zj4 {
  6342. background: url(../img/zj4.png) no-repeat; }
  6343. #combat-query .enter .zj4:hover {
  6344. background: url(../img/zj4-hover.png) no-repeat; }
  6345. #combat-query .enter .title {
  6346. color: #408bcb;
  6347. height: 25px;
  6348. line-height: 25px;
  6349. font-weight: bolder;
  6350. text-align: center; }
  6351. html, body, div, span, ul, li, a, em, h1, h2, h3, h4, h5, p, input, em, i, img {
  6352. margin: 0;
  6353. padding: 0;
  6354. border: none; }
  6355. em, i {
  6356. font-style: normal;
  6357. color: #666; }
  6358. body {
  6359. font-family: "microsoft yahei",Tahoma,sans-serif;
  6360. font-size: 12px;
  6361. background: #fdfdfd;
  6362. moz-user-select: -moz-none;
  6363. -moz-user-select: none;
  6364. -o-user-select: none;
  6365. -khtml-user-select: none;
  6366. /* you could also put this in a class */
  6367. -webkit-user-select: none;
  6368. /* and add the CSS class here instead */
  6369. -ms-user-select: none;
  6370. user-select: none;
  6371. /**禁止选中文字*/ }
  6372. a {
  6373. text-decoration: none;
  6374. cursor: pointer;
  6375. color: #666;
  6376. outline: none; }
  6377. body a {
  6378. outline: none;
  6379. blr: expression(this.onFocus=this.blur()); }
  6380. a:hover, a:focus {
  6381. outline: none; }
  6382. input {
  6383. outline: none; }
  6384. ul, li {
  6385. list-style: none; }
  6386. h3 {
  6387. font-size: 12px;
  6388. font-weight: bold;
  6389. color: #666; }
  6390. p {
  6391. color: #999; }
  6392. .fl {
  6393. float: left;
  6394. _display: inline; }
  6395. .fr {
  6396. float: right;
  6397. _display: inline; }
  6398. .no-data-tip {
  6399. text-align: center;
  6400. margin: 135px 0; }
  6401. .no-data-tip img {
  6402. margin-bottom: 10px; }
  6403. .box {
  6404. width: 600px;
  6405. overflow: hidden;
  6406. padding: 15px; }
  6407. .box .nav {
  6408. background-color: #ecf3f9; }
  6409. .box .nav a {
  6410. display: inline-block;
  6411. *display: inline;
  6412. *zoom: 1;
  6413. width: 190px;
  6414. height: 30px;
  6415. line-height: 30px;
  6416. text-align: center;
  6417. color: #666; }
  6418. .box .nav a.active {
  6419. background-color: #ddebf7;
  6420. font-weight: bold; }
  6421. .page-nav {
  6422. margin: 2px 11px 0 0;
  6423. *margin-top: 15px;
  6424. float: right;
  6425. _display: inline; }
  6426. .page-nav a {
  6427. display: inline-block;
  6428. *display: inline;
  6429. *zoom: 1;
  6430. height: 15px;
  6431. line-height: 15px;
  6432. color: #999;
  6433. text-align: center;
  6434. font-size: 12px;
  6435. -webkit-border-radius: 3px;
  6436. border-radius: 3px;
  6437. -webkit-background-clip: padding-box;
  6438. -moz-background-clip: padding;
  6439. background-clip: padding-box; }
  6440. .page-nav a.pre-next {
  6441. width: 44px;
  6442. height: 17px;
  6443. color: #fff;
  6444. line-height: 17px;
  6445. padding: 0;
  6446. vertical-align: middle;
  6447. margin-left: 5px; }
  6448. .page-nav a.pre-next {
  6449. background-image: url(../slice/pre-next.png); }
  6450. .page-nav a.pre-next:hover {
  6451. background-image: url(../slice/pre-next-hover.png); }
  6452. .page-nav a.page-go {
  6453. color: #fff;
  6454. width: 30px !important;
  6455. background-image: url(../slice/page-go.png); }
  6456. .page-nav a.current {
  6457. margin: 0 5px; }
  6458. .page-nav a.current input {
  6459. width: 26px;
  6460. height: 15px;
  6461. text-align: center;
  6462. border: 1px solid #dadada;
  6463. color: #666;
  6464. margin: 0 4px 0 2px; }
  6465. #pageNum {
  6466. margin: 2px 11px 0 0;
  6467. *margin-top: 15px;
  6468. float: right;
  6469. _display: inline; }
  6470. #pageNum a {
  6471. display: inline-block;
  6472. *display: inline;
  6473. *zoom: 1;
  6474. height: 15px;
  6475. line-height: 15px;
  6476. padding: 0 8px;
  6477. color: #999;
  6478. text-align: center;
  6479. font-size: 12px;
  6480. -webkit-border-radius: 3px;
  6481. border-radius: 3px;
  6482. -webkit-background-clip: padding-box;
  6483. -moz-background-clip: padding;
  6484. background-clip: padding-box; }
  6485. #pageNum a.pre, #pageNum a.next {
  6486. width: 25px;
  6487. height: 15px;
  6488. padding: 0;
  6489. vertical-align: middle; }
  6490. #pageNum a.pre {
  6491. background-image: url(../slice/pre.png); }
  6492. #pageNum a.next {
  6493. background-image: url(../slice/pre-next.png); }
  6494. #pageNum a:hover {
  6495. background-color: #f3f3f3; }
  6496. #pageNum a.current, #pageNum a.current:hover {
  6497. background-color: #a8bfd1;
  6498. color: #fff; }
  6499. #pageNum #pageNow a, #pageNum #pageNow a:hover {
  6500. background-color: #a8bfd1;
  6501. color: #fff; }
  6502. .hide {
  6503. display: none; }
  6504. .mod-tabs-trigger li {
  6505. width: 50%;
  6506. float: left;
  6507. _display: inline;
  6508. height: 30px;
  6509. line-height: 30px;
  6510. text-align: center;
  6511. color: #666;
  6512. font-size: 12px;
  6513. background-color: #ecf3f9;
  6514. cursor: pointer; }
  6515. .mod-tabs-trigger li.selected {
  6516. background-color: #ddebf7;
  6517. font-weight: bold; }
  6518. .col-4 li {
  6519. width: 25%; }
  6520. .search-input {
  6521. position: relative;
  6522. width: 240px;
  6523. margin-right: 30px;
  6524. margin-top: 7px;
  6525. height: 28px;
  6526. border: 1px solid #dbdbdb;
  6527. -webkit-border-radius: 3px;
  6528. border-radius: 3px;
  6529. -webkit-background-clip: padding-box;
  6530. -moz-background-clip: padding;
  6531. background-clip: padding-box; }
  6532. .search-input input {
  6533. width: 214px;
  6534. height: 28px;
  6535. height: 26px\0;
  6536. line-height: 25px\0;
  6537. border: none;
  6538. text-indent: 10px;
  6539. font-size: 12px;
  6540. color: #999;
  6541. margin-top: 2px\0;
  6542. *height: 24px;
  6543. *margin-top: 2px;
  6544. *line-height: 24px;
  6545. *border: 0; }
  6546. .search-input i {
  6547. position: absolute;
  6548. right: 10px;
  6549. top: 7px;
  6550. width: 14px;
  6551. height: 14px;
  6552. cursor: pointer;
  6553. background-image: url(../slice/search.png); }
  6554. .personal-top {
  6555. position: relative;
  6556. top: 0;
  6557. left: 0; }
  6558. .top-message, .personal-top {
  6559. position: absolute;
  6560. *position: relative !important;
  6561. left: -20px;
  6562. width: 600px;
  6563. height: 30px;
  6564. line-height: 30px;
  6565. top: -20px;
  6566. *top: 20px;
  6567. background-color: #ecf3f9;
  6568. padding: 0 15px;
  6569. color: #666; }
  6570. .top-message a, .personal-top a {
  6571. color: #666; }
  6572. .top-message .base, .personal-top .base {
  6573. display: inline-block;
  6574. *display: inline;
  6575. *zoom: 1;
  6576. margin-right: 10px;
  6577. color: #408bcb; }
  6578. .top-message .base i, .personal-top .base i {
  6579. display: inline-block;
  6580. *display: inline;
  6581. *zoom: 1;
  6582. width: 14px;
  6583. height: 12px;
  6584. margin-bottom: -2px;
  6585. *margin-bottom: 2px;
  6586. background: url(../img/envelope.png); }
  6587. .top-message .base i:hover, .personal-top .base i:hover {
  6588. background: url(../img/envelope-hover.png); }
  6589. .top-message .red, .personal-top .red {
  6590. color: #ff6600; }
  6591. .top-message .more-info, .personal-top .more-info {
  6592. /**margin-top:-41px;
  6593. @include float-right;*/
  6594. position: relative;
  6595. float: right;
  6596. _display: inline; }
  6597. .top-message .more-info a, .personal-top .more-info a {
  6598. float: left; }
  6599. .top-message .more-info .teacher, .personal-top .more-info .teacher {
  6600. -webkit-border-radius: 3px;
  6601. border-radius: 3px;
  6602. -webkit-background-clip: padding-box;
  6603. -moz-background-clip: padding;
  6604. background-clip: padding-box;
  6605. display: inline-block;
  6606. *display: inline;
  6607. *zoom: 1;
  6608. position: relative;
  6609. top: 4px;
  6610. width: 65px;
  6611. height: 21px;
  6612. line-height: 21px;
  6613. text-align: center;
  6614. color: #fff;
  6615. margin: 0 10px;
  6616. background-color: #408bcb; }
  6617. .top-message .more-info .teacher:hover, .personal-top .more-info .teacher:hover {
  6618. background-color: #51a2e0; }
  6619. .top-message .more-info .refresh, .personal-top .more-info .refresh {
  6620. display: inline-block;
  6621. *display: inline;
  6622. *zoom: 1;
  6623. float: right !important;
  6624. _display: inline;
  6625. position: relative;
  6626. top: 8px;
  6627. width: 25px;
  6628. height: 20px;
  6629. vertical-align: 10px\0;
  6630. border: 1px solid #cfdeea;
  6631. background-color: #ecf3f9;
  6632. -webkit-border-radius: 2px;
  6633. border-radius: 2px;
  6634. -webkit-background-clip: padding-box;
  6635. -moz-background-clip: padding;
  6636. background-clip: padding-box;
  6637. margin-top: -5px; }
  6638. .top-message .more-info .refresh:hover, .personal-top .more-info .refresh:hover {
  6639. background-color: #cfdeea; }
  6640. .top-message .more-info .refresh i, .personal-top .more-info .refresh i {
  6641. display: inline-block;
  6642. *display: inline;
  6643. *zoom: 1;
  6644. width: 13px;
  6645. height: 13px;
  6646. margin: 0 0 4px 6px;
  6647. *margin-top: 3px;
  6648. background: url(../img/refresh.png); }
  6649. .top-message .more-info .back i, .top-message .more-info .rank i, .personal-top .more-info .back i, .personal-top .more-info .rank i {
  6650. display: inline-block;
  6651. *display: inline;
  6652. *zoom: 1; }
  6653. .top-message .more-info .back, .personal-top .more-info .back {
  6654. padding: 4px 8px;
  6655. border: 1px solid #d1dfeb;
  6656. width: 13px;
  6657. height: 13px;
  6658. margin-top: 6px;
  6659. margin-left: 10px; }
  6660. .top-message .more-info .back i, .personal-top .more-info .back i {
  6661. width: 13px;
  6662. height: 13px;
  6663. margin-bottom: 12px;
  6664. background-image: url(../slice/return-back.png); }
  6665. .top-message .more-info .rank i, .personal-top .more-info .rank i {
  6666. margin-left: 5px;
  6667. margin-bottom: 1px;
  6668. *margin-bottom: 5px;
  6669. width: 9px;
  6670. height: 5px;
  6671. background-image: url(../slice/marrow-down.png); }
  6672. .buyer-teacher {
  6673. margin-top: 22px;
  6674. *margin-top: -18px;
  6675. font-weight: normal;
  6676. float: right;
  6677. _display: inline; }
  6678. .buyer-teacher a {
  6679. display: inline-block;
  6680. *display: inline;
  6681. *zoom: 1;
  6682. margin-left: 10px; }
  6683. .buyer-teacher a span {
  6684. font-weight: normal !important; }
  6685. .buyer-teacher i {
  6686. display: inline-block;
  6687. *display: inline;
  6688. *zoom: 1; }
  6689. .buyer-teacher .buyer i, .buyer-teacher .teacher i {
  6690. width: 9px;
  6691. height: 5px;
  6692. margin-left: 5px;
  6693. margin-bottom: 2px; }
  6694. .buyer-teacher #buyer1 i, .buyer-teacher #teacher1 i {
  6695. width: 17px;
  6696. height: 15px;
  6697. margin-left: 5px;
  6698. margin-bottom: -3px; }
  6699. .buyer-teacher .buyer i {
  6700. background: url(../img/marrow-down.png); }
  6701. .buyer-teacher .buyer:hover i {
  6702. background: url(../img/marrow-up.png); }
  6703. .buyer-teacher .teacher i {
  6704. background: url(../img/marrow-down.png); }
  6705. .buyer-teacher .teacher:hover i {
  6706. background: url(../img/marrow-up.png); }
  6707. .buyer-teacher #buyer1 i {
  6708. background: url(../img/marrow-down1.png); }
  6709. .buyer-teacher #buyer1:hover i {
  6710. background: url(../img/marrow-up1.png); }
  6711. .buyer-teacher #teacher1 i {
  6712. background: url(../img/marrow-down1.png); }
  6713. .buyer-teacher #teacher1:hover i {
  6714. background: url(../img/marrow-up1.png); }
  6715. #daoshiList, #rankUl, .rank-ul {
  6716. display: none;
  6717. position: absolute;
  6718. right: 28px;
  6719. top: 30px;
  6720. height: auto;
  6721. max-height: 230px;
  6722. overflow-y: auto;
  6723. border: 1px solid #e7e7e7;
  6724. padding: 5px;
  6725. z-index: 10;
  6726. background-color: #fff;
  6727. font-weight: normal; }
  6728. #daoshiList li, #rankUl li, .rank-ul li {
  6729. padding: 0 5px !important;
  6730. height: 30px;
  6731. line-height: 30px;
  6732. text-align: center; }
  6733. #daoshiList li:hover, #rankUl li:hover, .rank-ul li:hover {
  6734. background-color: #ecf3f9; }
  6735. .btn-con {
  6736. display: inline-block;
  6737. *display: inline;
  6738. *zoom: 1;
  6739. width: 115px;
  6740. height: 38px;
  6741. line-height: 38px;
  6742. text-align: center;
  6743. background-color: #4b9add;
  6744. -webkit-border-radius: 3px;
  6745. border-radius: 3px;
  6746. -webkit-background-clip: padding-box;
  6747. -moz-background-clip: padding;
  6748. background-clip: padding-box;
  6749. color: #fff;
  6750. margin: 3px 10px 0 0; }
  6751. .btn-con:hover {
  6752. background-color: #408bcb; }
  6753. .btn-con i {
  6754. display: inline-block;
  6755. *display: inline;
  6756. *zoom: 1;
  6757. width: 13px;
  6758. height: 13px;
  6759. margin-right: 5px;
  6760. margin-top: -2px;
  6761. *margin-top: 0px;
  6762. vertical-align: middle;
  6763. background-image: url(../slice/pen.png); }
  6764. .split {
  6765. display: inline-block;
  6766. *display: inline;
  6767. *zoom: 1;
  6768. padding: 0 5px;
  6769. color: #ccc; }
  6770. .more-actions {
  6771. float: left;
  6772. _display: inline;
  6773. padding-left: 15px;
  6774. margin-top: -2px; }
  6775. .more-actions a.more-del {
  6776. -webkit-border-radius: 3px;
  6777. border-radius: 3px;
  6778. -webkit-background-clip: padding-box;
  6779. -moz-background-clip: padding;
  6780. background-clip: padding-box;
  6781. margin-left: 5px;
  6782. padding: 5px 15px;
  6783. height: 20px;
  6784. line-height: 20px;
  6785. text-align: center;
  6786. color: #fff;
  6787. background-color: #408bcb; }
  6788. .more-actions a.more-del:hover {
  6789. background-color: #50a1e0; }
  6790. .more-actions a {
  6791. display: inline-block;
  6792. *display: inline;
  6793. *zoom: 1;
  6794. color: #408bcb; }
  6795. .more-actions span {
  6796. display: inline-block;
  6797. *display: inline;
  6798. *zoom: 1;
  6799. padding: 0 5px;
  6800. color: #ccc; }
  6801. .blue-btn {
  6802. display: inline-block;
  6803. *display: inline;
  6804. *zoom: 1;
  6805. -webkit-border-radius: 3px;
  6806. border-radius: 3px;
  6807. -webkit-background-clip: padding-box;
  6808. -moz-background-clip: padding;
  6809. background-clip: padding-box;
  6810. padding: 5px 20px;
  6811. color: #fff;
  6812. background-color: #408bcb; }
  6813. .blue-btn:hover {
  6814. background-color: #4b9add; }
  6815. .pop-box {
  6816. width: 300px; }
  6817. #usernameWrap {
  6818. color: #666; }
  6819. #usernameWrap a {
  6820. color: #408bcb; }
  6821. .login-userinfo {
  6822. display: none; }
  6823. .more-info .share {
  6824. margin-top: 5px;
  6825. position: relative;
  6826. float: right;
  6827. _display: inline; }
  6828. .more-info .share .icons {
  6829. width: 25px;
  6830. height: 20px;
  6831. float: left;
  6832. margin: -2px 10px 0;
  6833. cursor: pointer;
  6834. position: relative;
  6835. z-index: 999;
  6836. border: 1px solid #cfdeea;
  6837. background-color: #ecf3f9;
  6838. -webkit-border-radius: 2px;
  6839. border-radius: 2px;
  6840. -webkit-background-clip: padding-box;
  6841. -moz-background-clip: padding;
  6842. background-clip: padding-box; }
  6843. .more-info .share .icons:hover {
  6844. background-color: #cfdeea;
  6845. -webkit-border-radius: 0px;
  6846. border-radius: 0px;
  6847. -webkit-background-clip: padding-box;
  6848. -moz-background-clip: padding;
  6849. background-clip: padding-box; }
  6850. .more-info .share .icons i {
  6851. width: 12px;
  6852. height: 13px;
  6853. display: block;
  6854. margin: 4px -1px 2px 7px;
  6855. background-image: url(../slice/share-i.png); }
  6856. .more-info .icons {
  6857. margin-top: 13px;
  6858. float: right;
  6859. _display: inline; }
  6860. .more-info .split {
  6861. display: inline-block;
  6862. *display: inline;
  6863. *zoom: 1;
  6864. padding: 0 10px; }
  6865. .more-info .links {
  6866. width: 78px;
  6867. border: 1px solid #e7e7e7;
  6868. background: #fff;
  6869. position: absolute;
  6870. right: 3px;
  6871. top: 25px;
  6872. z-index: 999;
  6873. display: none;
  6874. padding: 5px; }
  6875. .more-info .links a {
  6876. height: 22px;
  6877. line-height: 22px;
  6878. margin-bottom: 5px;
  6879. padding: 0 0 3px 0px;
  6880. display: block;
  6881. width: 100%;
  6882. cursor: pointer; }
  6883. .more-info .links a i {
  6884. display: inline-block;
  6885. *display: inline;
  6886. *zoom: 1;
  6887. width: 16px;
  6888. height: 16px;
  6889. vertical-align: middle;
  6890. margin-right: 5px; }
  6891. .more-info .links a:hover {
  6892. background-color: #ecf3f9; }
  6893. .more-info .hover .links {
  6894. display: block; }
  6895. .arrow-hover-wrap {
  6896. display: none;
  6897. position: absolute;
  6898. padding: 10px;
  6899. border: 1px solid #e7e7e7;
  6900. background: #fff;
  6901. z-index: 9; }
  6902. .avatar-arrow {
  6903. position: absolute;
  6904. top: -6px;
  6905. left: 22px;
  6906. display: inline-block;
  6907. *display: inline;
  6908. *zoom: 1;
  6909. width: 13px;
  6910. height: 7px;
  6911. background-image: url(../slice/avatar-arrow.png); }
  6912. .blue-btn {
  6913. cursor: pointer;
  6914. -webkit-border-radius: 3px;
  6915. border-radius: 3px;
  6916. -webkit-background-clip: padding-box;
  6917. -moz-background-clip: padding;
  6918. background-clip: padding-box;
  6919. height: 33px;
  6920. line-height: 33px;
  6921. padding: 0 10px;
  6922. text-align: center;
  6923. color: #fff;
  6924. background-color: #408bcb; }
  6925. .blue-btn:hover {
  6926. background-color: #4b9add; }
  6927. .tencent {
  6928. background-image: url(../slice/tencent.png); }
  6929. .tencent:hover {
  6930. background-image: url(../slice/tencent-hover.png); }
  6931. .sina {
  6932. background-image: url(../slice/sina.png); }
  6933. .sina:hover {
  6934. background-image: url(../slice/sina-hover.png); }
  6935. .qq {
  6936. background-image: url(../slice/qq.png); }
  6937. .qq:hover {
  6938. background-image: url(../slice/qq-hover.png); }
  6939. .copy-link {
  6940. width: 14px !important;
  6941. height: 14px !important;
  6942. background-image: url(../slice/copy-link.png); }
  6943. .word {
  6944. display: inline-block;
  6945. *display: inline;
  6946. *zoom: 1;
  6947. -webkit-text-overflow: ellipsis;
  6948. -ms-text-overflow: ellipsis;
  6949. -o-text-overflow: ellipsis;
  6950. text-overflow: ellipsis;
  6951. overflow: hidden;
  6952. vertical-align: bottom;
  6953. white-space: nowrap; }
  6954. .avatar-img {
  6955. width: 40px;
  6956. height: 40px;
  6957. position: absolute;
  6958. left: 0;
  6959. bottom: 0px;
  6960. border: 1px solid #fff; }
  6961. .video-wrap .video-left li {
  6962. margin-right: 15px; }
  6963. .video-wrap .video-right {
  6964. width: 190px; }
  6965. .video-wrap .titleP {
  6966. font-size: 12px;
  6967. color: #666666; }
  6968. .video-wrap a img {
  6969. width: 190px;
  6970. height: 105px; }
  6971. .video-wrap .v-title {
  6972. margin-bottom: 10px; }
  6973. .video-wrap li {
  6974. float: left;
  6975. _display: inline;
  6976. position: relative; }
  6977. .video-wrap .avatar-img {
  6978. bottom: 24px !important; }
  6979. .video-wrap .word {
  6980. width: 185px;
  6981. margin-top: 5px; }
  6982. .v-shadow {
  6983. left: 0;
  6984. height: 15px;
  6985. width: 100%;
  6986. font-size: 12px;
  6987. color: #ccc;
  6988. position: absolute;
  6989. bottom: 24px;
  6990. background: url(../img/shadow.png); }
  6991. .win-green {
  6992. color: #4eb95a; }
  6993. .fail-red {
  6994. color: #ef3d3d; }
  6995. .win-rate {
  6996. color: #666; }
  6997. .tbody tr:hover {
  6998. background-color: #ecf3f9; }
  6999. .hero-left {
  7000. width: 100%; }
  7001. .hero-right {
  7002. width: 210px; }
  7003. .hero-right .r-c .mod-art li {
  7004. height: 32px !important;
  7005. padding: 8px !important; }
  7006. .m-myhero-table__hd table th .u-sort--normal i {
  7007. width: 11px;
  7008. height: 11px;
  7009. background: url(../img/order-p.png); }
  7010. .m-myhero-table__hd table th .u-sort--normal i:hover {
  7011. background: url(../img/order-p-hover.png); }
  7012. .m-myhero-table__hd table th .u-sort--desc i, .m-rank-herotable thead .sort--down i {
  7013. display: inline-block;
  7014. *display: inline;
  7015. *zoom: 1;
  7016. width: 11px;
  7017. height: 11px;
  7018. background: url(../img/order-j.png);
  7019. margin-top: -5px; }
  7020. .m-myhero-table__hd table th .u-sort--desc i:hover, .m-rank-herotable thead .sort--down i:hover {
  7021. background: url(../img/order-j-hover.png); }
  7022. .m-myhero-table__hd table th .u-sort--asc i, .m-rank-herotable thead .sort--up i {
  7023. display: inline-block;
  7024. *display: inline;
  7025. *zoom: 1;
  7026. width: 11px;
  7027. height: 11px;
  7028. background: url(../img/order-s.png);
  7029. margin-top: -5px; }
  7030. .m-myhero-table__hd table th .u-sort--asc i:hover, .m-rank-herotable thead .sort--up i:hover {
  7031. background: url(../img/order-s-hover.png); }
  7032. .m-myhero__hd .note-txt i {
  7033. width: 13px;
  7034. height: 13px;
  7035. background: url(../img/question.png); }
  7036. .heropage-hero-tooltips__hd .cont {
  7037. position: relative; }
  7038. .more-action {
  7039. position: absolute;
  7040. top: 10px;
  7041. right: 10px; }
  7042. .rank-img {
  7043. width: 35px;
  7044. height: 30px;
  7045. background: url(../img/tip-ac-a.png);
  7046. margin: 4px 10px 0 0; }
  7047. .action-right a {
  7048. display: block;
  7049. width: 35px;
  7050. height: 17px; }
  7051. .action-right .ac-top {
  7052. background: url(../img/tip-ac-fuzhu.png);
  7053. margin-bottom: 5px; }
  7054. .action-right .ac-bottom {
  7055. background: url(../img/tip-ac-daye.png); }
  7056. .consult-tag {
  7057. color: #999;
  7058. font-size: 14px;
  7059. display: inline-block;
  7060. *display: inline;
  7061. *zoom: 1;
  7062. padding-right: 10px; }
  7063. .word {
  7064. display: inline-block;
  7065. *display: inline;
  7066. *zoom: 1;
  7067. -webkit-text-overflow: ellipsis;
  7068. -ms-text-overflow: ellipsis;
  7069. -o-text-overflow: ellipsis;
  7070. text-overflow: ellipsis;
  7071. overflow: hidden;
  7072. vertical-align: bottom;
  7073. white-space: nowrap; }
  7074. .col-6 li {
  7075. width: 16.6%; }
  7076. .star_nav {
  7077. color: #f26460 !important; }
  7078. .focus-body {
  7079. height: 410px;
  7080. overflow: hidden; }
  7081. .sort-select a, .sort-select i {
  7082. display: inline-block;
  7083. *display: inline;
  7084. *zoom: 1; }
  7085. .sort-select a {
  7086. width: 12px;
  7087. height: 12px;
  7088. border: 1px solid #c1c1c1;
  7089. vertical-align: -2px;
  7090. margin-right: 5px; }
  7091. .sort-select a i {
  7092. width: 9px;
  7093. height: 8px;
  7094. margin: 0 0 2px 1px; }
  7095. .sort-select a.selected i {
  7096. background: url(../img/check.png); }
  7097. .sever-select {
  7098. float: left;
  7099. _display: inline;
  7100. -webkit-border-radius: 3px;
  7101. border-radius: 3px;
  7102. -webkit-background-clip: padding-box;
  7103. -moz-background-clip: padding;
  7104. background-clip: padding-box;
  7105. outline: none;
  7106. width: 125px;
  7107. height: 30px;
  7108. padding-left: 10px;
  7109. line-height: 30px;
  7110. border: 1px solid #dbdbdb;
  7111. margin: -5px 30px 0 0;
  7112. border: 1px solid #dbdbdb;
  7113. cursor: pointer; }
  7114. .sever-select i {
  7115. float: right;
  7116. _display: inline;
  7117. display: inline-block;
  7118. width: 9px;
  7119. height: 5px;
  7120. margin: 13px 9px;
  7121. vertical-align: middle;
  7122. background: url(../img/marrow-down.png); }
  7123. .server-ul {
  7124. top: 72px;
  7125. width: 123px;
  7126. left: 323px; }
  7127. .more-hero-level {
  7128. position: relative; }
  7129. .more-hero-level .ch_level {
  7130. left: 5px;
  7131. top: 5px;
  7132. line-height: 30px;
  7133. font-weight: bold; }
  7134. .consult-hd {
  7135. width: 600px;
  7136. background: #ecf3f9;
  7137. position: relative; }
  7138. .consult-hd ul {
  7139. width: 560px; }
  7140. .consult-hd .icons {
  7141. display: inline-block;
  7142. _display: inline;
  7143. position: absolute;
  7144. top: 4px;
  7145. right: 10px;
  7146. width: 25px;
  7147. height: 20px;
  7148. vertical-align: 10px\0;
  7149. border: 1px solid #cfdeea;
  7150. background-color: #ecf3f9;
  7151. -webkit-border-radius: 2px;
  7152. border-radius: 2px;
  7153. -webkit-background-clip: padding-box;
  7154. -moz-background-clip: padding;
  7155. background-clip: padding-box;
  7156. cursor: pointer; }
  7157. .consult-hd .icons:hover {
  7158. background-color: #cfdeea; }
  7159. .consult-hd .icons i {
  7160. display: inline-block;
  7161. *display: inline;
  7162. *zoom: 1;
  7163. width: 13px;
  7164. height: 13px;
  7165. margin: 3px 0 0px 6px;
  7166. background: url(../img/refresh.png); }
  7167. .activity_date {
  7168. float: right;
  7169. _display: inline;
  7170. padding-right: 5px; }
  7171. .m-rank-herotable thead th{
  7172. width: 15%;
  7173. }
  7174. .table-body{
  7175. height: 342px;
  7176. overflow: auto;
  7177. }
  7178. .m-rank-herotable tbody tr{
  7179. height: 34px;
  7180. }
  7181. .m-rank-herotable tbody td{
  7182. width: 15%;
  7183. }
  7184. .m-rank-herotable thead th.type2{
  7185. width: 20%;
  7186. }
  7187. .m-rank-herotable tbody td.type2{
  7188. width: 20%;
  7189. }
  7190. .m-rank-herotable thead .sort{
  7191. font-weight: bolder;
  7192. cursor:pointer;
  7193. }
  7194. .m-rank-herotable thead .sort i{
  7195. margin-left: 5px;
  7196. }
  7197. .hero-rank #dataLists tbody td .hero-name img{
  7198. width: 28px;
  7199. height: 28px;
  7200. display: inline-block;
  7201. overflow: hidden;
  7202. }