cus-client-common.scss 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  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. min-width: 1240px;font-family: Arial, "微软雅黑", sans-serif;color: #2C3E50;
  108. // head移动端响应式
  109. @media (max-width: 768px){min-width: unset;}
  110. }
  111. /* 饿了么右侧生成的间距 */
  112. .el-popup-parent--hidden{
  113. padding-right:0 !important
  114. }
  115. /* 网站主体部分 */
  116. .client-container{
  117. width: 1200px;margin: 0 auto;
  118. @media (max-width: 768px){width: auto;padding: 0 15px;max-width: 100%;box-sizing: border-box;}
  119. }
  120. .client-container-middle{width: 960px;margin: 0 auto;}
  121. /* 网站头部导航栏 */
  122. .client-head{
  123. width: 100%;
  124. height: 80px;
  125. z-index: 999;
  126. background: #fff;
  127. position: fixed;
  128. top:0;
  129. //头部布局
  130. .head-layout{display: flex;justify-content: space-between;}
  131. //头部导航
  132. .el-menu--horizontal{
  133. border: 0;
  134. >.el-menu-item {
  135. color: rgba(0,0,0,0.85);font-size: 16px;font-weight: bold;
  136. height: 80px;line-height: 80px;margin: 0 10px;padding: 0!important;
  137. a{height: inherit;display: inline-block;padding: 0 6px;}
  138. }
  139. >.el-menu-item.is-active{
  140. color: rgba(0, 174, 186, 1);
  141. border-color:rgba(0, 174, 186, 1);
  142. border-width:4px;
  143. }
  144. }
  145. //头部左侧区域
  146. .head-left{
  147. display: flex;
  148. //头部图标
  149. .client-head-img{width: 230px;height:48px;margin-top: 16px;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;}
  150. }
  151. //头部右侧区域
  152. .head-right{
  153. line-height: 80px;position: relative;
  154. >a{width: 120px;height: 36px;line-height: 36px;font-size:16px;padding: 0 ;border-radius: 4px;display: inline-block;border: 1px solid rgba(0, 174, 186, 1);color:#FFF;background: rgba(0, 174, 186, 1);box-sizing: border-box;text-align: center;}
  155. >a:hover{cursor: pointer;}
  156. }
  157. // head移动端响应式
  158. @media (max-width: 768px){
  159. // head
  160. height: 60px;border-bottom: 1px solid #e7e7e7;
  161. //头部左侧区域 logo
  162. .head-left{
  163. justify-content: space-between;height: 60px;align-items: center;padding:0;
  164. .client-head-img{width: 92px;height: 46px;background-size: contain;margin:0;}
  165. }
  166. //头部导航
  167. .el-menu{position: absolute;margin: 0;left: 0;right: 0;height: 100vh;transition: 0.5s;top: 61px;}
  168. // 手机菜单关闭
  169. .head-nav-up{height: 0;display:none;opacity: 0;}
  170. // 手机菜单开启
  171. .head-nav-down{height: 100vh;display:block;opacity: 1;}
  172. // li
  173. .el-menu--horizontal>.el-menu-item{float: none;height: 60px;line-height: 60px;border-bottom: 1px solid #e9e9e9;margin:0 18px;
  174. border-bottom-color:#e9e9e9!important;font-weight: 700;font-size: 16px;color: rgb(16, 16, 16);}
  175. .el-menu--horizontal>.el-menu-item a{width: 100%}
  176. .el-menu--horizontal>.el-menu-item:last-child{border: 0;}
  177. .el-menu--horizontal > .el-menu-item.is-active{border-bottom: 1px solid #e9e9e9;border-bottom-color: #e9e9e9 !important;}
  178. // 咨询电话
  179. .phone-tel-box{color: rgb(0, 84, 145);font-size: 14px;font-weight: bold;line-height: 60px;}
  180. // 按钮
  181. .phone-nav-btn{width:30px;height:30px;background-image: url("~static/images/client/component/head-btn-icon.svg");}
  182. // 布局
  183. .head-layout{display: block}
  184. }
  185. }
  186. /* 网站头部导栏 - 面包屑 */
  187. .client-breadcrumb-box {
  188. width: 1200px;
  189. font-size: 16px;
  190. margin: 24px auto;
  191. .st-breadcrumb{
  192. margin-left: 24px;
  193. a:last-child{
  194. .breadcrumb-div::after{display: none;}
  195. }
  196. }
  197. .st-breadcrumb-item {display: inline-block;vertical-align: middle;color: #4a73fd;text-decoration: none;}
  198. .st-breadcrumb-item:hover {cursor: pointer;}
  199. .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);
  200. background-image: url("~static/images/client/component/breadcrumb-icon.svg");background-repeat: no-repeat;background-position: center;}
  201. .breadcrumb-div{display: inline-block;vertical-align: middle;}
  202. .st-breadcrumb-item-last {display: inline-block;text-decoration: none;color: #333;vertical-align: middle;}
  203. .st-breadcrumb-item-last:hover {cursor: default;}
  204. // IE11兼容写法
  205. @media all and (-ms-high-contrast:none) {
  206. *::-ms-backdrop, .st-breadcrumb-item-last { margin-left: -10px;}
  207. }
  208. // IE10兼容写法
  209. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  210. .st-breadcrumb-item-last { margin-left: -10px;}
  211. }
  212. }
  213. /* 网站标题 */
  214. .client-title{
  215. @include setFontStyle(16);color: rgba(0,0,0,0.85);letter-spacing: 0;padding-top: 80px;text-align: center;font-weight: bold;
  216. // head移动端响应式
  217. @media (max-width: 768px){@include setFontStyle(-4);padding-top: 20px;font-weight: 700;color: rgb(16, 16, 16);}
  218. }
  219. /* 网站副标题 */
  220. .client-subtitle-title{
  221. width: 650px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 30px;margin:0 auto;margin-top: 16px;text-align: center;
  222. @media (max-width: 768px){width: 100%;text-align: justify;@include setFontStyle(-6);line-height: 24px;}
  223. }
  224. .client-subtitle-title-big{
  225. 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;
  226. @media (max-width: 768px){width: 100%;text-align: justify;margin-top: 24px;padding: 0;@include setFontStyle(-6);line-height: 24px;}
  227. }
  228. /* 网站通用按钮 */
  229. .client-default-Btn{display: block;@include setFontStyle(-4);background: rgb(0, 174, 186);color: rgba(255, 255, 255, 0.85);border-radius: 4px;transition: .3s all linear;text-align: center;}
  230. .client-default-Btn:hover{background: #02AABA;cursor: pointer;}
  231. // 白色
  232. .client-default-white-Btn{display: block;@include setFontStyle(-4);background: #fff;color: rgb(0, 174, 186);border-radius: 4px;transition: .3s all linear;text-align: center;}
  233. .client-default-white-Btn:hover{background: #fff;cursor: pointer;}
  234. // 免费试用按钮
  235. .free-trial-default-btn{
  236. width: 238px;height: 40px;line-height: 40px;margin: 40px auto 0;display: block;@include setFontStyle(-4);background: rgb(0, 174, 186);
  237. color: rgba(255, 255, 255, 0.85);border-radius: 4px;transition: .3s all linear;text-align: center;
  238. @media (max-width: 768px){width: 122px;height: 35px;line-height: 35px;margin: 16px auto 28px;}
  239. }
  240. .free-trial-default-btn:hover{cursor: pointer;}
  241. /* 网站底部footer */
  242. .client-footer{
  243. background: #1E2534;
  244. //footer内容区域
  245. .contact-box{
  246. padding-top: 40px;
  247. .contact-left-box{
  248. display: inline-block;
  249. dl{display: inline-block;margin-right: 48px;margin-bottom: 40px;vertical-align: top;}
  250. dt{@include setFontStyle(-4);color: #FFFFFF;margin-bottom: 16px;}
  251. dd,dd a{font-size:16px;color: rgba(255,255,255,0.64);margin-bottom: 12px;}
  252. dd:hover,dd a:hover{color: rgba(255,255,255,0.85);cursor: pointer}
  253. // 二维码
  254. .two-code-box{position: relative;}
  255. .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; }
  256. .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; }
  257. .two-code-box:hover{
  258. cursor: default;
  259. .two-dimensional-code{display: block;}
  260. .two-dimensional-code:before{display: block;}
  261. }
  262. }
  263. .contact-right-box{
  264. //width: 170px;
  265. float: right;
  266. .gs-js-box p{margin-bottom: 22px;font-size: 16px;color: #fff;}
  267. .right-sw-box{
  268. margin-right: 36px;
  269. h4{@include setFontStyle(-4);color: #FFFFFF;margin-bottom: 16px;text-align: center}
  270. img{width: 100px}
  271. }
  272. div{display: inline-block;vertical-align: middle;}
  273. h3{@include setFontStyle(4);color: #FFF;margin-bottom: 16px;}
  274. p{@include setFontStyle(-6);color: rgba(255,255,255,0.64);margin-bottom: 8px;}
  275. a{@include setFontStyle(-6);color: #2B5CFD;}
  276. a:hover{cursor: pointer;}
  277. }
  278. }
  279. //友情链接区域
  280. .link-box{
  281. border-top: 1px solid #333B4C;
  282. border-right: 0;
  283. border-left: 0;
  284. padding: 32px 0;
  285. h4{@include setFontStyle(-4);color: #FFF;float: left;margin-right: 48px;line-height: 22px;}
  286. .link-a-box{
  287. margin-left: 114px;
  288. line-height: 22px;
  289. a{font-size:16px;color: rgba(255,255,255,0.54);display:inline-block;margin-right: 32px;white-space: nowrap;}
  290. a:hover{color: rgba(255,255,255,0.85);cursor: pointer;}
  291. }
  292. }
  293. //底部版权
  294. h5{@include setFontStyle(-8);color: #B8B8B8;text-align: center;padding: 16px 0 24px;border-top: 1px solid #333B4C;}
  295. @media (max-width: 768px) {
  296. .phone-footer-box {
  297. text-align: center;padding: 20px 0;
  298. a,p{@include setFontStyle(-10);color: #fff;padding: 6px 0}
  299. a{display: block}
  300. }
  301. }
  302. }
  303. /* 网站分页 */
  304. .client-el-pagination{text-align: center;margin-top: 36px}
  305. /* 网站通用详情页布局 */
  306. .client-details-page{
  307. background: #f9faff;
  308. width: 100%;
  309. padding: 24px 0;
  310. // 时间人数
  311. .details-visits-box{
  312. margin-bottom: 16px;
  313. 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");}
  314. i[type="visits"]{background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");}
  315. span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;}
  316. }
  317. //行业资讯详情外层box
  318. .client-details-box{
  319. width: 1200px;
  320. margin: 0 auto;
  321. padding: 24px;
  322. box-sizing: border-box;
  323. background: #FFFFFF;
  324. border-radius: 8px;
  325. }
  326. // 行业资讯详情
  327. .client-details-wrap{
  328. width: 820px;
  329. display: inline-block;
  330. padding-right: 24px;
  331. border-right:1px solid #DCE0E8;
  332. box-sizing: border-box;
  333. vertical-align: top;
  334. >h1{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 16px;}
  335. //内容区域
  336. .client-content-box{
  337. min-height: calc(100vh - 587px);
  338. line-height: 24px;
  339. color: rgba(0,0,0,0.64);
  340. @include setFontStyle(-6);
  341. margin-bottom: 70px;
  342. p{line-height: 22px;}
  343. img{max-width: 100%;}
  344. h1,h2,h3,h4,h5,h6,p{margin-bottom: 10px;}
  345. h1{line-height: 1.3}
  346. }
  347. // 上一篇下一篇
  348. .client-details-pagination{
  349. a{max-width: 45%;float: left;@include setFontStyle(-4);color: rgba(43,92,253,0.85);display: inline-block;@include single-line-ellipsis;}
  350. a:last-child{margin-left: 10%;float: right;}
  351. a:hover{color: #1648EE;cursor: pointer}
  352. }
  353. }
  354. // 最新新闻
  355. .latest-news-box{
  356. width: 300px;
  357. padding-left: 24px;
  358. display: inline-block;
  359. vertical-align: top;
  360. h4{@include setFontStyle(-4);color: rgba(0,0,0,0.85);margin-bottom: 16px;}
  361. .latest-news-list{
  362. li{margin-bottom: 24px}
  363. a{width: 100%;@include setFontStyle(-4);display:inline-block;color: rgba(43,92,253,0.65);margin-bottom: 8px;@include single-line-ellipsis;}
  364. a:hover{color: rgba(43,92,253,0.85);cursor: pointer}
  365. }
  366. // 时间人数
  367. .details-visits-box span{margin-right: 24px;}
  368. }
  369. @media (max-width: 768px) {
  370. padding: 0;
  371. // 时间人数
  372. .details-visits-box{
  373. margin-bottom: 36px;text-align: center;
  374. i{width: 16px;height: 16px;margin-right: 6px;background-size: cover;}
  375. span{@include setFontStyle(-8);margin-right: 24px;line-height: 12px;}
  376. }
  377. //行业资讯详情外层box
  378. .client-details-box{width: 100%;}
  379. // 行业资讯详情
  380. .client-details-wrap{
  381. width: 100%;border: 0;padding-right:0;
  382. >h1{@include setFontStyle(-4);margin: 16px 0;text-align: center;font-weight: bolder;}
  383. //内容区域
  384. .client-content-box{
  385. min-height:unset;
  386. }
  387. // 上一篇下一篇按钮
  388. .client-details-pagination a{border: 1px solid rgba(43, 92, 253, 0.85);padding: 4px 12px;border-radius: 4px;}
  389. }
  390. }
  391. }
  392. /* 网站通用轮播 */
  393. /*.client-industry-information{
  394. background-image: url("~static/images/client/index/index-industry-bg.png");
  395. background-position: center;
  396. padding-bottom: 80px;
  397. // 标题
  398. .client-title{
  399. color: #fff;
  400. }
  401. // 轮播
  402. .information-carousel-box{
  403. width: 100%;
  404. overflow: hidden;
  405. }
  406. // 轮播组件
  407. .el-carousel--horizontal{
  408. overflow: visible;
  409. }
  410. .el-carousel{
  411. width: 1000px;
  412. margin: 0 auto;
  413. margin-top: 48px;
  414. .el-carousel__container{width: 640px;height: 320px;margin: 0 auto;position: relative;}
  415. }
  416. .el-carousel__item{
  417. width: 640px;
  418. background: #FFFFFF;
  419. border-radius: 8px;
  420. .industry-img-box{width: 50%;height: 320px;float: left;background-repeat: no-repeat;background-size: cover;}
  421. .industry-content-box{
  422. height: inherit;margin-left: 50%;padding:32px;box-sizing: border-box;position: relative;
  423. 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;}
  424. 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;}
  425. a{width: 132px;height: 32px;line-height:32px;position: absolute;bottom: 32px;}
  426. }
  427. }
  428. !*.el-carousel__item.is-active{
  429. .industry-img-box{width: 50%;}
  430. .industry-content-box{margin-left: 50%;}
  431. }*!
  432. // 左右按钮
  433. .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);}
  434. // 左箭头
  435. .el-carousel__arrow--left{left:-200px;}
  436. // 右箭头
  437. .el-carousel__arrow--right{right:-200px;}
  438. // 指示器
  439. .el-carousel__indicators{display: none}
  440. }*/
  441. /* 网站通用弹窗-申请方案 */
  442. .application-scheme-dialog{
  443. .el-dialog{width: 610px;border-radius: 8px;}
  444. .el-dialog__body{
  445. padding: 30px 120px 60px;
  446. >i{width:240px;height:52px;display: block;background-image: url("~static/images/client/component/nav-logo.png");margin: 0 auto 24px;background-size: cover;}
  447. p{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin:24px 0 36px;}
  448. span{@include setFontStyle(-6);color: rgba(0,0,0,0.65);}
  449. a{@include setFontStyle(-6);color: #2B5CFD;float: right;}
  450. // 申请注册按钮
  451. .application-scheme-btn{height: 40px;line-height: 40px;@include setFontStyle(-4);background: #1890FF;border-radius: 4px;
  452. color: #FFFFFF;text-align: center;margin-bottom: 16px;cursor: pointer}
  453. }
  454. // 输入框上下间距
  455. .el-form-item{margin-bottom: 24px}
  456. // 输入框左右间距
  457. .el-input .el-input__inner{padding: 0 15px 0 35px;}
  458. //输入框图标
  459. .dialog-input-tel:after,.dialog-input-code:after{width: 16px;height: 16px;content: "";display: inline-block;position: absolute;top: 12px;left: 12px;}
  460. .dialog-input-tel:after{background-image: url("~static/images/client/course/course-dialog-icon1.svg");}
  461. .dialog-input-code:after{background-image: url("~static/images/client/course/course-dialog-icon2.svg");}
  462. // 输入框-验证码
  463. .dialog-input-code{width: calc(100% - 132px);}
  464. .dialog-code-btn.el-button{width:120px;box-sizing:border-box;padding: 12px 15px;margin-left: 8px;}
  465. // 滑块px
  466. .nc-container{
  467. .nc_wrapper{width:100%!important;margin-bottom: 24px;border-radius: 4px;overflow: hidden;}
  468. .nc_scale{
  469. .btn_slide{color: #fff;}
  470. span{width:50px;background: #3893FE;border-radius: 0 4px 4px 0;border: 1px solid transparent;}
  471. }
  472. }
  473. }
  474. /* 网站通用弹窗-进入考试 */
  475. .register-free-dialog{
  476. .el-dialog{width: 610px;border-radius: 8px;}
  477. .el-dialog__body{
  478. padding: 30px 50px 60px;
  479. >i{width:240px;height:52px;display: block;background-image: url("~static/images/client/component/nav-logo.png");margin: 0 auto 24px;background-size: cover;}
  480. h4{font-weight: 700;font-size: 24px;color: rgb(16, 16, 16);text-align: center;}
  481. p{
  482. font-weight: 400;font-size: 20px;color: rgb(0, 0, 0);text-align: center;margin:24px 0 36px;
  483. span{font-weight: 400;font-size: 20px;color: rgb(255, 0, 0);}
  484. }
  485. .el-form{margin: 0 60px;}
  486. // 申请注册按钮
  487. .application-scheme-btn{height: 40px;line-height: 40px;font-size: 16px;font-weight:bold;background: rgb(0, 174, 186);
  488. border-radius: 4px;color: #FFFFFF;text-align: center;margin: 0 60px 16px;cursor: pointer;}
  489. }
  490. // 输入框上下间距
  491. .el-form-item{margin-bottom: 24px}
  492. // 输入框左右间距
  493. .el-input .el-input__inner{padding: 0 15px 0 35px;}
  494. //输入框图标
  495. .dialog-input-tel:after,.dialog-input-code:after{width: 16px;height: 16px;content: "";display: inline-block;position: absolute;top: 12px;left: 12px;}
  496. .dialog-input-tel:after{background-image: url("~static/images/client/course/course-dialog-icon1.svg");}
  497. .dialog-input-code:after{background-image: url("~static/images/client/course/course-dialog-icon2.svg");}
  498. // 输入框-验证码
  499. .dialog-input-code{width: calc(100% - 132px);}
  500. .jcrk-primary-btn{width:120px;box-sizing:border-box;padding: 12px 15px;margin-left: 8px;}
  501. // 滑块px
  502. .nc-container{
  503. .nc_wrapper{width:100%!important;margin-bottom: 24px;border-radius: 4px;overflow: hidden;}
  504. .nc_scale{
  505. .btn_slide{color: #fff;}
  506. span{width:50px;background: rgb(0, 174, 186);border-radius: 0 4px 4px 0;border: 1px solid transparent;}
  507. }
  508. }
  509. }
  510. /* 网站通用弹窗-视频播放 */
  511. .course-video-dialog{
  512. .el-dialog{width: 940px;border-radius: 8px;}
  513. .el-dialog__body{padding: 14px 40px 80px;}
  514. // 标题
  515. .el-dialog__title{@include setFontStyle(-2);color: rgba(0,0,0,0.85);}
  516. // 视频
  517. .course-video-box{width: 100%;height: 480px;}
  518. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);margin-top: 16px;line-height: 22px}
  519. @media (max-width: 768px){
  520. .el-dialog{width: 90%;border-radius: 8px;margin: 0 5%;}
  521. .el-dialog__body{padding: 0 16px;}
  522. // 视频
  523. .course-video-box{height: 180px;}
  524. p{@include setFontStyle(-6);padding: 10px 0 16px;margin: 0}
  525. }
  526. }
  527. /* 首页行业学习详情页-通用部分 */
  528. // banner
  529. .industrydetails-banner{
  530. width: 100%;
  531. height: 400px;
  532. background-color:#042D85;
  533. position: relative;
  534. .industrydetails-banner-box{width:inherit;height:inherit;background-position-x: center;background-repeat: no-repeat;}
  535. .free-trial-default-btn{position: absolute;top:280px;left: 50%;margin-left: -119px;}
  536. @media (max-width: 768px){
  537. height: 150px;
  538. .industrydetails-banner-box{background-size: cover;}
  539. .free-trial-default-btn{top:95px;margin-left: -61px;}
  540. }
  541. }
  542. // 发展现状
  543. .industrydetails-develop-box{
  544. .client-container{padding: 48px 0 80px;text-align: center;}
  545. 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;}
  546. img{display: inline-block;vertical-align: middle;}
  547. @media (max-width: 768px){
  548. .client-container{padding: 16px 30px 48px;display: flex;flex-direction: column-reverse;}
  549. p{width: 100%;display: block;@include setFontStyle(-6);color: rgba(85, 85, 85, 1);line-height: 24px;margin-right: 0;}
  550. img{max-width: 100%;display: block;vertical-align:unset;margin-bottom: 16px;}
  551. }
  552. }
  553. // 产品和服务
  554. .products-services-box{
  555. width: 100%;display: flex;justify-content: space-between;align-items: center;margin-bottom: 100px;
  556. // 头部图片
  557. .el-carousel{width: 560px;height: 379px;flex-shrink: 0;}
  558. .el-carousel__container{height: 379px;}
  559. .cpfw-img-box{width: 100%;height: 379px;display: block;background-position: center;background-repeat: no-repeat;background-size: cover;}
  560. img{width: 560px;}
  561. // 内容区域
  562. .products-services-content{
  563. width: 500px;
  564. padding: 0 12px;
  565. box-sizing: border-box;
  566. margin: 0 20px;
  567. @include setFontStyle(-6);
  568. .client-btn-box{text-align: left;}
  569. h5{
  570. @include setFontStyle(4);color: rgba(0,0,0,0.85);margin-bottom: 32px;font-weight: bold;
  571. // 考试培训 数字
  572. p{display: inline-block;vertical-align: middle;}
  573. i{font-weight: 400;font-size: 150px;color: rgba(215, 215, 215, 0.6);display: inline-block;vertical-align: middle;font-style: normal;margin: 0 12px;}
  574. }
  575. p{line-height: 24px;color:rgb(16, 16, 16);margin-bottom: 56px;text-align: justify;font-weight: bold;}
  576. .p-before-circle{margin-bottom: 6px;}
  577. .p-before-circle:before{
  578. content: '';
  579. width: 8px;
  580. height: 8px;
  581. display: inline-block;
  582. border-radius: 4px;
  583. margin-right: 8px;
  584. background: rgb(0, 174, 186);
  585. vertical-align: middle;
  586. }
  587. .client-btn-box{margin-top: 40px;}
  588. .client-default-Btn,.client-default-white-Btn{width: 150px;height: 40px;line-height: 40px;display:inline-block;background: rgb(0, 174, 186);border: 1px solid rgb(0, 174, 186);box-sizing: border-box;}
  589. .client-default-white-Btn{background: #fff;color: rgb(0, 174, 186);}
  590. a,div.client-default-Btn{margin-right: 24px}
  591. span.client-default-Btn{background: #fff;color: rgb(0, 174, 186);margin-right: 0;}
  592. }
  593. @media (max-width: 768px){
  594. // 头部图片
  595. .el-carousel{width: 100%;height: auto;float: none;}
  596. // 内容区域
  597. .products-services-content{
  598. width: 100%;float: none;padding: 0 10px;margin: 0;
  599. @include setFontStyle(-6);
  600. h5{@include setFontStyle(-6);font-weight: 700;color: rgba(0, 0, 0, 1);}
  601. i{width:34px;height:3px;margin: 10px 0;}
  602. p{margin-bottom: 30px;color: rgba(85, 85, 85, 1);}
  603. .client-btn-box{text-align: center;margin:40px 0;}
  604. .client-default-Btn,.client-default-white-Btn{width: 120px;height: 35px;line-height: 35px;}
  605. a,div.client-default-Btn{margin-right: 16px}
  606. }
  607. }
  608. }
  609. .products-contrary-box{flex-direction: row-reverse;}
  610. // 详情页内容
  611. .industrydetails-content{
  612. li{margin-bottom: 16px;}
  613. 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;}
  614. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 24px;text-align: center;}
  615. p{@include setFontStyle(-5);color: rgba(0,0,0,0.65);line-height: 22px;text-align: left;}
  616. @media (max-width: 768px) {
  617. li{margin-bottom: 10px;}
  618. i{width: 10px;height: 10px;margin-right: 8px;margin-top: 8px;}
  619. h5{@include setFontStyle(-4);color: rgba(255, 255, 255, 1);margin-bottom: 16px;text-align: center;font-weight: 700;}
  620. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;text-align: justify;}
  621. }
  622. }
  623. // 通用平台-新闻资讯样式
  624. .platform-news-information{
  625. padding-bottom: 80px;
  626. background: #f8f8f8;
  627. ul{margin-top: 48px;}
  628. li{
  629. width: 50%;display: inline-block;vertical-align: top;
  630. div{margin: 10px;padding:10px 10px 10px 0;border-bottom:1px dashed #666;}
  631. img{width: 190px;height: 118px;float: left;margin-right: 24px;}
  632. h4{@include setFontStyle(-2);color: rgba(0, 0, 0, 0.85);@include single-line-ellipsis;margin-bottom: 8px;}
  633. h4:hover{color: #3e7ce7;cursor: pointer;}
  634. span{display: block;@include setFontStyle(-6);color: rgba(0, 0, 0, 0.65);margin-bottom: 8px;}
  635. p{@include setFontStyle(-6);height: 66px;line-height: 22px;color: rgba(0, 0, 0, 0.65);@include multi-line-ellipsis(3);}
  636. }
  637. }
  638. // 页面内部导航菜单(课程开发和客户案例)
  639. .platform-menu-ul{
  640. display: block;
  641. margin: 0 auto;
  642. text-align: center;
  643. background: #F7F9FB;
  644. 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}
  645. li.active{color: #2B5CFD;background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);}
  646. li:hover{
  647. transform: scale(1.1);
  648. }
  649. @media (max-width: 768px){
  650. background: #fff;margin: 20px 0 0;
  651. 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);
  652. color: rgb(0, 102, 204);background: #fff;box-shadow: 0 2px 4px 0 rgba(43,92,253,0.16);box-sizing: border-box}
  653. li.active{color: #fff;background: rgb(0, 102, 204);}
  654. li:hover{transform: none;}
  655. }
  656. }
  657. /* 页面课程列表 */
  658. .course-learn-box{
  659. // video列表
  660. .learn-box-list{
  661. margin: 54px -16px 0;
  662. li{
  663. width: 33.33%;display: inline-block;text-align: center;
  664. a{display: none;}
  665. div{background: #fff;border-radius: 8px;margin: 0 16px 40px;}
  666. span{width:342px;height:192px;display: inline-block;margin-top: 16px;border-radius:4px;overflow: hidden;position: relative}
  667. i{width: 48px;height: 48px;cursor: pointer;background-image: url("~static/images/client/course/course-video-icon.svg");display: inline-block;position: absolute;
  668. left: 50%;margin-left: -24px;z-index: 5;top: 50%;margin-top: -24px;background-size: cover;background-position: bottom;transition: all 0.5s;}
  669. img{transition: all 0.5s;}
  670. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);padding: 24px 0 24px;}
  671. }
  672. li span:hover{img{transform: scale(1.1);}}
  673. li i:hover{background-image: url("~static/images/client/course/course-video-icon-a.svg");background-size: cover;background-position: bottom;}
  674. }
  675. @media (max-width: 768px){
  676. margin: 0 6%;
  677. // video列表
  678. .learn-box-list{
  679. margin: 12px 0;
  680. li{
  681. width: 100%;margin-bottom: 20px;
  682. div{margin: 0;padding: 0;box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px -1px;border-radius:0;}
  683. span{width: 100%;height: 180px;margin-top: 0;border-radius:0;}
  684. img{width: 100%;}
  685. p{padding: 20px 0 20px;@include setFontStyle(-6);color: #101010;}
  686. }
  687. }
  688. }
  689. }
  690. /* 底部跳转 */
  691. .bottom-btn-box{
  692. height: 50px;position: fixed;bottom: 0;left: 0;right: 0;font-size: 0;background: #fff;z-index: 99999;border-top: 1px solid #ccc;
  693. li{width: 25%;margin: 0;padding: 0;}
  694. a{width: 100%;height: 50px;line-height: 1;display: inline-block;text-align: center;font-size: 13px;color: #333;margin: 6px 0;}
  695. i{width:22px;height: 22px;background-size:cover;display: block;margin: 0 auto 3px;}
  696. span{color: #333;}
  697. li:nth-child(1) i{background-image: url("~static/images/icons/shouye.svg");}
  698. li:nth-child(2) i{background-image: url("~static/images/icons/tiyan.svg");}
  699. li:nth-child(3) i{background-image: url("~static/images/icons/dianhua.svg");}
  700. li:nth-child(4) i{background-image: url("~static/images/icons/zixun.svg");}
  701. li.is-active span{color: #2881db;}
  702. li.is-active:nth-child(1) i{background-image: url("~static/images/icons/shouye-a.svg");}
  703. li.is-active:nth-child(2) i{background-image: url("~static/images/icons/tiyan-a.svg");}
  704. li.is-active:nth-child(3) i{background-image: url("~static/images/icons/dianhua-a.svg");}
  705. li.is-active:nth-child(4) i{background-image: url("~static/images/icons/zixun-a.svg");}
  706. }
  707. /* 久创锐康科技primary按钮 */
  708. .jcrk-primary-btn.el-button--primary {
  709. color: #FFF;
  710. background-color: #00aeba;
  711. border-color: #00aeba;
  712. }
  713. .jcrk-primary-btn.el-button--primary.is-disabled{background-color: #00aeba8f;border-color: #00aeba8f;}
  714. /********************************* 久创锐康栅格**********************************/
  715. /*
  716. 栅格说明:
  717. 1.网站内容区域1200px;
  718. 2.手机端<=768
  719. 3.pad-------------------(769---992---1200)
  720. pad768*1024(手机样式)
  721. pad1024*1366(pad样式)
  722. 4.pc---1200以上
  723. */
  724. // 大于768的隐藏
  725. @media screen and (min-width: 769px) {
  726. .mta-hidden-sm{display: none!important;}
  727. }
  728. // 小于769的隐藏
  729. @media screen and (max-width: 769px) {
  730. .mta-hidden-xs{display: none!important;}
  731. // 提示框
  732. .phone-message-box{
  733. width: 88%;min-width: unset;top: 35% !important;display: block;text-align: center;padding: 36px 0;
  734. .el-message__icon{margin-bottom: 20px;}
  735. .el-message__icon:before{font-size: 50px;}
  736. }
  737. }
  738. /********************************* 久创锐康移动端组件**********************************/
  739. @media (max-width: 768px) {
  740. // swiper
  741. .experience-swiper-box {
  742. position: relative;
  743. // swiper--div
  744. .swiper-slide {width: 100%;}
  745. .swiper-pagination-style {
  746. width: 80px;position: absolute;bottom: 66px;left: 50%;margin-left: -30px;z-index: 99;
  747. // 小圆点
  748. .my-bullet-swiper {width: 10px;height: 10px;border-radius: 5px;display: inline-block;background: rgba(0, 102, 204, 0.2);margin-right: 14px;}
  749. // 分页active
  750. .my-bullet-active-swiper {background: rgb(0, 102, 204)}
  751. }
  752. // swiper 内容区
  753. .experience-content-box {
  754. height: 243px;display: flex;flex-direction: column;align-items: center;justify-content: center;
  755. margin: 5px 4% 40px;box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px -1px;text-align: center;padding: 20px 0;
  756. i {width: 64px;height: 64px;background-repeat: no-repeat;background-size: contain;margin-bottom: 24px;display: inline-block;flex-shrink: 0;}
  757. h5 {font-weight: 700;font-size: 16px;color: rgb(16, 16, 16);margin-bottom: 30px;}
  758. p {font-weight: 400;font-size: 14px;color: rgb(16, 16, 16);margin: 6px 0;}
  759. a {width: 122px;height: 35px;line-height: 35px;background-color: rgb(0, 102, 204);color: rgb(255, 255, 255);border-radius: 5px;font-size: 14px;
  760. padding: 0;text-align: center;display: inline-block;margin-top: 16px;
  761. }
  762. }
  763. // swiper 提示
  764. .experience-swiper-tip {font-weight: 400;font-size: 14px;color: rgb(96, 96, 96);text-align: center;margin: 0 0 42px;}
  765. }
  766. // 移动端点击a标签背景变色bug修复
  767. a{-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  768. -webkit-user-select: none;
  769. -moz-user-focus: none;
  770. -moz-user-select: none;}
  771. }