service.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. @charset "UTF-8";
  2. /* 动画 */
  3. @-webkit-keyframes upDown {
  4. 100% {
  5. -webkit-transform: translateY(4px);
  6. transform: translateY(4px);
  7. }
  8. }
  9. @keyframes upDown {
  10. 100% {
  11. -webkit-transform: translateY(4px);
  12. transform: translateY(4px);
  13. }
  14. }
  15. /* 公共标题 */
  16. .common_title {
  17. text-align: center;
  18. width:1200PX;
  19. margin:0 auto;
  20. }
  21. .common_title_t label {
  22. display: inline-block;
  23. width: 10px;
  24. height: 10px;
  25. border-radius: 50%;
  26. border: 1px solid rgba(132, 141, 173, 0.56);
  27. position: relative;
  28. top: -2px;
  29. }
  30. .common_title_t p {
  31. font-size: 28px;
  32. color: #323238;
  33. display: inline-block;
  34. margin: 4px 36px 0;
  35. }
  36. .common_title_t_l:after {
  37. content: '';
  38. display: inline-block;
  39. width: 28px;
  40. height: 0;
  41. border-bottom: 1px solid rgba(132, 141, 173, 0.56);
  42. position: absolute;
  43. left: 9px;
  44. top: 4px;
  45. }
  46. .common_title_t_r:before {
  47. content: '';
  48. display: inline-block;
  49. width: 28px;
  50. height: 0;
  51. border-bottom: 1px solid rgba(132, 141, 173, 0.56);
  52. position: absolute;
  53. left: -28px;
  54. top: 4px;
  55. }
  56. .common_title_b {
  57. font-size: 14px;
  58. color: #aeaeae;
  59. text-align: center;
  60. margin-top: 5px;
  61. }
  62. .common_title_b:after {
  63. content: '';
  64. display: block;
  65. width: 27px;
  66. height: 1px;
  67. background: url(../images/icon21.png) no-repeat;
  68. margin: 12px auto 0;
  69. }
  70. .common_title.white .common_title_t p {
  71. color: #fff;
  72. }
  73. .common_title.white .common_title_b {
  74. opacity: 0.5;
  75. }
  76. .common_title.white .common_title_b:after {
  77. opacity: 0.3;
  78. }
  79. /*主内容*/
  80. .container {
  81. background-color: #f6f6fa;
  82. padding-top: 180px;
  83. }
  84. .container * {
  85. -webkit-box-sizing: border-box;
  86. box-sizing: border-box;
  87. }
  88. /* 1200宽度盒子 */
  89. .box1200 {
  90. width: 1200px;
  91. margin: auto;
  92. }
  93. /*banner*/
  94. .banner {
  95. width: 100%;
  96. height: 500px;
  97. padding-top: 12px;
  98. background: url(../images/banner.jpg) center no-repeat;
  99. /* 导航链接 */
  100. /* 位置 */
  101. /* 中部文字 */
  102. /* 底部导航 */
  103. }
  104. .banner_nav li {
  105. float: left;
  106. margin-right: 28px;
  107. position: relative;
  108. }
  109. .banner_nav li a span {
  110. font-size: 16px;
  111. color: #fff;
  112. line-height: 45px;
  113. }
  114. .banner_nav li a i {
  115. display: inline-block;
  116. width: 6px;
  117. height: 4px;
  118. background: url(../images/icon1.png) no-repeat;
  119. margin: 0 6px;
  120. position: relative;
  121. top: -3px;
  122. }
  123. .banner_nav li dl {
  124. width: 320px;
  125. background: #47518e;
  126. position: absolute;
  127. top: 45px;
  128. left: 0;
  129. display: none;
  130. z-index: 2;
  131. }
  132. .banner_nav li dl dd {
  133. height: 60px;
  134. font-size: 14px;
  135. line-height: 60px;
  136. border-top: 1px solid rgba(255, 255, 255, 0.1);
  137. position: relative;
  138. }
  139. .banner_nav li dl dd:after {
  140. content: "";
  141. display: inline-block;
  142. width: 4px;
  143. height: 6px;
  144. background: url(../images/icon6.png);
  145. position: absolute;
  146. right: 30px;
  147. top: 33px;
  148. opacity: 0;
  149. -webkit-transition: all .3s;
  150. transition: all .3s;
  151. }
  152. .banner_nav li dl dd a {
  153. display: inline-block;
  154. width: 100%;
  155. height: 100%;
  156. padding-left: 30px;
  157. color: #8489af;
  158. -webkit-transition: all .3s;
  159. transition: all .3s;
  160. }
  161. .banner_nav li dl dd:hover a {
  162. color: #fff;
  163. }
  164. .banner_nav li dl dd:hover:after {
  165. opacity: 1;
  166. }
  167. .banner_nav li dl dd:first-child {
  168. border-top: none;
  169. }
  170. .banner_nav li:hover a span {
  171. color: #ff580e;
  172. }
  173. .banner_nav li:hover a i {
  174. background: url(../images/icon5.png) no-repeat;
  175. }
  176. .banner_loc {
  177. line-height: 45px;
  178. }
  179. .banner_loc label,
  180. .banner_loc a {
  181. font-size: 12px;
  182. color: rgba(255, 255, 255, 0.6);
  183. }
  184. .banner_loc a:hover {
  185. color: white;
  186. }
  187. .banner_loc i {
  188. display: inline-block;
  189. width: 7px;
  190. height: 5px;
  191. background: url(../images/icon2.png);
  192. vertical-align: middle;
  193. margin: 0 4px;
  194. }
  195. .banner_m {
  196. margin-top: 72px;
  197. float: left;
  198. }
  199. .banner_m_t {
  200. font-size: 40px;
  201. color: #fff;
  202. font-weight: bold;
  203. float: left;
  204. }
  205. .banner_m_d {
  206. margin-top: 2px;
  207. font-size: 16px;
  208. color: rgba(255, 255, 255, 0.6);
  209. float: left;
  210. }
  211. .banner_m_d a{
  212. color:#ff7046;
  213. }
  214. .banner_m_d a:hover{color:#ff9500;}
  215. .banner_m_n{
  216. height: 30px;
  217. margin-bottom: 36px;
  218. margin-top: 10px;
  219. }
  220. .banner_m_n > div{height: 30px;line-height: 28px;border: 1px solid #3f488c;margin-right: 5px;font-size: 12px;color: #fff;float: left;padding-right: 11px;}
  221. .banner_m_n > div i{font-size: 16px;}
  222. .banner_m_n > div span{display: inline-block;vertical-align: top;background: #3f488c;font-size: 12px;color: rgba(255,255,255,0.4);padding: 0 11px;position: relative;margin-right: 15px;}
  223. .banner_m_n > div span::after{content: "";display: inline-block;border-left: 4px solid #3f488c;border-top: 4px solid transparent;border-bottom: 4px solid transparent;position: absolute;right: -4px;top: 50%;margin-top: -4px;}
  224. .banner_m_p {
  225. margin-top: 30px;
  226. color: #fff;
  227. height: 37px;
  228. float: left;
  229. }
  230. .banner_m_p_n {
  231. position: relative;
  232. }
  233. .banner_m_p_n_y {
  234. font-size: 16px;
  235. vertical-align: top;
  236. }
  237. .banner_m_p_n label {
  238. font-family: Impact;
  239. font-size: 30px;
  240. line-height: 30px;
  241. }
  242. .banner_m_p_n_i {
  243. width: 41px;
  244. height: 19px;
  245. display: inline-block;
  246. background: url(../images/icon3.png);
  247. position: absolute;
  248. right: -42px;
  249. top: -24px;
  250. -webkit-animation: upDown 0.8s infinite forwards alternate;
  251. animation: upDown 0.8s infinite forwards alternate;
  252. }
  253. .banner_m_p_o {
  254. font-size: 14px;
  255. vertical-align: bottom;
  256. margin-left: 6px;
  257. display: inline-block;
  258. vertical-align: middle;
  259. margin-top: -4px;
  260. }
  261. .banner_m_s {
  262. margin: 12px 0 -10px;
  263. }
  264. .banner_m_s .selectCity .select_body {
  265. width: 505px;
  266. border: solid 1px #e3e3e3;
  267. display: none;
  268. position: absolute;
  269. z-index: 2;
  270. left: -1px;
  271. top: 35px;
  272. background: #fff;
  273. padding: 20px 12px 12px;
  274. }
  275. .banner_m_s .selectCity .select_body.espic {width: 1100px;}
  276. .banner_m_s .selectCity .select_body.espic .select_show{width: 1073px;}
  277. .banner_m_s .selectCity .select_body.espic .select_search{position: absolute;top: 0;right: -1px;}
  278. .banner_m_s .selectCity .select_body.espic .select_classify_detail li{margin-left: -10px;}
  279. .banner_m_s .selectCity .select_search {
  280. width: 350px;
  281. height: 30px;
  282. background-color: #ffffff;
  283. border: solid 1px #e3e3e3;
  284. position: relative;
  285. margin-bottom: 12px;
  286. }
  287. .banner_m_s .selectCity .select_search input {
  288. width: 280px;
  289. height: 100%;
  290. padding: 0 12px;
  291. }
  292. .banner_m_s .selectCity .select_search button {
  293. width: 64px;
  294. height: 30px;
  295. background-color: #787e90;
  296. font-size: 14px;
  297. color: #fff;
  298. font-weight: bold;
  299. position: absolute;
  300. top: -1px;
  301. right: 0;
  302. cursor: pointer;
  303. -webkit-transition: all .4s;
  304. transition: all .4s;
  305. }
  306. .banner_m_s .selectCity .select_search button:hover {
  307. background-color: rgba(56, 58, 122, 0.8);
  308. }
  309. .banner_m_s .selectCity .select_search button:active {
  310. background-color: #383a7a;
  311. }
  312. .banner_m_s .selectCity .select_show {
  313. width: 482px;
  314. clear: both;
  315. position: relative;
  316. }
  317. .banner_m_s .selectCity .select_classify {
  318. border: 1px solid #e3e3e3;
  319. width: 100%;
  320. height: 100%;
  321. }
  322. .banner_m_s .selectCity .select_classify_nav {
  323. height: 30px;
  324. }
  325. .banner_m_s .selectCity .select_classify_nav li {
  326. float: left;
  327. width: 80px;
  328. height: 100%;
  329. line-height: 30px;
  330. background-color: #f4f4f4;
  331. text-align: center;
  332. border-left: 1px solid #e3e3e3;
  333. border-bottom: 1px solid #e3e3e3;
  334. font-size: 14px;
  335. color: #636363;
  336. cursor: pointer;
  337. position: relative;
  338. }
  339. .banner_m_s .selectCity .select_classify_nav li:first-child {
  340. border-left: none;
  341. }
  342. .banner_m_s .selectCity .select_classify_nav li.on {
  343. background-color: #fff;
  344. border-bottom: none;
  345. }
  346. .banner_m_s .selectCity .select_classify_nav li.on:before {
  347. content: "";
  348. width: 81px;
  349. height: 4px;
  350. background-color: #383a7a;
  351. display: block;
  352. position: absolute;
  353. top: -4px;
  354. left: -1px;
  355. }
  356. .banner_m_s .selectCity .select_classify_detail {
  357. position: relative;
  358. margin-left: 26px;
  359. margin-bottom: 10px;
  360. }
  361. .banner_m_s .selectCity .select_classify_detail li {
  362. width: 100%;
  363. display: none;
  364. }
  365. .banner_m_s .selectCity .select_classify_detail li.on {
  366. display: block;
  367. }
  368. .banner_m_s .selectCity .select_classify_detail dt, .banner_m_s .selectCity .select_classify_detail dd {
  369. font-size: 14px;
  370. color: #565656;
  371. }
  372. .banner_m_s .selectCity .select_classify_detail dt {
  373. line-height: 50px;
  374. }
  375. .banner_m_s .selectCity .select_classify_detail dd {
  376. line-height: 24px;
  377. float: left;
  378. margin-right: 20px;
  379. width: 70px;
  380. cursor: pointer;
  381. }
  382. .banner_m_s .selectCity .select_classify_detail dd:hover {
  383. color: #21235f;
  384. }
  385. .banner_m_s .selectCity .espic .select_classify_detail dd {height: 48px;display: table;margin: 0 10px;}
  386. .banner_m_s .selectCity .espic .select_classify_detail dd span {display: table-cell;vertical-align: middle;}
  387. .banner_m_s .selectCity .select_result {
  388. width: 100%;
  389. height: 100%;
  390. display: none;
  391. }
  392. .banner_m_s .selectCity .select_result dt, .banner_m_s .selectCity .select_result dd {
  393. font-size: 14px;
  394. color: #565656;
  395. }
  396. .banner_m_s .selectCity .select_result dt {
  397. line-height: 30px;
  398. }
  399. .banner_m_s .selectCity .select_result dd {
  400. line-height: 24px;
  401. float: left;
  402. margin-right: 20px;
  403. width: 70px;
  404. cursor: pointer;
  405. }
  406. .banner_m_s .selectCity .select_result dd:hover {
  407. color: #21235f;
  408. }
  409. .banner_m_s > li {
  410. float: left;
  411. width: 186px;
  412. height: 36px;
  413. border: solid 1px #616497;
  414. margin-right: 8px;
  415. padding: 0 12px;
  416. position: relative;
  417. }
  418. .banner_m_s > li.on > a i {
  419. background: url(../images/icon7_hover.png) center no-repeat;
  420. }
  421. .banner_m_s > li > a {
  422. display: inline-block;
  423. width: 100%;
  424. height: 100%;
  425. font-size: 14px;
  426. color: #e1e1ef;
  427. line-height: 34px;
  428. }
  429. .banner_m_s > li > a span {
  430. float: left;
  431. }
  432. .banner_m_s > li > a i {
  433. float: right;
  434. width: 9px;
  435. height: 100%;
  436. background: url(../images/icon7.png) center no-repeat;
  437. }
  438. .banner_m_s > li > dl {
  439. display: none;
  440. position: absolute;
  441. z-index: 2;
  442. width: 150px;
  443. left: -1px;
  444. top: 35px;
  445. }
  446. .banner_m_s > li > dl.choosed dt {
  447. display: inline-block;
  448. }
  449. .banner_m_s > li > dl dd {
  450. width: 100%;
  451. height: 34px;
  452. border: solid 1px #ededed;
  453. border-top: none;
  454. background-color: #fff;
  455. -webkit-transition: all .4s;
  456. transition: all .4s;
  457. }
  458. .banner_m_s > li > dl dd:first-child {
  459. border-top: solid 1px #ededed;
  460. }
  461. .banner_m_s > li > dl dd:hover {
  462. background-color: #f4f4f4;
  463. }
  464. .banner_m_s > li > dl dd a {
  465. font-size: 14px;
  466. display: inline-block;
  467. width: 100%;
  468. height: 100%;
  469. color: #7c7c7c;
  470. padding: 0 12px;
  471. line-height: 34px;
  472. }
  473. .banner_m_b {
  474. margin-top: 122px;
  475. }
  476. .banner_m_b_b {
  477. width: 211px;
  478. height: 60px;
  479. background-color: #5c79b7;
  480. border-radius: 2px;
  481. -webkit-transition: all 0.3s;
  482. transition: all 0.3s;
  483. }
  484. .banner_m_b_b:hover {
  485. background-color: #4077e5;
  486. }
  487. .banner_m_b_b_l {
  488. width: 70px;
  489. height: 56px;
  490. background-color: #334773;
  491. border-radius: 2px;
  492. margin: 2px;
  493. position: relative;
  494. }
  495. .banner_m_b_b_l input {
  496. width: 40px;
  497. height: 100%;
  498. padding: 0 4px;
  499. float: left;
  500. font-size: 18px;
  501. color: #fff;
  502. text-align: center;
  503. }
  504. .banner_m_b_b_l_r {
  505. width: 30px;
  506. height: 100%;
  507. float: right;
  508. border-left: 1px solid rgba(255, 255, 255, 0.1);
  509. }
  510. .banner_m_b_b_l_r button {
  511. width: 100%;
  512. height: 50%;
  513. font-size: 14px;
  514. color: #fff;
  515. font-weight: bold;
  516. opacity: 0.5;
  517. cursor: pointer;
  518. }
  519. .banner_m_b_b_l_r button:first-child {
  520. border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  521. }
  522. .banner_m_b_b_l_r button.disabled{
  523. color:opacity: 0.5 !important;
  524. cursor: not-allowed;
  525. }
  526. .banner_m_b_b_l_r button.disabled:active {
  527. color:opacity: 0.5 !important;
  528. background-color: rgba(255, 255, 255, 0) !important;
  529. }
  530. .banner_m_b_b_l_r button:hover {
  531. opacity: 1;
  532. }
  533. .banner_m_b_b_l_r button:active {
  534. opacity: 1;
  535. background-color: rgba(255, 255, 255, 0.1);
  536. }
  537. .banner_m_b_b_r {
  538. width: 136px;
  539. text-align: center;
  540. }
  541. .banner_m_b_b_r p {
  542. font-size: 0;
  543. }
  544. .banner_m_b_b_r p:first-child {
  545. padding: 10px 0 4px;
  546. font-size: 16px;
  547. color: #fff;
  548. font-weight: bold;
  549. }
  550. .banner_m_b_b_r p:first-child + p:before, .banner_m_b_b_r p:first-child + p:after {
  551. width: 12px;
  552. height: 0;
  553. content: '';
  554. border-bottom: 1px dashed rgba(219, 219, 219, 0.4);
  555. display: inline-block;
  556. }
  557. .banner_m_b_b_r p:first-child + p label {
  558. display: inline-block;
  559. width: 14px;
  560. height: 14px;
  561. border-radius: 50%;
  562. border: 1px solid rgba(219, 219, 219, 0.4);
  563. line-height: 12px;
  564. }
  565. .banner_m_b_b_r p:first-child + p label i {
  566. width: 3px;
  567. height: 5px;
  568. display: inline-block;
  569. background: url(../images/icon4.png);
  570. vertical-align: middle;
  571. }
  572. .banner_m_b_c {
  573. width: 211px;
  574. height: 60px;
  575. margin-left: 6px;
  576. background-color: #ff7046;
  577. border-radius: 2px;
  578. -webkit-transition: all 0.3s;
  579. transition: all 0.3s;
  580. padding: 3px 15px;
  581. }
  582. .banner_m_b_c img {
  583. width: 48px;
  584. height: 48px;
  585. border: 3px solid rgba(255,255,255,0.3);
  586. border-radius: 100%;
  587. -webkit-border-radius: 100%;
  588. }
  589. .banner_m_b_c:hover {
  590. background-color: #ff9500;
  591. }
  592. .banner_m_b_c img {
  593. max-width: none;
  594. position: relative;
  595. top: -14px;
  596. }
  597. .banner_m_b_c_r {
  598. display: inline-block;
  599. margin-left: 4px;
  600. }
  601. .banner_m_b_c_r p:first-child {
  602. font-size: 16px;
  603. padding-top: 6px;
  604. font-weight: bold;
  605. color: #fff;
  606. }
  607. .banner_m_b_c_r p:first-child + p {
  608. font-size: 12px;
  609. color: rgba(255, 255, 255, 0.5);
  610. }
  611. .banner_b {
  612. width: 100%;
  613. height: 60px;
  614. position: absolute;
  615. bottom: 0;
  616. left: 0;
  617. }
  618. .banner_b #containerNav {
  619. width: 100%;
  620. height: 60px;
  621. background-color: rgba(36, 49, 89, 0.6);
  622. position: absolute;
  623. top: 0;
  624. left: 0;
  625. }
  626. .banner_b ul {
  627. height: 100%;
  628. border-left: 1px solid rgba(255, 255, 255, 0.15);
  629. }
  630. .banner_b li {
  631. float: left;
  632. text-align: center;
  633. line-height: 60px;
  634. font-size: 16px;
  635. color: #fff;
  636. width: 149px;
  637. height: 100%;
  638. border-right: 1px solid rgba(255, 255, 255, 0.15);
  639. cursor: pointer;
  640. -webkit-transition: all 0.3s;
  641. transition: all 0.3s;
  642. }
  643. .banner_b li.on {
  644. color: #ccdfff;
  645. }
  646. .banner_b li:hover {
  647. background-color: rgba(255, 255, 255, 0.1);
  648. }
  649. /* 必要性 */
  650. .necessary {
  651. height: 485px;
  652. background-color: #f6f6fa;
  653. background-image: url(../images/necessity.png);
  654. background-position: center 170px;
  655. background-repeat: no-repeat;
  656. padding-top: 76px;
  657. }
  658. .necessary_t {
  659. width: 36px;
  660. height: 36px;
  661. border: 1px solid #fff;
  662. border-radius: 50%;
  663. color: #ffffff;
  664. font-size: 14px;
  665. font-family: Impact;
  666. font-weight: bold;
  667. text-align: center;
  668. margin: auto;
  669. margin-top: 26px;
  670. }
  671. .necessary_l {
  672. margin-top: 6px;
  673. text-align: center;
  674. }
  675. .necessary_l li {
  676. display: inline-block;
  677. width: 165px;
  678. height: 180px;
  679. position: relative;
  680. margin-left: 6px;
  681. text-align: center;
  682. background-image: linear-gradient(8deg, rgba(250, 250, 255, 0.83) 0%, rgba(255, 255, 255, 0.83) 82%), linear-gradient(#ffffff, #ffffff);
  683. border-radius: 4px;
  684. }
  685. .necessary_l li:first-child {
  686. margin-left: 0;
  687. }
  688. .necessary_l_i {
  689. display: inline-block;
  690. width: 47px;
  691. height: 47px;
  692. border-radius: 50%;
  693. line-height: 46px;
  694. background-color: #243159;
  695. margin: 28px 0 22px;
  696. }
  697. .necessary_l_d {
  698. font-size: 14px;
  699. color: #a5a6aa;
  700. width: 140px;
  701. margin: auto;
  702. height: 65px;
  703. overflow: hidden;
  704. }
  705. .necessary_l_b {
  706. width: 36px;
  707. height: 4px;
  708. position: absolute;
  709. bottom: 14px;
  710. left: 64px;
  711. background-image: -webkit-gradient(linear, left top, left bottom, from(#efeff5), to(#efeff5)), -webkit-gradient(linear, left top, left bottom, from(#ebebf3), to(#ebebf3));
  712. background-image: linear-gradient(#efeff5, #efeff5), linear-gradient(#ebebf3, #ebebf3);
  713. background-blend-mode: normal, normal;
  714. -webkit-box-shadow: inset 1px 1px 2px 0px rgba(153, 153, 180, 0.2);
  715. box-shadow: inset 1px 1px 2px 0px rgba(153, 153, 180, 0.2);
  716. border-radius: 2px;
  717. opacity: 0.5;
  718. }
  719. /* 服务介绍 */
  720. .intro {
  721. width: 100%;
  722. height: 460px;
  723. background-color: #ffffff;
  724. padding-top: 52px;
  725. }
  726. .intro .common_title {
  727. width: 439px;
  728. margin: auto;
  729. padding-top: 37px;
  730. background: url(../images/Service.png) center no-repeat;
  731. }
  732. .intro_l {
  733. margin-top: 65px;
  734. }
  735. .intro_l li {
  736. width: 240px;
  737. float: left;
  738. text-align: center;
  739. }
  740. .intro_l_i {
  741. width: 58px;
  742. height: 58px;
  743. margin: auto;
  744. line-height: 58px;
  745. }
  746. .intro_l_t {
  747. font-size: 18px;
  748. color: #232325;
  749. margin: 20px 0 5px;
  750. }
  751. .intro_l_t:after {
  752. content: '';
  753. display: block;
  754. width: 14px;
  755. height: 1px;
  756. background: #edeef1;
  757. margin: 8px auto 0;
  758. }
  759. .intro_l_d {
  760. font-size: 14px;
  761. color: #909093;
  762. }
  763. /* 流程 */
  764. .process_data {
  765. width: 100%;
  766. background: url(../images/process.jpg) center -1px no-repeat;
  767. height: 570px;
  768. margin-bottom: 154px;
  769. }
  770. .process {
  771. width: 100%;
  772. padding-top: 60px;
  773. }
  774. .process_l {
  775. margin-top: 50px;
  776. }
  777. .process_l li {
  778. float: left;
  779. width: 240px;
  780. text-align: center;
  781. position: relative;
  782. }
  783. .process_l li:first-child:before, .process_l li:first-child:after {
  784. display: none;
  785. }
  786. .process_l li:before {
  787. content: '';
  788. display: inline-block;
  789. width: 178px;
  790. height: 0;
  791. border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  792. position: absolute;
  793. left: -89px;
  794. top: 31px;
  795. }
  796. .process_l li:after {
  797. content: '';
  798. display: inline-block;
  799. width: 17px;
  800. height: 17px;
  801. border-radius: 50%;
  802. background: #ececf6 url(../images/icon24.png) center no-repeat;
  803. border: solid 1px rgba(255, 255, 255, 0.3);
  804. position: absolute;
  805. left: -8px;
  806. top: 23px;
  807. }
  808. .process_l_circle {
  809. width: 62px;
  810. height: 62px;
  811. margin: auto;
  812. border-radius: 50%;
  813. position: relative;
  814. overflow: hidden;
  815. }
  816. .process_l_c {
  817. width: 62px;
  818. height: 62px;
  819. border-radius: 50%;
  820. border: solid 1px rgba(255, 255, 255, 0.1);
  821. padding: 7px;
  822. animation: scaleCircle 2s ease-in infinite;
  823. position: absolute;
  824. top: 50%;
  825. left: 50%;
  826. margin: -31px 0 0 -31px;
  827. }
  828. .process_l_cc {
  829. width: 46px;
  830. height: 46px;
  831. border-radius: 50%;
  832. border: solid 1px rgba(255, 255, 255, 0.1);
  833. padding: 7px;
  834. position: absolute;
  835. top: 50%;
  836. left: 50%;
  837. margin: -23px 0 0 -23px;
  838. animation: scaleCircle 2s ease-in 1s infinite;
  839. }
  840. .process_l_ccc {
  841. width: 30px;
  842. height: 30px;
  843. line-height: 30px;
  844. border-radius: 50%;
  845. background-color: rgba(255, 255, 255, 0.23);
  846. font-size: 16px;
  847. color: #fff;
  848. font-weight: bold;
  849. position: absolute;
  850. top: 50%;
  851. left: 50%;
  852. margin: -15px 0 0 -15px;
  853. }
  854. @keyframes scaleCircle {
  855. 0% {
  856. transform: scale(0.4);
  857. opacity: 0;
  858. filter: alpha(opacity=0);
  859. }
  860. 50% {
  861. transform: scale(0.7);
  862. opacity: 1;
  863. filter: alpha(opacity=100);
  864. }
  865. 100% {
  866. transform: scale(1);
  867. opacity: 0;
  868. filter: alpha(opacity=0);
  869. }
  870. }
  871. .process_l_d {
  872. font-size: 14px;
  873. color: #fff;
  874. width: 220px;
  875. margin: auto;
  876. height: 50px;
  877. line-height: 25px;
  878. }
  879. .process_l_icon {
  880. display: block;
  881. width: 14px;
  882. height: 1px;
  883. background: url(../images/icon23.png) no-repeat;
  884. margin: 14px auto 0;
  885. }
  886. /* 资料 */
  887. .data {
  888. width: 1200px;
  889. height: 324px;
  890. background-color: #ffffff;
  891. border-radius: 4px;
  892. margin: 66px auto 0;
  893. padding: 20px;
  894. }
  895. .data_t p {
  896. line-height: 24px;
  897. }
  898. .data_t p:first-child i {
  899. display: inline-block;
  900. width: 10px;
  901. height: 10px;
  902. background: url(../images/icon25.png);
  903. position: relative;
  904. top: -2px;
  905. }
  906. .data_t p:first-child span {
  907. font-size: 18px;
  908. color: #616161;
  909. margin-left: 8px;
  910. }
  911. .data_t p:first-child + p {
  912. font-size: 14px;
  913. color: #9c9c9c;
  914. }
  915. .data_b {
  916. margin-top: 14px;
  917. }
  918. .data_b_l, .data_b_r {
  919. width: 570px;
  920. height: 240px;
  921. background-color: #f6f6fa;
  922. border-radius: 4px;
  923. -webkit-transition: all .4s;
  924. transition: all .4s;
  925. }
  926. .data_b_l {
  927. background: url(../images/personal_pic.png);
  928. }
  929. .data_b_r {
  930. background: url(../images/enterprise_pic.png);
  931. }
  932. .data_b_left {
  933. width: 277px;
  934. height: 100%;
  935. text-align: center;
  936. }
  937. .data_b_left p {
  938. font-size: 12px;
  939. color: rgba(255, 255, 255, 0.2);
  940. }
  941. .data_b_left p:first-child {
  942. font-size: 22px;
  943. color: #fff;
  944. padding: 96px 0 6px;
  945. }
  946. .data_b_right {
  947. width: 260px;
  948. margin: 25px 0 25px 25px;
  949. }
  950. .data_b_right li {
  951. height: 40px;
  952. width: 100%;
  953. border-bottom: 1px dashed #e2e2e6;
  954. line-height: 40px;
  955. font-size: 14px;
  956. color: #8b8d91;
  957. overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  958. }
  959. .data_b_right li:before {
  960. content: '';
  961. display: inline-block;
  962. width: 10px;
  963. height: 10px;
  964. background-color: #d4d4d4;
  965. border-radius: 50%;
  966. margin-right: 10px;
  967. }
  968. /* 服务 */
  969. .service {
  970. width: 100%;
  971. height: 430px;
  972. padding-top: 36px;
  973. }
  974. .service_l {
  975. height: 245px;
  976. background-color: #ffffff;
  977. border-radius: 4px;
  978. margin-top: 18px;
  979. padding-top: 12px;
  980. }
  981. .service_l li {
  982. float: left;
  983. width: 25%;
  984. height: 100%;
  985. border-left: 1px solid #eeeeee;
  986. }
  987. .service_l li:first-child {
  988. border-left: none;
  989. }
  990. .service_l li.on .service_l_b {
  991. display: none !important;
  992. }
  993. .service_l li.on .service_l_t span {
  994. color: #ff3c00;
  995. }
  996. .service_l_t {
  997. width: 100%;
  998. height: 54px;
  999. background: #f6f6fa;
  1000. padding: 0 16px;
  1001. line-height: 54px;
  1002. }
  1003. .service_l2 .service_l_t{ border-left:10px solid #fff;}
  1004. .service_l5 .service_l_t{ border-right:10px solid #fff;}
  1005. .service_l_t span {
  1006. font-size: 16px;
  1007. font-weight: bold;
  1008. color: #4a4c5a;
  1009. }
  1010. .service_l_t img {
  1011. margin-top: 15px;
  1012. }
  1013. .service_l_m, .service_l_m2 {
  1014. height: 55px;
  1015. border-bottom: 1px dashed #dcdcdc;
  1016. line-height: 54px;
  1017. text-indent: 16px;
  1018. width: 300px;
  1019. white-space: nowrap;
  1020. text-overflow: ellipsis;
  1021. -o-text-overflow: ellipsis;
  1022. overflow: hidden;
  1023. }
  1024. .service_l_m {
  1025. font-size: 14px;
  1026. color: #9e9e9e;
  1027. }
  1028. .service_l_m2 {
  1029. font-size: 18px;
  1030. color: #ff5a12;
  1031. font-weight: bold;
  1032. }
  1033. .service_l_m2 span {
  1034. font-weight: normal;
  1035. font-size: 14px;
  1036. margin-right: -3px;
  1037. }
  1038. .service_l_m2 label {
  1039. font-weight: normal;
  1040. font-size: 14px;
  1041. margin-left: -3px;
  1042. position: relative;
  1043. top: -1px;
  1044. }
  1045. .service_l_b a {
  1046. display: inline-block;
  1047. width: 108px;
  1048. height: 38px;
  1049. background-color: #243159;
  1050. border-radius: 4px;
  1051. font-size: 14px;
  1052. color: #fff;
  1053. font-weight: bold;
  1054. line-height: 38px;
  1055. text-align: center;
  1056. margin-left: 16px;
  1057. margin-top: 16px;
  1058. -webkit-transition: all 0.3s;
  1059. transition: all 0.3s;
  1060. }
  1061. .service_l_b a:hover {
  1062. opacity: 0.8;
  1063. }
  1064. .service_l1 .service_l_t, .service_l4 .service_l_t {
  1065. width: 300px;
  1066. }
  1067. .service_l1 .service_l_t {
  1068. margin-left: 12px;
  1069. }
  1070. .service_l1 .service_l_m,
  1071. .service_l1 .service_l_m2 {
  1072. text-indent: 24px;
  1073. }
  1074. .service_l1 .service_l_b {
  1075. margin-left: 24px;
  1076. }
  1077. /* 知产 */
  1078. .ip {
  1079. width: 100%;
  1080. height: 488px;
  1081. background: #fff;
  1082. padding-top: 48px;
  1083. }
  1084. .ip_l {
  1085. margin-top: 16px;
  1086. }
  1087. .ip_l_t {
  1088. height: 66px;
  1089. line-height: 66px;
  1090. padding: 0 20px;
  1091. }
  1092. .ip_l_t span {
  1093. font-size: 16px;
  1094. font-weight: bold;
  1095. vertical-align: middle;
  1096. margin-left: 2px;
  1097. }
  1098. .ip_l_t label {
  1099. width: 6px;
  1100. height: 6px;
  1101. display: inline-block;
  1102. border-radius: 50%;
  1103. background-color: rgba(111, 111, 111, 0.45);
  1104. vertical-align: middle;
  1105. }
  1106. .ip_l1 .ip_l_b {
  1107. width: 100%;
  1108. border-top: 1px dashed #dbdbdb;
  1109. }
  1110. .ip_l1 .ip_l_b_t {
  1111. height: 50px;
  1112. line-height: 50px;
  1113. }
  1114. .ip_l1 .ip_l_b_t span {
  1115. font-size: 16px;
  1116. color: #6a6a6a;
  1117. vertical-align: middle;
  1118. margin-left: 2px;
  1119. }
  1120. .ip_l1 .ip_l_b_b {
  1121. -webkit-transition: all .4s;
  1122. transition: all .4s;
  1123. }
  1124. .ip_l1 .ip_l_b_b img {
  1125. max-width: 237px;
  1126. max-height: 182px;
  1127. }
  1128. .ip_l1 .ip_l_b_b:hover {
  1129. -webkit-transform: translateY(-4px);
  1130. transform: translateY(-4px);
  1131. }
  1132. .ip_l1 .ip_l_b_l .ip_l_b_t {
  1133. text-indent: 20px;
  1134. }
  1135. .ip_l1 .ip_l_b_r .ip_l_b_t {
  1136. text-indent: 2px;
  1137. }
  1138. .ip_l2 .ip_l_b, .ip_l3 .ip_l_b {
  1139. width: 350px;
  1140. height: 233px;
  1141. position: relative;
  1142. overflow: hidden;
  1143. }
  1144. .ip_l2 .ip_l_b img, .ip_l3 .ip_l_b img {
  1145. max-width: none;
  1146. position: absolute;
  1147. top: 50%;
  1148. left: 50%;
  1149. -webkit-transition: all .8s;
  1150. transition: all .8s;
  1151. }
  1152. .ip_l2 .ip_l_b:hover img, .ip_l3 .ip_l_b:hover img {
  1153. -webkit-transform: scale(1.2);
  1154. transform: scale(1.2);
  1155. }
  1156. .ip_l2 .ip_l_b img {
  1157. margin-top: -120px;
  1158. margin-left: -326px;
  1159. }
  1160. .ip_l3 .ip_l_b img {
  1161. margin-top: -119px;
  1162. margin-left: -180px;
  1163. }
  1164. .ip li {
  1165. width: 350px;
  1166. height: 300px;
  1167. float: left;
  1168. background-color: #f6f6fa;
  1169. margin-left: 7px;
  1170. }
  1171. .ip li:first-child {
  1172. width: 484px;
  1173. margin-left: 0;
  1174. }
  1175. /* 顾问 */
  1176. .team {
  1177. width: 100%;
  1178. height: 614px;
  1179. background: url(../images/team.jpg) center -1px no-repeat;
  1180. padding-top: 50px;
  1181. }
  1182. .team_slide {
  1183. margin-top: 16px;
  1184. }
  1185. .team_slide_hd ul {
  1186. width: auto;
  1187. text-align: center;
  1188. font-size: 0;
  1189. }
  1190. .team_slide_hd ul li {
  1191. display: inline-block;
  1192. font-size: 14px;
  1193. color: #fff;
  1194. font-weight: bold;
  1195. padding: 0 40px;
  1196. height: 40px;
  1197. line-height: 40px;
  1198. border: 1px solid #8b90a2;
  1199. border-left: none;
  1200. cursor: pointer;
  1201. }
  1202. .team_slide_hd ul li:first-child {
  1203. border-left: 1px solid #8b90a2;
  1204. }
  1205. .team_slide_hd ul li.on {
  1206. border-top: 2px solid #ef561e;
  1207. position: relative;
  1208. }
  1209. .team_slide_hd ul li.on:before {
  1210. content: '';
  1211. display: inline-block;
  1212. width: 0;
  1213. height: 0;
  1214. border-color: transparent;
  1215. border-style: solid;
  1216. border-width: 3px 4px 0 4px;
  1217. border-top-color: #ef561e;
  1218. position: absolute;
  1219. top: 0;
  1220. left: 50%;
  1221. margin-left: -2px;
  1222. }
  1223. .team_slide_bd {
  1224. margin-top: 50px;
  1225. height: 320px;
  1226. }
  1227. .team_slide_bd .team_star {
  1228. width: 320px;
  1229. height: 320px;
  1230. float: left;
  1231. margin-right: 6px;
  1232. background: url(../images/team_pic1.jpg) center no-repeat;
  1233. text-align: center;
  1234. padding-top: 22px;
  1235. }
  1236. .team_slide_bd .team_star_t {
  1237. font-size: 18px;
  1238. color: #fff;
  1239. font-weight: bold;
  1240. }
  1241. .team_slide_bd .team_star_pic {
  1242. margin: 10px auto 6px;
  1243. width: 150px;
  1244. height: 150px;
  1245. border-radius: 50%;
  1246. background-color: rgba(255, 255, 255, 0.2);
  1247. padding: 10px;
  1248. overflow: hidden;
  1249. }
  1250. .team_slide_bd .team_star_pic img {
  1251. width: 100%;
  1252. height: 100%;
  1253. -o-object-fit: cover;
  1254. object-fit: cover;
  1255. border-radius: 50%;
  1256. }
  1257. .team_slide_bd .team_star_name {
  1258. font-size: 16px;
  1259. color: #fff;
  1260. font-weight: bold;
  1261. }
  1262. .team_slide_bd .team_star_exp {
  1263. font-size: 14px;
  1264. color: #ffd3bf;
  1265. margin: 8px 0 12px;
  1266. }
  1267. .team_slide_bd .team_star a {
  1268. display: inline-block;
  1269. width: 100px;
  1270. height: 26px;
  1271. background-image: -webkit-gradient(linear, left top, left bottom, from(#f2b051), to(#f2b051)), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  1272. background-image: linear-gradient(#f2b051, #f2b051), linear-gradient(#ffffff, #ffffff);
  1273. -webkit-box-shadow: 1px 1px 8px 0px rgba(129, 80, 59, 0.23);
  1274. box-shadow: 1px 1px 8px 0px rgba(129, 80, 59, 0.23);
  1275. border-radius: 13px;
  1276. font-size: 14px;
  1277. color: #fff;
  1278. font-weight: bold;
  1279. line-height: 26px;
  1280. -webkit-transition: all 0.3s;
  1281. transition: all 0.3s;
  1282. }
  1283. .team_slide_bd .team_star a:hover {
  1284. -webkit-transform: translateY(-2px);
  1285. transform: translateY(-2px);
  1286. }
  1287. .team_slide_bd .team_person {
  1288. width: 141px;
  1289. height: 158px;
  1290. float: left;
  1291. position: relative;
  1292. margin:0 0 4px 4px;
  1293. overflow: hidden;
  1294. }
  1295. .team_slide_bd .team_person:hover .team_person_contact {
  1296. width: 100%;
  1297. height: 100%;
  1298. }
  1299. .team_slide_bd .team_person_pic {
  1300. width: 100%;
  1301. height: 100%;
  1302. background:#15181D;
  1303. }
  1304. .team_slide_bd .team_person_pic img {
  1305. max-width: none;
  1306. }
  1307. .team_slide_bd .team_person_contact {
  1308. width: 0;
  1309. height: 0;
  1310. position: absolute;
  1311. top: 0;
  1312. right: 0;
  1313. bottom: 0;
  1314. left: 0;
  1315. margin: auto;
  1316. background-color: rgba(0, 0, 0, 0.8);
  1317. text-align: center;
  1318. overflow: hidden;
  1319. -webkit-transition: all 0.3s;
  1320. transition: all 0.3s;
  1321. }
  1322. .team_slide_bd .team_person_contact > div {
  1323. width: 144px;
  1324. height: 160px;
  1325. position: absolute;
  1326. top: 50%;
  1327. left: 50%;
  1328. margin-left: -72px;
  1329. margin-top: -80px;
  1330. }
  1331. .team_slide_bd .team_person_contact i {
  1332. display: inline-block;
  1333. width: 10px;
  1334. height: 10px;
  1335. position: absolute;
  1336. top: 4px;
  1337. left: 4px;
  1338. border-left: 2px solid #3d3d3d;
  1339. border-top: 2px solid #3d3d3d;
  1340. }
  1341. .team_slide_bd .team_person_contact p {
  1342. font-size: 16px;
  1343. font-weight: bold;
  1344. color: #fff;
  1345. padding: 66px 0 24px;
  1346. }
  1347. .team_slide_bd .team_person_contact a {
  1348. display: inline-block;
  1349. width: 100px;
  1350. height: 26px;
  1351. background-color: #fa753c;
  1352. -webkit-box-shadow: 1px 1px 8px 0px rgba(129, 80, 59, 0.23);
  1353. box-shadow: 1px 1px 8px 0px rgba(129, 80, 59, 0.23);
  1354. border-radius: 13px;
  1355. font-size: 14px;
  1356. color: #fff;
  1357. line-height: 26px;
  1358. -webkit-transition: box-shadow 0.2s;
  1359. -webkit-transition: -webkit-box-shadow 0.2s;
  1360. transition: -webkit-box-shadow 0.2s;
  1361. transition: box-shadow 0.2s;
  1362. transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  1363. }
  1364. /* 证书 */
  1365. .certificate {
  1366. height: 596px;
  1367. background-color: #fff;
  1368. padding-top: 45px;
  1369. }
  1370. .certificate ul {
  1371. margin-top: 24px;
  1372. }
  1373. .certificate li {
  1374. float: left;
  1375. margin: 0 0 10px 6px;
  1376. }
  1377. .certificate li:first-child {
  1378. margin-left: 0;
  1379. }
  1380. /* 问题 */
  1381. .questions {
  1382. height: 420px;
  1383. padding-top: 44px;
  1384. }
  1385. .questions ul {
  1386. margin-top: 20px;
  1387. }
  1388. .questions_l {
  1389. width: 394px;
  1390. height: 180px;
  1391. float: left;
  1392. background-color: #ffffff;
  1393. border-radius: 4px;
  1394. margin-left: 9px;
  1395. transition: 0.3s;
  1396. }
  1397. .questions_l:hover {
  1398. transform: translateY(-4px);
  1399. }
  1400. .questions_l:first-child {
  1401. margin-left: 0;
  1402. }
  1403. .questions_l > a {
  1404. display: inline-block;
  1405. width: 100%;
  1406. height: 100%;
  1407. -webkit-transition: all .4s;
  1408. transition: all .4s;
  1409. }
  1410. .questions_l_q {
  1411. height: 52px;
  1412. line-height: 52px;
  1413. text-indent: 12px;
  1414. border-bottom: 1px dashed #dbdde0;
  1415. overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  1416. }
  1417. .questions_l_q span {
  1418. font-size: 16px;
  1419. font-weight: bold;
  1420. color: #434343;
  1421. vertical-align: middle;
  1422. margin-left: 10px;
  1423. }
  1424. .questions_l_a {
  1425. margin-left: 12px;
  1426. margin-top: 10px;
  1427. }
  1428. .questions_l_a i {
  1429. vertical-align: text-top;
  1430. }
  1431. .questions_l_a span {
  1432. display: inline-block;
  1433. font-size: 13px;
  1434. color: #b4b4b4;
  1435. margin-left: 10px;
  1436. line-height: 24px;
  1437. height: 48px;
  1438. width: 326px;
  1439. vertical-align: top;
  1440. }
  1441. .questions_l_a:after {
  1442. content: "";
  1443. display: block;
  1444. width: 29px;
  1445. height: 1px;
  1446. background: url(../images/icon37.png);
  1447. margin: 10px 0 12px 34px;
  1448. }
  1449. .questions_l_d {
  1450. transition: 0.3s;
  1451. }
  1452. .questions_l_d:hover span {
  1453. color: #ff6031;
  1454. margin-right: 20px;
  1455. }
  1456. .questions_l_d span {
  1457. font-size: 13px;
  1458. color: #858585;
  1459. margin: 0 8px 0 42px;
  1460. -webkit-transition: all .4s;
  1461. transition: all .4s;
  1462. }
  1463. .questions_more {
  1464. width: 159px;
  1465. height: 34px;
  1466. display: block;
  1467. margin: 28px auto;
  1468. background: #ffffff url(../images/icon39.png) center no-repeat;
  1469. border-radius: 17px;
  1470. text-align: center;
  1471. line-height: 34px;
  1472. font-size: 14px;
  1473. color: #ff6031;
  1474. font-weight: bold;
  1475. -webkit-transition: all 0.3s;
  1476. transition: all 0.3s;
  1477. }
  1478. .questions_more:hover {
  1479. background: #ff6031 url(../images/icon40.png) center no-repeat;
  1480. color: #fff;
  1481. }
  1482. /* 版权个性化修改 */
  1483. .copyright .banner_m_p_n_i {
  1484. width: 69px;
  1485. height: 21px;
  1486. background: url(../images/icon3_2.png);
  1487. right: -72px;
  1488. }
  1489. .copyright .data_b_right {
  1490. width: 246px;
  1491. }
  1492. .copyright .ip {
  1493. background: #f6f6fa;
  1494. }
  1495. .copyright .ip li {
  1496. background-color: #fff;
  1497. }
  1498. .copyright .necessary {
  1499. height: 520px;
  1500. background: url(../images/necessity_2.png) center 146px no-repeat;
  1501. }
  1502. .copyright .necessary_ll {
  1503. width: 800px;
  1504. margin: auto;
  1505. padding-top: 30px;
  1506. }
  1507. .copyright .necessary_ll li {
  1508. margin-left: 40px;
  1509. margin-bottom: 15px;
  1510. }
  1511. .copyright .necessary_ll i {
  1512. display: inline-block;
  1513. width: 32px;
  1514. height: 28px;
  1515. background: url(../images/icon41.png);
  1516. font-size: 16px;
  1517. color: #fff;
  1518. font-family: 'Arial';
  1519. line-height: 28px;
  1520. text-indent: 10px;
  1521. margin-right: 20px;
  1522. }
  1523. .copyright .necessary_ll span {
  1524. font-size: 14px;
  1525. color: #a5a6aa;
  1526. }
  1527. /* 专利个性化修改 */
  1528. .patent .banner_m_p_n_y {
  1529. vertical-align: bottom;
  1530. }
  1531. .patent .banner_m {
  1532. margin-top: 50px;
  1533. }
  1534. .patent .necessary {
  1535. background: url(../images/necessity_3.png) center 111px no-repeat;
  1536. }
  1537. .patent .necessary_ll {
  1538. padding-top: 38px;
  1539. }
  1540. .patent .necessary_ll li {
  1541. margin-left: 40px;
  1542. margin-bottom: 15px;
  1543. }
  1544. .patent .necessary_ll i {
  1545. display: inline-block;
  1546. width: 32px;
  1547. height: 28px;
  1548. background: url(../images/icon41.png);
  1549. font-size: 16px;
  1550. color: #fff;
  1551. font-family: 'Arial';
  1552. line-height: 28px;
  1553. text-indent: 10px;
  1554. margin-right: 20px;
  1555. }
  1556. .patent .necessary_ll span {
  1557. font-size: 14px;
  1558. color: #a5a6aa;
  1559. width: 740px;
  1560. white-space: nowrap;
  1561. text-overflow: ellipsis;
  1562. -o-text-overflow: ellipsis;
  1563. overflow: hidden;
  1564. display: inline-block;
  1565. }
  1566. .patent .data_b_right {
  1567. width: 240px;
  1568. }
  1569. .patent .process_ll {
  1570. margin-top: 36px;
  1571. }
  1572. .patent .process_ll li {
  1573. float: left;
  1574. width: 150px;
  1575. }
  1576. .patent .process_ll_text {
  1577. padding: 30px 16px 25px;
  1578. width: 202px;
  1579. height: 146px;
  1580. }
  1581. .patent .process_ll_text label {
  1582. font-size: 14px;
  1583. color: #fff;
  1584. font-weight: bold;
  1585. display: inline-block;
  1586. width: 67px;
  1587. height: 31px;
  1588. text-align: center;
  1589. line-height: 28px;
  1590. background: url(../images/process_icon.png);
  1591. margin-bottom: 12px;
  1592. }
  1593. .patent .process_ll_text p {
  1594. font-size: 14px;
  1595. color: #adb8d9;
  1596. line-height: 24px;
  1597. }
  1598. .patent .process_ll_num {
  1599. width: 150px;
  1600. height: 50px;
  1601. text-align: center;
  1602. line-height: 50px;
  1603. font-size: 22px;
  1604. font-family: Arial;
  1605. font-style: italic;
  1606. }
  1607. .patent .process_ll1 .process_ll_text {
  1608. text-align: left;
  1609. border-left: 1px solid rgba(236, 236, 246, 0.1);
  1610. }
  1611. .patent .process_ll1 .process_ll_num {
  1612. background: url(../images/process_bg1.png);
  1613. color: #5c6b99;
  1614. }
  1615. .patent .process_ll2 .process_ll_text {
  1616. margin-left: -63px;
  1617. text-align: right;
  1618. border-right: 1px solid rgba(236, 236, 246, 0.1);
  1619. }
  1620. .patent .process_ll2 .process_ll_num {
  1621. margin-top: 146px;
  1622. background: url(../images/process_bg2.png);
  1623. color: #8f9cc2;
  1624. }
  1625. .patent .process_ll3 .process_ll_text {
  1626. text-align: left;
  1627. border-left: 1px solid rgba(236, 236, 246, 0.1);
  1628. }
  1629. .patent .process_ll3 .process_ll_num {
  1630. background: url(../images/process_bg3.png);
  1631. color: #5c6b99;
  1632. }
  1633. .patent .process_ll4 .process_ll_text {
  1634. margin-left: -63px;
  1635. text-align: right;
  1636. border-right: 1px solid rgba(236, 236, 246, 0.1);
  1637. }
  1638. .patent .process_ll4 .process_ll_num {
  1639. margin-top: 146px;
  1640. background: url(../images/process_bg2.png);
  1641. color: #8f9cc2;
  1642. }
  1643. .patent .process_ll5 .process_ll_text {
  1644. text-align: left;
  1645. border-left: 1px solid rgba(236, 236, 246, 0.1);
  1646. }
  1647. .patent .process_ll5 .process_ll_num {
  1648. background: url(../images/process_bg3.png);
  1649. color: #5c6b99;
  1650. }
  1651. .patent .process_ll6 .process_ll_text {
  1652. margin-left: -63px;
  1653. text-align: right;
  1654. border-right: 1px solid rgba(236, 236, 246, 0.1);
  1655. }
  1656. .patent .process_ll6 .process_ll_num {
  1657. margin-top: 146px;
  1658. background: url(../images/process_bg2.png);
  1659. color: #8f9cc2;
  1660. }
  1661. .patent .process_ll7 .process_ll_text {
  1662. text-align: left;
  1663. border-left: 1px solid rgba(236, 236, 246, 0.1);
  1664. }
  1665. .patent .process_ll7 .process_ll_num {
  1666. background: url(../images/process_bg3.png);
  1667. color: #5c6b99;
  1668. }
  1669. .patent .process_ll8 .process_ll_text {
  1670. margin-left: -63px;
  1671. text-align: right;
  1672. border-right: 1px solid rgba(236, 236, 246, 0.1);
  1673. }
  1674. .patent .process_ll8 .process_ll_num {
  1675. margin-top: 146px;
  1676. background: url(../images/process_bg2.png);
  1677. color: #8f9cc2;
  1678. }
  1679. .patent .process_data {
  1680. height: auto;
  1681. margin-bottom: auto;
  1682. }
  1683. /* 流程新增样式 */
  1684. .noLine:after, .noLine:before {
  1685. content: none !important;
  1686. }
  1687. .hasLine:before {
  1688. content: '';
  1689. display: inline-block;
  1690. width: 178px;
  1691. height: 0;
  1692. border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  1693. position: absolute;
  1694. left: -89px;
  1695. top: 31px;
  1696. }
  1697. .hasLine:after {
  1698. content: '';
  1699. display: inline-block;
  1700. width: 17px;
  1701. height: 17px;
  1702. border-radius: 50%;
  1703. background: #ececf6 url(../images/icon24.png) center no-repeat;
  1704. border: solid 1px rgba(255, 255, 255, 0.3);
  1705. position: absolute;
  1706. left: -8px;
  1707. top: 24px;
  1708. }
  1709. .process_l_ccc_hover {
  1710. background-color: #5e86d6;
  1711. }
  1712. .new_block1 .label {
  1713. width: 80px;
  1714. height: 40px;
  1715. text-align: right;
  1716. font-weight: bold;
  1717. float: left;
  1718. display: table;
  1719. }
  1720. .new_block1 .label span {
  1721. display: table-cell;
  1722. vertical-align: middle;
  1723. }
  1724. .new_block1 .label span span {
  1725. display: block;
  1726. color: #9e9e9e;
  1727. font-weight: normal;
  1728. font-size: 12px;
  1729. padding-top: 2px;
  1730. }
  1731. .new_block1 .label small {
  1732. color: #ff7800;
  1733. vertical-align: middle;
  1734. }
  1735. .new_block1 .item_text{
  1736. width: 115px;
  1737. display: inline-block;
  1738. height: 34px;
  1739. white-space: nowrap;
  1740. overflow: hidden;
  1741. text-overflow: ellipsis;
  1742. }
  1743. .new_block1 .item_text span {
  1744. vertical-align: middle;
  1745. line-height: 34px;
  1746. float: left;
  1747. }
  1748. .new_block1 .item_text .text_b {
  1749. font-size: 12px;
  1750. margin-right: 4px;
  1751. }
  1752. .new_block1 .item_r {
  1753. width: 40px;
  1754. height: 100%;
  1755. float: right;
  1756. position: relative;
  1757. cursor: pointer;
  1758. border-left: 1px solid #dfdfdf;
  1759. }
  1760. .new_block1 .item_r i {
  1761. display: table;
  1762. width: 100%;
  1763. height: 100%;
  1764. color: #979797;
  1765. font-size: 12px;
  1766. text-align: center;
  1767. position: relative;
  1768. }
  1769. .new_block1 .item_r i:before {
  1770. display: table-cell;
  1771. vertical-align: middle;
  1772. text-align: center;
  1773. }
  1774. .new_block1 .select .more_item {
  1775. min-width: 275px;
  1776. max-width: 480px;
  1777. padding: 21px 10px;
  1778. -webkit-box-sizing: border-box;
  1779. box-sizing: border-box;
  1780. background: #ffffff;
  1781. border: solid 1px #dfdfdf;
  1782. }
  1783. .new_block1 .item_ul {
  1784. width: 100%;
  1785. display: none;
  1786. }
  1787. .new_block1 .select:first-child .item_ul{
  1788. display: inline-block;
  1789. }
  1790. .new_block1 .item_li {
  1791. float: left;
  1792. width: 142px;
  1793. -webkit-box-sizing: border-box;
  1794. box-sizing: border-box;
  1795. font-size: 14px;
  1796. color: #575757;
  1797. overflow: hidden;
  1798. text-overflow:ellipsis;
  1799. white-space: nowrap;
  1800. cursor: pointer;
  1801. margin-bottom: 20px;
  1802. margin-right: 10px;
  1803. }
  1804. .new_block1 .item_li:hover,
  1805. .new_block1 .item_li.active {
  1806. color: #3c5791;
  1807. }
  1808. .new_block1 .more_radio .item_li i {
  1809. width: 12px;
  1810. height: 12px;
  1811. border-radius: 50%;
  1812. }
  1813. .new_block1 .checkbox_item .item_li i {
  1814. width: 14px;
  1815. height: 14px;
  1816. border-radius: 3px;
  1817. }
  1818. .new_block1 .item_li i {
  1819. display: inline-block;
  1820. vertical-align: middle;
  1821. -webkit-box-shadow: inset 2px 3px 3px 0px rgba(0, 0, 0, 0.1);
  1822. box-shadow: inset 2px 3px 3px 0px rgba(0, 0, 0, 0.1);
  1823. border: solid 1px #e5e5e5;
  1824. -webkit-box-sizing: border-box;
  1825. box-sizing: border-box;
  1826. margin-right: 5px;
  1827. }
  1828. .new_block1 .item_li.active i {
  1829. background: #3c5791;
  1830. position: relative;
  1831. border: none;
  1832. }
  1833. .new_block1 .more_radio .item_li.active i:after {
  1834. content: '';
  1835. width: 4px;
  1836. height: 4px;
  1837. background-color: #ffffff;
  1838. position: absolute;
  1839. top: 0;
  1840. bottom: 0;
  1841. left: 0;
  1842. right: 0;
  1843. margin: auto;
  1844. border-radius: 50%;
  1845. }
  1846. .new_block1 .checkbox_item .item_li.active i:after {
  1847. content: '';
  1848. display: block;
  1849. width: 9px;
  1850. height: 7px;
  1851. position: absolute;
  1852. top: 0;
  1853. bottom: 0;
  1854. left: 0;
  1855. right: 0;
  1856. margin: auto;
  1857. background: url("../images/gou.png") no-repeat;
  1858. }
  1859. .new_block1 .more_item .active_item {
  1860. display: none;
  1861. }
  1862. .new_block1 .more_item .active_item span {
  1863. display: inline-block;
  1864. padding: 6px 10px;
  1865. font-size: 12px;
  1866. color: #808080;
  1867. background-color: #f5f5f5;
  1868. border-radius: 3px;
  1869. margin: 10px 10px 0 0;
  1870. }
  1871. .new_block1 .slide {
  1872. width: 100%;
  1873. height: 1px;
  1874. background: #e5e5e5;
  1875. margin: 20px 0;
  1876. }
  1877. .new_block1 .btns {
  1878. display: inline-block;
  1879. width: 100%;
  1880. text-align: center;
  1881. }
  1882. .new_block1 .btns a {
  1883. display: inline-block;
  1884. width: 58px;
  1885. height: 28px;
  1886. line-height: 28px;
  1887. border-radius: 3px;
  1888. font-size: 14px;
  1889. -webkit-box-sizing: border-box;
  1890. box-sizing: border-box;
  1891. position: relative;
  1892. top: 0;
  1893. -webkit-transition: all 0.2s linear;
  1894. transition: all 0.2s linear;
  1895. }
  1896. .new_block1 .btns a:hover {
  1897. top: -2px;
  1898. }
  1899. .new_block1 .btns_l {
  1900. margin-right: 10px;
  1901. background-color: #3c5791;
  1902. color: #fff;
  1903. }
  1904. .new_block1 .btns_r {
  1905. background-color: #f9f9f9;
  1906. border: solid 1px #dfdfdf;
  1907. color: #9e9e9e;
  1908. }
  1909. .notAllow{
  1910. cursor: not-allowed!important;
  1911. background-color: #dfdfdf!important;
  1912. }
  1913. .notAllow a{
  1914. cursor: not-allowed!important;
  1915. color: #aaa!important;
  1916. }
  1917. .service.espic ul{width: auto;height: 292px;margin: 5px auto 0 auto;position: relative;display: table;}
  1918. .service.espic li{position: relative;width: 224px;height: 262px;background: url(../../images/registerglobal/icon2.png) no-repeat;float: left;margin: 15px 0 0 20px;box-shadow: 0 3px 7px rgba(0, 0, 0, 0.02);text-align: center;}
  1919. .service.espic li:first-child{margin-left: 0;}
  1920. .service.espic li:hover{transform: translateY(-4px);-webkit-transform: translateY(-4px);transition: all 0.3s;-webkit-transition: all 0.3s;}
  1921. .service.espic li .p1{margin: 25px auto 23px auto;padding: 3px 0;width: 136px; background: #f0eef8;box-shadow: 0 2px 5px rgba(59,66,118,0.1); -webkit-box-shadow: 0 2px 5px rgba(59,66,118,0.1);border-radius: 6px; -webkit-border-radius: 6px;}
  1922. .service.espic li .p1 img{width: 130px; border-radius: 4px; -webkit-border-radius: 4px;}
  1923. .service.espic li .p2{font-weight: bold;font-size: 18px;color: #3e4b73;margin-top: -4px;}
  1924. .service.espic li .p3{font-weight: bold;font-size: 30px;color: #ff580e;}
  1925. .service.espic li .p3 span{font-weight: normal;font-size: 16px;}
  1926. .service.espic li .p4{border-top: 1px solid #ebebf3;height: 43px;width: 100%;position: absolute;left: 0;bottom: 0;}
  1927. .service.espic li .p4 a{float: left;width: 100%;height: 42px;position: relative;line-height: 42px;font-size: 14px;color: #9e9fa6;}
  1928. .service.espic li .p4 a:hover{color: #ff580e;}