global.css 55 KB

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