cus-client-page.scss 75 KB

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