global.css 64 KB

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