all.css 144 KB

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