cus-client-page.scss 76 KB

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