cus-client-page.scss 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132
  1. @import "../base/utils";
  2. @import "cus-client-common";
  3. @mixin setClientPage() {
  4. /******** describe: 网站首页 author: TX date:2020-07-30 ********/
  5. .client-index-page{
  6. width: 100%;
  7. /* 网站banner */
  8. .client-index-banner{
  9. width: 100%;
  10. height: 480px;
  11. background-image: url("~static/images/client/index/index-banner-background.png");
  12. background-position-x: center;
  13. .banner-left{
  14. width:500px;
  15. display: inline-block;
  16. h4{@include setFontStyle(40);color: #FFF;letter-spacing: 0;padding-top: 150px;}
  17. p{@include setFontStyle(4);display: inline-block;background: #6D4FFF;border-radius: 24px;color: #FFF;margin: 24px 5px;padding: 6px 40px;}
  18. }
  19. .banner-right{
  20. width: 611px;
  21. height: 432px;
  22. float: right;
  23. margin-top: 48px;
  24. background-image: url("~static/images/client/index/index-banner-img.png");
  25. position: relative;
  26. .banner-tel-box{
  27. width: 284px;
  28. height: 328px;
  29. background-image: url("~static/images/client/index/index-banner-tel.png");
  30. position: absolute;
  31. top: -10px;
  32. left: 140px;
  33. //电视屏幕
  34. img{position: absolute;top: 25px;left: 98px;animation: 5s bannerTel ease infinite;-webkit-animation: 5s bannerTel ease infinite;-moz-animation: 5s bannerTel ease infinite;-o-animation: 5s bannerTel ease infinite;}
  35. //电视屏幕动画效果
  36. @keyframes bannerTel{
  37. from {top: 25px;left: 98px;opacity: 1;}
  38. to {top: 35px;left: 65px;opacity: 0.1;}
  39. }
  40. }
  41. //饼图
  42. .banner-pie{
  43. width: 35px;
  44. height: 31px;
  45. display: block;
  46. position: absolute;
  47. top: 86px;
  48. right: 62px;
  49. background-image: url("~static/images/client/index/index-banner-pie.png");
  50. animation: 5s webPie ease infinite;-webkit-animation: 5s webPie ease infinite;-moz-animation: 5s webPie ease infinite;-o-animation: 5s webPie ease infinite;
  51. }
  52. //饼图动画效果
  53. @keyframes webPie {
  54. from {top: 86px;opacity: 1;}
  55. to {top: 50px;opacity: 0;transform: scale(1.3);}
  56. }
  57. //漂浮小圆点
  58. .banner-i-run i{
  59. width: 16px;
  60. height: 16px;
  61. display: block;
  62. position: absolute;
  63. background:#51E2F4;
  64. border-radius: 50%;
  65. bottom: 150px;
  66. left: 80px;
  67. opacity: 0;
  68. }
  69. .banner-i-run i:nth-child(1){animation: 5s bannerRunI1 ease infinite;-webkit-animation: 5s bannerRunI1 ease infinite;-moz-animation: 10s bannerRunI1 ease infinite;-o-animation: 5s bannerRunI1 ease infinite;}
  70. .banner-i-run i:nth-child(2){width:8px;height:8px;bottom: 240px;left: 50px;opacity: 0;animation: 5s bannerRunI2 ease 2s infinite;-webkit-animation: 5s bannerRunI2 ease 2s infinite;-moz-animation: 5s bannerRunI2 ease infinite;-o-animation: 5s bannerRunI2 ease infinite;}
  71. .banner-i-run i:nth-child(3){width:7px;height:7px;bottom: 220px;left: 110px;opacity: 0;animation: 5s bannerRunI3 ease 3s infinite;-webkit-animation: 5s bannerRunI3 ease 3s infinite;-moz-animation: 5s bannerRunI3 ease infinite;-o-animation: 5s bannerRunI3 ease infinite;}
  72. .banner-i-run i:nth-child(4){width:9px;height:9px;bottom: 300px;left: 130px;opacity: 0;animation: 5s bannerRunI4 ease 4s infinite;-webkit-animation: 5s bannerRunI4 ease 4s infinite;-moz-animation: 5s bannerRunI4 ease infinite;-o-animation: 5s bannerRunI4 ease infinite;}
  73. .banner-i-run i:nth-child(5){width:6px;height:6px;bottom: 310px;left: 70px;opacity: 0;animation: 5s bannerRunI5 ease 5s infinite;-webkit-animation: 5s bannerRunI5 ease 5s infinite;-moz-animation: 5s bannerRunI5 ease infinite;-o-animation: 5s bannerRunI5 ease infinite;}
  74. @keyframes bannerRunI1 {
  75. 0%{bottom: 150px;opacity: 1;}
  76. 100%{bottom: 240px;opacity: 0;left: 70px;}
  77. }
  78. @keyframes bannerRunI2 {
  79. //0%{opacity: 0.5;}
  80. 0%{opacity: 0;}
  81. 5%{bottom: 240px;opacity: 0.7;}
  82. 100%{bottom: 410px;opacity: 0;left: 40px;}
  83. }
  84. @keyframes bannerRunI3 {
  85. 0%{opacity: 0;}
  86. 5%{bottom: 220px;opacity: 0.8;}
  87. 100%{bottom: 380px;opacity: 0;left: 130px}
  88. }
  89. @keyframes bannerRunI4 {
  90. 0%{opacity: 0;}
  91. 5%{bottom: 300px;opacity: 0.8;}
  92. 70%{bottom: 400px;opacity: 0;left: 160px}
  93. }
  94. @keyframes bannerRunI5 {
  95. 0%{opacity: 0;}
  96. 5%{bottom: 310px;opacity: 0.6;}
  97. 100%{bottom: 420px;opacity: 0;left: 110px}
  98. }
  99. }
  100. }
  101. /* 认识我们*/
  102. .client-link-box{
  103. background: #F7F9FB;
  104. li{
  105. width: 25%;display: inline-block;padding:24px;border-right: 2px solid #FFF;box-sizing: border-box;transition: 0.3s;
  106. //左侧图片区域
  107. .link-left{
  108. width: 60px;height: 60px;float: left;background-image: url("~static/images/client/index/index-linkLeft-bg.svg");text-align:center;transition: 0.3s;
  109. i{width:24px;height:24px;display: inline-block;margin-top: 18px;}
  110. }
  111. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;margin-left: 74px;}
  112. p{@include setFontStyle(-6);height:48px;color: rgba(0,0,0,0.65);line-height: 22px;margin-left:74px;@include multi-line-ellipsis(2);}
  113. }
  114. li:nth-child(1){.link-left i{background-image: url("~static/images/client/index/index-link-img1.svg");}}
  115. li:nth-child(1):hover{.link-left i{background-image: url("~static/images/client/index/index-link-img1-a.svg");}}
  116. li:nth-child(2){.link-left i{background-image: url("~static/images/client/index/index-link-img2.svg");}}
  117. li:nth-child(2):hover{.link-left i{background-image: url("~static/images/client/index/index-link-img2-a.svg");}}
  118. li:nth-child(3){.link-left i{background-image: url("~static/images/client/index/index-link-img3.svg");}}
  119. li:nth-child(3):hover{.link-left i{background-image: url("~static/images/client/index/index-link-img3-a.svg");}}
  120. li:nth-child(4){.link-left i{background-image: url("~static/images/client/index/index-link-img4.svg");}}
  121. li:nth-child(4):hover{.link-left i{background-image: url("~static/images/client/index/index-link-img4-a.svg");}}
  122. li:last-child{border-right: 0;}
  123. li:hover{
  124. background: #F1F1F1;
  125. cursor: pointer;
  126. //左侧图片区域
  127. .link-left{background-image: url("~static/images/client/index/index-linkLeft-bg-a.svg");}
  128. h5{color: #2B5CFD}
  129. }
  130. }
  131. /* 产品和服务 */
  132. .products-services-box{
  133. padding: 136px 0 32px;
  134. li{
  135. width: 33.33%;
  136. display: inline-block;
  137. vertical-align: top;
  138. position: relative;
  139. //头部图片
  140. .products-services-img{
  141. width: 96px;
  142. height: 120px;
  143. position: absolute;
  144. top: -80px;
  145. left: 50%;
  146. margin-left: -48px;
  147. transition: .3s all linear;
  148. i{
  149. display: block;
  150. position: absolute;
  151. }
  152. }
  153. //内容区域
  154. .products-services-content{
  155. padding: 66px 40px 32px;
  156. transition: .3s all linear;
  157. margin: 0 24px;
  158. @include setFontStyle(-6);
  159. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin-bottom: 16px;}
  160. p{line-height: 22px;color: rgba(0,0,0,0.65);margin-bottom: 70px;text-align: justify;@include multi-line-ellipsis(6);}
  161. .products-btn-box{display: flex;width: 100%;justify-content: center;}
  162. a,div,span{width: 120px;height: 32px;display:inline-block;line-height: 32px;opacity:0;margin-right: 24px}
  163. span{
  164. width:auto;background: transparent;color: #2B5CFD;margin-right: 0;
  165. i{width: 8px;height: 8px;display:inline-block;margin-left: 8px; background-image: url("~static/images/client/index/index-products-icon.svg");}
  166. }
  167. }
  168. }
  169. li:nth-child(1){
  170. .products-services-img{
  171. background-image: url("~static/images/client/index/index-products-kaoshi.png");
  172. i{width:38px;height:28px;top: 28px;left: 35px;background-image: url("~static/images/client/index/index-products-kaoshi-icon.svg");animation: 3s servicesImgUpDown linear infinite;}
  173. }
  174. }
  175. li:nth-child(2){
  176. .products-services-img{
  177. background-image: url("~static/images/client/index/index-products-peixun.png");
  178. i{width:21px;height:32px;top: 18px;left: 42px;background-image: url("~static/images/client/index/index-products-peixun-icon.svg");animation: 3s servicesImgUpDown2 linear infinite;}
  179. }
  180. }
  181. li:nth-child(3){
  182. .products-services-img{
  183. background-image: url("~static/images/client/index/index-products-kejian.png");
  184. i{width:34px;height:33px;top: 25px;left: 25px;background-image: url("~static/images/client/index/index-products-kejian-icon.svg");transform:rotate(0);animation: 4s servicesImgRotate linear infinite;}
  185. }
  186. }
  187. //小图标动画效果
  188. //饼图动画效果
  189. @keyframes servicesImgUpDown {
  190. 0%, to {top: 28px}
  191. 50% {top: 38px;}
  192. }
  193. @keyframes servicesImgUpDown2 {
  194. 0%, to {top: 18px}
  195. 50% {top: 28px;}
  196. }
  197. @keyframes servicesImgRotate{
  198. from {transform:rotate(0);}
  199. to {transform:rotate(360deg);}
  200. }
  201. // li-鼠标悬浮效果
  202. li:hover{
  203. //头部图片
  204. .products-services-img{top: -90px;}
  205. //内容区域
  206. .products-services-content{
  207. cursor: default;
  208. box-shadow: 0 4px 8px 0 rgba(214,214,214,0.76);
  209. border-radius: 8px;
  210. a,div,span{opacity: 1;}
  211. span{color: #2249C9;cursor: pointer}
  212. }
  213. }
  214. }
  215. /* 行业学习需求 */
  216. .client-demand-box{
  217. background: #F9FAFF;
  218. padding-bottom: 80px;
  219. min-height: 720px;
  220. //tab
  221. .demand-box-tab{
  222. margin-top: 30px;
  223. .el-tabs__item{width:124px;height: 40px;line-height: 40px;@include setFontStyle(-4);color: rgba(0,0,0,0.85);padding: 0;text-align: center;}
  224. .el-tabs__item.is-active{background-image: url("~static/images/client/index/index-demand-btnBg.png");color: #fff;}
  225. // 免费试用按钮
  226. .client-default-Btn{width: 238px;height: 40px;line-height: 40px;margin: 40px auto 0;}
  227. }
  228. //覆盖饿了么样式
  229. .el-tabs__header{margin: 0 0 48px;}
  230. .demand-box-tab.el-tabs--card>.el-tabs__header{border: 0}
  231. .demand-box-tab.el-tabs--card>.el-tabs__header .el-tabs__nav{width: 72%;height: 40px;margin: 0 auto;border-color: #ccc;border-bottom: 1px solid #ccc;border-right:0;border-left:0;border-radius: 0;}
  232. .demand-box-tab .el-tabs__nav-scroll{text-align: center;}
  233. .demand-box-tab .el-tabs__nav{float: none;}
  234. // 考试ul
  235. .demand-tab-list{
  236. li{
  237. width: 33.33%;display: inline-block;position: relative;margin-bottom: 24px;overflow: hidden;
  238. // 内容区域
  239. .demand-content-box{height: 300px;margin: 0 6px;background-size: cover;background-repeat: no-repeat;}
  240. // 蒙版
  241. .demand-mask-box{
  242. position: absolute;
  243. top: 240px;
  244. padding: 20px;
  245. background:rgba(66,66,66,0.65);
  246. transition: 0.5s;
  247. margin: 0 6px;
  248. color: #fff;
  249. h4{
  250. @include setFontStyle(0);margin-bottom: 24px;text-align: center;
  251. >a{float: right;display: none;}
  252. }
  253. p{@include setFontStyle(-6);line-height: 24px;margin-bottom: 16px;@include multi-line-ellipsis(4);text-align: justify; }
  254. span{@include setFontStyle(-6);color: #fff;}
  255. i{width: 15px;height: 15px;display: inline-block;vertical-align: middle;margin-left: 8px;background-image: url("~static/images/client/index/index-demand-icon.png");}
  256. }
  257. // 图标div
  258. .demand-icon-box{
  259. padding: 16px 0;
  260. border-top: 1px solid #fff;
  261. a{margin-right: 8px}
  262. a:last-child{margin-right: 0;}
  263. img{width: 80px;height: 80px;}
  264. }
  265. }
  266. li:nth-child(1){
  267. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img1.png");}
  268. }
  269. li:nth-child(2){
  270. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img2.png");}
  271. }
  272. li:nth-child(3){
  273. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img3.png");}
  274. }
  275. li:nth-child(4){
  276. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img4.png");}
  277. }
  278. li:nth-child(5){
  279. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img5.png");}
  280. }
  281. li:nth-child(6){
  282. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img6.png");}
  283. }
  284. li:hover{
  285. // 蒙版
  286. .demand-mask-box{
  287. top:0;
  288. h4{
  289. text-align: left;
  290. >a{display: inline-block;}
  291. }
  292. }
  293. }
  294. }
  295. }
  296. /* 超过10万家客户的信任之选 */
  297. .client-customer-box{
  298. .customer-img-box{
  299. padding-bottom: 80px;
  300. li{
  301. width: 20%;
  302. display: inline-block;
  303. }
  304. img{margin: 48px 30px 0;transition: all 0.5s;}
  305. li:hover{
  306. img{transform: scale(1.1);box-shadow: 0 4px 8px 0 rgba(214, 214, 214, 0.76);border-radius: 6px}
  307. }
  308. }
  309. }
  310. /* 我们始终专注教育系统研发更懂用户需求 */
  311. .client-cert-box{
  312. background: #F9FAFF;
  313. padding-bottom: 80px;
  314. .cert-img-box{
  315. display: flex;
  316. justify-content: space-between;
  317. margin: 48px 0 64px;
  318. span{display:block;background: #E8ECFF;border-radius: 8px;padding: 10px 10px 6px;overflow: hidden;}
  319. img{width: 154px;height:210px;transition: all 0.5s;}
  320. img:hover{transform: scale(1.14);}
  321. }
  322. a{width:238px;height:40px;line-height: 40px;margin: 40px auto 0;}
  323. }
  324. /* 为什么选择我们 */
  325. .client-chose-box{
  326. padding-bottom: 80px;
  327. .chose-img-box{
  328. li{
  329. width: 25%;display: inline-block;
  330. div{width: 152px;height: 152px;border-radius:50%;position:relative;margin: 48px auto 24px;transition: all 0.3s;background-size: cover}
  331. i{width: 55px;height: 50px;position: absolute;top: 45px;left: 35px;background-size: cover;}
  332. h5{@include setFontStyle(-2);text-align: center;color: rgba(0,0,0,0.85);}
  333. }
  334. li:nth-child(1){
  335. div{background-image: url("~static/images/client/index/index-chose-service.svg");}
  336. i{background-image: url("~static/images/client/index/index-chose-service-icon.svg");animation: 3s choseImgUpDown1 linear infinite;}
  337. }
  338. li:nth-child(2){
  339. div{background-image: url("~static/images/client/index/index-chose-system.svg");}
  340. i{background-image: url("~static/images/client/index/index-chose-system-icon.svg");top: 22px;left: 40px;animation: 3s choseImgUpDown2 linear infinite;}
  341. }
  342. li:nth-child(3){
  343. div{background-image: url("~static/images/client/index/index-chose-tech.svg");}
  344. i{background-image: url("~static/images/client/index/index-chose-tech-icon.svg");animation: 3s choseImgUpDown1 linear infinite;}
  345. }
  346. li:nth-child(4){
  347. div{background-image: url("~static/images/client/index/index-chose-operate.svg");}
  348. i{background-image: url("~static/images/client/index/index-chose-operate-icon.svg");animation: 3s choseImgUpDown3 linear infinite;}
  349. }
  350. li:hover{
  351. div{box-shadow: 0 3px 9px rgba(43, 92, 253,0.25);transform: translateY(-10px);cursor: pointer;}
  352. h5{color: #2B5CFD;}
  353. }
  354. //选择我们动画效果
  355. @keyframes choseImgUpDown1 {
  356. 0%, to {top: 45px;}
  357. 50% {top: 55px;}
  358. }
  359. @keyframes choseImgUpDown2 {
  360. 0%, to {top: 22px;}
  361. 50% {top: 32px;}
  362. }
  363. @keyframes choseImgUpDown3 {
  364. 0%, to {top: 40px;}
  365. 50% {top: 50px;}
  366. }
  367. }
  368. }
  369. }
  370. /******** describe: 考试平台 author: TX date:2020-08-12 ********/
  371. .client-exam-page{
  372. /* 网站banner */
  373. .client-exam-banner{
  374. width: 100%;
  375. height: 400px;
  376. background-image: url("~static/images/client/exam/exam-banner-background.png");
  377. background-position-x: center;
  378. /* banner文字区域 */
  379. .exam-banner-container{
  380. width:500px;
  381. display: inline-block;
  382. margin-left: 150px;
  383. h4{@include setFontStyle(40);color: #FFF;letter-spacing: 0;padding-top: 110px;}
  384. p{@include setFontStyle(0);color: #FFF;margin: 16px 0;}
  385. i{width:1px;height:16px;display:inline-block;margin: 0 24px;background: #DFE6FE;vertical-align: middle;}
  386. a{width: 132px;height: 32px;line-height: 32px;display: inline-block;@include setFontStyle(-4);color: #2B5CFD;background: #FFFFFF;text-align:center;border-radius: 4px;}
  387. }
  388. }
  389. /* 产品优势 */
  390. .exam-product-advantages{
  391. width: 100%;display: flex;justify-content: space-between;margin: 48px 0;
  392. li{width: 250px;padding: 32px 0;border-radius: 8px;transition: .3s all linear;}
  393. li:hover{background: #F9FAFF;cursor: default}
  394. img{display: block;margin: 0 auto;}
  395. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin: 16px 0 8px;}
  396. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);padding:0 24px;margin-bottom: 21px;text-align: center;@include multi-line-ellipsis(3);}
  397. }
  398. /* 产品功能 */
  399. .exam-product-function{
  400. background: #F9FAFF;
  401. padding-bottom: 32px;
  402. // ul
  403. .product-function-box{
  404. margin-top: 24px;
  405. li{
  406. width: 50%;display: inline-block;transition: .3s all linear;
  407. div{padding: 24px 32px;margin: 0 32px;}
  408. i{width: 40px;height: 40px;float:left;background-size: cover;background-repeat: no-repeat;}
  409. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;margin-left: 56px;}
  410. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);margin-left: 56px;@include multi-line-ellipsis(3);}
  411. }
  412. li:nth-child(1){i{background-image:url("~static/images/client/exam/product-function-icon1.svg");}}
  413. li:nth-child(2){i{background-image:url("~static/images/client/exam/product-function-icon2.svg");}}
  414. li:nth-child(3){i{background-image:url("~static/images/client/exam/product-function-icon3.svg");}}
  415. li:nth-child(4){i{background-image:url("~static/images/client/exam/product-function-icon4.svg");}}
  416. li:nth-child(5){i{background-image:url("~static/images/client/exam/product-function-icon5.svg");}}
  417. li:nth-child(6){i{background-image:url("~static/images/client/exam/product-function-icon6.svg");}}
  418. li:nth-child(7){i{background-image:url("~static/images/client/exam/product-function-icon7.svg");}}
  419. li:nth-child(8){i{background-image:url("~static/images/client/exam/product-function-icon8.svg");}}
  420. li:hover{div{box-shadow: 0 2px 4px 0 #D4DBFF;border-radius: 8px;cursor: default}}
  421. }
  422. }
  423. /* 产品展示 */
  424. .exam-product-show{
  425. background: #0E1F3C;
  426. h4{color: #fff;}
  427. // 轮播外层容器
  428. .product-show-container{max-width: 1600px;margin: 0 auto;}
  429. .el-carousel{
  430. min-height: 360px;padding: 48px 0 80px;
  431. // 轮播内容区
  432. .el-carousel__container{width: 1360px;height: 360px;margin: 0 auto;}
  433. }
  434. // 后方卡片
  435. .el-carousel__item{
  436. width:560px;
  437. .el-carousel__mask{background: transparent;}
  438. .product-show-carousel{
  439. width:350px;
  440. padding-top: 70px;
  441. margin: 0 auto;
  442. img{width:100%;height: 198px;border-radius: 8px;}
  443. h5{@include setFontStyle(-4);color: rgba(255,255,255,0.65);margin-top: 16px;text-align: center;}
  444. }
  445. }
  446. // 前方卡片(active)
  447. .el-carousel__item.is-active{
  448. width: 560px;
  449. .product-show-carousel{
  450. width: 560px;
  451. padding-top: 0;
  452. img{height: 315px;}
  453. }
  454. }
  455. // 轮播下方进度标签
  456. .el-carousel__indicators--outside{display: none}
  457. }
  458. /* 应用场景 */
  459. .exam-application-scenarios{
  460. background: #F9FAFF;
  461. .application-scenarios-box{padding: 120px 0 80px;margin: 0 -16px;}
  462. li{
  463. width: 33.33%;
  464. display: inline-block;
  465. vertical-align: top;
  466. position: relative;
  467. transition: .3s all linear;
  468. .application-scenarios-img{
  469. width: 116px;
  470. height: 116px;
  471. position: absolute;
  472. top: -70px;
  473. left: 50%;
  474. margin-left: -58px;
  475. background-size: cover;
  476. i{width:32px;height:32px;display: block;background-size: cover;position: absolute;}
  477. }
  478. .application-scenarios-content{
  479. padding: 80px 24px 40px;
  480. margin: 0 16px;
  481. background: #FFF;
  482. border-radius: 8px;
  483. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin-bottom: 16px;}
  484. p{@include setFontStyle(-6);line-height: 22px;color: rgba(0,0,0,0.65);text-align: justify;@include multi-line-ellipsis(5);min-height: 110px;max-height: 110px}
  485. }
  486. }
  487. li:hover{
  488. margin-top: -16px;cursor: default;
  489. }
  490. li:nth-child(1){
  491. .application-scenarios-img {
  492. background-image: url("~static/images/client/exam/application-scenarios-img1.svg");
  493. i{top: 48px;left: 42px;background-image: url("~static/images/client/exam/application-scenarios-icon1.svg");animation: 3s scenariosImgUpDown1 linear infinite;}
  494. }
  495. }
  496. li:nth-child(2){
  497. .application-scenarios-img {
  498. background-image: url("~static/images/client/exam/application-scenarios-img2.svg");
  499. i{top: 35px;left: 38px;background-image: url("~static/images/client/exam/application-scenarios-icon2.svg");animation: 3s scenariosImgUpDown2 linear infinite;}
  500. }
  501. }
  502. li:nth-child(3){
  503. .application-scenarios-img {
  504. background-image: url("~static/images/client/exam/application-scenarios-img3.svg");
  505. i{top: 35px;left: 32px;background-image: url("~static/images/client/exam/application-scenarios-icon3.svg");animation: 3s scenariosImgUpDown2 linear infinite;}
  506. }
  507. }
  508. // 应用场景图标动画
  509. @keyframes scenariosImgUpDown1 {
  510. 0%, to {top: 48px;}
  511. 50% {top: 40px;}
  512. }
  513. @keyframes scenariosImgUpDown2 {
  514. 0%, to {top: 35px;}
  515. 50% {top: 28px;}
  516. }
  517. }
  518. }
  519. /******** describe: 培训平台 author: TX date:2020-08-14 ********/
  520. .client-train-page{
  521. /* 网站banner */
  522. .client-train-banner{
  523. width: 100%;
  524. height: 454px;
  525. background-image: url("~static/images/client/train/train-banner-background.png");
  526. background-position-x: center;
  527. /* banner文字区域 */
  528. .train-banner-container{
  529. width:500px;
  530. display: inline-block;
  531. margin-left: 150px;
  532. h4{@include setFontStyle(36);color: #FFF;letter-spacing: 0;padding-top: 110px;}
  533. p{@include setFontStyle(0);color: #FFF;margin: 16px 0;}
  534. a{width: 132px;height: 32px;line-height: 32px;display: inline-block;@include setFontStyle(-4);color: #2B5CFD;background: #FFFFFF;text-align:center;border-radius: 4px;}
  535. }
  536. }
  537. /* 产品优势 */
  538. .train-product-advantages{
  539. width: 100%;display: flex;justify-content: space-between;margin: 48px 0;
  540. li{width: 250px;padding: 32px 0;border-radius: 8px;transition: .3s all linear;}
  541. li:hover{background: #F9FAFF;cursor: default}
  542. img{display: block;margin: 0 auto;}
  543. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin: 16px 0 8px;}
  544. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);padding:0 24px;margin-bottom: 21px;text-align: center;@include multi-line-ellipsis(3);}
  545. }
  546. /* 产品功能 */
  547. .train-product-function{
  548. background: #F9FAFF;
  549. padding-bottom: 32px;
  550. // ul
  551. .product-function-box{
  552. margin-top: 24px;
  553. li{
  554. width: 50%;display: inline-block;transition: .3s all linear;
  555. div{padding: 24px 32px;margin: 0 32px;}
  556. i{width: 40px;height: 40px;float:left;background-size: cover;background-repeat: no-repeat;}
  557. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;margin-left: 56px;}
  558. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);margin-left: 56px;@include multi-line-ellipsis(3);}
  559. }
  560. li:nth-child(1){i{background-image:url("~static/images/client/train/product-function-icon1.svg");}}
  561. li:nth-child(2){i{background-image:url("~static/images/client/train/product-function-icon2.svg");}}
  562. li:nth-child(3){i{background-image:url("~static/images/client/train/product-function-icon3.svg");}}
  563. li:nth-child(4){i{background-image:url("~static/images/client/train/product-function-icon4.svg");}}
  564. li:nth-child(5){i{background-image:url("~static/images/client/train/product-function-icon5.svg");}}
  565. li:nth-child(6){i{background-image:url("~static/images/client/train/product-function-icon6.svg");}}
  566. li:nth-child(7){i{background-image:url("~static/images/client/train/product-function-icon7.svg");}}
  567. li:nth-child(8){i{background-image:url("~static/images/client/train/product-function-icon8.svg");}}
  568. li:hover{div{box-shadow: 0 2px 4px 0 #D4DBFF;border-radius: 8px;cursor: default}}
  569. }
  570. }
  571. /* 产品展示 */
  572. .train-product-show{
  573. background: #0E1F3C;
  574. h4{color: #fff;}
  575. // 轮播外层容器
  576. .product-show-container{max-width: 1600px;margin: 0 auto;}
  577. .el-carousel{
  578. height: 360px;padding: 48px 0 80px;
  579. // 轮播内容区
  580. .el-carousel__container{width: 1360px;height: 360px;margin: 0 auto;}
  581. }
  582. // 后方卡片
  583. .el-carousel__item{
  584. width:560px;
  585. .el-carousel__mask{background: transparent;}
  586. .product-show-carousel{
  587. width:350px;
  588. padding-top: 70px;
  589. margin: 0 auto;
  590. img{width:100%;height: 198px;border-radius: 8px;}
  591. h5{@include setFontStyle(-4);color: rgba(255,255,255,0.65);margin-top: 16px;text-align: center;}
  592. }
  593. }
  594. // 前方卡片(active)
  595. .el-carousel__item.is-active{
  596. width: 560px;
  597. .product-show-carousel{
  598. width: 560px;
  599. padding-top: 0;
  600. img{height: 315px;}
  601. }
  602. }
  603. // 轮播下方进度标签
  604. .el-carousel__indicators--outside{display: none}
  605. }
  606. /* 应用场景 */
  607. .train-application-scenarios{
  608. background: #F9FAFF;
  609. .application-scenarios-box{height:266px;padding: 120px 0 80px;margin: 0 -16px;}
  610. li{
  611. width: 33.33%;
  612. display: inline-block;
  613. vertical-align: top;
  614. position: relative;
  615. transition: .3s all linear;
  616. .application-scenarios-img{
  617. width: 116px;
  618. height: 116px;
  619. position: absolute;
  620. top: -70px;
  621. left: 50%;
  622. margin-left: -58px;
  623. background-size: cover;
  624. i{width:32px;height:32px;display: block;background-size: cover;position: absolute;}
  625. }
  626. .application-scenarios-content{
  627. padding: 80px 24px 40px;
  628. margin: 0 16px;
  629. background: #FFF;
  630. border-radius: 8px;
  631. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin-bottom: 16px;}
  632. p{@include setFontStyle(-6);line-height: 22px;color: rgba(0,0,0,0.65);text-align: justify;@include multi-line-ellipsis(5);min-height: 110px;max-height: 110px}
  633. }
  634. }
  635. li:hover{
  636. margin-top: -16px;cursor: default;
  637. }
  638. li:nth-child(1){
  639. .application-scenarios-img {
  640. background-image: url("~static/images/client/train/application-scenarios-img1.svg");
  641. i{top: 45px;left: 38px;background-image: url("~static/images/client/train/application-scenarios-icon1.svg");animation: 3s trainScenariosImgUpDown1 linear infinite;}
  642. }
  643. }
  644. li:nth-child(2){
  645. .application-scenarios-img {
  646. background-image: url("~static/images/client/train/application-scenarios-img2.svg");
  647. i{top: 45px;left: 38px;background-image: url("~static/images/client/train/application-scenarios-icon2.svg");animation: 3s trainScenariosImgUpDown1 linear infinite;}
  648. }
  649. }
  650. li:nth-child(3){
  651. .application-scenarios-img {
  652. background-image: url("~static/images/client/train/application-scenarios-img3.svg");
  653. i{top: 32px;left: 34px;background-image: url("~static/images/client/train/application-scenarios-icon3.svg");animation: 3s trainScenariosImgUpDown2 linear infinite;}
  654. }
  655. }
  656. // 应用场景图标动画
  657. @keyframes trainScenariosImgUpDown1 {
  658. 0%, to {top: 45px;}
  659. 50% {top: 38px;}
  660. }
  661. @keyframes trainScenariosImgUpDown2 {
  662. 0%, to {top: 32px;}
  663. 50% {top: 25px;}
  664. }
  665. }
  666. }
  667. /******** describe: 课程开发 author: TX date:2020-08-24 ********/
  668. .client-course-page{
  669. /* 网站banner */
  670. .client-course-banner{
  671. width: 100%;
  672. height: 400px;
  673. background-image: url("~static/images/client/course/course-banner-background.png");
  674. background-position-x: center;
  675. /* banner文字区域 */
  676. .course-course-container{
  677. width:520px;
  678. display: inline-block;
  679. margin-left: 150px;
  680. h4{@include setFontStyle(36);color: #FFF;letter-spacing: 0;padding-top: 110px;}
  681. p{@include setFontStyle(0);color: #FFF;margin: 16px 0;}
  682. a{width: 132px;height: 32px;line-height: 32px;display: block;@include setFontStyle(-4);color: #2B5CFD;background: #FFFFFF;text-align:center;border-radius: 4px;}
  683. }
  684. }
  685. /* 课程定制开发 */
  686. .course-made-box{
  687. padding-bottom: 80px;
  688. .client-container{width: 880px;padding-top: 48px;}
  689. .course-made-content{
  690. display: inline-block;
  691. vertical-align: middle;
  692. margin-right: 56px;
  693. p{width: 455px;@include setFontStyle(-6);color: rgba(0,0,0,0.65);line-height: 22px;margin-bottom: 40px;text-align: justify}
  694. a{width: 132px;height: 32px;line-height: 32px;@include setFontStyle(-4);display:inline-block;text-align:center;background: #2B5CFD;border-radius: 4px;color: rgba(255,255,255,0.85);}
  695. }
  696. img{width: 357px;height: 251px;display:inline-block;vertical-align: middle;}
  697. }
  698. /* E-learning课程 */
  699. .course-learn-box{
  700. background: #F9FAFF;
  701. padding-bottom: 80px;
  702. // 申请方案按钮
  703. .course-apply-btn{width: 238px;height: 40px;line-height:40px;display: inline-block;@include setFontStyle(-4);background: #2B5CFD;border-radius: 4px;color: rgba(255,255,255,0.85);text-align: center;margin: 0 auto;}
  704. // video列表
  705. .learn-box-list{
  706. margin: 54px -16px 24px;
  707. li{
  708. width: 33.33%;display: inline-block;
  709. a{display: none;}
  710. div{background: #fff;border-radius: 8px;margin: 0 16px 40px;}
  711. span{width:342px;height:192px;display: inline-block;margin-top: 16px;border-radius:4px;overflow: hidden;position: relative}
  712. i{width: 48px;height: 48px;cursor: pointer;background-image: url("~static/images/client/course/course-video-icon.svg");display: inline-block;position: absolute;
  713. left: 50%;margin-left: -24px;z-index: 5;top: 50%;margin-top: -24px;background-size: cover;background-position: bottom;transition: all 0.5s;}
  714. img{transition: all 0.5s;}
  715. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);padding: 24px 0 24px;}
  716. }
  717. li span:hover{img{transform: scale(1.1);}}
  718. li i:hover{background-image: url("~static/images/client/course/course-video-icon-a.svg");background-size: cover;background-position: bottom;}
  719. }
  720. }
  721. /* 微课程 */
  722. .course-micro-box{background: #FFF;}
  723. }
  724. /******** describe: 关于我们 author: TX date:2020-08-07 ********/
  725. .client-aboutUs-page{
  726. // banner
  727. .aboutUs-banner{width: 100%;height: 400px;background-image: url("~static/images/client/aboutUs/aboutUs-banner.png");background-position-x: center;}
  728. // 公司简介
  729. .company-profile-box{
  730. padding-bottom: 80px;
  731. font-size: 0;
  732. .company-profile-left{
  733. width: 480px;
  734. display: inline-block;
  735. margin-right: 48px;
  736. vertical-align: middle;
  737. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;text-align: justify;}
  738. }
  739. .company-profile-right{
  740. width:432px;height:296px;display: inline-block;background: #E8ECFF;border-radius: 8px;text-align: center;vertical-align: middle;
  741. img{margin-top: 12px;}
  742. }
  743. }
  744. // 品牌介绍
  745. .brand-introduction-box{
  746. background: #F9FAFF;
  747. padding-bottom: 80px;
  748. .brand-introduction-content{
  749. width: 806px;
  750. padding: 30px 0;
  751. background: #E8ECFF;
  752. border-radius: 8px;
  753. float: right;
  754. span{width: 570px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;display: inline-block;vertical-align: middle;padding-left: 60px;text-align: justify;}
  755. img{
  756. display: inline-block;
  757. vertical-align: middle;
  758. margin-left: -126px;
  759. }
  760. }
  761. }
  762. // 企业文化
  763. .corporate-culture-box{
  764. padding-bottom: 80px;
  765. dl{
  766. width: 240px;
  767. display: inline-block;
  768. vertical-align: middle;
  769. margin: 0 162px 0 90px;
  770. dt{
  771. margin-bottom: 16px;
  772. i{width: 14px;height: 14px;display:inline-block;border: 1px solid #2B5CFD;transform: rotate(45deg);margin-right: 16px;}
  773. span{@include setFontStyle(0);color: rgba(0,0,0,0.85);}
  774. }
  775. dd{@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;margin-bottom: 24px;}
  776. }
  777. img{
  778. display: inline-block;vertical-align: middle;
  779. }
  780. }
  781. // 企业发展历程
  782. .enterprise-development-box{
  783. background: #F9FAFF;
  784. .development-left{
  785. float: left;
  786. width: 50%;
  787. text-align: right;
  788. padding-right: 76px;
  789. padding-top: 170px;
  790. box-sizing: border-box;
  791. .development-content{
  792. h4 div{top: -8px;right: -87px;left: auto}
  793. p i{margin-left:16px;}
  794. }
  795. }
  796. .development-right{
  797. width: 50%;
  798. margin-bottom: 80px;
  799. float: right;
  800. padding-left: 76px;
  801. border-left: 1px solid #D1DFFD;
  802. box-sizing: border-box;
  803. .development-content{
  804. h4 div{top: -8px;left: -87px;right: auto}
  805. p i{margin-right:16px;}
  806. }
  807. }
  808. .development-content{
  809. position: relative;
  810. h4{
  811. @include setFontStyle(8);color: rgba(0,0,0,0.85);margin-bottom: 24px;
  812. div{width: 20px;height: 34px;position: absolute;background:#F9FAFF}
  813. span{
  814. width: 18px;
  815. height: 18px;
  816. border: 1px solid #2B5CFD;
  817. display: inline-block;
  818. vertical-align: middle;
  819. border-radius: 50%;
  820. text-align: center;
  821. }
  822. i{
  823. width: 12px;
  824. height: 12px;
  825. display: inline-block;
  826. vertical-align: top;
  827. margin-top: 3px;
  828. background-image: url("~static/images/client/aboutUs/development-content-icon.svg");
  829. }
  830. p{display: inline-block;margin: 0;}
  831. }
  832. p{
  833. margin-bottom: 16px;
  834. i{width: 36px;height:24px;line-height:24px;display: inline-block;text-align: center;@include setFontStyle(-6);color: rgba(0,0,0,0.65);background: rgba(121,152,255,0.26);border: 1px solid #7998FF;border-radius: 4px;font-style: normal;}
  835. span{@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;}
  836. }
  837. }
  838. .development-content + .development-content {
  839. margin-top: 204px;
  840. }
  841. }
  842. // 联系我们
  843. .contact-us-box{
  844. height: 534px;
  845. padding-top: 80px;
  846. background-image: url("~static/images/client/aboutUs/contact-us-background.png");
  847. .contact-container-box{
  848. color: rgba(255,255,255,0.85);
  849. h4{@include setFontStyle(10);margin-bottom: 32px;}
  850. li{
  851. i{width: 22px;height: 24px;display: inline-block;background-repeat: no-repeat;background-position: center;background-size: cover;margin-right: 16px;vertical-align: middle;}
  852. span{@include setFontStyle(0);vertical-align: middle;}
  853. p{@include setFontStyle(-4);color: rgba(255,255,255,0.64);line-height: 24px;margin: 20px 0 24px;}
  854. }
  855. li:nth-child(2) {
  856. i {background-image: url("~static/images/client/aboutUs/contact-us-icon1.png");}
  857. }
  858. li:nth-child(3) {
  859. i {background-image: url("~static/images/client/aboutUs/contact-us-icon2.png");}
  860. }
  861. li:nth-child(4) {
  862. i {background-image: url("~static/images/client/aboutUs/contact-us-icon3.png");}
  863. }
  864. li:nth-child(5) {
  865. i {background-image: url("~static/images/client/aboutUs/contact-us-icon4.png");}
  866. }
  867. }
  868. }
  869. }
  870. /******** describe: 新闻资讯 author: TX date:2020-08-10 ********/
  871. .client-newsInfor-page{
  872. // banner
  873. .newsInfor-banner{width: 100%;height: 300px;background-image: url("~static/images/client/newsInfor/newsInfor-banner.png");background-position-x: center;}
  874. // 菜单 ul
  875. .newsInfor-menu-ul{
  876. display: block;
  877. margin: 0 auto;
  878. text-align: center;
  879. background: #F7F9FB;
  880. 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}
  881. li.active{color: #2B5CFD;background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);}
  882. li:hover{
  883. transform: scale(1.1);
  884. }
  885. }
  886. // 页面主要内容区域
  887. .newsInfor-content-box{
  888. min-height: 304px;
  889. padding: 48px 0 80px;
  890. ul{display: inline-block;vertical-align: top}
  891. // 右侧内容区域
  892. .newsInfor-content-ul{
  893. padding: 0 32px;
  894. li{margin-bottom: 40px;}
  895. li:last-child{margin-bottom: 0;}
  896. //图片
  897. .newsInfor-img-box{width:318px;height:178px;display: inline-block;margin-right: 32px;border-radius: 8px;overflow: hidden;vertical-align: top;background-repeat: no-repeat;background-size: cover;background-position: center;}
  898. //内容区域
  899. .newsInfor-list-content{
  900. width: calc(100% - 350px);
  901. display: inline-block;
  902. vertical-align: top;
  903. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;}
  904. div{
  905. margin-bottom: 8px;
  906. 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");}
  907. i[type="visits"]{background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");}
  908. span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;}
  909. }
  910. p{height: 72px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;margin-bottom: 32px;text-align: justify;@include multi-line-ellipsis(3);overflow: hidden;}
  911. a{@include setFontStyle(-6);color: #4A73FD;}
  912. a:after{content: "";width: 14px;height: 12px;display:inline-block;background-image: url("~static/images/client/newsInfor/newsInfor-list-icon.svg");margin-left: 8px;}
  913. a:hover{cursor: pointer;}
  914. }
  915. }
  916. }
  917. }
  918. /******** describe: 政府机构-详情页 author: TX date:2020-08-10 ********/
  919. .client-government-page{
  920. // banner
  921. .government-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/government-banner-img.png");background-position-x: center;}
  922. // 我们的系统为您改变了什么
  923. .government-change-box{
  924. background: #F9FAFF;
  925. padding-bottom: 80px;
  926. .industrydetails-content{
  927. width: 100%;height: 312px;margin-top: 48px;background-image: url("~static/images/client/industrydetails/government-change-bg.png");
  928. li{
  929. margin-bottom: 24px;
  930. p{margin-left: 30px}
  931. }
  932. img{display: inline-block;vertical-align: top;margin: 85px 42px;}
  933. }
  934. .change-content-left{
  935. display: inline-block;padding: 32px 0 0 64px;vertical-align: top;
  936. h5,li,li i{color: #fff;border-color: #fff;}
  937. p{color: rgba(255,255,255,0.65);}
  938. }
  939. .change-content-right{width: 500px;display: inline-block;padding-top: 64px;}
  940. }
  941. // 我们的优势
  942. .government-advantage-box{
  943. padding-bottom: 50px;
  944. h4{margin-bottom: 48px;}
  945. dl{width:33.33%;display: inline-block;margin-bottom: 30px;}
  946. dt{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 16px}
  947. dd{@include setFontStyle(-6);color: rgba(0,0,0,0.65);margin-left: 33px;}
  948. i{width: 17px;height: 17px;float:left;box-sizing: border-box;opacity: 0.8;display: inline-block;border: 1px solid #2B5CFD;transform: rotate(45deg);margin-right: 16px;}
  949. .government-advantage-content{margin-right: -100px;padding: 4px 0 0 4px;}
  950. }
  951. }
  952. /******** describe: 金融保险-详情页 author: TX date:2020-09-01 ********/
  953. .client-finance-page{
  954. // banner
  955. .finance-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/finance-banner-img.png");background-position-x: center;}
  956. // 金融行业的问题
  957. .finance-question-box{
  958. background: #F9FAFF;
  959. padding: 80px 0;
  960. .finance-question-top{
  961. width: 946px;height: 104px;background-image: url("~static/images/client/industrydetails/finance-question-bg.png");margin: 0 auto 48px;
  962. h5{height: 104px;line-height:104px;display: inline-block;@include setFontStyle(10);color: rgba(255,255,255,0.85);padding: 0 56px}
  963. h5:first-child{margin-right: 180px;color: rgba(0,0,0,0.85);}
  964. }
  965. ul{
  966. width:460px;min-height:328px;display: inline-block;border: 1px solid #2B67FD;border-radius: 4px;padding: 32px;box-sizing: border-box;vertical-align: middle;margin: 0 52px;
  967. i{width: 12px;height: 12px;background-image: linear-gradient(90deg, #2B5CFD 0%, #FFFFFF 100%);border-radius: 50%;border:0;transform: rotate(0deg);opacity: 1;}
  968. p{margin-left: 30px;}
  969. }
  970. .finance-question-right{
  971. border: 1px solid #FF6226;
  972. i{background-image: linear-gradient(90deg, #FF6226 0%, #FFFFFF 100%);}
  973. }
  974. }
  975. }
  976. /******** describe: 信息产业-详情页 author: TX date:2020-09-02 ********/
  977. .client-information-page{
  978. // banner
  979. .information-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/information-banner-img.png");background-position-x: center;}
  980. // 我们的系统为您改变了什么
  981. .information-change-box{
  982. background: #F9FAFF;
  983. padding-bottom: 80px;
  984. .industrydetails-content{
  985. width: 100%;height: 300px;margin-top: 48px;background-image: url("~static/images/client/industrydetails/information-change-bg.png");
  986. li{
  987. margin-bottom: 24px;
  988. p{margin-left: 30px;}
  989. }
  990. img{display: inline-block;vertical-align: top;margin: 120px 30px auto 70px;}
  991. }
  992. .change-content-left{
  993. display: inline-block;padding: 48px 0 0 64px;vertical-align: top;
  994. h5,li,li i{color: #fff;border-color: #fff;}
  995. p{color: rgba(255,255,255,0.65);}
  996. }
  997. .change-content-right{width: 500px;display: inline-block;padding-top: 48px;}
  998. }
  999. }
  1000. /******** describe: 能源化工-详情页 author: TX date:2020-09-02 ********/
  1001. .client-energy-page{
  1002. // banner
  1003. .energy-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/energy-banner-img.png");background-position-x: center;}
  1004. // 我们的系统为您改变了什么
  1005. .energy-change-box{
  1006. background: #F9FAFF;
  1007. padding-bottom: 80px;
  1008. // 模块上半部分
  1009. .change-box-top{
  1010. width: 1100px;height: 247px;padding: 32px 64px;box-sizing: border-box;background: #104644;border-radius: 8px;margin-left: 20px;margin-top: 48px;
  1011. i{border: 1px solid #fff;}
  1012. }
  1013. // 模块下半部分
  1014. .change-box-bottom{
  1015. width: 1100px;height: 368px;padding: 24px;box-sizing: border-box;border-radius: 8px;background: #FE552C;margin-left: 100px;margin-top:-24px;position: relative;
  1016. h5{margin-top: 70px;}
  1017. li:nth-of-type(odd){p{margin-right: 60px}}
  1018. }
  1019. h5{color: rgba(255,255,255,0.85);}
  1020. li{
  1021. width: 50%;display: inline-block;@include setFontStyle(-6);color: rgba(255,255,255,0.65);margin-bottom: 24px;line-height: 22px;vertical-align: top;
  1022. p{margin-left: 30px;color: rgba(255,255,255,0.65);}
  1023. }
  1024. img{position: absolute;top: -55px;left: 50%;margin-left: -50px;}
  1025. }
  1026. }
  1027. /******** describe: 交通运输-详情页 author: TX date:2020-09-02 ********/
  1028. .client-traffic-page{
  1029. // banner
  1030. .traffic-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/traffic-banner-img.png");background-position-x: center;}
  1031. // 我们的系统为您改变了什么
  1032. .traffic-change-box{
  1033. background: #F9FAFF;
  1034. padding-bottom: 80px;
  1035. .change-content-left,.change-content-right{
  1036. width: 462px;height: 359px;display:inline-block;background-repeat: no-repeat;vertical-align: top;margin-top: 48px;
  1037. h5{height: 58px;line-height: 58px;color: rgba(255,255,255,0.85);}
  1038. ul{margin-top: 80px;margin-left: 32px;}
  1039. i{width:12px;height:12px;border-radius:50%;border: 1px solid #1276FF;margin-top: 5px;}
  1040. }
  1041. .change-content-left{background-image: url("~static/images/client/industrydetails/traffic-left-bg.png");margin-right: 104px;}
  1042. .change-content-right{background-image: url("~static/images/client/industrydetails/traffic-right-bg.png");}
  1043. }
  1044. }
  1045. /******** describe: 教育行业-详情页 author: TX date:2020-09-02 ********/
  1046. .client-education-page{
  1047. // banner
  1048. .education-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/education-banner-img.png");background-position-x: center;}
  1049. // 我们的系统为您改变了什么
  1050. .education-change-box{
  1051. background: #F9FAFF;padding-bottom: 80px;
  1052. img{position: absolute;top: 50%;margin-top: -78px;left:50%;margin-left: -54px;}
  1053. .industrydetails-content{position: relative;}
  1054. .change-content-left,.change-content-right{height: 338px;box-sizing: border-box;}
  1055. .change-content-left{width: 637px;float:left;padding:32px 48px;background-image: url("~static/images/client/industrydetails/education-left-bg.png");}
  1056. .change-content-right{width: 610px;float:right;padding:32px 0 32px 100px;background-image: url("~static/images/client/industrydetails/education-right-bg.png");margin-left: -55px;}
  1057. }
  1058. }
  1059. }