cus-client-page.scss 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815
  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: 520px;
  11. background-color:#fff;
  12. background-image: url("~static/images/client/index/index-banner-background.png");
  13. background-position-x: center;
  14. background-repeat: no-repeat;
  15. }
  16. /* banner-box */
  17. .client-banner-box{
  18. .el-carousel__container{height: 520px;cursor: pointer;}
  19. .el-carousel__item{
  20. .index-carousel-box{width:100%;height: 520px;display: block;background-position: center;background-repeat: no-repeat;background-color: #fff;}
  21. }
  22. }
  23. /* 发展历程 - 移动端隐藏*/
  24. .client-company-history{
  25. background:#f8f8f8;
  26. li{
  27. width: 25%;display: inline-block;text-align: center;
  28. div{border-right:2px solid #e5e5e5;margin: 24px 0;}
  29. p{@include setFontStyle(16);margin-bottom: 16px;color: #333;}
  30. span{@include setFontStyle(6);}
  31. h4{@include setFontStyle(-4);color: #666;}
  32. }
  33. li:last-child div{border-right: 0;}
  34. }
  35. /* 产品和服务 */
  36. .client-products-services{
  37. .client-title{
  38. margin-bottom: 48px;
  39. }
  40. }
  41. /* 行业学习需求 */
  42. .client-demand-box{
  43. background: #f5f5f5;
  44. padding-bottom: 80px;
  45. min-height: 720px;
  46. //tab
  47. .demand-box-tab{
  48. margin-top: 30px;
  49. .el-tabs__item{width:124px;height: 40px;line-height: 40px;border-radius: 4px;border: 1px solid #3e7ee7;@include setFontStyle(-4);color: #3e7ee7;padding: 0;text-align: center;margin: 0 12px 32px;}
  50. .el-tabs__item.is-active{background-color:#3e7ee7;color: #fff;position: relative}
  51. .el-tabs__item.is-active:after{ width: 0; height: 0; content: "";display: inline-block;border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 20px solid #3e7ee7;
  52. position: absolute;bottom: -33px;left: 50%;margin-left: -8px;}
  53. // 免费试用按钮
  54. .client-default-Btn{width: 238px;height: 40px;line-height: 40px;margin: 40px auto 0;}
  55. }
  56. //覆盖饿了么样式
  57. .el-tabs__header{margin: 0 0 48px;}
  58. .demand-box-tab.el-tabs--card>.el-tabs__header{border: 0}
  59. .demand-box-tab.el-tabs--card>.el-tabs__header .el-tabs__nav{margin: 0 auto;border-color: #ccc;border-bottom: 1px dotted #6c9ce1;border-right:0;border-left:0;border-top:0;border-radius: 0;}
  60. .demand-box-tab .el-tabs__nav-scroll{text-align: center;}
  61. .demand-box-tab .el-tabs__nav{float: none;}
  62. // 考试ul
  63. .demand-tab-list{
  64. margin: 0 -18px;
  65. li{
  66. width: 33.33%;display: inline-block;position: relative;margin-bottom: 24px;overflow: hidden;
  67. // 内容区域
  68. .demand-content-box{height: 300px;margin: 0 18px;background-color: #fff;background-repeat: no-repeat;background-position: 5px 5px;}
  69. //图片区域
  70. .demand-img-box{
  71. position: absolute;
  72. top: 90px;
  73. left: 50%;
  74. margin-left: -50px;
  75. i{width: 100px;height: 100px;display:block;margin-bottom: 24px;background-repeat: no-repeat;background-size: cover;}
  76. h4{@include setFontStyle(-2);color: #272727;text-align: center;}
  77. }
  78. // 蒙版
  79. .demand-mask-box{
  80. position: absolute;
  81. top: 300px;
  82. padding: 20px;
  83. background:rgba(66,66,66,0.65);
  84. transition: 0.5s;
  85. margin: 0 18px;
  86. color: #fff;
  87. h4{
  88. @include setFontStyle(0);margin-bottom: 24px;text-align: center;
  89. >a{float: right;display: none;}
  90. }
  91. p{max-height: 100px;overflow: hidden;@include setFontStyle(-6);line-height: 24px;margin-bottom: 16px;@include multi-line-ellipsis(4);text-align: justify; }
  92. span{@include setFontStyle(-6);color: #fff;}
  93. 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");}
  94. }
  95. // 图标div
  96. .demand-icon-box{
  97. padding: 16px 0;
  98. border-top: 1px solid #fff;
  99. a{margin-right: 8px}
  100. a:last-child{margin-right: 0;}
  101. img{width: 77px;height: 77px;}
  102. }
  103. }
  104. li:nth-child(1){
  105. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic1.png");}}
  106. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img1.png");}
  107. }
  108. li:nth-child(2){
  109. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic2.png");}}
  110. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img2.png");}
  111. }
  112. li:nth-child(3){
  113. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic3.png");}}
  114. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img3.png");}
  115. }
  116. li:nth-child(4){
  117. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic4.png");}}
  118. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img4.png");}
  119. }
  120. li:nth-child(5){
  121. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic5.png");}}
  122. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img5.png");}
  123. }
  124. li:nth-child(6){
  125. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic6.png");}}
  126. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img6.png");}
  127. }
  128. li:hover{
  129. // 蒙版
  130. .demand-mask-box{
  131. top:0;
  132. h4{
  133. text-align: left;
  134. >a{display: inline-block;}
  135. }
  136. }
  137. }
  138. }
  139. .demand-peixun-list{
  140. li:nth-child(1){
  141. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic7.png");}}
  142. }
  143. li:nth-child(2){
  144. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic6.png");}}
  145. }
  146. li:nth-child(3){
  147. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic8.png");}}
  148. }
  149. li:nth-child(4){
  150. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic1.png");}}
  151. }
  152. li:nth-child(5){
  153. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic3.png");}}
  154. }
  155. li:nth-child(6){
  156. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic12.png");}}
  157. }
  158. }
  159. }
  160. /* 超过10万家客户的信任之选 */
  161. .client-customer-box{
  162. .customer-img-box{
  163. padding-bottom: 80px;
  164. li{
  165. width: 20%;
  166. display: inline-block;
  167. }
  168. img{margin: 48px 30px 0;transition: all 0.5s;}
  169. li:hover{
  170. img{transform: scale(1.1);box-shadow: 0 4px 8px 0 rgba(214, 214, 214, 0.76);border-radius: 6px}
  171. }
  172. }
  173. }
  174. /* 我们始终专注教育系统研发更懂用户需求 */
  175. .client-cert-box{
  176. background: #005491;
  177. padding-bottom: 80px;
  178. .client-title{color: #fff}
  179. .cert-img-box{
  180. display: flex;
  181. justify-content: space-between;
  182. margin: 48px 0 0;
  183. align-items: center;
  184. span{display:block;height: max-content;background: #80aac8;padding: 8px 8px 3px;overflow: hidden;}
  185. span:nth-child(3){
  186. img{width: 320px;height:210px;}
  187. }
  188. img{width: 170px;height:240px;transition: all 0.5s;}
  189. img:hover{transform: scale(1.14);}
  190. }
  191. a{width:238px;height:40px;line-height: 40px;margin: 40px auto 0;background: #005491;border: 1px solid #fff;box-sizing: border-box;}
  192. }
  193. /* 为什么选择我们 */
  194. .client-chose-box{
  195. padding-bottom: 80px;
  196. .chose-img-box{
  197. margin: 48px -14px 0;
  198. li{
  199. width: 25%;display: inline-block;vertical-align: top;
  200. div{height: 260px;background: #f8f8f8;position:relative;text-align: center;margin: 0 14px;}
  201. span{width: 100%;height: 200px;display: inline-block;}
  202. img{margin: 50px auto 0;}
  203. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);}
  204. }
  205. }
  206. .client-default-Btn {
  207. width: 238px;
  208. height: 40px;
  209. line-height: 40px;
  210. margin: 40px auto 0;
  211. }
  212. }
  213. /* 新闻资讯 */
  214. .client-news-information {
  215. background: #f9faff;
  216. padding-bottom: 80px;
  217. .industry-information-box {
  218. margin-top: 48px;
  219. h4{color: #333;}
  220. h4:hover {cursor: pointer;color: #3e7ce7;}
  221. // 左
  222. .industry-information-left {
  223. width: 520px;
  224. margin-right: 80px;
  225. display: inline-block;
  226. vertical-align: top;
  227. color: #333;
  228. div {float: left;border-right: 1px solid #dbdbea;padding: 8px 16px 8px 0;}
  229. img {width: 520px;height: 210px;margin-bottom: 42px;}
  230. h4 {@include setFontStyle(-2);margin-bottom: 16px;}
  231. i{width:25px;height:12px;float:right;background-image:url("~static/images/client/index/news-information-icon.png")}
  232. p {@include setFontStyle(-6);height: 68px;line-height: 22px;padding: 2px 0 0 16px;text-align: justify;@include multi-line-ellipsis(3);}
  233. b {@include setFontStyle(-4);font-weight: normal;display: block;margin-bottom: 16px;}
  234. span {@include setFontStyle(-6);display: block;color: #666;}
  235. }
  236. // 右
  237. .industry-information-right {
  238. width: 590px;
  239. display: inline-block;
  240. vertical-align: top;
  241. li {border-bottom: 1px solid #ccc;margin-bottom: 16px;}
  242. li:last-child {border: 0;}
  243. h4 {@include setFontStyle(-4);@include single-line-ellipsis;margin-bottom: 12px;}
  244. p {@include setFontStyle(-6);color: #666;@include single-line-ellipsis;margin-bottom: 16px;}
  245. span {margin: 0 30px 0 10px;}
  246. }
  247. }
  248. }
  249. // 移动端手机尺寸(0-768)
  250. @media (max-width: 768px){
  251. /* 网站banner */
  252. .client-index-banner{height: 150px;}
  253. /* banner-box */
  254. .client-banner-box{
  255. .el-carousel__container{height: 150px;}
  256. .el-carousel__item .index-carousel-box{height: 150px;background-size: cover;}
  257. // 左箭头
  258. .el-carousel__arrow--left{display: none;}
  259. // 右箭头
  260. .el-carousel__arrow--right{display: none;}
  261. // 分页
  262. .el-carousel__button {width: 6px;height: 6px;border-radius: 3px;}
  263. }
  264. /* 产品和服务 */
  265. .client-products-services{
  266. .client-title{
  267. margin-bottom: 0;
  268. }
  269. }
  270. /* 行业学习需求 */
  271. .client-demand-box{
  272. padding: 30px 0 0;
  273. min-height: 610px;
  274. //tab
  275. .demand-box-tab{
  276. margin-top: 20px;
  277. .el-tabs__item{width:100px;height: 30px;line-height: 30px;border-radius: 5px;margin: 0 8px 12px;}
  278. .el-tabs__item.is-active:after{border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 12px solid #3e7ee7;bottom: -14px;}
  279. }
  280. //覆盖饿了么样式
  281. .el-tabs__header{margin: 0 7px 15px;}
  282. // 考试ul
  283. .demand-tab-list{
  284. margin: 0;
  285. li{
  286. width: 50%;margin-bottom: 12px;
  287. // 内容区域
  288. .demand-content-box{height: 125px;background-size: 25%;margin: 0 7px;}
  289. //图片区域
  290. .demand-img-box{
  291. min-width: 70px;top: 30px;margin-left: -35px;
  292. i{width: 40px;height: 40px;margin: 0 auto 15px;}
  293. h4{@include setFontStyle(-6);color: rgb(16, 16, 16);}
  294. }
  295. // 蒙版
  296. .demand-mask-box{display: none;}
  297. // 点击按钮
  298. .demand-onclick-btn{position: absolute;top: 0;left: 7px;right: 7px;bottom: 0;z-index: 99;}
  299. }
  300. }
  301. }
  302. /* 为什么选择我们 */
  303. .client-chose-box{
  304. padding: 0;
  305. .chose-img-box{
  306. margin: 20px 0 0;
  307. li{
  308. width: 50%;margin-bottom: 12px;
  309. div{height: 125px;margin: 0 7px;}
  310. span{height: 90px;}
  311. img{width:60px;margin: 16px auto 0;}
  312. h5{@include setFontStyle(-4);color: #101010;}
  313. }
  314. }
  315. .client-default-Btn {
  316. width: 238px;
  317. height: 40px;
  318. line-height: 40px;
  319. margin: 40px auto 0;
  320. }
  321. }
  322. /* 新闻资讯 */
  323. .client-newsInfo-phone{
  324. background-color: rgb(238, 238, 238);
  325. // 轮播外层
  326. .el-carousel{
  327. padding: 20px 0 40px;
  328. // card
  329. .el-carousel__item{
  330. width: 80%;left: -15%;color: rgb(16, 16, 16);background: #fff;box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px -1px;
  331. img{width: 100%;height: 135px;}
  332. }
  333. // 文字区域
  334. .newsInfo-card-content{
  335. padding: 24px 20px;
  336. h4{@include setFontStyle(-4);}
  337. span{@include setFontStyle(-8);margin-top: 16px;display: block}
  338. p{min-height: 48px;@include setFontStyle(-6);margin-top: 16px;@include multi-line-ellipsis(3);}
  339. }
  340. }
  341. }
  342. /* 超过10万家客户的信任之选 */
  343. .client-customer-box{padding-top: 50px;
  344. .customer-img-box{
  345. padding-bottom: 50px;
  346. li{width: 50%;text-align: center;}
  347. img{max-width:90%;margin: 10px 0;}
  348. li:hover{
  349. img{transform: scale(1.1);box-shadow: 0 4px 8px 0 rgba(214, 214, 214, 0.76);border-radius: 6px}
  350. }
  351. }
  352. }
  353. /* 我们始终专注教育系统研发更懂用户需求 */
  354. .client-cert-box{
  355. padding: 0 7px 28px;
  356. .cert-img-box{
  357. margin: 20px 0 0;
  358. span{height: 64px;padding: 2px 2px 0;}
  359. span:nth-child(3){
  360. height: 55px;
  361. img{width: 80px;height:53px;}
  362. }
  363. img{width: 44px;height:62px;}
  364. img:hover{transform: none;}
  365. }
  366. a{width:122px;height:35px;line-height: 35px;margin: 28px auto 0;}
  367. }
  368. }
  369. }
  370. /******** describe: 平台页面(考试平台、培训平台) author: TX date:2020-08-12 ********/
  371. .client-platform-page,.client-new-platform-page{
  372. /* 网站banner */
  373. .client-platform-banner,.client-platform-new-banner{
  374. width: 100%;
  375. position: relative;
  376. div{width:inherit;height:inherit;background-position-x: center;background-repeat: no-repeat;}
  377. .free-trial-default-btn{position: absolute;top:260px;left: 50%;margin-left: -119px;}
  378. }
  379. /* 网站banner */
  380. .client-platform-banner{height: 396px;background-color:#042D85;}
  381. .client-platform-new-banner{height: 520px;background-color:#fff;}
  382. /* 产品体验*/
  383. .platform-products-experience{
  384. >p{font-size: 20px;line-height: 20px;text-align: center;margin: 30px 0 42px;}
  385. .experience-ul-box{
  386. margin: 0 -16px;text-align: center;
  387. li{
  388. width:25%;display: inline-block;text-align: center;font-size: 16px;
  389. >div{
  390. margin: 0 16px;padding:32px 18px;box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px 0px;border-radius: 10px;position: relative;
  391. div{font-size:20px;color:#fff;position: absolute;right: 0;left: 0;top: 0;bottom: 305px;box-sizing: border-box;transition: 0.5s;overflow: hidden;border-radius: 10px;line-height: 305px;background: rgba(0,0,0,.6);cursor: default;}
  392. }
  393. i{display: inline-block;width: 46px;height: 46px;background-repeat: no-repeat;background-size: contain;margin-bottom: 24px;}
  394. h5{font-size: 22px;color: rgb(16, 16, 16);margin-bottom: 24px;}
  395. p{font-size: 16px;padding: 0;margin: 0;color: #101010;line-height: 26px;}
  396. a{width: 180px;height: 40px;line-height: 40px;display: inline-block;margin-top: 24px;text-align: center;background-color: #3e7ce7;
  397. border-color: rgba(255, 0, 0, 0);border-width: 1px;border-style: solid;color: rgb(255, 255, 255);border-radius:4px;font-weight: normal;cursor: pointer}
  398. span{display: block;transition: 0.5s;position: absolute;top: 0;bottom: 305px;left: 0;right: 0;overflow: hidden;}
  399. em{width:180px;height:180px;display: block;margin: 24px auto;background-image:url("~static/images/client/exam/exam-code-img.png")}
  400. em.px-img-box{background-image:url("~static/images/client/train/train-code-img.png")}
  401. }
  402. li:nth-child(1) i{background-image:url("~static/images/client/exam/exam-tel-icon.png")}
  403. li:nth-child(2) i{background-image:url("~static/images/client/exam/exam-pc-icon.png")}
  404. li:nth-child(3) i{background-image:url("~static/images/client/exam/exam-sz-icon.png")}
  405. li:nth-child(4) i{background-image:url("~static/images/client/exam/exam-sx-icon.svg")}
  406. }
  407. }
  408. /* 产品优势 */
  409. .platform-products-services{
  410. li:not(:last-child){border-bottom:1px solid #eee; }
  411. }
  412. /* 产品功能 */
  413. .platform-product-function{
  414. background: #f8f8f8;
  415. padding-bottom: 32px;
  416. // ul
  417. .product-function-box{
  418. margin-top: 48px;
  419. li{
  420. width: 50%;display: inline-block;transition: .3s all linear;
  421. div{padding: 12px 16px 12px 8px;margin: 0 32px 24px;background: #fff;}
  422. i{width: 158px;height: 120px;margin-right:24px;float:left;background-size: cover;background-repeat: no-repeat;}
  423. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin: 12px 0 8px 0;}
  424. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);@include multi-line-ellipsis(3);}
  425. }
  426. }
  427. .product-function-box li:nth-child(1) i,.product-function-icon1{background-image:url("~static/images/client/exam/product-function-icon1.png");}
  428. .product-function-box li:nth-child(2) i,.product-function-icon2{background-image:url("~static/images/client/exam/product-function-icon2.png");}
  429. .product-function-box li:nth-child(3) i,.product-function-icon3{background-image:url("~static/images/client/exam/product-function-icon3.png");}
  430. .product-function-box li:nth-child(4) i,.product-function-icon4{background-image:url("~static/images/client/exam/product-function-icon4.png");}
  431. .product-function-box li:nth-child(5) i,.product-function-icon5{background-image:url("~static/images/client/exam/product-function-icon5.png");}
  432. .product-function-box li:nth-child(6) i,.product-function-icon6{background-image:url("~static/images/client/exam/product-function-icon6.png");}
  433. .product-function-box li:nth-child(7) i,.product-function-icon7{background-image:url("~static/images/client/exam/product-function-icon7.png");}
  434. .product-function-box li:nth-child(8) i,.product-function-icon8{background-image:url("~static/images/client/exam/product-function-icon8.png");}
  435. .product-function-box li:hover{div{box-shadow: 0 2px 4px 0 #D4DBFF;border-radius: 8px;cursor: default}}
  436. }
  437. /* 应用场景 */
  438. .platform-application-scenarios{
  439. background: #FFF;
  440. padding-bottom: 80px;
  441. .application-scenarios-box{margin: 48px -12px 0;}
  442. li{
  443. width: 33.33%;
  444. display: inline-block;
  445. vertical-align: top;
  446. color: #fff;
  447. .application-scenarios-img{width: 100px;height: 100px;background-size: cover;margin: 0 auto 24px;}
  448. .application-scenarios-content{
  449. padding: 50px 30px 40px;margin: 0 12px;background: #FFF;
  450. h5{@include setFontStyle(0);text-align: center;margin-bottom: 24px;}
  451. p{@include setFontStyle(-4);line-height: 24px;text-align: justify;@include multi-line-ellipsis(5);min-height: 118px;max-height: 118px}
  452. }
  453. }
  454. li:nth-child(1){
  455. .application-scenarios-img {background-image: url("~static/images/client/exam/application-scenarios-img1.png");}
  456. .application-scenarios-content{background: #ffbf00;}
  457. }
  458. li:nth-child(2){
  459. .application-scenarios-img {background-image: url("~static/images/client/exam/application-scenarios-img2.png");}
  460. .application-scenarios-content{background: #3799db;}
  461. }
  462. li:nth-child(3){
  463. .application-scenarios-img {background-image: url("~static/images/client/exam/application-scenarios-img3.png");}
  464. .application-scenarios-content{background: #63ba86;}
  465. }
  466. }
  467. @media (max-width: 768px){
  468. /* 网站banner */
  469. .client-platform-banner{
  470. height: 150px;
  471. div{background-size: cover;}
  472. .free-trial-default-btn{top: 90px;margin-left: -61px;}
  473. }
  474. // 产品体验
  475. .platform-products-experience{
  476. .sjxyd-icon {background-image: url("~static/images/client/exam/exam-tel-icon.png")}
  477. .dnxyd-icon {background-image: url("~static/images/client/exam/exam-pc-icon.png")}
  478. .dngld-icon {background-image: url("~static/images/client/exam/exam-sz-icon.png")}
  479. .skrz-icon {background-image: url("~static/images/client/exam/exam-sx-icon.svg")}
  480. >p{font-weight: 400;font-size: 14px;color: rgba(85, 85, 85, 1);margin: 24px 0 16px;}
  481. }
  482. // 产品优势
  483. .platform-products-services{
  484. li:not(:last-child) {border: 0;}
  485. .products-services-content div{text-align: center;margin-bottom: 40px;}
  486. }
  487. // 产品功能
  488. .platform-product-function{
  489. padding-bottom: 16px;
  490. // swiper
  491. .experience-swiper-box{
  492. // swiper 内容区域
  493. .experience-content-box{
  494. height:328px;margin: 16px 4% 20px;padding: 16px 16px 46px;box-sizing: border-box;box-shadow: rgb(170, 209, 249) 0 0 6px -1px;background-color: #fff;
  495. i{width: 150px;height: 122px;}
  496. h5{width: 100%;text-align: left;margin-bottom: 12px;}
  497. p{text-align: justify;line-height: 24px;margin: 0;@include multi-line-ellipsis(4);}
  498. }
  499. // 分页
  500. .swiper-pagination-style {width: 200px;margin-left: -90px;bottom: 50px;}
  501. // 左右滑动
  502. .experience-swiper-tip{margin: 0}
  503. }
  504. }
  505. // 应用场景
  506. .platform-application-scenarios{
  507. padding-bottom: 16px;
  508. // swiper
  509. .experience-swiper-box{
  510. margin-top: 16px;
  511. .experience-content-box{
  512. height: 295px;box-shadow:none;padding: 16px;box-sizing: border-box;margin: 0 4% 40px;
  513. h5{margin-bottom: 12px;color: #fff}
  514. p{text-align: justify;line-height: 24px;margin: 0;@include multi-line-ellipsis(45);color: #fff}
  515. }
  516. .scenarios-gwks-box{
  517. background-color: #ffbf00;
  518. i{background-image: url("~static/images/client/exam/application-scenarios-img1.png");}
  519. }
  520. .scenarios-dxjs-box{
  521. background-color: #3799db;
  522. i{background-image: url("~static/images/client/exam/application-scenarios-img2.png");}
  523. }
  524. .scenarios-zgks-box{
  525. background-color: #63ba86;
  526. i{background-image: url("~static/images/client/exam/application-scenarios-img3.png");}
  527. }
  528. // 分页
  529. .swiper-pagination-style {width: 76px;margin-left: -30px;bottom:25px;}
  530. // 左右滑动
  531. .experience-swiper-tip{margin: 0}
  532. }
  533. }
  534. }
  535. }
  536. .client-new-platform-page{
  537. .platform-products-services li:not(:last-child) {border: 0;}
  538. .products-services-box{
  539. width: 100%;
  540. display: flex;
  541. align-items: center;
  542. justify-content: space-between;
  543. margin-bottom: 160px;
  544. img {height: 427px;}
  545. .products-services-content{
  546. padding: 0;
  547. h5{margin-bottom: 50px;line-height: 44px;}
  548. p{font-size: 16px;font-weight: 500;text-align: justify;color: #333333;line-height: 36px;margin-bottom: 50px;}
  549. .client-default-Btn{background: #0065CD;border: 1px solid #0065CD;}
  550. }
  551. }
  552. }
  553. /******** describe: 培训平台--图片(和考试默认图片不同) author: TX date:2020-08-14 ********/
  554. .client-train-page{
  555. /* 产品体验*/
  556. .platform-products-experience{
  557. .experience-ul-box li{
  558. em{background-image:url("~static/images/client/train/train-code-img.png")}
  559. }
  560. }
  561. /* 网站banner */
  562. .client-platform-banner{
  563. background-color:#fff;
  564. }
  565. /* 产品功能 */
  566. .platform-product-function{
  567. // ul
  568. .product-function-box{
  569. li:nth-child(1){i{background-image:url("~static/images/client/train/product-function-icon1.png");}}
  570. li:nth-child(2){i{background-image:url("~static/images/client/train/product-function-icon2.png");}}
  571. li:nth-child(3){i{background-image:url("~static/images/client/train/product-function-icon3.png");}}
  572. li:nth-child(4){i{background-image:url("~static/images/client/train/product-function-icon4.png");}}
  573. li:nth-child(5){i{background-image:url("~static/images/client/train/product-function-icon5.png");}}
  574. li:nth-child(6){i{background-image:url("~static/images/client/train/product-function-icon6.png");}}
  575. li:nth-child(7){i{background-image:url("~static/images/client/train/product-function-icon7.png");}}
  576. li:nth-child(8){i{background-image:url("~static/images/client/train/product-function-icon8.png");}}
  577. }
  578. }
  579. /* 应用场景 */
  580. .train-application-scenarios{
  581. li:nth-child(1){
  582. .application-scenarios-img {
  583. background-image: url("~static/images/client/train/application-scenarios-img1.png");
  584. }
  585. }
  586. li:nth-child(2){
  587. .application-scenarios-img {
  588. background-image: url("~static/images/client/train/application-scenarios-img2.png");
  589. }
  590. }
  591. li:nth-child(3){
  592. .application-scenarios-img {
  593. background-image: url("~static/images/client/train/application-scenarios-img3.png");
  594. }
  595. }
  596. }
  597. @media (max-width: 768px){
  598. /* 网站banner */
  599. .client-platform-banner .free-trial-default-btn{top: 95px;}
  600. }
  601. }
  602. /******** describe: 课程开发 author: TX date:2020-08-24 ********/
  603. .client-course-page{
  604. /* 网站banner */
  605. .client-course-banner{
  606. width: 100%;
  607. height: 520px;
  608. background-color:#fff;
  609. background-position-x: center;
  610. background-repeat: no-repeat;
  611. }
  612. /* 调转菜单栏 */
  613. .course-service-nav{width: 100%;height: 72px;background: url("~static/images/client/course/course--nav-bg.png") repeat-x;padding-top: 15px;text-align: center;}
  614. .course-link-nav{
  615. width: 100%;height: 83px;background: #161B38;opacity: 0.9;
  616. a{width: 171px;height: 83px;line-height:83px;display: inline-block;@include setFontStyle(-2);color: #fff;text-align: center;}
  617. a:nth-child(1){background: #353c61;}
  618. a:nth-child(2){background: #38406a;}
  619. a:nth-child(3){background: #3c4775;}
  620. a:nth-child(4){width:174px;background: #404b81;}
  621. a:nth-child(5){background: #3c4775;}
  622. a:nth-child(6){background: #38406a;}
  623. a:nth-child(7){background: #353c61;}
  624. }
  625. // 申请方案按钮
  626. .free-trial-default-btn{width:230px;display: inline-block;margin: 0}
  627. // 联系我们按钮
  628. .course-apply-btn{background: #fff;color: #3e7ee7;border:1px solid #3e7ee7;box-sizing: border-box;margin-left: 36px;}
  629. /* PPT定制及美化、H5平面设计、视频后期处理 */
  630. .course-ppt-box,.course-H5-box,.course-videoPos-box{
  631. ul{margin: 48px 0;}
  632. li{display: inline-block;}
  633. li:not(:last-child){margin-right: 30px;}
  634. p{@include setFontStyle(-4);color: rgba(0, 0, 0, 0.65);margin-top: 24px;}
  635. }
  636. /* 视频后期处理 */
  637. .course-videoPos-box{
  638. padding-bottom: 80px;
  639. li:not(:last-child){margin-right: 80px;}
  640. }
  641. @media (max-width: 768px){
  642. /* 网站banner */
  643. .client-course-banner{height: 150px;background-size: cover;}
  644. // 菜单 ul
  645. .course-menu-ul{
  646. background: #fff;margin: 20px 0 0;
  647. li{width: 100px;height: 30px;line-height:30px;margin:0 10px;padding:0;border-radius:5px;border: 1px solid rgb(0, 102, 204);@include setFontStyle(-4);
  648. color: rgb(0, 102, 204);background: #fff;box-shadow: 0 2px 4px 0 rgba(43,92,253,0.16);box-sizing: border-box}
  649. li.active{color: #fff;background: rgb(0, 102, 204);}
  650. li:hover{transform: none;}
  651. }
  652. // 内容区域
  653. .client-container{padding: 0;}
  654. // 申请方案按钮
  655. .free-trial-default-btn{width:122px;display: inline-block;margin: 0 0 54px;}
  656. // 联系我们按钮
  657. .course-apply-btn{margin-left: 16px;}
  658. /* PPT定制及美化、H5平面设计、视频后期处理 */
  659. .course-ppt-box,.course-H5-box,.course-videoPos-box{
  660. margin: 0 6%;
  661. ul{margin: 12px 0;}
  662. li{box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px -1px;margin-bottom: 20px;}
  663. li:not(:last-child){margin-right: 0;}
  664. img{max-width: 100%;}
  665. p{margin: 20px 0;}
  666. }
  667. /* 视频后期处理 */
  668. .course-videoPos-box{
  669. padding-bottom: 16px;
  670. img{height: 180px;}
  671. }
  672. }
  673. }
  674. /******** describe: 关于我们 author: TX date:2020-08-07 ********/
  675. .client-aboutUs-page{
  676. // banner
  677. .aboutUs-banner{width: 100%;height: 520px;max-width: 1920px;background-image: url("~static/images/client/aboutUs/aboutUs-banner.jpg");
  678. background-size: contain;background-position: center;background-repeat: no-repeat; margin: 0 auto;
  679. }
  680. // 公司简介
  681. .company-profile-box{
  682. padding-bottom: 48px;
  683. font-size: 0;
  684. img{margin: 48px auto;display: block;}
  685. p{@include setFontStyle(-2);color: rgba(0,0,0,0.65);line-height: 40px;text-align: justify;margin: 0 60px}
  686. }
  687. // 品牌介绍
  688. .brand-introduction-box{
  689. .brand-introduction-content{
  690. width: 100%;
  691. padding: 42px;
  692. box-sizing: border-box;
  693. background: #fbfbfb;
  694. border-radius: 8px;
  695. float: right;
  696. .brand-introduction-left{
  697. display: inline-block;
  698. vertical-align: middle;
  699. padding-right: 42px;
  700. border-right: 1px solid #ddd;
  701. h4{@include setFontStyle(6);color: rgba(0,0,0,0.75);margin-bottom: 36px}
  702. img{margin-bottom: 36px;}
  703. }
  704. span{width: 740px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 40px;display: inline-block;vertical-align: middle;padding-left: 42px;text-align: justify;}
  705. }
  706. }
  707. // 企业文化
  708. .corporate-culture-box{
  709. padding-bottom: 80px;
  710. li{
  711. width:25%;
  712. display: inline-block;
  713. vertical-align: middle;
  714. div{
  715. margin-right: 16px;
  716. margin-bottom: 16px;
  717. padding: 40px 0;
  718. border: 6px solid #f7f7f7;
  719. text-align: center;
  720. i{width: 70px;height: 70px;display:inline-block;margin-bottom: 16px;}
  721. h5{@include setFontStyle(0);color: rgba(0,0,0,0.85);margin-bottom: 16px;}
  722. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;}
  723. }
  724. }
  725. li:nth-child(1){i{background-image: url("~static/images/client/aboutUs/corporate-culture-icon1.png");} }
  726. li:nth-child(2){i{background-image: url("~static/images/client/aboutUs/corporate-culture-icon2.png");} }
  727. li:nth-child(3){i{background-image: url("~static/images/client/aboutUs/corporate-culture-icon3.png");} }
  728. li:nth-child(4){i{background-image: url("~static/images/client/aboutUs/corporate-culture-icon4.png");} }
  729. li:last-child{
  730. div{margin-right: 0;}
  731. }
  732. }
  733. // 企业发展历程
  734. .enterprise-development-box{
  735. // 覆盖饿了么tab样式
  736. .enterprise-development-tab{
  737. .el-tabs__nav-wrap::after,.el-tabs__active-bar{display: none;}
  738. .el-tabs__header{
  739. margin: 0;
  740. .el-tabs__nav{width: 100%;padding-bottom: 20px;border-bottom: 1px dotted #6c9ce1;}
  741. .el-tabs__nav-wrap,.el-tabs__nav-scroll{overflow: visible}
  742. }
  743. .el-tabs__item{width: 170px;height: 45px;line-height:45px;border: 1px solid #3e7ee7;background: #fff;padding: 0;text-align: center;border-radius: 4px;margin-right: 24px;position: relative;}
  744. .el-tabs__item.is-active{background: #3e7ee7;color: #fff}
  745. .el-tabs__item:after{width: 14px;height: 14px;content: "";display: inline-block;border-radius: 50%;background: #888;position: absolute;bottom: -28px;left: 50%;margin-left: -7px;}
  746. .el-tabs__item.is-active:after{background: #3e7ee7;}
  747. .el-tabs__content{overflow: visible}
  748. }
  749. // 企业发展历程内容部分
  750. li{
  751. width: 25%;display: inline-block;padding: 36px 24px 60px;background:#fbfbfb;box-sizing: border-box;min-height: 196px;vertical-align: top;
  752. div{width: 250px;border-bottom: 1px solid #eee;}
  753. img{margin-bottom: 14px;}
  754. i{min-width:34px;display:inline-block;color: #3e7ee7;font-style: normal;margin-right: 10px;}
  755. p{@include setFontStyle(-4);color: rgba(0,0,0,.65);margin-top: 14px;}
  756. }
  757. }
  758. // 联系我们
  759. .contact-us-box{
  760. padding: 80px 0;
  761. border-top: 1px solid #ddd;
  762. .contact-container-box{
  763. width: 460px;
  764. padding: 0 40px;
  765. box-sizing: border-box;
  766. color: rgba(0,0,0,0.85);
  767. float: left;
  768. h4{@include setFontStyle(10);color: #3e7ee7;margin-bottom: 60px;margin-top: 20px;}
  769. h5{@include setFontStyle(0);color: #333;margin-bottom: 32px;}
  770. li{
  771. margin-bottom: 24px;
  772. i{width: 22px;height: 24px;display: inline-block;background-repeat: no-repeat;background-position: center;background-size: cover;margin-right: 16px;vertical-align: middle;}
  773. span{@include setFontStyle(-4);color: rgba(0,0,0,0.64);vertical-align: middle;}
  774. }
  775. li:nth-child(3) {
  776. i {background-image: url("~static/images/client/aboutUs/contact-us-icon1.png");}
  777. }
  778. li:nth-child(4) {
  779. i {background-image: url("~static/images/client/aboutUs/contact-us-icon3.png");}
  780. }
  781. li:nth-child(5) {
  782. i {background-image: url("~static/images/client/aboutUs/contact-us-icon5.png");}
  783. }
  784. li:nth-child(6) {
  785. i {background-image: url("~static/images/client/aboutUs/contact-us-icon4.png");}
  786. }
  787. }
  788. img{float: right}
  789. }
  790. @media (max-width: 768px){
  791. // banner
  792. .aboutUs-banner{
  793. height: 150px;
  794. span{width: 100%;}
  795. img{width: auto;height: 150px;}
  796. }
  797. // 公司简介
  798. .company-profile-box{
  799. img{margin: 20px auto;max-width: 100%;}
  800. p{@include setFontStyle(-6);color: rgba(85, 85, 85, 1);line-height: 24px;margin: 0 10px 6px;}
  801. }
  802. // 品牌介绍
  803. .brand-introduction-box{
  804. background-color: rgb(238, 238, 238);
  805. .brand-introduction-content{
  806. background-color: transparent;padding: 24px 10px;
  807. .brand-introduction-left{
  808. display: block;border-right:0;padding-right:0;
  809. h4{font-size: 18px;color: rgba(0, 0, 0, 1);text-align: center;margin-bottom: 20px;font-weight: 700;}
  810. img{margin: 0 auto 24px;max-width: 230px;display: block;}
  811. }
  812. span{width: 100%;display: block;padding-left: 0;font-size: 14px;color: rgba(85, 85, 85, 1);line-height: 24px;}
  813. }
  814. }
  815. // 企业文化
  816. .corporate-culture-box{
  817. padding: 50px 0 0;
  818. li{
  819. width:100%;
  820. div{
  821. height: 70px;margin: 0 10px 16px;border: 0;box-shadow: rgb(206, 206, 206) 0 0 6px -1px;padding: 14px 0;
  822. i{display: unset;float: left;margin-left: 30px;margin-bottom: 0;}
  823. h5{font-weight: 700;font-size: 16px;color: #101010;margin: 12px 0;}
  824. p{font-size: 14px;color: #101010;}
  825. }
  826. }
  827. }
  828. // 联系我们
  829. .contact-us-box{
  830. padding: 54px 10px 0;border: 0;line-height: 1;font-size: 0;
  831. .contact-container-box{
  832. width: 100%;
  833. padding: 0;
  834. color: rgba(0,0,0,0.85);
  835. float: unset;
  836. h4{@include setFontStyle(-2);font-weight: 700;color: rgba(0, 0, 0, 1);margin-bottom: 24px;margin-top:0;text-align: center;}
  837. h5{@include setFontStyle(-4);font-weight: 700;color: rgba(0, 0, 0, 1);margin-bottom: 24px;}
  838. li{
  839. span{color: rgba(0,0,0,0.54);}
  840. }
  841. }
  842. img{float: unset;width: calc(100% + 50px);margin: 0 -25px;}
  843. }
  844. }
  845. }
  846. /******** describe: 新闻资讯 author: TX date:2020-08-10 ********/
  847. .client-newsInfor-page{
  848. // banner
  849. .newsInfor-banner{
  850. width: 100%;height: 520px;overflow: hidden;background-color: #fff;
  851. img{max-width: 100%;overflow: hidden;margin: 0 auto;display: block}
  852. }
  853. // 菜单 ul
  854. .newsInfor-menu-ul{
  855. display: block;
  856. margin: 0 auto;
  857. text-align: center;
  858. background: #F7F9FB;
  859. 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}
  860. li.active{color: #2B5CFD;background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);}
  861. li:hover{
  862. transform: scale(1.1);
  863. }
  864. }
  865. // 页面主要内容区域
  866. .newsInfor-content-box{
  867. min-height: 304px;
  868. padding: 48px 0 80px;
  869. ul{display: inline-block;vertical-align: top}
  870. // 右侧内容区域
  871. .newsInfor-content-ul{
  872. padding: 0 32px;
  873. li{margin-bottom: 40px;cursor: pointer}
  874. li:last-child{margin-bottom: 0;}
  875. //图片
  876. .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;}
  877. //内容区域
  878. .newsInfor-list-content{
  879. width: calc(100% - 350px);
  880. display: inline-block;
  881. vertical-align: top;
  882. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;}
  883. div{
  884. margin-bottom: 8px;
  885. 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");}
  886. i[type="visits"]{background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");}
  887. span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;}
  888. }
  889. 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;}
  890. a{@include setFontStyle(-6);color: #4A73FD;}
  891. a:after{content: "";width: 14px;height: 12px;display:inline-block;background-image: url("~static/images/client/newsInfor/newsInfor-list-icon.svg");margin-left: 8px;}
  892. a:hover{cursor: pointer;}
  893. }
  894. }
  895. }
  896. @media (max-width: 768px){
  897. // banner
  898. .newsInfor-banner{
  899. height: 150px;
  900. img{width: auto;height: 150px;}
  901. }
  902. // 页面主要内容区域
  903. .newsInfor-content-box{
  904. min-height: unset;padding: 20px 0 50px;
  905. // 右侧内容区域
  906. .newsInfor-content-ul{
  907. width:100%;padding: 0 6%;box-sizing: border-box;
  908. li{box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px -1px;margin-bottom: 20px;}
  909. //图片
  910. .newsInfor-img-box{width:100%;height:180px;display: block;margin-right:0;border-radius: 0;}
  911. //内容区域
  912. .newsInfor-list-content{
  913. width: 100%;padding: 20px;box-sizing: border-box;
  914. h5{@include setFontStyle(-4);color: rgb(16, 16, 16);margin-bottom: 12px;}
  915. div{
  916. span{margin-bottom: 0;@include setFontStyle(-8);color: rgb(16, 16, 16);}
  917. }
  918. p{height: auto;max-height: 60px;margin-bottom:0;font-size: 14px;color: rgb(16, 16, 16);line-height: 20px;}
  919. }
  920. // 分页
  921. .client-el-pagination{margin-top: 24px}
  922. }
  923. }
  924. }
  925. }
  926. /******** describe: 政府机构-详情页 author: TX date:2020-08-10 ********/
  927. .client-government-page{
  928. // banner
  929. .industrydetails-banner{background-color: #1B33B7;}
  930. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/government-banner-img.png");}
  931. // 我们的系统为您改变了什么
  932. .government-change-box{
  933. background: #F9FAFF;
  934. padding-bottom: 80px;
  935. .industrydetails-content{
  936. width: 100%;height: 312px;margin-top: 48px;background-image: url("~static/images/client/industrydetails/government-change-bg.png");
  937. li{
  938. p{margin-left: 30px}
  939. }
  940. img{width:100px;display: inline-block;vertical-align: top;margin: 85px 25px 85px 30px;}
  941. }
  942. .change-content-left{
  943. display: inline-block;padding: 32px 0 0 64px;vertical-align: top;
  944. h5,li,li i{color: #fff;border-color: #fff;}
  945. p{color: rgba(255,255,255,0.65);}
  946. }
  947. .change-content-right{width: 525px;display: inline-block;padding-top: 64px;}
  948. }
  949. // 我们的优势
  950. .government-advantage-box{
  951. padding-bottom: 50px;
  952. h4{margin-bottom: 48px;}
  953. dl{width:33.33%;display: inline-block;margin-bottom: 30px;}
  954. dt{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 16px}
  955. dd{@include setFontStyle(-6);color: rgba(0,0,0,0.65);margin-left: 33px;}
  956. 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;}
  957. .government-advantage-content{margin-right: -100px;padding: 4px 0 0 4px;}
  958. }
  959. @media (max-width: 768px) {
  960. // 我们的系统为您改变了什么
  961. .government-change-box{
  962. background: rgb(238, 238, 238);padding: 0 15px;
  963. .industrydetails-content{
  964. height: auto;margin-top: 20px;background-image:unset;position: relative;
  965. li{
  966. p{margin-left: 20px}
  967. }
  968. img{width:80px;display:block;margin: -60px auto;position: absolute;left: 50%;margin-left: -40px;}
  969. }
  970. .change-content-left,.change-content-right{
  971. width: 100%;box-sizing: border-box;margin-bottom: 20px;
  972. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  973. i{border-color: #fff;opacity: 1;}
  974. }
  975. .change-content-left{background-color: rgb(0, 102, 204);padding: 20px 16px;}
  976. .change-content-right{background-color: rgb(255, 186, 0);padding: 60px 16px 36px;}
  977. }
  978. }
  979. }
  980. /******** describe: 金融保险-详情页 author: TX date:2020-09-01 ********/
  981. .client-finance-page{
  982. // banner
  983. .industrydetails-banner{background-color: #593513;}
  984. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/finance-banner-img.png");}
  985. // 金融行业的问题
  986. .finance-question-box{
  987. background: #F9FAFF;
  988. padding: 80px 0;
  989. .finance-question-top{
  990. width: 946px;height: 104px;background-image: url("~static/images/client/industrydetails/finance-question-bg.png");margin: 0 auto 48px;
  991. h5{height: 104px;line-height:104px;display: inline-block;@include setFontStyle(10);color: rgba(255,255,255,0.85);padding: 0 56px}
  992. h5:first-child{margin-right: 180px;color: rgba(0,0,0,0.85);}
  993. }
  994. ul{
  995. width:460px;min-height:345px;display: inline-block;border: 1px solid #2B67FD;border-radius: 4px;padding: 32px;box-sizing: border-box;vertical-align: middle;margin: 0 52px;
  996. i{width: 12px;height: 12px;background-image: linear-gradient(90deg, #2B5CFD 0%, #FFFFFF 100%);border-radius: 50%;border:0;transform: rotate(0deg);opacity: 1;}
  997. p{margin-left: 30px;}
  998. }
  999. .finance-question-right{
  1000. border: 1px solid #FF6226;
  1001. i{background-image: linear-gradient(90deg, #FF6226 0%, #FFFFFF 100%);}
  1002. }
  1003. }
  1004. @media (max-width: 768px) {
  1005. .finance-question-box{background-color: rgb(238, 238, 238);padding: 20px 15px 30px;}
  1006. .phone-class-box{
  1007. ul{
  1008. border: 0;width: 100%;margin: 0;padding: 20px 0 0;min-height: unset;
  1009. li{margin-bottom: 10px;}
  1010. i{width: 10px;height: 10px;margin-right: 8px;margin-top: 8px;border: 1px solid #fff;opacity: 1;border-radius:0;
  1011. float: left;box-sizing: border-box;display: block;transform: rotate(45deg);background-image: unset;}
  1012. p{font-size: 14px;color: white;line-height: 24px;margin-left: 20px;text-align: justify;}
  1013. }
  1014. h4{color: #fff;}
  1015. img {width: 130px;display: block;margin: -45px auto;position: absolute;left: 50%;margin-left: -65px;}
  1016. .financial-tradition-phone{background-color: rgb(0, 102, 204);margin: 0 0 20px;padding: 0 16px 20px;}
  1017. .financial-solve-phone{background-color: rgb(247, 109, 0);padding: 40px 16px 36px;}
  1018. }
  1019. }
  1020. }
  1021. /******** describe: 信息产业-详情页 author: TX date:2020-09-02 ********/
  1022. .client-information-page{
  1023. // banner
  1024. .industrydetails-banner{background-color: #070B20;}
  1025. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/information-banner-img.png");}
  1026. // 我们的系统为您改变了什么
  1027. .information-change-box{
  1028. background: #F9FAFF;
  1029. padding-bottom: 80px;
  1030. .industrydetails-content{
  1031. width: 100%;height: 300px;margin-top: 48px;background-image: url("~static/images/client/industrydetails/information-change-bg.png");
  1032. li{
  1033. p{margin-left: 30px;}
  1034. }
  1035. img{display: inline-block;vertical-align: top;margin: 120px 30px auto 70px;}
  1036. }
  1037. .change-content-left{
  1038. display: inline-block;padding: 48px 0 0 64px;vertical-align: top;
  1039. h5,li,li i{color: #fff;border-color: #fff;}
  1040. p{color: rgba(255,255,255,0.65);}
  1041. }
  1042. .change-content-right{width: 500px;display: inline-block;padding-top: 36px;}
  1043. }
  1044. @media (max-width: 768px) {
  1045. // 我们的系统为您改变了什么
  1046. .information-change-box{
  1047. background-color: rgb(238, 238, 238);padding: 0 15px 15px;
  1048. .industrydetails-content{
  1049. height: auto;margin-top: 20px;background-image:unset;position: relative;
  1050. li{
  1051. p{margin-left: 20px}
  1052. }
  1053. img{width:130px;display:block;margin: -45px auto;position: absolute;left: 50%;margin-left: -65px;}
  1054. }
  1055. .change-content-left,.change-content-right{
  1056. width: 100%;box-sizing: border-box;margin-bottom: 20px;
  1057. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1058. i{border-color: #fff;opacity: 1;}
  1059. }
  1060. .change-content-left{background-color: rgb(14, 60, 106);padding: 20px 16px;}
  1061. .change-content-right{background-color: rgb(164, 3, 3);padding: 60px 16px 36px;}
  1062. }
  1063. }
  1064. }
  1065. /******** describe: 能源化工-详情页 author: TX date:2020-09-02 ********/
  1066. .client-energy-page{
  1067. // banner
  1068. .industrydetails-banner{background-color: #073A44;}
  1069. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/energy-banner-img.png");}
  1070. // 我们的系统为您改变了什么
  1071. .energy-change-box{
  1072. background: #F9FAFF;
  1073. padding-bottom: 80px;
  1074. // 模块上半部分
  1075. .change-box-top{
  1076. width: 1100px;height: 247px;padding: 32px 64px;box-sizing: border-box;background: #104644;border-radius: 8px;margin-left: 20px;margin-top: 48px;
  1077. i{border: 1px solid #fff;}
  1078. }
  1079. // 模块下半部分
  1080. .change-box-bottom{
  1081. width: 1100px;height: 368px;padding: 24px;box-sizing: border-box;border-radius: 8px;background: #FE552C;margin-left: 100px;margin-top:-24px;position: relative;
  1082. h5{margin-top: 55px;}
  1083. li:nth-of-type(odd){p{margin-right: 60px}}
  1084. }
  1085. h5{color: rgba(255,255,255,0.85);}
  1086. li{
  1087. width: 50%;display: inline-block;@include setFontStyle(-6);color: rgba(255,255,255,0.65);line-height: 22px;vertical-align: top;
  1088. p{margin-left: 30px;color: rgba(255,255,255,0.65);}
  1089. }
  1090. img{position: absolute;top: -70px;left: 50%;margin-left: -50px;}
  1091. }
  1092. @media (max-width: 768px) {
  1093. // 我们的系统为您改变了什么
  1094. .energy-change-box{
  1095. background-color: rgb(238, 238, 238);padding: 0 15px 15px;
  1096. // 模块上半部分
  1097. .change-box-top{width: 100%;height:auto;padding: 20px 16px;margin:20px 0 20px;border-radius:0;}
  1098. // 模块下半部分
  1099. .change-box-bottom{width: 100%;height:auto;padding: 60px 16px 36px;margin:0 0 20px;border-radius:0;background-color: rgb(255, 115, 5);}
  1100. .change-box-top,.change-box-bottom{
  1101. i{border: 1px solid #fff;opacity: 1;}
  1102. h5{margin-top: 20px;color: #fff;}
  1103. li:nth-of-type(odd){p{margin-right: 0}}
  1104. }
  1105. li{
  1106. width: 100%;display: block;
  1107. p{margin-left: 20px;color: #fff;}
  1108. }
  1109. }
  1110. }
  1111. }
  1112. /******** describe: 交通运输-详情页 author: TX date:2020-09-02 ********/
  1113. .client-traffic-page{
  1114. // banner
  1115. .industrydetails-banner{background-color: #0A2F41;}
  1116. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/traffic-banner-img.png");}
  1117. // 我们的系统为您改变了什么
  1118. .traffic-change-box{
  1119. background: #F9FAFF;
  1120. padding-bottom: 80px;
  1121. .change-content-left,.change-content-right{
  1122. width: 462px;height: 359px;display:inline-block;background-repeat: no-repeat;vertical-align: top;margin-top: 48px;
  1123. h5{height: 58px;line-height: 58px;color: rgba(255,255,255,0.85);}
  1124. ul{margin-top: 80px;margin-left: 32px;}
  1125. i{width:12px;height:12px;border-radius:50%;border: 1px solid #1276FF;margin-top: 5px;}
  1126. }
  1127. .change-content-left{background-image: url("~static/images/client/industrydetails/traffic-left-bg.png");margin-right: 104px;}
  1128. .change-content-right{background-image: url("~static/images/client/industrydetails/traffic-right-bg.png");}
  1129. }
  1130. @media (max-width: 768px) {
  1131. // 我们的系统为您改变了什么
  1132. .traffic-change-box{
  1133. background-color: rgb(238, 238, 238);padding: 0 15px 30px;
  1134. .change-content-left,.change-content-right{
  1135. width: 100%;height: unset;margin:0;box-sizing: border-box;
  1136. ul{margin: 0;}
  1137. h5{height: unset;line-height: unset;@include setFontStyle(-4);color: rgba(255, 255, 255, 1);margin-bottom: 16px;text-align: center;font-weight: 700;}
  1138. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1139. i{width: 10px;height: 10px;border-color: #fff;opacity: 1;border-radius: 0;}
  1140. }
  1141. .change-content-left{background-color: rgb(31, 104, 176);padding: 20px 16px;background-image:unset;margin: 20px 0;}
  1142. .change-content-right{background-color: rgb(234, 118, 27);padding: 20px 16px;background-image:unset;}
  1143. }
  1144. }
  1145. }
  1146. /******** describe: 教育行业-详情页 author: TX date:2020-09-02 ********/
  1147. .client-education-page{
  1148. // banner
  1149. .industrydetails-banner{background-color: #085903;}
  1150. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/education-banner-img.png");}
  1151. // 我们的系统为您改变了什么
  1152. .education-change-box{
  1153. background: #F9FAFF;padding-bottom: 80px;
  1154. img{position: absolute;top: 50%;margin-top: -78px;left:50%;margin-left: -54px;}
  1155. .industrydetails-content{position: relative;}
  1156. .change-content-left,.change-content-right{height: 338px;box-sizing: border-box;}
  1157. .change-content-left{width: 637px;float:left;padding:32px 48px;background-image: url("~static/images/client/industrydetails/education-left-bg.png");}
  1158. .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;}
  1159. }
  1160. @media (max-width: 768px) {
  1161. .education-change-box{
  1162. background-color: rgb(238, 238, 238);padding: 0 15px 30px;
  1163. img{width:100px;margin: -105px auto;margin-left: -50px;}
  1164. .mt48{margin-top: 20px;}
  1165. .change-content-left,.change-content-right{
  1166. width: 100%;height:unset;box-sizing: border-box;margin-bottom: 20px;background-image: unset;float: unset;margin: 0 0 20px;
  1167. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1168. i{border-color: #fff;opacity: 1;}
  1169. }
  1170. .change-content-left{background-color: rgb(50, 159, 132);padding: 20px 16px 52px;}
  1171. .change-content-right{background-color: rgb(249, 163, 97);padding: 60px 16px 16px;}
  1172. }
  1173. }
  1174. }
  1175. /******** describe: 食品餐饮-详情页 author: TX date:2020-09-03 ********/
  1176. .client-restaurant-page{
  1177. // banner
  1178. .industrydetails-banner{background-color: #1C1E21;}
  1179. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/restaurant-banner-img.png");}
  1180. // 我们的系统为您改变了什么
  1181. .restaurant-change-box{
  1182. background: #F9FAFF;
  1183. padding-bottom: 80px;
  1184. .industrydetails-content{
  1185. position: relative;
  1186. img{position: absolute;top:50%;left: 50%;margin-top: -40px;margin-left: -45px;}
  1187. }
  1188. .change-content-left,.change-content-right{
  1189. width: 552px;height: 328px;display:inline-block;background-repeat: no-repeat;vertical-align: top;
  1190. h5{height: 58px;line-height: 58px;color: rgba(255,255,255,0.85);}
  1191. ul{margin-top: 32px;margin-left: 48px;}
  1192. }
  1193. .change-content-left{background-image: url("~static/images/client/industrydetails/restaurant-left-bg.png");margin-right: 90px;}
  1194. .change-content-right{background-image: url("~static/images/client/industrydetails/restaurant-right-bg.png");}
  1195. }
  1196. @media (max-width: 768px) {
  1197. // 我们的系统为您改变了什么
  1198. .restaurant-change-box{
  1199. background-color: rgb(238, 238, 238);padding: 0 15px 30px;
  1200. .mt48{margin-top: 20px;}
  1201. .industrydetails-content img{margin-top: -85px;}
  1202. .change-content-left,.change-content-right{
  1203. width: 100%;height:unset;box-sizing: border-box;margin-bottom: 20px;background-image: unset;float: unset;margin: 0 0 20px;
  1204. ul{margin: 0;}
  1205. h5{height: unset;line-height: unset;color: #fff;}
  1206. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1207. i{border-color: #fff;opacity: 1;}
  1208. }
  1209. .change-content-left{background-color: rgb(240, 112, 112);padding: 20px 16px;}
  1210. .change-content-right{background-color: rgb(255, 207, 78);padding: 60px 16px 16px;}
  1211. }
  1212. }
  1213. }
  1214. /******** describe: 医疗卫生-详情页 author: TX date:2020-09-03 ********/
  1215. .client-medical-page{
  1216. // banner
  1217. .industrydetails-banner{background-color: #2178E0;}
  1218. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/medical-banner-img.png");}
  1219. // 我们的系统为您改变了什么
  1220. .medical-change-box{
  1221. background: #F9FAFF;
  1222. padding-bottom: 80px;
  1223. .industrydetails-content{width: 1200px;height: 316px;background-image: url("~static/images/client/industrydetails/medical-change-bg.png");}
  1224. .change-content-left,.change-content-right{
  1225. width: 500px;display:inline-block;vertical-align: top;
  1226. ul{margin-left: 48px;}
  1227. h5{margin-top: 36px;color: rgba(255,255,255,0.85);}
  1228. p{color: rgba(255,255,255,0.65);}
  1229. i{border-color: #fff;}
  1230. }
  1231. .change-content-left{margin-right: 180px;}
  1232. }
  1233. @media (max-width: 768px) {
  1234. .medical-change-box{
  1235. background-color: rgb(238, 238, 238);padding: 0 15px 30px;
  1236. .industrydetails-content{width: 100%;height: unset;background-image:unset;}
  1237. .mt48{margin-top: 20px;}
  1238. .change-content-left,.change-content-right{
  1239. width: 100%;height:unset;box-sizing: border-box;margin-bottom: 20px;background-image: unset;float: unset;margin: 0 0 20px;
  1240. ul{margin: 0;}
  1241. h5{height: unset;line-height: unset;color: #fff;margin-top: 0;}
  1242. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1243. i{border-color: #fff;opacity: 1;}
  1244. }
  1245. .change-content-left{background-color: rgb(31, 104, 176);padding: 20px 16px;}
  1246. .change-content-right{background-color: rgb(234, 118, 27);padding: 20px 16px;}
  1247. }
  1248. }
  1249. }
  1250. /******** describe: 1-X-详情页 author: TX date:2020-09-03 ********/
  1251. .client-indexEducation-page{
  1252. padding-bottom: 80px;
  1253. .client-platform-new-banner{
  1254. .client-default-Btn,.client-default-white-Btn{width: 150px;height: 40px;line-height: 40px;display:inline-block;background: #0a86fe;border: 1px solid #0a86fe;box-sizing: border-box;
  1255. position: absolute;top: 330px;left: 50%;margin-left: -150px;}
  1256. .client-default-white-Btn{background: transparent;border-color: #0a86fe;color:#fff;left: 50%;margin-left: 30px;}
  1257. }
  1258. @media (max-width: 768px){
  1259. padding-bottom: 15px;
  1260. .client-platform-new-banner{
  1261. .client-default-Btn,.client-default-white-Btn{width: 122px;height: 35px;line-height: 35px;top: 105px;margin-left: -130px}
  1262. .client-default-white-Btn{left: 50%;margin-left: 10px;}
  1263. }
  1264. }
  1265. }
  1266. /******** describe: 课程资源 author: TX date:2020-09-03 ********/
  1267. .client-resources-page{
  1268. // 图标列表
  1269. .train-scheme-list{
  1270. margin: 54px -24px 0;
  1271. li{width: 25%;display: inline-block;text-align: center}
  1272. i{width: 100px;height: 100px;display: block;margin: 0 auto;}
  1273. span{@include setFontStyle(-4);color: #333;margin-top: 10px;display: block;}
  1274. div{box-shadow: 0 0 7px 2px #f5f2ff;margin: 24px;padding: 42px 0;}
  1275. li:nth-child(1) i{background-image: url("~static/images/client/resources/train-scheme-icon1.png")}
  1276. li:nth-child(2) i{background-image: url("~static/images/client/resources/train-scheme-icon2.png")}
  1277. li:nth-child(3) i{background-image: url("~static/images/client/resources/train-scheme-icon3.png")}
  1278. li:nth-child(4) i{background-image: url("~static/images/client/resources/train-scheme-icon4.png")}
  1279. li:nth-child(5) i{background-image: url("~static/images/client/resources/train-scheme-icon5.png")}
  1280. li:nth-child(6) i{background-image: url("~static/images/client/resources/train-scheme-icon6.png")}
  1281. li:nth-child(7) i{background-image: url("~static/images/client/resources/train-scheme-icon7.png")}
  1282. li:nth-child(8) i{background-image: url("~static/images/client/resources/train-scheme-icon8.png")}
  1283. }
  1284. // 为企业培训打造学习矩阵
  1285. .products-services-content p{line-height: 52px;}
  1286. // 蓝色提醒文字
  1287. .blue-big-size{
  1288. font-size: 26px;color: #3e7ce7;padding: 0 5px;
  1289. }
  1290. // 课程内容形式多样
  1291. .course-learn-box{
  1292. background: #f9faff;
  1293. // video列表
  1294. .learn-box-list{
  1295. margin: 54px -16px 0;
  1296. li{
  1297. width: 33.33%;display: inline-block;
  1298. a{display: none;}
  1299. div{background: #fff;border-radius: 8px;margin: 0 16px 40px;box-shadow: 0 0 7px 2px #f5f2ff;}
  1300. span{width:342px;height:192px;display: inline-block;margin-top: 16px;border-radius:4px;overflow: hidden;position: relative}
  1301. i{width: 48px;height: 48px;cursor: pointer;background-image: url("~static/images/client/course/course-video-icon.svg");display: inline-block;position: absolute;
  1302. left: 50%;margin-left: -24px;z-index: 5;top: 50%;margin-top: -24px;background-size: cover;background-position: bottom;transition: all 0.5s;}
  1303. img{transition: all 0.5s;}
  1304. p{@include setFontStyle(-4);color: #3e7ce7;padding: 24px 16px 16px;text-align: left}
  1305. .course-explain-black{@include setFontStyle(-4);color: #333;line-height: 24px;padding: 0 16px 24px;}
  1306. }
  1307. li span:hover{img{transform: scale(1.1);}}
  1308. li i:hover{background-image: url("~static/images/client/course/course-video-icon-a.svg");background-size: cover;background-position: bottom;}
  1309. }
  1310. }
  1311. // banner背景色
  1312. .client-platform-banner{background-color: #03022e;}
  1313. // 新闻资讯
  1314. .platform-news-information{background: #fff;}
  1315. // 按钮
  1316. .client-default-Btn,.client-default-white-Btn{width: 150px;height: 40px;line-height: 40px;display:inline-block;border: 1px solid #3e7ce7;background: #3e7ce7;margin-right: 24px;margin-bottom: 42px;}
  1317. .client-default-white-Btn{background: #fff;color:#3e7ce7;margin-right: 0 }
  1318. @media (max-width: 768px){
  1319. // 图标列表
  1320. .train-scheme-list{
  1321. margin: 12px 16px 36px;
  1322. li{
  1323. width: 50%;
  1324. i{width: 70px;height: 70px;background-size: cover;}
  1325. div{margin: 6px;padding: 24px 0;}
  1326. }
  1327. }
  1328. // 为企业培训打造学习矩阵
  1329. .products-services-content p{font-size: 14px;line-height: 40px;text-align: center;color: #101010;}
  1330. // 蓝色提醒文字
  1331. .blue-big-size{font-size: 18px;}
  1332. // 按钮box
  1333. .default-Btn-box{text-align: center}
  1334. // 视频列表
  1335. .course-learn-box{
  1336. margin:0;background-color: rgb(238, 238, 238);
  1337. .client-container {padding: 0 15px;}
  1338. .learn-box-list{
  1339. margin: 20px 0;
  1340. li {
  1341. width: 100%;
  1342. div{box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px -1px;border-radius:0;margin: 0 16px;}
  1343. span {width: 100%;height: 180px;margin-top: 0;border-radius: 0;}
  1344. img {max-width: 100%;}
  1345. p {font-size: 14px;padding: 16px 0;text-align: center;}
  1346. .course-explain-black{font-size: 14px;text-align: left;padding: 0 16px 20px;}
  1347. }
  1348. }
  1349. }
  1350. // 按钮
  1351. .client-default-Btn,.client-default-white-Btn{width: 122px;height: 35px;line-height: 35px;margin:0 8px 42px;}
  1352. }
  1353. }
  1354. /******** describe: 考试系统更新日志 author: TX date:2020-09-03 ********/
  1355. .client-checklog-page{
  1356. // banner
  1357. .client-checklog-banner{
  1358. width: 100%;height: 300px;background-color: rgb(0, 102, 204);text-align: center;
  1359. h4{font-size: 56px;color: rgba(255, 255, 255, 1);font-weight: bold;padding-top: 64px;}
  1360. p{font-size: 28px;color: rgb(255, 255, 255);padding-top: 24px;}
  1361. }
  1362. // 数据展示
  1363. .log-data-show{
  1364. height: 200px;
  1365. border-color: rgb(187, 187, 187);
  1366. border-width: 1px;
  1367. border-style: solid;
  1368. box-shadow: rgb(121, 188, 255) 0px 2px 6px 0px;
  1369. border-radius: 10px;
  1370. padding: 24px;
  1371. box-sizing: border-box;
  1372. display: flex;
  1373. justify-content: space-evenly;
  1374. margin-top: -64px;
  1375. background: #fff;
  1376. div{
  1377. display: inline-block;text-align: center;
  1378. span{font-size: 24px;color: rgba(39, 137, 221, 1);font-weight: bold;padding-top: 32px;display: inline-block;}
  1379. p{font-size: 54px;color: rgba(39, 137, 221, 1);font-weight: bold;padding-top: 10px;}
  1380. }
  1381. i{width: 1px;height: 150px;background: lightgray;display: inline-block;}
  1382. }
  1383. // 日志内容
  1384. .log-content-box{
  1385. margin: 52px auto 100px;color: rgb(16, 16, 16);
  1386. li{
  1387. color: rgb(16, 16, 16);border-bottom: 1px dashed #ccc;padding: 0 88px;
  1388. h5{font-size: 18px;margin: 14px 0;font-weight: bold;}
  1389. span{font-size: 18px;margin-bottom: 14px;display: block;font-weight: bold;}
  1390. div{margin-bottom: 14px;}
  1391. i{width: 12px;height: 1px;display: inline-block;background: #bbb;vertical-align: top;margin: 10px 6px 10px 0;}
  1392. p{width: 1000px;font-size: 16px;display: inline-block;vertical-align: middle;line-height: 24px;color: #000;text-align: justify}
  1393. }
  1394. li:last-child{border: 0;}
  1395. }
  1396. }
  1397. /******** describe: 体验中心 author: TX date:2021-06-09 ********/
  1398. .tiyan-center-page{
  1399. .tiyan-center-register{
  1400. background: #3776ff;text-align: center;padding: 52px 0;margin-top: 70px;
  1401. h5{font-size: 42px;color: #fff;margin: 24px 0;}
  1402. p{font-size: 32px;color: #fff;margin-bottom: 52px;}
  1403. span{font-size: 52px;color: #ffff00}
  1404. a{width: 355px;height: 60px;line-height: 60px;text-align: center;background: #ff4d4d;border-radius: 4px;display: inline-block;color: #fff;}
  1405. }
  1406. @media (max-width: 768px){
  1407. /* 网站banner */
  1408. .client-platform-banner div{background-position-x: 42%;}
  1409. .experience-swiper-box .swiper-pagination-style {width: 80px;margin-left: -30px;}
  1410. }
  1411. }
  1412. // 立即注册弹窗
  1413. .register-now-dialog{
  1414. .el-dialog{
  1415. width:540px;
  1416. // 关闭图标
  1417. .el-icon-close:before{color: #fff}
  1418. // 弹窗头部
  1419. .el-dialog__header{height: 100px;background: #363fdc;}
  1420. // 弹窗body
  1421. .el-dialog__body{
  1422. height:200px;position: relative;background: #fff;
  1423. .register-now-box{
  1424. position: absolute;top: -100px;left: 0;right: 0;
  1425. >p{font-size: 18px;color: #fff;text-align: center;line-height: 24px;margin-bottom: 8px}
  1426. >span{
  1427. margin-top: 36px;color: #666;font-size: 16px;display: block;text-align: center;
  1428. .tel-code{font-size: 30px;color:#1f68b4;font-weight: bold;}
  1429. }
  1430. }
  1431. }
  1432. .system-box{
  1433. width:400px;height:160px;background: #fff;border: 1px solid #b5b5b5;border-radius: 4px;padding: 10px 8px;margin: 16px auto;display:flex;justify-content: space-around;align-items: center;
  1434. a{
  1435. display: inline-block;
  1436. i{width: 158px;height: 120px;display: block;background-size: cover;}
  1437. }
  1438. span{width: 1px;min-height: 100px;display:inline-block;background:#e8e8e8;@include setFontStyle(-4);margin: 10px;}
  1439. p{@include setFontStyle(-4);color: rgba(0,0,0,0.85);line-height: 24px;text-align: center;}
  1440. }
  1441. .system-box:nth-child(1){i{background-image:url("~static/images/client/exam/product-function-icon3.png");} }
  1442. .system-box:nth-child(3){i{background-image:url("~static/images/client/train/product-function-icon6.png");} }
  1443. }
  1444. }
  1445. // 系统维护弹窗
  1446. .system-maintain-dialog{
  1447. .el-dialog{width: 540px;height: 380px;background-image:url("~static/images/client/tiyanCenter/ty-dialog-bj.jpg");}
  1448. }
  1449. /******** describe: 课程开发解决方案 author: TX date:2021-08-06 ********/
  1450. .course-develop-page{
  1451. // 标题
  1452. .course-develop-title{background-color: rgb(39, 68, 98);padding: 50px 0 100px;font-weight: 700;font-size: 24px;color: rgb(255, 255, 255);text-align: center;}
  1453. // form
  1454. .course-develop-form{width: 90%;min-height: 380px;background: #fff;margin: -50px auto 0;padding: 40px 24px;box-sizing: border-box;border-radius: 5px;box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 4px -1px;}
  1455. // 滑块px
  1456. .nc-container{
  1457. overflow: hidden;height: 52px;
  1458. .nc_wrapper{width:100%!important;margin-bottom: 22px;border-radius: 5px;overflow: hidden;}
  1459. .nc_scale{
  1460. height: 30px;
  1461. .scale_text{overflow: hidden;line-height: 30px;}
  1462. span{width:40px;height: 30px;line-height: 30px;border-radius: 5px;border: 1px solid rgb(187, 187, 187);box-sizing: border-box;overflow: hidden}
  1463. }
  1464. .btn_ok{margin-left: -1px;}
  1465. }
  1466. // 输入框-验证码
  1467. .course-develop-input-code{width: calc(100% - 122px);}
  1468. .course-develop-code-btn.el-button{width:110px;box-sizing:border-box;padding: 12px;margin-left: 8px;background-color: rgb(0, 102, 204);color: #fff;}
  1469. // 公司名称
  1470. .dialog-input-company{
  1471. .el-form-item__content{display: grid;}
  1472. }
  1473. // 表单按钮
  1474. .form-blue-btn,.form-border-btn{
  1475. width: 100%;height: 50px;line-height: 50px;color: rgb(255, 255, 255);border-radius: 5px;@include setFontStyle(-4);text-align: center;border: 1px solid transparent;
  1476. }
  1477. .form-blue-btn{background-color: rgb(0, 102, 204);border-color:rgb(0, 102, 204);}
  1478. .form-border-btn{display:block;border-color:rgb(0, 102, 204);color:rgb(0, 102, 204);margin-top: 20px; }
  1479. // 咨询电话
  1480. .course-develop-tel{display:block;text-align: center;margin: 60px 0;font-weight: 700;@include setFontStyle(-2);color: #101010;}
  1481. // 产品
  1482. .dialog-input-company{text-align: center;padding: 0;}
  1483. }
  1484. /******** describe: 注册页面--手机 author: TX date:2021-08-06 ********/
  1485. .register-phone-page{
  1486. // 标题
  1487. .course-develop-title{font-size: 20px;}
  1488. // 咨询电话
  1489. .course-develop-tel{margin: 46px 0;}
  1490. }
  1491. /******** describe: 复制路径页面--手机 author: TX date:2021-08-06 ********/
  1492. .copy-url-page{
  1493. background: #fff;height: 100vh;
  1494. // 底部
  1495. .success-body-box{
  1496. img{max-width: 100%;padding: 30px;box-sizing: border-box;}
  1497. p{font-weight: 700;font-size: 20px;color: rgb(31, 104, 176);text-align: center;margin: 4px 0;}
  1498. span{line-height: 24px;font-weight: 400;font-size: 16px;color: rgb(16, 16, 16);display: block;text-align: center;padding:30px;word-break: break-all;}
  1499. a{width: 122px;height: 36px;line-height:36px;background-color: rgb(234, 118, 27);color: rgb(255, 255, 255);
  1500. border-radius: 5px;font-size: 14px;display: block;margin: 0 auto;text-align: center}
  1501. }
  1502. }
  1503. /******** describe: 企业微课制作 author: TX date:2021-09-13 ********/
  1504. .client-makeCourse-page{
  1505. .client-platform-banner{
  1506. background-color: #22252A;
  1507. .free-trial-default-btn{background: #f76377}
  1508. }
  1509. // 按钮
  1510. .btn-big-box{width: 263px;margin: 50px auto 0;display: block;text-align: center;}
  1511. // 页面标题
  1512. .make-course-title {width: 100%;font-size: 24px;font-weight: normal;margin-bottom: 35px;padding-left: 10px;color: #333;text-align: center}
  1513. .course-blue-title{color: #3E7BE6;}
  1514. // 页面文字
  1515. .make-course-h2{
  1516. width: 100%;text-align: center;padding: 40px 0;border-bottom: 1px solid #CCC;
  1517. img{max-width: 100%;}
  1518. }
  1519. // 基本介绍
  1520. .makeCourse-introduce-box{
  1521. margin: 64px 0;
  1522. dl {
  1523. width: 580px;float: left;padding-top: 100px;padding-left: 20px;
  1524. h3{text-align: left}
  1525. dt {width: 100%;font-size: 18px;font-weight: normal;margin-bottom: 35px;color: #333;padding-left: 10px;}
  1526. }
  1527. }
  1528. .contrary-introduce-box{
  1529. margin-bottom: 88px;
  1530. dl {
  1531. width: 480px;float: right;padding-top: 0;height: 350px;
  1532. dt {margin-bottom: 20px;}
  1533. dd{margin-top: 35px;}
  1534. }
  1535. }
  1536. // 课程目标
  1537. .course-target-box{
  1538. background: #F8F8F8;padding: 42px 0;
  1539. li{
  1540. width: 20%;display: inline-block;
  1541. div{text-align: center;background: #fff;margin: 5px;padding: 24px 0;}
  1542. img{height: 100px;margin-bottom: 24px;}
  1543. span{text-align: center;font-size: 18px;color: #333;display: block}
  1544. }
  1545. }
  1546. // 培训讲师介绍
  1547. .px-teacher-box{
  1548. margin: 60px 0;
  1549. .teacher-content-box{display: flex;justify-content: space-between;align-items: center;}
  1550. span{display: block;font-size: 18px;color: #333;text-align: center;}
  1551. p{margin-left: 70px;line-height: 50px;}
  1552. .btn-big-box{margin-top: 32px;}
  1553. }
  1554. // 课程体系
  1555. .course-system-box{
  1556. padding: 32px 0;
  1557. .course-system-img{margin-bottom: 40px;max-width: 100%;}
  1558. img{max-width: 100%;}
  1559. }
  1560. // 微课设计
  1561. .course-learn-box{
  1562. padding: 64px 0;
  1563. .learn-box-list li div{margin: 0 16px 0;}
  1564. }
  1565. // 报名学习
  1566. .sign-study-box{
  1567. width: 100%;
  1568. .study-gj-box{width: 100%;height: 298px;background-image:url("~static/images/client/makeCourse/sign-study-bj.png");
  1569. margin-top: 20px;border-radius: 8px;bottom: -20px;position: relative;}
  1570. .sign-study-content{
  1571. position: absolute;bottom: 74px;font-size: 0;left: 76px;
  1572. .el-input{
  1573. width: 400px;font-size: 16px;
  1574. .el-input__inner{height: 64px;display: inline-block;border-radius: 0;font-size: 16px}
  1575. .el-input__inner::-webkit-input-placeholder { /* WebKit browsers */
  1576. font-size: 16px;
  1577. }
  1578. .el-input__inner::-moz-placeholder { /* Mozilla Firefox 19+ */
  1579. font-size: 16px;
  1580. }
  1581. .el-input__inner:-ms-input-placeholder { /* Internet Explorer 10+ */
  1582. font-size: 16px;
  1583. }
  1584. }
  1585. .el-button{width:150px;height:64px;display: inline-block;margin-left: -1px;font-size: 16px}
  1586. }
  1587. }
  1588. @media (max-width: 768px) {
  1589. // 按钮
  1590. .client-default-Btn{width: 120px;height: 35px;line-height: 35px;margin: 32px auto 0;}
  1591. // 页面标题
  1592. .make-course-title {font-size: 16px;margin-bottom: 16px;color: #3E7BE6;padding-left: 0;font-weight: bold;}
  1593. // 页面文字
  1594. .make-course-h2{
  1595. padding: 32px 0;
  1596. }
  1597. // 基本介绍
  1598. .makeCourse-introduce-box{
  1599. margin: 32px 0;
  1600. img{max-width: 100%;display: block;margin: 0 auto;}
  1601. dl {
  1602. width: 100%;float: unset;padding: 24px 10px;box-sizing: border-box;text-align: center;
  1603. h3{text-align: center;}
  1604. dt {font-size: 14px;margin-bottom: 16px;color: #555555;padding-left: 0;line-height: 24px}
  1605. }
  1606. }
  1607. .contrary-introduce-box{
  1608. dl {
  1609. width: 100%;float: unset;padding: 24px 10px;box-sizing: border-box;text-align: center;height: unset;
  1610. dt {margin-bottom: 4px;}
  1611. }
  1612. }
  1613. // 课程目标
  1614. .course-target-box{
  1615. background: #F8F8F8;padding: 16px 0 32px;
  1616. h3{font-size: 18px;color: #333;margin: 12px 0;text-align: center}
  1617. ul{text-align: center;}
  1618. li{
  1619. width: 33.33%;
  1620. div{margin: 6px;padding: 16px 0;}
  1621. img{height: 40px;margin-bottom: 10px;}
  1622. span{font-size: 16px;color: #333;}
  1623. }
  1624. .btn-big-box{margin-top: 50px;}
  1625. }
  1626. // 培训讲师介绍
  1627. .px-teacher-box{
  1628. margin: 32px 0;
  1629. .teacher-img-box{
  1630. width: 80px;padding: 0;box-sizing: border-box;flex-shrink: 0;
  1631. img{width: 80px;display: inline-block;vertical-align: middle;}
  1632. }
  1633. .teacher-content-box{display: flex;justify-content: space-between;}
  1634. span{font-size: 16px;margin: 10px 0;}
  1635. p{font-size: 14px;line-height: 24px;margin: 10px 12px;text-align: justify;}
  1636. .btn-big-box{margin-top: 32px;}
  1637. }
  1638. // 微课设计
  1639. .course-learn-box{
  1640. padding: 32px 0;
  1641. .client-container{padding: 0}
  1642. .learn-box-list li div{margin: 0}
  1643. }
  1644. // 报名学习
  1645. .sign-study-box{
  1646. background: #3776ff;
  1647. .client-container{padding: 0;}
  1648. .study-gj-box{height:180px;background-image:url("~static/images/client/makeCourse/sign-study-sjBj.png");background-size: contain;background-repeat: no-repeat;
  1649. bottom: 0;border-radius: 0;background-position: center;}
  1650. .sign-study-content{
  1651. bottom: 40px;left: 40px;right: 40px;
  1652. .el-input{
  1653. width: 68%;font-size: 14px;vertical-align: middle;
  1654. .el-input__inner{height: 38px;font-size: 14px}
  1655. .el-input__inner::-webkit-input-placeholder { /* WebKit browsers */
  1656. font-size: 14px;
  1657. }
  1658. .el-input__inner::-moz-placeholder { /* Mozilla Firefox 19+ */
  1659. font-size: 14px;
  1660. }
  1661. .el-input__inner:-ms-input-placeholder { /* Internet Explorer 10+ */
  1662. font-size: 14px;
  1663. }
  1664. }
  1665. .el-button{width:32%;height:38px;font-size: 14px;border-radius: 2px;vertical-align: middle; padding: 0;}
  1666. }
  1667. }
  1668. }
  1669. }
  1670. }