global.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201
  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:30px 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 0 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. z-index: 99
  1559. }
  1560. .slideBanner{
  1561. height:400px;
  1562. overflow: hidden;
  1563. }
  1564. .slideBanner .bannerEntry{
  1565. width:100%;
  1566. margin:0 auto
  1567. }
  1568. .bannerEntry .bImg{
  1569. width:1020px;
  1570. margin:0 auto;
  1571. position:relative
  1572. }
  1573. .bannerEntry .learnMore {
  1574. position:absolute;
  1575. right:50px;
  1576. bottom:50px;
  1577. color:#1570A6;
  1578. font-size:18px;
  1579. background:#fff;
  1580. padding:8px 15px;
  1581. border-bottom:3px solid #fff;
  1582. z-index:99;
  1583. transition: all 0.8s ease-out 0s;
  1584. transform: translateY(60px);
  1585. opacity:0
  1586. }
  1587. .bannerEntry.show .learnMore{
  1588. transform: translateY(0px);
  1589. opacity:1
  1590. }
  1591. .banner01{
  1592. background:#701585
  1593. }
  1594. .banner01 .learnMore {
  1595. background:#298514;
  1596. color:#fff
  1597. }
  1598. .banner02{
  1599. background:#b62e22
  1600. }
  1601. .banner02 .learnMore {
  1602. background:#21aab6;
  1603. color:#fff
  1604. }
  1605. .banner03{
  1606. background:url(bigbanner03.png) no-repeat center center
  1607. }
  1608. .banner03 .learnMore {
  1609. background:#333;
  1610. color:#fff
  1611. }
  1612. .banner04{
  1613. background:#ff6501
  1614. }
  1615. .banner04 .learnMore {
  1616. background:#009aff;
  1617. color:#fff
  1618. }
  1619. .banner05{
  1620. background:url(bigbanner05.png) no-repeat center center
  1621. }
  1622. .banner05 .learnMore {
  1623. background:#333;
  1624. color:#fff
  1625. }
  1626. .banner06{
  1627. background:#2d3e50
  1628. }
  1629. .banner06 .learnMore {
  1630. background:#0d75bd;
  1631. color:#fff
  1632. }
  1633. .banner07{
  1634. background:url(bigbanner07.png) no-repeat center center
  1635. }
  1636. .banner07 .learnMore {
  1637. background:#f0b500;
  1638. color:#fff
  1639. }
  1640. .banner08{
  1641. background:url(bigbanner08.png) no-repeat center center
  1642. }
  1643. .banner08 .learnMore {
  1644. background:#333;
  1645. color:#fff
  1646. }
  1647. .slidePointer {
  1648. position:absolute;
  1649. bottom:10px;
  1650. right:15px
  1651. }
  1652. .slidePointer li{
  1653. float:left;
  1654. font-size:26px;
  1655. color: #fff;
  1656. margin:0 5px 0 0;
  1657. cursor:pointer
  1658. }
  1659. .slidePointer li.now{
  1660. color:#000;
  1661. cursor:default;
  1662. text-shadow:0 1px 0px #fff
  1663. }
  1664. .warpProduct {
  1665. width:1060px;
  1666. position:relative;
  1667. margin:20px auto;
  1668. height:360px
  1669. }
  1670. .warpProduct .softItem{
  1671. padding:15px 30px 15px 30px;
  1672. width:220px;
  1673. background:#fff;
  1674. box-shadow:0 0 0 1px rgba(0, 0, 0, 0.1);
  1675. position:absolute;
  1676. top:-60px;
  1677. left:0
  1678. }
  1679. .warpProduct h2{
  1680. font-size:24px;
  1681. margin:0 0 10px 0
  1682. }
  1683. .warpProduct .softItem li{
  1684. margin:15px 0
  1685. }
  1686. .warpProduct .websiteItem{
  1687. margin:0 0 0 320px
  1688. }
  1689. .warpProduct .websiteItem a{
  1690. margin:0 1px 0 0
  1691. }
  1692. .warpProduct .protrainItem {
  1693. margin:25px 0 0 690px;
  1694. width:370px
  1695. }
  1696. .warpProduct .protrainItem li {
  1697. margin:0 0 15px 0
  1698. }
  1699. .warpProduct .protrainItem a.fR{
  1700. background: #2DAEBF;
  1701. padding:3px 5px;
  1702. color:#fff
  1703. }
  1704. .warpProduct .padItem{
  1705. position: absolute;
  1706. height:170px;
  1707. width:340px;
  1708. left:320px;
  1709. top:170px
  1710. }
  1711. .newsBg .sideBar{
  1712. border-color:#12629C;
  1713. }
  1714. .newsBg .sideBar li a {
  1715. color:#12629C
  1716. }
  1717. .newsBg .sideBar li.active a {
  1718. color:#333
  1719. }
  1720. .newsList {
  1721. margin:20px 0;
  1722. }
  1723. .newsList .nItem {
  1724. border-bottom:1px solid #f2f2f2;
  1725. padding: 20px 0;
  1726. position:relative;
  1727. min-height:140px;
  1728. }
  1729. .nItem .nThumb{
  1730. position:absolute;
  1731. width:200px;
  1732. height:140px;
  1733. overflow:hidden
  1734. }
  1735. .nItem .nCon{
  1736. margin-left:230px;
  1737. }
  1738. .nItem .nCon h2{
  1739. margin-bottom: 20px;
  1740. margin-right: 20px
  1741. }
  1742. .nItem .nCon h2 a{
  1743. font-size: 18px
  1744. }
  1745. .nItem .nCon .nDes{
  1746. color:#999;
  1747. margin-right: 20px
  1748. }
  1749. .nItem .nCon .nInfo{
  1750. color:#ccc;
  1751. margin-top: 10px
  1752. }
  1753. .nItem .nCon .nInfo a{
  1754. color:#ccc;
  1755. }
  1756. .newsContent {
  1757. position:relative;
  1758. padding:20px 0;
  1759. }
  1760. .newsCitem {
  1761. margin-right: 340px;
  1762. margin-top: 20px
  1763. }
  1764. .newSide{
  1765. float: right;
  1766. width:320px;
  1767. padding:20px 0 0 0;
  1768. }
  1769. .newSide dt{
  1770. padding:5px 0 5px 20px;
  1771. font-size: 18px;
  1772. border-left:1px solid #12629C;
  1773. }
  1774. .newSide dd{
  1775. border-left:1px solid #ddd;
  1776. padding:10px 10px 20px 20px
  1777. }
  1778. .newSide dd a{
  1779. font-size:14px;
  1780. }
  1781. .newsCitem p{
  1782. font-size: 16px;
  1783. line-height:28px;
  1784. }
  1785. .newsCitem p a{
  1786. font-size: 16px;
  1787. }
  1788. .ncTitle {
  1789. background-size:cover;
  1790. background-position: center;
  1791. height:200px;
  1792. overflow:hidden;
  1793. position:relative
  1794. }
  1795. .ncTitle .wrapBg{
  1796. background:rgba(0,0,0,0.5);
  1797. background:none\9;
  1798. height:100%
  1799. }
  1800. .ncTitle h1{
  1801. font-size: 26px;
  1802. color:#fff;
  1803. padding-top:50px;
  1804. margin:0 40px 0 40px;
  1805. text-shadow:0 1px 1px #333;
  1806. }
  1807. .ncTitle p {
  1808. position:absolute;
  1809. bottom:30px;
  1810. left:40px;
  1811. color:#f2f2f2;
  1812. text-shadow:0 1px 2px #333;
  1813. }
  1814. .ncTitle p a{
  1815. color:#fff;
  1816. }
  1817. .pagination .none {
  1818. color:#ccc;
  1819. text-decoration: none;
  1820. cursor:default;
  1821. }
  1822. .webproLink li{
  1823. line-height:32px;
  1824. height:32px;
  1825. margin:10px 0 20px 0
  1826. }
  1827. .webproLink .icon{
  1828. height:32px;
  1829. width:32px;
  1830. display:inline-block;
  1831. *display:inline;
  1832. zoom:1;
  1833. background:url(webpro.png) no-repeat;
  1834. margin:0 10px 0 0;
  1835. vertical-align: top;
  1836. }
  1837. .webproLink .icon.iconol{
  1838. background-position:0 -32px
  1839. }
  1840. .webproLink .icon.iconsso{
  1841. background-position:0 0
  1842. }
  1843. .webproLink .icon.iconqy{
  1844. background-position:0 -64px
  1845. }
  1846. .webproLink li a{
  1847. font-size:18px;
  1848. display:inline-block;
  1849. *display:inline;
  1850. zoom:1;
  1851. height:32px;
  1852. line-height:32px
  1853. }
  1854. .bolangbanner {
  1855. bottom: 0;
  1856. height: 100px;
  1857. position: absolute;
  1858. width: 100%;
  1859. z-index:0;
  1860. }
  1861. #banner_bolang_bg_1{
  1862. position: absolute;
  1863. height:85px;
  1864. background: url(wave1.png) repeat-x;
  1865. width:300%;
  1866. bottom:0;
  1867. }
  1868. #banner_bolang_bg_2{
  1869. position: absolute;
  1870. height:100px;
  1871. background: url(wave2.png) repeat-x;
  1872. width:300%;
  1873. top:0;
  1874. }
  1875. .searchWrap {
  1876. border-top:3px solid #333;
  1877. }
  1878. .searchWrap .searchPanel {
  1879. box-shadow:1px 2px 3px #E7E7E7;
  1880. position: relative;
  1881. width:565px;
  1882. margin: 30px auto
  1883. }
  1884. .searchPanel .sInptw {
  1885. display: inline-block;
  1886. height: 48px;
  1887. width: 500px;
  1888. overflow: hidden;
  1889. border-width: 1px 0px 1px 1px;
  1890. border-color: #B5B5B5;
  1891. border-style: solid;
  1892. background-color: #FFF;
  1893. vertical-align: top;
  1894. box-shadow: 1px 1px 2px #E7E7E7 inset;
  1895. }
  1896. .searchPanel .sSel {
  1897. font-size: 12px;
  1898. position: absolute;
  1899. left:10px;
  1900. top:12px;
  1901. z-index: 99;
  1902. }
  1903. .searchPanel .sSel select{
  1904. padding:5px 0;
  1905. }
  1906. .searchPanel .sBtn {
  1907. position: relative;
  1908. cursor: pointer;
  1909. width: 64px;
  1910. height: 50px;
  1911. overflow: hidden;
  1912. vertical-align: top;
  1913. background-position: 50% 0px;
  1914. background-repeat: no-repeat;
  1915. float:right;
  1916. }
  1917. .searchPanel .sBtn input{
  1918. position: absolute;
  1919. background:#ff6501;
  1920. width: 64px;
  1921. height: 50px;
  1922. line-height:40px;
  1923. font-size: 18px;
  1924. text-align: center;
  1925. color:#fff;
  1926. cursor: pointer;
  1927. border:none
  1928. }
  1929. .searchPanel .sBtn input:hover{
  1930. background-color: #ff7b25;
  1931. }
  1932. .searchPanel .sBtn input:active{
  1933. line-height: 50px
  1934. }
  1935. .searchPanel .sInptw input{
  1936. background: none repeat scroll 0% 0% transparent;
  1937. outline: 0px none;
  1938. width: 430px;
  1939. height: 38px;
  1940. padding: 6px 5px 3px 100px;
  1941. font-size: 18px;
  1942. color: #666;
  1943. border:none;
  1944. }
  1945. .searchResults .entry {
  1946. margin:0px 0 15px;
  1947. padding:0px 0 15px 0;
  1948. border-bottom:1px dashed #ddd;
  1949. }
  1950. .searchResults .entry a.title{
  1951. font-size:16px;
  1952. }
  1953. .mainContent_con{
  1954. }
  1955. .security_h{
  1956. text-align:center;
  1957. margin:45px 0 20px;
  1958. font-size:30px;
  1959. color:#666;
  1960. }
  1961. .security_con{
  1962. position:relative;
  1963. text-align:center;
  1964. background:url(securityBg.png) no-repeat 255px 0;
  1965. margin:15px 0 35px 0;
  1966. }
  1967. .security_inputLock{
  1968. text-align:center;
  1969. padding:45px 0;
  1970. }
  1971. .security_inputLock span{
  1972. position:relative;
  1973. font-size:30px;
  1974. }
  1975. .security_input{
  1976. width:240px;
  1977. font-size:30px;
  1978. border:none;
  1979. background:#f3f3f3;
  1980. color:#ff6501;
  1981. padding:3px 0 3px 10px;
  1982. }
  1983. .security_inputLock .tips{
  1984. position:absolute;
  1985. left:15px;
  1986. top:5px;
  1987. }
  1988. .security_Lock{
  1989. position:absolute;
  1990. z-index:99;
  1991. left:350px;
  1992. top:90px;
  1993. display:none;
  1994. }
  1995. .security_btn{
  1996. margin:50px 0;
  1997. text-align:center;
  1998. }
  1999. .security_btn a{
  2000. text-decoration:none;
  2001. }
  2002. .btn_security{
  2003. font-size:30px;
  2004. color:#fff;
  2005. background:#ff6501;
  2006. border-radius:5px;
  2007. -moz-border-radius:5px;
  2008. -webkit-border-radius:5px;
  2009. padding:10px 100px;
  2010. border:none
  2011. }
  2012. .btn_security:hover{
  2013. color:#fff;
  2014. background:#ec5d00;
  2015. border:none
  2016. }
  2017. .btn_security:active{
  2018. color:#fff;
  2019. background:#ff6501;
  2020. border:none
  2021. }
  2022. .piracy_con{
  2023. text-align:center;
  2024. margin:65px 0;
  2025. text-align:center;
  2026. font-size:20px;
  2027. color:#ff6501;
  2028. }
  2029. .genuine_con{
  2030. margin:45px 0;
  2031. color:#666;
  2032. }
  2033. .genuine_con h2{
  2034. text-align:center;
  2035. height:45px;
  2036. line-height:45px;
  2037. font-size:20px;
  2038. }
  2039. .genuine_con ul{
  2040. margin:0 0 0 326px;
  2041. }
  2042. .genuine_con ul li{
  2043. font-size:16px;
  2044. padding:3px 0;
  2045. }
  2046. .trainingCon ul li{
  2047. float:left;
  2048. margin:15px 30px 15px 30px;
  2049. }
  2050. .trainingImg img{
  2051. width:210px;
  2052. height:210px;
  2053. }
  2054. /*-2.0首页-*/
  2055. /*顶部*/
  2056. .warp-header {
  2057. height:60px;
  2058. }
  2059. .warp-header-shell {
  2060. width:1060px;
  2061. margin:0 auto;
  2062. }
  2063. .warp-header .header-logo a{
  2064. float:left;
  2065. width:60px;
  2066. height:60px;
  2067. background:url(scIcons.png) no-repeat -62px -205px;
  2068. }
  2069. .warp-header .header-nav {
  2070. margin-left: 20px
  2071. }
  2072. .warp-header .header-nav h2{
  2073. font-size: 16px;
  2074. line-height: 60px;
  2075. color:#2F2F2F;
  2076. }
  2077. .header-nav .nav-main {
  2078. float:left;
  2079. padding:0 20px;
  2080. position:relative;
  2081. cursor:pointer
  2082. }
  2083. .header-nav .nav-main:hover {
  2084. background-color: #F1F1F1
  2085. }
  2086. .header-nav .nav-main:hover > h2{
  2087. color:#2f2f2f
  2088. }
  2089. .header-nav .nav-main.active {
  2090. background-color: #F1F1F1
  2091. }
  2092. .header-nav .nav-main.active > h2{
  2093. color:#2f2f2f
  2094. }
  2095. .header-nav h2 .nav-icon{
  2096. margin:0 0 0 10px;
  2097. vertical-align:middle
  2098. }
  2099. .header-nav .nav-icon {
  2100. background:url(scIcons.png) no-repeat 0 0;
  2101. display:inline-block;
  2102. width:16px;
  2103. height:16px
  2104. }
  2105. .nav-drop .nav-icon{
  2106. float:right;
  2107. margin-top:18px;
  2108. }
  2109. .nav-icon.icon-up {
  2110. background-position: -123px -205px
  2111. }
  2112. .nav-icon.icon-right {
  2113. background-position: -123px -239px
  2114. }
  2115. .nav-drop {
  2116. position:absolute;
  2117. background-color:#f1f1f1;
  2118. min-width:200px;
  2119. max-width:400px;
  2120. left:0;
  2121. z-index: 999
  2122. }
  2123. .nav-drop dt {
  2124. height:50px;
  2125. line-height:50px;
  2126. padding:0 20px;
  2127. color:#2F2F2F;
  2128. width:160px;
  2129. }
  2130. .nav-drop dt > a{
  2131. color:#2F2F2F;
  2132. text-decoration: none;
  2133. float:left;
  2134. width:160px
  2135. }
  2136. .nav-drop dt > a:hover {
  2137. text-decoration:underline
  2138. }
  2139. .nav-drop dt.active{
  2140. background-color:#E5E5E5
  2141. }
  2142. .nav-drop dt:hover{
  2143. background-color:#E5E5E5
  2144. }
  2145. .nav-drop dt.active .nav-icon{
  2146. opacity:0.2;
  2147. }
  2148. .nav-dropdown-content {
  2149. position:absolute;
  2150. left:200px;
  2151. background-color:#E5E5E5;
  2152. width:200px;
  2153. top:0;
  2154. }
  2155. .nav-dropdown-content li {
  2156. height:50px;
  2157. line-height:50px;
  2158. display:block;
  2159. width:200px;
  2160. padding:0;
  2161. }
  2162. .nav-dropdown-content li:hover {
  2163. background-color: #D9D9D9;
  2164. }
  2165. .nav-dropdown-content li a{
  2166. display:inline-block;
  2167. padding:0 20px;
  2168. width:160px;
  2169. color:#2F2F2F;
  2170. }
  2171. .nav-dropdown-content li a:hover{
  2172. background-color: #D9D9D9;
  2173. }
  2174. .index-header .active .nav-icon.icon-up {
  2175. background-position: -123px -205px
  2176. }
  2177. .index-header li:hover .nav-icon.icon-up {
  2178. background-position: -123px -205px
  2179. }
  2180. .header-search{
  2181. float:right;
  2182. height:60px;
  2183. line-height: 60px
  2184. }
  2185. .header-search .search-bar{
  2186. height:24px;
  2187. background:#fff;
  2188. line-height: 24px;
  2189. padding:2px;
  2190. margin-top: 15px;
  2191. border:1px solid #ddd;
  2192. }
  2193. .search-bar .search-input{
  2194. height:22px;
  2195. background:#fff;
  2196. border:none;
  2197. display:inline-block;
  2198. padding:0 5px;
  2199. width:220px;
  2200. }
  2201. .search-bar .search-submit{
  2202. height:24px;
  2203. background:#ff6501;
  2204. color:#fff;
  2205. border:none;
  2206. display:inline-block;
  2207. padding:0 5px;
  2208. cursor:pointer;
  2209. }
  2210. .search-bar .search-submit:hover{
  2211. background:#ff8130;
  2212. }
  2213. .search-bar select{
  2214. border:1px solid #fff
  2215. }
  2216. .header-search .search-icon{
  2217. width:24px;
  2218. height:24px;
  2219. background:url(search-icon.png) no-repeat 0 0;
  2220. display:inline-block;
  2221. cursor:pointer;
  2222. vertical-align:middle
  2223. }
  2224. /*首页顶部*/
  2225. .index-header{
  2226. position:absolute;
  2227. width:100%;
  2228. z-index: 999;
  2229. background:url(header-bg.png) repeat center center;
  2230. }
  2231. .index-header .header-logo a{
  2232. background-position: 0px -205px
  2233. }
  2234. .index-header .header-nav h2 {
  2235. color:#fff;
  2236. font-weight: 600
  2237. }
  2238. .index-header .nav-icon.icon-up {
  2239. background-position: -140px -205px
  2240. }
  2241. .index-header .header-search .search-icon{
  2242. background:url(search-icon.png) no-repeat 0 -24px
  2243. }
  2244. .index-header .header-search .search-bar{
  2245. border:1px solid #fff;
  2246. }
  2247. /*广告*/
  2248. .warp-banner {
  2249. height:500px;
  2250. width:100%;
  2251. position:relative;
  2252. background-color: #333
  2253. }
  2254. .banner-shell {
  2255. height:500px;
  2256. overflow:hidden;
  2257. }
  2258. .banner-entry {
  2259. position:absolute;
  2260. height:500px;
  2261. width:100%;
  2262. opacity:0;
  2263. overflow:hidden;
  2264. transition: all 0.6s ease-out 0s;
  2265. }
  2266. .banner-entry.show{
  2267. opacity:1;
  2268. }
  2269. .banner-entry .banner-images{
  2270. width:1060px;
  2271. height:500px;
  2272. position:relative;
  2273. margin:0 auto;
  2274. overflow:hidden;
  2275. }
  2276. /*计量支付*/
  2277. .banner-entry.banner-one {
  2278. background:#B6BA6B url(bing-banner01.jpg) center center
  2279. }
  2280. .banner-one .animation{
  2281. position:absolute;
  2282. opacity:0
  2283. }
  2284. .banner-one .images-1{
  2285. background:url(banner-jlzf.png) 0 0;
  2286. width:504px;
  2287. height:392px;
  2288. bottom:40px;
  2289. right:35px;
  2290. transition: all 0.8s ease-out 0s;
  2291. transform: translateY(-60px);
  2292. transition-delay: 0.2s;
  2293. }
  2294. .banner-one .images-2{
  2295. background:url(banner-jlzf.png) 0 -392px;
  2296. width:376px;
  2297. height:219px;
  2298. bottom:25px;
  2299. right:354px;
  2300. transition: all 0.8s ease-in 0s;
  2301. transform: translateX(-70px);
  2302. }
  2303. .banner-one .images-3{
  2304. background:url(banner-jlzf.png) 0 -611px;
  2305. width:237px;
  2306. height:168px;
  2307. bottom:25px;
  2308. right:5px;
  2309. transition: all 0.8s ease-in 0s;
  2310. transform: translateX(70px);
  2311. }
  2312. .banner-one.show .images-1{
  2313. transform: translateY(0px);
  2314. opacity:1;
  2315. }
  2316. .banner-one.show .images-2{
  2317. transform: translateX(0px);
  2318. opacity:1;
  2319. }
  2320. .banner-one.show .images-3{
  2321. transform: translateX(0px);
  2322. opacity:1;
  2323. }
  2324. .banner-one .title-1{
  2325. background:url(banner-jlzf.png) 0 -780px;
  2326. width:470px;
  2327. height:38px;
  2328. top:135px;
  2329. left:15px;
  2330. transition: all 0.4s ease-out 0s;
  2331. transform: translateX(30px);
  2332. }
  2333. .banner-one .title-2{
  2334. background:url(banner-jlzf.png) -335px -610px;
  2335. width:239px;
  2336. height:30px;
  2337. top:230px;
  2338. left:15px;
  2339. transition: all 0.2s ease-in 0s;
  2340. transform: translateX(30px);
  2341. transition-delay: 0.2s;
  2342. }
  2343. .banner-one .title-3{
  2344. background:url(banner-jlzf.png) -335px -648px;
  2345. width:209px;
  2346. height:30px;
  2347. top:285px;
  2348. left:15px;
  2349. transition: all 0.2s ease-in 0s;
  2350. transform: translateX(30px);
  2351. transition-delay: 0.4s;
  2352. }
  2353. .banner-one .title-4{
  2354. background:url(banner-jlzf.png) -335px -685px;
  2355. width:209px;
  2356. height:30px;
  2357. top:336px;
  2358. left:15px;
  2359. transition: all 0.2s ease-in 0s;
  2360. transform: translateX(30px);
  2361. transition-delay: 0.6s;
  2362. }
  2363. .banner-one.show .title-1{
  2364. transform: translateX(0px);
  2365. opacity:1;
  2366. }
  2367. .banner-one.show .title-2{
  2368. transform: translateX(0px);
  2369. opacity:1;
  2370. }
  2371. .banner-one.show .title-3{
  2372. transform: translateX(0px);
  2373. opacity:1;
  2374. }
  2375. .banner-one.show .title-4{
  2376. transform: translateX(0px);
  2377. opacity:1;
  2378. }
  2379. .banner-one .more-button{
  2380. position:absolute;
  2381. top:420px;
  2382. left:15px;
  2383. z-index: 99;
  2384. opacity:0;
  2385. transition: all 0.2s ease-in 0s;
  2386. transform: translateX(30px);
  2387. transition-delay: 0.8s;
  2388. }
  2389. .banner-one.show .more-button{
  2390. transform: translateX(0px);
  2391. opacity:1;
  2392. }
  2393. .banner-one .more-button a{
  2394. color:#343434;
  2395. border:1px solid #343434;
  2396. padding:15px 30px;
  2397. text-decoration: none;
  2398. font-size: 16px
  2399. }
  2400. .banner-one .more-button a:hover{
  2401. color:#fff;
  2402. background:#343434;
  2403. }
  2404. /*计量支付*/
  2405. /*N合1*/
  2406. .banner-entry.banner-two {
  2407. background:#ed6455 url(bing-banner02.jpg) center center
  2408. }
  2409. .banner-two .animation{
  2410. position:absolute;
  2411. opacity:0
  2412. }
  2413. .banner-two .title-1{
  2414. background:url(banner-ninone.png) 0 0;
  2415. width:427px;
  2416. height:135px;
  2417. top:175px;
  2418. left:125px;
  2419. transition: all 0.4s ease-out 0s;
  2420. transform: translateX(-60px);
  2421. }
  2422. .banner-two .title-2{
  2423. background:url(banner-ninone.png) 0 -135px;
  2424. width:332px;
  2425. height:122px;
  2426. top:190px;
  2427. right:125px;
  2428. transition: all 0.4s ease-out 0s;
  2429. transform: translateX(60px);
  2430. }
  2431. .banner-two .title-3{
  2432. left:0;
  2433. top:0;
  2434. width:70px;
  2435. opacity:1;
  2436. height:122px;background:url(banner-ninone1.png) 0 0
  2437. }
  2438. .banner-two .more-button{
  2439. position:absolute;
  2440. top:385px;
  2441. left:475px;
  2442. z-index: 99;
  2443. opacity:0;
  2444. transition: all 0.4s ease-in 0s;
  2445. transform: translateY(30px);
  2446. transition-delay: 0.2s;
  2447. }
  2448. .banner-two.show .more-button{
  2449. transform: translateY(0px);
  2450. opacity:1;
  2451. }
  2452. .banner-two .more-button a{
  2453. color:#fff;
  2454. border:1px solid #fff;
  2455. padding:15px 30px;
  2456. text-decoration: none;
  2457. font-size: 16px
  2458. }
  2459. .banner-two .more-button a:hover{
  2460. color:#cf4a3e;
  2461. background:#fff;
  2462. }
  2463. .banner-two.show .title-1{
  2464. transform: translateX(0px);
  2465. opacity:1;
  2466. }
  2467. .banner-two.show .title-2{
  2468. transform: translateX(0px);
  2469. opacity:1;
  2470. }
  2471. .banner-two.show .title-3{
  2472. -webkit-animation:pulse 0.4s infinite ease;
  2473. -moz-animation:pulse 0.4s infinite ease;}
  2474. @-webkit-keyframes pulse{
  2475. 0%{background:url(banner-ninone1.png) 0 -122px;}
  2476. 25%{background:url(banner-ninone1.png) 0 -244px;}
  2477. 50%{background:url(banner-ninone1.png) 0 -366px;}
  2478. 75%{background:url(banner-ninone1.png) 0 -488px;}
  2479. 100%{background:url(banner-ninone1.png) 0 -610px;}
  2480. }
  2481. @-moz-keyframes pulse{
  2482. 0%{background:url(banner-ninone1.png) 0 -122px;}
  2483. 25%{background:url(banner-ninone1.png) 0 -244px;}
  2484. 50%{background:url(banner-ninone1.png) 0 -366px;}
  2485. 75%{background:url(banner-ninone1.png) 0 -488px;}
  2486. 100%{background:url(banner-ninone1.png) 0 -610px;}
  2487. }
  2488. /*N合1*/
  2489. /*V908*/
  2490. .banner-entry.banner-three {
  2491. background:#efefef url(bing-banner03.jpg) center center
  2492. }
  2493. .banner-three .animation{
  2494. position:absolute;
  2495. opacity:0
  2496. }
  2497. .banner-three .title-1{
  2498. background:url(banner-908.png) 0px 0px;
  2499. width:653px;
  2500. height:50px;
  2501. top:170px;
  2502. left:200px;
  2503. transition: all 0.2s ease-in 0s;
  2504. transform: translateY(30px);
  2505. transition-delay: 0.2s;
  2506. }
  2507. .banner-three .title-2{
  2508. background:url(banner-908.png) 0px -50px;
  2509. width:275px;
  2510. height:108px;
  2511. top:240px;
  2512. left:585px;
  2513. transition: all 0.2s ease-in 0s;
  2514. transform: translateY(30px);
  2515. transition-delay: 0.4s;
  2516. }
  2517. .banner-three .title-3{
  2518. background:url(banner-908.png) 0px -158px;
  2519. width:359px;
  2520. height:83px;
  2521. top:252px;
  2522. left:200px;
  2523. transition: all 0.2s ease-in 0s;
  2524. transform: translateY(30px);
  2525. transition-delay: 0.8s;
  2526. }
  2527. .banner-three.show .title-1{
  2528. transform: translateY(0px);
  2529. opacity:1;
  2530. }
  2531. .banner-three.show .title-2{
  2532. transform: translateY(0px);
  2533. opacity:1;
  2534. -webkit-animation:shak 0.7s infinite ease;
  2535. -moz-animation:shak 0.7s infinite ease;
  2536. animation:shak 0.7s infinite ease;
  2537. }
  2538. @-webkit-keyframes shak{
  2539. 0%,100%{-webkit-transform:translateY(0);}
  2540. 10%,30%,50%,70%, 90%{-webkit-transform:translateY(-10px);}
  2541. 20%,40%,60%,80%{-webkit-transform:translateX(10px);}
  2542. }
  2543. @-moz-keyframes shak{
  2544. 0%,100%{-moz-transform:translateY(0);}
  2545. 10%,30%,50%,70%, 90%{-moz-transform:translateY(-10px);}
  2546. 20%,40%,60%,80%{-moz-transform:translateX(10px);}
  2547. }
  2548. @keyframes shak{
  2549. 0%,100%{transform:translateY(0);}
  2550. 10%,30%,50%,70%, 90%{transform:translateY(-10px);}
  2551. 20%,40%,60%,80%{transform:translateX(10px);}
  2552. }
  2553. .banner-three.show .title-3{
  2554. transform: translateY(0px);
  2555. opacity:1;
  2556. }
  2557. .banner-three .more-button{
  2558. position:absolute;
  2559. top:420px;
  2560. right:200px;
  2561. z-index: 99;
  2562. opacity:0;
  2563. transition: all 0.4s ease-in 0s;
  2564. transform: translateY(30px);
  2565. transition-delay: 0.2s;
  2566. }
  2567. .banner-three.show .more-button{
  2568. transform: translateY(0px);
  2569. opacity:1;
  2570. }
  2571. .banner-three .more-button a{
  2572. color:#FF6501;
  2573. border:1px solid #FF6501;
  2574. padding:15px 30px;
  2575. text-decoration: none;
  2576. font-size: 16px
  2577. }
  2578. .banner-three .more-button a:hover{
  2579. color:#fff;
  2580. background:#FF6501;
  2581. }
  2582. /*908*/
  2583. /*网络版*/
  2584. .banner-entry.banner-four {
  2585. background:#e36335 url(bing-banner04.jpg) center center
  2586. }
  2587. .banner-four .animation{
  2588. position:absolute;
  2589. opacity:0
  2590. }
  2591. .banner-four .images-1{
  2592. background:url(banner-ol.png) 0 0;
  2593. width:261px;
  2594. height:206px;
  2595. top:47px;
  2596. left:89px;
  2597. transition: all 0.8s ease-out 0s;
  2598. transform: translateY(-30px);
  2599. }
  2600. .banner-four .title-1{
  2601. background:url(banner-ol.png) -261px 0;
  2602. width:555px;
  2603. height:121px;
  2604. top:88px;
  2605. right:89px;
  2606. transition: all 0.8s ease-in 0s;
  2607. transform: translateY(-30px);
  2608. }
  2609. .banner-four .title-2{
  2610. background:url(banner-ol.png) 0 -206px;
  2611. width:634px;
  2612. height:69px;
  2613. top:290px;
  2614. left:215px;
  2615. transition: all 0.4s ease-in 0s;
  2616. transition-delay: 0.8s;
  2617. transform: translateY(-40px);
  2618. }
  2619. .banner-four.show .images-1{
  2620. transform: translateY(0px);
  2621. opacity:1;
  2622. }
  2623. .banner-four.show .title-1{
  2624. transform: translateY(0px);
  2625. opacity:1;
  2626. }
  2627. .banner-four.show .title-2{
  2628. transform: translateY(0px);
  2629. opacity:1;
  2630. }
  2631. .banner-four .more-button{
  2632. position:absolute;
  2633. top:405px;
  2634. left:475px;
  2635. z-index: 99;
  2636. opacity:0;
  2637. transition: all 0.4s ease-in 0s;
  2638. transform: translateY(-30px);
  2639. transition-delay: 0.8s;
  2640. }
  2641. .banner-four.show .more-button{
  2642. transform: translateY(0px);
  2643. opacity:1;
  2644. }
  2645. .banner-four .more-button a{
  2646. color:#fff;
  2647. border:1px solid #fff;
  2648. padding:15px 30px;
  2649. text-decoration: none;
  2650. font-size: 16px
  2651. }
  2652. .banner-four .more-button a:hover{
  2653. color:#cf4a3e;
  2654. background:#fff;
  2655. }
  2656. /*网络版*/
  2657. #banner-pointer {
  2658. position:absolute;
  2659. bottom:10px;
  2660. right:10px;
  2661. }
  2662. #banner-pointer li{
  2663. float:left;
  2664. background: #f2f2f2;
  2665. margin:0 5px 0 0;
  2666. cursor:pointer;
  2667. width:12px;
  2668. height:12px;
  2669. border-radius: 12px;
  2670. box-shadow: 0 1px 3px #999
  2671. }
  2672. #banner-pointer li.focus{
  2673. background:#fff;
  2674. cursor:default;
  2675. width:28px;
  2676. }
  2677. .warp-big-title {
  2678. width:1060px;
  2679. margin:0 auto;
  2680. padding:0 0 45px 0;
  2681. }
  2682. .warp-big-title h1{
  2683. text-align: center;
  2684. font-size: 36px;
  2685. color:#3f4244;
  2686. padding-bottom: 20px
  2687. }
  2688. .warp-big-title h2{
  2689. text-align: center;
  2690. font-size: 16px;
  2691. color:#3f4244;
  2692. padding:20px 0 0 0;
  2693. border-top:1px solid #333;
  2694. width:240px;
  2695. margin: 0 auto;
  2696. }
  2697. .warp-sub-banner{
  2698. width:1060px;
  2699. margin:0 auto;
  2700. }
  2701. .warp-sub-banner a:hover{
  2702. background:#333;
  2703. }
  2704. .warp-sub-banner a:hover img{
  2705. opacity:0.8;
  2706. }
  2707. .warp-news {
  2708. width:1040px;
  2709. margin:45px auto 40px;
  2710. padding:0 10px;
  2711. }
  2712. .warp-news .news-entry{
  2713. width:306px;
  2714. }
  2715. .news-entry h3{
  2716. font-size:18px;
  2717. margin-bottom:20px;
  2718. }
  2719. .news-entry dt{
  2720. position:relative;
  2721. margin-bottom:15px;
  2722. }
  2723. .news-entry dt .news-title {
  2724. background:rgba(21,112,166,0.6);
  2725. position:absolute;
  2726. bottom:0;
  2727. width:286px;
  2728. text-align:left;
  2729. padding:5px 10px;
  2730. }
  2731. .news-entry dt .news-title a{
  2732. color:#fff;
  2733. }
  2734. .news-entry dd{
  2735. margin-bottom:20px;
  2736. color:#999;
  2737. }
  2738. .news-entry li{
  2739. margin-bottom:30px;
  2740. color:#999;
  2741. }
  2742. .news-entry h4{
  2743. margin:3px 0;
  2744. font-size: 16px
  2745. }
  2746. .news-entry h4 a{
  2747. font-size: 16px
  2748. }
  2749. .news-entry li .train-loca{
  2750. background:#2daebf;
  2751. color:#fff;
  2752. padding:2px 5px;
  2753. display:inline-block;
  2754. }
  2755. .news-entry .feelTrain{
  2756. display:inline-block;
  2757. width:100%;
  2758. font-size: 16px;
  2759. text-decoration:none;
  2760. color:#ff6501;
  2761. }
  2762. .news-entry .feelTrain{
  2763. display:inline-block;
  2764. width:100%;
  2765. font-size: 16px;
  2766. text-decoration:none;
  2767. color:#ff6501;
  2768. }
  2769. .news-entry .feelTrain:hover{
  2770. color:#ff8d43;
  2771. }
  2772. /*走进纵横*/
  2773. .about-tab li{
  2774. float:left;
  2775. width:170px;
  2776. height:80px;
  2777. }
  2778. .about-tab li a{
  2779. display:inline-block;
  2780. width:170px;
  2781. border-left:1px solid #ccc;
  2782. text-align: center;
  2783. font-size:16px;
  2784. height:18px;
  2785. line-height: 18px;
  2786. margin-top: 32px;
  2787. margin-left: -1px;
  2788. font-weight: 600;
  2789. color:#666;
  2790. cursor:pointer;
  2791. }
  2792. .about-tab li a:hover{
  2793. text-decoration: none;
  2794. color:#333;
  2795. }
  2796. .about-tab li.active a{
  2797. color:#B2005E;
  2798. cursor:default;
  2799. }
  2800. .about-text {
  2801. padding:67px 150px 67px 150px ;
  2802. }
  2803. .about-text h2,.about-h2 {
  2804. font-size:28px;
  2805. color:#333;
  2806. }
  2807. .about-text p,.about-p {
  2808. font-size:16px;
  2809. margin:15px 0;
  2810. line-height: 28px;
  2811. }
  2812. .about-entry a {
  2813. color: #B2005E;
  2814. }
  2815. .about-entry a:hover {
  2816. text-decoration: underline;
  2817. }
  2818. .timeline {
  2819. padding-top:0;
  2820. }
  2821. .timeline .text {
  2822. margin-left:80px;
  2823. padding-left:80px;
  2824. border-left:1px solid #ccc;
  2825. padding-bottom:15px;
  2826. }
  2827. .timeline .text p{
  2828. margin-top:0px;
  2829. }
  2830. .timeline .text p a{
  2831. font-size:18px;
  2832. }
  2833. .history-line .text p a{
  2834. font-size:16px;
  2835. }
  2836. .timeline .month {
  2837. position:relative;
  2838. }
  2839. .timeline .year h3{
  2840. font-size: 28px;
  2841. color:#333;
  2842. }
  2843. .history-line .year h3{
  2844. font-size: 28px;
  2845. color:#333;
  2846. margin-bottom:40px;
  2847. }
  2848. .timeline .month em{
  2849. position:absolute;
  2850. font-size: 14px;
  2851. left:25px;
  2852. top:0;
  2853. }
  2854. .timeline .month em .dot{
  2855. display:inline-block;
  2856. background:#b2005e;
  2857. width:12px;
  2858. height:12px;
  2859. border-radius: 10px;
  2860. margin-left:20px;
  2861. }
  2862. .history-line .month em{
  2863. left:22px;
  2864. top:5px;
  2865. }
  2866. .about-entry .partnerList{
  2867. width:810px;
  2868. margin:0 auto 60px;
  2869. }
  2870. .about-entry .clientList{
  2871. padding:0;
  2872. background:none;
  2873. margin-bottom: 60px
  2874. }
  2875. .clientList td{
  2876. padding:8px 0;
  2877. text-align:left
  2878. }
  2879. .join-line .month em{
  2880. left:-1px;
  2881. top:5px;
  2882. }
  2883. .join-line .year h3{
  2884. font-size: 24px;
  2885. color:#333;
  2886. margin-bottom:10px;
  2887. margin-top:40px;
  2888. }
  2889. .join-line .month{
  2890. display:none;
  2891. }
  2892. .join-line i.arow {
  2893. background: transparent url("scIcons.png") no-repeat -123px -205px;
  2894. display: inline-block;
  2895. width: 16px;
  2896. height: 16px;
  2897. float:right;
  2898. }
  2899. .join-line i.on {
  2900. background: transparent url("scIcons.png") no-repeat -123px -221px;
  2901. }
  2902. .join-line h3:hover{
  2903. cursor:pointer;
  2904. color:#B2005E;
  2905. }
  2906. .join-line .year:hover h3{
  2907. color:#B2005E;
  2908. }
  2909. .join-line .month em .dot{
  2910. background:#999;
  2911. }
  2912. .join-line .year:hover em .dot{
  2913. background:#B2005E;
  2914. }
  2915. .join-line .text {
  2916. padding-left:40px
  2917. }
  2918. /*帮助*/
  2919. .helpBg{
  2920. border-color: #b6ba6b;
  2921. background:url(contentBg-help01.jpg) no-repeat;
  2922. }
  2923. .helpBg h1{
  2924. background:#b6ba6b;
  2925. }
  2926. .helpBg .sideBar{
  2927. border-color: #b6ba6b;
  2928. }
  2929. #sideBar h2 a{
  2930. color:#666;
  2931. }
  2932. #sideBar h2 a:hover{
  2933. color:#333;
  2934. font-weight:600;
  2935. text-decoration:none;
  2936. }
  2937. .helpnav h2{
  2938. border:none;
  2939. color:#333;
  2940. }
  2941. #sideBar .helpnav li a{
  2942. color:#b6ba6b;
  2943. }
  2944. #sideBar .helpnav li .now{
  2945. color:#333;
  2946. }
  2947. .helpCon{
  2948. margin:30px 0 0 0;
  2949. }
  2950. .helpCon h2{
  2951. font-size:22px;
  2952. color:#333;
  2953. }
  2954. .helpList{
  2955. min-height:350px;
  2956. }
  2957. .helpList ul{
  2958. }
  2959. .helpList ul li{
  2960. margin:10px 0 10px 0;
  2961. }
  2962. .helpList ul li a{
  2963. font-size:14px;
  2964. color:#00A0E9;
  2965. }
  2966. .helpList ul li a span{
  2967. background:url(helpTitle.png) no-repeat right center;
  2968. padding-right:16px;
  2969. }
  2970. .helpListCont{
  2971. margin:15px 0 0 0;
  2972. line-height:28px !important;
  2973. font-size:16px !important;
  2974. color:#666 !important;
  2975. }
  2976. .helpListCont p{
  2977. font-size:16px;
  2978. line-height:28px
  2979. }
  2980. .download-select{
  2981. background:none;
  2982. }
  2983. .download-select h2{
  2984. font-size: 24px;
  2985. margin:10px 0;
  2986. color:#333;
  2987. }
  2988. .download-select .downSelect{
  2989. margin:20px 0 0;
  2990. }
  2991. /*联系我们*/
  2992. .contact-tab{
  2993. padding:0 0 20px 0
  2994. }
  2995. .contact-tab a{
  2996. display:inline-block;
  2997. float:left;
  2998. width:507px;
  2999. font-size:24px;
  3000. color:#666;
  3001. height:90px;
  3002. line-height:90px;
  3003. text-align:center;
  3004. border-bottom:1px solid #fff;
  3005. margin:0 1px 0 0
  3006. }
  3007. .contact-tab a:hover{
  3008. text-decoration:none;
  3009. border-bottom:1px solid #ccc
  3010. }
  3011. .contact-tab a.now{
  3012. color:#f8b62a;
  3013. border-bottom:1px solid #f8b62a
  3014. }
  3015. .base-warp {
  3016. padding:50px 120px
  3017. }
  3018. .base-warp .base-box{
  3019. width: 335px;
  3020. height: 255px;
  3021. padding: 40px 0 20px;
  3022. margin: 20px;
  3023. text-align: center;
  3024. border: 1px solid #ddd;
  3025. border-radius: 4px;
  3026. }
  3027. .base-warp .base-box h1,.base-warp .base-box h2{
  3028. font-size:24px;
  3029. text-align:center
  3030. }
  3031. .base-warp .base-box p{
  3032. text-align:center;
  3033. color:#999
  3034. }
  3035. .base-warp .base-box h1{
  3036. margin:50px 0 0 0
  3037. }
  3038. .base-warp .base-box h2{
  3039. color:#f8b62a;
  3040. margin:10px 0 0 0
  3041. }
  3042. .custom-warp {
  3043. padding:20px 120px 0 120px
  3044. }
  3045. .custom-warp .custom-box{
  3046. width:742px;
  3047. height:35px;
  3048. padding: 30px 0;
  3049. margin: 20px;
  3050. text-align: center;
  3051. border: 1px solid #ddd;
  3052. border-radius: 4px;
  3053. }
  3054. .custom-warp .custom-box h1{
  3055. font-size:24px;
  3056. text-align:center
  3057. }
  3058. .custom-warp .custom-box h1 b{
  3059. color:#f8b62a;
  3060. }
  3061. .custom-warp .province {
  3062. margin-bottom:-1px;
  3063. padding-left:4px
  3064. }
  3065. .custom-warp .province a{
  3066. float:left;
  3067. width:70px;
  3068. font-size:18px;
  3069. color:#666;
  3070. border-bottom:1px solid #ddd;
  3071. padding:10px 0;
  3072. text-align:center
  3073. }
  3074. .custom-warp .province a:hover{
  3075. border-bottom:1px solid #999;
  3076. text-decoration: none;
  3077. }
  3078. .custom-warp .province a.now{
  3079. color:#f8b62a;
  3080. border-bottom:1px solid #f8b62a;
  3081. font-weight:600
  3082. }
  3083. .contact-list .item{
  3084. border: 1px solid #ddd;
  3085. border-radius: 4px;
  3086. padding:40px;
  3087. margin-bottom:100px
  3088. }
  3089. .contact-list p.line{
  3090. border-bottom:1px solid #ddd
  3091. }
  3092. .contact-list table{
  3093. width:100%;
  3094. margin:20px 0;
  3095. }
  3096. .contact-list thead th {
  3097. color:#f8b62a;
  3098. font-size:24px;
  3099. font-weight:normal;
  3100. padding-bottom:10px
  3101. }
  3102. .contact-list .tel td {
  3103. font-size:18px;
  3104. padding-bottom:10px
  3105. }
  3106. .contact-list .tel td span{
  3107. color:#ddd;
  3108. margin:0 20px
  3109. }
  3110. .contact-list .add td {
  3111. font-size:18px;
  3112. color:#999;
  3113. padding-bottom:20px
  3114. }
  3115. .contact-list .phone th {
  3116. font-size:18px;
  3117. padding-bottom:10px;
  3118. font-weight:normal;
  3119. width:80px
  3120. }
  3121. .contact-list .phone td {
  3122. text-align:left;
  3123. font-size:18px;
  3124. padding-bottom:10px
  3125. }
  3126. /* 2016年春节彩蛋
  3127. .warp-body {
  3128. position:relative;
  3129. background:url(2016yearimg.png) no-repeat center 20px;
  3130. }
  3131. .monkey {
  3132. position:absolute;
  3133. right:3%;
  3134. top:110px;
  3135. z-index: 999
  3136. }
  3137. .monkey .mon{
  3138. width:144px;
  3139. height:191px;
  3140. background:url(2016yearicon.png) no-repeat 0 0;
  3141. }
  3142. .monkey .mon{
  3143. -webkit-animation:mon 20s infinite ease-in-out;
  3144. -moz-animation:mon 20s infinite ease-in-out;
  3145. animation:mon 20s infinite ease-in-out;
  3146. }
  3147. @-moz-keyframes mon{
  3148. 0%,100%{-moz-transform:translateY(0);}
  3149. 10%,30%,50%,70%,90%{-moz-transform:translateY(20px);}
  3150. 20%,40%,60%,80%{-moz-transform:translateY(-25px);}
  3151. }
  3152. @-webkit-keyframes mon{
  3153. 0%,100%{-moz-transform:translateY(0);}
  3154. 10%,30%,50%,70%,90%{-webkit-transform:translateY(20px);}
  3155. 20%,40%,60%,80%{-webkit-transform:translateY(-25px);}
  3156. }
  3157. @keyframes mon{
  3158. 0%,100%{transform:translateY(0);}
  3159. 10%,30%,50%,70%,90%{transform:translateY(20px);}
  3160. 20%,40%,60%,80%{transform:translateY(-25px);}
  3161. }
  3162. .monkey .food{
  3163. width:144px;
  3164. height:109px;
  3165. background:url(2016yearicon.png) no-repeat 0 -192px;
  3166. position:absolute;
  3167. left:-124px;
  3168. top:20px;
  3169. }
  3170. .monkey .food{
  3171. -webkit-animation:food 15s infinite ease-in-out;
  3172. -moz-animation:food 15s infinite ease-in-out;
  3173. animation:food 15s infinite ease-in-out;
  3174. }
  3175. @-moz-keyframes food{
  3176. 0%,100%{-moz-transform:translateY(0);}
  3177. 10%,30%,50%,70%,90%{-moz-transform:translateY(-5px);}
  3178. 20%,40%,60%,80%{-moz-transform:translateY(8px);}
  3179. }
  3180. @-webkit-keyframes food{
  3181. 0%,100%{-webkit-transform:translateY(0);}
  3182. 10%,30%,50%,70%,90%{-webkit-transform:translateY(-5px);}
  3183. 20%,40%,60%,80%{-webkit-transform:translateY(8px);}
  3184. }
  3185. @keyframes food{
  3186. 0%,100%{transform:translateY(0);}
  3187. 10%,30%,50%,70%,90%{transform:translateY(-5px);}
  3188. 20%,40%,60%,80%{transform:translateY(8px);}
  3189. }*/