cus-client-page.scss 39 KB

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