| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635 |
- /* CSS Document */
- *{ padding:0; margin:0}
- .wapd, .nav_bottom{display:none}
- div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, th, td, figure, em, {
- margin:0;
- padding:0;
- font-weight:normal;
- }
- li {
- list-style-type:none
- }
- ul {
- margin:0px;
- padding:0px
- }
- img {
- border:0px;
- }
- a {
- text-decoration:none;
- color:#333
- }
- a:hover {
- text-decoration:none;
- }
- a img {
- border:none;
- }
- body {
- font-size: 14px;
- font-family: "Microsoft YaHei" !important;
- color:#666;
- background:#f9f9f9;margin:0;padding:0;
- }
- body a:hover {
- color:#34aadc;
- }
- h4 {
- font-size:15px;
- color:#333;
- }
- .l {
- float:left
- }
- .r {
- float:right
- }
- .clear {
- clear:both;
- }
- .blank10 {
- height:10px;
- overflow:hidden
- }
- .blank18 {
- height:18px;
- overflow:hidden
- }
- .blank20 {
- height:20px;
- overflow:hidden
- }
- input {
- border: 1px solid #888;
- background:#ccc;
- }
- textarea {
- border: 1px solid #888;
- background:#ccc;
- }
- .focus {
- border: 1px solid #f00;
- background:#666;
- }
- .Dg {
- width:1020px;
- margin:0 auto;
- line-height:37px;
- font-size:12px;
- color:#666;
- line-height:37px;
- padding-left:8px;
- }
- .Dg a {
- margin:6px;
- color:#666
- }
- .idx {
- width:1020px;
- margin:0 auto;
- overflow:hidden;
- margin-top:10px
- }
- .norecord {
- width:250px;
- margin:0 auto;
- margin-top:20px;
- height:32px;
- line-height:32px;
- padding-left:27px;
- border:1px solid #f9b49c;
- color:#e00;
- background:#fff6e6 url(../image/no.gif) no-repeat 10px 50%;
- font-size:12px
- }
- del {
- text-decoration:none;
- padding:0px;
- margin:0px;
- }
- .hide {
- display:none
- }
- .chargetips {
- width:300px;
- margin:0 auto;
- margin-top:20px;
- line-height:22px;
- background:#fbfbe4 url(../image/ibtn.png) no-repeat 10px 50%;
- border:1px solid #ffd5af;
- line-height:24px;
- padding:20px 0px 20px 70px
- }
- .chargetips a {
- color:#0063c8
- }
- /*头部通用start*/
- /*#head_cn{ height:35px; width:100%;background-color: #0e9bdc; }
- .head_txt{ height:35px; width:1020px; margin:0 auto; text-align: right; line-height:35px}
- .head_txt span{font-size: 14px;
- color: #FFF}
- .online a {
- display: inline-block;
- height: 15px;
- width: 16px;
- background: url(../image/icon-qq.png) no-repeat center;
- }*/
- #head_top {
- background-color: #f9f9f9;
- height: 93px;
- width: 100%;
- margin-top: 0px;
- margin-right: auto;
- margin-bottom: 0px;
- margin-left: auto;
- }
- #head_top .head {
- height: 93px;
- width: 1020px;
- margin-top: 0px;
- margin-right: auto;
- margin-bottom:0px ;
- margin-left: auto;
- }
- #head_top .head .head-top-con{
- float:right;
- padding-top:8px;
- }
- #head_top .head .head-top-con span{
- padding: 0 10px;
- font-size: 12px;
- background: url(../image/icon-line.png) no-repeat right center;
- color: #666;
- }
- #head_top .head .head-top-con span a {
- margin-left: 10px;
- }
- #head_top .head .head-top-con span b {
- color: #666;
- margin-left: 10px;
- font-size: 12px;
- }
- #head_top .head .head-top-con .online {
- background: none;
- padding: 0;
- }
- #head_top .head .head-top-con .onl {
- background: none;
- padding: 0;
- }
- #head_top .head .head-top-con .online a {
- display: inline-block;
- height: 15px;
- width: 16px;
- background: url(../image/icon-qq.png) no-repeat center;
- }
- #head_top .head .logo {
- float: left;
- height: 80px;
- width: 200px;
- margin-top:12px
- }
- #head_top .head .navi {
- float: left;
- height: 46px;
- width: 800px;
- padding-bottom:20px;
- }
- #head_top .head .navi ul {
- width: 800px;
- }
- #head_top .head .navi ul li {
- text-align: center;
- float: left;
- width: 112px;
- }
- #head_top .head .navi ul li a {
- font-size: 14px;
- color: #666;
- float: left;
- width: 112px;
- display: block;
- padding: 30px 25px;
- font-weight:bold;
- }
- #head_top .head .navi ul li a:hover {
- color: #0e9bdc;
- }
- #head_top .head .navi .active a
- { color:#0e9bdc }
- /*头部通用end*/
- .t1_pic{ width:1020px; height:140px; text-align:center; margin:0 auto;
- }
- /*首页大图开始*/
- .datu {
- background:#CBCBCB;
- height:294px;
- background:url(http://www.ifenguo.com/skin/images/datubg.png) repeat-x;
- }
- /*首页大图结束*/
- /*网站首页start*/
- /*第一排宣传文字start*/
- .main1 {
- width:1020px;
- margin:0px auto;
- height:120px;
- text-align:center;
- margin-top:40px;
- }
- .main1 h1 {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:14px;
- color:#333;
- }
- .main1 .zhuanzhu {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- color:#333;
- }
- .main1 .xiangxia {
- float:left;
- padding-left:462px;
- padding-top:10px;
- }
- /*第一排宣传文字end*/
- /*第二排宣传文字start*/
- .main2 {
- width:831px;
- height:223px;
- margin:0px auto;
- background:url(../image/beijing.png) 0px 0px no-repeat;
- }
- .main2 .xiangxia {
- float:left;
- padding-left:387px;
- padding-top:160px;
- }
- /*第二排宣传文字end*/
- /*横线背景start*/
- .hengxianbg {
- background:url(../image/beijing.png) left -250px repeat-x;
- height:97px;
- }
- .hengxianbg .biaoti {
- margin:0px auto;
- width:245px;
- background:#f2f2f2;
- height:97px;
- text-align:center;
- }
- .hengxianbg .biaoti .dbt {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- font-weight: bold;
- line-height:60px;
- color:#34aadc;
- }
- .hengxianbg .biaoti .dbt a {
- color:#34aadc;
- }
- .hengxianbg .biaoti .dbt a:hover {
- color:#666;
- text-decoration:none;
- }
- .hengxianbg .biaoti .dbt2 {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- font-weight: bold;
- line-height:60px;
- color:#34aadc;
- }
- .hengxianbg .biaoti .tt {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- font-weight: bold;
- line-height:60px;
- }
- .hengxianbg .biaoti .tt a {
- color:#333;
- }
- .hengxianbg .biaoti .tt a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .hengxianbg .biaoti .en {
- font-family:"Times New Roman", Times, serif;
- font-size:16px;
- color:#666;
- }
- /*横线背景end*/
- /*网页设计列表start*/
- .sheji {
- width:1044px;
- margin:0px auto;
- }
- .sheji .list {
- float:left;
- padding-left:12px;
- width:180px;
- margin:0px 8px;
- text-align:center;
- }
- .sheji .list .title {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- margin-top:10px;
- }
- .sheji .list .title a {
- color:#34aadc;
- }
- .sheji .list .title a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .sheji .list .tb1, .tb2, .tb3, .tb4, .tb5 {
- width:110px;
- height:110px;
- margin:0 auto;
- -webkit-transition: 0.5s ease-out;
- -moz-transition: 0.5s ease-out;
- -ms-transition: 0.5s ease-out;
- -o-transition: 0.5s ease-out;
- transition: 0.5s ease-out;
- }
- .sheji .list .tb1 {
- background:url(../image/s21.png) no-repeat;
- }
- .sheji .list .tb1:hover {
- background:url(../image/s22.png) no-repeat;
- }
- .sheji .list .tb2 {
- background:url(../image/s31.png) no-repeat;
- }
- .sheji .list .tb2:hover {
- background:url(../image/s32.png) no-repeat;
- }
- .sheji .list .tb3 {
- background:url(../image/s41.png) no-repeat;
- }
- .sheji .list .tb3:hover {
- background:url(../image/s42.png) no-repeat;
- }
- .sheji .list .tb4 {
- background:url(../image/s51.png) no-repeat;
- }
- .sheji .list .tb4:hover {
- background:url(../image/s52.png) no-repeat;
- }
- .sheji .list .tb5 {
- background:url(../image/s61.png) no-repeat;
- }
- .sheji .list .tb5:hover {
- background:url(../image/s62.png) no-repeat;
- }
- .sheji .line {
- float:left;
- width:1px;
- background:#ccc;
- height:130px;
- }
- /*网页设计列表end*/
- /*解决方案start*/
- .jiejue {
- width:1020px;
- margin:0px auto;
- }
- .jiejue .list {
- width:140px;
- float:left;
- padding-left:35px;
- margin:0 9px;
- text-align:center;
- }
- .jiejue .list .title {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- float:left;
- }
- .jiejue .list .title a {
- color:#333;
- }
- .jiejue .list .title a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .jiejue .list .tu1, .tu2, .tu3, .tu4, .tu5 {
- width:118px;
- height:136px;
- background:url(../image/beijing.png) 0px -575px no-repeat;
- -webkit-transition: -webkit-transform 1s ease-out;
- -moz-transition: -moz-transform 1s ease-out;
- -ms-transition: -ms-transform 1s ease-out;
- -o-transition: -o-transform 1s ease-out;
- transition: transform 1s ease-out;
- }
- .jiejue .list .tu1:hover, .tu2:hover, .tu3:hover, .tu4:hover, .tu5:hover {
- width:118px;
- height:136px;
- background:url(../image/beijing.png) 0px -745px no-repeat;
- -webkit-transform: rotate(360deg); /* safari and chrome */
- -moz-transform: rotate(360deg); /* firefox */
- -o-transform: rotate(360deg); /* opera */
- -ms-transform: rotate(360deg); /* ie9 */
- transform: rotate(360deg);
- }
- /*解决方案end*/
- /*案例展示标题start*/
- .anlitt {
- background:#BA292E;
- height:176px;
- text-align:center;
- }
- .anlitt .xiangxia {
- margin:0px auto;
- padding-top:15px;
- }
- .anlitt .title {
- margin:0px auto;
- width:245px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- font-weight: bold;
- line-height:60px;
- }
- .anlitt .title a {
- color:#fff;
- }
- .anlitt .title a:hover {
- color:#ccc;
- text-decoration:none;
- }
- .anlitt .en {
- font-family:"Times New Roman", Times, serif;
- font-size:18px;
- color:#CCC;
- }
- /*案例展示标题end*/
- /*案例展示列表start*/
- /*case*/
- .hyf{width: 1100px;height: auto;margin:0 auto;}
- .hyfl {width: 1100px;height: auto;margin: 20px auto 20px auto;border-bottom:solid 1px #dadada;float: left;}
- .hyfl h2 {
- font-size: 16px;
- width: 100px;
- float: left;
- height: 30px;
- line-height: 30px;
- margin:0 auto;
- }
- .hyfl ul { float: left; width: 980px; }
- .hyfl ul li { float: left;width:85px; text-align: center;}
- .hyfl ul li a {
- padding: 5px;
- line-height: 20px;
- height: 20px;
- margin-bottom: 5px;
- display: block;
- /*border: 1px solid #dadada;*/
- }
- .hyfl ul li a:hover { color:#FFF; background-color:#34aadc; }
- .hyfl ul li .thisclass { color:#FFF; background-color:#34aadc; }
- .caseimg{width:1100px;margin:0 auto;overflow:hidden;padding:10px 0;}
- .caseimg dl{width:338px;float:left;margin:10px 13px;}
- .caseimg dl dt{width:338px;height:211px;overflow:hidden;}
- .caseimg dl dt a:hover{ z-index:100; margin: -2px -2px -2px -2px;position: absolute;
-
- position: absolute;}
- .caseimg dl dt a:hover img{
- width:340px;
- height:214px;
-
- }
-
- .caseimg dl dd{width:338px;height:40px;background:#FFF;overflow:hidden;margin-left:0px;}
- .caseimg dl dd p{float:left;line-height:40px;font-size:14px;padding-left:20px;color:#333;}
- .caseimg dl dd a{display:block;width:40px;height:40px;background:#CCCCCC;color:#FFF;text-align:center;line-height:40px;float:right;font-size:30px;}
- .caseimg dl dd a:hover{display:block;width:40px;height:40px;background:#0e9bdc;color:#FFF;text-align:center;line-height:40px;float:right;font-size:30px;}
- .casemore{width:74px;height:40px;margin:0 auto;border:1px solid #CACACA; text-align:center;padding-top:16px;}
- /*case*/
- /*案例展示列表end*/
- /*关于我们标题start*/
- .guanyutt {
- background:url(../image/xiewen.png) repeat;
- height:178px;
- text-align:center;
- }
- .guanyutt .xiangxia {
- margin:0px auto;
- padding-top:15px;
- }
- .guanyutt .title {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- font-weight: bold;
- line-height:60px;
- }
- .guanyutt .title a {
- color:#34aadc;
- }
- .guanyutt .title a:hover {
- color:#666;
- text-decoration:none;
- }
- .guanyutt .en {
- font-family:"Times New Roman", Times, serif;
- font-size:18px;
- color:#333;
- }
- /*关于我们标题end*/
- /*关于我们列表start*/
- .guanyu {
- width:800px;
- margin:0px auto;
- padding-top:30px;
- }
- .guanyu .jieshao {
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:16px;
- font-weight: normal;
- line-height:180%;
- color:#333;
- text-indent:2em;
- }
- .guanyu .linian1 {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:32px;
- font-weight: bold;
- color:#333;
- text-align:center;
- }
- .guanyu .liniantext {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:26px;
- font-weight: normal;
- color:#34aadc;
- text-align:center;
- }
- .guanyu .liniancontent {
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:16px;
- font-weight: normal;
- color:#333;
- text-align:center;
- }
- .guanyu .xiangxia {
- font-size:14px;
- font-weight: normal;
- color:#333;
- text-align:center;
- padding-top:30px;
- }
- .guanyu .lianxi {
- font-size:14px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-weight: normal;
- color:#333;
- text-align:center;
- padding-top:20px;
- }
- /*关于我们列表end*/
- /*帮助与动态start*/
- .help {
- border-top:1px #ccc solid;
- }
- .help .box {
- width:1020px;
- margin:0px auto;
- height:240px;
- }
- .help .box .list {
- width:285px;
- float:left;
- padding-left:13px;
- margin:25px 12px;
- }
- .help .box .list .title {
- float:left;
- width:240px;
- }
- .help .box .list .title span {
- font-family:"Times New Roman", Times, serif;
- font-size:18px;
- color:#666;
- margin-left:10px;
- }
- .help .box .list .title a {
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:24px;
- font-weight: bold;
- color:#333;
- margin-left:5px;
- }
- .help .box .list .title a:hover {
- text-decoration:none;
- color:#34aadc;
- }
- .help .box .list .more {
- float:right;
- }
- .help .box .list .more img {
- width:41px;
- height:16px;
- padding-top:14px;
- }
- .help .box .list .content {
- float:left;
- width:285px;
- padding-top:15px;
- }
- .help .box .list .content ul {
- float:left;
- width:285px;
- }
- .help .box .list .content ul li {
- height:70px;
- padding-top:10px;
- }
- .help .box .list .content ul li:hover {
- background:#fafafa;
- }
- .help .box .list .content ul li.li01 .lct {
- width:90px;
- float:left;
- }
- .help .box .list .content ul li.li01 .lct img {
- width:85px;
- height:58px;
- float:left;
- }
- .help .box .list .content ul li.li01 .rct {
- width:180px;
- float:left;
- margin-left:5px;
- }
- .help .box .list .content ul li.li01 .rct .title {
- float:left;
- width:180px;
- height:22px;
- overflow:hidden;
- }
- .help .box .list .content ul li.li01 .rct .title a {
- font-size:12px;
- font-weight:bold;
- font-family:宋体;
- color:#666;
- }
- .help .box .list .content ul li.li01 .rct .intro {
- float:left;
- padding-top:5px;
- line-height:150%;
- color:#999;
- text-indent:2em;
- }
- .help .box .list .content ul li.li01 .rct .intro span {
- float:right;
- color:#999
- }
- /*帮助与动态end*/
- /*友情链接start*/
- .link {width:100%;
- margin:0px auto;
- background: #999;
- overflow:hidden
- }
- .link .box {
- width:1020px;
- margin:0px auto;
- line-height:180%;
- padding:15px 40px 10px 60px;
- overflow:hidden
- }
- .link .box ul {
- width:1020px;
- padding-left:50px;
- }
- .link .box ul a.y {
- background: #999;
- display:block;
- color:#fff;
- text-align:left;
- float:left;
- width:100px;
- margin-right:10px;
- margin-bottom:10px;
- }
- .link .box ul a {
- display:block;
- background:#666;
- color:#fff;
- text-align:center;
- float:left;
- width:120px;
- margin-right:10px;
- margin-bottom:10px;
- }
- .link .box ul a:hover {
- background:#34aadc;
- color:#fff;
- }
- /*友情链接end*/
- /*版权声明start*/
- .copy {
- background:#333;
- height:300px;
- padding-top:20px
- }
- .copy .top {
- background:#595959;
- height:29px;
- margin-bottom:30px;
- }
- .copy .top .fanhui {
- width:1020px;
- margin:0px auto;
- height:29px;
- text-align:center;
- }
- .copy .box {
- width:1020px;
- margin:0px auto;
- }
- .copy .box .left {
- float:left;
- width:165px;
- height:150px;
- text-align:center;
- }
- .copy .box .left .weixin {
- float:left;
- margin-left:25px;
- padding-top:8px;
- }
- .copy .box .left .zi {
- float:left;
- width:165px;
- height:41px;
- line-height:41px;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:14px;
- font-weight: normal;
- color:#CCC;
- text-align:center;
- }
- .copy .box .center {
- float:left;
- width:25px;
- margin-left:15px;
- background:url(../image/beijing.png) -2px -992px no-repeat;
- height:150px;
- margin-top:7px;
- }
- .copy .box .right {
- float:left;
- width:730px;
- margin-left:22px;
- height:150px;
- }
- .copy .box .right .biaodan {
- float:left
- }
- .copy .box .dianhua {
- float:left;
- width:800px;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:16px;
- height:30px;
- line-height:30px;
- font-weight: bold;
- color:#ccc;
- padding-top:50px;
- padding-left:225px;
- }
- .copy .box .dianhua .phone {
- float:left;
- }
- .copy .box .dianhua .phone a, .copy .box .dizhi a {
- color:#ccc;
- }
- .copy .box .dianhua .phone a:hover, .copy .box .dizhi a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .copy .box .dizhi {
- float:left;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:14px;
- font-weight: normal;
- color:#ccc;
- padding-left:225px;
- line-height:180%;
- }
- /*版权声明end*/
- /*网站首页end*/
- /*首页鼠标特效start*/
- .scrollFrame {
- width:100%;
- }
- .scrollFrame .cls {
- clear:both;
- }
- .scrollFrame .cont {
- }
- .scrollFrame .hidden {
- display:none;
- }
- .scrollFrame .display {
- display:block;
- }
- .scrollFrame {
- margin:0px auto;
- overflow:hidden;
- }
- .scrollFrame .scrollUl {
- height:56px;
- }
- .scrollFrame .scrollUl li {
- float:left;
- }
- .scrollFrame .scrollUl .textdiv {
- width:65px;
- float:left;
- text-align:center;
- line-height:35px;
- font-size:14px;
- color:#069;
- }
- .scrollFrame .scrollUl .blankdiv {
- width:10px;
- float:left;
- text-align:center;
- line-height:35px;
- }
- .scrollFrame .scrollUl .textcss {
- width:100px;
- float:left;
- text-align:center;
- line-height:35px;
- font-size:16px;
- font-weight:bold;
- color:#222;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- }
- .scrollFrame .bor03 {
- padding:0px;
- margin:0px;
- clear:both;
- border-top:none;
- }
- .scrollFrame .sd01 {
- cursor:pointer;
- width:68px;
- color:#000;
- border-left:1px solid #e5e5e5;
- height:56px;
- font-size:12px;
- line-height:56px;
- margin-top:0px;
- display:block;
- text-align:center;
- }
- .scrollFrame .sd01 a {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- color:#34aadc;
- }
- .scrollFrame .sd01 a:hover {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- }
- .scrollFrame .sd02 {
- cursor:pointer;
- width:68px;
- color:#3D81C0;
- border-left:1px solid #e5e5e5;
- border-bottom:2px solid #e5e5e5;
- background:#fcfcfc;
- height:56px;
- font-size:12px;
- line-height:56px;
- margin-top:0px;
- display:block;
- text-align:center;
- }
- .scrollFrame .sd02 a {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- }
- .scrollFrame .sd02 a:hover {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- }
- .scrollFrame .bor03 .scrollFrame .bor03 .zxym {
- padding:8px;
- height:282px;
- overflow:hidden;
- color:#3D81C0;
- }
- .scrollFrame .bor03 .zxym h2 {
- line-height:32px;
- height:32px;
- text-align:center;
- overflow:hidden;
- margin-bottom:10px;
- }
- .scrollFrame .bor03 .zxym h2 a {
- color:#3D81C0;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:16px;
- }
- .scrollFrame .bor03 .zxym h2 a:hover {
- color:#4e8ed6;
- text-decoration:none;
- }
- .scrollFrame .bor03 .zxym li {
- height:26px;
- line-height:26px;
- background:url(http://www.ifenguo.com/skin/images/artarrow.gif) no-repeat 0px 10px;
- padding-left:10px;
- }
- .scrollFrame .bor03 .zxym a {
- font-size:14px;
- color:#333
- }
- .scrollFrame .bor03 .zxym span {
- float:right;
- color:#999;
- }
- .scrollFrame .bor03 .zxym a:hover {
- color:#4e8ed6;
- text-decoration:none;
- }
- .scrollFrame .scrollUl2 {
- border-bottom:#CC0001 2px solid;
- height:34px;
- }
- .scrollFrame .scrollUl2 li {
- float:left;
- }
- .scrollFrame .scrollUl2 .textdiv {
- width:165px;
- float:left;
- margin-right:100px;
- text-align:left;
- line-height:36px;
- font-size:14px;
- color:#000;
- font-weight:bold;
- }
- .scrollFrame .scrollUl3 {
- height:32px;
- border:#d4d4d4 1px solid;
- }
- .scrollFrame .scrollUl3 {
- height:36px;
- border:#ddd 1px solid;
- border-top:2px solid #999;
- background:#f6f6f6;
- }
- .scrollFrame .scrollUl3 li {
- float:left;
- width:107px;
- cursor:pointer;
- text-align:center;
- height:36px;
- line-height:36px;
- font-size:14px;
- border-top:2px solid #fff;
- }
- .scrollFrame .scrollUl3 li.sd05 {
- color:#003a75;
- height:36px;
- line-height:36px;
- display:block;
- background:#fff;
- border-top:2px solid #06417d;
- margin-top:-1px
- }
- .scrollFrame .scrollUl3 li.sd06 {
- color:#333;
- margin-top:-2px;
- border-top:1px solid #999;
- line-height:41px;
- }
- .scrollFrame .sd03 {
- cursor:pointer;
- width:90px;
- background:#C80000;
- text-align:center;
- color:#FFF;
- height:31px;
- font-size:14px;
- line-height:31px;
- margin-top:3px;
- display:block;
- margin-left:5px;
- }
- .scrollFrame .sd04 {
- cursor:pointer;
- background:#DEDEDE;
- width:90px;
- color:#555;
- margin-left:5px;
- height:31px;
- font-size:14px;
- line-height:31px;
- text-align:center;
- margin-top:3px;
- display:block;
- }
- .scrollFrame .scrollUl4 {
- height:36px;
- border:#ddd 1px solid;
- border-top:2px solid #999;
- background:#f6f6f6;
- }
- .scrollFrame .scrollUl4 li {
- float:left;
- width:107px;
- cursor:pointer;
- text-align:center;
- height:36px;
- line-height:36px;
- font-size:14px;
- border-top:2px solid #fff;
- }
- .scrollFrame .scrollUl4 li.sd05 {
- color:#003a75;
- height:36px;
- line-height:36px;
- display:block;
- background:#fff;
- border-top:2px solid #06417d;
- margin-top:-1px
- }
- .scrollFrame .scrollUl4 li.sd06 {
- color:#333;
- margin-top:-2px;
- border-top:1px solid #999;
- line-height:41px;
- }
- .scrollFrame .bor02 {
- border:#E8E8E8 1px solid;
- border-top:none;
- height:100%;
- overflow:hidden;
- }
- .scrollFrame .bor02 ul {
- padding:8px;
- text-align:left;
- line-height:24px;
- }
- /*首页鼠标特效end*/
- /*网站设计频道开始*/
- /*网站设计顶部大图开始*/
- .wzsjdatu {
- height:300px;
- overflow-x: hidden;
- position: relative;
- }
- .wzsjdatu .wzsjdatuson {
- height:300px;
- position: absolute;
- top: 0;
- left: 50%;
- margin-left: -960px;
- width: 1920px;
- }
- .wzsjdatu img {
- width:100%;
- }
- /*网站设计顶部大图结束*/
- .wzsjxiangxia {
- width:1020px;
- margin:0px auto;
- text-align:center;
- padding:30px;
- }
- /*网站设计标题开始*/
- .biaochibg {
- background-image: url(../image/index_title.png);
- background-repeat: no-repeat;
- background-position: center center;
- margin-top:40px;
- margin-bottom:20px;
- height: 106px;
- text-align:center;
- }
- .biaochibg .title1, .title2, .title3 {
- margin:0px auto;
- line-height:65px;
- }
- .biaochibg .title1 {
- width:212px;
- }
- .biaochibg .title1 h1 {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- color:#333;
- }
- .biaochibg .title1 h1 a {
- color:#34aadc;
- }
- .biaochibg .title1 h1 a:hover {
- color:#333;
- text-decoration:none;
- }
- .biaochibg .title1 h2 {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
-
- color:#34aadc;
- }
- .biaochibg .title1 h2 a {
- color:#34aadc;
- }
- .biaochibg .title1 h2 a:hover {
- color:#333;
- text-decoration:none;
- }
- .biaochibg .en {
- font-family:"Times New Roman", Times, serif;
- font-size:16px;
- color:#333;
- }
- .biaochibg .title2 {
- width:318px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- color:#333;
- }
- .biaochibg .title2 a {
- color:#333;
- }
- .biaochibg .title2 a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .biaochibg .title3 {
- width:318px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- color:#333;
- }
- .biaochibg .title3 a {
- color:#333;
- }
- .biaochibg .title3 a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- /*网站设计标题结束*/
- /*网站设计列表开始*/
- .wzsjliebiao {
- width:1020px;
- margin:0px auto;
- }
- .wzsjliebiao .tt {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:28px;
- text-align:center;
- margin-bottom:20px;
- color:#333;
- }
- .wzsjliebiao .list {
- width:245px;
- height:239px;
- float:left;
- margin:0px 5px;
- background:url(../image/xiewen.png) repeat;
- }
- .wzsjliebiao .list .fuhao {
- background:url(../image/beijing.png) -2px -911px no-repeat;
- width:64px;
- height:64px;
- text-align:center;
- color:#fff;
- font-family: Arial, Helvetica, sans-serif;
- font-size:32px;
- font-weight: bolder;
- margin:15px auto;
- line-height:64px;
- }
- .wzsjliebiao .list .fuhao:hover {
- background:url(../image/beijing.png) -102px -911px no-repeat;
- }
- .wzsjliebiao .list .title {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:18px;
- font-weight:bold;
- text-align:center;
- margin-bottom:20px;
- color:#333;
- }
- .wzsjliebiao .list .content {
- float:left;
- font-family:宋体;
- font-size:12px;
- margin:0px 30px;
- line-height:180%;
- color:000;
- }
- /*滑动门开始*/
- .huadong {
- width:1020px;
- margin:0px auto;
- padding-top:20px;
- }
- .huadong .imgbg {
- background:url(../image/beijing.png) -100px -1001px no-repeat;
- width:743px;
- height:194px;
- margin:auto;
- }
- .huadong .imgbg img {
- width:450px;
- height:194px;
- padding-left:145px;
- }
- .huadong .title {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:18px;
- text-align:center;
- height:60px;
- line-height:60px;
- color:#333;
- }
- .huadong .content {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:14px;
- line-height:180%;
- padding-left:300px;
- }
- /*网站设计列表结束*/
- /*设计流程开始*/
- .liucheng {
- width:1020px;
- margin:0px auto;
- text-align:center;
- }
- .liucheng .title {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- font-weight:bold;
- color:#333;
- line-height:60px;
- }
- .liucheng .en {
- font-family:"Times New Roman", Times, serif;
- font-size:18px;
- color:#333;
- }
- .liucheng .tu {
- padding:20px;
- }
- .liucheng .tu img {
- width:930px;
- height:111px;
- }
- /*设计流程结束*/
- /*配套产品开始*/
- .peitao {
- width:1020px;
- margin:0px auto;
- }
- .peitao .list {
- float:left;
- padding-left:12px;
- width:175px;
- margin:0px 8px;
- }
- .peitao .list .title {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- text-align:center;
- }
- .peitao .list .title a {
- color:#333;
- }
- .peitao .list .title a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .peitao .list .content {
- float:left;
- font-size:12px;
- line-height:180%;
- padding-left:30px;
- }
- .peitao .list .tubiao1, .tubiao2, .tubiao3, .tubiao4, .tubiao5 {
- width:110px;
- height:110px;
- margin:0 auto;
- text-align:center;
- margin:30px auto;
- }
- .peitao .list .tubiao1 {
- background:url(../image/f_1.png) no-repeat;
- }
- .peitao .list .tubiao2 {
- background:url(../image/f_2.png) no-repeat;
- }
- .peitao .list .tubiao3 {
- background:url(../image/f_3.png) no-repeat;
- }
- .peitao .list .tubiao4 {
- background:url(../image/f_4.png) no-repeat;
- }
- .peitao .list .tubiao5 {
- background:url(../image/f_5.png) no-repeat;
- }
- .peitao .line {
- float:left;
- width:1px;
- background:#ccc;
- height:230px;
- }
- /*配套产品结束*/
- /*网站设计频道结束*/
- /*解决方案频道开始*/
- /*解决方案顶部大图开始*/
- .jjfadatu {
- background:url(../image/top_bg2.png) repeat;
- height:294px;
- }
- .jjfadatu .tu {
- width:1020px;
- height:294px;
- margin:0px auto;
- }
- /*解决方案顶部大图结束*/
- /*解决方案列表start*/
- .jjfa {
- width:1020px;
- margin:0px auto;
- }
- .jjfa .list {
- float:left;
- width:338px;
- margin-top:40px;
- text-align:center;
- }
- .jjfa .list .title {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- height:50px;
- line-height:50px;
- }
- .jjfa .list .title a {
- color:#333;
- }
- .jjfa .list .title a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .jjfa .list .tbj1, .tbj2, .tbj3, .tbj4, .tbj5, .tbj6 {
- width:120px;
- height:120px;
- margin:0 auto;
- -webkit-transition: -webkit-transform 1s ease-out;
- -moz-transition: -moz-transform 1s ease-out;
- -ms-transition: -ms-transform 1s ease-out;
- -o-transition: -o-transform 1s ease-out;
- transition: transform 1s ease-out;
- }
- .jjfa .list .tbj1:hover, .tbj2:hover, .tbj3:hover, .tbj4:hover, .tbj5:hover, .tbj6:hover {
- width:120px;
- height:120px;
- margin:0 auto;
- -webkit-transform: scale(1.1) rotate(360deg); /* safari and chrome */
- -moz-transform:scale(1.1) rotate(360deg); /* firefox */
- -o-transform:scale(1.1) rotate(360deg); /* opera */
- -ms-transform:scale(1.1) rotate(360deg); /* ie9 */
- transform:scale(1.1) rotate(360deg);
- }
- .jjfa .list .jieshao {
- float:left;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:12px;
- line-height:180%;
- margin-left:50px;
- text-align:left;
- }
- .jjfa .line {
- float:left;
- width:1px;
- background:#ccc;
- height:400px;
- }
- .jjfaxian {
- background:#ccc;
- height:1px;
- margin:0px auto;
- }
- /*解决方案列表end*/
- /*解决方案频道结束*/
- /*案例展示频道开始*/
- /*案例展示列表start*/
- .anlipd {
- background:url(../image/anli_bg.png) repeat;
- }
- /*案例展示标题start*/
- .anlipd .anlipdtt {
- height:176px;
- text-align:center;
- }
- .anlipd .anlipdtt .xiangxia {
- margin:0px auto;
- padding-top:15px;
- }
- .anlipd .anlipdtt .title {
- margin:0px auto;
- width:245px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- font-weight: normal;
- line-height:60px;
- }
- .anlipd .anlipdtt .title a {
- color:#fff;
- }
- .anlipd .anlipdtt .title a:hover {
- color:#ccc;
- text-decoration:none;
- }
- .anlipd .anlipdtt .en {
- font-family:"Times New Roman", Times, serif;
- font-size:18px;
- color:#CCC;
- }
- /*案例展示标题end*/
- .anlipd .list {
- width:1020px;
- margin:0px auto;
- height:100%;
- }
- .anlipd .list ul {
- padding:20px 8px 0px 50px;
- }
- .anlipd .list ul li {
- float:left;
- text-align:center;
- width:153px;
- height:190px;
- overflow:hidden;
- background:#fff;
- margin:20px 30px 10px 0px;
- padding-top:15px;
- }
- .anlipd .list ul li:hover {
- background:#f2f2f2;
- }
- .anlipd .list ul li .shuxing {
- float:left;
- width:100px;
- text-align:left;
- padding-left:15px;
- }
- .anlipd .list ul li img {
- width:119px;
- height:80px;
- padding:2px;
- border:#D4D4D4 1px solid;
- margin-bottom:8px;
- -webkit-transition:0.5s ease-out;
- -moz-transition:0.5s ease-out;
- -o-transition:0.5s ease-out;
- -ms-transition:0.5s ease-out;
- transition:0.5s ease-out;
- }
- .anlipd .list ul li img:hover {
- border:#f2f2f2 1px solid;
- -webkit-transform: scale(1.4); /* safari and chrome */
- -moz-transform: scale(1.4); /* firefox */
- -o-transform: scale(1.4); /* opera */
- -ms-transform: scale(1.4); /* ie9 */
- transform: scale(1.4);
- }
- .anlipd .list a {
- }
- .anlipd .list a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- /*案例展示列表end*/
- /*案例展示内容页开始*/
- .anlinr {
- background:url(../image/anli_bg.png) repeat;
- }
- .anlinr .anlinrtt {
- height:176px;
- text-align:center;
- }
- .anlinr .anlinrtt .xiangxia {
- margin:0px auto;
- padding-top:15px;
- }
- .anlinr .anlinrtt .title {
- margin:0px auto;
- width:960px;
- }
- .anlinr .anlinrtt .title h1 {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- font-weight: normal;
- line-height:60px;
- color:#fff;
- }
- .anlinr .anlinrtt .info {
- height:30px;
- line-height:30px;
- text-align:center;
- color:#CCC;
- }
- .anlinr .anlinrtt .info a {
- color:#CCC;
- }
- .anlinr .anlinrtt .info span {
- padding:0px 5px;
- }
- .anlinr .anlinrtt .info span a {
- color:#CCC;
- }
- .anlinr .jianjie {
- width:1020px;
- margin:0px auto;
- background:#000;
- }
- .anlinr .jianjie .shuxing {
- }
- .anlinr .jianjie .shuxing .left {
- float:left;
- width:300px;
- margin:15px 0px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:14px;
- line-height:180%;
- color:#ccc;
- }
- .anlinr .jianjie .shuxing .right {
- float:right;
- color:#ccc;
- margin-top:20px;
- }
- .anlinr .jianjie .shuxing .right a {
- color:#ccc;
- }
- .anlinr .jianjie .shuxing .right a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .anlinr .jianjie .jieshao {
- float:left;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:12px;
- line-height:180%;
- color:#ccc;
- margin-bottom:20px;
- }
- .anlinr .neirong {
- width:1020px;
- margin:0px auto;
- padding-bottom:30px;
- }
- .anlinr .neirong .articlecontent {
- padding:15px;
- height:100%;
- overflow:hidden;
- border:1px solid #dcdcdc;
- background:#fdfdfd;
- }
- .anlinr .neirong .articlecontent h3 {
- line-height:35px;
- text-align:center;
- font-size:22px;
- color:#000;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- }
- .anlinr .neirong .articlecontent .newscontent {
- font-size:12px;
- line-height:180%;
- }
- .anlinr .neirong .articlecontent .Author {
- text-align:right;
- font-size:14px;
- color:#000;
- }
- .anlinr .neirong .articlecontent .sharebox {
- text-align:right;
- height:26px;
- line-height:30px;
- background:#fdfdfd;
- padding-top:7px;
- }
- .anlinr .neirong .articlecontent .moodbox {
- }
- .anlinr .neirong .articlecontent .articlekey {
- line-height:25px;
- }
- .anlinr .neirong .articlecontent .articlekey a {
- color:#ff0000;
- }
- .anlinr .neirong .articlecontent .articlekey a:hover {
- color:red;
- text-decoration:none;
- }
- .anlinr .neirong .articlecontent .articlebook {
- }
- .anlinr .neirong .articlecontent .articlebook h2 {
- line-height:25px;
- font-size:12px;
- font-weight:normal;
- }
- .anlinr .neirong .articlecontent .articlebook h2 a:hover {
- color:red;
- text-decoration:none;
- }
- .anlinr .neirong .xgxw {
- border-top:#dcdcdc 1px dashed;
- }
- .anlinr .neirong .xgxw .title {
- height:35px;
- line-height:35px;
- font-size:14px;
- color:#333;
- font-weight:bold;
- }
- .anlinr .neirong .xgxw .xgnewsbox {
- padding:8px;
- }
- .anlinr .neirong .xgxw .xgnewsbox ul {
- }
- .anlinr .neirong .xgxw .xgnewsbox li {
- height:28px;
- line-height:28px;
- background:url(http://www.ifenguo.com/skin/images/artarrow.gif) no-repeat 0px 12px;
- padding-left:10px;
- }
- .anlinr .neirong .xgxw .xgnewsbox a {
- font-size:14px;
- color:#000;
- }
- .anlinr .neirong .xgxw .xgnewsbox a:hover {
- color:red;
- text-decoration:none;
- }
- .anlinr .neirong .xgxw .xgnewsbox span {
- padding-left:10px;
- color:#999;
- }
- .anlinr .neirong .commentbox {
- height:100%;
- padding-bottom:10px;
- overflow:hidden;
- border:1px solid #dcdcdc;
- background:#fdfdfd;
- min-height:200px;
- }
- .anlinr .neirong .commentbox .title {
- height:40px;
- line-height:40px;
- font-size:14px;
- padding-left:15px;
- font-weight:bold;
- color:#333;
- background:#f1f1f1;
- }
- .anlinr .neirong .commentbox .title h3 {
- }
- .anlinr .neirong .commentbox .comment {
- padding:10px;
- font-size:12px;
- }
- /*案例展示内容页结束*/
- /*案例展示频道结束*/
- /*关于我们频道开始*/
- /*关于我们顶部大图开始*/
- .gywmdatu {
- background:#CBCBCB;
- height:294px;
- background:url(http://www.ifenguo.com/skin/images/datubg.png) repeat-x;
- }
- .gywmdatu .tu {
- width:1020px;
- height:294px;
- margin:0px auto;
- }
- /*关于我们顶部大图结束*/
- /*关于我们列表start*/
- .gywmtt {
- height:84px;
- text-align:center;
- }
- .gywmtt .title1 {
- margin:0px auto;
- line-height:60px;
- color:#34aadc;
- width:212px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:36px;
- }
- .gywmtt .en {
- font-family:"Times New Roman", Times, serif;
- font-size:16px;
- color:#333;
- }
- .gywm {
- width:1020px;
- margin:0px auto;
- }
- .gywm .chatu {
- float:left;
- margin: 20px 20px 20px 150px;
- }
- .gywm .jieshao {
- float:left;
- width:833px;
- margin-left:60px;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:16px;
- color:#333;
- line-height:180%;
- text-indent:2em;
- }
- .linian {
- width:1020px;
- margin:0px auto;
- text-align:center;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- color:#333;
- }
- .linian .tt1 {
- font-size:32px;
- height:50px;
- line-height:180%;
- font-weight:bold;
- }
- .linian .tt2 {
- font-size:18px;
- height:40px;
- line-height:180%;
- }
- .youshibg1 {
- background:url(../image/xiewen.png) repeat;
- height:125px;
- margin-top:1px;
- margin-bottom:1px;
- }
- .youshibg1 .content, .youshibg2 .content {
- width:1020px;
- margin:0px auto;
- padding-top:28px;
- padding-left:100px;
- }
- .youshibg1 .content .tbbg, .youshibg2 .content .tbbg {
- float:left;
- background:url(../image/beijing-2.png) -1px -336px no-repeat;
- width:72px;
- height:72px;line-height:72px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:40px;
- font-weight:bold;
- color:#ccc;
- text-align:center;
- }
- .youshibg1 .content .tt, .youshibg2 .content .tt {
- float:left;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:30px;
- font-weight:bold;
- color:#333;
- margin-left:15px;
- margin-top:-13px;
- }
- .youshibg1 .content .tten, .youshibg2 .content .tten {
- float:left;
- font-family:"Times New Roman", Times, serif;
- font-size:24px;
- color:#333;
- margin-left:15px;
- margin-top:-5px;
- }
- .youshibg1 .content .jieshao, .youshibg2 .content .jieshao {
- float:left;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:16px;
- color:#333;
- margin-left:85px;
- margin-top:-35px;
- }
- .youshibg2 {
- background:#DEDEDE;
- border-top:1px solid #ccc;
- height:125px;
- }
- /*关于我们列表end*/
- /*关于我们频道结束*/
- /*联系我们频道开始*/
- .lxwm {
- width:1020px;
- margin:0px auto;
- padding-top:40px;
- }
- .lxwm .left {
- float:left;
- width:400px;
- padding-left:90px;
- }
- .lxwm .right {
- float:left;
- width:470px;
- margin-left:20px;
- margin-top:10px;
- }
- .lxwm .right .list {
- float:left;
- width:470px;
- height:60px;
- }
- .lxwm .right .list .tubiao {
- float:left;
- width:55px;
- }
- .lxwm .right .list .hanzi {
- float:left;
- margin-left:12px;
- width:75px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:22px;
- color:#333;
- font-weight:bold;
- }
- .lxwm .right .list .en {
- float:left;
- width:300px;
- font-family:"Times New Roman", Times, serif;
- font-size:24px;
- color:#333;
- }
- .lxwm .right .list .en a {
- color:#333;
- }
- .lxwm .right .list .en a:hover {
- color:#34aadc;
- text-decoration:none;
- }
- .lxwm .right .dizhi {
- float:left;
- width:470px;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:20px;
- color:#333;
- line-height:180%;
- padding-left:10px;
- }
- /*联系我们频道结束*/
- /*share_start*/
- #share {
- position:fixed;
- _position:absolute;
- _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight)-34+"px");
- bottom:205px;
- left:95%;
- width:34px;
- zoom:1;
- }
- #share a {
- background-image:url(../image/share.png);
- background-repeat:no-repeat;
- display:block;
- width:34px;
- height:34px;
- margin-bottom:2px;
- overflow:hidden;
- text-indent:-999px;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- #share a {
- }
- #share .sina {
- background-position:0 0;
- position:absolute;
- bottom:36px;
- }
- #share a.sina:hover {
- background-position:-34px 0;
- }
- #share .tencent {
- background-position:0 -34px;
- position:absolute;
- bottom:0px;
- }
- #share a.tencent:hover {
- background-position:-34px -34px;
- }
- #share a#totop {
- background-position:0 -116px;
- position:absolute;
- bottom:72px;
- cursor:pointer;
- }
- #share a#totop:hover {
- background-position:-34px -116px;
- }
- /*share_end*/
- /*新闻类栏目页开始*/
- #lm {
- width:1020px;
- margin:0 auto;
- overflow:hidden;
- }
- #lmleft {
- float:left;
- width:200px;
- border:1px solid #DCDCDC;
- }
- #lmleft .title {
- width:198px;
- height:45px;
- margin:auto;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:24px;
- font-weight:bold;
- color:#333;
- text-align:center;
- padding-top:20px;
- }
- #lmleft .dh {
- width:170px;
- margin-left:15px;
- }
- #lmleft .dh ul {
- width:120px;
- }
- #lmleft .dh ul li {
- width:120px;
- background:url(../image/beijing.png) -22px -439px no-repeat;
- padding-left:50px;
- height:30px;
- line-height:30px;
- border:1px dotted #ccc;
- margin-top:15px;
- }
- #lmleft .dh ul li a {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:14px;
- display:block;
- }
- #lmleft .dh ul li a hover {
- border:1px dotted #34aadc;
- }
- #lmleft .dh ul li.curr {
- width:120px;
- background:url(../image/beijing.png) -22px -490px no-repeat;
- display:block;
- }
- #lmleft .dh ul li.curr a {
- color:#333;
- font-weight:bold;
- display:block;
- }
- #lmleft .dh ul li.curr a:hover {
- color:#34aadc;
- }
- #lmleft .leftbg {
- width:153px;
- height:222px;
- background:url(http://www.ifenguo.com/skin/images/nr-leftbg.jpg) no-repeat;
- margin:0px auto;
- }
- #lmright {
- float:right;
- width:764px;
- border:1px solid #DCDCDC;
- }
- #lmright .box {
- width:720px;
- margin:20px auto;
- }
- #lmright #fenye a.curr {
- background:#a00;
- border:1px solid #a00
- }
- #lmright .box .box01 {
- }
- #lmright .box .box02 {
- margin-top:0px;
- }
- #lmright .box .box02 h1 {
- font-size:22px;
- font-weight:normal;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- height:47px;
- line-height:35px;
- border-bottom:1px solid #e5e5e5;
- padding:0px 1px;
- margin-bottom:15px;
- }
- #lmright .box .box02 h1 span {
- float:right;
- font-size:12px;
- color:#aaa;
- font-family:Arial
- }
- #lmright .box .box02 h1 span a {
- color:#999;
- padding:0px 5px
- }
- #lmright .box .box02 ul li.li01 .title a {
- font-size:18px;
- font-weight:bold;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- }
- #lmright .box .box02 ul li.li01 .lct {
- width:150px;
- float:left;
- margin-left:20px;
- }
- #lmright .box .box02 ul li.li01 .lct img {
- width:180px;
- height:125px
- }
- #lmright .box .box02 ul li.li01 .rct {
- width:460px;
- float:right;
- margin-left:10px;
- margin-right:10px;
- }
- #lmright .box .box02 ul li.li01 .rct .intro {
- padding-top:10px;
- line-height:22px;
- color:#999;
- text-indent:2em;
- margin-right:10px;
- }
- #lmright .box .box02 ul li.li01 .rct .biaoqian span {
- float:right;
- height:30px;
- line-height:30px;
- color:#999;
- background:url(../image/plnum.png) no-repeat 0 50%;
- padding-left:18px;
- color:#999
- }
- #lmright .box .box02 ul li {
- padding:20px 1px;
- border:1px dashed #ddd;
- height:130px;
- margin-bottom:15px;
- }
- #lmright .box .box02 ul li:hover {
- background:#fafafa;
- }
- #lmright .box .box02 ul li.li02 .title a {
- font-size:16px;
- font-weight:normal;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- margin-left:15px;
- }
- #lmright .box .box02 ul li.li02 .intro {
- padding:15px;
- line-height:22px;
- color:#999;
- text-indent:2em
- }
- #lmright .box .box02 ul li.li02 .biaoqian span {
- float:right;
- color:#999;
- background:url(../image/plnum.png) no-repeat 0 50%;
- padding-left:18px;
- color:#999;
- margin-right:10px;
- }
- /*新闻类栏目页结束*/
- /*新闻类内容页开始*/
- #nr {
- width:1020px;
- margin:0 auto;
- border:1px solid #DCDCDC;
- overflow:hidden;
- }
- #nrleft {
- float:left;
- width:776px;
- border-right:1px solid #DCDCDC;
- }
- #nrleft .box {
- width:700px;
- margin:20px auto;
- }
- #nrleft .box h1 {
- font-size:24px;
- text-align:center;
- line-height:180%;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-weight:normal;
- color:#333;
- margin-top:10px
- }
- #nrleft .box .xian {
- width:680px;
- height:1px;
- margin:0px auto;
- background:#DCDCDC;
- }
- #nrleft .box .dp {
- width:100%;
- text-align:center;
- line-height:30px;
- color:#666;
- font-family:"Courier New", Courier, monospace;
- }
- #nrleft .box .dp font {
- font-size:12px;
- color:#f00
- }
- #nrleft .box .dp span {
- padding-left:10px
- }
- #nrleft .box .ct {
- line-height:180%;
- font-size:14px;
- padding-top:15px;
- color:#666
- }
- #nrleft .box .ct .ct_box img {
- text-align:center;
- margin:2px;
- max-width:690px
- }
- #nrleft .box .commenttips {
- width:555px;
- border:1px solid #dee8ee;
- border-top:0px;
- border-right:1px solid #fff;
- float:left;
- padding-left:10px;
- line-height:28px;
- height:28px;
- background:url(../image/13.gif) repeat-x;
- font-size:12px;
- color:#666
- }
- #nrright {
- float:right;
- width:200px;
- }
- #nrright .title {
- width:198px;
- height:45px;
- margin:auto;
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:24px;
- font-weight:bold;
- color:#333;
- text-align:center;
- padding-top:20px;
- }
- #nrright .dh {
- width:170px;
- margin-left:15px;
- }
- #nrright .dh ul {
- width:120px;
- }
- #nrright .dh ul li {
- width:120px;
- padding-left:50px;
- height:30px;
- line-height:30px;
- border:1px dotted #ccc;
- margin-top:15px;
- }
- #nrright .dh ul li a {
- font-family:"\5FAE\8F6F\96C5\9ED1", \9ED1\4F53;
- font-size:14px;
- display:block;
- }
- #nrright .dh ul li a hover {
- border:1px dotted #34aadc;
- }
- #nrright .dh ul li.curr {
- width:120px;
- background:url(../image/beijing.png) -22px -490px no-repeat;
- display:block;
- }
- #nrright .dh ul li.curr a {
- color:#333;
- font-weight:bold;
- display:block;
- }
- #nrright .dh ul li.curr a:hover {
- color:#34aadc;
- }
- #nrright .zuixin {
- float:left;
- width:190px;
- }
- #nrright .zuixin ul {
- float:left;
- width:190px;
- padding-left:5px;
- }
- #nrright .zuixin ul li {
- float:left;
- margin-bottom:10px;
- }
- #nrright .zuixin ul li.li01 .lct {
- float:left;
- margin-top:10px;
- }
- #nrright .zuixin ul li.li01 .rct {
- }
- #nrright .zuixin ul li.li01 .rct .title a {
- font-size:12px;
- font-weight:bold;
- color:#666;
- }
- #nrright .zuixin ul li.li01 .intro {
- float:left;
- width:180px;
- line-height:150%;
- color:#999;
- }
- #nrright .zuixin ul li.li01 .intro span {
- float:right;
- color:#999
- }
- #nrright .leftbg {
- width:153px;
- height:222px;
- background:url(http://www.ifenguo.com/skin/images/nr-leftbg.jpg) no-repeat;
- margin:0px auto;
- }
- /*新闻类内容页结束*/
- /*酷站欣赏栏目页开始*/
- .lmkuzhan {
- width:1020px;
- margin:0 auto;
- border:1px solid #DCDCDC;
- height:auto;
- overflow:hidden;
- }
- .lmkuzhan .box {
- width:1020px;
- margin:auto;
- }
- .lmkuzhan .box h1 {
- font-size:24px;
- line-height:180%;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-weight:normal;
- color:#333;
- margin:20px;
- }
- .lmkuzhan .box ul {
- width:960px;
- margin:0px 20px;
- }
- .lmkuzhan .box ul li {
- float:left;
- width:220px;
- height:250px;
- margin-right:20px;
- background:#E9E9E9;
- margin-bottom:20px;
- text-align:center;
- }
- .lmkuzhan .box ul li:hover {
- background:#E1E1E1;
- }
- .lmkuzhan .box ul li img {
- width:220px;
- height:152px;
- }
- .lmkuzhan .box ul li .mingcheng {
- float:left;
- width:220px;
- margin:2px 0px;
- text-align:center;
- }
- .lmkuzhan .box ul li .hit {
- float:left;
- width:220px;
- margin:3px 0px;
- }
- .lmkuzhan .box ul li .jietu {
- float:left;
- width:120px;
- height:23px;
- margin-left:40px;
- background:#333;
- text-align:center;
- }
- .lmkuzhan .box ul li .jietu a {
- color:#CCCCCC;
- }
- .lmkuzhan .box ul li .jietu a:hover {
- color:#fff;
- }
- /*酷站欣赏栏目页结束*/
- /*酷站欣赏内容页开始*/
- .nrkuzhan {
- width:1020px;
- margin:0 auto;
- border:1px solid #DCDCDC;
- height:auto;
- overflow:hidden;
- }
- .nrkuzhan .box {
- width:1020px;
- margin:auto;
- }
- .nrkuzhan .box h1 {
- font-size:28px;
- text-align:center;
- line-height:180%;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-weight:bold;
- color:#333;
- margin-top:10px
- }
- .nrkuzhan .box .xian {
- width:950px;
- height:1px;
- margin:0px auto;
- background:#ccc;
- }
- .nrkuzhan .box .dp {
- width:100%;
- text-align:center;
- line-height:30px;
- color:#666;
- font-family:"Courier New", Courier, monospace;
- }
- .nrkuzhan .box .dp font {
- font-size:12px;
- color:#f00
- }
- .nrkuzhan .box .dp span {
- padding-left:10px
- }
- .nrkuzhan .box .fangwen {
- width:152px;
- height:34px;
- border:1px solid #333;
- margin:20px auto;
- text-align:center;
- }
- .nrkuzhan .box .fangwen a {
- display:block;
- font-size:20px;
- line-height:34px;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-weight:bold;
- color:#333;
- }
- .nrkuzhan .box .fangwen a:hover {
- display:block;
- width:152px;
- height:34px;
- line-height:34px;
- background:#333;
- color:#ccc;
- }
- .nrkuzhan .box .jianjie {
- width:920px;
- margin:auto;
- border:1px dashed #ccc;
- padding:15px;
- font-family:"\5FAE\8F6F\96C5\9ED1", 宋体;
- font-size:14px;
- }
- .nrkuzhan .box .ct {
- line-height:180%;
- font-size:14px;
- color:#666
- }
- .nrkuzhan .box .ct .ct_box img {
- text-align:center;
- margin:2px;
- }
- .nrkuzhan .box .ct .ct_box .qita {
- float:left;
- margin-left:30px;
- }
- .nrkuzhan .box .ct .ct_box .pk {
- float:left;
- width:900px;
- margin-left:180px;
- }
- .nrkuzhan .box .commenttips {
- width:555px;
- border:1px solid #dee8ee;
- border-top:0px;
- border-right:1px solid #fff;
- float:left;
- padding-left:10px;
- line-height:28px;
- height:28px;
- background:url(../image/13.gif) repeat-x;
- font-size:12px;
- color:#666
- }
- .nrkuzhan .box .pllist {
- float:left;
- width:900px;
- margin-left:370px;
- }
- .nrkuzhan .box .ct_pl {
- float:left;
- width:900px;
- margin-left:370px;
- }
- /*酷站欣赏内容页结束*/
- /*通用评论*/
- .ct_pl {
- width:685px;
- margin-top:20px;
- padding-top:15px;
- font-size:12px;
- margin-left:50px;
- overflow:hidden;
- color:#666;
- }
- .ct_pl span.rightcmtnum a {
- color:#666;
- background:url(../image/plnum.png) no-repeat 0 50%;
- padding-left:17px
- }
- .ct_pl h4 {
- background:url(../image/10.gif) no-repeat;
- padding-left:20px;
- height:25px
- }
- .ct_pl .username {
- width:130px;
- border:1px solid #dee8ee;
- border-top:1px solid #cad4d9;
- border-left:1px solid #cad4d9;
- background:#fff url(../image/11.gif) repeat-x;
- height:19px;
- line-height:19px;
- }
- .ct_pl .password {
- border:1px solid #ccc;
- border-top:1px solid #ccc;
- border-left:1px solid #cad4d9;
- background:#fff url(../image/11.gif) repeat-x;
- height:19px;
- line-height:19px;
- width:130px;
- }
- .ct_pl textarea {
- color:#999;
- background:#fff url(../image/11.gif) repeat-x;
- font-size:12px;
- padding:8px 5px;
- border:1px solid #ccc;
- border-top:1px solid #cad4d9;
- border-left:1px solid #cad4d9;
- margin-top:10px;
- height:80px;
- float:left;
- }
- .ct_pl #SubmitComment {
- background:url(../image/13.gif) repeat-x;
- line-height:29px;
- width:98px;
- height:29px;
- font-size:12px;
- color:#666;
- float:left;
- border:1px solid #ccc;
- border-top:0px;
- cursor:pointer
- }
- .ct_pl .commenttips {
- width:573px;
- border:1px solid #ccc;
- border-top:0px;
- border-right:1px solid #fff;
- float:left;
- padding-left:10px;
- line-height:28px;
- height:28px;
- background:url(../image/13.gif) repeat-x;
- font-size:12px;
- color:#666
- }
- .ct_pl2 {
- width:685px;
- margin-top:20px;
- padding-top:15px;
- font-size:12px;
- margin-left:150px;
- overflow:hidden;
- color:#666;
- }
- .ct_pl2 span.rightcmtnum a {
- color:#666;
- background:url(../image/plnum.png) no-repeat 0 50%;
- padding-left:17px
- }
- .ct_pl2 h4 {
- background:url(../image/10.gif) no-repeat;
- padding-left:20px;
- height:25px
- }
- .ct_pl2 .username {
- width:130px;
- border:1px solid #dee8ee;
- border-top:1px solid #cad4d9;
- border-left:1px solid #cad4d9;
- background:#fff url(../image/11.gif) repeat-x;
- height:19px;
- line-height:19px;
- }
- .ct_pl2 .password {
- border:1px solid #ccc;
- border-top:1px solid #ccc;
- border-left:1px solid #cad4d9;
- background:#fff url(../image/11.gif) repeat-x;
- height:19px;
- line-height:19px;
- width:130px;
- }
- .ct_pl2 textarea {
- color:#999;
- background:#fff url(../image/11.gif) repeat-x;
- font-size:12px;
- padding:8px 5px;
- border:1px solid #ccc;
- border-top:1px solid #cad4d9;
- border-left:1px solid #cad4d9;
- margin-top:10px;
- height:80px;
- float:left;
- }
- .ct_pl2 #SubmitComment {
- background:url(../image/13.gif) repeat-x;
- line-height:29px;
- width:98px;
- height:29px;
- font-size:12px;
- color:#666;
- float:left;
- border:1px solid #ccc;
- border-top:0px;
- cursor:pointer
- }
- .ct_pl2 .commenttips {
- width:573px;
- border:1px solid #ccc;
- border-top:0px;
- border-right:1px solid #fff;
- float:left;
- padding-left:10px;
- line-height:28px;
- height:28px;
- background:url(../image/13.gif) repeat-x;
- font-size:12px;
- color:#666
- }
- .ct_mood {
- padding:10px;
- border-top:1px solid #ddd;
- }
- .pllist {
- color:#666;
- }
- .pllist table tr td {
- padding:12px 0px;
- position:relative;
- line-height:20px;
- color:#999
- }
- .pllist table tr td .content {
- padding-top:5px;
- line-height:19px;
- color:#666;
- font-size:12px;
- }
- .pllist table tr td img.userface {
- width:67px;
- height:67px;
- margin-right:12px;
- margin-top:3px
- }
- .pllist table tr td .userbox {
- width:67px;
- height:67px;
- background:url(../image/userbox.png) no-repeat;
- margin-top:3px;
- position:absolute;
- }
- .ct_mood2 {
- padding:10px;
- border-top:1px solid #ddd;
- }
- .pllist2 {
- color:#333;
- width:940px;
- margin-left:20px;
- }
- .pllist2 table tr td {
- padding:12px 0px;
- position:relative;
- line-height:20px;
- color:#999
- }
- .pllist2 table tr td .content {
- padding-top:5px;
- line-height:19px;
- color:#666;
- font-size:12px;
- }
- .pllist2 table tr td img.userface {
- width:67px;
- height:67px;
- margin-right:12px;
- margin-top:3px
- }
- .pllist2 table tr td .userbox {
- width:67px;
- height:67px;
- background:url(../image/userbox.png) no-repeat;
- margin-top:3px;
- position:absolute;
- }
- /*digg排行*/
- .digg {
- width:1020px;
- margin:0 auto;
- margin-top:10px
- }
- .digg .digg_l {
- width:280px;
- float:left;
- background:#e7f5fe;
- }
- .digg .digg_l .left01 {
- padding:10px 15px 0px 15px;
- height:253px;
- overflow:hidden
- }
- .digg .digg_l .left01 h4 {
- font-size:16px;
- height:40px;
- line-height:40px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- color:#333
- }
- .digg .digg_l .left01 ul {
- padding-top:10px;
- }
- .digg .digg_l .left01 ul li.li01 {
- height:87px;
- overflow:hidden
- }
- .digg .digg_l .left01 ul li.li01 a.title {
- font-size:14px;
- font-weight:bold;
- display:block;
- height:26px;
- }
- .digg .digg_l .left01 ul li.li01 img {
- width:55px;
- height:45px;
- margin-top:3px;
- }
- .digg .digg_l .left01 ul li.li01 .r_ct {
- width:185px;
- float:right;
- color:#999;
- padding-top:5px;
- line-height:20px;
- }
- .digg .digg_l .left01 ul li.li02 {
- height:28px;
- line-height:26px;
- padding-left:2px
- }
- .digg .digg_l .left01 ul li.li02 a {
- color:#494949;
- }
- .digg .digg_l .left01 ul li.li02 a:hover {
- color:#a00
- }
- .digg .digg_l .left02 {
- background:#e7f5fe;
- }
- .digg .digg_l .left02 h4 {
- font-size:16px;
- height:40px;
- padding-left:15px;
- line-height:40px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- color:#333
- }
- .digg .digg_l .left02 ul {
- padding:0px 15px
- }
- .digg .digg_l .left02 ul li {
- height:38px;
- line-height:38px;
- border-bottom:1px dashed #cbdbe4
- }
- .digg .digg_l .left02 ul li a {
- font-size:12px;
- width:200px;
- height:38px;
- overflow:hidden;
- float:left
- }
- .digg .digg_l .left02 ul li span {
- float:right;
- color:#999;
- font-size:11px;
- }
- .digg .digg_l .left02 ul li em {
- width:14px;
- height:14px;
- font-size:11px;
- float:left;
- background:#aaa;
- line-height:14px;
- margin:12px 8px 0px 2px;
- color:#fff;
- text-align:center;
- font-style:normal;
- }
- .digg .digg_l .left02 ul li em.em01 {
- background:#b80000
- }
- .digg .digg_l .left03 {
- background:#e7f5fe;
- padding-bottom:5px
- }
- .digg .digg_l .left03 h4 {
- font-size:16px;
- height:40px;
- padding-left:15px;
- line-height:40px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- color:#333
- }
- .digg .digg_l .left03 ul li {
- width:105px;
- float:left;
- height:26px;
- line-height:26px;
- font-size:14px;
- padding-left:15px;
- }
- .digg .digg_l .left03 ul li a {
- color:#555;
- text-decoration:underline
- }
- .digg .digg_l .left03 ul li.curr a {
- color:#0275ce;
- }
- .digg .digg_r {
- width:685px;
- float:right
- }
- .digg .digg_r h4 {
- height:35px;
- line-height:35px;
- padding-left:10px;
- font-size:16px;
- color:#333;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .digg .digg_r .tit {
- height:35px;
- border-bottom:2px solid #ddd;
- line-height:35px;
- margin:10px 0px 20px 0px
- }
- .digg .digg_r .tit a {
- float:left;
- padding:0px 10px;
- margin-right:20px;
- color:#333;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- font-size:16px;
- }
- .digg .digg_r .tit a.curr {
- background:#fff;
- font-weight:bold;
- color:#333;
- border-bottom:2px solid #0087e4;
- color:#0087e4;
- }
- .digg .digg_r ul {
- line-height:22px;
- color:#666
- }
- .digg .digg_r ul a.link {
- font-size:15px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- font-weight:bold;
- color:#027ed3
- }
- .digg .digg_r ul a {
- color:#027ed3
- }
- .digg .digg_r table tr td {
- padding:5px 0px
- }
- /*digg排行结束*/
- /*评论页*/
- .digg .plbox {
- width:1020px;
- float:left
- }
- .digg .plbox h4 {
- line-height:60px;
- height:40px;
- padding-left:20px;
- font-size:16px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .digg .plbox .box01 {
- width:960px;
- border-top:1px solid #ddd;
- margin-top:20px;
- padding-top:15px;
- padding-left:10px;
- overflow:hidden
- }
- .digg .plbox .box01 a {
- color:#333;
- font-weight:bold;
- }
- .digg .plbox .box01 h4 {
- background:url(../image/10.gif) no-repeat;
- padding-left:20px;
- height:25px
- }
- .digg .plbox .box01 .textbox {
- border:1px solid #ddd;
- border-top:1px solid #C1C0C0;
- border-left:1px solid #C1C0C0
- }
- .digg .plbox .box01 textarea {
- color:#666;
- background:#fff url(../image/11.gif) repeat-x;
- font-size:12px;
- padding:5px;
- border:1px solid #ddd;
- border-top:1px solid #ccc;
- border-left:1px solid #ccc;
- margin-top:10px;
- height:80px;
- float:left;
- }
- .digg .plbox .box01 #SubmitComment {
- background:url(../image/13.gif) repeat-x;
- line-height:30px;
- width:98px;
- height:30px;
- font-size:12px;
- border:0px;
- margin-top:0px;
- *+margin-top:-30px;
- _margin-top:-30px;
- color:#666;
- float:right;
- border-left:1px solid #ddd;
- }
- .digg .plbox .box01 .commenttips {
- width:645px;
- border:1px solid #ddd;
- border-top:0px;
- float:left;
- padding-left:10px;
- line-height:30px;
- height:30px;
- background:url(http://www.ifenguo.com/skin/images/12.gif) repeat-x;
- font-size:12px;
- color:#666
- }
- .digg .plbox .box02 {
- padding:20px 15px;
- color:#666;
- line-height:180%;
- }
- .digg .plbox .box02 tr td {
- padding:5px 0px
- }
- /*评论页结束*/
- .subject {
- width:1020px;
- margin:0 auto;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .subject .subject_l {
- width:222px;
- float:left;
- }
- .subject .subject_l .l_one {
- border:1px solid #bad7fa
- }
- .subject .subject_l .l_one h4 {
- height:32px;
- line-height:32px;
- background:#e1eeff;
- font-size:15px;
- color:#023779;
- padding-left:15px
- }
- .subject .subject_l .l_one ul li {
- height:32px;
- line-height:32px;
- background:#fff;
- color:#fff;
- padding-left:15px;
- font-size:14px;
- border-top:1px solid #bad7fa
- }
- .subject .subject_l .l_one ul li a {
- color:#555;
- }
- .subject .subject_l .l_one ul li a:hover {
- color:#2163b5;
- text-decoration:none
- }
- .subject .subject_l .l_one ul li.curr {
- background:url(../image/zttit09.png) no-repeat -1px 0px;
- width:252px;
- font-weight:bold;
- position:relative;
- border-top:0px
- }
- .subject .subject_l .l_two {
- border:1px solid #bad7fa;
- margin-top:10px;
- background:#fff
- }
- .subject .subject_l .l_two h4 {
- height:32px;
- line-height:32px;
- background:#e1eeff;
- font-size:15px;
- color:#023779;
- padding-left:15px;
- border-bottom:1px solid #bad7fa
- }
- .subject .subject_l .l_two ul {
- padding:10px 13px;
- }
- .subject .subject_l .l_two ul li {
- height:24px;
- line-height:24px;
- }
- .subject .subject_l .l_two ul li span {
- width:16px;
- height:16px;
- line-height:16px;
- margin:5px 10px 0px 0px;
- float:left;
- background:#f5f5f5;
- text-align:center;
- color:#333;
- border:1px solid #ddd;
- }
- .subject .subject_l .l_two ul li span.one {
- background:#e8d36f;
- color:#c00;
- border:1px solid #de9b25
- }
- .subject .subject_l .l_two ul li a {
- color:#555
- }
- .subject .subject_l .l_two ul li a:hover {
- color:#2163b5;
- text-decoration:none
- }
- .subject .subject_r {
- width:747px;
- float:right;
- border:1px solid #bad7fa;
- background:#fff
- }
- .subject .subject_r h4 {
- height:32px;
- line-height:32px;
- background:#e1eeff;
- font-size:15px;
- color:#023779;
- padding-left:15px;
- border-bottom:1px solid #bad7fa
- }
- .subject .subject_r ul {
- padding:15px;
- height:100%
- }
- .subject .subject_r ul li {
- padding:20px 15px;
- border-bottom:1px dashed #ddd;
- height:70px
- }
- .subject .subject_r ul li img {
- width:105px;
- height:70px
- }
- .subject .subject_r ul li .r_ct {
- width:565px;
- float:right
- }
- .subject .subject_r ul li .r_ct a.title {
- font-size:17px;
- color:#2163b5;
- display:block;
- height:27px;
- font-weight:bold
- }
- .subject .subject_r ul li .r_ct .intro {
- line-height:20px;
- color:#666;
- }
- .subject .subject_r ul li .r_ct .intro a {
- color:#c00
- }
- .subject .subject_r ul li:hover {
- background:#ecf4fe
- }
- /*新闻专题页开始*/
- /*专题内容页*/
- .zt_head {
- height:34px;
- background:#fff;
- line-height:32px;
- color:#666;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- border-top:2px solid #2163b5
- }
- .zt_head ul {
- width:1020px;
- margin:0 auto;
- position:relative;
- margin-top:-2px
- }
- .zt_head ul li {
- float:left;
- }
- .zt_head ul li.li01 {
- border-top:2px solid #2163b5;
- background:url(../image/zttit07.png) no-repeat 0 7px;
- padding-left:16px;
- }
- .zt_head ul li.li02 {
- border-top:2px solid #e7dd35
- }
- .zt_head ul li.li03 {
- border-top:2px solid #2fd397
- }
- .zt_head ul li.li04 {
- border-top:2px solid #e73589
- }
- .zt_head ul li a {
- font-size:12px;
- color:#666;
- padding:0px 8px;
- }
- .zt_head ul .r #nologin {
- margin-top:2px;
- }
- .zt_head ul .r {
- color:#666;
- font-size:12px;
- }
- .zt_head ul .r input {
- border:1px solid #e5e5e5;
- height:17px;
- background:#fff url(../image/b_g.gif) repeat-x 0px -3px;
- color:#666;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- margin:0px 10px 0px 8px;
- margin-right:5px;
- font-size:12px;
- border-top:1px solid #ccc;
- }
- .zt_head ul .r .loginbtn {
- background:none;
- color:#666;
- border:0px solid #ccc;
- font-size:12px;
- text-decoration:underline;
- width:30px;
- text-align:center;
- height:18px;
- margin-left:-10px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- font-weight:bold
- }
- .zt_head ul .r #nologin {
- line-height:30px;
- }
- .zt_head ul .r span {
- font-weight:bold
- }
- .zt_head ul .r .username {
- padding-left:5px;
- width:105px;
- }
- .zt_head ul .r .password {
- padding-left:5px;
- width:85px;
- }
- .zt_head ul .r a {
- padding:0px 2px;
- color:#666
- }
- .zt_main {
- width:1020px;
- margin:0 auto;
- margin-top:15px;
- height:368px;
- overflow:hidden
- }
- .zt_main .left {
- width:468px;
- float:left;
- height:364px;
- overflow:hidden
- }
- .zt_main .right {
- width:500px;
- float:right;
- line-height:20px;
- color:#666;
- }
- .zt_main .right ul li {
- margin-bottom:10px;
- height:115px;
- background:#f5f5f5
- }
- .zt_main .right ul li .libox {
- padding:12px 15px;
- }
- .zt_main .right ul li .title {
- font-size:17px;
- color:#2163b5;
- display:block;
- height:27px;
- font-weight:bold
- }
- .zt_main .right ul li a {
- color:#c00
- }
- .zt_main .right ul li .recommend {
- width:90px;
- height:91px;
- background:url(../image/recommend.png) no-repeat;
- position:absolute;
- margin:-5px 0px 0px 415px;
- }
- .zt_maintwo {
- width:950px;
- margin:0 auto;
- margin-top:15px;
- background:#f5f5f5;
- padding:15px;
- line-height:22px;
- color:#666;
- font-size:13px;
- height:78px
- }
- .zt_maintwo .tit {
- width:80px;
- float:left;
- height:50px;
- }
- .zt_maintwo .tit h4 {
- height:38px;
- line-height:38px;
- font-size:21px;
- color:#fff;
- background:#aaa;
- float:left;
- padding:0px 10px
- }
- .zt_maintwo .tit span {
- height:38px;
- line-height:38px;
- font-size:21px;
- color:#fff;
- float:left;
- padding:0px 10px;
- font-weight:bold;
- background:#2163b5
- }
- .zt_mainthree {
- width:1020px;
- margin:0 auto;
- margin-top:15px;
- background:#f5f5f5;
- }
- .zt_mainthree .tit {
- height:38px;
- padding:15px 0px 0px 15px
- }
- .zt_mainthree .tit h4 {
- height:38px;
- line-height:38px;
- font-size:21px;
- color:#fff;
- background:#aaa;
- float:left;
- padding:0px 10px
- }
- .zt_mainthree .tit span {
- height:38px;
- line-height:38px;
- font-size:21px;
- color:#fff;
- float:left;
- padding:0px 10px;
- font-weight:bold;
- background:#2163b5
- }
- .zt_mainthree ul li {
- margin:15px;
- padding:20px 15px;
- border-bottom:1px dashed #ddd;
- height:70px
- }
- .zt_mainthree ul li img {
- width:70px;
- height:60px
- }
- .zt_mainthree ul li .r_ct {
- width:830px;
- float:right
- }
- .zt_mainthree ul li .r_ct a.title {
- font-size:17px;
- color:#2163b5;
- display:block;
- height:27px;
- font-weight:bold
- }
- .zt_mainthree ul li .r_ct .intro {
- line-height:20px;
- color:#666;
- }
- .zt_mainthree ul li .r_ct .intro a {
- color:#c00
- }
- .zt_mainthree ul li:hover {
- background:#eee
- }
- .zt_page {
- text-align:right;
- padding-right:15px
- }
- .zt_end {
- width:1020px;
- margin:0 auto;
- height:60px;
- color:#666;
- font-size:11px;
- line-height:18px;
- padding-top:10px
- }
- /*专题内容页结束*/
- /*新闻专题页结束*/
- /*PK*/
- .pkmain {
- width:1020px;
- margin:0 auto;
- margin-top:10px;
- background:url(../image/pk06.png) repeat-x;
- border-top:1px solid #ddd
- }
- .pkmain .tit {
- height:35px;
- }
- .pkmain .tit h4 {
- font-family:"\5FAE\8F6F\96C5\9ED1";
- float:left;
- padding:0px 15px;
- padding-top:10px;
- font-size:17px;
- }
- .pkmain .tit h4 a {
- color:#fff;
- }
- .pkmain .tit h4 span {
- position:absolute;
- margin:-1px;
- color:#333;
- }
- .pkmain .tit .r {
- width:200px;
- height:30px;
- position:relative;
- background:url(../image/pk02.png) no-repeat;
- margin-top:-7px;
- padding-left:35px;
- line-height:28px;
- color:#777;
- font-family:Arial, Helvetica, sans-serif
- }
- .pkmain .tit .r a {
- color:#0a5caf;
- border:1px solid #e5e5e5;
- padding:2px 8px;
- background:#fff;
- }
- .pkmain ul {
- height:100%;
- padding:10px 10px;
- background:url(../image/pkulbg.png) no-repeat;
- margin:10px;
- }
- .pkmain ul li {
- width:400px;
- float:left;
- padding:15px;
- height:105px;
- line-height:24px;
- font-size:12px;
- color:#666;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .pkmain ul li.li02 {
- width:395px;
- padding:15px 15px 15px 20px;
- }
- .pkmain ul li.li01 {
- background:#f8e8e8;
- color:#a00;
- font-family:SimSun
- }
- .pkmain ul li.li01 .pkjg {
- border:1px solid #f5ceaf
- }
- .pkmain ul li.li02 {
- background:url(../image/pkbox02.png) no-repeat;
- color:#326b00;
- font-family:SimSun
- }
- .pkmain ul li.li02 .pkjg {
- border:1px solid #9ad490
- }
- .pkmain ul li.li02 .ffbg {
- width:138px;
- height:64px;
- background:url(http://www.ifenguo.com/skin/images/fanfang.png) no-repeat;
- position:absolute;
- margin-left:287px
- }
- .pkmain ul li.li01 span {
- display:block;
- font-weight:bold;
- color:#a00;
- font-size:15px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .pkmain ul li.li02 span {
- display:block;
- font-weight:bold;
- color:#326b00;
- font-size:15px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .pkmain ul li.pkpic {
- width:80px;
- height:132px;
- background:url(../image/pk.png) no-repeat 50% 50%;
- padding:0px
- }
- .pkmain ul li .pkjg {
- float:left;
- background:url(http://www.ifenguo.com/skin/images/pk05.png) repeat-x;
- padding:0px 5px 2px 5px;
- height:28px;
- line-height:28px;
- margin-top:10px;
- font-size:14px;
- font-family:SimSun;
- color:#333;
- }
- .pkmain ul li.li01 .pkjg {
- float:left;
- background:#f8e8e8;
- padding:0px 5px 2px 5px;
- height:28px;
- line-height:28px;
- margin-top:10px;
- font-size:14px;
- font-family:SimSun
- }
- .pkmain ul li .pkjg font {
- font-family:Arial, Helvetica, sans-serif;
- color:#c00;
- font-size:14px;
- padding-right:2px
- }
- .pkmain ul li .pkjg a {
- width:47px;
- height:24px;
- background:url(http://www.ifenguo.com/skin/images/pkbtn01.png) no-repeat;
- float:left;
- margin:3px 0px 0px 8px
- }
- .pkmain ul li.li02 .pkjg a {
- width:47px;
- height:24px;
- background:url(http://www.ifenguo.com/skin/images/pkbtn02.png) no-repeat;
- float:left;
- margin:3px 0px 0px 8px
- }
- .pkmain ul li .pkjg a:hover {
- text-decoration:none
- }
- .pkct {
- width:1020px;
- margin:0 auto;
- margin-top:10px;
- background:url(../image/pk06.png) repeat-x;
- border-top:1px solid #ddd
- }
- .pkct h4 {
- font-family:"\5FAE\8F6F\96C5\9ED1";
- padding:0px 15px;
- padding-top:10px;
- font-size:17px;
- color:#fff;
- text-align:center
- }
- .pkct h4 span {
- position:absolute;
- margin:-1px;
- color:#333;
- }
- .pkct h4 em {
- font-style:normal;
- font-size:12px;
- font-weight:normal;
- color:#999;
- padding-left:5px
- }
- .pkct .pkctbox {
- height:100%;
- padding:10px 10px;
- background:url(../image/pkulbg.png) no-repeat;
- margin:10px;
- }
- .pkct .pkctbox .pkctbox_l {
- width:390px;
- float:left;
- padding:10px
- }
- .pkct .pkctbox .pkctbox_l .l_intro {
- line-height:22px;
- padding-top:10px;
- color:#666;
- }
- .pkct .pkctbox .pkctbox_c {
- width:120px;
- float:left;
- text-align:center;
- padding-top:5px
- }
- .pkct .pkctbox .pkctbox_r {
- width:390px;
- float:right;
- padding:10px
- }
- .pkct .pkctbox .pkctbox_r .r_intro {
- line-height:22px;
- padding-top:10px;
- color:#666;
- }
- /*会员注册页*/
- .user_reg {
- width:950px;
- margin:0 auto;
- padding:15px;
- border:1px solid #ddd
- }
- .user_reg ul {
- padding-top:8px;
- line-height:30px
- }
- .user_reg ul li span {
- width:83px;
- font-size:14px;
- float:left;
- line-height:30px
- }
- .user_reg ul li {
- padding:10px 0px 10px 0px;
- }
- .user_reg ul li span font {
- color:#e00;
- font-size:14px;
- margin-right:5px;
- }
- .user_reg ul li .text {
- width:240px;
- padding-left:5px;
- height:28px;
- line-height:28px;
- margin-right:15px;
- border:1px solid #ccc;
- border-top:1px solid #999;
- border-left:1px solid #999;
- float:left
- }
- .user_reg ul li .yz_text {
- width:120px;
- padding-left:5px;
- height:28px;
- line-height:28px;
- margin-right:15px;
- border:1px solid #ccc;
- border-top:1px solid #999;
- border-left:1px solid #999;
- float:left
- }
- .user_reg ul li #usernamemsg {
- width:300px;
- padding-left:15px;
- background:url(../image/no.gif) no-repeat 0 50%
- }
- .user_reg ul li #passwordmsg2 {
- width:300px;
- padding-left:15px;
- background:url(../image/no.gif) no-repeat 0 50%
- }
- .user_reg ul li #answermsg {
- width:300px;
- padding-left:15px;
- background:url(../image/no.gif) no-repeat 0 50%
- }
- .user_reg ul li #chkcodemsg {
- width:300px;
- padding-left:15px;
- background:url(../image/no.gif) no-repeat 0 50%;
- margin-top:-30px;
- margin-left:305px
- }
- .user_reg ul .xx_box h4 {
- line-height:35px;
- border-bottom:1px dotted #ccc;
- padding-left:10px;
- height:35px;
- margin-bottom:10px
- }
- .user_reg ul .xx_box .text {
- width:240px;
- padding-left:5px;
- height:28px;
- line-height:28px;
- margin-right:15px;
- border:1px solid #ccc;
- border-top:1px solid #999;
- border-left:1px solid #999;
- float:left
- }
- /*会员注册页结束*/
- /*PK*/
- .pk {
- width:1020px;
- margin:0 auto;
- margin-top:10px;
- }
- .pk .pk_l {
- width:725px;
- float:left;
- }
- .pk .pk_l .l_one {
- margin-bottom:15px;
- }
- .pk .pk_l .l_one .tit {
- height:40px;
- line-height:40px;
- }
- .pk .pk_l .l_one h3 {
- font-size:16px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- font-weight:normal
- }
- .pk .pk_l .l_one h3 a {
- color:#116fa5;
- }
- .pk .pk_l .l_one h3 span {
- color:#555;
- }
- .pk .pk_l .l_one .tit .timebg {
- float:right;
- color:#666;
- background:url(../image/szbg.png) no-repeat 0 9px;
- padding-left:30px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .pk .pk_l .l_one ul li {
- width:331px;
- float:left;
- line-height:24px;
- padding:15px;
- color:#333;
- }
- .pk .pk_l .l_one ul li h4 {
- font-size:17px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- height:30px
- }
- .pk .pk_l .l_one ul li.li01 {
- background:#f8e8e8;
- border:1px solid #eac3c3
- }
- .pk .pk_l .l_one ul li.li01 h4 {
- text-indent:-9999px;
- width:155px;
- margin:0 auto;
- height:75px;
- background:url(../image/zf.png) no-repeat -10px -10px
- }
- .pk .pk_l .l_one ul li .pkpiao {
- }
- .pk .pk_l .l_one ul li .pkpiao font {
- color:#c00;
- font-size:15px;
- padding-right:3px;
- font-weight:bold;
- font-family:Arial, Helvetica, sans-serif
- }
- .pk .pk_l .l_one ul li .pkpiao a {
- }
- .pk .pk_l .l_one ul li.li03 {
- float:right;
- background:#f7fbe9;
- border:1px solid #e2e3e2;
- border-left:0px;
- }
- .pk .pk_l .l_one ul li.li03 h4 {
- text-indent:-9999px;
- width:155px;
- height:75px;
- margin:0 auto;
- background:url(../image/ff.png) no-repeat -7px -10px
- }
- .pk .pk_l .l_one ul li.li03 .pkpiao {
- }
- .pk .pk_r {
- width:240px;
- float:right;
- }
- .pk .pk_r .r_one {
- border:1px solid #e5e5e5
- }
- .pk .pk_r .r_one h4 {
- font-size:16px;
- line-height:35px;
- height:35px;
- padding-left:10px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .pk .pk_r .r_one .ct_intro {
- padding:10px;
- line-height:22px;
- color:#116fa5;
- }
- .fr {
- height:35px;
- line-height:35px;
- background:#fff url(../image/frbg.png) repeat-x;
- margin-top:15px;
- text-align:center;
- color:#666
- }
- .fr h4 {
- width:79px;
- height:76px;
- background:url(../image/bg21.png);
- position:absolute;
- margin:-17px 0px 0px -17px
- }
- .fr a {
- padding:0px 6px 0px 8px;
- color:#666;
- background:url(../image/frbg02.png) no-repeat 0 50%;
- }
- .frnavi {
- width:1020px;
- margin:0 auto;
- height:35px;
- line-height:35px;
- background:#eee;
- }
- .frnavi .r {
- padding-right:10px
- }
- .frnavi .r a {
- }
- .frsc {
- width:1020px;
- margin:0 auto;
- height:35px;
- line-height:35px;
- text-align:right;
- color:#999
- }
- .frsc .textbox {
- height:18px;
- line-height:18px;
- border:1px solid #ddd
- }
- .frsc .inputbutton {
- width:60px;
- background:url(../image/atnbg_01.gif) no-repeat;
- border:1px solid #ddd;
- }
- .frlist {
- width:979px;
- margin:0 auto;
- margin-top:10px;
- padding-left:1px
- }
- .frlist ul li {
- width:193px;
- float:left;
- padding:20px 25px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- font-size:15px;
- text-align:center;
- font-weight:bold;
- border:1px solid #ccc;
- position:relative;
- margin:-1px 0px 0px -1px
- }
- .frlist ul li img {
- margin-top:15px;
- width:90%;
- height:60px
- }
- .frlist ul li a:hover {
- text-decoration:none
- }
- /*尾部通用*/
- .end {
- width:1020px;
- margin:0 auto;
- padding-top:5px;
- text-align:center;
- height:20px;
- color:#999;
- }
- .end a {
- line-height:20px;
- padding:0px 4px 0px 4px;
- color:#666
- }
- .copyright {
- text-align:center;
- line-height:22px;
- color:#888;
- height:120px;
- font-family:Arial, Helvetica, sans-serif
- }
- .copyright img {
- margin-left:10px
- }
- /*尾部通用over*/
- /*网站地图*/
- .bg18 {
- height:6px;
- background:url(../image/18.png) repeat-x 0 -1px
- }
- .maplist {
- width:1020px;
- margin:0px auto;
- line-height:28px;
- margin-bottom:10px;
- }
- .maplist .classname {
- background:url(../image/maptit.png) repeat-x;
- margin-top:10px;
- display:block;
- padding-left:10px;
- font-size:15px;
- height:30px;
- line-height:30px;
- border:1px solid #b5d7ef;
- font-weight:bold;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .maplist .classname a {
- color:#00659c;
- background:url(../image/maptit02.png) no-repeat 0 50%;
- padding-left:10px
- }
- .maplist .classname2 {
- height:25px;
- float:left;
- line-height:25px;
- padding-left:10px;
- font-size:12px;
- padding-right:0px;
- background:none
- }
- .maplist .classname2 a {
- font-weight:bold;
- color:#555;
- font-size:15px;
- font-family:"\5FAE\8F6F\96C5\9ED1";
- }
- .maplist span {
- white-space:nowrap;
- padding:0px 10px;
- margin-top:10px;
- height:25px;
- float:left;
- background:url(../image/maptit03.png) no-repeat 100% 50%
- }
- .maplist span a {
- color:#555
- }
- .maplist a:hover {
- color:#00659c;
- }
- .maplist2 {
- clear:both;
- }
- /*附件*/
- .annex {
- width:600px;
- margin :15px;
- border : 1px dashed #999;
- background : #f9f9f9;
- line-height : normal;
- }
- .annex td {
- text-align:left;
- padding-top:10px;
- padding-left:10px;
- padding-bottom:5px;
- }
- /*评论*/
- .cmt .goodandbad {
- margin-top:3px;
- BORDER-BOTTOM: #efefef 1px solid
- }
- .cmt .content {
- color:#000;
- font-size:14px;
- }
- .cmt .gray {
- color:#ccc;
- }
- .cmtloadtips {
- height:30px;
- font-size:14px;
- line-height:30px;
- background:#f3f9fc;
- position:relative;
- margin-top:-2px;
- color:#999;
- text-align:center;
- }
- .cmttitle {
- border-bottom:3px solid #ccc;
- font-weight:bold;
- font-size:14px;
- }
- /
- /*/page*/
- .dede_pages{
- width:1000px; height:auto; margin:0 auto; margin-bottom:50px;
- }
- .dede_pages ul{
- float:left;
- padding:12px 0px 12px 30px;
- }
- .dede_pages ul li{
- float:left;
- font-family:Tahoma;
- line-height:17px;
- margin-right:6px;
- border:1px solid #E9E9E9;
- }
- .dede_pages ul li a{
- float:left;
- padding:2px 4px 2px;
- color:#555;
- display:block;
- }
- .dede_pages ul li a:hover{
- color:#690;
- text-decoration:none;
- padding:2px 4px 2px;
- }
- .dede_pages ul li.thisclass,
- .dede_pages ul li.thisclass a,.pagebox ul li.thisclass a:hover{
- background-color:#F8F8F8;
- padding:2px 4px 2px;
- font-weight:bold;
- }
- .dede_pages .pageinfo{
- line-height:21px;
- padding:12px 10px 12px 16px;
- color:#999;
- }
- .dede_pages .pageinfo strong{
- color:#555;
- font-weight:normal;
- margin:0px 2px;
- }
- /*page/*/
- .news_pages{
- width:760px; height:auto; margin:0 auto; margin-bottom:50px;
- }
- .news_pages ul{
- float:left;
- padding:12px 0px 12px 16px;
- }
- .news_pages ul li{
- float:left;
- font-family:Tahoma;
- line-height:17px;
- margin-right:6px;
- border:1px solid #E9E9E9;
- }
- .news_pages ul li a{
- float:left;
- padding:2px 4px 2px;
- color:#555;
- display:block;
- }
- .news_pages ul li a:hover{
- color:#690;
- text-decoration:none;
- padding:2px 4px 2px;
- }
- .news_pages ul li.thisclass,
- .news_pages ul li.thisclass a,.pagebox ul li.thisclass a:hover{
- background-color:#F8F8F8;
- padding:2px 4px 2px;
- font-weight:bold;
- }
- .news_pages .pageinfo{
- line-height:21px;
- padding:12px 10px 12px 16px;
- color:#999;
- }
- .news_pages .pageinfo strong{
- color:#555;
- font-weight:normal;
- margin:0px 2px;
- }
- /*page/*/
- .hb_bar{ width:100%; float:left; background:url(http://www.ifenguo.com/skin/images/hb_1.jpg) center no-repeat; height:300px;}
- .hb_cc{ width:100%; float:left; height:24px; float:left;background:url(http://www.ifenguo.com/skin/images/hb_2.jpg) repeat; margin-top:3px;}
- .hb_cc_1{ width:1001px; margin:0 auto; position:relative; height:24px; line-height:24px; padding-left:14px;}
- .hb_im{ width:9px; height:14px; position:absolute; left:0; top:6px;}
- .hb_cc_1 span{ color:#999999;}
- .hb_cc_1 span a{ color:#999999;}
- .hb_cc_1 em{ color:#666;}
- .hb_inf{ width:1015px; margin:0 auto;}
- .hb_dw{ width:100%; float:left;}
- .hb_dw_1{ width:100%; float:left; margin-top:15px; border-bottom:1px solid #cccccc;}
- .hb_dw_1 a{ float:left; width:68px; height:24px; line-height:24px; margin-right:46px; padding:1px 5px 2px 12px; font-size:14px; cursor:pointer;background: #49494e;color: white;margin-bottom: 10px; display:block}
- .hb_dw_1 a:hover{color:white;background-color:#34aadc;}
- .hb_dw_1 a.selected{background-color:#34aadc;}
- /* .selected a:hover{ color:#333;} */
- .hb_dw_1 a.selected:hover{color:white;}
- .hb_dw_2{ width:100%; float:left;}
- .hb_ct{ margin-top:12px; width:684px; float:left; padding:0 19px;}
- .hb_ct_1{ width:100%; float:left; margin-top:20px;}
- .hb_ct_1 span{ float:left; font-size:20px; font-weight:bold;}
- .hb_ct_1 span a{ color:#555555;}
- .hb_ct_1 span a:hover{ color:#34aadc;}
- .hb_ct_1 em{ float:right; padding-top:10px; font-style:normal}
- .hb_ct_2{ width:100%; float:left; margin-top:22px; border-bottom:1px dashed #dcdcdc; padding-bottom:20px;}
- /*.hb_ct_2 { width:197px; height:103px; float:left; border:1px solid #dbdbdb; padding:3px 0 0 5px; margin-right:30px;}*/
- .hb_ct_2 img{ width:169px; height:99px; padding:5px; margin-right:30px; float:left; border:1px solid #dbdbdb;}
- /*.hb_ct_2 p{ width:393px; float:right;}*/
- .hb_ct_2 p a{line-height:230%; color:#615f5f;}
- .w_lb_gd{ color:#323232; float:right;}
- .w_lb_gd a{color:#323232 !important; }
- /*news*/
- .h_tt_u{ width:100%; float:left; text-align:center; z-index:1; height:auto; clear:both; }
- .hh_dd{ margin-top:20px; }
- .h_tt_u a{ border:1px solid #cccccc; padding:4px 8px; color:#b2b2b0; font-weight:bold;}
- .hb_lq{ background:#fba707 !important; color:#fff !important;}
- .hb_right{ width:237px; float:right; margin-top:20px;}
- .hb_f1{ width:235px; float:left; border:1px solid #e5e5e5; border-radius:5px;}
- .hb_f1 h3{background:url(../image/hb_12.jpg) repeat-x; width:237px; height:31px; text-align:center; line-height:31px; float:left; font-size:14px;}
- .hb_f1 li{ width:222px; height:36px; line-height:36px; float:left; margin-left:10px; overflow:hidden; border-bottom:1px solid #e3e3e3;}
- .hb_f1 li em{ margin-right:5px;}
- .hb_f1 li a{ color:#333333;}
- .hb_f2{ margin-top:17px; width:239px; height:215px; float:left;}
- .hb_f3{ width:237px; float:left; margin-top:10px; border:1px solid #e5e5e5; border-radius:5px; position:relative; height:168px; font-size:14px;}
- .hb_f3 h3{background:url(../image/hb_12.jpg) repeat-x; width:237px; height:31px; text-align:center; line-height:31px; float:left; font-size:14px;}
- .hb_1{ position:absolute; left:19px; top:52px; font-size:18px;}
- .hb_1 a{ color:#8e8e8e;}
- .hb_2{ position:absolute; right:19px; top:78px; font-size:16px;}
- .hb_2 a{ color:#f7c600;}
- .hb_3{ position:absolute; left:48px; top:97px; font-size:14px;}
- .hb_3 a{ color:#c10132;}
- .hb_4{ position:absolute; left:24px; bottom:17px; font-size:14px;}
- .hb_4 a{ color:#4d92d7;}
- .hb_5{ position:absolute; right:23px; bottom:16px; font-size:20px;}
- .hb_5 a{ color:#2c2c2c;}
- .cm_w{ border-bottom:2px solid #34aadc; color:#34aadc;}
- .hb_je{ width:100%; float:left; margin-top:57px; padding-bottom:30px;}
- .hb_je_1{ width:100%; float:left; border-bottom:1px solid #cccccc; border-bottom:1px solid #cccccc;}
- .hb_je_1 span{ float:left; border-bottom:2px solid #34aadc; font-size:18px; font-weight:bold;}
- .hb_je_1 em{ float:right;font-weight: normal;font-style: italic;}
- .hb_je_1 em a{ color:#666666;font-weight: normal;font-style: italic;}
- .hb_je_2{ width:100%;float:left; margin-top:10px;}
- .hb_je_2 li{ float:left; border:1px solid #e6e6e6; width:238px; padding:5px 0 0 5px; margin-left:7px;}
- .hb_je_2 li span{ width:232px; height:165px; float:left;}
- .hb_je_2 li p{ width:232px; height:32px; line-height:32px; float:left;}
- .hb_je_2 li p em{ float:left; margin-left:5px; color:#666666}
- .hb_je_2 li p a{ float:right; margin-right:5px; color:#ff9700;}
- /*news*/
- .w_xw_le{margin-top: 12px;
- width: 760px;
- float: left;}
- .w_xw_le h1{
- color: #2c2c2c;
- font-size: 28px;
- padding-bottom: 10px;
- text-align: left;
- padding-top: 10px;}
- .w_zztm{ width: 100%;
- text-align: left;
- color: #696969;
- background: #f9f9f9;
- border-bottom: 1px solid #e6e6e6;
- line-height: 37px;
- height: 37px;
- font-size: 10px;
- margin-bottom: 30px;}
- .w_zztm span{ margin-right:10px;}
- .w_xw_le p{ margin-bottom: 15px;
- width: 100%;
- clear: both;
- color: #696969;
- line-height: 180%;
- font-family: 微软雅黑;
- text-indent: 2em;
- font-size: 16px;}
- /*casel*/
- .casebox{ width:1020px; height:auto; margin:20px auto;
- }
- .case_left{ width:300px; height:auto; float:left;
- }
- .case_num{height: 16px;
- line-height: 16px;
- padding: 10px 0 25px 0;
- color: #999;}
- .type,.function,.introduction{margin: 0;
- padding: 0;
- border: 0;
- font: inherit;
- font-size: 100%;
- vertical-align: baseline;
- }
- .case_right{ width:650px; height:auto; float:right; overflow:hidden
- }
-
-
- /*首页app开发*/
- .flow {
- padding:0;
- list-style:none;
- }
- .flow li {
- display:block;
- text-align:center;
- margin-bottom:30px;
- font-size:14px;
- }
- .flow li img {
- margin-bottom:10px;
- }
- .flow li.active .s1, .flow li:hover .s1, .flow li .s2 {
- display:none;
- }
- .flow li.active .s2, .flow li:hover .s2 {
- display:inline-block;
- }
- .flow strong {
- display:block;
- font-size:16px;
- color:#000;
- }
- /* @media (min-width:760px) {*/
- .flow li {
- float:left;
- clear:none;
- width:184px;
- margin:10px;
- }
- .flow li a {
- float:none;
- margin:0 0 10px 20px;
- width:110px;
- height:110px;
- }
- .mainer {
- width:1024px;margin:0 auto;
- width:100%; display: block;
- }
- /*
- *:before, *:after {
- -webkit-box-sizing:border-box;
- -moz-box-sizing:border-box;
- box-sizing:border-box;
- }*/
- textarea {
- overflow:auto;
- }
- input:focus, textarea:focus, button:focus, select:focus {
- outline:none;
- }
- input::-ms-clear {
- display:none;
- }
- .mainer:after {
- content:" ";
- display:block;
- height:0;
- clear:both;
- visibility:hidden;
- overflow:hidden;
- }
- .mainer {
- display:block;
- }
- .container, .mainer, .main800 {
- margin:0 auto;
- width:100%;
- }
- /*@media (min-width:760px) {*/
- .container {
- width:1200px;
- }
- .mainer {
- width:1024px;
- }
- .main800 {
- width:800px;
- overflow:hidden;
- }
- .jishu ul {
- list-style:none;
- }
- .jishu .pager {
- padding:20px 0;
- }
- .jishu .pager ul {
- padding:0; margin-left:20px;
- list-style:none;
- }
- .jishu .pager li {
- display:inline-block;
- vertical-align:top;
- }
- .jishu .pager li a {
- border:solid 1px #00a0ea;
- color:#00a0ea;
- border-radius:50%;
- display:block;
- font-size:14px;
- width:50px;
- line-height:15px;
- padding:9px 10px;
- text-align:center;
- }
- .jishu .pager li img {
- width:50px;
- }
- .jishu .pager li img, .jishu .pager li.active a, .jishu .pager li:hover a {
- display:none;
- }
- .jishu .pager li.active img, .jishu .pager li:hover img {
- display:block;
- }
- /*@media (min-width:760px) {*/
- .jishu .pager {
- padding:40px 0;
- }
- .jishu .pager li img {
- width:110px;
- }
- .jishu .pager li a {
- width:110px;
- height:110px;
- font-size:18px;
- line-height:90px;
- }
- .jishu .pager ul {
- display:table;
- width:100%;
- }
- .jishu .pager ul li {
- display:table-cell;
- }
- .jishu {
- width:100%;
- overflow:hidden;
- position:relative;
- }
- .jishu .carousel {
- position:relative;
- }
- .jishu .carousel .item {
- position:absolute;
- }
- /*解决方案*/
- .jj_p{font-size:18px;text-align:center; margin:0 auto; font-size:14px; width:860px; line-height:20px;
- }
- .w_sx {
- width: 100%; margin:20px auto;
- }
- .sx_le {
- width: 49%;
- float: left;
- display: block;
- }
- .w_sx_rig {
- width: 49%;
- float: right;
- display: block;
- }
- .map{ width:1020px; height:350px; margin:30px auto 40px auto;}
- @media screen and (max-width:800px) {
- #head_top .head .head-top-con,.sheji .line,.peitao .line{display:none}
- #head_top .head{width:100%;height:80px;}
- #head_top{height:80px}
- #head_top .head .logo{ margin-top: 0;height:80px}
- #head_top .head .logo img{
- height: 60px;
- width: auto;
- margin-top: 10px;
- margin-left: 10px;}
- .t1_pic{width:100%;height:auto}
- .t1_pic img{width:100%;height:auto}
- .link .box ul a.y{width:100%;margin-right:0}
- .link .box{ padding: 20px;width:auto}
- .link .box ul {
- width: auto;
- padding-left: 0;
- }
- .wapd {
- width: 20px;
- height: 20px;
- display: block;
- background: url(../image/d.png) center center no-repeat #40b6ff;
- padding: 10px;
- position: absolute;
- top: 22px;
- right: 20px;
- z-index: 1; box-sizing: initial;
- }
- .caseimg dl dt a:hover{ position: initial;margin:0}
- .link .box ul a{padding:0 5px;width:auto}
- #head_top .head .navi ul{width:100%}
- #head_top .head .navi{ clear: both;
- float: none;display:none;
- width: 100%;
- height: auto;
- z-index: 32; background: #616161;
- position: absolute;
- left: 0;
- top: 80px;
- }
- #head_top .head .navi ul li{float:none;width:100%}
- #head_top .head .navi ul li a{ float: none;
- width: 100%;
- padding: 15px 0;
- color: #fff;
- border-bottom: 1px #7b7b7b solid;}
- .huadong{width:100%}
- .huadong .content{padding:20px}
- .wzsjliebiao,.peitao{width:100%}
-
- .wzsjliebiao .list{ width: 47%;
- margin: 1.5%;}
-
- .liucheng,.sheji{width:100%}
- .sheji .list, .peitao .list{ padding-left: 0; width: 47%;
- margin: 1.5%;}
- .peitao .list .content {
- float: none;
- font-size: 12px;
- line-height: 180%;
- padding-left: 0;
- text-align: center;
- }
- .huadong .imgbg {
- width: 400px;
- overflow: hidden;
- }
- .huadong .imgbg img{ padding-left: 80px;width:auto}
- .wzsjdatu{height:auto}
- .Dg{width:100%; padding: 0 20px;
- box-sizing: border-box;}
- .wzsjdatu .wzsjdatuson{width:100%;left:0;margin-left:0; height: auto; position: initial;}
- .nav_bottom {
- width:100%;
- height: 50px;
- position: relative;
- position: fixed;
- z-index: 10;
- bottom: 0;
- background: url(../image/index.png) no-repeat center center;
- color: #fff;
- background-size:100%;display:block;
- }
- .nav_bottom a {
- color: #fff;
- display: block;
-
- height: 50px;
- border: none;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- -webkit-tap-highlight-color: transparent;
- outline: none;
- }
- .nav_bottom .booking {
- width: 50%;
- height: 50px;
- float: left;
- font-size: 16px;
- text-align: center;
- line-height: 50px;
- }
- .nav_bottom .animation {
- position: absolute;
- width: 4rem;
- height: 4rem;
- border-radius: 50%;
- background: -webkit-linear-gradient(#0892ed, #5f58fe);
- background: -o-linear-gradient(#0892ed, #5f58fe);
- background: -moz-linear-gradient(#0892ed, #5f58fe);
- background: linear-gradient( #0892ed, #5f58fe);
- bottom: 14px;
- left: 50%;margin-left:-2rem;
- z-index: 98;
- }
- .nav_bottom .animation a {
- display: inline-block;
- position: absolute;
- width: 4rem;
- height: 4rem;
- bottom: 0;
- left: 0;
- font-size: 14px;
- line-height:4rem;
- text-align: center;
- z-index: 101;
- }
- .nav_bottom .animation a p {
- font-size: 14px;
- }
- .nav_bottom .phone {
- width: 50%;
- height: 50px;
- float: right;
- font-size: 16px;
- text-align: center;
- line-height: 50px;
- }
- .nav_bottom .booking .n {
- font-size: 24px;
- vertical-align: -1px;
- color: #fff;
- margin-right: 3px;
- }
- .nav_bottom .phone .n1 {
- font-size: 30px;
- color: #fff;
- vertical-align: middle;
- margin-right: 2px;
- }
- .liucheng .tu img{height:auto;width:100%}
- .caseimg{width:100%}
- .caseimg dl{ width: 47%;
- margin: 1.5%;}
- .caseimg dl dt{width:100%;height:auto}
- .caseimg dl dt img,.caseimg dl dt a:hover img{width:100%;height:auto}
- .hyfl h2{display:none}
- .hyf {height:auto; padding: 0 20px;
- box-sizing: border-box;width:100%}
- .hyfl ul {height:auto;width:100%;float:none}
- .hyfl{ height: auto;
- width: 100%;
- float: none;
- margin: 0px auto 20px auto;
- overflow: hidden;}
- .hyfl ul li{width:20%}
-
- .hb_inf{margin:0 20px;width:auto}
- .hb_dw_1 a{ width: 32%; box-sizing: border-box;
- line-height: 30px;
- height: 30px;
- margin-right: 2%;}
-
-
- .hb_dw_1 a:nth-child(3n){margin-right:0}
- .jj_p{ padding: 0 20px;
- box-sizing: border-box;
- width:100%}
- .hb_ct{width:100%; padding: 0;}
- .hb_ct_1 span {
-
- font-size: 14px;
-
-
- }
- .hb_ct_1 em {
-
- padding-top: 0;
- }
- .news_pages{width:100%}
- .hb_right {
- width: 100%;
-
- }
- .hb_f1,.gywm{
- width: 100%;
-
- }
- .linian,.lxwm{
- width:auto;margin:0 20px
-
- }.lxwm .right {
- float: none;
- width: 100%;
- margin-left: 0;
- margin-top: 20px;
- }
- .lxwm .left img{width:280px}
- .lxwm .left {
- float: none;
- width: 100%;
- padding-left: 0;
- text-align: center;
- }
- .hb_f1 h3{ width: 100%;
-
- }
- .youshibg1 .content, .youshibg2 .content{ width: 100%;
- box-sizing: border-box;
- padding: 20px;
- }
- .linian .tt2{font-size:14px;line-height:2;height:auto}
- .gywm .chatu img{width:100%}
- .gywm .jieshao{ float: none;
- width: auto; font-size: 14px;
- margin: 0 20px;}
- .gywm .chatu{float:none; width: auto;
- margin: 20px;}
- .hb_f1 li{ width: 96%;
- margin: 0 2%;}
- .map{width:100%;height:auto}
-
- .casebox{width: auto;
- margin: 20px;}
- .case_left{width:100%;float:none}
- .caseimg dl dd p {
-
- padding-left: 0;
- width: 80%;
- height: 40px;
- overflow: hidden;
- }
- .w_xw_le{width:100%;float:none}
- .w_xw_le img{ margin-left: -2rem;max-width:100% !important;height:auto!important }
- .case_right img{ max-width:100% !important;height:auto!important }
- .lxwm{padding-top:0}
- .youshibg1 .content .jieshao, .youshibg2 .content .jieshao{font-size:14px}
- .linian .tt1{font-size:18px;line-height:3;height:auto}
- .case_left .case_title{font-size:18px}
- .caseimg dl dd{width:100%}
- .caseimg dl dd a{ width: 20%; }
- .lxwm .right .list .hanzi,.lxwm .right .list .en{line-height:45px; width: auto;}
- .lxwm .right .dizhi{float:none;width:100%;font-size:14px;}
- .dede_pages ul{padding:20px; }
- .dede_pages ul li:last-child,.news_pages ul li:last-child,.dede_pages ul li:nth-last-child(2),.news_pages ul li:nth-last-child(2){display:none;}
-
- .case_right{width:100%;float:none}
- .case_num{padding:10px 0}
- .hb_ct_2 img {
- width: 120px;
- height: 80px;
- padding: 5px;
- margin-right: 10px;}
- }
- @media screen and (max-width:480px) {
- .lxwm .left img{width:240px}
- }
- @media screen and (max-width:480px) {
-
- }
- @media screen and (max-width:380px) {
- .lxwm .right .list .hanzi,.lxwm .right .list .en{font-size:16px;}
- }
|