style.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. /*animate补充动画*/
  2. @keyframes fadeInLeftSmall {
  3. from {
  4. opacity: 0;
  5. transform: translate3d(-10px, 0, 0);
  6. }
  7. to {
  8. opacity: 1;
  9. transform: none;
  10. }
  11. }
  12. .fadeInLeftSmall {
  13. animation-name: fadeInLeftSmall;
  14. }
  15. .itempage{ padding: 50px 200px;}
  16. .item-div{ padding: 50px 0 0 0;}
  17. .item-div1 ul{ display: flex; display: -ms-flexbox; display: -webkit-flex; justify-content: space-between; flex-wrap: wrap;}
  18. .item-div1 ul li{ width: 31.5%; margin-bottom: 3%;}
  19. .item-div1 ul li img{ display: block; width: 100%; overflow: hidden;}
  20. .item-div1 li h3{ font-size: 18px; color: #000; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 10px 0;}
  21. .item-div1 li p{ font-size: 14px; color: #999; height: 48px; line-height: 24px; overflow: hidden;}
  22. .item-div1 li figcaption{ box-shadow: 0 0 10px rgba(0,0,0,0.1); padding: 10px 10px;}
  23. .item-div2 ul{ display: flex; display: -ms-flexbox; display: -webkit-flex; justify-content: space-between; flex-wrap: wrap;}
  24. .item-div2 ul li{ width: 25%; border:1px solid #E0E0E0; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
  25. margin-bottom: -1px; }
  26. .item-div2 ul li:nth-child(2n+1),.item-div2 ul li:nth-child(2),.item-div2 ul li:nth-child(6){ border-right: none;}
  27. .item-div2 ul li p{text-align: center; font-size: 16px; padding: 15px 0;}
  28. .item-div2 ul li figure img{ display: block; width: 160px; margin: 20px auto 0 auto;}
  29. .item-div3{ padding-bottom: 0;}
  30. .item-div3 .liuyan{ padding-top: 0;}
  31. .item-div3 .liuyan ul{display: flex; display: -ms-flexbox; display: -webkit-flex; justify-content: space-between; flex-wrap: wrap; padding:50px 0;}
  32. .item-div3 .liuyan li{ width: 32%; margin: 15px 0;}
  33. .item-div3 li.on_22{ display:flex; display: -ms-flexbox; display: -webkit-flex; justify-content: space-between;}
  34. .item-div3 .liuyan li.on_22 input.sub{ width: 49%; border-radius: 5px;}
  35. .item-div3 .liuyan li.on_22 a{ height: 50px; display: block; line-height: 50px; width: 49%; background: #3279e6; text-align: center; border: none; border-radius: 5px; color: #fff; font-size: 20px; cursor: pointer; transition: 300ms;}
  36. .list-company{ padding: 45px 0;}
  37. .list-company ul{ margin-top: 35px; display: flex; display: flex; justify-content: space-between;}
  38. .list-company ul li{ box-shadow: 0 0 10px rgba(0,0,0,0.05); width: 32%; padding: 25px 0; border:1px solid #F5F5F5;}
  39. .list-company li p{height: 50px; line-height: 50px; font-size: 16px; color: #000;
  40. text-align: center; background: #fff;}
  41. @keyframes fadeInRightSmall {
  42. from {
  43. opacity: 0;
  44. transform: translate3d(10px, 0, 0);
  45. }
  46. to {
  47. opacity: 1;
  48. transform: none;
  49. }
  50. }
  51. .fadeInRightSmall {
  52. animation-name: fadeInRightSmall;
  53. }
  54. @keyframes fadeInDownSmall {
  55. from {
  56. opacity: 0;
  57. transform: translate3d(0%, -10px, 0);
  58. }
  59. to {
  60. opacity: 1;
  61. transform: none;
  62. }
  63. }
  64. .fadeInDownSmall {
  65. animation-name: fadeInDownSmall;
  66. }
  67. @keyframes fadeOutDownSmall {
  68. from {
  69. opacity: 1;
  70. transform: none;
  71. }
  72. to {
  73. opacity: 0;
  74. transform: translate3d(0%, 10px, 0);
  75. }
  76. }
  77. .fadeOutDownSmall {
  78. animation-name: fadeOutDownSmall;
  79. }
  80. @keyframes fadeInUpSmall {
  81. from {
  82. opacity: 0;
  83. transform: translate3d(0%, 10px, 0);
  84. }
  85. to {
  86. opacity: 1;
  87. transform: none;
  88. }
  89. }
  90. .fadeInUpSmall {
  91. animation-name: fadeInUpSmall;
  92. }
  93. @keyframes scaleIn {
  94. 0% {
  95. opacity: 0;
  96. transform: scale(1.1);
  97. -webkit-transform: scale(1.1);
  98. -moz-transform: scale(1.1);
  99. -o-transform: scale(1.1);
  100. -ms-transform: scale(1.1);
  101. }
  102. 100% {
  103. opacity: 1;
  104. transform: scale(1);
  105. -webkit-transform: scale(1);
  106. -moz-transform: scale(1);
  107. -o-transform: scale(1);
  108. -ms-transform: scale(1);
  109. }
  110. }
  111. .scaleIn {
  112. animation-name: scaleIn;
  113. }
  114. .fadeIn {
  115. animation-delay: 0.3s;
  116. animation-timing-function: linear;
  117. }
  118. /*滚动动画的样式*/
  119. /*.disable-hover {*/
  120. /*pointer-events: none;*/
  121. /*}*/
  122. .scroll-animate.animated {
  123. visibility: hidden;
  124. }
  125. .font-fadeIn font {
  126. display: inline-block;
  127. min-width: 12px;
  128. }
  129. .scrolly {
  130. transition: all 0.5s ease-out;
  131. -webkit-transition: all 0.5s ease-out;
  132. -moz-transition: all 0.5s ease-out;
  133. -o-transition: all 0.5s ease-out;
  134. -ms-transition: all 0.5s ease-out;
  135. }
  136. img.classGo,
  137. .pic.classGo {
  138. transition: all 1.2s ease-out;
  139. -webkit-transition: all 1.2s ease-out;
  140. -moz-transition: all 1.2s ease-out;
  141. -o-transition: all 1.2s ease-out;
  142. -ms-transition: all 1.2s ease-out;
  143. transform: scale(1.2);
  144. -webkit-transform: scale(1.2);
  145. -moz-transform: scale(1.2);
  146. -o-transform: scale(1.2);
  147. -ms-transform: scale(1.2);
  148. filter: blur(30px);
  149. visibility: visible!important;
  150. }
  151. img.classGo.go,
  152. .pic.classGo.go {
  153. opacity: 1;
  154. transform: none;
  155. -webkit-transform: none;
  156. -moz-transform: none;
  157. -o-transform: none;
  158. -ms-transform: none;
  159. filter: blur(0);
  160. }
  161. /*header*/
  162. .index-header {
  163. background: #ffffff;
  164. padding: 25px 40px;
  165. box-sizing: border-box;
  166. -webkit-border-radius: 20px;
  167. -moz-border-radius: 20px;
  168. border-radius: 20px;
  169. margin: 20px 50px 0 50px;
  170. max-height: 100px;
  171. transition: all 1s ease;
  172. position: absolute;
  173. z-index: 99;
  174. -webkit-box-shadow: 0px 0 90px rgba(19, 53, 80, .5);
  175. -moz-box-shadow: 0px 0 90px rgba(19, 53, 80, .5);
  176. box-shadow: 0px 0 90px rgba(19, 53, 80, .5);
  177. width: calc(100% - 100px);
  178. }
  179. .index- {
  180. width: 20%;
  181. }
  182. .index-nav {
  183. width: 70%;
  184. }
  185. .index-nav li {
  186. float: left;
  187. width: calc(100%/9);
  188. text-align: center;
  189. box-sizing: border-box;
  190. font-size: 17px;
  191. padding: 10px 5px 10px 0;
  192. }
  193. .index-nav li a {
  194. color: #141418;
  195. display: inline-block;
  196. position: relative;
  197. }
  198. .index-nav li a:after {
  199. position: absolute;
  200. content: "";
  201. bottom: -10px;
  202. width: 100%;
  203. height: 3px;
  204. left: 0;
  205. background: #3279e6;
  206. transform: scaleX(0);
  207. -webkit-transform: scaleX(0);
  208. transition: .42s;
  209. -webkit-transition: .42s;
  210. }
  211. .index-nav li a:hover:after,.active:after {
  212. transform: scaleX(1)!important;
  213. -webkit-transform: scaleX(1)!important;
  214. }
  215. .index-nav li.on a {
  216. color: #3279e6;
  217. }
  218. .index-nav li.on a:before {
  219. transform: scaleX(1);
  220. -webkit-transform: scaleX(1);
  221. }
  222. .index-nav li a:hover,.active {
  223. color: #3279e6!important;
  224. }
  225. .index-header-right {
  226. padding-top: 10px;
  227. }
  228. .index-header-right a {
  229. display: block;
  230. float: left;
  231. margin-left: 30px;
  232. color: #141418;
  233. }
  234. .index-header-right .sousuo img {
  235. display: inline-block;
  236. vertical-align: bottom;
  237. margin-right: 10px;
  238. }
  239. .index-header-right .erweima {
  240. background: url(../images/erweima-ico.jpg) no-repeat left center;
  241. width: 22px;
  242. height: 30px;
  243. position: relative;
  244. }
  245. .erweima-pic {
  246. position: absolute;
  247. top: 30px;
  248. left: -53px;
  249. z-index: 99;
  250. display: none;
  251. }
  252. .index-header-right .erweima:hover .erweima-pic {
  253. display: block;
  254. }
  255. .search-btn {
  256. background: url(../images/sousuo.png) no-repeat left center;
  257. text-indent: 30px;
  258. }
  259. .la-close {
  260. font-family: sans-serif;
  261. font-size: 35px;
  262. }
  263. .search_sec {
  264. position: fixed;
  265. top: 0;
  266. width: 100%;
  267. height: 100%;
  268. background-color: rgba(26, 32, 49, 0.95);
  269. z-index: 999999999999;
  270. opacity: 0;
  271. visibility: hidden;
  272. -webkit-transform: scale(0.9);
  273. -moz-transform: scale(0.9);
  274. -ms-transform: scale(0.9);
  275. -o-transform: scale(0.9);
  276. transform: scale(0.9);
  277. }
  278. .search_sec.active {
  279. opacity: 1;
  280. visibility: visible;
  281. -webkit-transform: scale(1);
  282. -moz-transform: scale(1);
  283. -ms-transform: scale(1);
  284. -o-transform: scale(1);
  285. transform: scale(1);
  286. }
  287. .search_sec.active .search_field {
  288. margin: 0;
  289. }
  290. .search_field {
  291. position: absolute;
  292. top: 50%;
  293. -webkit-transform: translateY(-50%);
  294. -moz-transform: translateY(-50%);
  295. -ms-transform: translateY(-50%);
  296. -o-transform: translateY(-50%);
  297. transform: translateY(-50%);
  298. width: 100%;
  299. margin-top: -50px;
  300. -webkit-transition: all 1s ease-in-out;
  301. -moz-transition: all 1s ease-in-out;
  302. -ms-transition: all 1s ease-in-out;
  303. -o-transition: all 1s ease-in-out;
  304. transition: all 1s ease-in-out;
  305. }
  306. .search_field .container {
  307. max-width: 800px;
  308. margin: 0 auto;
  309. }
  310. .search_field form {
  311. position: relative;
  312. }
  313. .search_field form input {
  314. width: 100%;
  315. height: 66px;
  316. background-color: #e5e5e5;
  317. color: #262626;
  318. font-size: 17px;
  319. padding: 0 30px;
  320. border: 0;
  321. box-sizing: border-box;
  322. border-radius: 5px;
  323. }
  324. .search_field form button {
  325. position: absolute;
  326. top: 19px;
  327. right: 24px;
  328. background-color: inherit;
  329. border: 0;
  330. }
  331. .close-search {
  332. position: absolute;
  333. top: 60px;
  334. right: 70px;
  335. color: #c6c7ca;
  336. font-size: 40px;
  337. }
  338. .close-search:hover {
  339. color: #c6c7ca;
  340. }
  341. /*banner*/
  342. .banner-position {
  343. position: relative;
  344. }
  345. .index-banner .swiper-wrapper img {
  346. display: block;
  347. width: 100%;
  348. height: 100%;
  349. }
  350. .banner-wave {
  351. width: 100vw;
  352. position: absolute;
  353. bottom: -15%;
  354. z-index: 2;
  355. }
  356. .banner-wave>div {
  357. background-color: var(--col-deepblue);
  358. margin: -5px 0px 0px 0px;
  359. padding: 0px;
  360. color: #fff;
  361. text-align: center;
  362. }
  363. svg {
  364. width: 100%;
  365. overflow: visible;
  366. }
  367. .wave {
  368. animation: wave 3s linear;
  369. animation-iteration-count: infinite;
  370. fill: #ffffff;
  371. }
  372. .drop {
  373. fill: var(--col-deepblue);
  374. xfill: #99000055;
  375. animation: drop 3.2s linear infinite normal;
  376. stroke: var(--col-deepblue);
  377. stroke-width: 0.5;
  378. transform: translateY(25px);
  379. transform-box: fill-box;
  380. transform-origin: 50% 100%;
  381. }
  382. .drop1 {}
  383. .drop2 {
  384. animation-delay: 3s;
  385. animation-duration: 3s;
  386. }
  387. .drop3 {
  388. animation-delay: -2s;
  389. animation-duration: 3.4s;
  390. }
  391. .drop4 {
  392. animation-delay: 1.7s;
  393. }
  394. .drop5 {
  395. animation-delay: 2.7s;
  396. animation-duration: 3.1s;
  397. }
  398. .drop6 {
  399. animation-delay: -2.1s;
  400. animation-duration: 3.2s;
  401. }
  402. .gooeff {
  403. filter: url(../js/.com/Uploads/js/201810/1540526411/css/#goo);
  404. }
  405. #wave2 {
  406. animation-duration: 5s;
  407. animation-direction: reverse;
  408. opacity: 1
  409. }
  410. #wave3 {
  411. animation-duration: 7s;
  412. opacity: .4;
  413. }
  414. @keyframes drop {
  415. 0% {
  416. transform: translateY(25px);
  417. }
  418. 30% {
  419. transform: translateY(-10px) scale(.1);
  420. }
  421. 30.001% {
  422. transform: translateY(25px) scale(1);
  423. }
  424. 70% {
  425. transform: translateY(25px);
  426. }
  427. 100% {
  428. transform: translateY(-10px) scale(.1);
  429. }
  430. }
  431. @keyframes wave {
  432. to {
  433. transform: translateX(-100%);
  434. }
  435. }
  436. @keyframes ball {
  437. to {
  438. transform: translateY(20%);
  439. }
  440. }
  441. /*about*/
  442. .index-con {
  443. padding: 0 100px;
  444. box-sizing: border-box;
  445. width: 100%;
  446. }
  447. .index-about {
  448. position: relative;
  449. z-index: 9;
  450. position: relative;
  451. margin-top: 40px;
  452. }
  453. .index-about .index-about-text {
  454. width: 50%;
  455. }
  456. .index-about-text p {
  457. color: #666666;
  458. line-height: 33px;
  459. }
  460. .index-title h3 {
  461. font-size: 52px;
  462. font-family: 'DIN';
  463. padding: 10px 0;
  464. text-transform: uppercase;
  465. font-weight: bold;
  466. color: #2575f2;
  467. /* Firefox 3.6+ */
  468. background-image: -moz-linear-gradient(left, #2575f2, #6519c5);
  469. /* Safari 5.1+, Chrome 10+ */
  470. background-image: -webkit-linear-gradient(left, #2575f2, #6519c5);
  471. /* Opera 11.10+ */
  472. background-image: -o-linear-gradient(left, #2575f2, #6519c5);
  473. -webkit-background-clip: text;
  474. -webkit-text-fill-color: transparent;
  475. }
  476. .index-title h2 {
  477. color: #FFFFFF;
  478. text-shadow: 0px 5px 15px #b8c2fd;
  479. font-size: 122px;
  480. letter-spacing: -2px;
  481. font-family: 'DIN';
  482. text-transform: uppercase;
  483. font-weight: bold;
  484. padding: 60px 0;
  485. }
  486. .index-title span {
  487. display: block;
  488. width: 30px;
  489. height: 4px;
  490. background: #3b83ff;
  491. margin: 30px 0 40px;
  492. }
  493. .index-more a {
  494. display: block;
  495. position: relative;
  496. text-transform: uppercase;
  497. font-family: arial;
  498. width: 210px;
  499. font-size: 16px;
  500. height: 55px;
  501. line-height: 55px;
  502. background: #2d6dee;
  503. text-align: center;
  504. color: #ffffff;
  505. border-radius: 25px;
  506. /* Firefox 3.6+ */
  507. background-image: -moz-linear-gradient(left, #5862ef, #2c6dee);
  508. /* Safari 5.1+, Chrome 10+ */
  509. background-image: -webkit-linear-gradient(left, #5862ef, #2c6dee);
  510. /* Opera 11.10+ */
  511. background-image: -o-linear-gradient(left, #5862ef, #2c6dee);
  512. margin: 80px 0 20px;
  513. }
  514. .wave_box1 {
  515. position: absolute;
  516. bottom: -40vh;
  517. left: 0;
  518. opacity: .4;
  519. z-index: -1;
  520. }
  521. .index-about-pic {
  522. width: 47%;
  523. box-shadow: 0 22px 60px -5px rgba(44, 115, 240, 0.6);
  524. overflow: hidden;
  525. border-radius: 30px;
  526. }
  527. .index-about-pic a {
  528. display: block;
  529. width: 100%;
  530. margin: 0 auto;
  531. overflow: hidden;
  532. }
  533. .index-about-pic img {
  534. display: block;
  535. text-align: right;
  536. width: 100%;
  537. height: 100%;
  538. }
  539. /*业务*/
  540. .index-yewu {
  541. position: relative;
  542. z-index: 10;
  543. margin-top: 7em;
  544. }
  545. .index-yewu-info {
  546. margin-top: 2em;
  547. }
  548. .index-yewu-pic {
  549. width: 45%;
  550. box-shadow: 10px 30px 48px 5px rgba(44, 115, 240, 0.5);
  551. overflow: hidden;
  552. border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  553. }
  554. .index-yewu-pic img {
  555. display: block;
  556. text-align: right;
  557. width: 100%;
  558. height: 100%;
  559. }
  560. .index-yewu-list {
  561. width: 52%;
  562. }
  563. .index-yewu-list li {
  564. position: relative;
  565. float: left;
  566. width: 31%;
  567. margin-left: 2.3%;
  568. margin-top: 1.5em;
  569. background: #ffffff;
  570. padding: 30px;
  571. box-sizing: border-box;
  572. }
  573. .index-yewu-list li em {
  574. display: block;
  575. margin-bottom: 10px;
  576. height: 37px;
  577. }
  578. .index-yewu-list li .text h2 {
  579. color: #3b83ff;
  580. font-size: 20px;
  581. margin-bottom: 10px;
  582. }
  583. .index-yewu-list li .text span {
  584. color: #666666;
  585. font-size: 12px;
  586. font-family: arial;
  587. text-transform: uppercase;
  588. }
  589. .index-yewu-list li .text p {
  590. color: #666666;
  591. font-size: 13px;
  592. margin-top: 20px;
  593. height: 90px;
  594. overflow: hidden;
  595. }
  596. .index-yewu-list li a {
  597. display: block;
  598. }
  599. .index-yewu-list li:hover {
  600. box-sizing: border-box;
  601. box-shadow: 0 0 10px #84b1ff;
  602. -webkit-box-shadow: 1px 1px 10px rgba(132, 177, 255, 0.5);
  603. box-shadow: 1px 1px 10px rgba(132, 177, 255, 0.5)
  604. }
  605. .bz-buttonAnimat:before,
  606. .bz-buttonAnimat:after,
  607. .bz-buttonAnimat .inner:before,
  608. .bz-buttonAnimat .inner:after {
  609. background-color: #c1d8ff
  610. }
  611. .bz-buttonAnimat:before,
  612. .bz-buttonAnimat:after,
  613. .bz-buttonAnimat .inner:before,
  614. .bz-buttonAnimat .inner:after {
  615. position: absolute;
  616. content: "";
  617. display: block;
  618. -webkit-transition: -webkit-transform .3s;
  619. transition: -webkit-transform .3s;
  620. transition: transform .3s;
  621. transition: transform .3s, -webkit-transform .3s
  622. }
  623. .bz-buttonAnimat.horizontal:before,
  624. .bz-buttonAnimat.horizontal:after,
  625. .bz-buttonAnimat.both:before,
  626. .bz-buttonAnimat.both:after {
  627. left: 0;
  628. width: 100%;
  629. height: 3px;
  630. -webkit-transform: scaleX(0);
  631. transform: scaleX(0)
  632. }
  633. .bz-buttonAnimat.horizontal .inner:before,
  634. .bz-buttonAnimat.horizontal .inner:after,
  635. .bz-buttonAnimat.both .inner:before,
  636. .bz-buttonAnimat.both .inner:after {
  637. top: 0;
  638. width: 3px;
  639. height: 100%;
  640. -webkit-transform: scaleY(0);
  641. transform: scaleY(0)
  642. }
  643. .bz-buttonAnimat.horizontal .inner:before,
  644. .bz-buttonAnimat.both .inner:before {
  645. left: 0
  646. }
  647. .bz-buttonAnimat.horizontal .inner:after,
  648. .bz-buttonAnimat.both .inner:after {
  649. right: 0
  650. }
  651. .bz-buttonAnimat.horizontal .inner:hover:before,
  652. .bz-buttonAnimat.horizontal .inner:hover:after,
  653. .bz-buttonAnimat.both .inner:hover:before,
  654. .bz-buttonAnimat.both .inner:hover:after {
  655. -webkit-transform: scaleY(1);
  656. transform: scaleY(1)
  657. }
  658. .bz-buttonAnimat.horizontal:before,
  659. .bz-buttonAnimat.both:before {
  660. top: 0
  661. }
  662. .bz-buttonAnimat.horizontal:after,
  663. .bz-buttonAnimat.both:after {
  664. bottom: 0
  665. }
  666. .bz-buttonAnimat.horizontal:hover:before,
  667. .bz-buttonAnimat.horizontal:hover:after,
  668. .bz-buttonAnimat.both:hover:before,
  669. .bz-buttonAnimat.both:hover:after {
  670. -webkit-transform: scaleX(1);
  671. transform: scaleX(1)
  672. }
  673. .bz-buttonAnimat.horizontal:hover .inner:before,
  674. .bz-buttonAnimat.horizontal:hover .inner:after,
  675. .bz-buttonAnimat.both:hover .inner:before,
  676. .bz-buttonAnimat.both:hover .inner:after {
  677. -webkit-transform: scaleY(1);
  678. transform: scaleY(1)
  679. }
  680. .bz-buttonAnimat.horizontal.clockwise .inner:before,
  681. .bz-buttonAnimat.both.clockwise .inner:before {
  682. -webkit-transform-origin: top center;
  683. transform-origin: top center
  684. }
  685. .bz-buttonAnimat.horizontal.clockwise .inner:after,
  686. .bz-buttonAnimat.both.clockwise .inner:after {
  687. -webkit-transform-origin: bottom center;
  688. transform-origin: bottom center
  689. }
  690. .bz-buttonAnimat.horizontal.clockwise:before,
  691. .bz-buttonAnimat.both.clockwise:before {
  692. -webkit-transform-origin: right center;
  693. transform-origin: right center
  694. }
  695. .bz-buttonAnimat.horizontal.clockwise:after,
  696. .bz-buttonAnimat.both.clockwise:after {
  697. -webkit-transform-origin: left center;
  698. transform-origin: left center
  699. }
  700. .bz-buttonAnimat.horizontal.clockwise:hover .inner:before,
  701. .bz-buttonAnimat.both.clockwise:hover .inner:before {
  702. -webkit-transform-origin: bottom center;
  703. transform-origin: bottom center
  704. }
  705. .bz-buttonAnimat.horizontal.clockwise:hover .inner:after,
  706. .bz-buttonAnimat.both.clockwise:hover .inner:after {
  707. -webkit-transform-origin: top center;
  708. transform-origin: top center
  709. }
  710. .bz-buttonAnimat.horizontal.clockwise:hover:before,
  711. .bz-buttonAnimat.both.clockwise:hover:before {
  712. -webkit-transform-origin: left center;
  713. transform-origin: left center
  714. }
  715. .button {
  716. position: absolute;
  717. cursor: pointer;
  718. width: 100%;
  719. height: 100%;
  720. left: 0;
  721. top: 0;
  722. }
  723. /*产品*/
  724. .index-product {
  725. margin-top: 10em;
  726. }
  727. .index-product-list {
  728. margin-top: 4em;
  729. }
  730. .index-product-list li {
  731. float: left;
  732. width: 32%;
  733. margin-left: 2%;
  734. position: relative;
  735. }
  736. .index-product-list li em {
  737. display: block;
  738. width: 100%;
  739. height: 100%;
  740. overflow: hidden;
  741. }
  742. .index-product-list li em img {
  743. display: block;
  744. width: 100%;
  745. height: 100%;
  746. }
  747. .index-product-list li .text {
  748. position: absolute;
  749. bottom: 0;
  750. width: 100%;
  751. color: #ffffff;
  752. z-index: 3;
  753. padding: 35px;
  754. box-sizing: border-box;
  755. }
  756. .index-product-list li .text h2 {
  757. font-size: 26px;
  758. margin-bottom: 10px;
  759. }
  760. .index-product-list li .text p {
  761. font-size: 14px;
  762. margin-bottom: 10px;
  763. font-family: arial;
  764. margin-bottom: 20px;
  765. }
  766. .index-product-list li .text span {
  767. display: block;
  768. margin-bottom: 20px;
  769. }
  770. .index-product-list li:after {
  771. position: absolute;
  772. content: "";
  773. left: 0;
  774. top: 0;
  775. width: 100%;
  776. height: 100%;
  777. background-color: rgba(0, 0, 0, .3);
  778. }
  779. .index-product-list li:first-of-type {
  780. margin-left: 0;
  781. }
  782. .index-product-list li:hover em img {
  783. -webkit-transform: scale(1.1);
  784. -moz-transform: scale(1.1);
  785. -ms-transform: scale(1.1);
  786. transform: scale(1.1);
  787. }
  788. .index-product-list li em img {
  789. -webkit-transition: all .4s ease;
  790. -moz-transition: all .4s ease;
  791. -ms-transition: all .4s ease;
  792. transition: all .4s ease;
  793. }
  794. /*news*/
  795. .index-news {
  796. margin-top: 6em;
  797. }
  798. .index-news-list {
  799. width: 100%;
  800. margin-top: 5em;
  801. }
  802. .index-news-list li {
  803. width: 23.5%;
  804. float: left;
  805. margin-left: 2%;
  806. background: #ffffff;
  807. box-shadow: 0 0 5px #888;
  808. -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  809. box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2)
  810. }
  811. .index-news-list li:nth-child(4n+1) {
  812. margin-left: 0;
  813. }
  814. .index-news-list li em {
  815. display: block;
  816. height: 250px;
  817. overflow: hidden;
  818. }
  819. .index-news-list li em img {
  820. display: block;
  821. width: 100%;
  822. height: 100%;
  823. overflow: hidden;
  824. }
  825. .index-news-list li .text {
  826. padding: 35px;
  827. box-sizing: border-box;
  828. }
  829. .index-news-list li .text span {
  830. display: block;
  831. height: 2px;
  832. width: 30px;
  833. background: #d8d8d8;
  834. margin: 10px 0 20px;
  835. }
  836. .index-news-list li .text p {
  837. line-height: 30px;
  838. color: #333333;
  839. height: 90px;
  840. margin-bottom: 20px;
  841. font-size: 18px;
  842. overflow: hidden;
  843. }
  844. .index-news-list li .text i {
  845. color: #888888;
  846. font-family: arial;
  847. font-size: 14px;
  848. margin-top: 10px;
  849. }
  850. .index-news-list li a {
  851. display: block;
  852. width: 100%;
  853. height: 100%;
  854. }
  855. .index-news-list li a:hover .text p {
  856. color: #2575f2;
  857. }
  858. .index-news-list li a:hover img {
  859. -webkit-transform: scale(1.1);
  860. -moz-transform: scale(1.1);
  861. -ms-transform: scale(1.1);
  862. transform: scale(1.1);
  863. }
  864. .index-news-list li a img {
  865. -webkit-transition: all .4s ease;
  866. -moz-transition: all .4s ease;
  867. -ms-transition: all .4s ease;
  868. transition: all .4s ease;
  869. }
  870. .index-footer {
  871. background: url(../images/f-bg.jpg) no-repeat center top #2a2e34;
  872. padding: 60px 0 0;
  873. box-sizing: border-box;
  874. margin-top: 6em;
  875. }
  876. .index-footer-info {
  877. margin-bottom: 50px;
  878. padding: 0 100px;
  879. box-sizing: border-box;
  880. }
  881. .index-footer-info . {
  882. width: 25%;
  883. margin-right: 2%;
  884. }
  885. .index-footer-info .lianxi {
  886. width: 35%;
  887. margin-right: 3%;
  888. }
  889. .index-footer-info .lianxi h2 {
  890. color: #cdcdcd;
  891. font-size: 18px;
  892. font-weight: bold;
  893. margin-bottom: 10px;
  894. }
  895. .index-footer-info .lianxi p {
  896. color: #cdcdcd;
  897. }
  898. .index-footer-info .phone {
  899. color: #ecf0f4;
  900. font-size: 34px;
  901. font-family: "DIN";
  902. width: 20%;
  903. margin-right: 3%;
  904. font-weight: bold;
  905. background: url(../images/phone.png) no-repeat center left;
  906. text-indent: 35px;
  907. }
  908. .index-footer-info .erweima {
  909. width: 100px;
  910. height: 100px;
  911. }
  912. .index-footer-info .erweima img {
  913. width: 100px;
  914. height: 100px;
  915. overflow: hidden;
  916. display: block;
  917. margin: 0 auto;
  918. }
  919. .index-footer-info .erweima p {
  920. text-align: center;
  921. color: #cdcdcd;
  922. }
  923. .index-footer-bottom {
  924. background: #000000;
  925. color: #ffffff;
  926. padding: 15px 0;
  927. }
  928. .index-footer-bottom a {
  929. color: #ffffff;
  930. }
  931. .position-yuan {
  932. position: relative;
  933. z-index: -1;
  934. width: 100%;
  935. height: 100%;
  936. }
  937. .position-yuan .bg {
  938. background: url(../images/yuan.png) no-repeat right center;
  939. z-index: 4;
  940. height: 731px;
  941. width: 731px;
  942. position: absolute;
  943. top: -120px;
  944. right: 0;
  945. background-repeat: no-repeat;
  946. background-color: transparent;
  947. }
  948. /*子页面*/
  949. #wrap {
  950. opacity: 0;
  951. -webkit-animation-name: fadeIn;
  952. animation-name: fadeIn;
  953. -webkit-animation-duration: 1s;
  954. animation-duration: 1s;
  955. -webkit-animation-fill-mode: both;
  956. animation-fill-mode: both;
  957. }
  958. .page-banner {
  959. width: 100%;
  960. animation-duration: 2s;
  961. position: relative;
  962. z-index: 1;
  963. opacity: 0;
  964. }
  965. #top {
  966. position: relative;
  967. }
  968. .msg {
  969. position: absolute;
  970. bottom: 0;
  971. left: 0;
  972. right: 0;
  973. z-index: 10;
  974. top: -50px;
  975. width: 84%;
  976. margin: auto;
  977. height: calc(100% - 360px);
  978. display: flex;
  979. flex-direction: column;
  980. align-items: center;
  981. justify-content: center;
  982. }
  983. .msg h1 {
  984. letter-spacing: 36px;
  985. text-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  986. font-size: 68px;
  987. color: #ffffff;
  988. }
  989. .msg #down-more {
  990. position: absolute;
  991. bottom: 10px;
  992. left: 50%;
  993. transform: translateX(-50%);
  994. text-align: center;
  995. pointer-events: auto;
  996. z-index: 3;
  997. cursor: pointer;
  998. }
  999. .msg #down-more>i {
  1000. display: inline-block;
  1001. animation: rise .6s linear infinite alternate;
  1002. }
  1003. .msg #down-more>a {
  1004. color: #ffffff;
  1005. }
  1006. @keyframes rise {
  1007. 0% {
  1008. transform: translate(0);
  1009. }
  1010. 100% {
  1011. transform: translateY(10px);
  1012. }
  1013. }
  1014. .sub-menu {
  1015. border-bottom: 1px solid #ececec;
  1016. text-align: center;
  1017. border-bottom: 1PX solid #D8D8D8;
  1018. }
  1019. .sub-menu li {
  1020. display: inline-block;
  1021. line-height: 110px;
  1022. }
  1023. .sub-menu .link {
  1024. display: block;
  1025. color: #414141;
  1026. margin: 0 20PX;
  1027. padding: 0 5PX 0;
  1028. position: relative;
  1029. }
  1030. .sub-menu .link:before {
  1031. content: "";
  1032. display: block;
  1033. position: absolute;
  1034. left: 0;
  1035. bottom: -1px;
  1036. height: 2px;
  1037. width: 100%;
  1038. background-color: #4a8dff;
  1039. transform: scaleX(0);
  1040. -webkit-transform: scaleX(0);
  1041. transition: .42s;
  1042. -webkit-transition: .42s;
  1043. }
  1044. .sub-menu .link:hover {
  1045. color: #4a8dff;
  1046. }
  1047. .sub-menu .link:hover:before {
  1048. transform: scaleX(1);
  1049. -webkit-transform: scaleX(1);
  1050. }
  1051. .sub-menu .link.on {
  1052. color: #4a8dff;
  1053. }
  1054. .sub-menu .link.on:before {
  1055. transform: scaleX(1);
  1056. -webkit-transform: scaleX(1);
  1057. }
  1058. .sub-menu-left {
  1059. float: left;
  1060. display: block;
  1061. line-height: 110px;
  1062. }
  1063. .sub-menu-left a {
  1064. margin: 0 16px;
  1065. font-size: 16px;
  1066. color: #212121;
  1067. text-transform: uppercase;
  1068. font-family: Arial, Helvetica, sans-serif;
  1069. }
  1070. .sub-menu-left a:last-child {
  1071. font-family: "Microsoft YaHei";
  1072. }
  1073. .sub-menu-left em img {
  1074. display: inline-block;
  1075. vertical-align: middle;
  1076. }
  1077. .page-menu {
  1078. text-align: center;
  1079. padding: 50px 0;
  1080. }
  1081. .page-menu li {
  1082. display: inline-block;
  1083. margin: 0 20px;
  1084. height: 48px;
  1085. line-height: 48px;
  1086. width: 180px;
  1087. border: 1px solid #d8d8d8;
  1088. border-radius: 5px;
  1089. transition: all 0.42s;
  1090. }
  1091. .page-menu li.active {
  1092. background: #77bcaf;
  1093. border: 1px solid #77bcaf;
  1094. }
  1095. .page-menu li.active a {
  1096. color: #ffffff;
  1097. }
  1098. .page-menu li:hover {
  1099. background: #77bcaf;
  1100. border: 1px solid #77bcaf;
  1101. }
  1102. .page-menu li:hover a {
  1103. color: #ffffff;
  1104. }
  1105. .page-main .index-news-list {
  1106. margin-top: 4em;
  1107. }
  1108. .page-main .index-news-list li {
  1109. margin-bottom: 3em;
  1110. }
  1111. .page-but {
  1112. height: 60px;
  1113. line-height: 60px;
  1114. background: #f5f5f5;
  1115. text-align: center;
  1116. margin: 40px auto;
  1117. }
  1118. .page-but a {
  1119. color: #666666;
  1120. font-size: 16px;
  1121. display: block;
  1122. }
  1123. .page-but a:hover {
  1124. background: #2d2d2d;
  1125. color: #ffffff;
  1126. }
  1127. /*案例*/
  1128. .page-case-info {
  1129. margin-top: 0;
  1130. }
  1131. .page-case-info li {
  1132. float: left;
  1133. width: 100%;
  1134. margin-top: 4em;
  1135. }
  1136. .page-case-info li .img {
  1137. width: 40%;
  1138. height: 350px;
  1139. display: block;
  1140. overflow: hidden;
  1141. }
  1142. .page-case-info li .img img {
  1143. display: block;
  1144. width: 100%;
  1145. height: 100%;
  1146. }
  1147. .page-case-info-text h2 {
  1148. color: #141418;
  1149. font-size: 22px;
  1150. margin-bottom: 10px;
  1151. }
  1152. .page-case-info-text span {
  1153. color: #141418;
  1154. font-size: 16px;
  1155. margin-bottom: 10px;
  1156. }
  1157. .page-case-info-text p {
  1158. line-height: 30px;
  1159. color: #666666;
  1160. height: 90px;
  1161. overflow: hidden;
  1162. }
  1163. .page-case-info-text i {
  1164. display: inline-block;
  1165. width: 5px;
  1166. height: 5px;
  1167. background: #d9d9d9;
  1168. border-radius: 50%;
  1169. margin: 0 5px 0 0;
  1170. }
  1171. .page-case-info-text {
  1172. transform: scaleY(1);
  1173. padding: 20px;
  1174. box-sizing: border-box;
  1175. width: 55%;
  1176. margin-left: 3%;
  1177. }
  1178. .page-case-info li a {
  1179. display: block;
  1180. }
  1181. .page-case-info li a:hover .page-case-info-text h2 {
  1182. color: #4a8dff;
  1183. }
  1184. .page-case-info li a:hover img {
  1185. -webkit-transform: scale(1.1);
  1186. -moz-transform: scale(1.1);
  1187. -ms-transform: scale(1.1);
  1188. transform: scale(1.1);
  1189. }
  1190. .page-case-info li a img {
  1191. -webkit-transition: all .4s ease;
  1192. -moz-transition: all .4s ease;
  1193. -ms-transition: all .4s ease;
  1194. transition: all .4s ease;
  1195. }
  1196. .page-main-display {
  1197. padding: 0 3.125%;
  1198. box-sizing: border-box;
  1199. }
  1200. .worksWord {
  1201. padding: 60px 0;
  1202. }
  1203. .worksWord .tit {
  1204. line-height: 1.5;
  1205. font-size: 30px;
  1206. color: #080808;
  1207. font-weight: normal;
  1208. padding: 10px 0 20px;
  1209. border-bottom: 1px solid #ececec;
  1210. }
  1211. .worksWord .con {
  1212. padding-top: 50px;
  1213. text-align: justify;
  1214. }
  1215. .backToList {
  1216. padding: 40px 0;
  1217. }
  1218. .backToList .con {
  1219. position: relative;
  1220. }
  1221. .backToList .link {
  1222. display: block;
  1223. color: #333;
  1224. padding-right: 190px;
  1225. margin-bottom: 10px;
  1226. text-align: justify;
  1227. line-height: 1.4;
  1228. }
  1229. .backToList .link:hover {
  1230. color: #004ea2;
  1231. }
  1232. .backToList .back {
  1233. display: block;
  1234. position: absolute;
  1235. right: 0px;
  1236. top: 0px;
  1237. width: 170px;
  1238. height: 50px;
  1239. background-color: #000000;
  1240. text-align: center;
  1241. line-height: 50px;
  1242. color: #fff;
  1243. }
  1244. .backToList .back:before {
  1245. content: "";
  1246. display: inline-block;
  1247. width: 30px;
  1248. height: 14px;
  1249. vertical-align: middle;
  1250. background: url(../images/aw2.png) no-repeat center center;
  1251. margin-right: 15px;
  1252. position: relative;
  1253. transition: .56s;
  1254. -webkit-transition: .56s;
  1255. left: 0;
  1256. }
  1257. .backToList .back:hover {
  1258. background-color: #333333;
  1259. }
  1260. .backToList .back:hover:before {
  1261. left: 8px;
  1262. }
  1263. /*人才招聘*/
  1264. .rc_box {
  1265. clear: both;
  1266. height: auto;
  1267. overflow: hidden;
  1268. background: #ffffff;
  1269. padding: 115px 0 50px 0;
  1270. }
  1271. .rcln_t {
  1272. height: auto;
  1273. overflow: hidden;
  1274. margin-bottom: 100px;
  1275. }
  1276. .rcln_t img {
  1277. display: block;
  1278. max-width: 100%;
  1279. border: 4px solid #666666;
  1280. margin: 0 auto;
  1281. }
  1282. .rcln_b {
  1283. height: auto;
  1284. overflow: hidden;
  1285. }
  1286. .rcln_b p {
  1287. line-height: 26px;
  1288. color: #666666;
  1289. font-size: 16px;
  1290. line-height: 38px;
  1291. text-align: left;
  1292. text-indent: 2em;
  1293. }
  1294. .rcln_b p em {
  1295. color: #000000;
  1296. font-size: 16px;
  1297. font-weight: bold;
  1298. }
  1299. @media(max-width:1024px) {
  1300. .rc_box {
  1301. clear: both;
  1302. height: auto;
  1303. overflow: hidden;
  1304. background: #ffffff;
  1305. padding: 50px 0 50px 0;
  1306. }
  1307. .rcln_t {
  1308. height: auto;
  1309. overflow: hidden;
  1310. margin-bottom: 30px;
  1311. }
  1312. }
  1313. .rc_box1 {
  1314. clear: both;
  1315. height: auto;
  1316. overflow: hidden;
  1317. background: url(../images/bg22.png) no-repeat center center fixed;
  1318. -webkit-background-size: cover;
  1319. -moz-background-size: cover;
  1320. -o-background-size: cover;
  1321. background-size: cover;
  1322. padding: 176px 0 250px 0;
  1323. }
  1324. .zpgw_t {
  1325. height: auto;
  1326. overflow: hidden;
  1327. margin-bottom: 50px;
  1328. }
  1329. .zpgw_t img {
  1330. display: block;
  1331. max-width: 100%;
  1332. border: 4px solid #fff;
  1333. margin: 0 auto;
  1334. }
  1335. .zpgw_b {
  1336. height: auto;
  1337. overflow: hidden;
  1338. }
  1339. .menuTitle3 {
  1340. cursor: pointer;
  1341. width: 100%;
  1342. height: 60px;
  1343. background: url(../images/bg10.png) no-repeat 98% center #fff;
  1344. border-bottom: 1px solid #cccccc;
  1345. color: #666666;
  1346. font-family: "Microsoft YaHei";
  1347. font-size: 14px;
  1348. padding: 0 67px 0 39px;
  1349. box-sizing: border-box;
  1350. line-height: 60px;
  1351. }
  1352. .menuTitle3 span {
  1353. float: left;
  1354. display: block;
  1355. width: 80%;
  1356. overflow: hidden;
  1357. white-space: nowrap;
  1358. text-overflow: ellipsis;
  1359. font-size: 14px;
  1360. color: #666;
  1361. }
  1362. .menuTitle3 em {
  1363. float: right;
  1364. color: #666666;
  1365. font-size: 14px;
  1366. }
  1367. .activeTitle3 {
  1368. cursor: pointer;
  1369. width: 100%;
  1370. height: 60px;
  1371. background: url(../images/bg11.png) no-repeat 98% center #333333;
  1372. border-bottom: none;
  1373. color: #666666;
  1374. font-family: "Microsoft YaHei";
  1375. font-size: 14px;
  1376. padding: 0 67px 0 39px;
  1377. box-sizing: border-box;
  1378. line-height: 60px;
  1379. }
  1380. .activeTitle3 span {
  1381. float: left;
  1382. display: block;
  1383. width: 80%;
  1384. overflow: hidden;
  1385. white-space: nowrap;
  1386. text-overflow: ellipsis;
  1387. font-size: 14px;
  1388. color: #fff;
  1389. }
  1390. .activeTitle3 em {
  1391. float: right;
  1392. color: #fff;
  1393. font-size: 14px;
  1394. }
  1395. .menuContent3 {
  1396. width: 100%;
  1397. height: auto;
  1398. overflow: hidden;
  1399. display: none;
  1400. padding: 35px 40px;
  1401. box-sizing: border-box;
  1402. background: #fff;
  1403. border-bottom: 1px solid #cccccc;
  1404. }
  1405. .cwzj_t {
  1406. height: auto;
  1407. overflow: hidden;
  1408. border-bottom: 1px solid #cccccc;
  1409. padding-bottom: 20px;
  1410. margin-bottom: 20px;
  1411. }
  1412. .cwzj_t li {
  1413. float: left;
  1414. width: 25%;
  1415. color: #666666;
  1416. line-height: 26px;
  1417. font-size: 14px;
  1418. }
  1419. .cwzj_t li em {
  1420. color: #888888;
  1421. font-size: 14px;
  1422. margin-left: 15px;
  1423. }
  1424. .cwzj_b {
  1425. height: auto;
  1426. overflow: hidden;
  1427. }
  1428. .cwzj_b h1 {
  1429. color: #666666;
  1430. line-height: 26px;
  1431. font-size: 16px;
  1432. font-weight: bold;
  1433. margin-bottom: 8px;
  1434. }
  1435. .cwzj_b p {
  1436. line-height: 26px;
  1437. color: #888888;
  1438. font-size: 14px;
  1439. }
  1440. @media(max-width:1024px) {
  1441. .rc_box1 {
  1442. clear: both;
  1443. height: auto;
  1444. overflow: hidden;
  1445. background: url(../images/bg22.png) no-repeat center center fixed;
  1446. -webkit-background-size: cover;
  1447. -moz-background-size: cover;
  1448. -o-background-size: cover;
  1449. background-size: cover;
  1450. padding: 60px 0 60px 0;
  1451. }
  1452. }
  1453. /*人才招聘end*/
  1454. /*联系我们*/
  1455. .N_contact_son_text_L p {
  1456. line-height: 50px;
  1457. font-size: 16px;
  1458. }
  1459. .N_contact_son_text_L strong {
  1460. color: #333333;
  1461. font-weight: bold;
  1462. margin-right: 10px;
  1463. }
  1464. .N_contact_son_text_L {
  1465. width: 45%;
  1466. }
  1467. .N_contact_son_text img {
  1468. margin-top: 50px;
  1469. }
  1470. .N_contact_son_text {
  1471. padding-top: 20px;
  1472. }
  1473. .rc_box2 {
  1474. clear: both;
  1475. height: auto;
  1476. overflow: hidden;
  1477. background: url(../images/500885720.jpg) no-repeat center center fixed;
  1478. -webkit-background-size: cover;
  1479. -moz-background-size: cover;
  1480. -o-background-size: cover;
  1481. background-size: cover;
  1482. padding: 176px 0 150px 0;
  1483. }
  1484. .rc_box .code {
  1485. width: 254px;
  1486. height: 350px;
  1487. border: 3px solid #e5e5e5;
  1488. border-radius: 10px;
  1489. margin-left: 80px;
  1490. padding-top: 43px;
  1491. text-align: center;
  1492. }
  1493. .inContact .cqq {
  1494. margin-right: 0;
  1495. }
  1496. .rc_box .code a {
  1497. display: block;
  1498. width: 191px;
  1499. height: 200px;
  1500. margin: 0 auto;
  1501. background: url(../images/cobj.jpg) no-repeat;
  1502. text-align: center;
  1503. padding-top: 28px;
  1504. }
  1505. .rc_box .code a img {
  1506. box-shadow: 0 0 10px #d8d8d8;
  1507. display: block;
  1508. margin: 0 auto;
  1509. }
  1510. .rc_box .code span {
  1511. display: block;
  1512. padding-top: 65px;
  1513. font-size: 18px;
  1514. }
  1515. .rc_box .cwx span {
  1516. background: url(../images/cwx.jpg) no-repeat center top;
  1517. }
  1518. .rc_box .cwb span {
  1519. background: url(../images/cwb.jpg) no-repeat center top;
  1520. }
  1521. .liuyan {
  1522. width: 100%;
  1523. overflow: hidden;
  1524. padding: 60px 0 40px;
  1525. }
  1526. .liuyan ul {
  1527. background: #fff;
  1528. overflow: hidden;
  1529. padding: 60px 60px 0;
  1530. }
  1531. .liuyan li {
  1532. width: 363px;
  1533. float: left;
  1534. margin: 0 0 40px 22px;
  1535. overflow: hidden;
  1536. border: 1px #eee solid;
  1537. border-radius: 4px;
  1538. line-height: 48px;
  1539. }
  1540. .liuyan li input.text {
  1541. width: 350px;
  1542. padding-left: 10px;
  1543. height: 48px;
  1544. border: none;
  1545. font-size: 16px;
  1546. color: #888;
  1547. }
  1548. .liuyan li:first-child {
  1549. margin-left: 0;
  1550. }
  1551. .liuyan li.on_11 {
  1552. margin-left: 0;
  1553. height: 210px;
  1554. overflow-x: hidden;
  1555. width: 100%;
  1556. }
  1557. .liuyan li.on_11 textarea {
  1558. width: 100%;
  1559. padding: 10px;
  1560. font-size: 16px;
  1561. border: none;
  1562. height: 190px;
  1563. color: #888;
  1564. }
  1565. .liuyan li.on_22 {
  1566. margin-left: 0;
  1567. width: 100%;
  1568. overflow: hidden;
  1569. border: none;
  1570. }
  1571. .liuyan li.on_22 input.sub {
  1572. width: 100%;
  1573. height: 50px;
  1574. line-height: 50px;
  1575. background: #666666;
  1576. border: none;
  1577. color: #fff;
  1578. font-size: 20px;
  1579. cursor: pointer;
  1580. transition: 300ms;
  1581. }
  1582. .liuyan li.on_22 input.sub:hover {
  1583. background: #222;
  1584. }
  1585. /*关于我们*/
  1586. .about {
  1587. width: 100%;
  1588. background: #fff;
  1589. padding: 50px 0;
  1590. overflow: hidden;
  1591. }
  1592. .about h1 {
  1593. font-size: 40px;
  1594. line-height: 60px;
  1595. overflow: hidden;
  1596. text-align: center;
  1597. font-family: '黑体';
  1598. }
  1599. .about h2 {
  1600. font-size: 18px;
  1601. color: #999;
  1602. margin: 10px 0 20px;
  1603. text-align: center;
  1604. }
  1605. .about strong {
  1606. display: block;
  1607. overflow: hidden;
  1608. margin-bottom: 30px;
  1609. }
  1610. .about strong i {
  1611. display: block;
  1612. width: 50px;
  1613. height: 1px;
  1614. background: #bbb;
  1615. margin: 0 auto;
  1616. }
  1617. .about figure {
  1618. width: 100%;
  1619. overflow: hidden;
  1620. }
  1621. .about figure p {
  1622. line-height: 34px;
  1623. color: #777;
  1624. }
  1625. .origin {
  1626. width: 100%;
  1627. overflow: hidden;
  1628. position: relative;
  1629. }
  1630. .origin-box {
  1631. width: 100%;
  1632. height: 420px;
  1633. background-image: url(../images/xg_bg1.png);
  1634. background-repeat: no-repeat;
  1635. background-attachment: fixed;
  1636. background-size: cover;
  1637. }
  1638. .origin-content {
  1639. width: 1200px;
  1640. margin: 0 auto;
  1641. overflow: hidden;
  1642. }
  1643. .origin-matter {
  1644. overflow: hidden;
  1645. margin-top: 118px;
  1646. }
  1647. .Guarantee_time {
  1648. margin: 60px auto;
  1649. }
  1650. .Guarantee_time li {
  1651. text-align: center;
  1652. margin: 0 auto;
  1653. float: left;
  1654. width: 25%;
  1655. }
  1656. .Guarantee_time li strong {
  1657. color: #FFFFFF;
  1658. font-size: 60px;
  1659. display: inline-block;
  1660. }
  1661. .Guarantee_time li i {
  1662. font-size: 28px;
  1663. font-family: arial;
  1664. color: #FFFFFF;
  1665. font-style: normal;
  1666. margin-left: 5PX;
  1667. }
  1668. .Guarantee_time li p {
  1669. color: #ffffff;
  1670. font-size: 16px;
  1671. margin-bottom: 20px;
  1672. }
  1673. .Guarantee_time li h1 {
  1674. color: #ffffff;
  1675. font-size: 48px;
  1676. display: inline-block;
  1677. }
  1678. /*社会责任*/
  1679. .p-title {
  1680. text-align: center;
  1681. }
  1682. .p-title .t {
  1683. line-height: 49px;
  1684. font-size: 30px;
  1685. }
  1686. .p-title .s {
  1687. display: block;
  1688. width: 20px;
  1689. height: 3px;
  1690. background: #e50012;
  1691. margin: 10px auto 0;
  1692. }
  1693. .p-title .c {
  1694. line-height: 27px;
  1695. font-size: 16px;
  1696. color: #666666;
  1697. margin: 13px 0 0;
  1698. }
  1699. .abUs-comSR {
  1700. padding: 60px 0 68px;
  1701. background-image: url(../images/cul-bg.jpg)
  1702. }
  1703. .auCSR-list {
  1704. margin: 43px 0 0;
  1705. }
  1706. .auCSR-list li {
  1707. width: 20%;
  1708. position: relative;
  1709. overflow: hidden;
  1710. float: left;
  1711. z-index: 1;
  1712. }
  1713. .auCSR-list .auCSR-box {
  1714. overflow: hidden;
  1715. position: relative;
  1716. z-index: 5;
  1717. }
  1718. .auCSR-box:before,
  1719. .auCSR-box:after {
  1720. content: "";
  1721. display: block;
  1722. width: 100%;
  1723. height: 50%;
  1724. background: rgba(0, 0, 0, .4);
  1725. position: absolute;
  1726. left: 0px;
  1727. }
  1728. .auCSR-box:before {
  1729. top: 0px;
  1730. }
  1731. .auCSR-box:after {
  1732. bottom: 0px;
  1733. }
  1734. .auCSR-box .name {
  1735. width: 120px;
  1736. padding: 15px 0;
  1737. line-height: 34px;
  1738. font-size: 20px;
  1739. color: #fff;
  1740. border-top: 1px solid rgba(255, 255, 255, .4);
  1741. border-bottom: 1px solid rgba(255, 255, 255, .4);
  1742. position: absolute;
  1743. top: 120px;
  1744. left: 50%;
  1745. transform: translateX(-50%);
  1746. -webkit-transform: translateX(-50%);
  1747. z-index: 2;
  1748. }
  1749. .auCSR-list li:nth-child(5) .auCSR-box .name {
  1750. width: 160px;
  1751. }
  1752. .auCSR-list li img {
  1753. display: block;
  1754. }
  1755. .auCSR-list .auCSR-bg {
  1756. width: 100%;
  1757. height: 468px;
  1758. object-fit: cover;
  1759. }
  1760. .auCSR-con {
  1761. width: 100%;
  1762. height: 100%;
  1763. background: #f5f5f5;
  1764. position: absolute;
  1765. top: 0px;
  1766. opacity: 0;
  1767. z-index: 8;
  1768. text-align: center;
  1769. }
  1770. .auCSR-con .auCSR-tb {
  1771. display: table;
  1772. width: 100%;
  1773. height: 100%;
  1774. overflow-y: auto;
  1775. position: absolute;
  1776. top: 0px;
  1777. left: 0px;
  1778. }
  1779. .auCSR-tb .auCSR-td {
  1780. display: table-cell;
  1781. padding: 0 12.5%;
  1782. vertical-align: middle;
  1783. }
  1784. .auCSR-td .name {
  1785. line-height: 40px;
  1786. font-size: 22px;
  1787. color: #222;
  1788. text-align: center;
  1789. }
  1790. .auCSR-td .split {
  1791. display: block;
  1792. width: 31px;
  1793. height: 1px;
  1794. background: #e50012;
  1795. margin: 10px 0 20px;
  1796. }
  1797. .auCSR-td .con {
  1798. line-height: 32px;
  1799. color: #666666;
  1800. }
  1801. .auCSR-box:before,
  1802. .auCSR-box:after,
  1803. .auCSR-box .name,
  1804. .auCSR-box .icon,
  1805. .auCSR-con {
  1806. transition: all .6s ease-in-out;
  1807. -webkit-transition: all .6s ease-in-out;
  1808. }
  1809. .auCSR-list li:hover .auCSR-box:before {
  1810. top: -100%;
  1811. opacity: 0;
  1812. transition-delay: .2s;
  1813. -webkit-transition-delay: .2s;
  1814. }
  1815. .auCSR-list li:hover .auCSR-box:after {
  1816. bottom: -100%;
  1817. opacity: 0;
  1818. transition-delay: .2s;
  1819. -webkit-transition-delay: .2s;
  1820. }
  1821. .auCSR-list li:hover .auCSR-box .name {
  1822. top: -100px;
  1823. opacity: 0;
  1824. }
  1825. .auCSR-list li:hover .auCSR-con {
  1826. opacity: 1;
  1827. }
  1828. .index-table {
  1829. display: table;
  1830. }
  1831. .index-cell {
  1832. display: table-cell;
  1833. vertical-align: middle;
  1834. }
  1835. .mt50 {
  1836. margin-top: 50px;
  1837. }
  1838. .linian {
  1839. padding: 60px 0;
  1840. overflow: hidden;
  1841. background: #f5f5f5;
  1842. }
  1843. .linian li {
  1844. width: 100%;
  1845. overflow: hidden;
  1846. background: #fff;
  1847. margin-bottom: 4em;
  1848. }
  1849. .linian li .cont {
  1850. padding: 30px 60px;
  1851. width: 50%;
  1852. overflow: hidden;
  1853. box-sizing: border-box;
  1854. height: 550px;
  1855. }
  1856. .linian li .cont h1 {
  1857. font-size: 28px;
  1858. margin-bottom: 10px;
  1859. color: #333333;
  1860. }
  1861. .linian li .cont span {
  1862. display: block;
  1863. width: 15px;
  1864. height: 2px;
  1865. background: #666666;
  1866. margin: 40px 0;
  1867. }
  1868. .linian li .cont figure {
  1869. width: 100%;
  1870. overflow: hidden;
  1871. }
  1872. .linian li .cont figure p {
  1873. line-height: 26px;
  1874. font-size: 13px;
  1875. color: #555;
  1876. }
  1877. .linian li .ln_img {
  1878. width: 50%;
  1879. overflow: hidden;
  1880. }
  1881. .linian li .ln_img img {
  1882. display: block;
  1883. width: 100%;
  1884. height: 550px;
  1885. }
  1886. .linian li .ln_img img {
  1887. display: block;
  1888. width: 100%;
  1889. -webkit-transition: all 0.4s linear;
  1890. -moz-transition: all 0.4s linear;
  1891. -o-transition: all 0.4s linear;
  1892. transition: all 0.4s linear;
  1893. }
  1894. .linian li:hover .ln_img img {
  1895. -webkit-transform: scale(1.06);
  1896. -moz-transform: scale(1.06);
  1897. -ms-transform: scale(1.06);
  1898. -o-transform: scale(1.06);
  1899. transform: scale(1.06);
  1900. }
  1901. .honor {
  1902. background: #f5f5f5;
  1903. padding: 50px 0;
  1904. }
  1905. .tplb {
  1906. width: 100%;
  1907. overflow: hidden;
  1908. margin-top: 40px;
  1909. }
  1910. .tplb li {
  1911. width: 410px;
  1912. float: left;
  1913. margin: 0 0 35px 35px;
  1914. overflow: hidden;
  1915. background: #fff;
  1916. }
  1917. .tplb li:nth-child(3n+1) {
  1918. margin-left: 0;
  1919. }
  1920. .tplb li .tyt {
  1921. width: 100%;
  1922. overflow: hidden;
  1923. position: relative;
  1924. }
  1925. .tplb li .tyt em {
  1926. display: block;
  1927. overflow: hidden;
  1928. }
  1929. .tplb li .tyt em img {
  1930. display: block;
  1931. width: 100%;
  1932. -webkit-transition: all 0.4s linear;
  1933. -moz-transition: all 0.4s linear;
  1934. -o-transition: all 0.4s linear;
  1935. transition: all 0.4s linear;
  1936. }
  1937. .tplb li:hover .tyt em img {
  1938. -webkit-transform: scale(1.06);
  1939. -moz-transform: scale(1.06);
  1940. -ms-transform: scale(1.06);
  1941. -o-transform: scale(1.06);
  1942. transform: scale(1.06);
  1943. }
  1944. .tplb li .tyt b {
  1945. display: none;
  1946. width: 100%;
  1947. height: 100%;
  1948. position: absolute;
  1949. left: 0;
  1950. top: 0;
  1951. background: rgba(0, 0, 0, 0.3);
  1952. z-index: 10;
  1953. }
  1954. .tplb li .tyt span {
  1955. display: none;
  1956. line-height: 34px;
  1957. width: 80px;
  1958. color: #fff;
  1959. position: absolute;
  1960. left: 50%;
  1961. margin-left: -40px;
  1962. top: 50%;
  1963. margin-top: -18px;
  1964. border-bottom: 1px #fff solid;
  1965. border-top: 1px #fff solid;
  1966. z-index: 20;
  1967. text-align: center;
  1968. }
  1969. .tplb li:hover .tyt b,
  1970. .tplb li:hover .tyt span {
  1971. display: block;
  1972. }
  1973. .tplb li strong {
  1974. display: block;
  1975. text-align: center;
  1976. padding: 20px 0;
  1977. overflow: hidden;
  1978. white-space: nowrap;
  1979. text-overflow: ellipsis;
  1980. }
  1981. .service li .ln_img img {
  1982. height: auto;
  1983. }
  1984. .service li .cont {
  1985. height: auto;
  1986. }
  1987. .service li .cont {
  1988. padding: 60px;
  1989. box-sizing: border-box;
  1990. }
  1991. .service .bottom {
  1992. background: #ffffff;
  1993. padding: 40px;
  1994. box-sizing: border-box;
  1995. }
  1996. .service .bottom .left,
  1997. .service .bottom .right {
  1998. width: 50%;
  1999. overflow: hidden;
  2000. }
  2001. .service .bottom .left .title h1 {
  2002. font-size: 28px;
  2003. margin-bottom: 10px;
  2004. color: #333333;
  2005. }
  2006. .service .bottom .left .title span {
  2007. display: block;
  2008. width: 15px;
  2009. height: 2px;
  2010. background: #666666;
  2011. margin: 40px 0;
  2012. }
  2013. .service .bottom .left .title figure {
  2014. width: 100%;
  2015. overflow: hidden;
  2016. }
  2017. .service .bottom .left .title p {
  2018. line-height: 26px;
  2019. font-size: 13px;
  2020. color: #555;
  2021. }
  2022. .service .bottom .left img {
  2023. height: 200px;
  2024. width: 100%;
  2025. margin-bottom: 20px;
  2026. }
  2027. .service .liuyan {
  2028. padding: 0;
  2029. }
  2030. .service .liuyan li {
  2031. margin: 0 0 20px 0;
  2032. }
  2033. .service .liuyan ul {
  2034. padding: 0 60px;
  2035. box-sizing: border-box;
  2036. }
  2037. .service .liuyan li.on_11 textarea {
  2038. font-size: 14px;
  2039. }
  2040. .service .liuyan li input.text {
  2041. font-size: 14px;
  2042. }
  2043. .newpage1 {
  2044. padding: 50px 200px 70px 200px;
  2045. }
  2046. .p-title .t {
  2047. font-size: 24px;
  2048. }
  2049. .p-title .c {
  2050. font-size: 14px;
  2051. }
  2052. .business-content {
  2053. display: -webkit-box;
  2054. display: -ms-flexbox;
  2055. display: flex;
  2056. -ms-flex-pack: distribute;
  2057. justify-content: space-around;
  2058. padding: 25px 0;
  2059. }
  2060. .business-content .box {
  2061. transition: all 0.6s;
  2062. width: 46%;
  2063. text-align: center;
  2064. background: white;
  2065. }
  2066. .business-content .box:hover {
  2067. -webkit-transform: scale(1.02);
  2068. transform: scale(1.02);
  2069. -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  2070. box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  2071. }
  2072. .business-content .box .p1 {
  2073. font-size: 16px;
  2074. font-family: PingFang-SC-Bold;
  2075. font-weight: bold;
  2076. color: #333333;
  2077. line-height: 28px;
  2078. margin-bottom: 8px;
  2079. padding-top: 10px;
  2080. }
  2081. .business-content .box .p2 {
  2082. font-size: 12px;
  2083. font-family: PingFang-SC-Medium;
  2084. font-weight: 500;
  2085. color: #999999;
  2086. line-height: 22px;
  2087. margin-bottom: 7px;
  2088. white-space: nowrap;
  2089. overflow: hidden;
  2090. text-overflow: ellipsis;
  2091. }
  2092. .business-content .box .p3 {
  2093. font-size: 12px;
  2094. font-family: PingFang-SC-Medium;
  2095. font-weight: 500;
  2096. color: #999999;
  2097. line-height: 22px;
  2098. margin-bottom: 10px;
  2099. white-space: nowrap;
  2100. overflow: hidden;
  2101. text-overflow: ellipsis;
  2102. }
  2103. .business-content img {
  2104. display: block;
  2105. max-width: 100%;
  2106. }
  2107. .sence-content img {
  2108. display: block;
  2109. max-width: 100%;
  2110. height: 40px;
  2111. }
  2112. .sence-content {
  2113. padding-top: 50px;
  2114. width: 100%;
  2115. display: -webkit-box;
  2116. display: -ms-flexbox;
  2117. display: flex;
  2118. -webkit-box-pack: space-between;
  2119. -ms-flex-pack: space-between;
  2120. justify-content: space-between;
  2121. flex-wrap: wrap;
  2122. }
  2123. .sence-content .img-box1,
  2124. .sence-content .img-box2,
  2125. .sence-content .img-box3,
  2126. .sence-content .img-box4 {
  2127. min-height: 200px;
  2128. width: 23%;
  2129. display: -webkit-box;
  2130. display: -ms-flexbox;
  2131. display: flex;
  2132. -webkit-box-orient: vertical;
  2133. -webkit-box-direction: normal;
  2134. -ms-flex-direction: column;
  2135. flex-direction: column;
  2136. -webkit-box-pack: center;
  2137. -ms-flex-pack: center;
  2138. justify-content: center;
  2139. -webkit-box-align: center;
  2140. -ms-flex-align: center;
  2141. align-items: center;
  2142. background: black;
  2143. text-align: center;
  2144. position: relative;
  2145. }
  2146. .sence-content .img-box1:hover,
  2147. .sence-content .img-box2:hover,
  2148. .sence-content .img-box3:hover,
  2149. .sence-content .img-box4:hover{
  2150. overflow: hidden;
  2151. }
  2152. .sence-content .img-box1:hover>p,
  2153. .sence-content .img-box1:hover img,
  2154. .sence-content .img-box2:hover>p,
  2155. .sence-content .img-box2:hover img,
  2156. .sence-content .img-box3:hover>p,
  2157. .sence-content .img-box3:hover img,
  2158. .sence-content .img-box4:hover>p,
  2159. .sence-content .img-box4:hover img,
  2160. .sence-content .img-box5:hover>p,
  2161. .sence-content .img-box5:hover img {
  2162. display: none;
  2163. }
  2164. .sence-content .img-box1:hover .box-hover,
  2165. .sence-content .img-box2:hover .box-hover,
  2166. .sence-content .img-box3:hover .box-hover,
  2167. .sence-content .img-box4:hover .box-hover,
  2168. .sence-content .img-box5:hover .box-hover {
  2169. opacity: 1;
  2170. display: block;
  2171. -webkit-transition: all ease 0.4s;
  2172. transition: all ease 0.4s;
  2173. height: 100%;
  2174. position: absolute;
  2175. left: 0;
  2176. right: 0;
  2177. bottom: 0;
  2178. top: 0;
  2179. }
  2180. .sence-content .img-box1 .box-hover,
  2181. .sence-content .img-box2 .box-hover,
  2182. .sence-content .img-box3 .box-hover,
  2183. .sence-content .img-box4 .box-hover {
  2184. position: absolute;
  2185. background-color: rgba(62, 136, 241, 0.6);
  2186. display: block;
  2187. opacity: 0;
  2188. height: 0;
  2189. -webkit-box-sizing: border-box;
  2190. box-sizing: border-box;
  2191. padding: 10px;
  2192. display: flex;
  2193. justify-content: center;
  2194. align-items: center;
  2195. align-content: center;
  2196. }
  2197. .sence-content .img-box1 .box-hover .box-wrap,
  2198. .sence-content .img-box2 .box-hover .box-wrap,
  2199. .sence-content .img-box3 .box-hover .box-wrap,
  2200. .sence-content .img-box4 .box-hover .box-wrap,
  2201. .sence-content .img-box5 .box-hover .box-wrap {
  2202. width: 100%;
  2203. height: 100%;
  2204. display: flex;
  2205. flex-wrap: wrap;
  2206. justify-content: center;
  2207. align-items: center;
  2208. align-content: center;
  2209. top: 0;
  2210. bottom: 0;
  2211. right: 0;
  2212. left: 0;
  2213. position: absolute;
  2214. }
  2215. .sence-content .img-box1 .box-hover .box-wrap .title1,
  2216. .sence-content .img-box2 .box-hover .box-wrap .title1,
  2217. .sence-content .img-box3 .box-hover .box-wrap .title1,
  2218. .sence-content .img-box4 .box-hover .box-wrap .title1 {
  2219. font-size: 16px;
  2220. margin-bottom: 10px;
  2221. font-weight: normal;
  2222. font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Helvetica, PingFangSC-Medium, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
  2223. width: 100%;
  2224. }
  2225. .sence-content .img-box1 .box-hover .box-wrap .title2,
  2226. .sence-content .img-box2 .box-hover .box-wrap .title2,
  2227. .sence-content .img-box3 .box-hover .box-wrap .title2,
  2228. .sence-content .img-box4 .box-hover .box-wrap .title2,
  2229. .sence-content .img-box5 .box-hover .box-wrap .title2 {
  2230. font-size: 12px;
  2231. line-height: 30px;
  2232. font-weight: normal;
  2233. padding: 0 10px;
  2234. font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, Helvetica, PingFangSC-Medium, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
  2235. }
  2236. .sence-content .img-box1 p,
  2237. .sence-content .img-box2 p,
  2238. .sence-content .img-box3 p,
  2239. .sence-content .img-box4 p {
  2240. font-size: 20px;
  2241. font-weight: bold;
  2242. color: white;
  2243. line-height: 28px;
  2244. padding-top: 10px;
  2245. }
  2246. .sence-content .img-box1 {
  2247. background: url("../images/zh1.png") center no-repeat;
  2248. }
  2249. .sence-content .img-box2 {
  2250. background: url("../images/zh2.png") center no-repeat;
  2251. }
  2252. .sence-content .img-box3 {
  2253. background: url("../images/zh3.png") center no-repeat;
  2254. }
  2255. .sence-content .img-box4 {
  2256. background: url("../images/zh4.png") center no-repeat;
  2257. }
  2258. .sence-content .img-box1 img,
  2259. .sence-content .img-box2 img,
  2260. .sence-content .img-box3 img,
  2261. .sence-content .img-box4 img {
  2262. z-index: 99;
  2263. }
  2264. .newpage1 {
  2265. padding: 30px 15px;
  2266. }
  2267. .sence-content>div {
  2268. width: 49% !important;
  2269. }
  2270. .sence-content>div:nth-child(3),
  2271. .sence-content>div:nth-child(4) {
  2272. margin-top: 10px;
  2273. }
  2274. @media all and (max-width:1600px) {
  2275. .index- {
  2276. width: 15%
  2277. }
  2278. .index-nav li {
  2279. width: calc(100%/9);
  2280. font-size: 16px;
  2281. }
  2282. .wave_box1 {
  2283. bottom: -50vh;
  2284. }
  2285. .position-yuan .bg {
  2286. transform: scale(.7);
  2287. right: -110px
  2288. }
  2289. }
  2290. @media all and (max-width:1500px) {
  2291. .index-title h3 {
  2292. font-size: 44px;
  2293. }
  2294. .index-title h2 {
  2295. font-size: 110px;
  2296. }
  2297. }
  2298. @media all and (max-width:1400px) {
  2299. .index-con {
  2300. padding: 0 4%;
  2301. }
  2302. .index-title h3 {
  2303. font-size: 38px;
  2304. }
  2305. .index-title h2 {
  2306. font-size: 100px;
  2307. }
  2308. }