global.css 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822
  1. @charset "utf-8";
  2. /*Reset 样式初始化*/
  3. html, body, form, fieldset, p, a, ul, ol, li, div, legend, label,
  4. br, input, button, textarea, h1, h2, h3, h4, h5,em{
  5. padding: 0;
  6. margin: 0;
  7. font-weight: normal;
  8. font-style: normal;
  9. font-size: 12px;
  10. font-family:"微软雅黑","Tahoma";
  11. vertical-align: baseline;
  12. text-align:justify;
  13. word-wrap:break-word;
  14. text-justify:inter-ideograph
  15. }
  16. body{text-align:center}
  17. ul, ol, li, h1 {
  18. line-height:normal;
  19. list-style-image:none;
  20. list-style-position:outside;
  21. list-style-type:none
  22. }
  23. dl {
  24. margin:0
  25. }
  26. dd {
  27. margin-left:0
  28. }
  29. a {
  30. outline:none;
  31. }
  32. a img {
  33. border:0 none
  34. }
  35. img {
  36. vertical-align:middle;
  37. border:0px
  38. }
  39. table {
  40. border-collapse:collapse
  41. }
  42. .clearfix:after {
  43. content:".";
  44. display:block;
  45. height:0;
  46. clear:both;
  47. visibility:hidden
  48. }
  49. .clearfix {
  50. display:inline-block;
  51. overflow:hidden
  52. }
  53. .clearfix {
  54. display:block
  55. }
  56. body {color:#666}
  57. a {color:#1570A6;text-decoration:none}
  58. a:hover {color:#083047;text-decoration:underline}
  59. .width1020{width:1020px;margin:0 auto}
  60. .width1060{width:1020px;margin:0 auto;background:#fff;padding:0 20px 20px 20px}
  61. /**/
  62. .clearB {clear:both}
  63. .fL {float:left}
  64. .fR {float:right}
  65. :link, *:visited, *:hover, *:active, *:focus {
  66. -moz-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  67. -webkit-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  68. transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  69. -o-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  70. }
  71. .colRed {color:#f70000}
  72. .colOrange {color:#ed8b00}
  73. .colYel {color:#d9a601}
  74. .colGreen{color:#17ab0c}
  75. .colGray{color:#999}
  76. .colBlue{color:#3172d9}
  77. .colKoi{color:#E36335}
  78. .hide {display:none}
  79. /*scroll*/
  80. .scrollgeneric {
  81. line-height:1px;
  82. font-size:1px;
  83. position:absolute;
  84. top:0;
  85. left:0
  86. }
  87. .vscrollerbase {
  88. width:10px;
  89. background-color:#eee;
  90. }
  91. .vscrollerbar {
  92. width:10px;
  93. background-color:#5da6d9
  94. }
  95. .hscrollerbase {
  96. height:10px;
  97. background-color:#eee;
  98. z-index:99;
  99. }
  100. .hscrollerbar {
  101. height:10px;
  102. background-color:#5da6d9;
  103. }
  104. .scrollerjogbox {
  105. width:10px;
  106. height:10px;
  107. top:auto;
  108. left:auto;
  109. bottom:0;
  110. right:0;
  111. background-color:#eee;
  112. }
  113. .vscrollerbar, .hscrollerbar{padding:1px}
  114. /*头部*/
  115. .wrapHeader{
  116. background:#eef2f5;
  117. height:48px
  118. }
  119. .mainLogo {
  120. width:291px;
  121. height:47px;
  122. background:url(scIcons.png) no-repeat 0 0
  123. }
  124. .mainNav li{
  125. float:left;
  126. margin-left:1px
  127. }
  128. .mainNav li a{
  129. padding:0 20px;
  130. height:48px;
  131. display:inline-block;
  132. *dislpay:inline;
  133. zoom:1;
  134. line-height:48px;
  135. text-align:center;
  136. color:#666666
  137. }
  138. .mainNav li a:hover{
  139. background:#f8f9fb;
  140. font-size:12px
  141. }
  142. .mainNav li a.now{
  143. background:#fff;
  144. font-size:12px;
  145. font-weight: 600
  146. }
  147. .mainNav li a.now:hover{
  148. cursor: default;
  149. }
  150. .mainNav li.search {
  151. position: relative;
  152. }
  153. .mainNav li.search .topSerach{
  154. position: absolute;
  155. right:-3px;
  156. z-index: 999;
  157. background:#FFFFFF;
  158. border:3px solid #333333;
  159. border-top:none;
  160. padding:10px;
  161. width:200px;
  162. display:none
  163. }
  164. li.search .topSerach input.serachInput{
  165. width:135px;
  166. padding:0 5px;
  167. height:20px;
  168. border:1px solid #333;
  169. }
  170. li.search .topSerach input[type=submit]{
  171. width:53px;
  172. text-align: center;
  173. background-color: #333;
  174. color:#fff;
  175. border:none;
  176. height:22px;
  177. float:right;
  178. }
  179. li.search .topSerach input[type=submit]:hover{
  180. background-color: #000
  181. }
  182. li.search .topSerach input[type=submit]:active{
  183. background-color: #666
  184. }
  185. /**/
  186. .wrapContent{
  187. background:url(contentBg-index.jpg) no-repeat center top;
  188. border-top:3px solid #333333
  189. }
  190. .pageTitle {
  191. margin:45px auto 45px;
  192. color:#fff;
  193. position:relative
  194. }
  195. .pageTitle h1 {
  196. font-size:38px;
  197. padding:15px 10px;
  198. float:left;
  199. background:url(titleBg-gray.png) repeat
  200. }
  201. .pageTitle h2 {
  202. font-size:18px;
  203. padding:8px 10px;
  204. background:url(titleBg-black.png) repeat;
  205. color:#fff;
  206. float:left;
  207. margin:0 0 1px 0
  208. }
  209. .productBg{
  210. border-color:#ff6501;
  211. background-image: url(contentBg-product.jpg);
  212. }
  213. .productBg .pageTitle h1{
  214. background:url(titleBg-orange.png) repeat
  215. }
  216. .aboutUsBg{
  217. border-color:#b2005e;
  218. background-image: url(contentBg-aboutUs.jpg);
  219. }
  220. .aboutUsBg .pageTitle h1{
  221. background:url(titleBg-pink.png) repeat
  222. }
  223. .trainBg{
  224. border-color:#2daebf;
  225. background-image: url(contentBg-train.jpg);
  226. }
  227. .trainBg .pageTitle h1{
  228. background:url(titleBg-green.png) repeat
  229. }
  230. .contactBg{
  231. border-color:#f8b62a;
  232. /*background-image: url(contentBg-contact.jpg);*/
  233. }
  234. .contactBg .pageTitle h1{
  235. background:url(titleBg-yellow.png) repeat
  236. }
  237. .newsBg{
  238. border-color:#12629c;
  239. background: url(contentBg-index.jpg) no-repeat center top;
  240. }
  241. .newsBg .pageTitle h1{
  242. background:url(titleBg-blue.png) repeat
  243. }
  244. .wrapFooter {
  245. background:#f8f8f8;
  246. }
  247. .contentBottom {
  248. background:#4d4d4d;
  249. width:1060px;
  250. margin:0 auto;
  251. position:relative
  252. }
  253. .contentBottom .indexNewsList{
  254. width:480px;
  255. margin:15px
  256. }
  257. .contentBottom .indexNewsList dt{
  258. font-size:14px;
  259. font-weight:600;
  260. color:#999
  261. }
  262. .contentBottom .indexNewsList dd{
  263. margin:0 0 3px 0
  264. }
  265. .contentBottom .indexNewsList dd span{
  266. color:#999;
  267. margin:0 0 0 10px
  268. }
  269. .contentBottom .indexNewsList a{
  270. color:#fff
  271. }
  272. .contentBottom .indexNewsList a:hover{
  273. text-decoration:underline;
  274. }
  275. .contentBottom .indexerwei{
  276. position: absolute;
  277. top:-245px;
  278. right:-75px;
  279. background: url(indexerwei.png) no-repeat;
  280. width:62px;
  281. height:31px;
  282. padding:141px 0 0 0;
  283. }
  284. .contentBottom .indexerwei a{
  285. float:left;
  286. margin:0 0 0 1px;
  287. }
  288. .contentBottom .indexerwei a.sina{
  289. width:29px;
  290. height:30px;
  291. }
  292. .contentBottom .indexerwei a.sina:hover{
  293. background: url(indexerwei.png) no-repeat -1px -172px;
  294. }
  295. .contentBottom .indexerwei a.tx{
  296. width:30px;
  297. height:30px;
  298. }
  299. .contentBottom .indexerwei a.tx:hover{
  300. background: url(indexerwei.png) no-repeat -31px -172px;
  301. }
  302. .security_click {
  303. position: absolute;
  304. top: 4px;
  305. left: 3px;
  306. width: 54px;
  307. height: 54px;
  308. }
  309. .newsPanel {
  310. padding:35px 0 35px 30px;
  311. position:relative
  312. }
  313. .newsPanel .newsIcon{
  314. position:absolute;
  315. background:url(scIcons.png) no-repeat 0 -47px;
  316. width:24px;
  317. height:18px;
  318. left:10px;
  319. top:15px
  320. }
  321. .newsPanel a{
  322. color:#fff
  323. }
  324. .newsPanel a:hover{
  325. color:#ccc
  326. }
  327. .weiboPanel {
  328. width:350px;
  329. background:url(scIcons.png) no-repeat -203px -47px;
  330. padding-left:87px;
  331. margin-top:5px
  332. }
  333. .newsExtra{
  334. background:#666666;
  335. position:absolute;
  336. top:-200px;
  337. width:550px;
  338. opacity: 0;
  339. -moz-opacity: 0;
  340. filter:alpha(opacity=0);
  341. display:none;
  342. z-index:9999;
  343. }
  344. .newsExtra h2{
  345. background:#333333;
  346. color:#fff;
  347. padding:5px 20px
  348. }
  349. .newsExtra h2 a{
  350. color:#ff6501
  351. }
  352. .newsExtra .extraItem li{
  353. border-bottom:1px solid #fff;
  354. height:56px;
  355. line-height:56px;
  356. padding:0 20px;
  357. position:relative
  358. }
  359. .newsExtra .extraItem li:hover{
  360. background:#4D4D4D
  361. }
  362. .newsExtra .extraItem li span{
  363. position:absolute;
  364. right:15px;
  365. top:5px;
  366. font-size:9px;
  367. color:#999;
  368. height:12px;
  369. line-height:12px
  370. }
  371. .extraItem li a{
  372. color:#fff
  373. }
  374. .newsExtra .extraBottom{
  375. background:url(scIcons.png) no-repeat -59px -132px;
  376. width:36px;
  377. height:24px;
  378. position:absolute;
  379. right:0;
  380. bottom:-24px;
  381. border-bottom:1px solid #5e5e5e
  382. }
  383. .fContant{
  384. width:1060px;
  385. margin:0 auto;
  386. position: relative;
  387. background-color: #F8F8F8
  388. }
  389. .fContant div {
  390. height:47px;
  391. background:url(scIcons.png) no-repeat -243px -126px;
  392. padding:0 0 0 50px;
  393. margin:25px 0 25px 20px
  394. }
  395. .fContant div b{font-size:30px;line-height:25px;color:#333}
  396. .fContant div.exqq {
  397. background:url(scIcons.png) no-repeat -243px -173px;
  398. margin-left:120px;
  399. margin-right:120px
  400. }
  401. .fContant div.tel2 {
  402. background-position:-243px -220px;
  403. }
  404. .fContant .search{
  405. background:none;
  406. margin:40px 20px 0 0
  407. }
  408. .fContant .search input{
  409. height:26px;
  410. line-height:26px;
  411. border:1px solid #bbb;
  412. border-right:none;
  413. padding:0 5px;
  414. width:240px;
  415. vertical-align:top;
  416. color:#666
  417. }
  418. .fContant .search button{
  419. height:28px;
  420. line-height:28px;
  421. text-align:center;
  422. background:#fc9200;
  423. border:none;
  424. padding:0 10px;
  425. color:#fff
  426. }
  427. .fContant .search button:hover{
  428. background:#ff6501;
  429. font-weight:600;
  430. cursor:pointer
  431. }
  432. .bottomNav {
  433. background:#333;
  434. height:48px
  435. }
  436. .subNav li{
  437. float: left
  438. }
  439. .subNav li a{
  440. height:48px;
  441. line-height:48px;
  442. color:#fff;
  443. width:80px;
  444. text-align:center;
  445. display:inline-block;
  446. *display:inline;
  447. zoom:1
  448. }
  449. .subNav li a:hover{
  450. color:#f2f2f2;
  451. background:#3b3b3b
  452. }
  453. .copyRight {
  454. color:#bcbcbc;
  455. line-height:48px
  456. }
  457. .sideBar{
  458. width:150px;
  459. border-top:8px solid #ff6501;
  460. margin:0 0 0 20px;
  461. padding:50px 0 0 0
  462. }
  463. .sideBar h2{
  464. border-bottom:1px solid #999;
  465. padding:0 0 5px 0;
  466. margin:0 0 15px 0
  467. }
  468. .sideBar li{
  469. margin:0 0 15px 0
  470. }
  471. .sideBar li a{
  472. color:#ff6501;
  473. font-weight:600
  474. }
  475. .sideBar li a.now{
  476. color:#333
  477. }
  478. .sideBar li a:hover{
  479. color:#ca5000
  480. }
  481. .sideBar li a.now:hover{
  482. color:#333;
  483. cursor:default
  484. }
  485. .mainContent {
  486. margin:0 0 0 210px
  487. }
  488. .mainContent .title{
  489. padding:30px 0 0 0
  490. }
  491. .mainContent .title b{
  492. font-size:30px;
  493. color:#333;
  494. vertical-align: bottom;
  495. margin:0 0 0 20px
  496. }
  497. .mainContent .productTab,.dSoftInof .productTab{
  498. height:48px;
  499. background:#efefef;
  500. margin:30px 0 0 0
  501. }
  502. .productTab ul{
  503. float:right
  504. }
  505. .productTab li{
  506. display:inline-block;
  507. *display:inline;
  508. zoom:1;
  509. height:48px;
  510. line-height:48px;
  511. width:100px;
  512. text-align:center;
  513. color:#ff6501;
  514. cursor:pointer
  515. }
  516. .productTab li.now{
  517. background:url(scIcons.png) no-repeat -24px -47px;
  518. color:#333;
  519. cursor: default;
  520. font-weight:600;
  521. }
  522. .productTab li:hover{
  523. background:#f9f9f9
  524. }
  525. .productTab li.now:hover{
  526. background:url(scIcons.png) no-repeat -24px -47px
  527. }
  528. .mainContent .contentItem{
  529. margin:20px 0;
  530. min-height: 400px
  531. }
  532. .softList {
  533. margin:15px 0 200px 0
  534. }
  535. .softList li{
  536. width:100%;
  537. height:34px;
  538. margin:0 0 15px 0;
  539. padding:0 0 15px 0;
  540. border-bottom:1px dashed #ddd
  541. }
  542. .softList li:hover {
  543. border-style:none none solid none;
  544. border-color:#ff6501;
  545. }
  546. /*.softList li:hover h2{
  547. color:#ff6501
  548. }*/
  549. .softList li h2,.softList li .downInfo,.softList li .downLink{
  550. float:left;
  551. vertical-align: middle;
  552. }
  553. .softList li h2 {
  554. width:50%;
  555. font-size:14px;
  556. line-height:34px
  557. }
  558. .softList li .downInfo,.softList li .downLink{
  559. width:20%;
  560. color:#999
  561. }
  562. .softList li .downVideo{
  563. width:10%;
  564. float:left;
  565. vertical-align: middle;
  566. }
  567. .softList li .downInfo{
  568. line-height:34px
  569. }
  570. .softList li .downInfo b{
  571. font-size:18px;
  572. font-weight:normal;
  573. color:#333;
  574. vertical-align: middle
  575. }
  576. .softList li .downLink a{
  577. margin:0 10px 0 0
  578. }
  579. .zPlusDownload {
  580. margin:30px 0;
  581. }
  582. .zPlusDownload .down-btn{
  583. text-align: center;
  584. }
  585. .zPlusDownload .down-btn a{
  586. font-size: 20px;
  587. font-weight: bold;
  588. margin:0 45px 0 25px;
  589. border:1px solid #10D25F;
  590. padding:20px 85px;
  591. background:#09ba51;
  592. color:#fff;
  593. border-radius: 5px;
  594. display: inline-block
  595. }
  596. .zPlusDownload .down-btn a:hover{
  597. background:#10D25F;
  598. border:1px solid #09ba51;
  599. color:#fff;
  600. text-decoration: none;
  601. }
  602. .zPlusDownload .tips{
  603. text-align: center;
  604. margin:10px 0 20px;
  605. font-size: 18px
  606. }
  607. .versionList {
  608. margin:20px 0 100px 0
  609. }
  610. .versionList li{
  611. width:100%;
  612. margin:0 0 20px 0;
  613. padding:0 0 20px 0;
  614. border-bottom:1px dashed #ddd
  615. }
  616. .vesionTitle,.vesionItem{
  617. float:left
  618. }
  619. .vesionTitle {
  620. width:150px;
  621. padding:0 0 0 50px
  622. }
  623. .vesionTitle b{
  624. font-size:20px;
  625. font-family: Constantia,Georgia;
  626. padding:0 0 20px 0;
  627. display:block
  628. }
  629. .versionItem{
  630. margin:0 0 0 210px
  631. }
  632. .versionItem p{
  633. margin:0 0 10px 0
  634. }
  635. .videoItem{
  636. text-align:center;
  637. margin:25px 0 0 0
  638. }
  639. .videoItem ul{
  640. margin:0 0 30px 0
  641. }
  642. .videoItem li {
  643. float:left;
  644. margin:0 25px 30px;
  645. *margin:0 25px 30px 12px;
  646. position: relative;
  647. width:218px;
  648. height:165px;
  649. overflow: hidden;
  650. }
  651. .videoItem span.tips{
  652. color:#ff6501;
  653. font-size:16px
  654. }
  655. .videoItem h1{
  656. border-top:1px solid #ccc;
  657. padding:15px 0;
  658. font-size:18px
  659. }
  660. .videoItem li .videoCon{
  661. position: absolute;
  662. bottom:7px;
  663. width:100%;
  664. color:#fff;
  665. z-index:10;
  666. text-align:center;
  667. font-size:12px
  668. }
  669. .videoItem li h3{
  670. padding:5px 0 0 0;
  671. text-align: center
  672. }
  673. .videoItem li .videoCon{
  674. background:url(titleBg-black.png) repeat;
  675. z-index:9;
  676. height:100px;
  677. top:-170px;
  678. padding:70px 0 0 0
  679. }
  680. .videoItem li .videoCon a:hover{
  681. text-decoration: none
  682. }
  683. .videoItem li .videoCon span{
  684. color:#fff;
  685. font-size:16px;
  686. line-height:16px;
  687. height:16px;
  688. padding:5px;
  689. cursor:pointer
  690. }
  691. .videoItem li .videoCon span b{
  692. display:inline-block;
  693. *display:inline;
  694. zoom:1;
  695. width:16px;
  696. height:16px;
  697. background:url(scIcons.png) no-repeat 0 -95px;
  698. vertical-align: middle;
  699. padding:0 5px 0 0
  700. }
  701. .videoItem li .videoCon span.downBtn b{
  702. background-position:0 -111px
  703. }
  704. .videoItem li .videoCon span:hover{
  705. background:#ff6501
  706. }
  707. .softVideo .bottomSpace{
  708. height:100px
  709. }
  710. .softIntroduce p{
  711. margin-bottom:10px;
  712. line-height: 22px;
  713. font-size:13px;
  714. }
  715. .softIntroduce p a{
  716. font-size:13px;
  717. }
  718. .trainItem{
  719. margin:1px 0 0 0;
  720. padding:0 20px 0 20px
  721. }
  722. .trainItem .tLeft,.trainItem .tRight{
  723. width:470px
  724. }
  725. .trainItem .tImg{
  726. margin-bottom: 10px
  727. }
  728. .trainEntry {
  729. width:430px;
  730. float:left;
  731. background:#ededed;
  732. height:50px;
  733. margin:0 20px 10px 0;
  734. padding:0 20px
  735. }
  736. .trainEntry a{
  737. color:#666
  738. }
  739. .trainEntry a:hover{
  740. color:#333
  741. }
  742. .trainEntry .trainState,.trainEntry .trainTitle{
  743. float:left
  744. }
  745. .trainEntry .trainState{
  746. width:95px;
  747. line-height:50px;
  748. }
  749. .trainEntry .trainTitle{
  750. text-align: right;
  751. width:335px;
  752. float:right;
  753. height:50px;
  754. line-height:50px;
  755. overflow: hidden
  756. }
  757. .doing {
  758. background:#e9edd3
  759. }
  760. .apply {
  761. background:#f5ebc9
  762. }
  763. .trainEntry:hover{
  764. background:#e7e7e7
  765. }
  766. .doing:hover {
  767. background:#e6edbe
  768. }
  769. .apply:hover {
  770. background:#f5e5b3
  771. }
  772. .apply .trainState {
  773. line-height:35px
  774. }
  775. .apply .trainState p.tData{
  776. margin:-18px 0 0 0;
  777. color:#999
  778. }
  779. .trainList h2 {
  780. border-bottom:1px solid #ddd;
  781. padding:5px 0;
  782. margin:15px 29px 15px 0;
  783. font-size:18px
  784. }
  785. .doing span.tIcon {
  786. background:url(scIcons.png) no-repeat -87px -95px;
  787. padding:0 0 0 16px
  788. }
  789. .apply span.tIcon {
  790. background:url(scIcons.png) no-repeat -87px -112px;
  791. padding:0 0 0 16px
  792. }
  793. .loca span.tIcon {
  794. background:url(scIcons.png) no-repeat -102px -128px;
  795. }
  796. .animated {
  797. -webkit-animation-fill-mode: both;
  798. -moz-animation-fill-mode: both;
  799. -ms-animation-fill-mode: both;
  800. -o-animation-fill-mode: both;
  801. animation-fill-mode: both;
  802. -webkit-animation-duration: 1s;
  803. -moz-animation-duration: 1s;
  804. -ms-animation-duration: 1s;
  805. -o-animation-duration: 1s;
  806. animation-duration: 1s;
  807. }
  808. .animated.hinge {
  809. -webkit-animation-duration: 2s;
  810. -moz-animation-duration: 2s;
  811. -ms-animation-duration: 2s;
  812. -o-animation-duration: 2s;
  813. animation-duration: 2s;
  814. }
  815. @-webkit-keyframes shake {
  816. 0%, 100% {-webkit-transform: translateX(0);}
  817. 40% {transform: translateX(-5px);}
  818. 60% {transform: translateX(5px);}
  819. }
  820. @-moz-keyframes shake {
  821. 0%, 100% {-moz-transform: translateX(0);}
  822. 40% {transform: translateX(-5px);}
  823. 60% {transform: translateX(5px);}
  824. }
  825. @-o-keyframes shake {
  826. 0%, 100% {-o-transform: translateX(0);}
  827. 40% {transform: translateX(-5px);}
  828. 60% {transform: translateX(5px);}
  829. }
  830. @keyframes shake {
  831. 0%, 100% {transform: translateX(0);}
  832. 30% {transform: translateX(-3px);}
  833. 70% {transform: translateX(3px);}
  834. }
  835. .shake {
  836. -webkit-animation-name: shake;
  837. -moz-animation-name: shake;
  838. -o-animation-name: shake;
  839. animation-name: shake;
  840. }
  841. .trainForm {
  842. border-top:35px solid #2daebf;
  843. padding:25px 50px 50px 50px;
  844. margin:1px 0 0 0;
  845. position:relative
  846. }
  847. .trainForm a.backTrain{
  848. position:absolute;
  849. color:#fff;
  850. font-size:18px;
  851. left:10px;
  852. top:-32px
  853. }
  854. .trainForm a.backTrain:hover{
  855. left:5px
  856. }
  857. .trainFormTab {
  858. border-bottom:1px solid #2daebf;
  859. margin:15px 0 0 0
  860. }
  861. .trainFormTab a{
  862. width:150px;
  863. text-align:center;
  864. height:34px;
  865. line-height:34px;
  866. display:inline-block;
  867. *display:inline;
  868. zoom:1;
  869. background:#ededed;
  870. color:#999;
  871. cursor:pointer
  872. }
  873. .trainFormTab a:hover{
  874. background:#e6eeef;
  875. color:#333
  876. }
  877. .trainFormTab a.now{
  878. background:#2daebf;
  879. color:#fff;
  880. cursor:default
  881. }
  882. .formEntry *{
  883. font-size:14px;
  884. }
  885. .formContent {
  886. padding:15px
  887. }
  888. .formContent h1{
  889. text-align:center;
  890. color:red;
  891. font-size:40px;
  892. font-weight:600
  893. }
  894. .formContent h2{
  895. text-align:center;
  896. font-size:28px;
  897. border-top:1px solid red;
  898. padding:10px;
  899. margin:10px 0;
  900. font-weight:600
  901. }
  902. .formContent p {
  903. line-height: 22px
  904. }
  905. .formTable li {
  906. margin:15px 0;
  907. position:relative
  908. }
  909. .formTable .formTh{
  910. width:80px;
  911. height:34px;
  912. line-height:34px;
  913. text-align:center;
  914. background:#2daebf;
  915. color:#fff
  916. }
  917. .formTable .formTd {
  918. min-height: 80px;
  919. margin:0 0 0 80px;
  920. border-top:1px dashed #ddd;
  921. padding:0 20px
  922. }
  923. .formTable .formTd p{
  924. margin:10px 0
  925. }
  926. .formTable a.formDown{
  927. color:#fff;
  928. font-size:16px;
  929. line-height:30px;
  930. height:30px;
  931. padding:0 25px;
  932. background:#336699;
  933. position:absolute;
  934. right:0;
  935. top:50px
  936. }
  937. .formTable a.formDown span{
  938. display:inline-block;
  939. *display:inline;
  940. zoom:1;
  941. width:16px;
  942. height:16px;
  943. background:url(scIcons.png) no-repeat 0 -111px;
  944. vertical-align: middle;
  945. padding:0 5px 0 0
  946. }
  947. .formTable a.formDown:hover{
  948. padding:0 27px;
  949. height:32px;
  950. line-height:32px;
  951. font-weight:600;
  952. }
  953. .reportContent h1{
  954. font-size:24px;
  955. text-align:center;
  956. margin:15px 0
  957. }
  958. .reportContent p{
  959. line-height:22px;
  960. }
  961. .aboutUsBg .sideBar {
  962. border-color:#b2005e
  963. }
  964. .aboutUsBg .sideBar li a {
  965. color:#b2005e
  966. }
  967. .aboutUsBg .sideBar li.active a {
  968. color:#333
  969. }
  970. .aboutEntry {
  971. border-bottom:1px solid #ccc;
  972. padding:0 0 30px;
  973. margin:30px 0
  974. }
  975. .aboutEntry p{
  976. line-height:30px
  977. }
  978. .aboutEntry a{
  979. color:#B2005E
  980. }
  981. .aboutEntry a:hover{
  982. text-decoration:underline
  983. }
  984. .aboutEntry h2{
  985. font-size:18px;
  986. color:#333
  987. }
  988. .aboutEntry h1{
  989. font-size:24px;
  990. color:#333
  991. }
  992. .whoami h1{
  993. font-size:36px;
  994. color:#b2005e;
  995. margin:0 0 15px 0
  996. }
  997. .whoami h2{
  998. margin:30px 0 15px 0
  999. }
  1000. .myPro div.fL,.myPro div.fR{
  1001. width:380px;
  1002. margin:0 0 15px 0
  1003. }
  1004. .myPro h1{
  1005. margin:0 0 15px 0
  1006. }
  1007. .myPro h2{
  1008. margin:15px 0
  1009. }
  1010. .family h2{
  1011. margin:20px 0 15px 0
  1012. }
  1013. .workCulture div.fL{
  1014. width:223px
  1015. }
  1016. .workCulture div.middle{
  1017. margin:0 70px
  1018. }
  1019. .workCulture h1{
  1020. margin:0 0 15px 0
  1021. }
  1022. .workCulture h2{
  1023. margin:15px 0 0 0
  1024. }
  1025. .briefHistory h1{
  1026. margin:0 0 15px 0
  1027. }
  1028. .briefHistory h2{
  1029. margin:50px 0 10px 0
  1030. }
  1031. .historyList div.fL{
  1032. width:250px
  1033. }
  1034. .historyList li {
  1035. border-bottom:1px dotted #ccc;
  1036. padding:30px 0 10px 0
  1037. }
  1038. .historyList li.noline{
  1039. border-bottom:none
  1040. }
  1041. .historyList div.middle{
  1042. margin:0 30px
  1043. }
  1044. .historyList div.hdate{
  1045. font-size:16px;
  1046. color:#333;
  1047. font-weight:600;
  1048. width:60px
  1049. }
  1050. .historyList div.hitem{
  1051. margin:0 20px 0 60px;
  1052. }
  1053. .historyList div.hitem span{
  1054. font-weight:600;
  1055. }
  1056. .historyList div.hitem p{
  1057. line-height:14px;
  1058. margin:0 0 20px 0;
  1059. color:#999
  1060. }
  1061. .clientList {
  1062. padding:10px 15px;
  1063. background:#f7f7f7;
  1064. text-align:left;
  1065. margin:0 0 30px 0
  1066. }
  1067. .clientList span{
  1068. padding:10px 15px 10px 0;
  1069. display:inline-block;
  1070. *display:inline;
  1071. zoom:1
  1072. }
  1073. .workCulture,.jobs{
  1074. border:none
  1075. }
  1076. .jobs .jobEntry{
  1077. padding:10px 0
  1078. }
  1079. .jobs .jobEntry h2{
  1080. background:#F7F7F7;
  1081. cursor:pointer;
  1082. padding:3px
  1083. }
  1084. .jobs .jobEntry dl{
  1085. padding:0 0 0 20px;
  1086. display:none;
  1087. border-left:1px solid #ebebeb
  1088. }
  1089. .jobs .jobEntry dt{
  1090. color:#333;
  1091. font-size:16px;
  1092. margin:5px 0
  1093. }
  1094. .jobs .jobEntry dd{
  1095. margin:5px 0;
  1096. padding:0 20px 0 10px
  1097. }
  1098. .jobs .jobEntry.focus dl{
  1099. display:block
  1100. }
  1101. .partnerList li{
  1102. float:left;
  1103. width:90px;
  1104. padding:5px 22px 20px 22px;
  1105. text-align:center;
  1106. height:125px;
  1107. }
  1108. .partnerList li.openMore{
  1109. width:100%;
  1110. height:14px;
  1111. }
  1112. .partnerList li.openMore a{
  1113. cursor: pointer;
  1114. }
  1115. .partnerList li.moreSchool{
  1116. display: none
  1117. }
  1118. /*.contactBg .width1060{*/
  1119. /*background:url(mapBg.png) no-repeat 0 0;*/
  1120. /*height:800px;*/
  1121. /*position:relative*/
  1122. /*}*/
  1123. .contactMap {
  1124. position:absolute;
  1125. top:135px;
  1126. right:60px;
  1127. padding:10px
  1128. }
  1129. .contactMap .mapItem{
  1130. width:470px;
  1131. height:542px;
  1132. box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  1133. z-index:10;
  1134. position:relative;
  1135. float:left;
  1136. }
  1137. .contactMap .mainContact,.contactMap .allContact{
  1138. margin:20px 0 0 0;
  1139. float:left;
  1140. width:225px;
  1141. padding:15px 0 15px 15px;
  1142. background:url(contactBg.png) repeat;
  1143. box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  1144. z-index:5;
  1145. position:relative
  1146. }
  1147. .contactMap .mainContact td{
  1148. vertical-align: top;
  1149. padding:0 0 10px 0
  1150. }
  1151. .mainContact h1{
  1152. color:#f8b62a;
  1153. font-size:24px;
  1154. margin:0 0 15px 0
  1155. }
  1156. .contactMap .allContact{
  1157. width:315px;
  1158. height:565px;
  1159. overflow-y: auto;
  1160. padding:15px;
  1161. left:450px
  1162. }
  1163. .allContact dl{
  1164. margin:0 0 10px 0;
  1165. padding:0 0 10px 0;
  1166. border-bottom:1px dashed #ccc
  1167. }
  1168. .allContact dt{
  1169. margin:10px 0 0 0;
  1170. font-weight:600
  1171. }
  1172. .allContact dt span{
  1173. width:16px;
  1174. height:16px;
  1175. float:left;
  1176. background:url(scIcons.png) no-repeat -21px -97px;
  1177. margin:0 3px 0 0
  1178. }
  1179. .allContact dd{
  1180. margin:3px 0
  1181. }
  1182. .allContact dd b{
  1183. margin:0 0 0 19px
  1184. }
  1185. .contactMap a.openAll,.contactMap a.closeAll{
  1186. cursor: pointer;
  1187. }
  1188. .index h2{
  1189. font-size:24px;
  1190. border-left:10px solid #333;
  1191. margin:20px 0;
  1192. padding:0 0 0 10px;
  1193. height:24px;
  1194. line-height:24px;
  1195. color:#333
  1196. }
  1197. .index h2 a.allDown{
  1198. background:#336699;
  1199. color:#fff;
  1200. font-size:16px;
  1201. padding:0 10px;
  1202. height:24px;
  1203. line-height:24px
  1204. }
  1205. .index h2 a.allDown:hover{
  1206. background:#009F86
  1207. }
  1208. .ourService .serviceItem{
  1209. width:304px;
  1210. float:left;
  1211. position:relative
  1212. }
  1213. .ourService .indexSoft{
  1214. z-index:999
  1215. }
  1216. .ourService .indexWeb{
  1217. margin:0 50px;
  1218. z-index:0
  1219. }
  1220. .ourService .indexTrain{
  1221. z-index:0
  1222. }
  1223. .serviceItem .serviceTitle {
  1224. background:#ff6501;
  1225. color:#fff;
  1226. width:304px;
  1227. height:179px;
  1228. position: relative;
  1229. margin:0 0 20px 0;
  1230. display:inline-block
  1231. }
  1232. .serviceItem .serviceTitle h3{
  1233. font-size:18px;
  1234. margin:15px 15px 5px 15px;
  1235. height:18px;
  1236. line-height:18px
  1237. }
  1238. .serviceItem .serviceTitle h3 span{
  1239. width:18px;
  1240. height:18px;
  1241. float:left;
  1242. background:url(scIcons.png) no-repeat -41px -95px;
  1243. margin:0 10px 0 0;
  1244. vertical-align:middle
  1245. }
  1246. .serviceItem .serviceTitle p{
  1247. margin:0 15px;
  1248. line-height:21px
  1249. }
  1250. .serviceItem .serviceTitle span.arrow{
  1251. width:14px;
  1252. height:13px;
  1253. background:url(scIcons.png) no-repeat -125px -47px;
  1254. position:absolute;
  1255. top:179px;
  1256. left:15px;
  1257. font-size:1px
  1258. }
  1259. .indexSoft .serviceEntry .softEntry,.softEntryCover {
  1260. background:#ededed;
  1261. margin:0 0 10px 0;
  1262. height:55px;
  1263. padding:15px 15px 0 15px;
  1264. cursor: pointer
  1265. }
  1266. .indexSoft .softEntry span.tL,.softEntryCover span.tL {
  1267. font-size:30px;
  1268. color:#333;
  1269. display:block;
  1270. background:url(scIcons.png) no-repeat 235px -128px
  1271. }
  1272. .softEntryCover {
  1273. position: absolute;
  1274. bottom:10px;
  1275. width:304px;
  1276. cursor:default;
  1277. padding:0;
  1278. height:70px;
  1279. margin:0
  1280. }
  1281. .softEntryCover span.tL {
  1282. background:none;
  1283. color:#ccc
  1284. }
  1285. .indexSoft .softEntry span.webSoft {
  1286. background-position:235px -165px
  1287. }
  1288. .indexSoft .serviceEntry .focus{
  1289. background:#ff6501;
  1290. width:275px
  1291. }
  1292. .indexSoft .focus span.tL{
  1293. color:#fff;
  1294. background:none
  1295. }
  1296. .indexSoft .seList{
  1297. position: absolute;
  1298. background:#ff6501;
  1299. width:635px;
  1300. height:289px;
  1301. padding:30px 40px;
  1302. left:305px;
  1303. top:0;
  1304. z-index:999
  1305. }
  1306. .indexSoft .seList li{
  1307. width:317px;
  1308. float:left
  1309. }
  1310. .indexSoft .seList li a{
  1311. display:inline-block;
  1312. *dispaly:inline;
  1313. zoom:1;
  1314. color:#fff;
  1315. font-size:18px;
  1316. margin:20px 0
  1317. }
  1318. .indexSoft .seList li a:hover{
  1319. border-left:1px solid #fff;
  1320. padding-left:5px
  1321. }
  1322. .indexWeb .serviceTitle {
  1323. background:#b8d30b;
  1324. }
  1325. .indexWeb .serviceTitle h3 span{
  1326. background-position:-60px -95px
  1327. }
  1328. .indexWeb .serviceTitle span.arrow{
  1329. background-position:-139px -47px
  1330. }
  1331. .indexWeb .serviceEntry div.middle{
  1332. margin:0 2px;
  1333. }
  1334. .indexWeb .serviceEntry div:hover{
  1335. border-top:1px solid #fff
  1336. }
  1337. .indexTrain .serviceTitle {
  1338. background:#32a5b5
  1339. }
  1340. .indexTrain .serviceTitle h3 span{
  1341. background-position:-41px -114px
  1342. }
  1343. .indexTrain .serviceTitle span.arrow{
  1344. background-position:-125px -60px
  1345. }
  1346. .indexTrain .trainEntry {
  1347. width:284px;
  1348. padding:0 10px;
  1349. margin:0 0 1px 0
  1350. }
  1351. .indexTrain .trainEntry .trainState{
  1352. width:90px
  1353. }
  1354. .indexTrain .trainEntry .trainState p.tData {
  1355. font-size:11px
  1356. }
  1357. .indexTrain .trainEntry .trainTitle{
  1358. width:185px;
  1359. white-space:nowrap
  1360. }
  1361. .downloadCenter {
  1362. min-height:400px;
  1363. }
  1364. .downSelect{
  1365. margin:30px 0;
  1366. height:60px
  1367. }
  1368. .selectEntry{
  1369. width:280px;
  1370. height:50px;
  1371. line-height:50px;
  1372. background:#009F86;
  1373. color:#fff;
  1374. padding:0 20px;
  1375. position: relative;
  1376. cursor:pointer;
  1377. float:left;
  1378. margin:0 25px 0 0
  1379. }
  1380. .selectEntry span.selectTitle{
  1381. font-size:14px;
  1382. float:left;
  1383. height:50px;
  1384. line-height:50px;
  1385. width:245px
  1386. }
  1387. .selectEntry b.arrow{
  1388. height:50px;
  1389. width:50px;
  1390. position: absolute;
  1391. right:0;
  1392. top:0;
  1393. text-align:center
  1394. }
  1395. .selectEntry b.down{
  1396. background:#ededed;
  1397. color:#009F86
  1398. }
  1399. .selectEntry i.num{
  1400. position:absolute;
  1401. left:3px;
  1402. top:3px;
  1403. height:12px;
  1404. line-height:12px;
  1405. }
  1406. .selectEntry .selectList{
  1407. height:248px;
  1408. position:absolute;
  1409. top:50px;
  1410. left:0;
  1411. overflow:auto;
  1412. overflow-x:hidden;
  1413. }
  1414. .selectEntry li a{
  1415. width:300px;
  1416. padding:0 0 0 20px;
  1417. height:30px;
  1418. line-height:30px;
  1419. float:left;
  1420. background:#ededed;
  1421. color:#333;
  1422. border-bottom:1px solid #fff
  1423. }
  1424. .selectEntry li a:hover{
  1425. background:#009F86;
  1426. color:#fff
  1427. }
  1428. .selectEntry li a.now{
  1429. background:#009F86;
  1430. color:#fff
  1431. }
  1432. .selectEntry.downLink {
  1433. background:#336699;
  1434. margin:0
  1435. }
  1436. .selectEntry.downLink a{
  1437. color:#fff;
  1438. text-decoration:underline;
  1439. margin:0 0 0 20px
  1440. }
  1441. .selectEntry.downLink a:hover{
  1442. text-decoration: none;
  1443. font-weight: 600
  1444. }
  1445. .downAllSelect dl{
  1446. margin:0 0 20px 0
  1447. }
  1448. .downAllSelect dt {
  1449. background:#666;
  1450. color:#fff;
  1451. padding:5px 10px
  1452. }
  1453. .downAllSelect dd{
  1454. width:480px;
  1455. padding:15px 15px;
  1456. float:left;
  1457. border-left:1px solid #ddd;
  1458. margin:0 0 -1px -1px;
  1459. border-bottom:1px solid #ddd
  1460. }
  1461. .downAllSelect dd a{
  1462. float:right;
  1463. margin:0 0 0 5px
  1464. }
  1465. .dSoftInof .productTab .title{
  1466. margin:5px 0 0 8px;
  1467. font-size:18px;
  1468. height:32px;
  1469. line-height:32px;
  1470. }
  1471. .dSoftInof .productTab .title img{
  1472. margin:0 10px 0 0
  1473. }
  1474. .dSoftInof .videoItem li{
  1475. margin:0 18px 30px 18px
  1476. }
  1477. .dSoftInof .contentItem {
  1478. margin: 20px 0;
  1479. }
  1480. .dSoftInof .videoItem li .videoCon{
  1481. top:0
  1482. }
  1483. /*!
  1484. * Bootstrap v2.3.1
  1485. *
  1486. * Copyright 2012 Twitter, Inc
  1487. * Licensed under the Apache License v2.0
  1488. * http://www.apache.org/licenses/LICENSE-2.0
  1489. *
  1490. * Designed and built with all the love in the world @twitter by @mdo and @fat.
  1491. */
  1492. .modal-backdrop {
  1493. position: fixed;
  1494. top: 0;
  1495. right: 0;
  1496. bottom: 0;
  1497. left: 0;
  1498. z-index: 1040;
  1499. background-color: #000000;
  1500. }
  1501. .modal-backdrop.fade {
  1502. opacity: 0;
  1503. }
  1504. .modal-backdrop,
  1505. .modal-backdrop.fade.in {
  1506. opacity: 0.4;
  1507. filter: alpha(opacity=40);
  1508. }
  1509. .modal {
  1510. position: fixed;
  1511. top: 10%;
  1512. left: 50%;
  1513. z-index: 1050;
  1514. width: 560px;
  1515. margin-left: -280px;
  1516. background-color: #ffffff;
  1517. border: 1px solid #999;
  1518. border: 1px solid rgba(0, 0, 0, 0.3);
  1519. *border: 1px solid #999;
  1520. -webkit-border-radius: 6px;
  1521. -moz-border-radius: 6px;
  1522. border-radius: 6px;
  1523. outline: none;
  1524. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  1525. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  1526. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  1527. -webkit-background-clip: padding-box;
  1528. -moz-background-clip: padding-box;
  1529. background-clip: padding-box;
  1530. }
  1531. .modal.fade {
  1532. top: -25%;
  1533. -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  1534. -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  1535. -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  1536. transition: opacity 0.3s linear, top 0.3s ease-out;
  1537. }
  1538. .modal.fade.in {
  1539. top: 10%;
  1540. }
  1541. .modal-header {
  1542. padding: 9px 15px;
  1543. border-bottom: 1px solid #eee;
  1544. }
  1545. .modal-header .close {
  1546. margin-top: 2px;
  1547. }
  1548. .modal-header h3 {
  1549. margin: 0;
  1550. line-height: 30px;
  1551. }
  1552. .modal-body {
  1553. position: relative;
  1554. max-height: 400px;
  1555. padding: 15px;
  1556. overflow-y: auto;
  1557. }
  1558. .modal-form {
  1559. margin-bottom: 0;
  1560. }
  1561. .modal-footer {
  1562. padding: 14px 15px 15px;
  1563. margin-bottom: 0;
  1564. text-align: right;
  1565. background-color: #f5f5f5;
  1566. border-top: 1px solid #ddd;
  1567. -webkit-border-radius: 0 0 6px 6px;
  1568. -moz-border-radius: 0 0 6px 6px;
  1569. border-radius: 0 0 6px 6px;
  1570. *zoom: 1;
  1571. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  1572. -moz-box-shadow: inset 0 1px 0 #ffffff;
  1573. box-shadow: inset 0 1px 0 #ffffff;
  1574. }
  1575. .modal-footer:before,
  1576. .modal-footer:after {
  1577. display: table;
  1578. line-height: 0;
  1579. content: "";
  1580. }
  1581. .modal-footer:after {
  1582. clear: both;
  1583. }
  1584. .modal-footer .btn + .btn {
  1585. margin-bottom: 0;
  1586. margin-left: 5px;
  1587. }
  1588. .modal-footer .btn-group .btn + .btn {
  1589. margin-left: -1px;
  1590. }
  1591. .modal-footer .btn-block + .btn-block {
  1592. margin-left: 0;
  1593. }
  1594. .close {
  1595. float: right;
  1596. font-size: 20px;
  1597. font-weight: bold;
  1598. line-height: 20px;
  1599. color: #000000;
  1600. text-shadow: 0 1px 0 #ffffff;
  1601. opacity: 0.2;
  1602. filter: alpha(opacity=20);
  1603. }
  1604. .close:hover,
  1605. .close:focus {
  1606. color: #000000;
  1607. text-decoration: none;
  1608. cursor: pointer;
  1609. opacity: 0.4;
  1610. filter: alpha(opacity=40);
  1611. }
  1612. button.close {
  1613. padding: 0;
  1614. cursor: pointer;
  1615. background: transparent;
  1616. border: 0;
  1617. -webkit-appearance: none;
  1618. }
  1619. .adBanner{
  1620. position:absolute;
  1621. top:-45px;
  1622. width:1020px
  1623. }
  1624. #openBanner,#closeBanner{
  1625. width:12px;
  1626. position:absolute;
  1627. right:-23px;
  1628. top:0;
  1629. cursor:pointer;
  1630. background:#FF6501;
  1631. color:#fff;
  1632. padding:3px 5px;
  1633. font-weight:600;
  1634. border-bottom:1px solid #fff
  1635. }
  1636. #topBannerSmall {
  1637. text-align:right;
  1638. width:1020px
  1639. }
  1640. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  1641. /* IE10+ CSS styles go here */
  1642. .indexMedia {display:none;}
  1643. }
  1644. /*newIndex*/
  1645. .newIndex{
  1646. border-top:3px solid #333333
  1647. }
  1648. .indexMedia {
  1649. height:400px;
  1650. width:100%;
  1651. margin:1px auto 0;
  1652. position:relative;
  1653. overflow: hidden;
  1654. z-index: 99
  1655. }
  1656. .slideBanner{
  1657. height:400px;
  1658. overflow: hidden;
  1659. z-index: 0
  1660. }
  1661. .slideBanner .bannerEntry{
  1662. width:100%;
  1663. margin:0 auto
  1664. }
  1665. .bannerEntry .bImg{
  1666. width:1020px;
  1667. margin:0 auto;
  1668. position:relative
  1669. }
  1670. .bannerEntry .learnMore {
  1671. position:absolute;
  1672. right:50px;
  1673. bottom:50px;
  1674. color:#1570A6;
  1675. font-size:18px;
  1676. background:#fff;
  1677. padding:8px 15px;
  1678. border-bottom:3px solid #fff;
  1679. z-index:99;
  1680. transition: all 0.8s ease-out 0s;
  1681. transform: translateY(60px);
  1682. opacity:0
  1683. }
  1684. .bannerEntry.show .learnMore{
  1685. transform: translateY(0px);
  1686. opacity:1
  1687. }
  1688. .banner01{
  1689. background:#701585
  1690. }
  1691. .banner01 .learnMore {
  1692. background:#298514;
  1693. color:#fff
  1694. }
  1695. .banner02{
  1696. background:#b62e22
  1697. }
  1698. .banner02 .learnMore {
  1699. background:#21aab6;
  1700. color:#fff
  1701. }
  1702. .banner03{
  1703. background:url(bigbanner03.png) no-repeat center center
  1704. }
  1705. .banner03 .learnMore {
  1706. background:#333;
  1707. color:#fff
  1708. }
  1709. .banner04{
  1710. background:#ff6501
  1711. }
  1712. .banner04 .learnMore {
  1713. background:#009aff;
  1714. color:#fff
  1715. }
  1716. .banner05{
  1717. background:url(bigbanner05.png) no-repeat center center
  1718. }
  1719. .banner05 .learnMore {
  1720. background:#333;
  1721. color:#fff
  1722. }
  1723. .banner06{
  1724. background:#2d3e50
  1725. }
  1726. .banner06 .learnMore {
  1727. background:#0d75bd;
  1728. color:#fff
  1729. }
  1730. .banner07{
  1731. background:url(bigbanner07.png) no-repeat center center
  1732. }
  1733. .banner07 .learnMore {
  1734. background:#f0b500;
  1735. color:#fff
  1736. }
  1737. .banner08{
  1738. background:url(bigbanner08.png) no-repeat center center
  1739. }
  1740. .banner08 .learnMore {
  1741. background:#333;
  1742. color:#fff
  1743. }
  1744. .slidePointer {
  1745. position:absolute;
  1746. bottom:10px;
  1747. right:15px
  1748. }
  1749. .slidePointer li{
  1750. float:left;
  1751. font-size:26px;
  1752. color: #fff;
  1753. margin:0 5px 0 0;
  1754. cursor:pointer
  1755. }
  1756. .slidePointer li.now{
  1757. color:#000;
  1758. cursor:default;
  1759. text-shadow:0 1px 0px #fff
  1760. }
  1761. .warpProduct {
  1762. width:1060px;
  1763. position:relative;
  1764. margin:20px auto;
  1765. height:360px
  1766. }
  1767. .warpProduct .softItem{
  1768. padding:15px 30px 15px 30px;
  1769. width:220px;
  1770. background:#fff;
  1771. box-shadow:0 0 0 1px rgba(0, 0, 0, 0.1);
  1772. position:absolute;
  1773. top:-60px;
  1774. left:0
  1775. }
  1776. .warpProduct h2{
  1777. font-size:24px;
  1778. margin:0 0 10px 0
  1779. }
  1780. .warpProduct .softItem li{
  1781. margin:15px 0
  1782. }
  1783. .warpProduct .websiteItem{
  1784. margin:0 0 0 320px
  1785. }
  1786. .warpProduct .websiteItem a{
  1787. margin:0 1px 0 0
  1788. }
  1789. .warpProduct .protrainItem {
  1790. margin:25px 0 0 690px;
  1791. width:370px
  1792. }
  1793. .warpProduct .protrainItem li {
  1794. margin:0 0 15px 0
  1795. }
  1796. .warpProduct .protrainItem a.fR{
  1797. background: #2DAEBF;
  1798. padding:3px 5px;
  1799. color:#fff
  1800. }
  1801. .warpProduct .padItem{
  1802. position: absolute;
  1803. height:170px;
  1804. width:340px;
  1805. left:320px;
  1806. top:170px
  1807. }
  1808. .newsBg .sideBar{
  1809. border-color:#12629C;
  1810. }
  1811. .newsBg .sideBar li a {
  1812. color:#12629C
  1813. }
  1814. .newsBg .sideBar li.active a {
  1815. color:#333
  1816. }
  1817. .newsList {
  1818. margin:20px 0;
  1819. }
  1820. .newsList .nItem {
  1821. border-bottom:1px solid #f2f2f2;
  1822. padding: 20px 0;
  1823. position:relative;
  1824. min-height:140px;
  1825. }
  1826. .nItem .nThumb{
  1827. position:absolute;
  1828. width:200px;
  1829. height:140px;
  1830. overflow:hidden
  1831. }
  1832. .nItem .nCon{
  1833. margin-left:230px;
  1834. }
  1835. .nItem .nCon h2{
  1836. margin-bottom: 20px;
  1837. margin-right: 20px
  1838. }
  1839. .nItem .nCon h2 a{
  1840. font-size: 18px
  1841. }
  1842. .nItem .nCon .nDes{
  1843. color:#999;
  1844. margin-right: 20px
  1845. }
  1846. .nItem .nCon .nInfo{
  1847. color:#ccc;
  1848. margin-top: 10px
  1849. }
  1850. .nItem .nCon .nInfo a{
  1851. color:#ccc;
  1852. }
  1853. .newsContent {
  1854. position:relative;
  1855. padding:20px 0;
  1856. }
  1857. .newsCitem {
  1858. margin-right: 340px;
  1859. margin-top: 20px
  1860. }
  1861. .newSide{
  1862. float: right;
  1863. width:320px;
  1864. padding:20px 0 0 0;
  1865. }
  1866. .newSide dt{
  1867. padding:5px 0 5px 20px;
  1868. font-size: 18px;
  1869. border-left:1px solid #12629C;
  1870. }
  1871. .newSide dd{
  1872. border-left:1px solid #ddd;
  1873. padding:10px 10px 20px 20px
  1874. }
  1875. .newSide dd a{
  1876. font-size:14px;
  1877. }
  1878. .newsCitem p{
  1879. font-size: 16px;
  1880. line-height:28px;
  1881. }
  1882. .newsCitem p a{
  1883. font-size: 16px;
  1884. }
  1885. .ncTitle {
  1886. background-size:cover;
  1887. background-position: center;
  1888. height:200px;
  1889. overflow:hidden;
  1890. position:relative
  1891. }
  1892. .ncTitle .wrapBg{
  1893. background:rgba(0,0,0,0.5);
  1894. background:none\9;
  1895. height:100%
  1896. }
  1897. .ncTitle h1{
  1898. font-size: 26px;
  1899. color:#fff;
  1900. padding-top:50px;
  1901. margin:0 40px 0 40px;
  1902. text-shadow:0 1px 1px #333;
  1903. }
  1904. .ncTitle p {
  1905. position:absolute;
  1906. bottom:30px;
  1907. left:40px;
  1908. color:#f2f2f2;
  1909. text-shadow:0 1px 2px #333;
  1910. }
  1911. .ncTitle p a{
  1912. color:#fff;
  1913. }
  1914. .pagination .none {
  1915. color:#ccc;
  1916. text-decoration: none;
  1917. cursor:default;
  1918. }
  1919. .webproLink li{
  1920. line-height:32px;
  1921. height:32px;
  1922. margin:10px 0 20px 0
  1923. }
  1924. .webproLink .icon{
  1925. height:32px;
  1926. width:32px;
  1927. display:inline-block;
  1928. *display:inline;
  1929. zoom:1;
  1930. background:url(webpro.png) no-repeat;
  1931. margin:0 10px 0 0;
  1932. vertical-align: top;
  1933. }
  1934. .webproLink .icon.iconol{
  1935. background-position:0 -32px
  1936. }
  1937. .webproLink .icon.iconsso{
  1938. background-position:0 0
  1939. }
  1940. .webproLink .icon.iconqy{
  1941. background-position:0 -64px
  1942. }
  1943. .webproLink li a{
  1944. font-size:18px;
  1945. display:inline-block;
  1946. *display:inline;
  1947. zoom:1;
  1948. height:32px;
  1949. line-height:32px
  1950. }
  1951. .bolangbanner {
  1952. bottom: 0;
  1953. height: 100px;
  1954. position: absolute;
  1955. width: 100%;
  1956. z-index:0;
  1957. }
  1958. #banner_bolang_bg_1{
  1959. position: absolute;
  1960. height:85px;
  1961. background: url(wave1.png) repeat-x;
  1962. width:300%;
  1963. bottom:0;
  1964. }
  1965. #banner_bolang_bg_2{
  1966. position: absolute;
  1967. height:100px;
  1968. background: url(wave2.png) repeat-x;
  1969. width:300%;
  1970. top:0;
  1971. }
  1972. .searchWrap {
  1973. border-top:3px solid #333;
  1974. }
  1975. .searchWrap .searchPanel {
  1976. box-shadow:1px 2px 3px #E7E7E7;
  1977. position: relative;
  1978. width:565px;
  1979. margin: 30px auto
  1980. }
  1981. .searchPanel .sInptw {
  1982. display: inline-block;
  1983. height: 48px;
  1984. width: 500px;
  1985. overflow: hidden;
  1986. border-width: 1px 0px 1px 1px;
  1987. border-color: #B5B5B5;
  1988. border-style: solid;
  1989. background-color: #FFF;
  1990. vertical-align: top;
  1991. box-shadow: 1px 1px 2px #E7E7E7 inset;
  1992. }
  1993. .searchPanel .sSel {
  1994. font-size: 12px;
  1995. position: absolute;
  1996. left:10px;
  1997. top:12px;
  1998. z-index: 99;
  1999. }
  2000. .searchPanel .sSel select{
  2001. padding:5px 0;
  2002. }
  2003. .searchPanel .sBtn {
  2004. position: relative;
  2005. cursor: pointer;
  2006. width: 64px;
  2007. height: 50px;
  2008. overflow: hidden;
  2009. vertical-align: top;
  2010. background-position: 50% 0px;
  2011. background-repeat: no-repeat;
  2012. float:right;
  2013. }
  2014. .searchPanel .sBtn input{
  2015. position: absolute;
  2016. background:#ff6501;
  2017. width: 64px;
  2018. height: 50px;
  2019. line-height:40px;
  2020. font-size: 18px;
  2021. text-align: center;
  2022. color:#fff;
  2023. cursor: pointer;
  2024. border:none
  2025. }
  2026. .searchPanel .sBtn input:hover{
  2027. background-color: #ff7b25;
  2028. }
  2029. .searchPanel .sBtn input:active{
  2030. line-height: 50px
  2031. }
  2032. .searchPanel .sInptw input{
  2033. background: none repeat scroll 0% 0% transparent;
  2034. outline: 0px none;
  2035. width: 430px;
  2036. height: 38px;
  2037. padding: 6px 5px 3px 100px;
  2038. font-size: 18px;
  2039. color: #666;
  2040. border:none;
  2041. }
  2042. .searchResults .entry {
  2043. margin:0px 0 15px;
  2044. padding:0px 0 15px 0;
  2045. border-bottom:1px dashed #ddd;
  2046. }
  2047. .searchResults .entry a.title{
  2048. font-size:16px;
  2049. }
  2050. .mainContent_con{
  2051. }
  2052. .security_h{
  2053. text-align:center;
  2054. margin:45px 0 20px;
  2055. font-size:30px;
  2056. color:#666;
  2057. }
  2058. .security_con{
  2059. position:relative;
  2060. text-align:center;
  2061. background:url(securityBg.png) no-repeat 255px 0;
  2062. margin:15px 0 35px 0;
  2063. }
  2064. .security_inputLock{
  2065. text-align:center;
  2066. padding:45px 0;
  2067. }
  2068. .security_inputLock span{
  2069. position:relative;
  2070. font-size:30px;
  2071. }
  2072. .security_input{
  2073. width:240px;
  2074. font-size:30px;
  2075. border:none;
  2076. background:#f3f3f3;
  2077. color:#ff6501;
  2078. padding:3px 0 3px 10px;
  2079. }
  2080. .security_inputLock .tips{
  2081. position:absolute;
  2082. left:15px;
  2083. top:5px;
  2084. }
  2085. .security_Lock{
  2086. position:absolute;
  2087. z-index:99;
  2088. left:350px;
  2089. top:90px;
  2090. display:none;
  2091. }
  2092. .security_btn{
  2093. margin:50px 0;
  2094. text-align:center;
  2095. }
  2096. .security_btn a{
  2097. text-decoration:none;
  2098. }
  2099. .btn_security{
  2100. font-size:30px;
  2101. color:#fff;
  2102. background:#ff6501;
  2103. border-radius:5px;
  2104. -moz-border-radius:5px;
  2105. -webkit-border-radius:5px;
  2106. padding:10px 100px;
  2107. border:none
  2108. }
  2109. .btn_security:hover{
  2110. color:#fff;
  2111. background:#ec5d00;
  2112. border:none
  2113. }
  2114. .btn_security:active{
  2115. color:#fff;
  2116. background:#ff6501;
  2117. border:none
  2118. }
  2119. .piracy_con{
  2120. text-align:center;
  2121. margin:65px 0;
  2122. text-align:center;
  2123. font-size:20px;
  2124. color:#ff6501;
  2125. }
  2126. .genuine_con{
  2127. margin:45px 0;
  2128. color:#666;
  2129. }
  2130. .genuine_con h2{
  2131. text-align:center;
  2132. height:45px;
  2133. line-height:45px;
  2134. font-size:20px;
  2135. }
  2136. .genuine_con ul{
  2137. margin:0 0 0 326px;
  2138. }
  2139. .genuine_con ul li{
  2140. font-size:16px;
  2141. padding:3px 0;
  2142. }
  2143. .trainingCon ul li{
  2144. float:left;
  2145. margin:15px 30px 15px 30px;
  2146. }
  2147. .trainingImg img{
  2148. width:210px;
  2149. height:210px;
  2150. }
  2151. /*-2.0首页-*/
  2152. /*顶部*/
  2153. .warp-header {
  2154. height:60px;
  2155. }
  2156. .warp-header-shell {
  2157. width:1060px;
  2158. margin:0 auto;
  2159. }
  2160. .warp-header .header-logo a{
  2161. float:left;
  2162. width:60px;
  2163. height:60px;
  2164. background:url(scIcons.png) no-repeat -62px -205px;
  2165. }
  2166. .warp-header .header-nav {
  2167. margin-left: 20px
  2168. }
  2169. .warp-header .header-nav h2{
  2170. font-size: 16px;
  2171. line-height: 60px;
  2172. color:#2F2F2F;
  2173. }
  2174. .warp-header .header-nav h3{
  2175. font-size: 16px;
  2176. color:#ff6501;
  2177. font-weight: 600;
  2178. margin-top: 5px
  2179. }
  2180. .warp-header .header-nav .qq-online{
  2181. width:170px;
  2182. height:26px;
  2183. background:url(qqonline.png) no-repeat;
  2184. cursor: pointer;
  2185. }
  2186. .warp-header .header-nav .qq-online:hover{
  2187. background:url(qqonline_hover.png) no-repeat;
  2188. }
  2189. .warp-header .header-nav h2 > a{
  2190. font-size: 16px;
  2191. line-height: 60px;
  2192. color:#2F2F2F;
  2193. }
  2194. .header-nav .nav-main {
  2195. float:left;
  2196. padding:0 20px;
  2197. position:relative;
  2198. cursor:pointer;
  2199. z-index: 999
  2200. }
  2201. .header-nav .nav-main.text {
  2202. float:left;
  2203. padding:0 20px;
  2204. position:relative;
  2205. cursor:default;
  2206. z-index: 999;
  2207. }
  2208. .header-nav .nav-main:hover {
  2209. background-color: #F1F1F1
  2210. }
  2211. .header-nav .nav-main.text:hover {
  2212. background-color:#fff
  2213. }
  2214. .header-nav .nav-main:hover > h2{
  2215. color:#2f2f2f
  2216. }
  2217. .header-nav .nav-main.active {
  2218. background-color: #F1F1F1
  2219. }
  2220. .header-nav .nav-main.active > h2{
  2221. color:#2f2f2f
  2222. }
  2223. .header-nav h2 .nav-icon{
  2224. margin:0 0 0 10px;
  2225. vertical-align:middle
  2226. }
  2227. .header-nav .nav-icon {
  2228. background:url(scIcons.png) no-repeat 0 0;
  2229. display:inline-block;
  2230. width:16px;
  2231. height:16px
  2232. }
  2233. .nav-drop .nav-icon{
  2234. float:right;
  2235. margin-top:18px;
  2236. }
  2237. .nav-icon.icon-up {
  2238. background-position: -123px -205px
  2239. }
  2240. .nav-icon.icon-right {
  2241. background-position: -123px -239px
  2242. }
  2243. .nav-drop {
  2244. position:absolute;
  2245. background-color:#f1f1f1;
  2246. min-width:200px;
  2247. max-width:200px;
  2248. left:0;
  2249. z-index: 999
  2250. }
  2251. .nav-drop dt {
  2252. height:50px;
  2253. line-height:50px;
  2254. padding:0 20px;
  2255. color:#2F2F2F;
  2256. width:160px;
  2257. }
  2258. .nav-drop dt > a{
  2259. color:#2F2F2F;
  2260. text-decoration: none;
  2261. float:left;
  2262. width:160px
  2263. }
  2264. .nav-drop dt > a:hover {
  2265. text-decoration:underline
  2266. }
  2267. .nav-drop dt.active{
  2268. background-color:#E5E5E5
  2269. }
  2270. .nav-drop dt:hover{
  2271. background-color:#E5E5E5
  2272. }
  2273. .nav-drop dt.active .nav-icon{
  2274. opacity:0.2;
  2275. }
  2276. .nav-dropdown-content {
  2277. position:absolute;
  2278. left:200px;
  2279. background-color:#E5E5E5;
  2280. width:200px;
  2281. top:0;
  2282. }
  2283. .nav-dropdown-content li {
  2284. height:50px;
  2285. line-height:50px;
  2286. display:block;
  2287. width:200px;
  2288. padding:0;
  2289. }
  2290. .nav-dropdown-content li:hover {
  2291. background-color: #D9D9D9;
  2292. }
  2293. .nav-dropdown-content li a{
  2294. display:inline-block;
  2295. padding:0 20px;
  2296. width:160px;
  2297. color:#2F2F2F;
  2298. }
  2299. .nav-dropdown-content li a:hover{
  2300. background-color: #D9D9D9;
  2301. }
  2302. .index-header .active .nav-icon.icon-up {
  2303. background-position: -123px -205px
  2304. }
  2305. .index-header li:hover .nav-icon.icon-up {
  2306. background-position: -123px -205px
  2307. }
  2308. .header-search{
  2309. float:right;
  2310. height:60px;
  2311. line-height: 60px
  2312. }
  2313. .header-search .search-bar{
  2314. height:24px;
  2315. background:#fff;
  2316. line-height: 24px;
  2317. padding:2px;
  2318. margin-top: 15px;
  2319. border:1px solid #ddd;
  2320. }
  2321. .search-bar .search-input{
  2322. height:22px;
  2323. background:#fff;
  2324. border:none;
  2325. display:inline-block;
  2326. padding:0 5px;
  2327. width:90px;
  2328. }
  2329. .search-bar .search-submit{
  2330. height:24px;
  2331. background:#ff6501;
  2332. color:#fff;
  2333. border:none;
  2334. display:inline-block;
  2335. padding:0 5px;
  2336. cursor:pointer;
  2337. }
  2338. .search-bar .search-submit:hover{
  2339. background:#ff8130;
  2340. }
  2341. .search-bar select{
  2342. border:1px solid #fff
  2343. }
  2344. .header-search .search-icon{
  2345. width:24px;
  2346. height:24px;
  2347. background:url(search-icon.png) no-repeat 0 0;
  2348. display:inline-block;
  2349. cursor:pointer;
  2350. vertical-align:middle
  2351. }
  2352. /*首页顶部*/
  2353. .index-header{
  2354. position:absolute;
  2355. width:100%;
  2356. z-index: 999;
  2357. background:url(header-bg.png) repeat center center;
  2358. }
  2359. .index-header .header-logo a{
  2360. background-position: 0px -205px
  2361. }
  2362. .index-header .header-nav h2 {
  2363. color:#fff;
  2364. font-weight: 600
  2365. }
  2366. .index-header .nav-icon.icon-up {
  2367. background-position: -140px -205px
  2368. }
  2369. .index-header .header-search .search-icon{
  2370. background:url(search-icon.png) no-repeat 0 -24px
  2371. }
  2372. .index-header .header-search .search-bar{
  2373. border:1px solid #fff;
  2374. }
  2375. /*广告*/
  2376. .warp-banner {
  2377. height:500px;
  2378. width:100%;
  2379. position:relative;
  2380. background-color: #333
  2381. }
  2382. .banner-shell {
  2383. height:500px;
  2384. overflow:hidden;
  2385. }
  2386. .banner-entry {
  2387. position:absolute;
  2388. height:500px;
  2389. width:100%;
  2390. opacity:0;
  2391. overflow:hidden;
  2392. transition: all 0.6s ease-out 0s;
  2393. }
  2394. .banner-entry.show{
  2395. opacity:1;
  2396. }
  2397. .banner-entry .banner-images{
  2398. width:1060px;
  2399. height:500px;
  2400. position:relative;
  2401. margin:0 auto;
  2402. overflow:hidden;
  2403. }
  2404. /*计量支付*/
  2405. .banner-entry.banner-one {
  2406. background:#B6BA6B url(bing-banner01.jpg) center center
  2407. }
  2408. .banner-one .animation{
  2409. position:absolute;
  2410. opacity:0
  2411. }
  2412. .banner-one .images-1{
  2413. background:url(banner-jlzf.png) 0 0;
  2414. width:504px;
  2415. height:392px;
  2416. bottom:40px;
  2417. right:35px;
  2418. transition: all 0.8s ease-out 0s;
  2419. transform: translateY(-60px);
  2420. transition-delay: 0.2s;
  2421. }
  2422. .banner-one .images-2{
  2423. background:url(banner-jlzf.png) 0 -392px;
  2424. width:376px;
  2425. height:219px;
  2426. bottom:25px;
  2427. right:354px;
  2428. transition: all 0.8s ease-in 0s;
  2429. transform: translateX(-70px);
  2430. }
  2431. .banner-one .images-3{
  2432. background:url(banner-jlzf.png) 0 -611px;
  2433. width:237px;
  2434. height:168px;
  2435. bottom:25px;
  2436. right:5px;
  2437. transition: all 0.8s ease-in 0s;
  2438. transform: translateX(70px);
  2439. }
  2440. .banner-one.show .images-1{
  2441. transform: translateY(0px);
  2442. opacity:1;
  2443. }
  2444. .banner-one.show .images-2{
  2445. transform: translateX(0px);
  2446. opacity:1;
  2447. }
  2448. .banner-one.show .images-3{
  2449. transform: translateX(0px);
  2450. opacity:1;
  2451. }
  2452. .banner-one .title-1{
  2453. background:url(banner-jlzf.png) 0 -780px;
  2454. width:470px;
  2455. height:38px;
  2456. top:135px;
  2457. left:15px;
  2458. transition: all 0.4s ease-out 0s;
  2459. transform: translateX(30px);
  2460. }
  2461. .banner-one .title-2{
  2462. background:url(banner-jlzf.png) -335px -610px;
  2463. width:239px;
  2464. height:30px;
  2465. top:230px;
  2466. left:15px;
  2467. transition: all 0.2s ease-in 0s;
  2468. transform: translateX(30px);
  2469. transition-delay: 0.2s;
  2470. }
  2471. .banner-one .title-3{
  2472. background:url(banner-jlzf.png) -335px -648px;
  2473. width:209px;
  2474. height:30px;
  2475. top:285px;
  2476. left:15px;
  2477. transition: all 0.2s ease-in 0s;
  2478. transform: translateX(30px);
  2479. transition-delay: 0.4s;
  2480. }
  2481. .banner-one .title-4{
  2482. background:url(banner-jlzf.png) -335px -685px;
  2483. width:209px;
  2484. height:30px;
  2485. top:336px;
  2486. left:15px;
  2487. transition: all 0.2s ease-in 0s;
  2488. transform: translateX(30px);
  2489. transition-delay: 0.6s;
  2490. }
  2491. .banner-one.show .title-1{
  2492. transform: translateX(0px);
  2493. opacity:1;
  2494. }
  2495. .banner-one.show .title-2{
  2496. transform: translateX(0px);
  2497. opacity:1;
  2498. }
  2499. .banner-one.show .title-3{
  2500. transform: translateX(0px);
  2501. opacity:1;
  2502. }
  2503. .banner-one.show .title-4{
  2504. transform: translateX(0px);
  2505. opacity:1;
  2506. }
  2507. .banner-one .more-button{
  2508. position:absolute;
  2509. top:420px;
  2510. left:15px;
  2511. z-index: 99;
  2512. opacity:0;
  2513. transition: all 0.2s ease-in 0s;
  2514. transform: translateX(30px);
  2515. transition-delay: 0.8s;
  2516. }
  2517. .banner-one.show .more-button{
  2518. transform: translateX(0px);
  2519. opacity:1;
  2520. }
  2521. .banner-one .more-button a{
  2522. color:#333;
  2523. background:#fff;
  2524. border:1px solid #fff;
  2525. padding:15px 30px;
  2526. text-decoration: none;
  2527. font-size: 16px
  2528. }
  2529. .banner-one .more-button a:hover{
  2530. color:#333;
  2531. background:#fff;
  2532. padding:17px 32px;
  2533. }
  2534. /*计量支付*/
  2535. /*计量支付2*/
  2536. .banner-entry.banner-seven {
  2537. background:#B6BA6B url(bing-banner06.jpg) center center
  2538. }
  2539. .banner-seven .animation{
  2540. position:absolute;
  2541. opacity:0
  2542. }
  2543. .banner-seven .images-2{
  2544. background:url(banner-jlzf2.png) 0 0;
  2545. width:440px;
  2546. height:342px;
  2547. bottom:5px;
  2548. left:376px;
  2549. transition: all 0.8s ease-in 0s;
  2550. transform: translateX(-70px);
  2551. }
  2552. .banner-seven .images-3{
  2553. background:url(banner-jlzf2.png) 0 -352px;
  2554. width:325px;
  2555. height:192px;
  2556. bottom:5px;
  2557. left:180px;
  2558. transition: all 0.8s ease-in 0s;
  2559. transform: translateX(70px);
  2560. }
  2561. .banner-seven.show .images-2{
  2562. transform: translateX(0px);
  2563. opacity:1;
  2564. }
  2565. .banner-seven.show .images-3{
  2566. transform: translateX(0px);
  2567. opacity:1;
  2568. }
  2569. .banner-seven .title-1{
  2570. background:url(banner-jlzf2.png) 0 -544px;
  2571. width:631px;
  2572. height:47px;
  2573. top:28px;
  2574. left:230px;
  2575. transition: all 0.4s ease-out 0s;
  2576. transform: translateX(30px);
  2577. }
  2578. .banner-seven .title-2{
  2579. background:url(banner-jlzf2.png) 0 -591px;
  2580. width:683px;
  2581. height:47px;
  2582. top:85px;
  2583. <<<<<<< HEAD
  2584. left:315px;
  2585. =======
  2586. left:305px;
  2587. >>>>>>> e7aed4bb57c01dc6c86f4dc4e439b97174a2dd46
  2588. transition: all 0.2s ease-in 0s;
  2589. transform: translateX(30px);
  2590. transition-delay: 0.2s;
  2591. }
  2592. .banner-seven.show .title-1{
  2593. transform: translateX(0px);
  2594. opacity:1;
  2595. }
  2596. .banner-seven.show .title-2{
  2597. transform: translateX(0px);
  2598. opacity:1;
  2599. }
  2600. .banner-seven .more-button{
  2601. position:absolute;
  2602. top:450px;
  2603. right:200px;
  2604. z-index: 99;
  2605. opacity:0;
  2606. transition: all 0.2s ease-in 0s;
  2607. transform: translateX(30px);
  2608. transition-delay: 0.8s;
  2609. }
  2610. .banner-seven.show .more-button{
  2611. transform: translateX(0px);
  2612. opacity:1;
  2613. }
  2614. .banner-seven .more-button a{
  2615. color:#333;
  2616. background:#fff;
  2617. border:1px solid #fff;
  2618. padding:15px 30px;
  2619. text-decoration: none;
  2620. font-size: 16px
  2621. }
  2622. .banner-seven .more-button a:hover{
  2623. color:#333;
  2624. background:#fff;
  2625. padding:17px 32px;
  2626. }
  2627. /*计量支付2*/
  2628. /*N合1*/
  2629. .banner-entry.banner-two {
  2630. background:#ed6455 url(bing-banner02.jpg) center center
  2631. }
  2632. .banner-two .animation{
  2633. position:absolute;
  2634. opacity:0
  2635. }
  2636. .banner-two .title-1{
  2637. background:url(banner-ninone.png) 0 0;
  2638. width:427px;
  2639. height:135px;
  2640. top:175px;
  2641. left:125px;
  2642. transition: all 0.4s ease-out 0s;
  2643. transform: translateX(-60px);
  2644. }
  2645. .banner-two .title-2{
  2646. background:url(banner-ninone.png) 0 -135px;
  2647. width:332px;
  2648. height:122px;
  2649. top:190px;
  2650. right:125px;
  2651. transition: all 0.4s ease-out 0s;
  2652. transform: translateX(60px);
  2653. }
  2654. .banner-two .title-3{
  2655. left:0;
  2656. top:0;
  2657. width:70px;
  2658. opacity:1;
  2659. height:122px;background:url(banner-ninone1.png) 0 0
  2660. }
  2661. .banner-two .more-button{
  2662. position:absolute;
  2663. top:385px;
  2664. left:475px;
  2665. z-index: 99;
  2666. opacity:0;
  2667. transition: all 0.4s ease-in 0s;
  2668. transform: translateY(30px);
  2669. transition-delay: 0.2s;
  2670. }
  2671. .banner-two.show .more-button{
  2672. transform: translateY(0px);
  2673. opacity:1;
  2674. }
  2675. .banner-two .more-button a{
  2676. color:#cf4a3e;
  2677. background:#fff;
  2678. border:1px solid #fff;
  2679. padding:15px 30px;
  2680. text-decoration: none;
  2681. font-size: 16px
  2682. }
  2683. .banner-two .more-button a:hover{
  2684. color:#cf4a3e;
  2685. background:#fff;
  2686. padding:17px 32px;
  2687. }
  2688. .banner-two.show .title-1{
  2689. transform: translateX(0px);
  2690. opacity:1;
  2691. }
  2692. .banner-two.show .title-2{
  2693. transform: translateX(0px);
  2694. opacity:1;
  2695. }
  2696. .banner-two.show .title-3{
  2697. -webkit-animation:pulse 0.4s infinite ease;
  2698. -moz-animation:pulse 0.4s infinite ease;}
  2699. @-webkit-keyframes pulse{
  2700. 0%{background:url(banner-ninone1.png) 0 -122px;}
  2701. 25%{background:url(banner-ninone1.png) 0 -244px;}
  2702. 50%{background:url(banner-ninone1.png) 0 -366px;}
  2703. 75%{background:url(banner-ninone1.png) 0 -488px;}
  2704. 100%{background:url(banner-ninone1.png) 0 -610px;}
  2705. }
  2706. @-moz-keyframes pulse{
  2707. 0%{background:url(banner-ninone1.png) 0 -122px;}
  2708. 25%{background:url(banner-ninone1.png) 0 -244px;}
  2709. 50%{background:url(banner-ninone1.png) 0 -366px;}
  2710. 75%{background:url(banner-ninone1.png) 0 -488px;}
  2711. 100%{background:url(banner-ninone1.png) 0 -610px;}
  2712. }
  2713. /*N合1*/
  2714. /*V908*/
  2715. .banner-entry.banner-three {
  2716. background:#efefef url(bing-banner03.jpg) center center
  2717. }
  2718. .banner-three .animation{
  2719. position:absolute;
  2720. opacity:0
  2721. }
  2722. .banner-three .title-1{
  2723. background:url(banner-908.png) 0px 0px;
  2724. width:653px;
  2725. height:50px;
  2726. top:170px;
  2727. left:200px;
  2728. transition: all 0.2s ease-in 0s;
  2729. transform: translateY(30px);
  2730. transition-delay: 0.2s;
  2731. }
  2732. .banner-three .title-2{
  2733. background:url(banner-908.png) 0px -50px;
  2734. width:275px;
  2735. height:108px;
  2736. top:240px;
  2737. left:585px;
  2738. transition: all 0.2s ease-in 0s;
  2739. transform: translateY(30px);
  2740. transition-delay: 0.4s;
  2741. }
  2742. .banner-three .title-3{
  2743. background:url(banner-908.png) 0px -158px;
  2744. width:359px;
  2745. height:83px;
  2746. top:252px;
  2747. left:200px;
  2748. transition: all 0.2s ease-in 0s;
  2749. transform: translateY(30px);
  2750. transition-delay: 0.8s;
  2751. }
  2752. .banner-three.show .title-1{
  2753. transform: translateY(0px);
  2754. opacity:1;
  2755. }
  2756. .banner-three.show .title-2{
  2757. transform: translateY(0px);
  2758. opacity:1;
  2759. -webkit-animation:shak 0.7s infinite ease;
  2760. -moz-animation:shak 0.7s infinite ease;
  2761. animation:shak 0.7s infinite ease;
  2762. }
  2763. @-webkit-keyframes shak{
  2764. 0%,100%{-webkit-transform:translateY(0);}
  2765. 10%,30%,50%,70%, 90%{-webkit-transform:translateY(-10px);}
  2766. 20%,40%,60%,80%{-webkit-transform:translateX(10px);}
  2767. }
  2768. @-moz-keyframes shak{
  2769. 0%,100%{-moz-transform:translateY(0);}
  2770. 10%,30%,50%,70%, 90%{-moz-transform:translateY(-10px);}
  2771. 20%,40%,60%,80%{-moz-transform:translateX(10px);}
  2772. }
  2773. @keyframes shak{
  2774. 0%,100%{transform:translateY(0);}
  2775. 10%,30%,50%,70%, 90%{transform:translateY(-10px);}
  2776. 20%,40%,60%,80%{transform:translateX(10px);}
  2777. }
  2778. .banner-three.show .title-3{
  2779. transform: translateY(0px);
  2780. opacity:1;
  2781. }
  2782. .banner-three .more-button{
  2783. position:absolute;
  2784. top:420px;
  2785. right:200px;
  2786. z-index: 99;
  2787. opacity:0;
  2788. transition: all 0.4s ease-in 0s;
  2789. transform: translateY(30px);
  2790. transition-delay: 0.2s;
  2791. }
  2792. .banner-three.show .more-button{
  2793. transform: translateY(0px);
  2794. opacity:1;
  2795. }
  2796. .banner-three .more-button a{
  2797. color:#fff;
  2798. background:#FF6501;
  2799. border:1px solid #FF6501;
  2800. padding:15px 30px;
  2801. text-decoration: none;
  2802. font-size: 16px
  2803. }
  2804. .banner-three .more-button a:hover{
  2805. color:#fff;
  2806. background:#FF6501;
  2807. padding:17px 32px;
  2808. }
  2809. /*908*/
  2810. /*网络版*/
  2811. .banner-entry.banner-four {
  2812. background:#e36335 url(bing-banner04.jpg) center center
  2813. }
  2814. .banner-four .animation{
  2815. position:absolute;
  2816. opacity:0
  2817. }
  2818. .banner-four .images-1{
  2819. background:url(banner-ol.png) 0 0;
  2820. width:261px;
  2821. height:206px;
  2822. top:47px;
  2823. left:89px;
  2824. transition: all 0.8s ease-out 0s;
  2825. transform: translateY(-30px);
  2826. }
  2827. .banner-four .title-1{
  2828. background:url(banner-ol.png) -261px 0;
  2829. width:555px;
  2830. height:121px;
  2831. top:88px;
  2832. right:89px;
  2833. transition: all 0.8s ease-in 0s;
  2834. transform: translateY(-30px);
  2835. }
  2836. .banner-four .title-2{
  2837. background:url(banner-ol.png) 0 -206px;
  2838. width:634px;
  2839. height:69px;
  2840. top:290px;
  2841. left:215px;
  2842. transition: all 0.4s ease-in 0s;
  2843. transition-delay: 0.8s;
  2844. transform: translateY(-40px);
  2845. }
  2846. .banner-four.show .images-1{
  2847. transform: translateY(0px);
  2848. opacity:1;
  2849. }
  2850. .banner-four.show .title-1{
  2851. transform: translateY(0px);
  2852. opacity:1;
  2853. }
  2854. .banner-four.show .title-2{
  2855. transform: translateY(0px);
  2856. opacity:1;
  2857. }
  2858. .banner-four .more-button{
  2859. position:absolute;
  2860. top:405px;
  2861. left:475px;
  2862. z-index: 99;
  2863. opacity:0;
  2864. transition: all 0.4s ease-in 0s;
  2865. transform: translateY(-30px);
  2866. transition-delay: 0.8s;
  2867. }
  2868. .banner-four.show .more-button{
  2869. transform: translateY(0px);
  2870. opacity:1;
  2871. }
  2872. .banner-four .more-button a{
  2873. color:#cf4a3e;
  2874. background:#fff;
  2875. border:1px solid #fff;
  2876. padding:15px 30px;
  2877. text-decoration: none;
  2878. font-size: 16px
  2879. }
  2880. .banner-four .more-button a:hover{
  2881. color:#cf4a3e;
  2882. background:#fff;
  2883. padding:17px 32px;
  2884. }
  2885. /*招聘*/
  2886. .banner-entry.banner-five {
  2887. background:#e36335 url(bing-banner05.jpg) center center
  2888. }
  2889. .banner-five .animation{
  2890. position:absolute;
  2891. opacity:0
  2892. }
  2893. .banner-five .more-button{
  2894. position:absolute;
  2895. top:405px;
  2896. left:50%;
  2897. margin-left:-103px;
  2898. z-index: 99;
  2899. opacity:0;
  2900. transition: all 0.4s ease-in 0s;
  2901. transform: translateY(-30px);
  2902. transition-delay: 0.8s;
  2903. }
  2904. .banner-five.show .more-button{
  2905. transform: translateY(0px);
  2906. opacity:1;
  2907. }
  2908. .banner-five .more-button a{
  2909. color:#cf4a3e;
  2910. background:#fff;
  2911. border:1px solid #fff;
  2912. padding:15px 30px;
  2913. text-decoration: none;
  2914. font-size: 16px
  2915. }
  2916. .banner-five .more-button a:hover{
  2917. color:#cf4a3e;
  2918. background:#fff;
  2919. padding:17px 32px;
  2920. }
  2921. /*招聘*/
  2922. /*大司空*/
  2923. .banner-entry.banner-ten {
  2924. background:#e36335 url(bing-banner07.jpg) center center
  2925. }
  2926. .banner-ten .animation{
  2927. position:absolute;
  2928. opacity:0
  2929. }
  2930. .banner-ten .title-1{
  2931. <<<<<<< HEAD
  2932. top:25px;
  2933. width: 100%;
  2934. text-align: center;
  2935. =======
  2936. top:30px;
  2937. left:150px;
  2938. width: 100%;
  2939. text-align: left;
  2940. >>>>>>> e7aed4bb57c01dc6c86f4dc4e439b97174a2dd46
  2941. font-size: 46px;
  2942. color: #fff;
  2943. transition: all 0.4s ease-out 0s;
  2944. transform: translateX(30px);
  2945. }
  2946. .banner-ten .title-2{
  2947. <<<<<<< HEAD
  2948. top:85px;
  2949. width: 100%;
  2950. text-align: center;
  2951. =======
  2952. top:90px;
  2953. left:210px;
  2954. width: 100%;
  2955. text-align: left;
  2956. >>>>>>> e7aed4bb57c01dc6c86f4dc4e439b97174a2dd46
  2957. font-size: 46px;
  2958. color: #fff;
  2959. transition: all 0.2s ease-in 0s;
  2960. transform: translateX(30px);
  2961. transition-delay: 0.2s;
  2962. }
  2963. .banner-ten.show .title-1{
  2964. transform: translateX(0px);
  2965. opacity:1;
  2966. }
  2967. .banner-ten.show .title-2{
  2968. transform: translateX(0px);
  2969. opacity:1;
  2970. }
  2971. .banner-ten .more-button{
  2972. position:absolute;
  2973. <<<<<<< HEAD
  2974. top:205px;
  2975. left:50%;
  2976. =======
  2977. top:75px;
  2978. right:150px;
  2979. >>>>>>> e7aed4bb57c01dc6c86f4dc4e439b97174a2dd46
  2980. margin-left:-78px;
  2981. z-index: 99;
  2982. opacity:0;
  2983. transition: all 0.4s ease-in 0s;
  2984. <<<<<<< HEAD
  2985. transform: translateY(-30px);
  2986. transition-delay: 0.8s;
  2987. =======
  2988. transform: translateX(-30px);
  2989. transition-delay: 0.2s;
  2990. >>>>>>> e7aed4bb57c01dc6c86f4dc4e439b97174a2dd46
  2991. }
  2992. .banner-ten.show .more-button{
  2993. transform: translateY(0px);
  2994. opacity:1;
  2995. }
  2996. .banner-ten .more-button a{
  2997. <<<<<<< HEAD
  2998. color:#22232f;
  2999. background: #fff;
  3000. border:1px solid #fff;
  3001. =======
  3002. color:#fff;
  3003. background: #ff6501;
  3004. border:1px solid #ff6501;
  3005. >>>>>>> e7aed4bb57c01dc6c86f4dc4e439b97174a2dd46
  3006. padding:15px 30px;
  3007. text-decoration: none;
  3008. font-size: 16px
  3009. }
  3010. .banner-ten .more-button a:hover{
  3011. <<<<<<< HEAD
  3012. color:#22232f;
  3013. background:#fff;
  3014. border:1px solid #fff;
  3015. padding:17px 32px;
  3016. }
  3017. =======
  3018. color:#fff;
  3019. background:#d95e0e;
  3020. border:1px solid #d95e0e;;
  3021. padding:17px 32px;
  3022. }
  3023. .banner-ten .images-1{
  3024. background:url(home-desk.png) no-repeat 0 0;
  3025. width:1060px;
  3026. height:297px;
  3027. bottom:0px;
  3028. left:0px;
  3029. transition: all 0.8s ease-in 0s;
  3030. transform: translateY(70px);
  3031. z-index: 9999
  3032. }
  3033. .banner-ten.show .images-1{
  3034. transform: translateY(0px);
  3035. opacity:1;
  3036. }
  3037. >>>>>>> e7aed4bb57c01dc6c86f4dc4e439b97174a2dd46
  3038. /*大司空*/
  3039. /*新定额*/
  3040. .banner-entry.banner-six {
  3041. background:#B6BA6B url(banner-newdinge.png) center center
  3042. }
  3043. .banner-six .animation{
  3044. position:absolute;
  3045. opacity:0
  3046. }
  3047. .banner-six .images-1{
  3048. background:url(banner-dinge.png) -740px 0px;
  3049. width:370px;
  3050. height:370px;
  3051. top:80px;
  3052. left:80px;
  3053. transition: all 0.8s ease-out 0s;
  3054. transform: translateY(-60px);
  3055. transition-delay: 0.2s;
  3056. }
  3057. .banner-six .images-2{
  3058. background:url(banner-dinge.png) -370px 0px;
  3059. width:370px;
  3060. height:370px;
  3061. top:70px;
  3062. left:85px;
  3063. transition: all 0.8s ease-in 0s;
  3064. transform: translateX(-70px);
  3065. }
  3066. .banner-six .images-3{
  3067. background:url(banner-dinge.png) 0 0;
  3068. width:370px;
  3069. height:370px;
  3070. top:70px;
  3071. left:95px;
  3072. transition: all 0.8s ease-in 0s;
  3073. transform: translateX(70px);
  3074. }
  3075. .banner-six.show .images-1{
  3076. transform: translateY(0px);
  3077. opacity:1;
  3078. }
  3079. .banner-six.show .images-2{
  3080. transform: translateX(0px);
  3081. opacity:1;
  3082. }
  3083. .banner-six.show .images-3{
  3084. transform: translateX(0px);
  3085. opacity:1;
  3086. }
  3087. .banner-six .title-1{
  3088. background:url(banner-dinge.png) -1120px -110px;
  3089. width:785px;
  3090. height:80px;
  3091. top:175px;
  3092. left:215px;
  3093. transition: all 0.4s ease-out 0s;
  3094. transform: translateX(30px);
  3095. }
  3096. .banner-six .title-2{
  3097. background:url(banner-dinge.png) -1120px -200px;
  3098. width:629px;
  3099. height:50px;
  3100. top:265px;
  3101. left:295px;
  3102. transition: all 0.2s ease-in 0s;
  3103. transform: translateX(30px);
  3104. transition-delay: 0.2s;
  3105. }
  3106. .banner-six.show .title-1{
  3107. transform: translateX(0px);
  3108. opacity:1;
  3109. }
  3110. .banner-six.show .title-2{
  3111. transform: translateX(0px);
  3112. opacity:1;
  3113. }
  3114. .banner-six .more-button{
  3115. position:absolute;
  3116. top:380px;
  3117. right:70px;
  3118. z-index: 99;
  3119. opacity:0;
  3120. transition: all 0.2s ease-in 0s;
  3121. transform: translateX(30px);
  3122. transition-delay: 0.2s;
  3123. }
  3124. .banner-six.show .more-button{
  3125. transform: translateX(0px);
  3126. opacity:1;
  3127. }
  3128. .banner-six .more-button a{
  3129. color:#333;
  3130. background:#fff;
  3131. border:1px solid #fff;
  3132. padding:15px 30px;
  3133. text-decoration: none;
  3134. font-size: 16px
  3135. }
  3136. .banner-six .more-button a:hover{
  3137. color:#333;
  3138. background:#fff;
  3139. padding:17px 32px;
  3140. }
  3141. /*新定额*/
  3142. /*网络版*/
  3143. #banner-pointer {
  3144. position:absolute;
  3145. bottom:10px;
  3146. right:10px;
  3147. }
  3148. #banner-pointer li{
  3149. float:left;
  3150. background: #f2f2f2;
  3151. margin:0 5px 0 0;
  3152. cursor:pointer;
  3153. width:12px;
  3154. height:12px;
  3155. border-radius: 12px;
  3156. box-shadow: 0 1px 3px #999
  3157. }
  3158. #banner-pointer li.focus{
  3159. background:#fff;
  3160. cursor:default;
  3161. width:28px;
  3162. }
  3163. .warp-big-title {
  3164. width:1060px;
  3165. margin:0 auto;
  3166. padding:0 0 45px 0;
  3167. }
  3168. .warp-big-title h1{
  3169. text-align: center;
  3170. font-size: 36px;
  3171. color:#ff6501;
  3172. padding-bottom: 20px
  3173. }
  3174. .warp-big-title h2{
  3175. text-align: center;
  3176. font-size: 16px;
  3177. color:#3f4244;
  3178. padding:20px 0 0 0;
  3179. border-top:1px solid #333;
  3180. width:240px;
  3181. margin: 0 auto;
  3182. }
  3183. .warp-sub-banner{
  3184. width:1060px;
  3185. margin:0 auto;
  3186. }
  3187. .warp-sub-banner a:hover{
  3188. background:#333;
  3189. }
  3190. .warp-sub-banner a:hover img{
  3191. opacity:0.8;
  3192. }
  3193. .warp-news {
  3194. width:1040px;
  3195. margin:45px auto 40px;
  3196. padding:0 10px;
  3197. }
  3198. .warp-news .news-entry{
  3199. width:306px;
  3200. }
  3201. .news-entry h3{
  3202. font-size:18px;
  3203. margin-bottom:20px;
  3204. }
  3205. .news-entry dt{
  3206. position:relative;
  3207. margin-bottom:15px;
  3208. }
  3209. .news-entry dt .news-title {
  3210. background:rgba(21,112,166,0.6);
  3211. position:absolute;
  3212. bottom:0;
  3213. width:286px;
  3214. text-align:left;
  3215. padding:5px 10px;
  3216. }
  3217. .news-entry dt .news-title a{
  3218. color:#fff;
  3219. }
  3220. .news-entry dd{
  3221. margin-bottom:20px;
  3222. color:#999;
  3223. }
  3224. .news-entry li{
  3225. margin-bottom:26px;
  3226. color:#999;
  3227. }
  3228. .news-entry h4{
  3229. margin:3px 0;
  3230. font-size: 16px
  3231. }
  3232. .news-entry h4 a{
  3233. font-size: 16px
  3234. }
  3235. .news-entry li .train-loca{
  3236. background:#2daebf;
  3237. color:#fff;
  3238. padding:2px 5px;
  3239. display:inline-block;
  3240. }
  3241. .news-entry .feelTrain{
  3242. display:inline-block;
  3243. width:100%;
  3244. font-size: 16px;
  3245. text-decoration:none;
  3246. color:#ff6501;
  3247. }
  3248. .news-entry .feelTrain{
  3249. display:inline-block;
  3250. width:100%;
  3251. font-size: 16px;
  3252. text-decoration:none;
  3253. color:#ff6501;
  3254. }
  3255. .news-entry .feelTrain:hover{
  3256. color:#ff8d43;
  3257. }
  3258. /*走进纵横*/
  3259. .about-tab {
  3260. background:#fff;
  3261. z-index: 9999
  3262. }
  3263. .about-tab li{
  3264. float:left;
  3265. width:170px;
  3266. height:80px;
  3267. }
  3268. .about-tab li a{
  3269. display:inline-block;
  3270. width:170px;
  3271. border-left:1px solid #ccc;
  3272. text-align: center;
  3273. font-size:16px;
  3274. height:18px;
  3275. line-height: 18px;
  3276. margin-top: 32px;
  3277. margin-left: -1px;
  3278. font-weight: 600;
  3279. color:#666;
  3280. cursor:pointer;
  3281. }
  3282. .about-tab li a:hover{
  3283. text-decoration: none;
  3284. color:#333;
  3285. }
  3286. .about-tab li.active a{
  3287. color:#B2005E;
  3288. cursor:default;
  3289. }
  3290. .about-content {
  3291. margin-top:80px;
  3292. }
  3293. .about-text {
  3294. padding:67px 150px 67px 150px ;
  3295. }
  3296. .about-text .text-item{
  3297. height:150px
  3298. }
  3299. .about-text h2,.about-h2 {
  3300. font-size:28px;
  3301. color:#333;
  3302. }
  3303. .about-text p,.about-p {
  3304. font-size:20px;
  3305. margin:15px 0;
  3306. line-height: 28px;
  3307. }
  3308. .about-entry a {
  3309. color: #B2005E;
  3310. }
  3311. .about-entry a:hover {
  3312. text-decoration: underline;
  3313. }
  3314. .about-entry a.apply {
  3315. background:#fff;
  3316. padding:5px;
  3317. border:1px solid #B2005E;
  3318. float: right;
  3319. margin-right:30px;
  3320. }
  3321. .about-entry a.apply:hover{
  3322. color:#fff;
  3323. background: #B2005E;
  3324. text-decoration:none;
  3325. }
  3326. .timeline {
  3327. padding-top:0;
  3328. }
  3329. .timeline .text {
  3330. margin-left:80px;
  3331. padding-left:80px;
  3332. border-left:1px solid #ccc;
  3333. padding-bottom:15px;
  3334. }
  3335. .timeline .text p{
  3336. margin-top:0px;
  3337. }
  3338. .timeline .text p a{
  3339. font-size:18px;
  3340. }
  3341. .history-line .text p a{
  3342. font-size:16px;
  3343. }
  3344. .timeline .month {
  3345. position:relative;
  3346. }
  3347. .timeline .year h3{
  3348. font-size: 28px;
  3349. color:#333;
  3350. }
  3351. .history-line .year h3{
  3352. font-size: 28px;
  3353. color:#333;
  3354. margin-bottom:40px;
  3355. }
  3356. .timeline .month em{
  3357. position:absolute;
  3358. font-size: 14px;
  3359. left:25px;
  3360. top:0;
  3361. }
  3362. .timeline .month em .dot{
  3363. display:inline-block;
  3364. background:#b2005e;
  3365. width:12px;
  3366. height:12px;
  3367. border-radius: 10px;
  3368. margin-left:20px;
  3369. }
  3370. .history-line .month em{
  3371. left:22px;
  3372. top:5px;
  3373. }
  3374. .about-entry .partnerList{
  3375. width:810px;
  3376. margin:0 auto 60px;
  3377. }
  3378. .about-entry .clientList{
  3379. padding:0;
  3380. background:none;
  3381. margin-bottom: 60px
  3382. }
  3383. .clientList td{
  3384. padding:8px 0;
  3385. text-align:left
  3386. }
  3387. .join-line .month em{
  3388. left:-1px;
  3389. top:5px;
  3390. }
  3391. .join-line .year h3{
  3392. font-size: 24px;
  3393. color:#333;
  3394. margin-bottom:10px;
  3395. margin-top:40px;
  3396. }
  3397. .join-line .month{
  3398. display:none;
  3399. }
  3400. .join-line i.arow {
  3401. background: transparent url("scIcons.png") no-repeat -123px -205px;
  3402. display: inline-block;
  3403. width: 16px;
  3404. height: 16px;
  3405. float:right;
  3406. }
  3407. .join-line i.on {
  3408. background: transparent url("scIcons.png") no-repeat -123px -221px;
  3409. }
  3410. .join-line h3:hover{
  3411. cursor:pointer;
  3412. color:#B2005E;
  3413. }
  3414. .join-line .year:hover h3{
  3415. color:#B2005E;
  3416. }
  3417. .join-line .month em .dot{
  3418. background:#999;
  3419. }
  3420. .join-line .year:hover em .dot{
  3421. background:#B2005E;
  3422. }
  3423. .join-line .text {
  3424. padding-left:40px
  3425. }
  3426. /*帮助*/
  3427. .helpBg{
  3428. border-color: #b6ba6b;
  3429. background:url(contentBg-help01.jpg) no-repeat;
  3430. }
  3431. .helpBg h1{
  3432. background:#b6ba6b;
  3433. }
  3434. .helpBg .sideBar{
  3435. border-color: #b6ba6b;
  3436. }
  3437. #sideBar h2 a{
  3438. color:#666;
  3439. }
  3440. #sideBar h2 a:hover{
  3441. color:#333;
  3442. font-weight:600;
  3443. text-decoration:none;
  3444. }
  3445. .helpnav h2{
  3446. border:none;
  3447. color:#333;
  3448. }
  3449. #sideBar .helpnav li a{
  3450. color:#b6ba6b;
  3451. }
  3452. #sideBar .helpnav li .now{
  3453. color:#333;
  3454. }
  3455. .helpCon{
  3456. margin:30px 0 0 0;
  3457. }
  3458. .helpCon h2{
  3459. font-size:22px;
  3460. color:#333;
  3461. }
  3462. .helpList{
  3463. min-height:350px;
  3464. }
  3465. .helpList ul{
  3466. }
  3467. .helpList ul li{
  3468. margin:10px 0 10px 0;
  3469. }
  3470. .helpList ul li a{
  3471. font-size:14px;
  3472. color:#00A0E9;
  3473. }
  3474. .helpList ul li a span{
  3475. background:url(helpTitle.png) no-repeat right center;
  3476. padding-right:16px;
  3477. }
  3478. .helpListCont{
  3479. margin:15px 0 0 0;
  3480. line-height:28px !important;
  3481. font-size:16px !important;
  3482. color:#666 !important;
  3483. }
  3484. .helpListCont p{
  3485. font-size:16px;
  3486. line-height:28px
  3487. }
  3488. .download-select{
  3489. background:none;
  3490. }
  3491. .download-select h2{
  3492. font-size: 24px;
  3493. margin:10px 0;
  3494. color:#333;
  3495. }
  3496. .download-select .downSelect{
  3497. margin:20px 0 0;
  3498. }
  3499. /*联系我们*/
  3500. .contact-tab{
  3501. padding:0 0 20px 0
  3502. }
  3503. .contact-tab a{
  3504. display:inline-block;
  3505. float:left;
  3506. width:507px;
  3507. font-size:24px;
  3508. color:#666;
  3509. height:90px;
  3510. line-height:90px;
  3511. text-align:center;
  3512. border-bottom:1px solid #fff;
  3513. margin:0 1px 0 0
  3514. }
  3515. .contact-tab a:hover{
  3516. text-decoration:none;
  3517. border-bottom:1px solid #ccc
  3518. }
  3519. .contact-tab a.now{
  3520. color:#f8b62a;
  3521. border-bottom:1px solid #f8b62a
  3522. }
  3523. .base-warp {
  3524. padding:50px 120px 0px
  3525. }
  3526. .base-warp .base-box{
  3527. width: 335px;
  3528. height:105px;
  3529. padding: 20px 0 20px;
  3530. margin: 20px;
  3531. text-align: center;
  3532. border: 1px solid #ddd;
  3533. border-radius: 4px;
  3534. }
  3535. .base-warp .base-box h1,.base-warp .base-box h2{
  3536. font-size:24px;
  3537. text-align:center
  3538. }
  3539. .base-warp .base-box p{
  3540. text-align:center;
  3541. color:#999
  3542. }
  3543. .base-warp .base-box h1{
  3544. margin:10px 0 0 0
  3545. }
  3546. .base-warp .base-box h2{
  3547. color:#f8b62a;
  3548. margin:10px 0 0 0
  3549. }
  3550. .custom-warp {
  3551. padding:20px 120px 0 120px
  3552. }
  3553. .custom-warp .hour-box h1{
  3554. font-size: 18px;
  3555. text-align:center;
  3556. font-weight: 600
  3557. }
  3558. .custom-warp .custom-box h2{
  3559. font-size: 18px;
  3560. text-align:center;
  3561. }
  3562. .custom-warp .custom-map{
  3563. width:742px;
  3564. margin:0 20px 100px 20px;
  3565. text-align: center;
  3566. border: 1px solid #ddd;
  3567. border-radius: 4px;
  3568. }
  3569. .custom-warp .custom-box{
  3570. width:742px;
  3571. height:50px;
  3572. padding: 30px 0;
  3573. margin: 20px;
  3574. text-align: center;
  3575. border: 1px solid #ddd;
  3576. border-radius: 4px;
  3577. }
  3578. .custom-warp .custom-box h1{
  3579. font-size:24px;
  3580. text-align:center
  3581. }
  3582. .custom-warp .custom-box h1 b{
  3583. color:#f8b62a;
  3584. }
  3585. .custom-warp .province {
  3586. margin-bottom:-1px;
  3587. padding-left:4px
  3588. }
  3589. .custom-warp .province a{
  3590. float:left;
  3591. width:110px;
  3592. font-size:18px;
  3593. color:#666;
  3594. border-bottom:1px solid #ddd;
  3595. padding:10px 0;
  3596. text-align:center
  3597. }
  3598. .custom-warp .province a:hover{
  3599. border-bottom:1px solid #999;
  3600. text-decoration: none;
  3601. }
  3602. .custom-warp .province a.now{
  3603. color:#f8b62a;
  3604. border-bottom:1px solid #f8b62a;
  3605. font-weight:600
  3606. }
  3607. .contact-list .item{
  3608. border: 1px solid #ddd;
  3609. border-radius: 4px;
  3610. padding:40px
  3611. }
  3612. .contact-list p.line{
  3613. border-bottom:1px solid #ddd
  3614. }
  3615. .contact-list table{
  3616. width:100%;
  3617. margin:20px 0;
  3618. }
  3619. .contact-list thead th {
  3620. color:#f8b62a;
  3621. font-size:24px;
  3622. font-weight:normal;
  3623. padding-bottom:10px
  3624. }
  3625. .contact-list .tel td {
  3626. font-size:18px;
  3627. padding-bottom:10px
  3628. }
  3629. .contact-list .tel td span{
  3630. color:#ddd;
  3631. margin:0 20px
  3632. }
  3633. .contact-list .add td {
  3634. font-size:18px;
  3635. color:#999;
  3636. padding-bottom:20px
  3637. }
  3638. .contact-list .phone th {
  3639. font-size:18px;
  3640. padding-bottom:10px;
  3641. font-weight:normal;
  3642. width:80px
  3643. }
  3644. .contact-list .phone td {
  3645. text-align:left;
  3646. font-size:18px;
  3647. padding-bottom:10px
  3648. }
  3649. .province .nav li{
  3650. float:left;
  3651. /*width:80px;*/
  3652. height:50px;
  3653. }
  3654. .province .nav li a{
  3655. display: inline-block;
  3656. /*width: 80px;*/
  3657. padding:0 8px;
  3658. border-left: 1px solid #ccc;
  3659. text-align: center;
  3660. font-size: 16px;
  3661. height: 18px;
  3662. line-height: 18px;
  3663. margin-top: 32px;
  3664. margin-left: -1px;
  3665. font-weight: 600;
  3666. color: #666;
  3667. cursor: pointer;
  3668. }
  3669. .province .nav li a:hover{
  3670. text-decoration: none;
  3671. color:#333;
  3672. }
  3673. .province .nav li:first-child a{
  3674. border-left: none;
  3675. }
  3676. .province .nav li.active a{
  3677. color:#B2005E;
  3678. cursor:default;
  3679. }
  3680. .province.provinceTwo ul li a{
  3681. padding:0 20px;
  3682. }
  3683. .province.provinceTwo ul li:first-child a{
  3684. padding:0 8px;
  3685. }
  3686. /* 2016年春节彩蛋
  3687. .warp-body {
  3688. position:relative;
  3689. background:url(2016yearimg.png) no-repeat center 20px;
  3690. }
  3691. .monkey {
  3692. position:absolute;
  3693. right:3%;
  3694. top:110px;
  3695. z-index: 999
  3696. }
  3697. .monkey .mon{
  3698. width:144px;
  3699. height:191px;
  3700. background:url(2016yearicon.png) no-repeat 0 0;
  3701. }
  3702. .monkey .mon{
  3703. -webkit-animation:mon 20s infinite ease-in-out;
  3704. -moz-animation:mon 20s infinite ease-in-out;
  3705. animation:mon 20s infinite ease-in-out;
  3706. }
  3707. @-moz-keyframes mon{
  3708. 0%,100%{-moz-transform:translateY(0);}
  3709. 10%,30%,50%,70%,90%{-moz-transform:translateY(20px);}
  3710. 20%,40%,60%,80%{-moz-transform:translateY(-25px);}
  3711. }
  3712. @-webkit-keyframes mon{
  3713. 0%,100%{-moz-transform:translateY(0);}
  3714. 10%,30%,50%,70%,90%{-webkit-transform:translateY(20px);}
  3715. 20%,40%,60%,80%{-webkit-transform:translateY(-25px);}
  3716. }
  3717. @keyframes mon{
  3718. 0%,100%{transform:translateY(0);}
  3719. 10%,30%,50%,70%,90%{transform:translateY(20px);}
  3720. 20%,40%,60%,80%{transform:translateY(-25px);}
  3721. }
  3722. .monkey .food{
  3723. width:144px;
  3724. height:109px;
  3725. background:url(2016yearicon.png) no-repeat 0 -192px;
  3726. position:absolute;
  3727. left:-124px;
  3728. top:20px;
  3729. }
  3730. .monkey .food{
  3731. -webkit-animation:food 15s infinite ease-in-out;
  3732. -moz-animation:food 15s infinite ease-in-out;
  3733. animation:food 15s infinite ease-in-out;
  3734. }
  3735. @-moz-keyframes food{
  3736. 0%,100%{-moz-transform:translateY(0);}
  3737. 10%,30%,50%,70%,90%{-moz-transform:translateY(-5px);}
  3738. 20%,40%,60%,80%{-moz-transform:translateY(8px);}
  3739. }
  3740. @-webkit-keyframes food{
  3741. 0%,100%{-webkit-transform:translateY(0);}
  3742. 10%,30%,50%,70%,90%{-webkit-transform:translateY(-5px);}
  3743. 20%,40%,60%,80%{-webkit-transform:translateY(8px);}
  3744. }
  3745. @keyframes food{
  3746. 0%,100%{transform:translateY(0);}
  3747. 10%,30%,50%,70%,90%{transform:translateY(-5px);}
  3748. 20%,40%,60%,80%{transform:translateY(8px);}
  3749. }*/
  3750. /*视频教程内部播放列表*/
  3751. .video-view{
  3752. margin-left:242px;
  3753. }
  3754. .video-view h2{
  3755. border-color:#ff6501;
  3756. }
  3757. .video-mini-list{
  3758. float:left;
  3759. margin:0;
  3760. width:240px;
  3761. }
  3762. .video-mini-list h1{
  3763. border-color:#ff6501;
  3764. margin-bottom:5px;
  3765. padding:0 0 10px 0;
  3766. border-bottom:1px solid #ccc;
  3767. }
  3768. .video-mini-list ul{
  3769. height:646px;
  3770. width:242px;
  3771. overflow-y: scroll;
  3772. overflow-x: hidden;
  3773. }
  3774. .video-mini-list ul li{
  3775. padding:10px 5px;
  3776. border-bottom:1px solid #ccc;
  3777. width:210px;
  3778. }
  3779. .video-mini-list ul li a{
  3780. }
  3781. .video-mini-list ul li.active{
  3782. background:#f2f2f2;
  3783. }
  3784. .video-mini-list ul li.active a{
  3785. color:#ff6501;
  3786. }
  3787. .video-mini-list ul li.active .videoCon{
  3788. display:none;
  3789. }