cus-client-common.scss 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  1. @import "../base/utils";
  2. /************************ 通用class样式 author: TX date:2020-07-30 **********************/
  3. /* 页面样式 */
  4. body, html, #app {
  5. padding: 0;
  6. margin: 0;
  7. @include setFontStyle(0);
  8. }
  9. /* 内外边距通常让各个浏览器样式的表现位置不同 */
  10. div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  11. margin: 0;
  12. padding: 0;
  13. }
  14. /* HTML5 媒体文件跟 img 保持一致 */
  15. audio, canvas, video {
  16. display: inline-block;
  17. *display: inline;
  18. *zoom: 1;
  19. }
  20. /* 默认不显示下划线,保持页面简洁 */
  21. ins, a {
  22. text-decoration: none;
  23. cursor: pointer;
  24. }
  25. /* 去掉列表前的标识, li 会继承 */
  26. ol, ul, dl, dt, dd {
  27. list-style: none;
  28. margin: 0;
  29. padding: 0;
  30. letter-spacing: 0;
  31. word-spacing: 0;
  32. font-size: 0;
  33. }
  34. /* 让标题都自定义, 适应多个系统应用 */
  35. h1, h2, h3, h4, h5, h6, p {
  36. font-weight: normal;
  37. margin: 0;
  38. }
  39. /* 外边距 */
  40. .m5 {
  41. margin: 5px;
  42. }
  43. .m10 {
  44. margin: 10px;
  45. }
  46. .m15 {
  47. margin: 15px;
  48. }
  49. .m20 {
  50. margin: 20px;
  51. }
  52. .m25 {
  53. margin: 25px;
  54. }
  55. .m30 {
  56. margin: 30px;
  57. }
  58. .m35 {
  59. margin: 35px;
  60. }
  61. .m40 {
  62. margin: 40px;
  63. }
  64. /* 外边距 上下边距 左右居中 */
  65. .ma0 {
  66. margin: 0 auto;
  67. }
  68. .ma5 {
  69. margin: 5px auto;
  70. }
  71. .ma10 {
  72. margin: 10px auto;
  73. }
  74. .ma15 {
  75. margin: 15px auto;
  76. }
  77. .ma20 {
  78. margin: 20px auto;
  79. }
  80. .ma25 {
  81. margin: 25px auto;
  82. }
  83. .ma30 {
  84. margin: 30px auto;
  85. }
  86. .ma35 {
  87. margin: 35px auto;
  88. }
  89. .ma40 {
  90. margin: 40px auto;
  91. }
  92. /* 上外边距 */
  93. .mt5 {
  94. margin-top: 5px;
  95. }
  96. .mt10 {
  97. margin-top: 10px;
  98. }
  99. .mt15 {
  100. margin-top: 15px;
  101. }
  102. .mt20 {
  103. margin-top: 20px;
  104. }
  105. .mt25 {
  106. margin-top: 25px;
  107. }
  108. .mt30 {
  109. margin-top: 30px;
  110. }
  111. .mt35 {
  112. margin-top: 35px;
  113. }
  114. .mt40 {
  115. margin-top: 40px;
  116. }
  117. .mt48 {
  118. margin-top: 48px;
  119. }
  120. /* 下外边距 */
  121. .mb5 {
  122. margin-bottom: 5px;
  123. }
  124. .mb10 {
  125. margin-bottom: 10px;
  126. }
  127. .mb15 {
  128. margin-bottom: 15px;
  129. }
  130. .mb20 {
  131. margin-bottom: 20px;
  132. }
  133. .mb25 {
  134. margin-bottom: 25px;
  135. }
  136. .mb30 {
  137. margin-bottom: 30px;
  138. }
  139. .mb35 {
  140. margin-bottom: 35px;
  141. }
  142. .mb40 {
  143. margin-bottom: 40px;
  144. }
  145. /* 左外边距 */
  146. .ml5 {
  147. margin-left: 5px;
  148. }
  149. .ml10 {
  150. margin-left: 10px;
  151. }
  152. .ml15 {
  153. margin-left: 15px;
  154. }
  155. .ml20 {
  156. margin-left: 20px;
  157. }
  158. .ml25 {
  159. margin-left: 25px;
  160. }
  161. .ml30 {
  162. margin-left: 30px;
  163. }
  164. .ml35 {
  165. margin-left: 35px;
  166. }
  167. .ml40 {
  168. margin-left: 40px;
  169. }
  170. /* 右外边距 */
  171. .mr5 {
  172. margin-right: 5px;
  173. }
  174. .mr10 {
  175. margin-right: 10px;
  176. }
  177. .mr15 {
  178. margin-right: 15px;
  179. }
  180. .mr20 {
  181. margin-right: 20px;
  182. }
  183. .mr25 {
  184. margin-right: 25px;
  185. }
  186. .mr30 {
  187. margin-right: 30px;
  188. }
  189. .mr35 {
  190. margin-right: 35px;
  191. }
  192. .mr40 {
  193. margin-right: 40px;
  194. }
  195. /*文字对齐方式*/
  196. .tl {
  197. text-align: left;
  198. }
  199. .tr {
  200. text-align: right;
  201. }
  202. .tc {
  203. text-align: center;
  204. }
  205. /*字体大小*/
  206. .fs_12 {
  207. font-size: 12px;
  208. }
  209. .fs_14 {
  210. font-size: 14px;
  211. }
  212. .fs_16 {
  213. font-size: 16px;
  214. }
  215. .fs_18 {
  216. font-size: 18px;
  217. }
  218. .fs_20 {
  219. font-size: 20px;
  220. }
  221. .fs_22 {
  222. font-size: 22px;
  223. }
  224. .fs_24 {
  225. font-size: 24px;
  226. }
  227. .fs_26 {
  228. font-size: 26px;
  229. }
  230. .fs_28 {
  231. font-size: 28px;
  232. }
  233. .fs_30 {
  234. font-size: 30px;
  235. }
  236. /* 清除浮动-父级使用 */
  237. .fn-clear:after {
  238. content: " ";
  239. height: 0;
  240. display: block;
  241. font-size: 0;
  242. visibility: hidden;
  243. clear: both;
  244. }
  245. /* 清除元素间隙 */
  246. .fn-clear-gap {
  247. font-size: 0;
  248. list-style: none;
  249. margin: 0;
  250. padding: 0;
  251. letter-spacing: 0;
  252. word-spacing: 0;
  253. }
  254. /* 隐藏, 通常用来与 JS 配合 */
  255. .fn-hide {
  256. display: none;
  257. }
  258. /* 隐藏多余内容*/
  259. .fn-hidden {
  260. overflow: hidden
  261. }
  262. /* 文本超出省略号显示 (一行) ------ 使用方式:@include single-line-ellipsis; */
  263. @mixin single-line-ellipsis {
  264. text-overflow: ellipsis;
  265. overflow: hidden;
  266. word-wrap: break-word;
  267. white-space: nowrap;
  268. word-break: break-all;
  269. }
  270. /* 文本超出省略号显示 (多行),括号里传行数 ------ 使用方式:@include multi-line-ellipsis(3); */
  271. @mixin multi-line-ellipsis($rows) {
  272. -webkit-line-clamp: $rows;
  273. text-overflow: ellipsis;
  274. -o-text-overflow: ellipsis;
  275. overflow: hidden;
  276. word-wrap: break-word;
  277. display: -webkit-box;
  278. white-space: normal !important;
  279. -webkit-box-orient: vertical;
  280. }
  281. /************************ 网站公共class样式 author: TX date:2020-07-30 **********************/
  282. /**************** 网站框架 ****************/
  283. .website-frame {
  284. font-family: "PingFang SC", "微软雅黑", Arial, sans-serif;
  285. color: #2C3E50;
  286. min-width: 1240px;
  287. // head移动端响应式
  288. @media (max-width: 768px) {
  289. min-width: unset;
  290. }
  291. }
  292. /* 饿了么右侧生成的间距 */
  293. .el-popup-parent--hidden {
  294. padding-right: 0 !important
  295. }
  296. /* 网站主体部分 */
  297. .client-container {
  298. width: 1260px;
  299. margin: 0 auto;
  300. @media (max-width: 768px) {
  301. width: auto;
  302. padding: 0 15px;
  303. max-width: 100%;
  304. box-sizing: border-box;
  305. }
  306. }
  307. .client-container-middle {
  308. width: 960px;
  309. margin: 0 auto;
  310. }
  311. /**************** 网站头部 ****************/
  312. /* 网站头部导航栏 */
  313. .client-head {
  314. width: 100%;
  315. height: 72px;
  316. z-index: 999;
  317. background: #fff;
  318. position: fixed;
  319. top: 0;
  320. //box-shadow: -5px 0px 12px 4px #6bbf71;
  321. //头部布局
  322. .head-layout {
  323. height: 72px;
  324. display: flex;
  325. justify-content: space-between;
  326. @include setFontStyle(-4);
  327. }
  328. //头部导航
  329. .header-nav {
  330. > span, > a {
  331. margin: 0 30px;
  332. color: #333333;
  333. }
  334. > a:last-child {
  335. margin-right: 0;
  336. }
  337. > a:visited {
  338. color: #333333;
  339. }
  340. > a.active {
  341. color: #00B96B;
  342. position: relative;
  343. }
  344. .active:before {
  345. content: '';
  346. width: 88%;
  347. height: 2px;
  348. background-color: #00B96B;
  349. display: block;
  350. position: absolute;
  351. bottom: -6px;
  352. left: 6%;
  353. }
  354. // 导航按钮
  355. .head-nav-btn.active {
  356. position: relative;
  357. }
  358. .head-nav-btn.active:before {
  359. width: 70%;
  360. bottom: -10px;
  361. left: 4%;
  362. }
  363. }
  364. //头部左侧区域
  365. .head-container-box {
  366. display: flex;
  367. width: 100%;
  368. justify-content: space-between;
  369. align-items: center;
  370. //头部图标
  371. .client-head-img {
  372. width: 112px;
  373. height: 51px;
  374. display: inline-block;
  375. background-image: url("~static/images/client/component/nav-logo.png");
  376. background-repeat: no-repeat;
  377. background-position: center;
  378. background-size: cover;
  379. margin-right: 40px;
  380. }
  381. }
  382. //头部右侧区域
  383. .head-right {
  384. display: flex;
  385. align-items: center;
  386. position: relative;
  387. border: 1px solid #00B96B;
  388. border-radius: 18px;
  389. > a, .right-tel-btn {
  390. width: 85px;
  391. padding: 8px 0;
  392. @include setFontStyle(-7);
  393. display: inline-block;
  394. color: #00B96B;
  395. text-align: center;
  396. cursor: pointer;
  397. }
  398. .right-tel-btn {
  399. color: #fff;
  400. background: #00B96B;
  401. position: relative;
  402. border-radius: 0 18px 18px 0;
  403. cursor: default;
  404. }
  405. > a:hover {
  406. cursor: pointer;
  407. }
  408. }
  409. // head移动端响应式
  410. @media (max-width: 768px) {
  411. // head
  412. height: 60px;
  413. box-shadow: unset;
  414. border-bottom: 1px solid #e7e7e7;
  415. //头部布局
  416. .head-layout {
  417. height: 60px;
  418. }
  419. //头部左侧区域 logo
  420. .head-container-box {
  421. justify-content: space-between;
  422. height: 60px;
  423. align-items: center;
  424. padding: 0;
  425. .client-head-img {
  426. width: 92px;
  427. height: 46px;
  428. background-size: contain;
  429. margin: 0;
  430. }
  431. }
  432. // 手机菜单关闭
  433. .head-nav-up {
  434. height: 0;
  435. display: none;
  436. opacity: 0;
  437. }
  438. // 手机菜单开启
  439. .head-nav-down {
  440. height: 100vh;
  441. display: block;
  442. opacity: 1;
  443. }
  444. // 咨询电话
  445. .phone-tel-box {
  446. color: rgb(0, 84, 145);
  447. font-size: 14px;
  448. font-weight: bold;
  449. line-height: 60px;
  450. }
  451. // 按钮
  452. .phone-nav-btn {
  453. width: 30px;
  454. height: 30px;
  455. background-image: url("~static/images/client/component/head-btn-icon.svg");
  456. }
  457. // 布局
  458. .head-layout {
  459. display: block
  460. }
  461. }
  462. }
  463. /* 导航二级菜单 */
  464. .head-popper-box {
  465. width: 940px;
  466. display: flex;
  467. align-items: center;
  468. // 箭头
  469. .popper__arrow::after {
  470. content: ' ';
  471. width: 0;
  472. height: 0;
  473. overflow: hidden;
  474. position: absolute;
  475. border-width: 6px;
  476. border-style: dashed dashed solid;
  477. border-color: transparent transparent #00B96B !important;
  478. top: -12px;
  479. }
  480. // 列表
  481. .head-popper-item {
  482. width: 23%;
  483. display: flex;
  484. margin: 16px 1%;
  485. align-items: center;
  486. i {
  487. width: 34px;
  488. height: 34px;
  489. background-size: contain;
  490. display: inline-block;
  491. margin-right: 16px;
  492. background-repeat: no-repeat;
  493. background-position: center;
  494. }
  495. .head-popper-title {
  496. @include setFontStyle(-6);
  497. color: #333;
  498. margin-bottom: 4px;
  499. display: inline-block;
  500. }
  501. .head-popper-des {
  502. display: block;
  503. @include setFontStyle(-8);
  504. color: #9c9c9c;
  505. }
  506. }
  507. }
  508. .head-popper-box:before {
  509. content: ' ';
  510. width: 100%;
  511. height: 2px;
  512. position: absolute;
  513. left: 0;
  514. top: 0;
  515. background-color: #00b96b;
  516. border-radius: 4px 4px 0 0;
  517. }
  518. /* 产品 二级菜单 */
  519. .cp-popper-box {
  520. margin-top: 24px !important;
  521. // 列表
  522. .head-popper-item:nth-child(1) {
  523. i {
  524. background-image: url("~static/images/client/component/head-cp-icon1.png");
  525. }
  526. }
  527. .head-popper-item:nth-child(2) {
  528. i {
  529. background-image: url("~static/images/client/component/head-cp-icon2.png");
  530. }
  531. }
  532. .head-popper-item:nth-child(3) {
  533. i {
  534. background-image: url("~static/images/client/component/head-cp-icon3.png");
  535. }
  536. }
  537. .head-popper-item:nth-child(4) {
  538. i {
  539. background-image: url("~static/images/client/component/head-cp-icon4.png");
  540. }
  541. }
  542. }
  543. /* 解决方案 二级菜单 */
  544. .jj-popper-box {
  545. padding: 24px 42px;
  546. box-sizing: border-box;
  547. margin-top: 24px !important;
  548. // head-popper-content
  549. .head-popper-content {
  550. width: 100%;
  551. }
  552. // 横线
  553. em {
  554. width: 800px;
  555. height: 1px;
  556. display: block;
  557. margin: 10px auto 24px;
  558. background: #f2f2f2;
  559. }
  560. // 标题
  561. h3 {
  562. font-size: 16px;
  563. font-weight: 700;
  564. text-align: left;
  565. color: #333333;
  566. margin-left: 12px;
  567. }
  568. // 列表行
  569. .head-popper-cj-row, .head-popper-hy-row {
  570. display: flex;
  571. align-items: center;
  572. flex-wrap: wrap;
  573. }
  574. // 场景解决方案 - icon
  575. .head-popper-cj-row {
  576. .head-popper-item:nth-child(1) {
  577. i {
  578. background-image: url("~static/images/client/component/head-jj-icon1.png");
  579. }
  580. }
  581. .head-popper-item:nth-child(2) {
  582. i {
  583. background-image: url("~static/images/client/component/head-jj-icon2.png");
  584. }
  585. }
  586. .head-popper-item:nth-child(3) {
  587. i {
  588. background-image: url("~static/images/client/component/head-jj-icon3.png");
  589. }
  590. }
  591. .head-popper-item:nth-child(4) {
  592. i {
  593. background-image: url("~static/images/client/component/head-jj-icon4.png");
  594. }
  595. }
  596. }
  597. // 行业解决方案 - icon
  598. .head-popper-hy-row {
  599. .head-popper-item:nth-child(1) {
  600. i {
  601. background-image: url("~static/images/client/component/head-jj-icon5.png");
  602. }
  603. }
  604. .head-popper-item:nth-child(2) {
  605. i {
  606. background-image: url("~static/images/client/component/head-jj-icon6.png");
  607. }
  608. }
  609. .head-popper-item:nth-child(3) {
  610. i {
  611. background-image: url("~static/images/client/component/head-jj-icon7.png");
  612. }
  613. }
  614. .head-popper-item:nth-child(4) {
  615. i {
  616. background-image: url("~static/images/client/component/head-jj-icon8.png");
  617. }
  618. }
  619. .head-popper-item:nth-child(5) {
  620. i {
  621. background-image: url("~static/images/client/component/head-jj-icon9.png");
  622. }
  623. }
  624. .head-popper-item:nth-child(6) {
  625. i {
  626. background-image: url("~static/images/client/component/head-jj-icon10.png");
  627. }
  628. }
  629. .head-popper-item:nth-child(7) {
  630. i {
  631. background-image: url("~static/images/client/component/head-jj-icon11.png");
  632. }
  633. }
  634. }
  635. }
  636. /* 免费注册 二级菜单 */
  637. .system-popper-box {
  638. width: 450px;
  639. margin-top: 12px !important;
  640. .head-popper-item {
  641. width: 50%;
  642. margin: 16px auto;
  643. }
  644. .head-popper-item:nth-child(1) {
  645. i {
  646. background-image: url("~static/images/client/component/head-exam-icon.png");
  647. }
  648. }
  649. .head-popper-item:nth-child(2) {
  650. i {
  651. background-image: url("~static/images/client/component/head-train-icon.png");
  652. }
  653. }
  654. }
  655. /* 网站头部导栏 - 面包屑 */
  656. .client-breadcrumb-box {
  657. width: 1260px;
  658. font-size: 16px;
  659. margin: 24px auto;
  660. .st-breadcrumb {
  661. margin-left: 24px;
  662. a:last-child {
  663. .breadcrumb-div::after {
  664. display: none;
  665. }
  666. }
  667. }
  668. .st-breadcrumb-item {
  669. display: inline-block;
  670. vertical-align: middle;
  671. color: #4a73fd;
  672. text-decoration: none;
  673. }
  674. .st-breadcrumb-item:hover {
  675. cursor: pointer;
  676. }
  677. .st-breadcrumb-item:after {
  678. width: 11px;
  679. height: 16px;
  680. content: '';
  681. display: inline-block;
  682. padding: 0 16px;
  683. vertical-align: middle;
  684. zoom: 0.8;
  685. -moz-transform: scale(0.8, 0.8);
  686. background-image: url("~static/images/client/component/breadcrumb-icon.svg");
  687. background-repeat: no-repeat;
  688. background-position: center;
  689. }
  690. .breadcrumb-div {
  691. display: inline-block;
  692. vertical-align: middle;
  693. }
  694. .st-breadcrumb-item-last {
  695. display: inline-block;
  696. text-decoration: none;
  697. color: #333;
  698. vertical-align: middle;
  699. }
  700. .st-breadcrumb-item-last:hover {
  701. cursor: default;
  702. }
  703. // IE11兼容写法
  704. @media all and (-ms-high-contrast: none) {
  705. *::-ms-backdrop, .st-breadcrumb-item-last {
  706. margin-left: -10px;
  707. }
  708. }
  709. // IE10兼容写法
  710. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  711. .st-breadcrumb-item-last {
  712. margin-left: -10px;
  713. }
  714. }
  715. }
  716. /**************** 网站内容 ****************/
  717. /* 网站标题 */
  718. .client-title {
  719. @include setFontStyle(10);
  720. color: #333;
  721. letter-spacing: 0;
  722. padding-top: 80px;
  723. text-align: center;
  724. font-weight: 800;
  725. // head移动端响应式
  726. @media (max-width: 768px) {
  727. @include setFontStyle(-2);
  728. padding-top: 20px;
  729. font-weight: 700;
  730. color: rgb(16, 16, 16);
  731. }
  732. }
  733. /* 网站副标题 */
  734. .client-subtitle-title {
  735. width: 650px;
  736. @include setFontStyle(-4);
  737. color: rgba(0, 0, 0, 0.65);
  738. line-height: 30px;
  739. margin: 0 auto;
  740. margin-top: 16px;
  741. text-align: center;
  742. @media (max-width: 768px) {
  743. width: 100%;
  744. text-align: justify;
  745. @include setFontStyle(-6);
  746. line-height: 24px;
  747. }
  748. }
  749. // 一行副标题
  750. .client-subtitle-one-row {
  751. @include setFontStyle(-2);
  752. color: #565656;
  753. margin: 40px 0;
  754. text-align: center;
  755. }
  756. .client-subtitle-title-big {
  757. width: 1000px;
  758. padding: 0 100px;
  759. @include setFontStyle(-4);
  760. color: rgba(0, 0, 0, 0.65);
  761. line-height: 30px;
  762. margin: 0 auto;
  763. margin-top: 48px;
  764. text-align: center;
  765. @media (max-width: 768px) {
  766. width: 100%;
  767. text-align: justify;
  768. margin-top: 24px;
  769. padding: 0;
  770. @include setFontStyle(-6);
  771. line-height: 24px;
  772. }
  773. }
  774. /* 网站通用按钮 */
  775. .client-default-Btn {
  776. display: block;
  777. @include setFontStyle(-4);
  778. background: #2B5CFD;
  779. color: rgba(255, 255, 255, 0.85);
  780. border-radius: 4px;
  781. transition: .3s all linear;
  782. text-align: center;
  783. }
  784. .client-default-Btn:hover {
  785. background: #2249C9;
  786. cursor: pointer;
  787. }
  788. // 白色
  789. .client-default-white-Btn {
  790. display: block;
  791. @include setFontStyle(-4);
  792. background: #fff;
  793. color: #2B5CFD;
  794. border-radius: 4px;
  795. transition: .3s all linear;
  796. text-align: center;
  797. }
  798. .client-default-white-Btn:hover {
  799. background: #fff;
  800. cursor: pointer;
  801. }
  802. // 免费试用按钮
  803. .free-trial-default-btn {
  804. width: 238px;
  805. height: 40px;
  806. line-height: 40px;
  807. margin: 40px auto 0;
  808. display: block;
  809. @include setFontStyle(-4);
  810. background: #3e7ee7;
  811. color: rgba(255, 255, 255, 0.85);
  812. border-radius: 4px;
  813. transition: .3s all linear;
  814. text-align: center;
  815. @media (max-width: 768px) {
  816. width: 122px;
  817. height: 35px;
  818. line-height: 35px;
  819. margin: 16px auto 28px;
  820. }
  821. }
  822. .free-trial-default-btn:hover {
  823. cursor: pointer;
  824. }
  825. /* 网站底部footer */
  826. .client-footer {
  827. background: #1E2534;
  828. padding-bottom: 50px;
  829. //footer内容区域
  830. .contact-box {
  831. padding-top: 40px;
  832. .contact-left-box {
  833. display: inline-block;
  834. dl {
  835. display: inline-block;
  836. margin-right: 48px;
  837. margin-bottom: 40px;
  838. vertical-align: top;
  839. }
  840. dt {
  841. @include setFontStyle(-4);
  842. color: #FFFFFF;
  843. margin-bottom: 24px;
  844. }
  845. dd, dd a {
  846. @include setFontStyle(-6);
  847. color: rgba(255, 255, 255, 0.64);
  848. margin-bottom: 8px;
  849. }
  850. dd:hover, dd a:hover {
  851. color: rgba(255, 255, 255, 0.85);
  852. cursor: pointer
  853. }
  854. // 二维码
  855. .two-code-box {
  856. position: relative;
  857. }
  858. .two-dimensional-code {
  859. width: 110px;
  860. height: 110px;
  861. background-color: #fff;
  862. background-image: url("~static/images/client/component/two-dimensional-code.jpg");
  863. display: none;
  864. position: absolute;
  865. left: 85px;
  866. top: -40px;
  867. background-size: cover;
  868. border-radius: 4px;
  869. transition: .5s;
  870. }
  871. .two-dimensional-code:before {
  872. width: 0;
  873. height: 0;
  874. content: "";
  875. display: none;
  876. margin-left: -20px;
  877. margin-top: 40px;
  878. border-width: 10px;
  879. border-style: solid;
  880. border-color: transparent #fff transparent transparent;
  881. transition: .5s;
  882. }
  883. .two-code-box:hover {
  884. cursor: default;
  885. .two-dimensional-code {
  886. display: block;
  887. }
  888. .two-dimensional-code:before {
  889. display: block;
  890. }
  891. }
  892. .logo {
  893. width: 80px;
  894. height: 120px;
  895. display: inline-block;
  896. background-image: url("~static/gangweiIcon/z146.png");
  897. background-position: center;
  898. background-repeat: no-repeat;
  899. background-size: contain;
  900. }
  901. }
  902. .contact-right-box {
  903. //width: 170px;
  904. float: right;
  905. .right-sw-box {
  906. margin-right: 24px;
  907. h4 {
  908. @include setFontStyle(-4);
  909. color: #FFFFFF;
  910. margin-bottom: 16px;
  911. text-align: center
  912. }
  913. img {
  914. width: 100px
  915. }
  916. }
  917. div {
  918. display: inline-block
  919. }
  920. h3 {
  921. @include setFontStyle(4);
  922. color: #FFF;
  923. margin-bottom: 16px;
  924. }
  925. p {
  926. @include setFontStyle(-6);
  927. color: rgba(255, 255, 255, 0.64);
  928. margin-bottom: 8px;
  929. }
  930. a {
  931. @include setFontStyle(-6);
  932. color: #2B5CFD;
  933. }
  934. a:hover {
  935. cursor: pointer;
  936. }
  937. }
  938. }
  939. //友情链接区域
  940. .link-box {
  941. border-top: 1px solid #333B4C;
  942. border-right: 0;
  943. border-left: 0;
  944. padding: 32px 0;
  945. h4 {
  946. @include setFontStyle(-4);
  947. color: #FFF;
  948. float: left;
  949. margin-right: 48px;
  950. line-height: 22px;
  951. }
  952. .link-a-box {
  953. margin-left: 114px;
  954. line-height: 22px;
  955. a {
  956. @include setFontStyle(-6);
  957. color: rgba(255, 255, 255, 0.54);
  958. display: inline-block;
  959. margin-right: 32px;
  960. white-space: nowrap;
  961. }
  962. a:hover {
  963. color: rgba(255, 255, 255, 0.85);
  964. cursor: pointer;
  965. }
  966. }
  967. }
  968. //底部版权
  969. h5 {
  970. @include setFontStyle(-8);
  971. color: #B8B8B8;
  972. text-align: center;
  973. padding: 16px 0 24px;
  974. border-top: 1px solid #333B4C;
  975. }
  976. @media (max-width: 768px) {
  977. .phone-footer-box {
  978. margin-bottom: 70px;
  979. text-align: center;
  980. padding: 20px 0;
  981. a, p {
  982. @include setFontStyle(-10);
  983. color: #fff;
  984. padding: 6px 0
  985. }
  986. a {
  987. display: block
  988. }
  989. }
  990. }
  991. }
  992. /* 网站分页 */
  993. .client-el-pagination {
  994. text-align: center;
  995. margin-top: 36px
  996. }
  997. /* 网站通用详情页布局 */
  998. .client-details-page {
  999. background: #f9faff;
  1000. width: 100%;
  1001. padding: 24px 0;
  1002. // 时间人数
  1003. .details-visits-box {
  1004. margin-bottom: 16px;
  1005. i {
  1006. width: 20px;
  1007. height: 20px;
  1008. display: inline-block;
  1009. margin-right: 14px;
  1010. vertical-align: middle;
  1011. background-image: url("~static/images/client/newsInfor/newsInfor-details-time.svg");
  1012. }
  1013. i[type="visits"] {
  1014. background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");
  1015. }
  1016. span {
  1017. @include setFontStyle(-6);
  1018. display: inline-block;
  1019. color: #666;
  1020. margin-right: 60px;
  1021. vertical-align: middle;
  1022. }
  1023. }
  1024. //行业资讯详情外层box
  1025. .client-details-box {
  1026. width: 1260px;
  1027. margin: 0 auto;
  1028. padding: 24px;
  1029. box-sizing: border-box;
  1030. background: #FFFFFF;
  1031. border-radius: 8px;
  1032. }
  1033. // 行业资讯详情
  1034. .client-details-wrap {
  1035. width: 820px;
  1036. display: inline-block;
  1037. padding-right: 24px;
  1038. border-right: 1px solid #DCE0E8;
  1039. box-sizing: border-box;
  1040. vertical-align: top;
  1041. > h1 {
  1042. @include setFontStyle(-2);
  1043. color: rgba(0, 0, 0, 0.85);
  1044. margin-bottom: 16px;
  1045. }
  1046. //内容区域
  1047. .client-content-box {
  1048. min-height: calc(100vh - 587px);
  1049. line-height: 24px;
  1050. color: rgba(0, 0, 0, 0.64);
  1051. @include setFontStyle(-6);
  1052. margin-bottom: 70px;
  1053. p {
  1054. line-height: 24px;
  1055. }
  1056. img {
  1057. max-width: 100%;
  1058. }
  1059. h1, h2, h3, h4, h5, h6, p {
  1060. margin-bottom: 10px;
  1061. }
  1062. }
  1063. // 上一篇下一篇
  1064. .client-details-pagination {
  1065. a {
  1066. max-width: 45%;
  1067. float: left;
  1068. @include setFontStyle(-4);
  1069. color: rgba(43, 92, 253, 0.85);
  1070. display: inline-block;
  1071. @include single-line-ellipsis;
  1072. }
  1073. a:last-child {
  1074. margin-left: 10%;
  1075. float: right;
  1076. }
  1077. a:hover {
  1078. color: #1648EE;
  1079. cursor: pointer
  1080. }
  1081. }
  1082. }
  1083. // 最新新闻
  1084. .latest-news-box {
  1085. width: 300px;
  1086. padding-left: 24px;
  1087. display: inline-block;
  1088. vertical-align: top;
  1089. h4 {
  1090. @include setFontStyle(-4);
  1091. color: rgba(0, 0, 0, 0.85);
  1092. margin-bottom: 16px;
  1093. }
  1094. .latest-news-list {
  1095. li {
  1096. margin-bottom: 23px
  1097. }
  1098. a {
  1099. width: 100%;
  1100. @include setFontStyle(-4);
  1101. display: inline-block;
  1102. color: #333;
  1103. @include single-line-ellipsis;
  1104. }
  1105. a:hover {
  1106. color: #00b96b;
  1107. cursor: pointer
  1108. }
  1109. }
  1110. // 时间人数
  1111. .details-visits-box span {
  1112. margin-right: 24px;
  1113. }
  1114. }
  1115. @media (max-width: 768px) {
  1116. padding: 0;
  1117. // 时间人数
  1118. .details-visits-box {
  1119. margin-bottom: 36px;
  1120. text-align: center;
  1121. i {
  1122. width: 16px;
  1123. height: 16px;
  1124. margin-right: 6px;
  1125. background-size: cover;
  1126. }
  1127. span {
  1128. @include setFontStyle(-8);
  1129. margin-right: 24px;
  1130. line-height: 12px;
  1131. }
  1132. }
  1133. //行业资讯详情外层box
  1134. .client-details-box {
  1135. width: 100%;
  1136. }
  1137. // 行业资讯详情
  1138. .client-details-wrap {
  1139. width: 100%;
  1140. border: 0;
  1141. padding-right: 0;
  1142. > h1 {
  1143. @include setFontStyle(-4);
  1144. margin: 16px 0;
  1145. text-align: center;
  1146. font-weight: bolder;
  1147. }
  1148. //内容区域
  1149. .client-content-box {
  1150. min-height: unset;
  1151. }
  1152. // 上一篇下一篇按钮
  1153. .client-details-pagination a {
  1154. border: 1px solid rgba(43, 92, 253, 0.85);
  1155. padding: 4px 12px;
  1156. border-radius: 4px;
  1157. }
  1158. }
  1159. }
  1160. }
  1161. /* 网站通用轮播 */
  1162. /*.client-industry-information{
  1163. background-image: url("~static/images/client/index/index-industry-bg.png");
  1164. background-position: center;
  1165. padding-bottom: 80px;
  1166. // 标题
  1167. .client-title{
  1168. color: #fff;
  1169. }
  1170. // 轮播
  1171. .information-carousel-box{
  1172. width: 100%;
  1173. overflow: hidden;
  1174. }
  1175. // 轮播组件
  1176. .el-carousel--horizontal{
  1177. overflow: visible;
  1178. }
  1179. .el-carousel{
  1180. width: 1000px;
  1181. margin: 0 auto;
  1182. margin-top: 48px;
  1183. .el-carousel__container{width: 640px;height: 320px;margin: 0 auto;position: relative;}
  1184. }
  1185. .el-carousel__item{
  1186. width: 640px;
  1187. background: #FFFFFF;
  1188. border-radius: 8px;
  1189. .industry-img-box{width: 50%;height: 320px;float: left;background-repeat: no-repeat;background-size: cover;}
  1190. .industry-content-box{
  1191. height: inherit;margin-left: 50%;padding:32px;box-sizing: border-box;position: relative;
  1192. h5{@include setFontStyle(2);color: rgba(0,0,0,0.85);margin-bottom: 16px;@include multi-line-ellipsis(2);line-height: 30px;max-height: 60px;}
  1193. p{@include setFontStyle(-4);color: rgba(0,0,0,0.64);line-height: 24px;@include multi-line-ellipsis(6);margin-bottom: 24px;max-height: 144px;}
  1194. a{width: 132px;height: 32px;line-height:32px;position: absolute;bottom: 32px;}
  1195. }
  1196. }
  1197. !*.el-carousel__item.is-active{
  1198. .industry-img-box{width: 50%;}
  1199. .industry-content-box{margin-left: 50%;}
  1200. }*!
  1201. // 左右按钮
  1202. .el-carousel__arrow{width: 50px;height: 50px;background-color: rgba(43, 92, 253, 0.22);@include setFontStyle(16);color: rgba(255,255,255,0.8);}
  1203. // 左箭头
  1204. .el-carousel__arrow--left{left:-200px;}
  1205. // 右箭头
  1206. .el-carousel__arrow--right{right:-200px;}
  1207. // 指示器
  1208. .el-carousel__indicators{display: none}
  1209. }*/
  1210. /* 网站通用弹窗-申请方案 */
  1211. .application-scheme-dialog {
  1212. .el-dialog {
  1213. width: 610px;
  1214. border-radius: 8px;
  1215. }
  1216. .el-dialog__body {
  1217. padding: 30px 120px 60px;
  1218. > i {
  1219. width: 213px;
  1220. height: 92px;
  1221. display: block;
  1222. background-image: url("~static/images/client/component/nav-logo.png");
  1223. margin: 0 auto;
  1224. background-size: contain;
  1225. background-repeat: no-repeat;
  1226. background-position: center
  1227. }
  1228. p {
  1229. @include setFontStyle(-2);
  1230. color: rgba(0, 0, 0, 0.85);
  1231. text-align: center;
  1232. margin: 24px 0 36px;
  1233. }
  1234. span {
  1235. @include setFontStyle(-6);
  1236. color: #fff
  1237. }
  1238. a {
  1239. @include setFontStyle(-6);
  1240. color: #2B5CFD;
  1241. float: right;
  1242. }
  1243. // 申请注册按钮
  1244. .application-scheme-btn {
  1245. height: 40px;
  1246. line-height: 40px;
  1247. @include setFontStyle(-4);
  1248. background: #1890FF;
  1249. border-radius: 4px;
  1250. color: #FFFFFF;
  1251. text-align: center;
  1252. margin-bottom: 16px;
  1253. cursor: pointer;
  1254. }
  1255. }
  1256. // 输入框上下间距
  1257. .el-form-item {
  1258. margin-bottom: 24px
  1259. }
  1260. // 输入框左右间距
  1261. .el-input .el-input__inner {
  1262. padding: 0 15px 0 35px;
  1263. }
  1264. //输入框图标
  1265. .dialog-input-tel:after, .dialog-input-code:after {
  1266. width: 16px;
  1267. height: 16px;
  1268. content: "";
  1269. display: inline-block;
  1270. position: absolute;
  1271. top: 12px;
  1272. left: 12px;
  1273. }
  1274. .dialog-input-tel:after {
  1275. background-image: url("~static/images/client/course/course-dialog-icon1.svg");
  1276. }
  1277. .dialog-input-code:after {
  1278. background-image: url("~static/images/client/course/course-dialog-icon2.svg");
  1279. }
  1280. // 输入框-验证码
  1281. .dialog-input-code {
  1282. width: calc(100% - 132px);
  1283. }
  1284. .dialog-code-btn.el-button {
  1285. width: 120px;
  1286. box-sizing: border-box;
  1287. padding: 12px 15px;
  1288. margin-left: 8px;
  1289. }
  1290. // 滑块px
  1291. .nc-container {
  1292. .nc_wrapper {
  1293. width: 100% !important;
  1294. margin-bottom: 24px;
  1295. border-radius: 4px;
  1296. overflow: hidden;
  1297. }
  1298. .nc_scale {
  1299. .btn_slide {
  1300. color: #fff;
  1301. }
  1302. span {
  1303. width: 50px;
  1304. background: #00b96b;
  1305. border-radius: 0 4px 4px 0;
  1306. border: 1px solid transparent;
  1307. }
  1308. }
  1309. }
  1310. }
  1311. .application-scheme-result-dialog {
  1312. .el-dialog {
  1313. width: 512px;
  1314. }
  1315. .el-dialog__body {
  1316. position: relative;
  1317. height: 360px;
  1318. width: 460px;
  1319. text-align: center;
  1320. margin: 0 auto;
  1321. }
  1322. .success_icon {
  1323. position: absolute;
  1324. top: 0px;
  1325. left: 50%;
  1326. transform: translateX(-50%) translateY(-70%);
  1327. width: 142px;
  1328. height: 142px;
  1329. }
  1330. h3 {
  1331. font-size: 36px;
  1332. font-weight: 800;
  1333. color: #333333;
  1334. margin-top: 28px;
  1335. }
  1336. p {
  1337. font-size: 18px;
  1338. font-weight: 500;
  1339. color: #565656;
  1340. margin-top: 28px;
  1341. }
  1342. .my-btn {
  1343. height: 57px;
  1344. width: 257px;
  1345. text-align: center;
  1346. line-height: 57px;
  1347. border-radius: 6px;
  1348. background-color: #00b96b;
  1349. color: #fff;
  1350. font-size: 16px;
  1351. font-weight: 400;
  1352. margin: 80px auto 0;
  1353. }
  1354. }
  1355. /* 网站通用弹窗-视频播放 */
  1356. .course-video-dialog {
  1357. .el-dialog {
  1358. width: 940px;
  1359. border-radius: 8px;
  1360. }
  1361. .el-dialog__body {
  1362. padding: 14px 40px 80px;
  1363. }
  1364. // 标题
  1365. .el-dialog__title {
  1366. @include setFontStyle(-2);
  1367. color: rgba(0, 0, 0, 0.85);
  1368. }
  1369. // 视频
  1370. .course-video-box {
  1371. width: 100%;
  1372. height: 480px;
  1373. }
  1374. p {
  1375. @include setFontStyle(-4);
  1376. color: rgba(0, 0, 0, 0.65);
  1377. margin-top: 16px;
  1378. line-height: 22px
  1379. }
  1380. @media (max-width: 768px) {
  1381. .el-dialog {
  1382. width: 90%;
  1383. border-radius: 8px;
  1384. margin: 0 5%;
  1385. }
  1386. .el-dialog__body {
  1387. padding: 18px 16px;
  1388. }
  1389. // 视频
  1390. .course-video-box {
  1391. height: 180px;
  1392. }
  1393. p {
  1394. @include setFontStyle(-6);
  1395. padding: 10px 0 16px;
  1396. margin: 0
  1397. }
  1398. }
  1399. }
  1400. /* 首页行业学习详情页-通用部分 */
  1401. // banner
  1402. .industrydetails-banner {
  1403. width: 100%;
  1404. height: 400px;
  1405. background-color: #042D85;
  1406. position: relative;
  1407. .industrydetails-banner-box {
  1408. width: inherit;
  1409. height: inherit;
  1410. background-position-x: center;
  1411. background-repeat: no-repeat;
  1412. }
  1413. .free-trial-default-btn {
  1414. position: absolute;
  1415. top: 280px;
  1416. left: 50%;
  1417. margin-left: -119px;
  1418. }
  1419. @media (max-width: 768px) {
  1420. height: 150px;
  1421. .industrydetails-banner-box {
  1422. background-size: cover;
  1423. }
  1424. .free-trial-default-btn {
  1425. top: 95px;
  1426. margin-left: -61px;
  1427. }
  1428. }
  1429. }
  1430. // 发展现状
  1431. .industrydetails-develop-box {
  1432. .client-container {
  1433. padding: 48px 0 80px;
  1434. text-align: center;
  1435. }
  1436. p {
  1437. width: 480px;
  1438. display: inline-block;
  1439. @include setFontStyle(-5);
  1440. color: rgba(0, 0, 0, 0.65);
  1441. line-height: 30px;
  1442. vertical-align: middle;
  1443. margin-right: 120px;
  1444. text-align: justify;
  1445. }
  1446. img {
  1447. display: inline-block;
  1448. vertical-align: middle;
  1449. }
  1450. @media (max-width: 768px) {
  1451. .client-container {
  1452. padding: 16px 30px 48px;
  1453. display: flex;
  1454. flex-direction: column-reverse;
  1455. }
  1456. p {
  1457. width: 100%;
  1458. display: block;
  1459. @include setFontStyle(-6);
  1460. color: rgba(85, 85, 85, 1);
  1461. line-height: 24px;
  1462. margin-right: 0;
  1463. }
  1464. img {
  1465. max-width: 100%;
  1466. display: block;
  1467. vertical-align: unset;
  1468. margin-bottom: 16px;
  1469. }
  1470. }
  1471. }
  1472. // 产品和服务
  1473. .products-services-box {
  1474. width: 100%;
  1475. display: inline-block;
  1476. // 头部图片
  1477. img {
  1478. width: 640px;
  1479. height: 485px;
  1480. float: right;
  1481. }
  1482. // 内容区域
  1483. .products-services-content {
  1484. width: 520px;
  1485. float: right;
  1486. padding: 110px 12px 0;
  1487. box-sizing: border-box;
  1488. margin: 0 20px;
  1489. @include setFontStyle(-6);
  1490. h5 {
  1491. @include setFontStyle(4);
  1492. color: rgba(0, 0, 0, 0.85);
  1493. }
  1494. i {
  1495. width: 50px;
  1496. height: 5px;
  1497. display: block;
  1498. background: #3e7ce7;
  1499. margin: 24px 0;
  1500. }
  1501. p {
  1502. line-height: 24px;
  1503. color: rgba(0, 0, 0, 0.65);
  1504. margin-bottom: 56px;
  1505. text-align: justify;
  1506. }
  1507. .p-before-circle {
  1508. margin-bottom: 6px;
  1509. }
  1510. .p-before-circle:before {
  1511. content: '';
  1512. width: 6px;
  1513. height: 6px;
  1514. display: inline-block;
  1515. border-radius: 3px;
  1516. margin-right: 8px;
  1517. background: #3e7ce7;
  1518. vertical-align: middle;
  1519. }
  1520. .client-btn-box {
  1521. margin: 40px 0
  1522. }
  1523. .client-default-Btn, .client-default-white-Btn {
  1524. width: 150px;
  1525. height: 40px;
  1526. line-height: 40px;
  1527. display: inline-block;
  1528. background: #3e7ce7;
  1529. border: 1px solid #3e7ce7;
  1530. box-sizing: border-box;
  1531. }
  1532. .client-default-white-Btn {
  1533. background: #fff;
  1534. color: #3e7ce7;
  1535. }
  1536. a, div.client-default-Btn {
  1537. margin-right: 24px
  1538. }
  1539. span.client-default-Btn {
  1540. background: #fff;
  1541. color: #3e7ce7;
  1542. margin-right: 0;
  1543. }
  1544. }
  1545. @media (max-width: 768px) {
  1546. // 头部图片
  1547. img {
  1548. width: 100%;
  1549. height: auto;
  1550. float: none;
  1551. }
  1552. // 内容区域
  1553. .products-services-content {
  1554. width: 100%;
  1555. float: none;
  1556. padding: 0 10px;
  1557. margin: 0;
  1558. @include setFontStyle(-6);
  1559. h5 {
  1560. @include setFontStyle(-6);
  1561. font-weight: 700;
  1562. color: rgba(0, 0, 0, 1);
  1563. }
  1564. i {
  1565. width: 34px;
  1566. height: 3px;
  1567. margin: 10px 0;
  1568. }
  1569. p {
  1570. margin-bottom: 30px;
  1571. color: rgba(85, 85, 85, 1);
  1572. }
  1573. .client-btn-box {
  1574. text-align: center;
  1575. margin: 40px 0;
  1576. }
  1577. .client-default-Btn, .client-default-white-Btn {
  1578. width: 120px;
  1579. height: 35px;
  1580. line-height: 35px;
  1581. }
  1582. a, div.client-default-Btn {
  1583. margin-right: 16px
  1584. }
  1585. }
  1586. }
  1587. }
  1588. .products-contrary-box {
  1589. // 头部图片
  1590. img {
  1591. float: left;
  1592. }
  1593. // 内容区域
  1594. .products-services-content {
  1595. float: right;
  1596. }
  1597. }
  1598. // 考试平台和培训平台样式--多下边线
  1599. .platform-products-services {
  1600. li:not(:last-child) {
  1601. border-bottom: 1px solid #eee;
  1602. }
  1603. }
  1604. // 详情页内容
  1605. .industrydetails-content {
  1606. li {
  1607. margin-bottom: 16px;
  1608. }
  1609. i {
  1610. width: 14px;
  1611. height: 14px;
  1612. float: left;
  1613. box-sizing: border-box;
  1614. opacity: 0.8;
  1615. display: block;
  1616. border: 1px solid #13192D;
  1617. transform: rotate(45deg);
  1618. margin-right: 16px;
  1619. margin-top: 4px;
  1620. }
  1621. h5 {
  1622. @include setFontStyle(-2);
  1623. color: rgba(0, 0, 0, 0.85);
  1624. margin-bottom: 24px;
  1625. text-align: center;
  1626. }
  1627. p {
  1628. @include setFontStyle(-5);
  1629. color: rgba(0, 0, 0, 0.65);
  1630. line-height: 22px;
  1631. text-align: left;
  1632. }
  1633. @media (max-width: 768px) {
  1634. li {
  1635. margin-bottom: 10px;
  1636. }
  1637. i {
  1638. width: 10px;
  1639. height: 10px;
  1640. margin-right: 8px;
  1641. margin-top: 8px;
  1642. }
  1643. h5 {
  1644. @include setFontStyle(-4);
  1645. color: rgba(255, 255, 255, 1);
  1646. margin-bottom: 16px;
  1647. text-align: center;
  1648. font-weight: 700;
  1649. }
  1650. p {
  1651. @include setFontStyle(-6);
  1652. color: rgba(255, 255, 255, 1);
  1653. line-height: 24px;
  1654. text-align: justify;
  1655. }
  1656. }
  1657. }
  1658. // 通用平台-新闻资讯样式
  1659. .platform-news-information {
  1660. padding-bottom: 80px;
  1661. background: #f8f8f8;
  1662. ul {
  1663. margin-top: 48px;
  1664. }
  1665. li {
  1666. width: 50%;
  1667. display: inline-block;
  1668. vertical-align: top;
  1669. div {
  1670. margin: 10px;
  1671. padding: 10px 10px 10px 0;
  1672. border-bottom: 1px dashed #666;
  1673. }
  1674. img {
  1675. width: 190px;
  1676. height: 118px;
  1677. float: left;
  1678. margin-right: 24px;
  1679. }
  1680. h4 {
  1681. @include setFontStyle(-2);
  1682. color: rgba(0, 0, 0, 0.85);
  1683. @include single-line-ellipsis;
  1684. margin-bottom: 8px;
  1685. }
  1686. h4:hover {
  1687. color: #3e7ce7;
  1688. cursor: pointer;
  1689. }
  1690. span {
  1691. display: block;
  1692. @include setFontStyle(-6);
  1693. color: rgba(0, 0, 0, 0.65);
  1694. margin-bottom: 8px;
  1695. }
  1696. p {
  1697. @include setFontStyle(-6);
  1698. height: 66px;
  1699. line-height: 22px;
  1700. color: rgba(0, 0, 0, 0.65);
  1701. @include multi-line-ellipsis(4);
  1702. }
  1703. }
  1704. }
  1705. // 页面内部导航菜单(课程开发和客户案例)
  1706. .platform-menu-ul {
  1707. display: block;
  1708. margin: 0 auto;
  1709. text-align: center;
  1710. background: #F7F9FB;
  1711. li {
  1712. display: inline-block;
  1713. @include setFontStyle(-2);
  1714. padding: 24px 32px;
  1715. color: rgba(0, 0, 0, 0.64);
  1716. background: #F7F9FB;
  1717. transition: all .3s;
  1718. box-shadow: 0 2px 4px 0 rgba(43, 92, 253, 0.16);
  1719. border-bottom: 1px solid rgba(52, 99, 253, 0.08);
  1720. @include single-line-ellipsis;
  1721. cursor: pointer
  1722. }
  1723. li.active {
  1724. color: #2B5CFD;
  1725. background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);
  1726. }
  1727. li:hover {
  1728. transform: scale(1.1);
  1729. }
  1730. @media (max-width: 768px) {
  1731. background: #fff;
  1732. margin: 20px 0 0;
  1733. li {
  1734. width: 100px;
  1735. height: 30px;
  1736. line-height: 30px;
  1737. margin: 0 10px;
  1738. padding: 0;
  1739. border-radius: 5px;
  1740. border: 1px solid #00b96b;
  1741. @include setFontStyle(-4);
  1742. color: #00b96b;
  1743. background: #fff;
  1744. box-shadow: 0 2px 4px 0 rgba(43, 92, 253, 0.16);
  1745. box-sizing: border-box
  1746. }
  1747. li.active {
  1748. color: #fff;
  1749. background: #00b96b;
  1750. }
  1751. li:hover {
  1752. transform: none;
  1753. }
  1754. }
  1755. }
  1756. /* 页面课程列表 */
  1757. .course-learn-box {
  1758. // video列表
  1759. .learn-box-list {
  1760. margin: 54px -16px 0;
  1761. li {
  1762. width: 33.33%;
  1763. display: inline-block;
  1764. text-align: center;
  1765. a {
  1766. display: none;
  1767. }
  1768. div {
  1769. background: #fff;
  1770. border-radius: 8px;
  1771. margin: 0 16px 40px;
  1772. }
  1773. span {
  1774. width: 342px;
  1775. height: 192px;
  1776. display: inline-block;
  1777. margin-top: 16px;
  1778. border-radius: 4px;
  1779. overflow: hidden;
  1780. position: relative
  1781. }
  1782. i {
  1783. width: 48px;
  1784. height: 48px;
  1785. cursor: pointer;
  1786. background-image: url("~static/images/client/course/course-video-icon.svg");
  1787. display: inline-block;
  1788. position: absolute;
  1789. left: 50%;
  1790. margin-left: -24px;
  1791. z-index: 5;
  1792. top: 50%;
  1793. margin-top: -24px;
  1794. background-size: cover;
  1795. background-position: bottom;
  1796. transition: all 0.5s;
  1797. }
  1798. img {
  1799. transition: all 0.5s;
  1800. }
  1801. p {
  1802. @include setFontStyle(-4);
  1803. color: rgba(0, 0, 0, 0.65);
  1804. padding: 24px 0 24px;
  1805. }
  1806. }
  1807. li span:hover {
  1808. img {
  1809. transform: scale(1.1);
  1810. }
  1811. }
  1812. li i:hover {
  1813. background-image: url("~static/images/client/course/course-video-icon-a.svg");
  1814. background-size: cover;
  1815. background-position: bottom;
  1816. }
  1817. }
  1818. @media (max-width: 768px) {
  1819. margin: 0 6%;
  1820. // video列表
  1821. .learn-box-list {
  1822. margin: 12px 0;
  1823. li {
  1824. width: 100%;
  1825. margin-bottom: 20px;
  1826. div {
  1827. margin: 0;
  1828. padding: 0;
  1829. box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px -1px;
  1830. border-radius: 0;
  1831. }
  1832. span {
  1833. width: 100%;
  1834. height: 180px;
  1835. margin-top: 0;
  1836. border-radius: 0;
  1837. }
  1838. img {
  1839. width: 100%;
  1840. }
  1841. p {
  1842. padding: 20px 0 20px;
  1843. @include setFontStyle(-6);
  1844. color: #101010;
  1845. }
  1846. }
  1847. }
  1848. }
  1849. }
  1850. /* 底部跳转 */
  1851. .bottom-btn-box {
  1852. height: 65px;
  1853. position: fixed;
  1854. bottom: 0;
  1855. left: 0;
  1856. right: 0;
  1857. font-size: 0;
  1858. background: #fff;
  1859. z-index: 99999;
  1860. border-top: 1px solid #ccc;
  1861. li {
  1862. width: 50%;
  1863. margin: 0;
  1864. padding: 0;
  1865. }
  1866. .el-menu {
  1867. box-sizing: border-box;
  1868. padding: 10px;
  1869. height: 65px;
  1870. display: flex;
  1871. justify-content: space-between;
  1872. align-items: center;
  1873. }
  1874. .el-menu-item {
  1875. a {
  1876. width: 100%;
  1877. height: 40px;
  1878. display: inline-flex;
  1879. align-items: center;
  1880. justify-content: center;
  1881. text-align: center;
  1882. font-size: 13px;
  1883. color: #333;
  1884. border: 1px solid #00b96b;
  1885. border-radius: 8px;
  1886. box-sizing: border-box;
  1887. }
  1888. }
  1889. li:nth-child(1) {
  1890. margin-right: 20px;
  1891. span {
  1892. color: #00b96b;
  1893. font-size: 14px;
  1894. }
  1895. }
  1896. li:nth-child(2) a {
  1897. color: #fff;
  1898. background: #00b96b;
  1899. span {
  1900. color: #fff;
  1901. }
  1902. }
  1903. i {
  1904. width: 22px;
  1905. height: 22px;
  1906. background-size: cover;
  1907. display: inline-block;
  1908. margin-right: 8px;
  1909. }
  1910. li:nth-child(1) i {
  1911. background-image: url("~static/gangweiIcon/z140.png");
  1912. }
  1913. li:nth-child(2) i {
  1914. background-image: url("~static/gangweiIcon/z141.png");
  1915. }
  1916. li.is-active span {
  1917. color: #2881db;
  1918. }
  1919. li.is-active:nth-child(1) i {
  1920. background-image: url("~static/gangweiIcon/z140.png");
  1921. }
  1922. li.is-active:nth-child(2) i {
  1923. background-image: url("~static/gangweiIcon/z141.png");
  1924. }
  1925. }
  1926. /********************************* 麦塔栅格**********************************/
  1927. /*
  1928. 栅格说明:
  1929. 1.网站内容区域1200px;
  1930. 2.手机端<=768
  1931. 3.pad-------------------(769---992---1200)
  1932. pad768*1024(手机样式)
  1933. pad1024*1366(pad样式)
  1934. 4.pc---1200以上
  1935. */
  1936. // 大于768的隐藏
  1937. @media screen and (min-width: 769px) {
  1938. .mta-hidden-sm {
  1939. display: none !important;
  1940. }
  1941. }
  1942. // 小于769的隐藏
  1943. @media screen and (max-width: 769px) {
  1944. .mta-hidden-xs {
  1945. display: none !important;
  1946. }
  1947. // 提示框
  1948. .phone-message-box {
  1949. width: 88%;
  1950. min-width: unset;
  1951. top: 10% !important;
  1952. align-items: center;
  1953. text-align: center;
  1954. padding: 10px 0;
  1955. display: flex;
  1956. justify-content: center;
  1957. .el-message__icon {
  1958. margin-bottom: 0px;
  1959. }
  1960. .el-message__icon:before {
  1961. font-size: 16px;
  1962. }
  1963. }
  1964. }
  1965. /********************************* 麦塔移动端组件**********************************/
  1966. @media (max-width: 768px) {
  1967. // 移动端点击a标签背景变色bug修复
  1968. a {
  1969. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  1970. -webkit-user-select: none;
  1971. -moz-user-focus: none;
  1972. -moz-user-select: none;
  1973. }
  1974. }
  1975. /*************************** banner img *******************************/
  1976. // 首页
  1977. client-banner-box.client-banner-index {
  1978. height: 810px;
  1979. }
  1980. // 其他
  1981. .client-banner-box {
  1982. height: 730px;
  1983. width: 100%;
  1984. .client-container {
  1985. position: relative;
  1986. }
  1987. div.client-platform-banner {
  1988. height: 730px;
  1989. background-repeat: no-repeat;
  1990. background-position: center;
  1991. background-size: cover;
  1992. background-color: #fff;
  1993. .banner-btn-groups {
  1994. position: absolute;
  1995. width: auto;
  1996. height: auto;
  1997. left: 50%;
  1998. top: 460px;
  1999. transform: translate(-50%);
  2000. }
  2001. }
  2002. @media (max-width: 768px) {
  2003. width: 100%;
  2004. height: auto;
  2005. > div.client-platform-banner {
  2006. width: 100%;
  2007. height: 200px;
  2008. background-size: cover;
  2009. background-position: center;
  2010. background-repeat: no-repeat;
  2011. }
  2012. .el-carousel__indicators {
  2013. margin-bottom: 10px !important;
  2014. }
  2015. }
  2016. }
  2017. .client-new-platform-banner {
  2018. width: 100%;
  2019. height: 736px;
  2020. background-color: #fff;
  2021. background-position: center;
  2022. background-repeat: no-repeat;
  2023. @media (max-width: 768px) {
  2024. height: 160px;
  2025. background-size: cover;
  2026. }
  2027. }
  2028. /***************************** 解决方案 子页面 三个 video *************/
  2029. .client-anli-box {
  2030. height: 600px;
  2031. h4 {
  2032. font-size: 30px;
  2033. color: #333;
  2034. margin-top: 80px;
  2035. margin-bottom: 40px;
  2036. font-weight: 800;
  2037. text-align: center;
  2038. }
  2039. p {
  2040. font-size: 18px;
  2041. font-weight: 500;
  2042. text-align: center;
  2043. line-height: 36px;
  2044. width: 1000px;
  2045. margin: 0 auto 78px;
  2046. }
  2047. ul {
  2048. display: flex;
  2049. justify-content: space-between;
  2050. li {
  2051. width: 370px;
  2052. > div {
  2053. margin-right: 80px;
  2054. }
  2055. &:last-child {
  2056. > div {
  2057. margin-right: 0;
  2058. }
  2059. }
  2060. }
  2061. }
  2062. }
  2063. @media (max-width: 768px) {
  2064. .client-anli-box {
  2065. height: 50%;
  2066. margin-bottom: 10%;
  2067. h4 {
  2068. font-size: 18px;
  2069. color: #333;
  2070. margin-top: 8%;
  2071. margin-bottom: 4%;
  2072. font-weight: 800;
  2073. text-align: center;
  2074. }
  2075. p {
  2076. font-size: 14px;
  2077. font-weight: 500;
  2078. text-align: center;
  2079. line-height: 1.5;
  2080. width: 100%;
  2081. margin: 0 auto 5%;
  2082. }
  2083. ul {
  2084. display: flex;
  2085. flex-direction: column;
  2086. li {
  2087. width: 100%;
  2088. > div {
  2089. margin-right: 0;
  2090. margin-bottom: 5%;
  2091. }
  2092. &:last-child {
  2093. > div {
  2094. margin-bottom: 0;
  2095. }
  2096. }
  2097. }
  2098. }
  2099. }
  2100. }
  2101. /**************************** 解决方案 现状 *************************/
  2102. .client-xianzhuang-box {
  2103. background-image: url("~static/gangweiIcon/z90.png");
  2104. width: 100%;
  2105. height: 560px;
  2106. margin-top: 150px;
  2107. background-position: center;
  2108. background-repeat: no-repeat;
  2109. background-size: contain;
  2110. h4 {
  2111. font-size: 30px;
  2112. color: #333;
  2113. margin-top: 120px;
  2114. margin-bottom: 40px;
  2115. font-weight: 800;
  2116. text-align: center;
  2117. }
  2118. p {
  2119. font-size: 18px;
  2120. font-weight: 500;
  2121. text-align: center;
  2122. line-height: 36px;
  2123. width: 1000px;
  2124. margin: 0 auto;
  2125. }
  2126. }
  2127. @media (max-width: 768px) {
  2128. .client-xianzhuang-box {
  2129. margin-top: 50px;
  2130. background-image: none;
  2131. width: 100%;
  2132. height: 30%;
  2133. background-position: center;
  2134. background-repeat: no-repeat;
  2135. background-size: contain;
  2136. h4 {
  2137. font-size: 18px;
  2138. color: #333;
  2139. margin-top: 10%;
  2140. margin-bottom: 40px;
  2141. font-weight: 800;
  2142. text-align: center;
  2143. }
  2144. p {
  2145. font-size: 14px;
  2146. font-weight: 500;
  2147. text-align: center;
  2148. line-height: 1.5;
  2149. width: 100%;
  2150. margin: 0 auto;
  2151. }
  2152. }
  2153. }
  2154. /**************************** 解决方案 痛点 ************************/
  2155. .client-tongdian-box {
  2156. h4 {
  2157. font-size: 30px;
  2158. color: #333;
  2159. margin-top: 80px;
  2160. margin-bottom: 40px;
  2161. font-weight: 800;
  2162. text-align: center;
  2163. }
  2164. ul {
  2165. display: flex;
  2166. justify-content: center;
  2167. li {
  2168. div {
  2169. margin: 0 51px 0 0;
  2170. width: 380px;
  2171. height: 280px;
  2172. background-size: contain;
  2173. background-repeat: no-repeat;
  2174. background-position: center;
  2175. text-align: center;
  2176. i {
  2177. width: 110px;
  2178. height: 88px;
  2179. margin-top: 50px;
  2180. display: inline-block;
  2181. background-size: contain;
  2182. background-repeat: no-repeat;
  2183. background-position: center;
  2184. }
  2185. p {
  2186. text-align: center;
  2187. color: #fffefe;
  2188. font-size: 18px;
  2189. font-weight: 800;
  2190. line-height: 30px;
  2191. width: 220px;
  2192. margin: 20px auto 0;
  2193. }
  2194. }
  2195. }
  2196. }
  2197. }
  2198. @media (max-width: 768px) {
  2199. .client-tongdian-box {
  2200. h4 {
  2201. font-size: 18px;
  2202. color: #333;
  2203. margin-top: 10%;
  2204. margin-bottom: 40px;
  2205. font-weight: 800;
  2206. text-align: center;
  2207. }
  2208. ul {
  2209. display: flex;
  2210. flex-direction: column;
  2211. li {
  2212. padding: 10px;
  2213. border: 1px solid #ccc;
  2214. border-radius: 8px;
  2215. margin-bottom: 10px;
  2216. box-shadow: 0 2px 3px #ccc;
  2217. div {
  2218. margin: 0 20px 0 0;
  2219. width: 100%;
  2220. height: auto;
  2221. background-size: contain;
  2222. background-repeat: no-repeat;
  2223. background-position: center;
  2224. text-align: center;
  2225. display: flex;
  2226. justify-content: flex-start;
  2227. i {
  2228. width: 90px;
  2229. height: 90px;
  2230. margin-top: 3%;
  2231. background-color: #ccc;
  2232. display: inline-block;
  2233. background-size: 70%;
  2234. background-repeat: no-repeat;
  2235. background-position: center;
  2236. }
  2237. p {
  2238. text-align: left;
  2239. color: #333;
  2240. font-size: 14px;
  2241. font-weight: 500;
  2242. line-height: 1.5;
  2243. width: 80%;
  2244. margin: 20px 0 0 20px;
  2245. }
  2246. }
  2247. }
  2248. }
  2249. }
  2250. }
  2251. /**************************** 按钮组 申请方案+在线咨询、免费使用+在线咨询 **************************/
  2252. .btn-groups.center {
  2253. margin-top: 60px;
  2254. text-align: center;
  2255. margin-bottom: 120px;
  2256. .btn-item {
  2257. margin-right: 20px;
  2258. }
  2259. }
  2260. @media (max-width: 768px) {
  2261. .btn-groups.center {
  2262. margin-top: 10%;
  2263. margin-bottom: 10%;
  2264. }
  2265. }
  2266. // H5 按钮居中
  2267. @media (max-width: 768px) {
  2268. .btn-groups {
  2269. margin-top: 10%;
  2270. margin-bottom: 10%;
  2271. text-align: center;
  2272. }
  2273. }
  2274. /******************************* 万人高并发 客户案例 **************************************/
  2275. .client-kehuanli-box.experience-swiper-box {
  2276. margin-top: 60px;
  2277. margin-bottom: 140px;
  2278. .experience-content-box {
  2279. height: 295px;
  2280. box-shadow: none;
  2281. padding: 16px;
  2282. box-sizing: border-box;
  2283. margin: 0 4% 40px;
  2284. .anli-content {
  2285. h3 {
  2286. text-align: center;
  2287. font-weight: 800;
  2288. font-size: 18px;
  2289. margin-top: 10px;
  2290. }
  2291. p {
  2292. font-weight: 400;
  2293. color: #333;
  2294. font-size: 14px;
  2295. -webkit-line-clamp: 3;
  2296. text-overflow: ellipsis;
  2297. -o-text-overflow: ellipsis;
  2298. overflow: hidden;
  2299. word-wrap: break-word;
  2300. display: -webkit-box;
  2301. white-space: normal !important;
  2302. -webkit-box-orient: vertical;
  2303. }
  2304. img {
  2305. width: 100%;
  2306. height: 200px;
  2307. }
  2308. }
  2309. }
  2310. // 分页
  2311. .swiper-pagination-style {
  2312. width: 76px;
  2313. margin-left: -30px;
  2314. bottom: 25px;
  2315. }
  2316. // 左右滑动
  2317. .experience-swiper-tip {
  2318. margin: 0 auto;
  2319. font-size: 14px;
  2320. font-weight: 400;
  2321. text-align: center
  2322. }
  2323. @media (max-width: 768px) {
  2324. margin-top: 20px;
  2325. margin-bottom: 20px;
  2326. h4 {
  2327. text-align: center;
  2328. font-weight: 800;
  2329. font-size: 18px;
  2330. color: #333;
  2331. line-height: 1.5;
  2332. }
  2333. .experience-content-box {
  2334. padding: 0;
  2335. margin: 20px 0 20px;
  2336. }
  2337. }
  2338. }
  2339. .client-kehuanli-box {
  2340. position: relative;
  2341. .anli-box-wrap {
  2342. width: 1100px;
  2343. height: 320px;
  2344. margin: 0 auto;
  2345. background: #fff;
  2346. padding: 20px;
  2347. border-radius: 8px;
  2348. }
  2349. .anli-box {
  2350. width: 1100px;
  2351. height: 320px;
  2352. margin: 0 auto;
  2353. background: #fff;
  2354. padding: 20px;
  2355. border-radius: 8px;
  2356. z-index: 1;
  2357. }
  2358. h4 {
  2359. text-align: center;
  2360. font-weight: 800;
  2361. font-size: 30px;
  2362. color: #333;
  2363. line-height: 50px;
  2364. }
  2365. .left-bg {
  2366. width: 353px;
  2367. height: 293px;
  2368. background: #46C37B;
  2369. position: absolute;
  2370. top: 0;
  2371. left: 0;
  2372. z-index: 0;
  2373. opacity: 0.33;
  2374. }
  2375. .right-bg {
  2376. width: 270px;
  2377. height: 150px;
  2378. background: #A9D49C;
  2379. position: absolute;
  2380. right: 0;
  2381. bottom: -80px;
  2382. z-index: 0;
  2383. opacity: 0.33;
  2384. }
  2385. .center-bg {
  2386. width: 160px;
  2387. height: 150px;
  2388. background: #A9D49C;
  2389. position: absolute;
  2390. left: 600px;
  2391. bottom: -80px;
  2392. z-index: 0;
  2393. opacity: 0.33;
  2394. }
  2395. .el-carousel__container {
  2396. height: 100% !important;
  2397. }
  2398. .el-carousel__item {
  2399. background: #fff;
  2400. border-radius: 8px;
  2401. }
  2402. }
  2403. /****************************** 青谷解决方案 ******************************************/
  2404. .client-fangan-box {
  2405. h4 {
  2406. font-size: 30px;
  2407. color: #333;
  2408. margin-top: 80px;
  2409. margin-bottom: 40px;
  2410. font-weight: 800;
  2411. text-align: center;
  2412. }
  2413. .btn-groups {
  2414. margin-top: 50px;
  2415. }
  2416. @media (max-width: 768px) {
  2417. h4 {
  2418. font-size: 18px;
  2419. color: #333;
  2420. margin-top: 30px;
  2421. margin-bottom: 40px;
  2422. font-weight: 800;
  2423. text-align: center;
  2424. }
  2425. .btn-groups {
  2426. margin-top: 30px;
  2427. }
  2428. }
  2429. }
  2430. /******************************* 新闻关键词 *******************************************/
  2431. a.keyword {
  2432. color: #00b96b !important;
  2433. }
  2434. /**************** 分页 ****************/
  2435. .el-pagination.is-background .el-pager li:not(.disabled).active {
  2436. background-color: #00B96B;
  2437. }
  2438. .el-pagination.is-background .el-pager li:not(.disabled):hover {
  2439. color: #00B96B;
  2440. }
  2441. .el-pagination.is-background .el-pager li:not(.disabled).active:hover {
  2442. color: #fff;
  2443. }