cus-client-page.scss 42 KB

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