cus-client-common.scss 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145
  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: -6px 0px 16px 6px #d6d6d6;
  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;
  287. // head移动端响应式
  288. @media (max-width: 768px){@include setFontStyle(-4);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. }
  338. .contact-right-box{
  339. //width: 170px;
  340. float: right;
  341. .right-sw-box{
  342. margin-right: 24px;
  343. h4{@include setFontStyle(-4);color: #FFFFFF;margin-bottom: 16px;text-align: center}
  344. img{width: 100px}
  345. }
  346. div{display: inline-block}
  347. h3{@include setFontStyle(4);color: #FFF;margin-bottom: 16px;}
  348. p{@include setFontStyle(-6);color: rgba(255,255,255,0.64);margin-bottom: 8px;}
  349. a{@include setFontStyle(-6);color: #2B5CFD;}
  350. a:hover{cursor: pointer;}
  351. }
  352. }
  353. //友情链接区域
  354. .link-box{
  355. border-top: 1px solid #333B4C;
  356. border-right: 0;
  357. border-left: 0;
  358. padding: 32px 0;
  359. h4{@include setFontStyle(-4);color: #FFF;float: left;margin-right: 48px;line-height: 22px;}
  360. .link-a-box{
  361. margin-left: 114px;
  362. line-height: 22px;
  363. a{@include setFontStyle(-6);color: rgba(255,255,255,0.54);display:inline-block;margin-right: 32px;white-space: nowrap;}
  364. a:hover{color: rgba(255,255,255,0.85);cursor: pointer;}
  365. }
  366. }
  367. //底部版权
  368. h5{@include setFontStyle(-8);color: #B8B8B8;text-align: center;padding: 16px 0 24px;border-top: 1px solid #333B4C;}
  369. @media (max-width: 768px) {
  370. .phone-footer-box {
  371. text-align: center;padding: 20px 0;
  372. a,p{@include setFontStyle(-10);color: #fff;padding: 6px 0}
  373. a{display: block}
  374. }
  375. }
  376. }
  377. /* 网站分页 */
  378. .client-el-pagination{text-align: center;margin-top: 36px}
  379. /* 网站通用详情页布局 */
  380. .client-details-page{
  381. background: #f9faff;
  382. width: 100%;
  383. padding: 24px 0;
  384. // 时间人数
  385. .details-visits-box{
  386. margin-bottom: 16px;
  387. 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");}
  388. i[type="visits"]{background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");}
  389. span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;}
  390. }
  391. //行业资讯详情外层box
  392. .client-details-box{
  393. width: 1260px;
  394. margin: 0 auto;
  395. padding: 24px;
  396. box-sizing: border-box;
  397. background: #FFFFFF;
  398. border-radius: 8px;
  399. }
  400. // 行业资讯详情
  401. .client-details-wrap{
  402. width: 820px;
  403. display: inline-block;
  404. padding-right: 24px;
  405. border-right:1px solid #DCE0E8;
  406. box-sizing: border-box;
  407. vertical-align: top;
  408. >h1{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 16px;}
  409. //内容区域
  410. .client-content-box{
  411. min-height: calc(100vh - 587px);
  412. line-height: 24px;
  413. color: rgba(0,0,0,0.64);
  414. @include setFontStyle(-6);
  415. margin-bottom: 70px;
  416. p{line-height: 22px;}
  417. img{max-width: 100%;}
  418. h1,h2,h3,h4,h5,h6,p{margin-bottom: 10px;}
  419. }
  420. // 上一篇下一篇
  421. .client-details-pagination{
  422. a{max-width: 45%;float: left;@include setFontStyle(-4);color: rgba(43,92,253,0.85);display: inline-block;@include single-line-ellipsis;}
  423. a:last-child{margin-left: 10%;float: right;}
  424. a:hover{color: #1648EE;cursor: pointer}
  425. }
  426. }
  427. // 最新新闻
  428. .latest-news-box{
  429. width: 300px;
  430. padding-left: 24px;
  431. display: inline-block;
  432. vertical-align: top;
  433. h4{@include setFontStyle(-4);color: rgba(0,0,0,0.85);margin-bottom: 16px;}
  434. .latest-news-list{
  435. li{margin-bottom: 24px}
  436. a{width: 100%;@include setFontStyle(-4);display:inline-block;color: rgba(43,92,253,0.65);margin-bottom: 8px;@include single-line-ellipsis;}
  437. a:hover{color: rgba(43,92,253,0.85);cursor: pointer}
  438. }
  439. // 时间人数
  440. .details-visits-box span{margin-right: 24px;}
  441. }
  442. @media (max-width: 768px) {
  443. padding: 0;
  444. // 时间人数
  445. .details-visits-box{
  446. margin-bottom: 36px;text-align: center;
  447. i{width: 16px;height: 16px;margin-right: 6px;background-size: cover;}
  448. span{@include setFontStyle(-8);margin-right: 24px;line-height: 12px;}
  449. }
  450. //行业资讯详情外层box
  451. .client-details-box{width: 100%;}
  452. // 行业资讯详情
  453. .client-details-wrap{
  454. width: 100%;border: 0;padding-right:0;
  455. >h1{@include setFontStyle(-4);margin: 16px 0;text-align: center;font-weight: bolder;}
  456. //内容区域
  457. .client-content-box{
  458. min-height:unset;
  459. }
  460. // 上一篇下一篇按钮
  461. .client-details-pagination a{border: 1px solid rgba(43, 92, 253, 0.85);padding: 4px 12px;border-radius: 4px;}
  462. }
  463. }
  464. }
  465. /* 网站通用轮播 */
  466. /*.client-industry-information{
  467. background-image: url("~static/images/client/index/index-industry-bg.png");
  468. background-position: center;
  469. padding-bottom: 80px;
  470. // 标题
  471. .client-title{
  472. color: #fff;
  473. }
  474. // 轮播
  475. .information-carousel-box{
  476. width: 100%;
  477. overflow: hidden;
  478. }
  479. // 轮播组件
  480. .el-carousel--horizontal{
  481. overflow: visible;
  482. }
  483. .el-carousel{
  484. width: 1000px;
  485. margin: 0 auto;
  486. margin-top: 48px;
  487. .el-carousel__container{width: 640px;height: 320px;margin: 0 auto;position: relative;}
  488. }
  489. .el-carousel__item{
  490. width: 640px;
  491. background: #FFFFFF;
  492. border-radius: 8px;
  493. .industry-img-box{width: 50%;height: 320px;float: left;background-repeat: no-repeat;background-size: cover;}
  494. .industry-content-box{
  495. height: inherit;margin-left: 50%;padding:32px;box-sizing: border-box;position: relative;
  496. 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;}
  497. 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;}
  498. a{width: 132px;height: 32px;line-height:32px;position: absolute;bottom: 32px;}
  499. }
  500. }
  501. !*.el-carousel__item.is-active{
  502. .industry-img-box{width: 50%;}
  503. .industry-content-box{margin-left: 50%;}
  504. }*!
  505. // 左右按钮
  506. .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);}
  507. // 左箭头
  508. .el-carousel__arrow--left{left:-200px;}
  509. // 右箭头
  510. .el-carousel__arrow--right{right:-200px;}
  511. // 指示器
  512. .el-carousel__indicators{display: none}
  513. }*/
  514. /* 网站通用弹窗-申请方案 */
  515. .application-scheme-dialog{
  516. .el-dialog{width: 610px;border-radius: 8px;}
  517. .el-dialog__body{
  518. padding: 30px 120px 60px;
  519. >i{width:213px;height:92px;display: block;background-image: url("~static/images/client/course/course-dialog-img.png");margin: 0 auto;}
  520. p{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin:24px 0 36px;}
  521. span{@include setFontStyle(-6);color: rgba(0,0,0,0.65);}
  522. a{@include setFontStyle(-6);color: #2B5CFD;float: right;}
  523. // 申请注册按钮
  524. .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;}
  525. }
  526. // 输入框上下间距
  527. .el-form-item{margin-bottom: 24px}
  528. // 输入框左右间距
  529. .el-input .el-input__inner{padding: 0 15px 0 35px;}
  530. //输入框图标
  531. .dialog-input-tel:after,.dialog-input-code:after{width: 16px;height: 16px;content: "";display: inline-block;position: absolute;top: 12px;left: 12px;}
  532. .dialog-input-tel:after{background-image: url("~static/images/client/course/course-dialog-icon1.svg");}
  533. .dialog-input-code:after{background-image: url("~static/images/client/course/course-dialog-icon2.svg");}
  534. // 输入框-验证码
  535. .dialog-input-code{width: calc(100% - 132px);}
  536. .dialog-code-btn.el-button{width:120px;box-sizing:border-box;padding: 12px 15px;margin-left: 8px;}
  537. // 滑块px
  538. .nc-container{
  539. .nc_wrapper{width:100%!important;margin-bottom: 24px;border-radius: 4px;overflow: hidden;}
  540. .nc_scale{
  541. .btn_slide{color: #fff;}
  542. span{width:50px;background: #3893FE;border-radius: 0 4px 4px 0;border: 1px solid transparent;}
  543. }
  544. }
  545. }
  546. /* 网站通用弹窗-视频播放 */
  547. .course-video-dialog{
  548. .el-dialog{width: 940px;border-radius: 8px;}
  549. .el-dialog__body{padding: 14px 40px 80px;}
  550. // 标题
  551. .el-dialog__title{@include setFontStyle(-2);color: rgba(0,0,0,0.85);}
  552. // 视频
  553. .course-video-box{width: 100%;height: 480px;}
  554. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);margin-top: 16px;line-height: 22px}
  555. @media (max-width: 768px){
  556. .el-dialog{width: 90%;border-radius: 8px;margin: 0 5%;}
  557. .el-dialog__body{padding: 0 16px;}
  558. // 视频
  559. .course-video-box{height: 180px;}
  560. p{@include setFontStyle(-6);padding: 10px 0 16px;margin: 0}
  561. }
  562. }
  563. /* 首页行业学习详情页-通用部分 */
  564. // banner
  565. .industrydetails-banner{
  566. width: 100%;
  567. height: 400px;
  568. background-color:#042D85;
  569. position: relative;
  570. .industrydetails-banner-box{width:inherit;height:inherit;background-position-x: center;background-repeat: no-repeat;}
  571. .free-trial-default-btn{position: absolute;top:280px;left: 50%;margin-left: -119px;}
  572. @media (max-width: 768px){
  573. height: 150px;
  574. .industrydetails-banner-box{background-size: cover;}
  575. .free-trial-default-btn{top:95px;margin-left: -61px;}
  576. }
  577. }
  578. // 发展现状
  579. .industrydetails-develop-box{
  580. .client-container{padding: 48px 0 80px;text-align: center;}
  581. 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;}
  582. img{display: inline-block;vertical-align: middle;}
  583. @media (max-width: 768px){
  584. .client-container{padding: 16px 30px 48px;display: flex;flex-direction: column-reverse;}
  585. p{width: 100%;display: block;@include setFontStyle(-6);color: rgba(85, 85, 85, 1);line-height: 24px;margin-right: 0;}
  586. img{max-width: 100%;display: block;vertical-align:unset;margin-bottom: 16px;}
  587. }
  588. }
  589. // 产品和服务
  590. .products-services-box{
  591. width: 100%;display: inline-block;
  592. // 头部图片
  593. img{width: 640px;height: 485px;float: right;}
  594. // 内容区域
  595. .products-services-content{
  596. width: 520px;
  597. float: right;
  598. padding: 110px 12px 0;
  599. box-sizing: border-box;
  600. margin: 0 20px;
  601. @include setFontStyle(-6);
  602. h5{@include setFontStyle(4);color: rgba(0,0,0,0.85);}
  603. i{width:50px;height:5px;display: block;background: #3e7ce7;margin: 24px 0;}
  604. p{line-height: 24px;color: rgba(0,0,0,0.65);margin-bottom: 56px;text-align: justify;}
  605. .p-before-circle{margin-bottom: 6px;}
  606. .p-before-circle:before{
  607. content: '';
  608. width: 6px;
  609. height: 6px;
  610. display: inline-block;
  611. border-radius: 3px;
  612. margin-right: 8px;
  613. background: #3e7ce7;
  614. vertical-align: middle;
  615. }
  616. .client-btn-box{margin: 40px 0}
  617. .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;}
  618. .client-default-white-Btn{background: #fff;color: #3e7ce7;}
  619. a,div.client-default-Btn{margin-right: 24px}
  620. span.client-default-Btn{background: #fff;color: #3e7ce7;margin-right: 0;}
  621. }
  622. @media (max-width: 768px){
  623. // 头部图片
  624. img{width: 100%;height: auto;float: none;}
  625. // 内容区域
  626. .products-services-content{
  627. width: 100%;float: none;padding: 0 10px;margin: 0;
  628. @include setFontStyle(-6);
  629. h5{@include setFontStyle(-6);font-weight: 700;color: rgba(0, 0, 0, 1);}
  630. i{width:34px;height:3px;margin: 10px 0;}
  631. p{margin-bottom: 30px;color: rgba(85, 85, 85, 1);}
  632. .client-btn-box{text-align: center;margin:40px 0;}
  633. .client-default-Btn,.client-default-white-Btn{width: 120px;height: 35px;line-height: 35px;}
  634. a,div.client-default-Btn{margin-right: 16px}
  635. }
  636. }
  637. }
  638. .products-contrary-box{
  639. // 头部图片
  640. img{float: left;}
  641. // 内容区域
  642. .products-services-content{float: right;}
  643. }
  644. // 考试平台和培训平台样式--多下边线
  645. .platform-products-services{
  646. li:not(:last-child){border-bottom:1px solid #eee; }
  647. }
  648. // 详情页内容
  649. .industrydetails-content{
  650. li{margin-bottom: 16px;}
  651. 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;}
  652. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 24px;text-align: center;}
  653. p{@include setFontStyle(-5);color: rgba(0,0,0,0.65);line-height: 22px;text-align: left;}
  654. @media (max-width: 768px) {
  655. li{margin-bottom: 10px;}
  656. i{width: 10px;height: 10px;margin-right: 8px;margin-top: 8px;}
  657. h5{@include setFontStyle(-4);color: rgba(255, 255, 255, 1);margin-bottom: 16px;text-align: center;font-weight: 700;}
  658. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;text-align: justify;}
  659. }
  660. }
  661. // 通用平台-新闻资讯样式
  662. .platform-news-information{
  663. padding-bottom: 80px;
  664. background: #f8f8f8;
  665. ul{margin-top: 48px;}
  666. li{
  667. width: 50%;display: inline-block;vertical-align: top;
  668. div{margin: 10px;padding:10px 10px 10px 0;border-bottom:1px dashed #666;}
  669. img{width: 190px;height: 118px;float: left;margin-right: 24px;}
  670. h4{@include setFontStyle(-2);color: rgba(0, 0, 0, 0.85);@include single-line-ellipsis;margin-bottom: 8px;}
  671. h4:hover{color: #3e7ce7;cursor: pointer;}
  672. span{display: block;@include setFontStyle(-6);color: rgba(0, 0, 0, 0.65);margin-bottom: 8px;}
  673. p{@include setFontStyle(-6);height: 66px;line-height: 22px;color: rgba(0, 0, 0, 0.65);@include multi-line-ellipsis(3);}
  674. }
  675. }
  676. // 页面内部导航菜单(课程开发和客户案例)
  677. .platform-menu-ul{
  678. display: block;
  679. margin: 0 auto;
  680. text-align: center;
  681. background: #F7F9FB;
  682. 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}
  683. li.active{color: #2B5CFD;background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);}
  684. li:hover{
  685. transform: scale(1.1);
  686. }
  687. @media (max-width: 768px){
  688. background: #fff;margin: 20px 0 0;
  689. li{width: 100px;height: 30px;line-height:30px;margin:0 10px;padding:0;border-radius:5px;border: 1px solid rgb(0, 102, 204);@include setFontStyle(-4);
  690. color: rgb(0, 102, 204);background: #fff;box-shadow: 0 2px 4px 0 rgba(43,92,253,0.16);box-sizing: border-box}
  691. li.active{color: #fff;background: rgb(0, 102, 204);}
  692. li:hover{transform: none;}
  693. }
  694. }
  695. /* 页面课程列表 */
  696. .course-learn-box{
  697. // video列表
  698. .learn-box-list{
  699. margin: 54px -16px 0;
  700. li{
  701. width: 33.33%;display: inline-block;text-align: center;
  702. a{display: none;}
  703. div{background: #fff;border-radius: 8px;margin: 0 16px 40px;}
  704. span{width:342px;height:192px;display: inline-block;margin-top: 16px;border-radius:4px;overflow: hidden;position: relative}
  705. i{width: 48px;height: 48px;cursor: pointer;background-image: url("~static/images/client/course/course-video-icon.svg");display: inline-block;position: absolute;
  706. left: 50%;margin-left: -24px;z-index: 5;top: 50%;margin-top: -24px;background-size: cover;background-position: bottom;transition: all 0.5s;}
  707. img{transition: all 0.5s;}
  708. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);padding: 24px 0 24px;}
  709. }
  710. li span:hover{img{transform: scale(1.1);}}
  711. li i:hover{background-image: url("~static/images/client/course/course-video-icon-a.svg");background-size: cover;background-position: bottom;}
  712. }
  713. @media (max-width: 768px){
  714. margin: 0 6%;
  715. // video列表
  716. .learn-box-list{
  717. margin: 12px 0;
  718. li{
  719. width: 100%;margin-bottom: 20px;
  720. div{margin: 0;padding: 0;box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px -1px;border-radius:0;}
  721. span{width: 100%;height: 180px;margin-top: 0;border-radius:0;}
  722. img{width: 100%;}
  723. p{padding: 20px 0 20px;@include setFontStyle(-6);color: #101010;}
  724. }
  725. }
  726. }
  727. }
  728. /* 底部跳转 */
  729. .bottom-btn-box{
  730. height: 50px;position: fixed;bottom: 0;left: 0;right: 0;font-size: 0;background: #fff;z-index: 99999;border-top: 1px solid #ccc;
  731. li{width: 25%;margin: 0;padding: 0;}
  732. a{width: 100%;height: 50px;line-height: 1;display: inline-block;text-align: center;font-size: 13px;color: #333;margin: 6px 0;}
  733. i{width:22px;height: 22px;background-size:cover;display: block;margin: 0 auto 3px;}
  734. span{color: #333;}
  735. li:nth-child(1) i{background-image: url("~static/images/icons/shouye.svg");}
  736. li:nth-child(2) i{background-image: url("~static/images/icons/tiyan.svg");}
  737. li:nth-child(3) i{background-image: url("~static/images/icons/dianhua.svg");}
  738. li:nth-child(4) i{background-image: url("~static/images/icons/zixun.svg");}
  739. li.is-active span{color: #2881db;}
  740. li.is-active:nth-child(1) i{background-image: url("~static/images/icons/shouye-a.svg");}
  741. li.is-active:nth-child(2) i{background-image: url("~static/images/icons/tiyan-a.svg");}
  742. li.is-active:nth-child(3) i{background-image: url("~static/images/icons/dianhua-a.svg");}
  743. li.is-active:nth-child(4) i{background-image: url("~static/images/icons/zixun-a.svg");}
  744. }
  745. /********************************* 麦塔栅格**********************************/
  746. /*
  747. 栅格说明:
  748. 1.网站内容区域1200px;
  749. 2.手机端<=768
  750. 3.pad-------------------(769---992---1200)
  751. pad768*1024(手机样式)
  752. pad1024*1366(pad样式)
  753. 4.pc---1200以上
  754. */
  755. // 大于768的隐藏
  756. @media screen and (min-width: 769px) {
  757. .mta-hidden-sm{display: none!important;}
  758. }
  759. // 小于769的隐藏
  760. @media screen and (max-width: 769px) {
  761. .mta-hidden-xs{display: none!important;}
  762. // 提示框
  763. .phone-message-box{
  764. width: 88%;min-width: unset;top: 35% !important;display: block;text-align: center;padding: 36px 0;
  765. .el-message__icon{margin-bottom: 20px;}
  766. .el-message__icon:before{font-size: 50px;}
  767. }
  768. }
  769. /********************************* 麦塔移动端组件**********************************/
  770. @media (max-width: 768px) {
  771. // 移动端点击a标签背景变色bug修复
  772. a{-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  773. -webkit-user-select: none;
  774. -moz-user-focus: none;
  775. -moz-user-select: none;}
  776. }
  777. /*************************** banner img *******************************/
  778. // 首页
  779. client-banner-box.client-banner-index {
  780. height: 810px;
  781. }
  782. // 其他
  783. .client-banner-box {
  784. height: 730px;
  785. width: 100%;
  786. .client-container {
  787. position: relative;
  788. }
  789. div.client-platform-banner {
  790. height: 730px;
  791. .banner-btn-groups {
  792. position: absolute;
  793. width: auto;
  794. height: auto;
  795. left: 50%;
  796. top: 460px;
  797. transform: translate(-50%);
  798. }
  799. }
  800. @media (max-width: 768px) {
  801. width: 100%;
  802. height: auto;
  803. >div.client-platform-banner {
  804. width: 100%;
  805. height: 200px;
  806. background-size: cover;
  807. background-position: center;
  808. background-repeat: no-repeat;
  809. }
  810. }
  811. }
  812. /***************************** 解决方案 子页面 三个 video *************/
  813. .client-anli-box {
  814. height: 600px;
  815. h4 {
  816. font-size: 30px;
  817. color: #333;
  818. margin-top: 80px;
  819. margin-bottom: 40px;
  820. font-weight: 800;
  821. text-align: center;
  822. }
  823. p {
  824. font-size: 18px;
  825. font-weight: 500;
  826. text-align: center;
  827. line-height: 36px;
  828. width: 1000px;
  829. margin: 0 auto 78px;
  830. }
  831. ul {
  832. display: flex;
  833. li {
  834. width: 33%;
  835. >div {
  836. margin-right: 80px;
  837. }
  838. &:last-child {
  839. >div {
  840. margin-right: 0;
  841. }
  842. }
  843. }
  844. }
  845. }
  846. @media (max-width: 768px) {
  847. .client-anli-box {
  848. height: 50%;
  849. margin-bottom: 10%;
  850. h4 {
  851. font-size: 18px;
  852. color: #333;
  853. margin-top: 8%;
  854. margin-bottom: 4%;
  855. font-weight: 800;
  856. text-align: center;
  857. }
  858. p {
  859. font-size: 18px;
  860. font-weight: 500;
  861. text-align: center;
  862. line-height: 1.5;
  863. width: 100%;
  864. margin: 0 auto 5%;
  865. }
  866. ul {
  867. display: flex;
  868. flex-direction: column;
  869. li {
  870. width: 100%;
  871. >div {
  872. margin-right: 0;
  873. margin-bottom: 5%;
  874. }
  875. &:last-child {
  876. >div {
  877. margin-bottom: 0;
  878. }
  879. }
  880. }
  881. }
  882. }
  883. }
  884. /**************************** 解决方案 现状 *************************/
  885. .client-xianzhuang-box {
  886. background-image: url("~static/gangweiIcon/z90.png");
  887. width: 100%;
  888. height: 560px;
  889. margin-top: 150px;
  890. background-position: center;
  891. background-repeat: no-repeat;
  892. background-size: contain;
  893. h4 {
  894. font-size: 30px;
  895. color: #333;
  896. margin-top: 120px;
  897. margin-bottom: 40px;
  898. font-weight: 800;
  899. text-align: center;
  900. }
  901. p {
  902. font-size: 18px;
  903. font-weight: 500;
  904. text-align: center;
  905. line-height: 36px;
  906. width: 1000px;
  907. margin: 0 auto;
  908. }
  909. }
  910. @media (max-width: 768px) {
  911. .client-xianzhuang-box {
  912. background-image: none;
  913. width: 100%;
  914. height: 30%;
  915. background-position: center;
  916. background-repeat: no-repeat;
  917. background-size: contain;
  918. h4 {
  919. font-size: 18px;
  920. color: #333;
  921. margin-top: 10%;
  922. margin-bottom: 40px;
  923. font-weight: 800;
  924. text-align: center;
  925. }
  926. p {
  927. font-size: 14px;
  928. font-weight: 500;
  929. text-align: center;
  930. line-height: 1.5;
  931. width: 100%;
  932. margin: 0 auto;
  933. }
  934. }
  935. }
  936. /**************************** 解决方案 痛点 ************************/
  937. .client-tongdian-box {
  938. h4 {
  939. font-size: 30px;
  940. color: #333;
  941. margin-top: 120px;
  942. margin-bottom: 40px;
  943. font-weight: 800;
  944. text-align: center;
  945. }
  946. ul {
  947. display: flex;
  948. justify-content: center;
  949. li {
  950. div {
  951. margin: 0 51px 0 0;
  952. width: 380px;
  953. height: 280px;
  954. background-size: contain;
  955. background-repeat: no-repeat;
  956. background-position: center;
  957. text-align: center;
  958. i {
  959. width: 110px;
  960. height: 88px;
  961. margin-top: 50px;
  962. display: inline-block;
  963. background-size: contain;
  964. background-repeat: no-repeat;
  965. background-position: center;
  966. }
  967. p {
  968. text-align: center;
  969. color: #fffefe;
  970. font-size: 18px;
  971. font-weight: 800;
  972. line-height: 30px;
  973. width: 220px;
  974. margin: 20px auto 0;
  975. }
  976. }
  977. }
  978. }
  979. }
  980. @media (max-width: 768px) {
  981. .client-tongdian-box {
  982. h4 {
  983. font-size: 18px;
  984. color: #333;
  985. margin-top: 10%;
  986. margin-bottom: 3%;
  987. font-weight: 800;
  988. text-align: center;
  989. }
  990. ul {
  991. display: flex;
  992. flex-direction: column;
  993. li {
  994. div {
  995. margin: 0 20px 0 0;
  996. width: 100%;
  997. height: auto;
  998. background-size: contain;
  999. background-repeat: no-repeat;
  1000. background-position: center;
  1001. text-align: center;
  1002. display: flex;
  1003. justify-content: flex-start;
  1004. i {
  1005. width: 90px;
  1006. height: 90px;
  1007. margin-top: 3%;
  1008. background-color: #ccc;
  1009. display: inline-block;
  1010. background-size: contain;
  1011. background-repeat: no-repeat;
  1012. background-position: center;
  1013. }
  1014. p {
  1015. text-align: left;
  1016. color: #333;
  1017. font-size: 14px;
  1018. font-weight: 500;
  1019. line-height: 1.5;
  1020. width: 80%;
  1021. margin: 20px 0 0 20px;
  1022. }
  1023. }
  1024. }
  1025. }
  1026. }
  1027. }