cus-client-common.scss 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357
  1. @import "../base/utils";
  2. /************************ 通用class样式 author: TX date:2020-07-30 **********************/
  3. /* 页面样式 */
  4. body, html, #app {padding: 0;margin: 0;@include setFontStyle(0);}
  5. /* 内外边距通常让各个浏览器样式的表现位置不同 */
  6. 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{margin:0;padding:0;}
  7. /* HTML5 媒体文件跟 img 保持一致 */
  8. audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
  9. /* 默认不显示下划线,保持页面简洁 */
  10. ins,a{text-decoration:none;cursor:pointer;}
  11. /* 去掉列表前的标识, li 会继承 */
  12. ol,ul,dl,dt,dd{
  13. list-style:none;
  14. margin: 0;
  15. padding: 0;
  16. letter-spacing: 0;
  17. word-spacing: 0;
  18. font-size: 0;}
  19. /* 让标题都自定义, 适应多个系统应用 */
  20. h1,h2,h3,h4,h5,h6,p{font-weight:normal;margin: 0;}
  21. /* 外边距 */
  22. .m5{margin:5px;}
  23. .m10 {margin: 10px;}
  24. .m15 {margin: 15px;}
  25. .m20 {margin: 20px;}
  26. .m25 {margin: 25px;}
  27. .m30 {margin: 30px;}
  28. .m35 {margin: 35px;}
  29. .m40 {margin: 40px;}
  30. /* 外边距 上下边距 左右居中 */
  31. .ma0{margin:0 auto;}
  32. .ma5{margin:5px auto;}
  33. .ma10{margin:10px auto;}
  34. .ma15{margin:15px auto;}
  35. .ma20{margin:20px auto;}
  36. .ma25{margin:25px auto;}
  37. .ma30{margin:30px auto;}
  38. .ma35{margin:35px auto;}
  39. .ma40{margin:40px auto;}
  40. /* 上外边距 */
  41. .mt5 {margin-top: 5px;}
  42. .mt10 {margin-top: 10px;}
  43. .mt15 {margin-top: 15px;}
  44. .mt20 {margin-top: 20px;}
  45. .mt25 {margin-top: 25px;}
  46. .mt30 {margin-top: 30px;}
  47. .mt35 {margin-top: 35px;}
  48. .mt40 {margin-top: 40px;}
  49. .mt48 {margin-top: 48px;}
  50. /* 下外边距 */
  51. .mb5 {margin-bottom: 5px;}
  52. .mb10 {margin-bottom: 10px;}
  53. .mb15 {margin-bottom: 15px;}
  54. .mb20 {margin-bottom: 20px;}
  55. .mb25 {margin-bottom: 25px;}
  56. .mb30 {margin-bottom: 30px;}
  57. .mb35 {margin-bottom: 35px;}
  58. .mb40 {margin-bottom: 40px;}
  59. /* 左外边距 */
  60. .ml5 {margin-left: 5px;}
  61. .ml10 {margin-left: 10px;}
  62. .ml15 {margin-left: 15px;}
  63. .ml20 {margin-left: 20px;}
  64. .ml25 {margin-left: 25px;}
  65. .ml30 {margin-left: 30px;}
  66. .ml35 {margin-left: 35px;}
  67. .ml40 {margin-left: 40px;}
  68. /* 右外边距 */
  69. .mr5 {margin-right: 5px;}
  70. .mr10 {margin-right: 10px;}
  71. .mr15 {margin-right: 15px;}
  72. .mr20 {margin-right: 20px;}
  73. .mr25 {margin-right: 25px;}
  74. .mr30 {margin-right: 30px;}
  75. .mr35 {margin-right: 35px;}
  76. .mr40 {margin-right: 40px;}
  77. /*文字对齐方式*/
  78. .tl{text-align:left;}
  79. .tr{text-align:right;}
  80. .tc{text-align:center;}
  81. /*字体大小*/
  82. .fs_12{font-size:12px;}
  83. .fs_14{font-size:14px;}
  84. .fs_16{font-size:16px;}
  85. .fs_18{font-size:18px;}
  86. .fs_20{font-size:20px;}
  87. .fs_22{font-size:22px;}
  88. .fs_24{font-size:24px;}
  89. .fs_26{font-size:26px;}
  90. .fs_28{font-size:28px;}
  91. .fs_30{font-size:30px;}
  92. /* 清除浮动-父级使用 */
  93. .fn-clear:after{content:" ";height:0;display:block;font-size:0;visibility:hidden;clear:both;}
  94. /* 清除元素间隙 */
  95. .fn-clear-gap{font-size:0;list-style:none;margin: 0;padding: 0;letter-spacing: 0;word-spacing: 0;}
  96. /* 隐藏, 通常用来与 JS 配合 */
  97. .fn-hide{display:none;}
  98. /* 隐藏多余内容*/
  99. .fn-hidden{overflow: hidden}
  100. /* 文本超出省略号显示 (一行) ------ 使用方式:@include single-line-ellipsis; */
  101. @mixin single-line-ellipsis {text-overflow: ellipsis;overflow: hidden;word-wrap: break-word;white-space: nowrap;word-break: break-all;}
  102. /* 文本超出省略号显示 (多行),括号里传行数 ------ 使用方式:@include multi-line-ellipsis(3); */
  103. @mixin multi-line-ellipsis($rows){-webkit-line-clamp:$rows;text-overflow: ellipsis;-o-text-overflow: ellipsis;overflow: hidden;word-wrap: break-word;display: -webkit-box;white-space: normal !important;-webkit-box-orient: vertical;}
  104. /************************ 网站公共class样式 author: TX date:2020-07-30 **********************/
  105. /**************** 网站框架 ****************/
  106. .website-frame{
  107. font-family: "PingFang SC","微软雅黑", Arial, sans-serif;
  108. color: #2C3E50;
  109. min-width: 1240px;
  110. // head移动端响应式
  111. @media (max-width: 768px){min-width: unset;}
  112. }
  113. /* 饿了么右侧生成的间距 */
  114. .el-popup-parent--hidden{
  115. padding-right:0 !important
  116. }
  117. /* 网站主体部分 */
  118. .client-container{
  119. width: 1260px;margin: 0 auto;
  120. @media (max-width: 768px){width: auto;padding: 0 15px;max-width: 100%;box-sizing: border-box;}
  121. }
  122. .client-container-middle{width: 960px;margin: 0 auto;}
  123. /**************** 网站头部 ****************/
  124. /* 网站头部导航栏 */
  125. .client-head{
  126. width: 100%;
  127. height: 72px;
  128. z-index: 999;
  129. background: #fff;
  130. position: fixed;
  131. top:0;
  132. //box-shadow: -5px 0px 12px 4px #6bbf71;
  133. //头部布局
  134. .head-layout{height:72px;display: flex;justify-content: space-between;@include setFontStyle(-4);}
  135. //头部导航
  136. .header-nav{
  137. >span,>a{margin: 0 30px;color: #333333;}
  138. >a:last-child{margin-right: 0;}
  139. >a:visited{color: #333333;}
  140. >a.active {color: #00B96B;position: relative;}
  141. .active:before{
  142. content: '';width: 88%;height: 2px;background-color:#00B96B;
  143. display: block;position: absolute;bottom: -6px;left: 6%;
  144. }
  145. // 导航按钮
  146. .head-nav-btn.active{position: relative;}
  147. .head-nav-btn.active:before{width: 70%;bottom: -10px;left: 4%;}
  148. }
  149. //头部左侧区域
  150. .head-container-box{
  151. display: flex;
  152. width: 100%;
  153. justify-content: space-between;
  154. align-items: center;
  155. //头部图标
  156. .client-head-img{width: 112px;height:51px;display: inline-block;background-image: url("~static/images/client/component/nav-logo.png");background-repeat: no-repeat;background-position: center;background-size: cover;margin-right: 40px;}
  157. }
  158. //头部右侧区域
  159. .head-right{
  160. display: flex;align-items:center;position: relative;border: 1px solid #00B96B;border-radius: 18px;
  161. >a,.right-tel-btn{width:85px;padding: 8px 0;@include setFontStyle(-7);display: inline-block;color:#00B96B;
  162. text-align: center;cursor: pointer;}
  163. .right-tel-btn{color: #fff;background: #00B96B;position: relative;border-radius: 0 18px 18px 0;cursor: default;}
  164. >a:hover{cursor: pointer;}
  165. }
  166. // head移动端响应式
  167. @media (max-width: 768px){
  168. // head
  169. height: 60px;box-shadow: unset;border-bottom: 1px solid #e7e7e7;
  170. //头部布局
  171. .head-layout{height:60px;}
  172. //头部左侧区域 logo
  173. .head-container-box{
  174. justify-content: space-between;height: 60px;align-items: center;padding:0;
  175. .client-head-img{width: 92px;height: 46px;background-size: contain;margin:0;}
  176. }
  177. // 手机菜单关闭
  178. .head-nav-up{height: 0;display:none;opacity: 0;}
  179. // 手机菜单开启
  180. .head-nav-down{height: 100vh;display:block;opacity: 1;}
  181. // 咨询电话
  182. .phone-tel-box{color: rgb(0, 84, 145);font-size: 14px;font-weight: bold;line-height: 60px;}
  183. // 按钮
  184. .phone-nav-btn{width:30px;height:30px;background-image: url("~static/images/client/component/head-btn-icon.svg");}
  185. // 布局
  186. .head-layout{display: block}
  187. }
  188. }
  189. /* 导航二级菜单 */
  190. .head-popper-box{
  191. width: 920px;display: flex;align-items: center;
  192. // 箭头
  193. .popper__arrow::after {
  194. content: ' ';width: 0;height: 0;overflow: hidden;position: absolute;
  195. border-width: 6px;border-style: dashed dashed solid ;
  196. border-color: transparent transparent #00B96B !important;
  197. top:-12px;
  198. }
  199. // 列表
  200. .head-popper-item{
  201. width: 23%;display: flex;margin: 16px 1%;align-items: center;
  202. i{width: 34px;height: 34px;background-size: contain;display: inline-block;margin-right: 16px;background-repeat:no-repeat;background-position: center;}
  203. .head-popper-title{@include setFontStyle(-6);color: #333;margin-bottom: 4px;display: inline-block;}
  204. .head-popper-des{display:block;@include setFontStyle(-8);color: #9c9c9c;}
  205. }
  206. }
  207. .head-popper-box:before{
  208. content: ' ';width: 100%;height: 2px;position: absolute;
  209. left: 0;top: 0;background-color: #00b96b;border-radius: 4px 4px 0 0;
  210. }
  211. /* 产品 二级菜单 */
  212. .cp-popper-box{
  213. margin-top: 24px!important;
  214. // 列表
  215. .head-popper-item:nth-child(1){i{background-image:url("~static/images/client/component/head-cp-icon1.png");} }
  216. .head-popper-item:nth-child(2){i{background-image:url("~static/images/client/component/head-cp-icon2.png");} }
  217. .head-popper-item:nth-child(3){i{background-image:url("~static/images/client/component/head-cp-icon3.png");} }
  218. .head-popper-item:nth-child(4){i{background-image:url("~static/images/client/component/head-cp-icon4.png");} }
  219. }
  220. /* 解决方案 二级菜单 */
  221. .jj-popper-box{
  222. padding: 24px 42px;box-sizing: border-box;margin-top: 24px!important;
  223. // head-popper-content
  224. .head-popper-content{width: 100%;}
  225. // 横线
  226. em{width: 800px;height: 1px;display: block;margin:10px auto 24px;background: #f2f2f2;}
  227. // 标题
  228. h3{font-size: 16px;font-weight: 700;text-align: left;color: #333333;margin-left: 12px;}
  229. // 列表行
  230. .head-popper-cj-row,.head-popper-hy-row{display: flex;align-items: center;flex-wrap: wrap;}
  231. // 场景解决方案 - icon
  232. .head-popper-cj-row{
  233. .head-popper-item:nth-child(1){i{background-image:url("~static/images/client/component/head-jj-icon1.png");} }
  234. .head-popper-item:nth-child(2){i{background-image:url("~static/images/client/component/head-jj-icon2.png");} }
  235. .head-popper-item:nth-child(3){i{background-image:url("~static/images/client/component/head-jj-icon3.png");} }
  236. .head-popper-item:nth-child(4){i{background-image:url("~static/images/client/component/head-jj-icon4.png");} }
  237. }
  238. // 行业解决方案 - icon
  239. .head-popper-hy-row{
  240. .head-popper-item:nth-child(1){i{background-image:url("~static/images/client/component/head-jj-icon5.png");} }
  241. .head-popper-item:nth-child(2){i{background-image:url("~static/images/client/component/head-jj-icon6.png");} }
  242. .head-popper-item:nth-child(3){i{background-image:url("~static/images/client/component/head-jj-icon7.png");} }
  243. .head-popper-item:nth-child(4){i{background-image:url("~static/images/client/component/head-jj-icon8.png");} }
  244. .head-popper-item:nth-child(5){i{background-image:url("~static/images/client/component/head-jj-icon9.png");} }
  245. .head-popper-item:nth-child(6){i{background-image:url("~static/images/client/component/head-jj-icon10.png");} }
  246. .head-popper-item:nth-child(7){i{background-image:url("~static/images/client/component/head-jj-icon11.png");} }
  247. }
  248. }
  249. /* 免费注册 二级菜单 */
  250. .system-popper-box{
  251. width: 450px;margin-top: 12px!important;
  252. .head-popper-item{width: 50%;margin: 16px auto;}
  253. .head-popper-item:nth-child(1){i{background-image:url("~static/images/client/component/head-exam-icon.png");} }
  254. .head-popper-item:nth-child(2){i{background-image:url("~static/images/client/component/head-train-icon.png");} }
  255. }
  256. /* 网站头部导栏 - 面包屑 */
  257. .client-breadcrumb-box {
  258. width: 1260px;
  259. font-size: 16px;
  260. margin: 24px auto;
  261. .st-breadcrumb{
  262. margin-left: 24px;
  263. a:last-child{
  264. .breadcrumb-div::after{display: none;}
  265. }
  266. }
  267. .st-breadcrumb-item {display: inline-block;vertical-align: middle;color: #4a73fd;text-decoration: none;}
  268. .st-breadcrumb-item:hover {cursor: pointer;}
  269. .st-breadcrumb-item:after {width: 11px;height: 16px;content: '';display: inline-block;padding: 0 16px;vertical-align: middle;zoom:0.8;-moz-transform:scale(0.8,0.8);
  270. background-image: url("~static/images/client/component/breadcrumb-icon.svg");background-repeat: no-repeat;background-position: center;}
  271. .breadcrumb-div{display: inline-block;vertical-align: middle;}
  272. .st-breadcrumb-item-last {display: inline-block;text-decoration: none;color: #333;vertical-align: middle;}
  273. .st-breadcrumb-item-last:hover {cursor: default;}
  274. // IE11兼容写法
  275. @media all and (-ms-high-contrast:none) {
  276. *::-ms-backdrop, .st-breadcrumb-item-last { margin-left: -10px;}
  277. }
  278. // IE10兼容写法
  279. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  280. .st-breadcrumb-item-last { margin-left: -10px;}
  281. }
  282. }
  283. /**************** 网站内容 ****************/
  284. /* 网站标题 */
  285. .client-title{
  286. @include setFontStyle(10);color: #333;letter-spacing: 0;padding-top: 80px;text-align: center;font-weight: 800;
  287. // head移动端响应式
  288. @media (max-width: 768px){@include setFontStyle(-2);padding-top: 20px;font-weight: 700;color: rgb(16, 16, 16);}
  289. }
  290. /* 网站副标题 */
  291. .client-subtitle-title{
  292. width: 650px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 30px;margin:0 auto;margin-top: 16px;text-align: center;
  293. @media (max-width: 768px){width: 100%;text-align: justify;@include setFontStyle(-6);line-height: 24px;}
  294. }
  295. // 一行副标题
  296. .client-subtitle-one-row{
  297. @include setFontStyle(-2);color: #565656;margin: 40px 0 ;text-align: center;
  298. }
  299. .client-subtitle-title-big{
  300. width: 1000px;padding:0 100px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 30px;margin:0 auto;margin-top: 48px;text-align: center;
  301. @media (max-width: 768px){width: 100%;text-align: justify;margin-top: 24px;padding: 0;@include setFontStyle(-6);line-height: 24px;}
  302. }
  303. /* 网站通用按钮 */
  304. .client-default-Btn{display: block;@include setFontStyle(-4);background: #2B5CFD;color: rgba(255, 255, 255, 0.85);border-radius: 4px;transition: .3s all linear;text-align: center;}
  305. .client-default-Btn:hover{background: #2249C9;cursor: pointer;}
  306. // 白色
  307. .client-default-white-Btn{display: block;@include setFontStyle(-4);background: #fff;color: #2B5CFD;border-radius: 4px;transition: .3s all linear;text-align: center;}
  308. .client-default-white-Btn:hover{background: #fff;cursor: pointer;}
  309. // 免费试用按钮
  310. .free-trial-default-btn{
  311. width: 238px;height: 40px;line-height: 40px;margin: 40px auto 0;display: block;@include setFontStyle(-4);background: #3e7ee7;
  312. color: rgba(255, 255, 255, 0.85);border-radius: 4px;transition: .3s all linear;text-align: center;
  313. @media (max-width: 768px){width: 122px;height: 35px;line-height: 35px;margin: 16px auto 28px;}
  314. }
  315. .free-trial-default-btn:hover{cursor: pointer;}
  316. /* 网站底部footer */
  317. .client-footer{
  318. background: #1E2534;padding-bottom: 50px;
  319. //footer内容区域
  320. .contact-box{
  321. padding-top: 40px;
  322. .contact-left-box{
  323. display: inline-block;
  324. dl{display: inline-block;margin-right: 48px;margin-bottom: 40px;vertical-align: top;}
  325. dt{@include setFontStyle(-4);color: #FFFFFF;margin-bottom: 24px;}
  326. dd,dd a{@include setFontStyle(-6);color: rgba(255,255,255,0.64);margin-bottom: 8px;}
  327. dd:hover,dd a:hover{color: rgba(255,255,255,0.85);cursor: pointer}
  328. // 二维码
  329. .two-code-box{position: relative;}
  330. .two-dimensional-code{width: 110px;height: 110px;background-color: #fff;background-image: url("~static/images/client/component/two-dimensional-code.jpg");display: none;position: absolute;left: 85px;top:-40px;background-size: cover;border-radius: 4px;transition: .5s; }
  331. .two-dimensional-code:before{width: 0;height: 0;content: "";display: none;margin-left: -20px;margin-top: 40px;border-width: 10px;border-style: solid;border-color: transparent #fff transparent transparent;transition: .5s; }
  332. .two-code-box:hover{
  333. cursor: default;
  334. .two-dimensional-code{display: block;}
  335. .two-dimensional-code:before{display: block;}
  336. }
  337. .logo {
  338. width: 80px;
  339. height: 120px;
  340. display: inline-block;
  341. background-image:url("~static/gangweiIcon/z146.png") ;
  342. background-position: center;
  343. background-repeat: no-repeat;
  344. background-size: contain;
  345. }
  346. }
  347. .contact-right-box{
  348. //width: 170px;
  349. float: right;
  350. .right-sw-box{
  351. margin-right: 24px;
  352. h4{@include setFontStyle(-4);color: #FFFFFF;margin-bottom: 16px;text-align: center}
  353. img{width: 100px}
  354. }
  355. div{display: inline-block}
  356. h3{@include setFontStyle(4);color: #FFF;margin-bottom: 16px;}
  357. p{@include setFontStyle(-6);color: rgba(255,255,255,0.64);margin-bottom: 8px;}
  358. a{@include setFontStyle(-6);color: #2B5CFD;}
  359. a:hover{cursor: pointer;}
  360. }
  361. }
  362. //友情链接区域
  363. .link-box{
  364. border-top: 1px solid #333B4C;
  365. border-right: 0;
  366. border-left: 0;
  367. padding: 32px 0;
  368. h4{@include setFontStyle(-4);color: #FFF;float: left;margin-right: 48px;line-height: 22px;}
  369. .link-a-box{
  370. margin-left: 114px;
  371. line-height: 22px;
  372. a{@include setFontStyle(-6);color: rgba(255,255,255,0.54);display:inline-block;margin-right: 32px;white-space: nowrap;}
  373. a:hover{color: rgba(255,255,255,0.85);cursor: pointer;}
  374. }
  375. }
  376. //底部版权
  377. h5{@include setFontStyle(-8);color: #B8B8B8;text-align: center;padding: 16px 0 24px;border-top: 1px solid #333B4C;}
  378. @media (max-width: 768px) {
  379. .phone-footer-box {
  380. margin-bottom: 70px;
  381. text-align: center;padding: 20px 0;
  382. a,p{@include setFontStyle(-10);color: #fff;padding: 6px 0}
  383. a{display: block}
  384. }
  385. }
  386. }
  387. /* 网站分页 */
  388. .client-el-pagination{text-align: center;margin-top: 36px}
  389. /* 网站通用详情页布局 */
  390. .client-details-page{
  391. background: #f9faff;
  392. width: 100%;
  393. padding: 24px 0;
  394. // 时间人数
  395. .details-visits-box{
  396. margin-bottom: 16px;
  397. i{width: 20px;height: 20px;display: inline-block;margin-right: 14px;vertical-align: middle;background-image: url("~static/images/client/newsInfor/newsInfor-details-time.svg");}
  398. i[type="visits"]{background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");}
  399. span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;}
  400. }
  401. //行业资讯详情外层box
  402. .client-details-box{
  403. width: 1260px;
  404. margin: 0 auto;
  405. padding: 24px;
  406. box-sizing: border-box;
  407. background: #FFFFFF;
  408. border-radius: 8px;
  409. }
  410. // 行业资讯详情
  411. .client-details-wrap{
  412. width: 820px;
  413. display: inline-block;
  414. padding-right: 24px;
  415. border-right:1px solid #DCE0E8;
  416. box-sizing: border-box;
  417. vertical-align: top;
  418. >h1{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 16px;}
  419. //内容区域
  420. .client-content-box{
  421. min-height: calc(100vh - 587px);
  422. line-height: 24px;
  423. color: rgba(0,0,0,0.64);
  424. @include setFontStyle(-6);
  425. margin-bottom: 70px;
  426. p{line-height: 22px;}
  427. img{max-width: 100%;}
  428. h1,h2,h3,h4,h5,h6,p{margin-bottom: 10px;}
  429. }
  430. // 上一篇下一篇
  431. .client-details-pagination{
  432. a{max-width: 45%;float: left;@include setFontStyle(-4);color: rgba(43,92,253,0.85);display: inline-block;@include single-line-ellipsis;}
  433. a:last-child{margin-left: 10%;float: right;}
  434. a:hover{color: #1648EE;cursor: pointer}
  435. }
  436. }
  437. // 最新新闻
  438. .latest-news-box{
  439. width: 300px;
  440. padding-left: 24px;
  441. display: inline-block;
  442. vertical-align: top;
  443. h4{@include setFontStyle(-4);color: rgba(0,0,0,0.85);margin-bottom: 16px;}
  444. .latest-news-list{
  445. li{margin-bottom: 23px}
  446. a{width: 100%;@include setFontStyle(-4);display:inline-block;color: #333;@include single-line-ellipsis;}
  447. a:hover{color: #00b96b;cursor: pointer}
  448. }
  449. // 时间人数
  450. .details-visits-box span{margin-right: 24px;}
  451. }
  452. @media (max-width: 768px) {
  453. padding: 0;
  454. // 时间人数
  455. .details-visits-box{
  456. margin-bottom: 36px;text-align: center;
  457. i{width: 16px;height: 16px;margin-right: 6px;background-size: cover;}
  458. span{@include setFontStyle(-8);margin-right: 24px;line-height: 12px;}
  459. }
  460. //行业资讯详情外层box
  461. .client-details-box{width: 100%;}
  462. // 行业资讯详情
  463. .client-details-wrap{
  464. width: 100%;border: 0;padding-right:0;
  465. >h1{@include setFontStyle(-4);margin: 16px 0;text-align: center;font-weight: bolder;}
  466. //内容区域
  467. .client-content-box{
  468. min-height:unset;
  469. }
  470. // 上一篇下一篇按钮
  471. .client-details-pagination a{border: 1px solid rgba(43, 92, 253, 0.85);padding: 4px 12px;border-radius: 4px;}
  472. }
  473. }
  474. }
  475. /* 网站通用轮播 */
  476. /*.client-industry-information{
  477. background-image: url("~static/images/client/index/index-industry-bg.png");
  478. background-position: center;
  479. padding-bottom: 80px;
  480. // 标题
  481. .client-title{
  482. color: #fff;
  483. }
  484. // 轮播
  485. .information-carousel-box{
  486. width: 100%;
  487. overflow: hidden;
  488. }
  489. // 轮播组件
  490. .el-carousel--horizontal{
  491. overflow: visible;
  492. }
  493. .el-carousel{
  494. width: 1000px;
  495. margin: 0 auto;
  496. margin-top: 48px;
  497. .el-carousel__container{width: 640px;height: 320px;margin: 0 auto;position: relative;}
  498. }
  499. .el-carousel__item{
  500. width: 640px;
  501. background: #FFFFFF;
  502. border-radius: 8px;
  503. .industry-img-box{width: 50%;height: 320px;float: left;background-repeat: no-repeat;background-size: cover;}
  504. .industry-content-box{
  505. height: inherit;margin-left: 50%;padding:32px;box-sizing: border-box;position: relative;
  506. 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;}
  507. 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;}
  508. a{width: 132px;height: 32px;line-height:32px;position: absolute;bottom: 32px;}
  509. }
  510. }
  511. !*.el-carousel__item.is-active{
  512. .industry-img-box{width: 50%;}
  513. .industry-content-box{margin-left: 50%;}
  514. }*!
  515. // 左右按钮
  516. .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);}
  517. // 左箭头
  518. .el-carousel__arrow--left{left:-200px;}
  519. // 右箭头
  520. .el-carousel__arrow--right{right:-200px;}
  521. // 指示器
  522. .el-carousel__indicators{display: none}
  523. }*/
  524. /* 网站通用弹窗-申请方案 */
  525. .application-scheme-dialog{
  526. .el-dialog{width: 610px;border-radius: 8px;}
  527. .el-dialog__body{
  528. padding: 30px 120px 60px;
  529. >i{width:213px;height:92px;display: block;background-image: url("~static/images/client/component/nav-logo.png");margin: 0 auto;background-size: contain;background-repeat: no-repeat;background-position: center}
  530. p{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin:24px 0 36px;}
  531. span{@include setFontStyle(-6);color: #fff}
  532. a{@include setFontStyle(-6);color: #2B5CFD;float: right;}
  533. // 申请注册按钮
  534. .application-scheme-btn{height: 40px;line-height: 40px;@include setFontStyle(-4);background: #1890FF;border-radius: 4px;color: #FFFFFF;text-align: center;margin-bottom: 16px;cursor: pointer;}
  535. }
  536. // 输入框上下间距
  537. .el-form-item{margin-bottom: 24px}
  538. // 输入框左右间距
  539. .el-input .el-input__inner{padding: 0 15px 0 35px;}
  540. //输入框图标
  541. .dialog-input-tel:after,.dialog-input-code:after{width: 16px;height: 16px;content: "";display: inline-block;position: absolute;top: 12px;left: 12px;}
  542. .dialog-input-tel:after{background-image: url("~static/images/client/course/course-dialog-icon1.svg");}
  543. .dialog-input-code:after{background-image: url("~static/images/client/course/course-dialog-icon2.svg");}
  544. // 输入框-验证码
  545. .dialog-input-code{width: calc(100% - 132px);}
  546. .dialog-code-btn.el-button{width:120px;box-sizing:border-box;padding: 12px 15px;margin-left: 8px;}
  547. // 滑块px
  548. .nc-container{
  549. .nc_wrapper{width:100%!important;margin-bottom: 24px;border-radius: 4px;overflow: hidden;}
  550. .nc_scale{
  551. .btn_slide{color: #fff;}
  552. span{width:50px;background: #00b96b;border-radius: 0 4px 4px 0;border: 1px solid transparent;}
  553. }
  554. }
  555. }
  556. /* 网站通用弹窗-视频播放 */
  557. .course-video-dialog{
  558. .el-dialog{width: 940px;border-radius: 8px;}
  559. .el-dialog__body{padding: 14px 40px 80px;}
  560. // 标题
  561. .el-dialog__title{@include setFontStyle(-2);color: rgba(0,0,0,0.85);}
  562. // 视频
  563. .course-video-box{width: 100%;height: 480px;}
  564. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);margin-top: 16px;line-height: 22px}
  565. @media (max-width: 768px){
  566. .el-dialog{width: 90%;border-radius: 8px;margin: 0 5%;}
  567. .el-dialog__body{padding: 0 16px;}
  568. // 视频
  569. .course-video-box{height: 180px;}
  570. p{@include setFontStyle(-6);padding: 10px 0 16px;margin: 0}
  571. }
  572. }
  573. /* 首页行业学习详情页-通用部分 */
  574. // banner
  575. .industrydetails-banner{
  576. width: 100%;
  577. height: 400px;
  578. background-color:#042D85;
  579. position: relative;
  580. .industrydetails-banner-box{width:inherit;height:inherit;background-position-x: center;background-repeat: no-repeat;}
  581. .free-trial-default-btn{position: absolute;top:280px;left: 50%;margin-left: -119px;}
  582. @media (max-width: 768px){
  583. height: 150px;
  584. .industrydetails-banner-box{background-size: cover;}
  585. .free-trial-default-btn{top:95px;margin-left: -61px;}
  586. }
  587. }
  588. // 发展现状
  589. .industrydetails-develop-box{
  590. .client-container{padding: 48px 0 80px;text-align: center;}
  591. p{width: 480px;display: inline-block;@include setFontStyle(-5);color: rgba(0,0,0,0.65);line-height: 30px;vertical-align: middle;margin-right: 120px;text-align: justify;}
  592. img{display: inline-block;vertical-align: middle;}
  593. @media (max-width: 768px){
  594. .client-container{padding: 16px 30px 48px;display: flex;flex-direction: column-reverse;}
  595. p{width: 100%;display: block;@include setFontStyle(-6);color: rgba(85, 85, 85, 1);line-height: 24px;margin-right: 0;}
  596. img{max-width: 100%;display: block;vertical-align:unset;margin-bottom: 16px;}
  597. }
  598. }
  599. // 产品和服务
  600. .products-services-box{
  601. width: 100%;display: inline-block;
  602. // 头部图片
  603. img{width: 640px;height: 485px;float: right;}
  604. // 内容区域
  605. .products-services-content{
  606. width: 520px;
  607. float: right;
  608. padding: 110px 12px 0;
  609. box-sizing: border-box;
  610. margin: 0 20px;
  611. @include setFontStyle(-6);
  612. h5{@include setFontStyle(4);color: rgba(0,0,0,0.85);}
  613. i{width:50px;height:5px;display: block;background: #3e7ce7;margin: 24px 0;}
  614. p{line-height: 24px;color: rgba(0,0,0,0.65);margin-bottom: 56px;text-align: justify;}
  615. .p-before-circle{margin-bottom: 6px;}
  616. .p-before-circle:before{
  617. content: '';
  618. width: 6px;
  619. height: 6px;
  620. display: inline-block;
  621. border-radius: 3px;
  622. margin-right: 8px;
  623. background: #3e7ce7;
  624. vertical-align: middle;
  625. }
  626. .client-btn-box{margin: 40px 0}
  627. .client-default-Btn,.client-default-white-Btn{width: 150px;height: 40px;line-height: 40px;display:inline-block;background: #3e7ce7;border: 1px solid #3e7ce7;box-sizing: border-box;}
  628. .client-default-white-Btn{background: #fff;color: #3e7ce7;}
  629. a,div.client-default-Btn{margin-right: 24px}
  630. span.client-default-Btn{background: #fff;color: #3e7ce7;margin-right: 0;}
  631. }
  632. @media (max-width: 768px){
  633. // 头部图片
  634. img{width: 100%;height: auto;float: none;}
  635. // 内容区域
  636. .products-services-content{
  637. width: 100%;float: none;padding: 0 10px;margin: 0;
  638. @include setFontStyle(-6);
  639. h5{@include setFontStyle(-6);font-weight: 700;color: rgba(0, 0, 0, 1);}
  640. i{width:34px;height:3px;margin: 10px 0;}
  641. p{margin-bottom: 30px;color: rgba(85, 85, 85, 1);}
  642. .client-btn-box{text-align: center;margin:40px 0;}
  643. .client-default-Btn,.client-default-white-Btn{width: 120px;height: 35px;line-height: 35px;}
  644. a,div.client-default-Btn{margin-right: 16px}
  645. }
  646. }
  647. }
  648. .products-contrary-box{
  649. // 头部图片
  650. img{float: left;}
  651. // 内容区域
  652. .products-services-content{float: right;}
  653. }
  654. // 考试平台和培训平台样式--多下边线
  655. .platform-products-services{
  656. li:not(:last-child){border-bottom:1px solid #eee; }
  657. }
  658. // 详情页内容
  659. .industrydetails-content{
  660. li{margin-bottom: 16px;}
  661. i{width: 14px;height: 14px;float:left;box-sizing: border-box;opacity: 0.8;display: block;border: 1px solid #13192D;transform: rotate(45deg);margin-right: 16px;margin-top: 4px;}
  662. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 24px;text-align: center;}
  663. p{@include setFontStyle(-5);color: rgba(0,0,0,0.65);line-height: 22px;text-align: left;}
  664. @media (max-width: 768px) {
  665. li{margin-bottom: 10px;}
  666. i{width: 10px;height: 10px;margin-right: 8px;margin-top: 8px;}
  667. h5{@include setFontStyle(-4);color: rgba(255, 255, 255, 1);margin-bottom: 16px;text-align: center;font-weight: 700;}
  668. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;text-align: justify;}
  669. }
  670. }
  671. // 通用平台-新闻资讯样式
  672. .platform-news-information{
  673. padding-bottom: 80px;
  674. background: #f8f8f8;
  675. ul{margin-top: 48px;}
  676. li{
  677. width: 50%;display: inline-block;vertical-align: top;
  678. div{margin: 10px;padding:10px 10px 10px 0;border-bottom:1px dashed #666;}
  679. img{width: 190px;height: 118px;float: left;margin-right: 24px;}
  680. h4{@include setFontStyle(-2);color: rgba(0, 0, 0, 0.85);@include single-line-ellipsis;margin-bottom: 8px;}
  681. h4:hover{color: #3e7ce7;cursor: pointer;}
  682. span{display: block;@include setFontStyle(-6);color: rgba(0, 0, 0, 0.65);margin-bottom: 8px;}
  683. p{@include setFontStyle(-6);height: 66px;line-height: 22px;color: rgba(0, 0, 0, 0.65);@include multi-line-ellipsis(4);}
  684. }
  685. }
  686. // 页面内部导航菜单(课程开发和客户案例)
  687. .platform-menu-ul{
  688. display: block;
  689. margin: 0 auto;
  690. text-align: center;
  691. background: #F7F9FB;
  692. li{display: inline-block;@include setFontStyle(-2);padding:24px 32px;color: rgba(0,0,0,0.64);background: #F7F9FB;transition: all .3s;box-shadow: 0 2px 4px 0 rgba(43,92,253,0.16);border-bottom: 1px solid rgba(52, 99, 253, 0.08);@include single-line-ellipsis;cursor: pointer}
  693. li.active{color: #2B5CFD;background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);}
  694. li:hover{
  695. transform: scale(1.1);
  696. }
  697. @media (max-width: 768px){
  698. background: #fff;margin: 20px 0 0;
  699. li{width: 100px;height: 30px;line-height:30px;margin:0 10px;padding:0;border-radius:5px;border: 1px solid #00b96b;@include setFontStyle(-4);
  700. color: #00b96b;background: #fff;box-shadow: 0 2px 4px 0 rgba(43,92,253,0.16);box-sizing: border-box}
  701. li.active{color: #fff;background: #00b96b;}
  702. li:hover{transform: none;}
  703. }
  704. }
  705. /* 页面课程列表 */
  706. .course-learn-box{
  707. // video列表
  708. .learn-box-list{
  709. margin: 54px -16px 0;
  710. li{
  711. width: 33.33%;display: inline-block;text-align: center;
  712. a{display: none;}
  713. div{background: #fff;border-radius: 8px;margin: 0 16px 40px;}
  714. span{width:342px;height:192px;display: inline-block;margin-top: 16px;border-radius:4px;overflow: hidden;position: relative}
  715. i{width: 48px;height: 48px;cursor: pointer;background-image: url("~static/images/client/course/course-video-icon.svg");display: inline-block;position: absolute;
  716. left: 50%;margin-left: -24px;z-index: 5;top: 50%;margin-top: -24px;background-size: cover;background-position: bottom;transition: all 0.5s;}
  717. img{transition: all 0.5s;}
  718. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);padding: 24px 0 24px;}
  719. }
  720. li span:hover{img{transform: scale(1.1);}}
  721. li i:hover{background-image: url("~static/images/client/course/course-video-icon-a.svg");background-size: cover;background-position: bottom;}
  722. }
  723. @media (max-width: 768px){
  724. margin: 0 6%;
  725. // video列表
  726. .learn-box-list{
  727. margin: 12px 0;
  728. li{
  729. width: 100%;margin-bottom: 20px;
  730. div{margin: 0;padding: 0;box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px -1px;border-radius:0;}
  731. span{width: 100%;height: 180px;margin-top: 0;border-radius:0;}
  732. img{width: 100%;}
  733. p{padding: 20px 0 20px;@include setFontStyle(-6);color: #101010;}
  734. }
  735. }
  736. }
  737. }
  738. /* 底部跳转 */
  739. .bottom-btn-box{
  740. height: 65px;position: fixed;bottom: 0;left: 0;right: 0;font-size: 0;background: #fff;z-index: 99999;border-top: 1px solid #ccc;
  741. li{width: 50%;margin: 0;padding: 0;}
  742. .el-menu {
  743. box-sizing: border-box;
  744. padding: 10px;
  745. height: 65px;
  746. display: flex;
  747. justify-content: space-between;
  748. align-items: center;
  749. }
  750. .el-menu-item {
  751. a{width: 100%;height: 40px;display: inline-flex;align-items:center;justify-content:center;text-align: center;font-size: 13px;color: #333; border: 1px solid #00b96b;border-radius: 8px;box-sizing: border-box;}
  752. }
  753. li:nth-child(1){
  754. margin-right: 20px;
  755. span{color: #00b96b;font-size: 14px;}
  756. }
  757. li:nth-child(2) a {color:#fff;background: #00b96b; span{color: #fff;}}
  758. i{width:22px;height: 22px;background-size:cover;display: inline-block;margin-right: 8px;}
  759. li:nth-child(1) i{background-image: url("~static/gangweiIcon/z140.png");}
  760. li:nth-child(2) i{background-image: url("~static/gangweiIcon/z141.png");}
  761. li.is-active span{color: #2881db;}
  762. li.is-active:nth-child(1) i{background-image: url("~static/gangweiIcon/z140.png");}
  763. li.is-active:nth-child(2) i{background-image: url("~static/gangweiIcon/z141.png");}
  764. }
  765. /********************************* 麦塔栅格**********************************/
  766. /*
  767. 栅格说明:
  768. 1.网站内容区域1200px;
  769. 2.手机端<=768
  770. 3.pad-------------------(769---992---1200)
  771. pad768*1024(手机样式)
  772. pad1024*1366(pad样式)
  773. 4.pc---1200以上
  774. */
  775. // 大于768的隐藏
  776. @media screen and (min-width: 769px) {
  777. .mta-hidden-sm{display: none!important;}
  778. }
  779. // 小于769的隐藏
  780. @media screen and (max-width: 769px) {
  781. .mta-hidden-xs{display: none!important;}
  782. // 提示框
  783. .phone-message-box{
  784. width: 88%;min-width: unset;top: 10% !important;align-items:center; text-align: center;padding: 10px 0;
  785. display: flex;justify-content: center;
  786. .el-message__icon{margin-bottom: 0px;}
  787. .el-message__icon:before{font-size: 16px;}
  788. }
  789. }
  790. /********************************* 麦塔移动端组件**********************************/
  791. @media (max-width: 768px) {
  792. // 移动端点击a标签背景变色bug修复
  793. a{-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  794. -webkit-user-select: none;
  795. -moz-user-focus: none;
  796. -moz-user-select: none;}
  797. }
  798. /*************************** banner img *******************************/
  799. // 首页
  800. client-banner-box.client-banner-index {
  801. height: 810px;
  802. }
  803. // 其他
  804. .client-banner-box {
  805. height: 730px;
  806. width: 100%;
  807. .client-container {
  808. position: relative;
  809. }
  810. div.client-platform-banner {
  811. height: 730px;
  812. background-repeat: no-repeat;
  813. background-position: center;
  814. background-size: cover;
  815. .banner-btn-groups {
  816. position: absolute;
  817. width: auto;
  818. height: auto;
  819. left: 50%;
  820. top: 460px;
  821. transform: translate(-50%);
  822. }
  823. }
  824. @media (max-width: 768px) {
  825. width: 100%;
  826. height: auto;
  827. >div.client-platform-banner {
  828. width: 100%;
  829. height: 200px;
  830. background-size: cover;
  831. background-position: center;
  832. background-repeat: no-repeat;
  833. }
  834. }
  835. }
  836. /***************************** 解决方案 子页面 三个 video *************/
  837. .client-anli-box {
  838. height: 600px;
  839. h4 {
  840. font-size: 30px;
  841. color: #333;
  842. margin-top: 80px;
  843. margin-bottom: 40px;
  844. font-weight: 800;
  845. text-align: center;
  846. }
  847. p {
  848. font-size: 18px;
  849. font-weight: 500;
  850. text-align: center;
  851. line-height: 36px;
  852. width: 1000px;
  853. margin: 0 auto 78px;
  854. }
  855. ul {
  856. display: flex;
  857. justify-content: space-between;
  858. li {
  859. width: 370px;
  860. >div {
  861. margin-right: 80px;
  862. }
  863. &:last-child {
  864. >div {
  865. margin-right: 0;
  866. }
  867. }
  868. }
  869. }
  870. }
  871. @media (max-width: 768px) {
  872. .client-anli-box {
  873. height: 50%;
  874. margin-bottom: 10%;
  875. h4 {
  876. font-size: 18px;
  877. color: #333;
  878. margin-top: 8%;
  879. margin-bottom: 4%;
  880. font-weight: 800;
  881. text-align: center;
  882. }
  883. p {
  884. font-size: 14px;
  885. font-weight: 500;
  886. text-align: center;
  887. line-height: 1.5;
  888. width: 100%;
  889. margin: 0 auto 5%;
  890. }
  891. ul {
  892. display: flex;
  893. flex-direction: column;
  894. li {
  895. width: 100%;
  896. >div {
  897. margin-right: 0;
  898. margin-bottom: 5%;
  899. }
  900. &:last-child {
  901. >div {
  902. margin-bottom: 0;
  903. }
  904. }
  905. }
  906. }
  907. }
  908. }
  909. /**************************** 解决方案 现状 *************************/
  910. .client-xianzhuang-box {
  911. background-image: url("~static/gangweiIcon/z90.png");
  912. width: 100%;
  913. height: 560px;
  914. margin-top: 150px;
  915. background-position: center;
  916. background-repeat: no-repeat;
  917. background-size: contain;
  918. h4 {
  919. font-size: 30px;
  920. color: #333;
  921. margin-top: 120px;
  922. margin-bottom: 40px;
  923. font-weight: 800;
  924. text-align: center;
  925. }
  926. p {
  927. font-size: 18px;
  928. font-weight: 500;
  929. text-align: center;
  930. line-height: 36px;
  931. width: 1000px;
  932. margin: 0 auto;
  933. }
  934. }
  935. @media (max-width: 768px) {
  936. .client-xianzhuang-box {
  937. margin-top: 50px;
  938. background-image: none;
  939. width: 100%;
  940. height: 30%;
  941. background-position: center;
  942. background-repeat: no-repeat;
  943. background-size: contain;
  944. h4 {
  945. font-size: 18px;
  946. color: #333;
  947. margin-top: 10%;
  948. margin-bottom: 40px;
  949. font-weight: 800;
  950. text-align: center;
  951. }
  952. p {
  953. font-size: 14px;
  954. font-weight: 500;
  955. text-align: center;
  956. line-height: 1.5;
  957. width: 100%;
  958. margin: 0 auto;
  959. }
  960. }
  961. }
  962. /**************************** 解决方案 痛点 ************************/
  963. .client-tongdian-box {
  964. h4 {
  965. font-size: 30px;
  966. color: #333;
  967. margin-top: 80px;
  968. margin-bottom: 40px;
  969. font-weight: 800;
  970. text-align: center;
  971. }
  972. ul {
  973. display: flex;
  974. justify-content: center;
  975. li {
  976. div {
  977. margin: 0 51px 0 0;
  978. width: 380px;
  979. height: 280px;
  980. background-size: contain;
  981. background-repeat: no-repeat;
  982. background-position: center;
  983. text-align: center;
  984. i {
  985. width: 110px;
  986. height: 88px;
  987. margin-top: 50px;
  988. display: inline-block;
  989. background-size: contain;
  990. background-repeat: no-repeat;
  991. background-position: center;
  992. }
  993. p {
  994. text-align: center;
  995. color: #fffefe;
  996. font-size: 18px;
  997. font-weight: 800;
  998. line-height: 30px;
  999. width: 220px;
  1000. margin: 20px auto 0;
  1001. }
  1002. }
  1003. }
  1004. }
  1005. }
  1006. @media (max-width: 768px) {
  1007. .client-tongdian-box {
  1008. h4 {
  1009. font-size: 18px;
  1010. color: #333;
  1011. margin-top: 10%;
  1012. margin-bottom: 40px;
  1013. font-weight: 800;
  1014. text-align: center;
  1015. }
  1016. ul {
  1017. display: flex;
  1018. flex-direction: column;
  1019. li {
  1020. padding: 10px;
  1021. border: 1px solid #ccc;
  1022. border-radius: 8px;
  1023. margin-bottom: 10px;
  1024. div {
  1025. margin: 0 20px 0 0;
  1026. width: 100%;
  1027. height: auto;
  1028. background-size: contain;
  1029. background-repeat: no-repeat;
  1030. background-position: center;
  1031. text-align: center;
  1032. display: flex;
  1033. justify-content: flex-start;
  1034. i {
  1035. width: 90px;
  1036. height: 90px;
  1037. margin-top: 3%;
  1038. background-color: #ccc;
  1039. display: inline-block;
  1040. background-size: contain;
  1041. background-repeat: no-repeat;
  1042. background-position: center;
  1043. }
  1044. p {
  1045. text-align: left;
  1046. color: #333;
  1047. font-size: 14px;
  1048. font-weight: 500;
  1049. line-height: 1.5;
  1050. width: 80%;
  1051. margin: 20px 0 0 20px;
  1052. }
  1053. }
  1054. }
  1055. }
  1056. }
  1057. }
  1058. /**************************** 按钮组 申请方案+在线咨询、免费使用+在线咨询 **************************/
  1059. .btn-groups.center {
  1060. margin-top: 60px;
  1061. text-align: center;
  1062. margin-bottom: 120px;
  1063. .btn-item {
  1064. margin-right: 20px;
  1065. }
  1066. }
  1067. @media (max-width: 768px) {
  1068. .btn-groups.center {
  1069. margin-top: 10%;
  1070. margin-bottom: 10%;
  1071. }
  1072. }
  1073. // H5 按钮居中
  1074. @media (max-width: 768px) {
  1075. .btn-groups {
  1076. margin-top: 10%;
  1077. margin-bottom: 10%;
  1078. text-align: center;
  1079. }
  1080. }
  1081. /******************************* 万人高并发 客户案例 **************************************/
  1082. .client-kehuanli-box.experience-swiper-box{
  1083. margin-top: 60px;
  1084. margin-bottom: 140px;
  1085. .experience-content-box{
  1086. height: 295px;box-shadow:none;padding: 16px;box-sizing: border-box;margin: 0 4% 40px;
  1087. .anli-content {
  1088. h3{ text-align: center; font-weight: 800; font-size: 18px;margin-top: 10px;}
  1089. p{font-weight: 400;color: #333; font-size: 14px;
  1090. -webkit-line-clamp:3;
  1091. text-overflow: ellipsis;
  1092. -o-text-overflow: ellipsis;
  1093. overflow: hidden;
  1094. word-wrap: break-word;
  1095. display: -webkit-box;
  1096. white-space: normal !important;
  1097. -webkit-box-orient: vertical;}
  1098. img {
  1099. width: 100%;
  1100. height: 200px;
  1101. }
  1102. }
  1103. }
  1104. // 分页
  1105. .swiper-pagination-style {width: 76px;margin-left: -30px;bottom:25px;}
  1106. // 左右滑动
  1107. .experience-swiper-tip{margin: 0 auto; font-size: 14px; font-weight: 400; text-align: center}
  1108. @media (max-width: 768px){
  1109. margin-top: 20px;
  1110. margin-bottom: 20px;
  1111. h4 {
  1112. text-align: center;
  1113. font-weight: 800;
  1114. font-size: 18px;
  1115. color: #333;
  1116. line-height: 1.5;
  1117. }
  1118. .experience-content-box{
  1119. padding: 0;
  1120. margin: 20px 0 20px;
  1121. }
  1122. }
  1123. }
  1124. .client-kehuanli-box {
  1125. position: relative;
  1126. .anli-box-wrap {
  1127. width: 1100px;
  1128. height: 320px;
  1129. margin: 0 auto;
  1130. background: #fff;
  1131. padding: 20px;
  1132. border-radius: 8px;
  1133. }
  1134. .anli-box {
  1135. width: 1100px;
  1136. height: 320px;
  1137. margin: 0 auto;
  1138. background: #fff;
  1139. padding: 20px;
  1140. border-radius: 8px;
  1141. z-index: 1;
  1142. }
  1143. h4 {
  1144. text-align: center;
  1145. font-weight: 800;
  1146. font-size: 30px;
  1147. color: #333;
  1148. line-height: 50px;
  1149. }
  1150. .left-bg {
  1151. width: 353px;
  1152. height: 293px;
  1153. background: #46C37B;
  1154. position: absolute;
  1155. top: 0;
  1156. left: 0;
  1157. z-index: 0;
  1158. opacity: 0.33;
  1159. }
  1160. .right-bg {
  1161. width: 270px;
  1162. height: 150px;
  1163. background: #A9D49C;
  1164. position: absolute;
  1165. right: 0;
  1166. bottom: -80px;
  1167. z-index: 0;
  1168. opacity: 0.33;
  1169. }
  1170. .center-bg {
  1171. width: 160px;
  1172. height: 150px;
  1173. background: #A9D49C;
  1174. position: absolute;
  1175. left: 600px;
  1176. bottom: -80px;
  1177. z-index: 0;
  1178. opacity: 0.33;
  1179. }
  1180. .el-carousel__container {
  1181. height: 100% !important;
  1182. }
  1183. .el-carousel__item {
  1184. background: #fff;
  1185. border-radius: 8px;
  1186. }
  1187. }
  1188. /****************************** 青谷解决方案 ******************************************/
  1189. .client-fangan-box {
  1190. h4 {
  1191. font-size: 30px;
  1192. color: #333;
  1193. margin-top: 80px;
  1194. margin-bottom: 40px;
  1195. font-weight: 800;
  1196. text-align: center;
  1197. }
  1198. .btn-groups {
  1199. margin-top: 50px;
  1200. }
  1201. @media (max-width: 768px){
  1202. h4 {
  1203. font-size: 18px;
  1204. color: #333;
  1205. margin-top: 30px;
  1206. margin-bottom: 40px;
  1207. font-weight: 800;
  1208. text-align: center;
  1209. }
  1210. .btn-groups {
  1211. margin-top: 30px;
  1212. }
  1213. }
  1214. }
  1215. /******************************* 新闻关键词 *******************************************/
  1216. a.keyword {
  1217. color: #00b96b !important;
  1218. }