global-new.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955
  1. /*头部*/
  2. .wrapHeader{
  3. background:#eef2f5;
  4. height:48px
  5. }
  6. .mainLogo {
  7. width:291px;
  8. height:47px;
  9. background:url(scIcons.png) no-repeat 0 0
  10. }
  11. .mainNav li{
  12. float:left;
  13. margin-left:1px
  14. }
  15. .mainNav li a{
  16. padding:0 20px;
  17. height:48px;
  18. display:inline-block;
  19. *dislpay:inline;
  20. zoom:1;
  21. line-height:48px;
  22. text-align:center;
  23. color:#666666
  24. }
  25. .mainNav li a:hover{
  26. background:#f8f9fb;
  27. font-size:12px
  28. }
  29. .mainNav li a.now{
  30. background:#fff;
  31. font-size:12px;
  32. font-weight: 600
  33. }
  34. .mainNav li a.now:hover{
  35. cursor: default;
  36. }
  37. .mainNav li.search {
  38. position: relative;
  39. }
  40. .mainNav li.search .topSerach{
  41. position: absolute;
  42. right:-3px;
  43. z-index: 999;
  44. background:#FFFFFF;
  45. border:3px solid #333333;
  46. border-top:none;
  47. padding:10px;
  48. width:200px;
  49. display:none
  50. }
  51. li.search .topSerach input.serachInput{
  52. width:135px;
  53. padding:0 5px;
  54. height:20px;
  55. border:1px solid #333;
  56. }
  57. li.search .topSerach input[type=submit]{
  58. width:53px;
  59. text-align: center;
  60. background-color: #333;
  61. color:#fff;
  62. border:none;
  63. height:22px;
  64. float:right;
  65. }
  66. li.search .topSerach input[type=submit]:hover{
  67. background-color: #000
  68. }
  69. li.search .topSerach input[type=submit]:active{
  70. background-color: #666
  71. }
  72. /**/
  73. .wrapContent{
  74. background:url(contentBg-index.jpg) no-repeat center top;
  75. border-top:3px solid #333333
  76. }
  77. .pageTitle {
  78. margin:30px auto 30px;
  79. color:#fff;
  80. position:relative
  81. }
  82. .pageTitle h1 {
  83. font-size:38px;
  84. padding:15px 10px;
  85. float:left;
  86. background:url(titleBg-gray.png) repeat
  87. }
  88. .pageTitle h2 {
  89. font-size:18px;
  90. padding:8px 10px;
  91. background:url(titleBg-black.png) repeat;
  92. color:#fff;
  93. float:left;
  94. margin:0 0 1px 0
  95. }
  96. .productBg{
  97. border-color:#ff6501;
  98. background-image: url(contentBg-product.jpg);
  99. }
  100. .productBg .pageTitle h1{
  101. background:url(titleBg-orange.png) repeat
  102. }
  103. .aboutUsBg{
  104. border-color:#b2005e;
  105. background-image: url(contentBg-aboutUs.jpg);
  106. }
  107. .aboutUsBg .pageTitle h1{
  108. background:url(titleBg-pink.png) repeat
  109. }
  110. .trainBg{
  111. border-color:#2daebf;
  112. background-image: url(contentBg-train.jpg);
  113. }
  114. .trainBg .pageTitle h1{
  115. background:url(titleBg-green.png) repeat
  116. }
  117. .contactBg{
  118. border-color:#f8b62a;
  119. background-image: url(contentBg-contact.jpg);
  120. }
  121. .contactBg .pageTitle h1{
  122. background:url(titleBg-yellow.png) repeat
  123. }
  124. .newsBg{
  125. min-height: 650px;
  126. margin-bottom: 50px;
  127. border-color:#C0C670;
  128. background: url(contentBg-index.jpg) no-repeat center top;
  129. }
  130. .newsBg .pageTitle h1{
  131. background:url(titleBg-yellow.png) repeat
  132. }
  133. .wrapFooter {
  134. background:#f8f8f8;
  135. }
  136. .contentBottom {
  137. background:#4d4d4d;
  138. width:1060px;
  139. margin:0 auto;
  140. position:relative
  141. }
  142. .contentBottom .indexNewsList{
  143. width:480px;
  144. margin:15px
  145. }
  146. .contentBottom .indexNewsList dt{
  147. font-size:14px;
  148. font-weight:600;
  149. color:#999
  150. }
  151. .contentBottom .indexNewsList dd{
  152. margin:0 0 3px 0
  153. }
  154. .contentBottom .indexNewsList dd span{
  155. color:#999;
  156. margin:0 0 0 10px
  157. }
  158. .contentBottom .indexNewsList a{
  159. color:#fff
  160. }
  161. .contentBottom .indexNewsList a:hover{
  162. text-decoration:underline;
  163. }
  164. .contentBottom .indexerwei{
  165. position: absolute;
  166. top:-245px;
  167. right:-75px;
  168. background: url(indexerwei.png) no-repeat;
  169. width:62px;
  170. height:31px;
  171. padding:141px 0 0 0;
  172. }
  173. .contentBottom .indexerwei a{
  174. float:left;
  175. margin:0 0 0 1px;
  176. }
  177. .contentBottom .indexerwei a.sina{
  178. width:29px;
  179. height:30px;
  180. }
  181. .contentBottom .indexerwei a.sina:hover{
  182. background: url(indexerwei.png) no-repeat -1px -172px;
  183. }
  184. .contentBottom .indexerwei a.tx{
  185. width:30px;
  186. height:30px;
  187. }
  188. .contentBottom .indexerwei a.tx:hover{
  189. background: url(indexerwei.png) no-repeat -31px -172px;
  190. }
  191. .security_click {
  192. position: absolute;
  193. top: 4px;
  194. left: 3px;
  195. width: 54px;
  196. height: 54px;
  197. }
  198. .newsPanel {
  199. padding:35px 0 35px 30px;
  200. position:relative
  201. }
  202. .newsPanel .newsIcon{
  203. position:absolute;
  204. background:url(scIcons.png) no-repeat 0 -47px;
  205. width:24px;
  206. height:18px;
  207. left:10px;
  208. top:15px
  209. }
  210. .newsPanel a{
  211. color:#fff
  212. }
  213. .newsPanel a:hover{
  214. color:#ccc
  215. }
  216. .weiboPanel {
  217. width:350px;
  218. background:url(scIcons.png) no-repeat -203px -47px;
  219. padding-left:87px;
  220. margin-top:5px
  221. }
  222. .newsExtra{
  223. background:#666666;
  224. position:absolute;
  225. top:-200px;
  226. width:550px;
  227. opacity: 0;
  228. -moz-opacity: 0;
  229. filter:alpha(opacity=0);
  230. display:none;
  231. z-index:9999;
  232. }
  233. .newsExtra h2{
  234. background:#333333;
  235. color:#fff;
  236. padding:5px 20px
  237. }
  238. .newsExtra h2 a{
  239. color:#ff6501
  240. }
  241. .newsExtra .extraItem li{
  242. border-bottom:1px solid #fff;
  243. height:56px;
  244. line-height:56px;
  245. padding:0 20px;
  246. position:relative
  247. }
  248. .newsExtra .extraItem li:hover{
  249. background:#4D4D4D
  250. }
  251. .newsExtra .extraItem li span{
  252. position:absolute;
  253. right:15px;
  254. top:5px;
  255. font-size:9px;
  256. color:#999;
  257. height:12px;
  258. line-height:12px
  259. }
  260. .extraItem li a{
  261. color:#fff
  262. }
  263. .newsExtra .extraBottom{
  264. background:url(scIcons.png) no-repeat -59px -132px;
  265. width:36px;
  266. height:24px;
  267. position:absolute;
  268. right:0;
  269. bottom:-24px;
  270. border-bottom:1px solid #5e5e5e
  271. }
  272. .fContant{
  273. width:1060px;
  274. margin:0 auto;
  275. position: relative;
  276. background-color: #F8F8F8
  277. }
  278. .fContant div {
  279. height:47px;
  280. background:url(scIcons.png) no-repeat -243px -126px;
  281. padding:0 0 0 50px;
  282. margin:25px 0 25px 20px
  283. }
  284. .fContant div b{font-size:30px;line-height:25px;color:#333}
  285. .fContant div.exqq {
  286. background:url(scIcons.png) no-repeat -243px -173px;
  287. margin-left:120px;
  288. margin-right:120px
  289. }
  290. .fContant div.tel2 {
  291. background-position:-243px -220px;
  292. }
  293. .fContant .search{
  294. background:none;
  295. margin:40px 20px 0 0
  296. }
  297. .fContant .search input{
  298. height:26px;
  299. line-height:26px;
  300. border:1px solid #bbb;
  301. border-right:none;
  302. padding:0 5px;
  303. width:240px;
  304. vertical-align:top;
  305. color:#666
  306. }
  307. .fContant .search button{
  308. height:28px;
  309. line-height:28px;
  310. text-align:center;
  311. background:#fc9200;
  312. border:none;
  313. padding:0 10px;
  314. color:#fff
  315. }
  316. .fContant .search button:hover{
  317. background:#ff6501;
  318. font-weight:600;
  319. cursor:pointer
  320. }
  321. .bottomNav {
  322. background:#333;
  323. height:48px
  324. }
  325. .subNav li{
  326. float: left
  327. }
  328. .subNav li a{
  329. height:48px;
  330. line-height:48px;
  331. color:#fff;
  332. width:80px;
  333. text-align:center;
  334. display:inline-block;
  335. *display:inline;
  336. zoom:1
  337. }
  338. .subNav li a:hover{
  339. color:#f2f2f2;
  340. background:#3b3b3b
  341. }
  342. .copyRight {
  343. color:#bcbcbc;
  344. line-height:48px
  345. }
  346. .sideBar{
  347. width:150px;
  348. border-top:8px solid #ff6501;
  349. margin:0 0 0 20px;
  350. padding:50px 0 0 0
  351. }
  352. .sideBar h2{
  353. border-bottom:1px solid #999;
  354. padding:0 0 5px 0;
  355. margin:0 0 15px 0
  356. }
  357. .sideBar li{
  358. margin:0 0 15px 0
  359. }
  360. .sideBar li a{
  361. color:#ff6501;
  362. font-weight:600
  363. }
  364. .sideBar li a.now{
  365. color:#333
  366. }
  367. .sideBar li a:hover{
  368. color:#ca5000
  369. }
  370. .sideBar li a.now:hover{
  371. color:#333;
  372. cursor:default
  373. }
  374. .mainContent {
  375. margin:0 0 0 50px
  376. }
  377. .mainContent .title{
  378. padding:30px 0 0 0
  379. }
  380. .mainContent .title b{
  381. font-size:30px;
  382. color:#333;
  383. vertical-align: bottom;
  384. margin:0 0 0 20px
  385. }
  386. .mainContent .productTab,.dSoftInof .productTab{
  387. height:48px;
  388. background:#efefef;
  389. margin:30px 0 0 0
  390. }
  391. .productTab ul{
  392. float:right
  393. }
  394. .productTab li{
  395. display:inline-block;
  396. *display:inline;
  397. zoom:1;
  398. height:48px;
  399. line-height:48px;
  400. width:100px;
  401. text-align:center;
  402. color:#ff6501;
  403. cursor:pointer
  404. }
  405. .productTab li.now{
  406. background:url(scIcons.png) no-repeat -24px -47px;
  407. color:#333;
  408. cursor: default;
  409. font-weight:600;
  410. }
  411. .productTab li:hover{
  412. background:#f9f9f9
  413. }
  414. .productTab li.now:hover{
  415. background:url(scIcons.png) no-repeat -24px -47px
  416. }
  417. .mainContent .contentItem{
  418. margin:20px 0
  419. }
  420. .softList {
  421. margin:15px 0 200px 0
  422. }
  423. .softList li{
  424. width:100%;
  425. height:34px;
  426. margin:0 0 15px 0;
  427. padding:0 0 15px 0;
  428. border-bottom:1px dashed #ddd
  429. }
  430. .softList li:hover {
  431. border-style:none none solid none;
  432. border-color:#ff6501;
  433. }
  434. /*.softList li:hover h2{
  435. color:#ff6501
  436. }*/
  437. .softList li h2,.softList li .downInfo,.softList li .downLink{
  438. float:left;
  439. vertical-align: middle;
  440. }
  441. .softList li h2 {
  442. width:50%;
  443. font-size:14px;
  444. line-height:34px
  445. }
  446. .softList li .downInfo,.softList li .downLink{
  447. width:20%;
  448. color:#999
  449. }
  450. .softList li .downVideo{
  451. width:10%;
  452. float:left;
  453. vertical-align: middle;
  454. }
  455. .softList li .downInfo{
  456. line-height:34px
  457. }
  458. .softList li .downInfo b{
  459. font-size:18px;
  460. font-weight:normal;
  461. color:#333;
  462. vertical-align: middle
  463. }
  464. .softList li .downLink a{
  465. margin:0 10px 0 0
  466. }
  467. .versionList {
  468. margin:20px 0 100px 0
  469. }
  470. .versionList li{
  471. width:100%;
  472. margin:0 0 20px 0;
  473. padding:0 0 20px 0;
  474. border-bottom:1px dashed #ddd
  475. }
  476. .vesionTitle,.vesionItem{
  477. float:left
  478. }
  479. .vesionTitle {
  480. width:150px;
  481. padding:0 0 0 50px
  482. }
  483. .vesionTitle b{
  484. font-size:20px;
  485. font-family: Constantia,Georgia;
  486. padding:0 0 20px 0;
  487. display:block
  488. }
  489. .versionItem{
  490. margin:0 0 0 210px
  491. }
  492. .versionItem p{
  493. margin:0 0 10px 0
  494. }
  495. .videoItem{
  496. text-align:center;
  497. margin:25px 0 0 0
  498. }
  499. .videoItem ul{
  500. margin:0 0 30px 0
  501. }
  502. .videoItem li {
  503. float:left;
  504. margin:0 25px 30px;
  505. *margin:0 25px 30px 12px;
  506. position: relative;
  507. width:218px;
  508. height:165px;
  509. overflow: hidden;
  510. }
  511. .videoItem span.tips{
  512. color:#ff6501;
  513. font-size:16px
  514. }
  515. .videoItem h1{
  516. border-top:1px solid #ccc;
  517. padding:15px 0;
  518. font-size:18px
  519. }
  520. .videoItem li .videoCon{
  521. position: absolute;
  522. bottom:7px;
  523. width:100%;
  524. color:#fff;
  525. z-index:10;
  526. text-align:center;
  527. font-size:12px
  528. }
  529. .videoItem li h3{
  530. padding:5px 0 0 0;
  531. text-align: center
  532. }
  533. .videoItem li .videoCon{
  534. background:url(titleBg-black.png) repeat;
  535. z-index:9;
  536. height:80px;
  537. bottom:165px;
  538. padding:60px 0 0 0
  539. }
  540. .videoItem li .videoCon a:hover{
  541. text-decoration: none
  542. }
  543. .videoItem li .videoCon span{
  544. color:#fff;
  545. font-size:16px;
  546. line-height:16px;
  547. height:16px;
  548. padding:5px;
  549. cursor:pointer
  550. }
  551. .videoItem li .videoCon span b{
  552. display:inline-block;
  553. *display:inline;
  554. zoom:1;
  555. width:16px;
  556. height:16px;
  557. background:url(scIcons.png) no-repeat 0 -95px;
  558. vertical-align: middle;
  559. padding:0 5px 0 0
  560. }
  561. .videoItem li .videoCon span.downBtn b{
  562. background-position:0 -111px
  563. }
  564. .videoItem li .videoCon span:hover{
  565. background:#ff6501
  566. }
  567. .softVideo .bottomSpace{
  568. height:100px
  569. }
  570. .trainItem{
  571. margin:1px 0 0 0;
  572. padding:30px 20px 0 20px
  573. }
  574. .trainItem .tLeft,.trainItem .tRight{
  575. width:470px
  576. }
  577. .trainItem .tImg{
  578. margin-bottom: 10px
  579. }
  580. .trainEntry {
  581. width:430px;
  582. float:left;
  583. background:#ededed;
  584. height:50px;
  585. margin:0 0 10px 0;
  586. padding:0 20px
  587. }
  588. .trainEntry a{
  589. color:#666
  590. }
  591. .trainEntry a:hover{
  592. color:#333
  593. }
  594. .trainEntry .trainState,.trainEntry .trainTitle{
  595. float:left
  596. }
  597. .trainEntry .trainState{
  598. width:115px;
  599. line-height:50px;
  600. }
  601. .trainEntry .trainTitle{
  602. text-align: right;
  603. width:315px;
  604. float:right;
  605. height:50px;
  606. line-height:50px;
  607. overflow: hidden
  608. }
  609. .doing {
  610. background:#e9edd3
  611. }
  612. .apply {
  613. background:#f5ebc9
  614. }
  615. .trainEntry:hover{
  616. background:#e7e7e7
  617. }
  618. .doing:hover {
  619. background:#e6edbe
  620. }
  621. .apply:hover {
  622. background:#f5e5b3
  623. }
  624. .apply .trainState {
  625. line-height:35px
  626. }
  627. .apply .trainState p.tData{
  628. margin:-18px 0 0 0;
  629. color:#999
  630. }
  631. .trainList h2 {
  632. border-bottom:1px solid #ddd;
  633. padding:5px 0;
  634. margin:15px 29px 15px 0;
  635. font-size:18px
  636. }
  637. .doing span.tIcon {
  638. background:url(scIcons.png) no-repeat -87px -95px;
  639. padding:0 0 0 16px
  640. }
  641. .apply span.tIcon {
  642. background:url(scIcons.png) no-repeat -87px -112px;
  643. padding:0 0 0 16px
  644. }
  645. .loca span.tIcon {
  646. background:url(scIcons.png) no-repeat -102px -128px;
  647. }
  648. .animated {
  649. -webkit-animation-fill-mode: both;
  650. -moz-animation-fill-mode: both;
  651. -ms-animation-fill-mode: both;
  652. -o-animation-fill-mode: both;
  653. animation-fill-mode: both;
  654. -webkit-animation-duration: 1s;
  655. -moz-animation-duration: 1s;
  656. -ms-animation-duration: 1s;
  657. -o-animation-duration: 1s;
  658. animation-duration: 1s;
  659. }
  660. .animated.hinge {
  661. -webkit-animation-duration: 2s;
  662. -moz-animation-duration: 2s;
  663. -ms-animation-duration: 2s;
  664. -o-animation-duration: 2s;
  665. animation-duration: 2s;
  666. }
  667. @-webkit-keyframes shake {
  668. 0%, 100% {-webkit-transform: translateX(0);}
  669. 40% {transform: translateX(-5px);}
  670. 60% {transform: translateX(5px);}
  671. }
  672. @-moz-keyframes shake {
  673. 0%, 100% {-moz-transform: translateX(0);}
  674. 40% {transform: translateX(-5px);}
  675. 60% {transform: translateX(5px);}
  676. }
  677. @-o-keyframes shake {
  678. 0%, 100% {-o-transform: translateX(0);}
  679. 40% {transform: translateX(-5px);}
  680. 60% {transform: translateX(5px);}
  681. }
  682. @keyframes shake {
  683. 0%, 100% {transform: translateX(0);}
  684. 30% {transform: translateX(-3px);}
  685. 70% {transform: translateX(3px);}
  686. }
  687. .shake {
  688. -webkit-animation-name: shake;
  689. -moz-animation-name: shake;
  690. -o-animation-name: shake;
  691. animation-name: shake;
  692. }
  693. .trainForm {
  694. border-top:35px solid #2daebf;
  695. padding:25px 50px 50px 50px;
  696. margin:1px 0 0 0;
  697. position:relative
  698. }
  699. .trainForm a.backTrain{
  700. position:absolute;
  701. color:#fff;
  702. font-size:18px;
  703. left:10px;
  704. top:-32px
  705. }
  706. .trainForm a.backTrain:hover{
  707. left:5px
  708. }
  709. .trainFormTab {
  710. border-bottom:1px solid #2daebf;
  711. margin:15px 0 0 0
  712. }
  713. .trainFormTab a{
  714. width:150px;
  715. text-align:center;
  716. height:34px;
  717. line-height:34px;
  718. display:inline-block;
  719. *display:inline;
  720. zoom:1;
  721. background:#ededed;
  722. color:#999;
  723. cursor:pointer
  724. }
  725. .trainFormTab a:hover{
  726. background:#e6eeef;
  727. color:#333
  728. }
  729. .trainFormTab a.now{
  730. background:#2daebf;
  731. color:#fff;
  732. cursor:default
  733. }
  734. .formEntry *{
  735. font-size:14px;
  736. }
  737. .formContent {
  738. padding:15px
  739. }
  740. .formContent h1{
  741. text-align:center;
  742. color:red;
  743. font-size:40px;
  744. font-weight:600
  745. }
  746. .formContent h2{
  747. text-align:center;
  748. font-size:28px;
  749. border-top:1px solid red;
  750. padding:10px;
  751. margin:10px 0;
  752. font-weight:600
  753. }
  754. .formContent p {
  755. line-height: 22px
  756. }
  757. .formTable li {
  758. margin:15px 0;
  759. position:relative
  760. }
  761. .formTable .formTh{
  762. width:80px;
  763. height:34px;
  764. line-height:34px;
  765. text-align:center;
  766. background:#2daebf;
  767. color:#fff
  768. }
  769. .formTable .formTd {
  770. margin:0 0 0 80px;
  771. border-top:1px dashed #ddd;
  772. padding:0 20px
  773. }
  774. .formTable .formTd p{
  775. margin:10px 0
  776. }
  777. .formTable a.formDown{
  778. color:#fff;
  779. font-size:16px;
  780. line-height:30px;
  781. height:30px;
  782. padding:0 25px;
  783. background:#336699;
  784. position:absolute;
  785. right:0;
  786. top:50px
  787. }
  788. .formTable a.formDown span{
  789. display:inline-block;
  790. *display:inline;
  791. zoom:1;
  792. width:16px;
  793. height:16px;
  794. background:url(scIcons.png) no-repeat 0 -111px;
  795. vertical-align: middle;
  796. padding:0 5px 0 0
  797. }
  798. .formTable a.formDown:hover{
  799. padding:0 27px;
  800. height:32px;
  801. line-height:32px;
  802. font-weight:600;
  803. }
  804. .reportContent h1{
  805. font-size:24px;
  806. text-align:center;
  807. margin:15px 0
  808. }
  809. .reportContent p{
  810. line-height:22px;
  811. }
  812. .aboutUsBg .sideBar {
  813. border-color:#b2005e
  814. }
  815. .aboutUsBg .sideBar li a {
  816. color:#b2005e
  817. }
  818. .aboutUsBg .sideBar li.active a {
  819. color:#333
  820. }
  821. .aboutEntry {
  822. border-bottom:1px solid #ccc;
  823. padding:0 0 30px;
  824. margin:30px 0
  825. }
  826. .aboutEntry p{
  827. line-height:30px
  828. }
  829. .aboutEntry a{
  830. color:#B2005E
  831. }
  832. .aboutEntry a:hover{
  833. text-decoration:underline
  834. }
  835. .aboutEntry h2{
  836. font-size:18px;
  837. color:#333
  838. }
  839. .aboutEntry h1{
  840. font-size:24px;
  841. color:#333
  842. }
  843. .whoami h1{
  844. font-size:36px;
  845. color:#b2005e;
  846. margin:0 0 15px 0
  847. }
  848. .whoami h2{
  849. margin:30px 0 15px 0
  850. }
  851. .myPro div.fL,.myPro div.fR{
  852. width:380px;
  853. margin:0 0 15px 0
  854. }
  855. .myPro h1{
  856. margin:0 0 15px 0
  857. }
  858. .myPro h2{
  859. margin:15px 0
  860. }
  861. .family h2{
  862. margin:20px 0 15px 0
  863. }
  864. .workCulture div.fL{
  865. width:223px
  866. }
  867. .workCulture div.middle{
  868. margin:0 70px
  869. }
  870. .workCulture h1{
  871. margin:0 0 15px 0
  872. }
  873. .workCulture h2{
  874. margin:15px 0 0 0
  875. }
  876. .briefHistory h1{
  877. margin:0 0 15px 0
  878. }
  879. .briefHistory h2{
  880. margin:50px 0 10px 0
  881. }
  882. .historyList div.fL{
  883. width:250px
  884. }
  885. .historyList li {
  886. border-bottom:1px dotted #ccc;
  887. padding:30px 0 10px 0
  888. }
  889. .historyList li.noline{
  890. border-bottom:none
  891. }
  892. .historyList div.middle{
  893. margin:0 30px
  894. }
  895. .historyList div.hdate{
  896. font-size:16px;
  897. color:#333;
  898. font-weight:600;
  899. width:60px
  900. }
  901. .historyList div.hitem{
  902. margin:0 20px 0 60px;
  903. }
  904. .historyList div.hitem span{
  905. font-weight:600;
  906. }
  907. .historyList div.hitem p{
  908. line-height:14px;
  909. margin:0 0 20px 0;
  910. color:#999
  911. }
  912. .clientList {
  913. padding:10px 15px;
  914. background:#f7f7f7;
  915. text-align:left;
  916. margin:0 0 30px 0
  917. }
  918. .clientList span{
  919. padding:10px 15px 10px 0;
  920. display:inline-block;
  921. *display:inline;
  922. zoom:1
  923. }
  924. .workCulture,.jobs{
  925. border:none
  926. }
  927. .jobs .jobEntry{
  928. padding:10px 0
  929. }
  930. .jobs .jobEntry h2{
  931. background:#F7F7F7;
  932. cursor:pointer;
  933. padding:3px
  934. }
  935. .jobs .jobEntry dl{
  936. padding:0 0 0 20px;
  937. display:none;
  938. border-left:1px solid #ebebeb
  939. }
  940. .jobs .jobEntry dt{
  941. color:#333;
  942. font-size:16px;
  943. margin:5px 0
  944. }
  945. .jobs .jobEntry dd{
  946. margin:5px 0;
  947. padding:0 20px 0 10px
  948. }
  949. .jobs .jobEntry.focus dl{
  950. display:block
  951. }
  952. .partnerList li{
  953. float:left;
  954. width:90px;
  955. padding:5px 22px 20px 22px;
  956. text-align:center;
  957. height:125px;
  958. }
  959. .partnerList li.openMore{
  960. width:100%;
  961. height:14px;
  962. }
  963. .partnerList li.openMore a{
  964. cursor: pointer;
  965. }
  966. .partnerList li.moreSchool{
  967. display: none
  968. }
  969. .contactBg .width1060{
  970. background:url(mapBg.png) no-repeat 0 0;
  971. height:800px;
  972. position:relative
  973. }
  974. .contactMap {
  975. position:absolute;
  976. top:135px;
  977. right:60px;
  978. padding:10px
  979. }
  980. .contactMap .mapItem{
  981. width:470px;
  982. height:542px;
  983. box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  984. z-index:10;
  985. position:relative;
  986. float:left;
  987. }
  988. .contactMap .mainContact,.contactMap .allContact{
  989. margin:20px 0 0 0;
  990. float:left;
  991. width:225px;
  992. padding:15px 0 15px 15px;
  993. background:url(contactBg.png) repeat;
  994. box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  995. z-index:5;
  996. position:relative
  997. }
  998. .contactMap .mainContact td{
  999. vertical-align: top;
  1000. padding:0 0 10px 0
  1001. }
  1002. .mainContact h1{
  1003. color:#f8b62a;
  1004. font-size:24px;
  1005. margin:0 0 15px 0
  1006. }
  1007. .contactMap .allContact{
  1008. width:315px;
  1009. height:565px;
  1010. overflow-y: auto;
  1011. padding:15px;
  1012. left:450px
  1013. }
  1014. .allContact dl{
  1015. margin:0 0 10px 0;
  1016. padding:0 0 10px 0;
  1017. border-bottom:1px dashed #ccc
  1018. }
  1019. .allContact dt{
  1020. margin:10px 0 0 0;
  1021. font-weight:600
  1022. }
  1023. .allContact dt span{
  1024. width:16px;
  1025. height:16px;
  1026. float:left;
  1027. background:url(scIcons.png) no-repeat -21px -97px;
  1028. margin:0 3px 0 0
  1029. }
  1030. .allContact dd{
  1031. margin:3px 0
  1032. }
  1033. .allContact dd b{
  1034. margin:0 0 0 19px
  1035. }
  1036. .contactMap a.openAll,.contactMap a.closeAll{
  1037. cursor: pointer;
  1038. }
  1039. .index h2{
  1040. font-size:24px;
  1041. border-left:10px solid #333;
  1042. margin:20px 0;
  1043. padding:0 0 0 10px;
  1044. height:24px;
  1045. line-height:24px;
  1046. color:#333
  1047. }
  1048. .index h2 a.allDown{
  1049. background:#336699;
  1050. color:#fff;
  1051. font-size:16px;
  1052. padding:0 10px;
  1053. height:24px;
  1054. line-height:24px
  1055. }
  1056. .index h2 a.allDown:hover{
  1057. background:#009F86
  1058. }
  1059. .ourService .serviceItem{
  1060. width:304px;
  1061. float:left;
  1062. position:relative
  1063. }
  1064. .ourService .indexSoft{
  1065. z-index:999
  1066. }
  1067. .ourService .indexWeb{
  1068. margin:0 50px;
  1069. z-index:0
  1070. }
  1071. .ourService .indexTrain{
  1072. z-index:0
  1073. }
  1074. .serviceItem .serviceTitle {
  1075. background:#ff6501;
  1076. color:#fff;
  1077. width:304px;
  1078. height:179px;
  1079. position: relative;
  1080. margin:0 0 20px 0;
  1081. display:inline-block
  1082. }
  1083. .serviceItem .serviceTitle h3{
  1084. font-size:18px;
  1085. margin:15px 15px 5px 15px;
  1086. height:18px;
  1087. line-height:18px
  1088. }
  1089. .serviceItem .serviceTitle h3 span{
  1090. width:18px;
  1091. height:18px;
  1092. float:left;
  1093. background:url(scIcons.png) no-repeat -41px -95px;
  1094. margin:0 10px 0 0;
  1095. vertical-align:middle
  1096. }
  1097. .serviceItem .serviceTitle p{
  1098. margin:0 15px;
  1099. line-height:21px
  1100. }
  1101. .serviceItem .serviceTitle span.arrow{
  1102. width:14px;
  1103. height:13px;
  1104. background:url(scIcons.png) no-repeat -125px -47px;
  1105. position:absolute;
  1106. top:179px;
  1107. left:15px;
  1108. font-size:1px
  1109. }
  1110. .indexSoft .serviceEntry .softEntry,.softEntryCover {
  1111. background:#ededed;
  1112. margin:0 0 10px 0;
  1113. height:55px;
  1114. padding:15px 15px 0 15px;
  1115. cursor: pointer
  1116. }
  1117. .indexSoft .softEntry span.tL,.softEntryCover span.tL {
  1118. font-size:30px;
  1119. color:#333;
  1120. display:block;
  1121. background:url(scIcons.png) no-repeat 235px -128px
  1122. }
  1123. .softEntryCover {
  1124. position: absolute;
  1125. bottom:10px;
  1126. width:304px;
  1127. cursor:default;
  1128. padding:0;
  1129. height:70px;
  1130. margin:0
  1131. }
  1132. .softEntryCover span.tL {
  1133. background:none;
  1134. color:#ccc
  1135. }
  1136. .indexSoft .softEntry span.webSoft {
  1137. background-position:235px -165px
  1138. }
  1139. .indexSoft .serviceEntry .focus{
  1140. background:#ff6501;
  1141. width:275px
  1142. }
  1143. .indexSoft .focus span.tL{
  1144. color:#fff;
  1145. background:none
  1146. }
  1147. .indexSoft .seList{
  1148. position: absolute;
  1149. background:#ff6501;
  1150. width:635px;
  1151. height:289px;
  1152. padding:30px 40px;
  1153. left:305px;
  1154. top:0;
  1155. z-index:999
  1156. }
  1157. .indexSoft .seList li{
  1158. width:317px;
  1159. float:left
  1160. }
  1161. .indexSoft .seList li a{
  1162. display:inline-block;
  1163. *dispaly:inline;
  1164. zoom:1;
  1165. color:#fff;
  1166. font-size:18px;
  1167. margin:20px 0
  1168. }
  1169. .indexSoft .seList li a:hover{
  1170. border-left:1px solid #fff;
  1171. padding-left:5px
  1172. }
  1173. .indexWeb .serviceTitle {
  1174. background:#b8d30b;
  1175. }
  1176. .indexWeb .serviceTitle h3 span{
  1177. background-position:-60px -95px
  1178. }
  1179. .indexWeb .serviceTitle span.arrow{
  1180. background-position:-139px -47px
  1181. }
  1182. .indexWeb .serviceEntry div.middle{
  1183. margin:0 2px;
  1184. }
  1185. .indexWeb .serviceEntry div:hover{
  1186. border-top:1px solid #fff
  1187. }
  1188. .indexTrain .serviceTitle {
  1189. background:#32a5b5
  1190. }
  1191. .indexTrain .serviceTitle h3 span{
  1192. background-position:-41px -114px
  1193. }
  1194. .indexTrain .serviceTitle span.arrow{
  1195. background-position:-125px -60px
  1196. }
  1197. .indexTrain .trainEntry {
  1198. width:284px;
  1199. padding:0 10px;
  1200. margin:0 0 1px 0
  1201. }
  1202. .indexTrain .trainEntry .trainState{
  1203. width:90px
  1204. }
  1205. .indexTrain .trainEntry .trainState p.tData {
  1206. font-size:11px
  1207. }
  1208. .indexTrain .trainEntry .trainTitle{
  1209. width:185px;
  1210. white-space:nowrap
  1211. }
  1212. .downloadCenter {
  1213. min-height:400px;
  1214. }
  1215. .downSelect{
  1216. margin:30px 0;
  1217. height:60px
  1218. }
  1219. .selectEntry{
  1220. width:280px;
  1221. height:50px;
  1222. line-height:50px;
  1223. background:#009F86;
  1224. color:#fff;
  1225. padding:0 20px;
  1226. position: relative;
  1227. cursor:pointer;
  1228. float:left;
  1229. margin:0 25px 0 0
  1230. }
  1231. .selectEntry span.selectTitle{
  1232. font-size:14px;
  1233. float:left;
  1234. height:50px;
  1235. line-height:50px;
  1236. width:245px
  1237. }
  1238. .selectEntry b.arrow{
  1239. height:50px;
  1240. width:50px;
  1241. position: absolute;
  1242. right:0;
  1243. top:0;
  1244. text-align:center
  1245. }
  1246. .selectEntry b.down{
  1247. background:#ededed;
  1248. color:#009F86
  1249. }
  1250. .selectEntry i.num{
  1251. position:absolute;
  1252. left:3px;
  1253. top:3px;
  1254. height:12px;
  1255. line-height:12px;
  1256. }
  1257. .selectEntry .selectList{
  1258. height:248px;
  1259. position:absolute;
  1260. top:50px;
  1261. left:0;
  1262. overflow:auto;
  1263. overflow-x:hidden;
  1264. }
  1265. .selectEntry li a{
  1266. width:300px;
  1267. padding:0 0 0 20px;
  1268. height:30px;
  1269. line-height:30px;
  1270. float:left;
  1271. background:#ededed;
  1272. color:#333;
  1273. border-bottom:1px solid #fff
  1274. }
  1275. .selectEntry li a:hover{
  1276. background:#009F86;
  1277. color:#fff
  1278. }
  1279. .selectEntry li a.now{
  1280. background:#009F86;
  1281. color:#fff
  1282. }
  1283. .selectEntry.downLink {
  1284. background:#336699;
  1285. margin:0
  1286. }
  1287. .selectEntry.downLink a{
  1288. color:#fff;
  1289. text-decoration:underline;
  1290. margin:0 0 0 20px
  1291. }
  1292. .selectEntry.downLink a:hover{
  1293. text-decoration: none;
  1294. font-weight: 600
  1295. }
  1296. .downAllSelect dl{
  1297. margin:0 0 20px 0
  1298. }
  1299. .downAllSelect dt {
  1300. background:#666;
  1301. color:#fff;
  1302. padding:5px 10px
  1303. }
  1304. .downAllSelect dd{
  1305. width:480px;
  1306. padding:15px 15px;
  1307. float:left;
  1308. border-left:1px solid #ddd;
  1309. margin:0 0 -1px -1px;
  1310. border-bottom:1px solid #ddd
  1311. }
  1312. .downAllSelect dd a{
  1313. float:right;
  1314. margin:0 0 0 5px
  1315. }
  1316. .dSoftInof .productTab .title{
  1317. margin:5px 0 0 8px;
  1318. font-size:18px;
  1319. height:32px;
  1320. line-height:32px;
  1321. }
  1322. .dSoftInof .productTab .title img{
  1323. margin:0 10px 0 0
  1324. }
  1325. .dSoftInof .videoItem li{
  1326. margin:0 18px 30px 18px
  1327. }
  1328. .dSoftInof .contentItem {
  1329. margin: 20px 0;
  1330. }
  1331. .dSoftInof .videoItem li .videoCon{
  1332. top:0
  1333. }
  1334. /*!
  1335. * Bootstrap v2.3.1
  1336. *
  1337. * Copyright 2012 Twitter, Inc
  1338. * Licensed under the Apache License v2.0
  1339. * http://www.apache.org/licenses/LICENSE-2.0
  1340. *
  1341. * Designed and built with all the love in the world @twitter by @mdo and @fat.
  1342. */
  1343. .modal-backdrop {
  1344. position: fixed;
  1345. top: 0;
  1346. right: 0;
  1347. bottom: 0;
  1348. left: 0;
  1349. z-index: 1040;
  1350. background-color: #000000;
  1351. }
  1352. .modal-backdrop.fade {
  1353. opacity: 0;
  1354. }
  1355. .modal-backdrop,
  1356. .modal-backdrop.fade.in {
  1357. opacity: 0.8;
  1358. filter: alpha(opacity=80);
  1359. }
  1360. .modal {
  1361. position: fixed;
  1362. _position:absolute;
  1363. top: 10%;
  1364. left: 50%;
  1365. z-index: 1050;
  1366. width: 860px;
  1367. margin-left: -430px;
  1368. background-color: #ffffff;
  1369. border: 1px solid #999;
  1370. border: 1px solid rgba(0, 0, 0, 0.3);
  1371. *border: 1px solid #999;
  1372. /* IE6-7 */
  1373. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  1374. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  1375. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  1376. -webkit-background-clip: padding-box;
  1377. -moz-background-clip: padding-box;
  1378. background-clip: padding-box;
  1379. outline: none;
  1380. }
  1381. .modal.fade {
  1382. -webkit-transition: opacity .3s linear, top .3s ease-out;
  1383. -moz-transition: opacity .3s linear, top .3s ease-out;
  1384. -o-transition: opacity .3s linear, top .3s ease-out;
  1385. transition: opacity .3s linear, top .3s ease-out;
  1386. top: -25%;
  1387. }
  1388. .modal.fade.in {
  1389. top: 10%;
  1390. }
  1391. .modal-header {
  1392. padding: 9px 15px;
  1393. border-bottom: 1px solid #eee;
  1394. }
  1395. .modal-header .close {
  1396. margin-top: 2px;
  1397. }
  1398. .modal-header h3 {
  1399. margin: 0;
  1400. line-height: 30px;
  1401. }
  1402. .modal-body {
  1403. position: relative;
  1404. padding: 1px;
  1405. }
  1406. .modal-form {
  1407. margin-bottom: 0;
  1408. }
  1409. .modal a.close{
  1410. background:#FFF;
  1411. padding: 0 5px;
  1412. position: absolute;
  1413. _background:#f90000;
  1414. _color:#fff
  1415. }
  1416. .adBanner{
  1417. position:absolute;
  1418. top:-45px;
  1419. width:1020px
  1420. }
  1421. #openBanner,#closeBanner{
  1422. width:12px;
  1423. position:absolute;
  1424. right:-23px;
  1425. top:0;
  1426. cursor:pointer;
  1427. background:#FF6501;
  1428. color:#fff;
  1429. padding:3px 5px;
  1430. font-weight:600;
  1431. border-bottom:1px solid #fff
  1432. }
  1433. #topBannerSmall {
  1434. text-align:right;
  1435. width:1020px
  1436. }
  1437. /*newIndex*/
  1438. .newIndex{
  1439. border-top:3px solid #333333
  1440. }
  1441. .indexMedia {
  1442. height:400px;
  1443. width:100%;
  1444. margin:1px auto 0;
  1445. position:relative;
  1446. overflow: hidden
  1447. }
  1448. .slideBanner{
  1449. height:400px;
  1450. overflow: hidden;
  1451. }
  1452. .slideBanner .bannerEntry{
  1453. width:100%;
  1454. margin:0 auto
  1455. }
  1456. .bannerEntry .bImg{
  1457. width:1020px;
  1458. margin:0 auto;
  1459. position:relative
  1460. }
  1461. .bannerEntry .learnMore {
  1462. position:absolute;
  1463. right:50px;
  1464. bottom:50px;
  1465. color:#1570A6;
  1466. font-size:18px;
  1467. background:#fff;
  1468. padding:8px 15px;
  1469. border-bottom:3px solid #fff;
  1470. z-index:99;
  1471. transition: all 0.8s ease-out 0s;
  1472. transform: translateY(60px);
  1473. opacity:0
  1474. }
  1475. .bannerEntry.show .learnMore{
  1476. transform: translateY(0px);
  1477. opacity:1
  1478. }
  1479. .banner01{
  1480. background:#701585
  1481. }
  1482. .banner01 .learnMore {
  1483. background:#298514;
  1484. color:#fff
  1485. }
  1486. .banner02{
  1487. background:#b62e22
  1488. }
  1489. .banner02 .learnMore {
  1490. background:#21aab6;
  1491. color:#fff
  1492. }
  1493. .banner03{
  1494. background:url(bigbanner03.png) no-repeat center center
  1495. }
  1496. .banner03 .learnMore {
  1497. background:#333;
  1498. color:#fff
  1499. }
  1500. .banner04{
  1501. background:#ff6501
  1502. }
  1503. .banner04 .learnMore {
  1504. background:#009aff;
  1505. color:#fff
  1506. }
  1507. .banner05{
  1508. background:url(bigbanner05.png) no-repeat center center
  1509. }
  1510. .banner05 .learnMore {
  1511. background:#333;
  1512. color:#fff
  1513. }
  1514. .banner06{
  1515. background:#2d3e50
  1516. }
  1517. .banner06 .learnMore {
  1518. background:#0d75bd;
  1519. color:#fff
  1520. }
  1521. .banner07{
  1522. background:url(bigbanner07.png) no-repeat center center
  1523. }
  1524. .banner07 .learnMore {
  1525. background:#f0b500;
  1526. color:#fff
  1527. }
  1528. .banner08{
  1529. background:url(bigbanner08.png) no-repeat center center
  1530. }
  1531. .banner08 .learnMore {
  1532. background:#333;
  1533. color:#fff
  1534. }
  1535. .slidePointer {
  1536. position:absolute;
  1537. bottom:10px;
  1538. right:15px
  1539. }
  1540. .slidePointer li{
  1541. float:left;
  1542. font-size:26px;
  1543. color: #fff;
  1544. margin:0 5px 0 0;
  1545. cursor:pointer
  1546. }
  1547. .slidePointer li.now{
  1548. color:#000;
  1549. cursor:default;
  1550. text-shadow:0 1px 0px #fff
  1551. }
  1552. .warpProduct {
  1553. width:1060px;
  1554. position:relative;
  1555. margin:20px auto;
  1556. height:360px
  1557. }
  1558. .warpProduct .softItem{
  1559. padding:15px 30px 15px 30px;
  1560. width:220px;
  1561. background:#fff;
  1562. box-shadow:0 0 0 1px rgba(0, 0, 0, 0.1);
  1563. position:absolute;
  1564. top:-60px;
  1565. left:0
  1566. }
  1567. .warpProduct h2{
  1568. font-size:24px;
  1569. margin:0 0 10px 0
  1570. }
  1571. .warpProduct .softItem li{
  1572. margin:15px 0
  1573. }
  1574. .warpProduct .websiteItem{
  1575. margin:0 0 0 320px
  1576. }
  1577. .warpProduct .websiteItem a{
  1578. margin:0 1px 0 0
  1579. }
  1580. .warpProduct .protrainItem {
  1581. margin:25px 0 0 690px;
  1582. width:370px
  1583. }
  1584. .warpProduct .protrainItem li {
  1585. margin:0 0 15px 0
  1586. }
  1587. .warpProduct .protrainItem a.fR{
  1588. background: #2DAEBF;
  1589. padding:3px 5px;
  1590. color:#fff
  1591. }
  1592. .warpProduct .padItem{
  1593. position: absolute;
  1594. height:170px;
  1595. width:340px;
  1596. left:320px;
  1597. top:170px
  1598. }
  1599. .newsBg .sideBar{
  1600. border-color:#868b2f;
  1601. }
  1602. .newsBg .sideBar li a {
  1603. color:#868b2f
  1604. }
  1605. .newsBg .sideBar li.active a {
  1606. color:#333
  1607. }
  1608. .newsList {
  1609. margin:20px 0;
  1610. }
  1611. .newsList .nItem {
  1612. border-bottom:1px solid #f2f2f2;
  1613. padding: 20px 0;
  1614. position:relative;
  1615. min-height:140px;
  1616. }
  1617. .nItem .nThumb{
  1618. position:absolute;
  1619. width:200px;
  1620. height:140px;
  1621. overflow:hidden
  1622. }
  1623. .nItem .nCon{
  1624. margin-left:230px;
  1625. }
  1626. .nItem .nCon h2{
  1627. margin-bottom: 20px;
  1628. margin-right: 20px
  1629. }
  1630. .nItem .nCon h2 a{
  1631. font-size: 18px
  1632. }
  1633. .nItem .nCon .nDes{
  1634. color:#999;
  1635. margin-right: 20px
  1636. }
  1637. .nItem .nCon .nInfo{
  1638. color:#ccc;
  1639. margin-top: 10px
  1640. }
  1641. .nItem .nCon .nInfo a{
  1642. color:#ccc;
  1643. }
  1644. .newsContent {
  1645. position:relative;
  1646. padding:20px 0;
  1647. }
  1648. .newsCitem {
  1649. margin-right: 340px;
  1650. margin-top: 20px
  1651. }
  1652. .newSide{
  1653. float: right;
  1654. width:320px;
  1655. padding:20px 0 0 0;
  1656. }
  1657. .newSide dt{
  1658. padding:5px 0 5px 20px;
  1659. font-size: 18px;
  1660. border-left:1px solid #12629C;
  1661. }
  1662. .newSide dd{
  1663. border-left:1px solid #ddd;
  1664. padding:10px 10px 20px 20px
  1665. }
  1666. .newSide dd a{
  1667. font-size:14px;
  1668. }
  1669. .newsCitem p{
  1670. font-size: 16px;
  1671. line-height:28px;
  1672. }
  1673. .newsCitem p a{
  1674. font-size: 16px;
  1675. }
  1676. .ncTitle {
  1677. background-size:cover;
  1678. background-position: center;
  1679. height:200px;
  1680. overflow:hidden;
  1681. position:relative
  1682. }
  1683. .ncTitle .wrapBg{
  1684. background:rgba(0,0,0,0.5);
  1685. background:none\9;
  1686. height:100%
  1687. }
  1688. .ncTitle h1{
  1689. font-size: 26px;
  1690. color:#fff;
  1691. padding-top:50px;
  1692. margin:0 40px 0 40px;
  1693. text-shadow:0 1px 1px #333;
  1694. }
  1695. .ncTitle p {
  1696. position:absolute;
  1697. bottom:30px;
  1698. left:40px;
  1699. color:#f2f2f2;
  1700. text-shadow:0 1px 2px #333;
  1701. }
  1702. .ncTitle p a{
  1703. color:#fff;
  1704. }
  1705. .pagination .none {
  1706. color:#ccc;
  1707. text-decoration: none;
  1708. cursor:default;
  1709. }
  1710. .webproLink li{
  1711. line-height:32px;
  1712. height:32px;
  1713. margin:10px 0 20px 0
  1714. }
  1715. .webproLink .icon{
  1716. height:32px;
  1717. width:32px;
  1718. display:inline-block;
  1719. *display:inline;
  1720. zoom:1;
  1721. background:url(webpro.png) no-repeat;
  1722. margin:0 10px 0 0;
  1723. vertical-align: top;
  1724. }
  1725. .webproLink .icon.iconol{
  1726. background-position:0 -32px
  1727. }
  1728. .webproLink .icon.iconsso{
  1729. background-position:0 0
  1730. }
  1731. .webproLink .icon.iconqy{
  1732. background-position:0 -64px
  1733. }
  1734. .webproLink li a{
  1735. font-size:18px;
  1736. display:inline-block;
  1737. *display:inline;
  1738. zoom:1;
  1739. height:32px;
  1740. line-height:32px
  1741. }
  1742. .bolangbanner {
  1743. bottom: 0;
  1744. height: 100px;
  1745. position: absolute;
  1746. width: 100%;
  1747. z-index:0;
  1748. }
  1749. #banner_bolang_bg_1{
  1750. position: absolute;
  1751. height:85px;
  1752. background: url(wave1.png) repeat-x;
  1753. width:300%;
  1754. bottom:0;
  1755. }
  1756. #banner_bolang_bg_2{
  1757. position: absolute;
  1758. height:100px;
  1759. background: url(wave2.png) repeat-x;
  1760. width:300%;
  1761. top:0;
  1762. }
  1763. .searchWrap {
  1764. border-top:3px solid #333;
  1765. }
  1766. .searchWrap .searchPanel {
  1767. box-shadow:1px 2px 3px #E7E7E7;
  1768. position: relative;
  1769. width:565px;
  1770. margin: 30px auto
  1771. }
  1772. .searchPanel .sInptw {
  1773. display: inline-block;
  1774. height: 48px;
  1775. width: 500px;
  1776. overflow: hidden;
  1777. border-width: 1px 0px 1px 1px;
  1778. border-color: #B5B5B5;
  1779. border-style: solid;
  1780. background-color: #FFF;
  1781. vertical-align: top;
  1782. box-shadow: 1px 1px 2px #E7E7E7 inset;
  1783. }
  1784. .searchPanel .sSel {
  1785. font-size: 12px;
  1786. position: absolute;
  1787. left:10px;
  1788. top:12px;
  1789. z-index: 99;
  1790. }
  1791. .searchPanel .sSel select{
  1792. padding:5px 0;
  1793. }
  1794. .searchPanel .sBtn {
  1795. position: relative;
  1796. cursor: pointer;
  1797. width: 64px;
  1798. height: 50px;
  1799. overflow: hidden;
  1800. vertical-align: top;
  1801. background-position: 50% 0px;
  1802. background-repeat: no-repeat;
  1803. float:right;
  1804. }
  1805. .searchPanel .sBtn input{
  1806. position: absolute;
  1807. background:#ff6501;
  1808. width: 64px;
  1809. height: 50px;
  1810. line-height:40px;
  1811. font-size: 18px;
  1812. text-align: center;
  1813. color:#fff;
  1814. cursor: pointer;
  1815. border:none
  1816. }
  1817. .searchPanel .sBtn input:hover{
  1818. background-color: #ff7b25;
  1819. }
  1820. .searchPanel .sBtn input:active{
  1821. line-height: 50px
  1822. }
  1823. .searchPanel .sInptw input{
  1824. background: none repeat scroll 0% 0% transparent;
  1825. outline: 0px none;
  1826. width: 430px;
  1827. height: 38px;
  1828. padding: 6px 5px 3px 100px;
  1829. font-size: 18px;
  1830. color: #666;
  1831. border:none;
  1832. }
  1833. .searchResults .entry {
  1834. margin:0px 0 15px;
  1835. padding:0px 0 15px 0;
  1836. border-bottom:1px dashed #ddd;
  1837. }
  1838. .searchResults .entry a.title{
  1839. font-size:16px;
  1840. }
  1841. .mainContent_con{
  1842. }
  1843. .security_h{
  1844. text-align:center;
  1845. margin:45px 0 20px;
  1846. font-size:30px;
  1847. color:#666;
  1848. }
  1849. .security_con{
  1850. position:relative;
  1851. text-align:center;
  1852. background:url(securityBg.png) no-repeat 255px 0;
  1853. margin:15px 0 35px 0;
  1854. }
  1855. .security_inputLock{
  1856. text-align:center;
  1857. padding:45px 0;
  1858. }
  1859. .security_inputLock span{
  1860. position:relative;
  1861. font-size:30px;
  1862. }
  1863. .security_input{
  1864. width:240px;
  1865. font-size:30px;
  1866. border:none;
  1867. background:#f3f3f3;
  1868. color:#ff6501;
  1869. padding:3px 0 3px 10px;
  1870. }
  1871. .security_inputLock .tips{
  1872. position:absolute;
  1873. left:15px;
  1874. top:5px;
  1875. }
  1876. .security_Lock{
  1877. position:absolute;
  1878. z-index:99;
  1879. left:350px;
  1880. top:90px;
  1881. display:none;
  1882. }
  1883. .security_btn{
  1884. margin:50px 0;
  1885. text-align:center;
  1886. }
  1887. .security_btn a{
  1888. text-decoration:none;
  1889. }
  1890. .btn_security{
  1891. font-size:30px;
  1892. color:#fff;
  1893. background:#ff6501;
  1894. border-radius:5px;
  1895. -moz-border-radius:5px;
  1896. -webkit-border-radius:5px;
  1897. padding:10px 100px;
  1898. border:none
  1899. }
  1900. .btn_security:hover{
  1901. color:#fff;
  1902. background:#ec5d00;
  1903. border:none
  1904. }
  1905. .btn_security:active{
  1906. color:#fff;
  1907. background:#ff6501;
  1908. border:none
  1909. }
  1910. .piracy_con{
  1911. text-align:center;
  1912. margin:65px 0;
  1913. text-align:center;
  1914. font-size:20px;
  1915. color:#ff6501;
  1916. }
  1917. .genuine_con{
  1918. margin:45px 0;
  1919. color:#666;
  1920. }
  1921. .genuine_con h2{
  1922. text-align:center;
  1923. height:45px;
  1924. line-height:45px;
  1925. font-size:20px;
  1926. }
  1927. .genuine_con ul{
  1928. margin:0 0 0 326px;
  1929. }
  1930. .genuine_con ul li{
  1931. font-size:16px;
  1932. padding:3px 0;
  1933. }
  1934. .trainingCon ul li{
  1935. float:left;
  1936. margin:15px 30px 15px 30px;
  1937. }
  1938. .trainingImg img{
  1939. width:210px;
  1940. height:210px;
  1941. }
  1942. /*-2.0首页-*/
  1943. /*顶部*/
  1944. .warp-header {
  1945. height:60px;
  1946. }
  1947. .warp-header-shell {
  1948. width:1060px;
  1949. margin:0 auto;
  1950. }
  1951. .warp-header .header-logo a{
  1952. float:left;
  1953. width:60px;
  1954. height:60px;
  1955. background:url(scIcons.png) no-repeat -62px -205px;
  1956. }
  1957. .warp-header .header-nav {
  1958. margin-left: 20px
  1959. }
  1960. .warp-header .header-nav h2{
  1961. font-size: 16px;
  1962. line-height: 60px;
  1963. color:#2F2F2F;
  1964. }
  1965. .header-nav .nav-main {
  1966. float:left;
  1967. padding:0 20px;
  1968. position:relative;
  1969. cursor:pointer
  1970. }
  1971. .header-nav .nav-main:hover {
  1972. background-color: #F1F1F1
  1973. }
  1974. .header-nav .nav-main:hover > h2{
  1975. color:#2f2f2f
  1976. }
  1977. .header-nav .nav-main.active {
  1978. background-color: #F1F1F1
  1979. }
  1980. .header-nav .nav-main.active > h2{
  1981. color:#2f2f2f
  1982. }
  1983. .header-nav h2 .nav-icon{
  1984. margin:0 0 0 10px;
  1985. vertical-align:middle
  1986. }
  1987. .header-nav .nav-icon {
  1988. background:url(scIcons.png) no-repeat 0 0;
  1989. display:inline-block;
  1990. width:16px;
  1991. height:16px
  1992. }
  1993. .nav-drop .nav-icon{
  1994. float:right;
  1995. margin-top:18px;
  1996. }
  1997. .nav-icon.icon-up {
  1998. background-position: -123px -205px
  1999. }
  2000. .nav-icon.icon-right {
  2001. background-position: -123px -239px
  2002. }
  2003. .nav-drop {
  2004. position:absolute;
  2005. background-color:#f1f1f1;
  2006. min-width:200px;
  2007. max-width:400px;
  2008. left:0;
  2009. z-index: 999
  2010. }
  2011. .nav-drop dt {
  2012. height:50px;
  2013. line-height:50px;
  2014. padding:0 20px;
  2015. color:#2F2F2F;
  2016. width:160px;
  2017. }
  2018. .nav-drop dt > a{
  2019. color:#2F2F2F;
  2020. text-decoration: none;
  2021. float:left;
  2022. width:160px
  2023. }
  2024. .nav-drop dt > a:hover {
  2025. text-decoration:underline
  2026. }
  2027. .nav-drop dt.active{
  2028. background-color:#E5E5E5
  2029. }
  2030. .nav-drop dt:hover{
  2031. background-color:#E5E5E5
  2032. }
  2033. .nav-drop dt.active .nav-icon{
  2034. opacity:0.2;
  2035. }
  2036. .nav-dropdown-content {
  2037. position:absolute;
  2038. left:200px;
  2039. background-color:#E5E5E5;
  2040. width:200px;
  2041. top:0;
  2042. }
  2043. .nav-dropdown-content li {
  2044. height:50px;
  2045. line-height:50px;
  2046. display:block;
  2047. width:200px;
  2048. padding:0;
  2049. }
  2050. .nav-dropdown-content li:hover {
  2051. background-color: #D9D9D9;
  2052. }
  2053. .nav-dropdown-content li a{
  2054. display:inline-block;
  2055. padding:0 20px;
  2056. width:160px;
  2057. color:#2F2F2F;
  2058. }
  2059. .nav-dropdown-content li a:hover{
  2060. background-color: #D9D9D9;
  2061. }
  2062. .index-header .active .nav-icon.icon-up {
  2063. background-position: -123px -205px
  2064. }
  2065. .index-header li:hover .nav-icon.icon-up {
  2066. background-position: -123px -205px
  2067. }
  2068. .header-search{
  2069. float:right;
  2070. height:60px;
  2071. line-height: 60px
  2072. }
  2073. .header-search .search-bar{
  2074. height:24px;
  2075. background:#fff;
  2076. line-height: 24px;
  2077. padding:2px;
  2078. margin-top: 15px;
  2079. border:1px solid #ddd;
  2080. }
  2081. .search-bar .search-input{
  2082. height:22px;
  2083. background:#fff;
  2084. border:none;
  2085. display:inline-block;
  2086. padding:0 5px;
  2087. width:220px;
  2088. }
  2089. .search-bar .search-submit{
  2090. height:24px;
  2091. background:#ff6501;
  2092. color:#fff;
  2093. border:none;
  2094. display:inline-block;
  2095. padding:0 5px;
  2096. cursor:pointer;
  2097. }
  2098. .search-bar .search-submit:hover{
  2099. background:#ff8130;
  2100. }
  2101. .search-bar select{
  2102. border:1px solid #fff
  2103. }
  2104. .header-search .search-icon{
  2105. width:24px;
  2106. height:24px;
  2107. background:url(search-icon.png) no-repeat 0 0;
  2108. display:inline-block;
  2109. cursor:pointer;
  2110. vertical-align:middle
  2111. }
  2112. /*首页顶部*/
  2113. .index-header{
  2114. position:absolute;
  2115. width:100%;
  2116. z-index: 999;
  2117. background:url(header-bg.png) repeat center center;
  2118. }
  2119. .index-header .header-logo a{
  2120. background-position: 0px -205px
  2121. }
  2122. .index-header .header-nav h2 {
  2123. color:#fff;
  2124. font-weight: 600
  2125. }
  2126. .index-header .nav-icon.icon-up {
  2127. background-position: -140px -205px
  2128. }
  2129. .index-header .header-search .search-icon{
  2130. background:url(search-icon.png) no-repeat 0 -24px
  2131. }
  2132. .index-header .header-search .search-bar{
  2133. border:1px solid #fff;
  2134. }
  2135. /*广告*/
  2136. .warp-banner {
  2137. height:500px;
  2138. width:100%;
  2139. position:relative;
  2140. background-color: #333
  2141. }
  2142. .banner-shell {
  2143. height:500px;
  2144. overflow:hidden;
  2145. }
  2146. .banner-entry {
  2147. position:absolute;
  2148. height:500px;
  2149. width:100%;
  2150. opacity:0;
  2151. overflow:hidden;
  2152. transition: all 0.6s ease-out 0s;
  2153. }
  2154. .banner-entry.show{
  2155. opacity:1;
  2156. }
  2157. .banner-entry .banner-images{
  2158. width:1060px;
  2159. height:500px;
  2160. position:relative;
  2161. margin:0 auto;
  2162. overflow:hidden;
  2163. }
  2164. /*计量支付*/
  2165. .banner-entry.banner-one {
  2166. background:#B6BA6B url(bing-banner01.jpg) center center
  2167. }
  2168. .banner-one .animation{
  2169. position:absolute;
  2170. opacity:0
  2171. }
  2172. .banner-one .images-1{
  2173. background:url(banner-jlzf.png) 0 0;
  2174. width:504px;
  2175. height:392px;
  2176. bottom:40px;
  2177. right:35px;
  2178. transition: all 0.8s ease-out 0s;
  2179. transform: translateY(-60px);
  2180. transition-delay: 0.2s;
  2181. }
  2182. .banner-one .images-2{
  2183. background:url(banner-jlzf.png) 0 -392px;
  2184. width:376px;
  2185. height:219px;
  2186. bottom:25px;
  2187. right:354px;
  2188. transition: all 0.8s ease-in 0s;
  2189. transform: translateX(-70px);
  2190. }
  2191. .banner-one .images-3{
  2192. background:url(banner-jlzf.png) 0 -611px;
  2193. width:237px;
  2194. height:168px;
  2195. bottom:25px;
  2196. right:5px;
  2197. transition: all 0.8s ease-in 0s;
  2198. transform: translateX(70px);
  2199. }
  2200. .banner-one.show .images-1{
  2201. transform: translateY(0px);
  2202. opacity:1;
  2203. }
  2204. .banner-one.show .images-2{
  2205. transform: translateX(0px);
  2206. opacity:1;
  2207. }
  2208. .banner-one.show .images-3{
  2209. transform: translateX(0px);
  2210. opacity:1;
  2211. }
  2212. .banner-one .title-1{
  2213. background:url(banner-jlzf.png) 0 -780px;
  2214. width:470px;
  2215. height:38px;
  2216. top:135px;
  2217. left:15px;
  2218. transition: all 0.4s ease-out 0s;
  2219. transform: translateX(30px);
  2220. }
  2221. .banner-one .title-2{
  2222. background:url(banner-jlzf.png) -335px -610px;
  2223. width:239px;
  2224. height:30px;
  2225. top:230px;
  2226. left:15px;
  2227. transition: all 0.2s ease-in 0s;
  2228. transform: translateX(30px);
  2229. transition-delay: 0.2s;
  2230. }
  2231. .banner-one .title-3{
  2232. background:url(banner-jlzf.png) -335px -648px;
  2233. width:209px;
  2234. height:30px;
  2235. top:285px;
  2236. left:15px;
  2237. transition: all 0.2s ease-in 0s;
  2238. transform: translateX(30px);
  2239. transition-delay: 0.4s;
  2240. }
  2241. .banner-one .title-4{
  2242. background:url(banner-jlzf.png) -335px -685px;
  2243. width:209px;
  2244. height:30px;
  2245. top:336px;
  2246. left:15px;
  2247. transition: all 0.2s ease-in 0s;
  2248. transform: translateX(30px);
  2249. transition-delay: 0.6s;
  2250. }
  2251. .banner-one.show .title-1{
  2252. transform: translateX(0px);
  2253. opacity:1;
  2254. }
  2255. .banner-one.show .title-2{
  2256. transform: translateX(0px);
  2257. opacity:1;
  2258. }
  2259. .banner-one.show .title-3{
  2260. transform: translateX(0px);
  2261. opacity:1;
  2262. }
  2263. .banner-one.show .title-4{
  2264. transform: translateX(0px);
  2265. opacity:1;
  2266. }
  2267. .banner-one .more-button{
  2268. position:absolute;
  2269. top:420px;
  2270. left:15px;
  2271. z-index: 99;
  2272. opacity:0;
  2273. transition: all 0.2s ease-in 0s;
  2274. transform: translateX(30px);
  2275. transition-delay: 0.8s;
  2276. }
  2277. .banner-one.show .more-button{
  2278. transform: translateX(0px);
  2279. opacity:1;
  2280. }
  2281. .banner-one .more-button a{
  2282. color:#343434;
  2283. border:1px solid #343434;
  2284. padding:15px 30px;
  2285. text-decoration: none;
  2286. font-size: 16px
  2287. }
  2288. .banner-one .more-button a:hover{
  2289. color:#fff;
  2290. background:#343434;
  2291. }
  2292. /*计量支付*/
  2293. /*N合1*/
  2294. .banner-entry.banner-two {
  2295. background:#ed6455 url(bing-banner02.jpg) center center
  2296. }
  2297. .banner-two .animation{
  2298. position:absolute;
  2299. opacity:0
  2300. }
  2301. .banner-two .title-1{
  2302. background:url(banner-ninone.png) 0 0;
  2303. width:427px;
  2304. height:135px;
  2305. top:175px;
  2306. left:125px;
  2307. transition: all 0.4s ease-out 0s;
  2308. transform: translateX(-60px);
  2309. }
  2310. .banner-two .title-2{
  2311. background:url(banner-ninone.png) 0 -135px;
  2312. width:332px;
  2313. height:122px;
  2314. top:190px;
  2315. right:125px;
  2316. transition: all 0.4s ease-out 0s;
  2317. transform: translateX(60px);
  2318. }
  2319. .banner-two .title-3{
  2320. left:0;
  2321. top:0;
  2322. width:70px;
  2323. opacity:1;
  2324. height:122px;background:url(banner-ninone1.png) 0 0
  2325. }
  2326. .banner-two .more-button{
  2327. position:absolute;
  2328. top:385px;
  2329. left:475px;
  2330. z-index: 99;
  2331. opacity:0;
  2332. transition: all 0.4s ease-in 0s;
  2333. transform: translateY(30px);
  2334. transition-delay: 0.2s;
  2335. }
  2336. .banner-two.show .more-button{
  2337. transform: translateY(0px);
  2338. opacity:1;
  2339. }
  2340. .banner-two .more-button a{
  2341. color:#fff;
  2342. border:1px solid #fff;
  2343. padding:15px 30px;
  2344. text-decoration: none;
  2345. font-size: 16px
  2346. }
  2347. .banner-two .more-button a:hover{
  2348. color:#cf4a3e;
  2349. background:#fff;
  2350. }
  2351. .banner-two.show .title-1{
  2352. transform: translateX(0px);
  2353. opacity:1;
  2354. }
  2355. .banner-two.show .title-2{
  2356. transform: translateX(0px);
  2357. opacity:1;
  2358. }
  2359. .banner-two.show .title-3{
  2360. -webkit-animation:pulse 0.4s infinite ease;
  2361. -moz-animation:pulse 0.4s infinite ease;}
  2362. @-webkit-keyframes pulse{
  2363. 0%{background:url(banner-ninone1.png) 0 -122px;}
  2364. 25%{background:url(banner-ninone1.png) 0 -244px;}
  2365. 50%{background:url(banner-ninone1.png) 0 -366px;}
  2366. 75%{background:url(banner-ninone1.png) 0 -488px;}
  2367. 100%{background:url(banner-ninone1.png) 0 -610px;}
  2368. }
  2369. @-moz-keyframes pulse{
  2370. 0%{background:url(banner-ninone1.png) 0 -122px;}
  2371. 25%{background:url(banner-ninone1.png) 0 -244px;}
  2372. 50%{background:url(banner-ninone1.png) 0 -366px;}
  2373. 75%{background:url(banner-ninone1.png) 0 -488px;}
  2374. 100%{background:url(banner-ninone1.png) 0 -610px;}
  2375. }
  2376. /*N合1*/
  2377. /*V908*/
  2378. .banner-entry.banner-three {
  2379. background:#efefef url(bing-banner03.jpg) center center
  2380. }
  2381. .banner-three .animation{
  2382. position:absolute;
  2383. opacity:0
  2384. }
  2385. .banner-three .title-1{
  2386. background:url(banner-908.png) 0px 0px;
  2387. width:653px;
  2388. height:50px;
  2389. top:170px;
  2390. left:200px;
  2391. transition: all 0.2s ease-in 0s;
  2392. transform: translateY(30px);
  2393. transition-delay: 0.2s;
  2394. }
  2395. .banner-three .title-2{
  2396. background:url(banner-908.png) 0px -50px;
  2397. width:275px;
  2398. height:108px;
  2399. top:240px;
  2400. left:585px;
  2401. transition: all 0.2s ease-in 0s;
  2402. transform: translateY(30px);
  2403. transition-delay: 0.4s;
  2404. }
  2405. .banner-three .title-3{
  2406. background:url(banner-908.png) 0px -158px;
  2407. width:359px;
  2408. height:83px;
  2409. top:252px;
  2410. left:200px;
  2411. transition: all 0.2s ease-in 0s;
  2412. transform: translateY(30px);
  2413. transition-delay: 0.8s;
  2414. }
  2415. .banner-three.show .title-1{
  2416. transform: translateY(0px);
  2417. opacity:1;
  2418. }
  2419. .banner-three.show .title-2{
  2420. transform: translateY(0px);
  2421. opacity:1;
  2422. -webkit-animation:shak 0.7s infinite ease;
  2423. -moz-animation:shak 0.7s infinite ease;
  2424. animation:shak 0.7s infinite ease;
  2425. }
  2426. @-webkit-keyframes shak{
  2427. 0%,100%{-webkit-transform:translateY(0);}
  2428. 10%,30%,50%,70%, 90%{-webkit-transform:translateY(-10px);}
  2429. 20%,40%,60%,80%{-webkit-transform:translateX(10px);}
  2430. }
  2431. @-moz-keyframes shak{
  2432. 0%,100%{-moz-transform:translateY(0);}
  2433. 10%,30%,50%,70%, 90%{-moz-transform:translateY(-10px);}
  2434. 20%,40%,60%,80%{-moz-transform:translateX(10px);}
  2435. }
  2436. @keyframes shak{
  2437. 0%,100%{transform:translateY(0);}
  2438. 10%,30%,50%,70%, 90%{transform:translateY(-10px);}
  2439. 20%,40%,60%,80%{transform:translateX(10px);}
  2440. }
  2441. .banner-three.show .title-3{
  2442. transform: translateY(0px);
  2443. opacity:1;
  2444. }
  2445. .banner-three .more-button{
  2446. position:absolute;
  2447. top:420px;
  2448. right:200px;
  2449. z-index: 99;
  2450. opacity:0;
  2451. transition: all 0.4s ease-in 0s;
  2452. transform: translateY(30px);
  2453. transition-delay: 0.2s;
  2454. }
  2455. .banner-three.show .more-button{
  2456. transform: translateY(0px);
  2457. opacity:1;
  2458. }
  2459. .banner-three .more-button a{
  2460. color:#FF6501;
  2461. border:1px solid #FF6501;
  2462. padding:15px 30px;
  2463. text-decoration: none;
  2464. font-size: 16px
  2465. }
  2466. .banner-three .more-button a:hover{
  2467. color:#fff;
  2468. background:#FF6501;
  2469. }
  2470. /*908*/
  2471. /*网络版*/
  2472. .banner-entry.banner-four {
  2473. background:#e36335 url(bing-banner04.jpg) center center
  2474. }
  2475. .banner-four .animation{
  2476. position:absolute;
  2477. opacity:0
  2478. }
  2479. .banner-four .images-1{
  2480. background:url(banner-ol.png) 0 0;
  2481. width:261px;
  2482. height:206px;
  2483. top:47px;
  2484. left:89px;
  2485. transition: all 0.8s ease-out 0s;
  2486. transform: translateY(-30px);
  2487. }
  2488. .banner-four .title-1{
  2489. background:url(banner-ol.png) -261px 0;
  2490. width:555px;
  2491. height:121px;
  2492. top:88px;
  2493. right:89px;
  2494. transition: all 0.8s ease-in 0s;
  2495. transform: translateY(-30px);
  2496. }
  2497. .banner-four .title-2{
  2498. background:url(banner-ol.png) 0 -206px;
  2499. width:634px;
  2500. height:69px;
  2501. top:290px;
  2502. left:215px;
  2503. transition: all 0.4s ease-in 0s;
  2504. transition-delay: 0.8s;
  2505. transform: translateY(-40px);
  2506. }
  2507. .banner-four.show .images-1{
  2508. transform: translateY(0px);
  2509. opacity:1;
  2510. }
  2511. .banner-four.show .title-1{
  2512. transform: translateY(0px);
  2513. opacity:1;
  2514. }
  2515. .banner-four.show .title-2{
  2516. transform: translateY(0px);
  2517. opacity:1;
  2518. }
  2519. .banner-four .more-button{
  2520. position:absolute;
  2521. top:405px;
  2522. left:475px;
  2523. z-index: 99;
  2524. opacity:0;
  2525. transition: all 0.4s ease-in 0s;
  2526. transform: translateY(-30px);
  2527. transition-delay: 0.8s;
  2528. }
  2529. .banner-four.show .more-button{
  2530. transform: translateY(0px);
  2531. opacity:1;
  2532. }
  2533. .banner-four .more-button a{
  2534. color:#fff;
  2535. border:1px solid #fff;
  2536. padding:15px 30px;
  2537. text-decoration: none;
  2538. font-size: 16px
  2539. }
  2540. .banner-four .more-button a:hover{
  2541. color:#cf4a3e;
  2542. background:#fff;
  2543. }
  2544. /*网络版*/
  2545. #banner-pointer {
  2546. position:absolute;
  2547. bottom:10px;
  2548. right:10px;
  2549. }
  2550. #banner-pointer li{
  2551. float:left;
  2552. background: #f2f2f2;
  2553. margin:0 5px 0 0;
  2554. cursor:pointer;
  2555. width:12px;
  2556. height:12px;
  2557. border-radius: 12px;
  2558. box-shadow: 0 1px 3px #999
  2559. }
  2560. #banner-pointer li.focus{
  2561. background:#fff;
  2562. cursor:default;
  2563. width:28px;
  2564. }
  2565. .warp-big-title {
  2566. width:1060px;
  2567. margin:0 auto;
  2568. padding:0 0 45px 0;
  2569. }
  2570. .warp-big-title h1{
  2571. text-align: center;
  2572. font-size: 36px;
  2573. color:#3f4244;
  2574. padding-bottom: 20px
  2575. }
  2576. .warp-big-title h2{
  2577. text-align: center;
  2578. font-size: 16px;
  2579. color:#3f4244;
  2580. padding:20px 0 0 0;
  2581. border-top:1px solid #333;
  2582. width:240px;
  2583. margin: 0 auto;
  2584. }
  2585. .warp-sub-banner{
  2586. width:1060px;
  2587. margin:0 auto;
  2588. }
  2589. .warp-sub-banner a:hover{
  2590. background:#333;
  2591. }
  2592. .warp-sub-banner a:hover img{
  2593. opacity:0.8;
  2594. }
  2595. .warp-news {
  2596. width:1040px;
  2597. margin:45px auto 40px;
  2598. padding:0 10px;
  2599. }
  2600. .warp-news .news-entry{
  2601. width:306px;
  2602. }
  2603. .news-entry h3{
  2604. font-size:18px;
  2605. margin-bottom:20px;
  2606. }
  2607. .news-entry dt{
  2608. position:relative;
  2609. margin-bottom:15px;
  2610. }
  2611. .news-entry dt .news-title {
  2612. background:rgba(21,112,166,0.6);
  2613. position:absolute;
  2614. bottom:0;
  2615. width:286px;
  2616. text-align:left;
  2617. padding:5px 10px;
  2618. }
  2619. .news-entry dt .news-title a{
  2620. color:#fff;
  2621. }
  2622. .news-entry dd{
  2623. margin-bottom:20px;
  2624. color:#999;
  2625. }
  2626. .news-entry li{
  2627. margin-bottom:30px;
  2628. color:#999;
  2629. }
  2630. .news-entry h4{
  2631. margin:3px 0;
  2632. font-size: 16px
  2633. }
  2634. .news-entry h4 a{
  2635. font-size: 16px
  2636. }
  2637. .news-entry li .train-loca{
  2638. background:#2daebf;
  2639. color:#fff;
  2640. padding:2px 5px;
  2641. display:inline-block;
  2642. }
  2643. .news-entry .feelTrain{
  2644. display:inline-block;
  2645. width:100%;
  2646. font-size: 16px;
  2647. text-decoration:none;
  2648. color:#ff6501;
  2649. }
  2650. .news-entry .feelTrain{
  2651. display:inline-block;
  2652. width:100%;
  2653. font-size: 16px;
  2654. text-decoration:none;
  2655. color:#ff6501;
  2656. }
  2657. .news-entry .feelTrain:hover{
  2658. color:#ff8d43;
  2659. }
  2660. /*走进纵横*/
  2661. .about-tab li{
  2662. float:left;
  2663. width:170px;
  2664. height:80px;
  2665. }
  2666. .about-tab li a{
  2667. display:inline-block;
  2668. width:170px;
  2669. border-left:1px solid #ccc;
  2670. text-align: center;
  2671. font-size:16px;
  2672. height:18px;
  2673. line-height: 18px;
  2674. margin-top: 32px;
  2675. margin-left: -1px;
  2676. font-weight: 600;
  2677. color:#666;
  2678. cursor:pointer;
  2679. }
  2680. .about-tab li a:hover{
  2681. text-decoration: none;
  2682. color:#333;
  2683. }
  2684. .about-tab li.active a{
  2685. color:#B2005E;
  2686. cursor:default;
  2687. }
  2688. .about-text {
  2689. padding:67px 150px 67px 150px ;
  2690. }
  2691. .about-text h2,.about-h2 {
  2692. font-size:28px;
  2693. color:#333;
  2694. }
  2695. .about-text p,.about-p {
  2696. font-size:16px;
  2697. margin:15px 0;
  2698. line-height: 28px;
  2699. }
  2700. .about-entry a {
  2701. color: #B2005E;
  2702. }
  2703. .about-entry a:hover {
  2704. text-decoration: underline;
  2705. }
  2706. .timeline {
  2707. padding-top:0;
  2708. }
  2709. .timeline .text {
  2710. margin-left:80px;
  2711. padding-left:80px;
  2712. border-left:1px solid #ccc;
  2713. padding-bottom:15px;
  2714. }
  2715. .timeline .text p{
  2716. margin-top:0px;
  2717. }
  2718. .timeline .text p a{
  2719. font-size:18px;
  2720. }
  2721. .history-line .text p a{
  2722. font-size:16px;
  2723. }
  2724. .timeline .month {
  2725. position:relative;
  2726. }
  2727. .timeline .year h3{
  2728. font-size: 28px;
  2729. color:#333;
  2730. }
  2731. .history-line .year h3{
  2732. font-size: 28px;
  2733. color:#333;
  2734. margin-bottom:40px;
  2735. }
  2736. .timeline .month em{
  2737. position:absolute;
  2738. font-size: 14px;
  2739. left:25px;
  2740. top:0;
  2741. }
  2742. .timeline .month em .dot{
  2743. display:inline-block;
  2744. background:#b2005e;
  2745. width:12px;
  2746. height:12px;
  2747. border-radius: 10px;
  2748. margin-left:20px;
  2749. }
  2750. .history-line .month em{
  2751. left:22px;
  2752. top:5px;
  2753. }
  2754. .about-entry .partnerList{
  2755. width:810px;
  2756. margin:0 auto 60px;
  2757. }
  2758. .about-entry .clientList{
  2759. padding:0;
  2760. background:none;
  2761. margin-bottom: 60px
  2762. }
  2763. .clientList td{
  2764. padding:8px 0;
  2765. text-align:left
  2766. }
  2767. .join-line .month em{
  2768. left:-1px;
  2769. top:5px;
  2770. }
  2771. .join-line .year h3{
  2772. font-size: 24px;
  2773. color:#333;
  2774. margin-bottom:10px;
  2775. margin-top:40px;
  2776. }
  2777. .join-line .month{
  2778. display:none;
  2779. }
  2780. .join-line i.arow {
  2781. background: transparent url("scIcons.png") no-repeat -123px -205px;
  2782. display: inline-block;
  2783. width: 16px;
  2784. height: 16px;
  2785. float:right;
  2786. }
  2787. .join-line i.on {
  2788. background: transparent url("scIcons.png") no-repeat -123px -221px;
  2789. }
  2790. .join-line h3:hover{
  2791. cursor:pointer;
  2792. color:#B2005E;
  2793. }
  2794. .join-line .year:hover h3{
  2795. color:#B2005E;
  2796. }
  2797. .join-line .month em .dot{
  2798. background:#999;
  2799. }
  2800. .join-line .year:hover em .dot{
  2801. background:#B2005E;
  2802. }
  2803. .join-line .text {
  2804. padding-left:40px
  2805. }
  2806. /*帮助*/
  2807. .helpBg{
  2808. border-color: #b6ba6b;
  2809. background:url(contentBg-help01.jpg) no-repeat;
  2810. }
  2811. .helpBg h1{
  2812. background:#b6ba6b;
  2813. }
  2814. .helpBg .sideBar{
  2815. border-color: #b6ba6b;
  2816. }
  2817. #sideBar h2 a{
  2818. color:#666;
  2819. }
  2820. #sideBar h2 a:hover{
  2821. color:#333;
  2822. font-weight:600;
  2823. text-decoration:none;
  2824. }
  2825. .helpnav h2{
  2826. border:none;
  2827. color:#333;
  2828. }
  2829. #sideBar .helpnav li a{
  2830. color:#b6ba6b;
  2831. }
  2832. #sideBar .helpnav li .now{
  2833. color:#333;
  2834. }
  2835. .helpCon{
  2836. margin:30px 0 0 0;
  2837. }
  2838. .helpCon h2{
  2839. font-size:22px;
  2840. color:#333;
  2841. }
  2842. .helpList{
  2843. min-height:350px;
  2844. }
  2845. .helpList ul{
  2846. }
  2847. .helpList ul li{
  2848. margin:10px 0 10px 0;
  2849. }
  2850. .helpList ul li a{
  2851. font-size:14px;
  2852. color:#00A0E9;
  2853. }
  2854. .helpList ul li a span{
  2855. background:url(helpTitle.png) no-repeat right center;
  2856. padding-right:16px;
  2857. }
  2858. .helpListCont{
  2859. margin:15px 0 0 0;
  2860. line-height:28px !important;
  2861. font-size:16px !important;
  2862. color:#666 !important;
  2863. }
  2864. .helpListCont p{
  2865. font-size:16px;
  2866. line-height:28px
  2867. }
  2868. .download-select{
  2869. background:none;
  2870. }
  2871. .download-select h2{
  2872. font-size: 24px;
  2873. margin:10px 0;
  2874. color:#333;
  2875. }
  2876. .download-select .downSelect{
  2877. margin:20px 0 0;
  2878. }
  2879. /* 2016年春节彩蛋
  2880. .warp-body {
  2881. position:relative;
  2882. background:url(2016yearimg.png) no-repeat center 20px;
  2883. }
  2884. .monkey {
  2885. position:absolute;
  2886. right:3%;
  2887. top:110px;
  2888. z-index: 999
  2889. }
  2890. .monkey .mon{
  2891. width:144px;
  2892. height:191px;
  2893. background:url(2016yearicon.png) no-repeat 0 0;
  2894. }
  2895. .monkey .mon{
  2896. -webkit-animation:mon 20s infinite ease-in-out;
  2897. -moz-animation:mon 20s infinite ease-in-out;
  2898. animation:mon 20s infinite ease-in-out;
  2899. }
  2900. @-moz-keyframes mon{
  2901. 0%,100%{-moz-transform:translateY(0);}
  2902. 10%,30%,50%,70%,90%{-moz-transform:translateY(20px);}
  2903. 20%,40%,60%,80%{-moz-transform:translateY(-25px);}
  2904. }
  2905. @-webkit-keyframes mon{
  2906. 0%,100%{-moz-transform:translateY(0);}
  2907. 10%,30%,50%,70%,90%{-webkit-transform:translateY(20px);}
  2908. 20%,40%,60%,80%{-webkit-transform:translateY(-25px);}
  2909. }
  2910. @keyframes mon{
  2911. 0%,100%{transform:translateY(0);}
  2912. 10%,30%,50%,70%,90%{transform:translateY(20px);}
  2913. 20%,40%,60%,80%{transform:translateY(-25px);}
  2914. }
  2915. .monkey .food{
  2916. width:144px;
  2917. height:109px;
  2918. background:url(2016yearicon.png) no-repeat 0 -192px;
  2919. position:absolute;
  2920. left:-124px;
  2921. top:20px;
  2922. }
  2923. .monkey .food{
  2924. -webkit-animation:food 15s infinite ease-in-out;
  2925. -moz-animation:food 15s infinite ease-in-out;
  2926. animation:food 15s infinite ease-in-out;
  2927. }
  2928. @-moz-keyframes food{
  2929. 0%,100%{-moz-transform:translateY(0);}
  2930. 10%,30%,50%,70%,90%{-moz-transform:translateY(-5px);}
  2931. 20%,40%,60%,80%{-moz-transform:translateY(8px);}
  2932. }
  2933. @-webkit-keyframes food{
  2934. 0%,100%{-webkit-transform:translateY(0);}
  2935. 10%,30%,50%,70%,90%{-webkit-transform:translateY(-5px);}
  2936. 20%,40%,60%,80%{-webkit-transform:translateY(8px);}
  2937. }
  2938. @keyframes food{
  2939. 0%,100%{transform:translateY(0);}
  2940. 10%,30%,50%,70%,90%{transform:translateY(-5px);}
  2941. 20%,40%,60%,80%{transform:translateY(8px);}
  2942. }*/