cus-client-page.scss 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  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{
  701. width: 100%;
  702. height: 520px;
  703. background-color: #fff;
  704. background-position-x: center;
  705. background-repeat: no-repeat;
  706. background-image: url("~static/images/client/aboutUs/aboutUs-banner.jpg");
  707. }
  708. // 公司简介
  709. .company-profile-box{
  710. padding-bottom: 48px;
  711. font-size: 0;
  712. img{margin: 48px auto;display: block;}
  713. p{@include setFontStyle(-2);color: rgba(0,0,0,0.65);line-height: 40px;text-align: justify;margin: 0 60px}
  714. }
  715. // 品牌介绍
  716. .brand-introduction-box{
  717. .brand-introduction-content{
  718. width: 100%;
  719. padding: 42px;
  720. box-sizing: border-box;
  721. background: #fbfbfb;
  722. border-radius: 8px;
  723. float: right;
  724. .brand-introduction-left{
  725. display: inline-block;
  726. vertical-align: middle;
  727. padding-right: 42px;
  728. border-right: 1px solid #ddd;
  729. h4{@include setFontStyle(6);color: rgba(0,0,0,0.75);margin-bottom: 36px}
  730. img{margin-bottom: 36px;}
  731. }
  732. 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;}
  733. }
  734. }
  735. // 企业文化
  736. .corporate-culture-box{
  737. //padding-bottom: 80px;
  738. li{
  739. width:25%;
  740. display: inline-block;
  741. vertical-align: middle;
  742. div{
  743. margin-right: 16px;
  744. margin-bottom: 16px;
  745. padding: 40px 0;
  746. border: 6px solid #f7f7f7;
  747. text-align: center;
  748. i{width: 70px;height: 70px;display:inline-block;margin-bottom: 16px;}
  749. h5{@include setFontStyle(0);color: rgba(0,0,0,0.85);margin-bottom: 16px;}
  750. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;}
  751. }
  752. }
  753. li:nth-child(1){i{background-image: url("~static/images/client/aboutUs/corporate-culture-icon1.png");} }
  754. li:nth-child(2){i{background-image: url("~static/images/client/aboutUs/corporate-culture-icon2.png");} }
  755. li:nth-child(3){i{background-image: url("~static/images/client/aboutUs/corporate-culture-icon3.png");} }
  756. li:nth-child(4){i{background-image: url("~static/images/client/aboutUs/corporate-culture-icon4.png");} }
  757. li:last-child{
  758. div{margin-right: 0;}
  759. }
  760. }
  761. // 企业发展历程
  762. .enterprise-development-box{
  763. // 覆盖饿了么tab样式
  764. .enterprise-development-tab{
  765. .el-tabs__nav-wrap::after,.el-tabs__active-bar{display: none;}
  766. .el-tabs__header{
  767. margin: 0;
  768. .el-tabs__nav{width: 100%;padding-bottom: 20px;border-bottom: 1px dotted #6c9ce1;}
  769. .el-tabs__nav-wrap,.el-tabs__nav-scroll{overflow: visible}
  770. }
  771. .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;}
  772. .el-tabs__item.is-active{background: #3e7ee7;color: #fff}
  773. .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;}
  774. .el-tabs__item.is-active:after{background: #3e7ee7;}
  775. .el-tabs__content{overflow: visible}
  776. }
  777. // 企业发展历程内容部分
  778. li{
  779. width: 25%;display: inline-block;padding: 36px 24px 60px;background:#fbfbfb;box-sizing: border-box;min-height: 196px;vertical-align: top;
  780. div{width: 250px;border-bottom: 1px solid #eee;}
  781. img{margin-bottom: 14px;}
  782. i{min-width:34px;display:inline-block;color: #3e7ee7;font-style: normal;margin-right: 10px;}
  783. p{@include setFontStyle(-4);color: rgba(0,0,0,.65);margin-top: 14px;}
  784. }
  785. }
  786. // 联系我们
  787. .contact-us-box{
  788. .contact-container-box{
  789. width: 100%;
  790. box-sizing: border-box;
  791. color: rgba(0,0,0,0.85);
  792. h4{@include setFontStyle(10);color: #3e7ee7;margin-bottom: 60px;margin-top: 20px;}
  793. li{
  794. width: 50%;display: inline-block;box-sizing: border-box;margin-bottom: 48px;
  795. i{width: 30px;height: 30px;display: inline-block;background-repeat: no-repeat;background-position: center;background-size: contain;margin-right: 8px;vertical-align: middle;}
  796. span{@include setFontStyle(0);color: rgba(16, 16, 16, 100);vertical-align: middle;}
  797. }
  798. li:nth-child(1) {
  799. i {background-image: url("~static/images/client/aboutUs/contact-us-icon1.png");}
  800. }
  801. li:nth-child(2) {
  802. text-align: right;
  803. span{width: 273px;display: inline-block;text-align: left}
  804. i {background-image: url("~static/images/client/aboutUs/contact-us-icon2.png");}
  805. }
  806. li:nth-child(3) {
  807. i {background-image: url("~static/images/client/aboutUs/contact-us-icon3.png");}
  808. }
  809. li:nth-child(4) {
  810. text-align: right;
  811. span{width: 273px;display: inline-block;text-align: left}
  812. i {background-image: url("~static/images/client/aboutUs/contact-us-icon4.png");}
  813. }
  814. }
  815. img{max-width: 100%;margin: 0 auto;display: block;}
  816. }
  817. @media (max-width: 768px){
  818. // banner
  819. .aboutUs-banner{
  820. height: 150px;background-size: cover;
  821. span{width: 100%;}
  822. }
  823. // 公司简介
  824. .company-profile-box{
  825. img{margin: 20px auto;max-width: 100%;}
  826. p{@include setFontStyle(-6);color: rgba(85, 85, 85, 1);line-height: 24px;margin: 0 10px 6px;}
  827. }
  828. // 品牌介绍
  829. .brand-introduction-box{
  830. background-color: rgb(238, 238, 238);
  831. .brand-introduction-content{
  832. background-color: transparent;padding: 24px 10px;
  833. .brand-introduction-left{
  834. display: block;border-right:0;padding-right:0;
  835. h4{font-size: 18px;color: rgba(0, 0, 0, 1);text-align: center;margin-bottom: 20px;font-weight: 700;}
  836. img{margin: 0 auto 24px;max-width: 230px;display: block;}
  837. }
  838. span{width: 100%;display: block;padding-left: 0;font-size: 14px;color: rgba(85, 85, 85, 1);line-height: 24px;}
  839. }
  840. }
  841. // 企业文化
  842. .corporate-culture-box{
  843. padding: 50px 0 0;
  844. li{
  845. width:100%;
  846. div{
  847. height: 70px;margin: 0 0 16px;border: 0;box-shadow: rgb(206, 206, 206) 0 0 6px -1px;padding: 14px 0;
  848. i{display: unset;float: left;margin-left: 30px;margin-bottom: 0;}
  849. h5{font-weight: 700;font-size: 16px;color: #101010;margin: 12px 0;}
  850. p{font-size: 14px;color: #101010;}
  851. }
  852. }
  853. }
  854. // 联系我们
  855. .contact-us-box{
  856. padding: 54px 0 0;border: 0;line-height: 1;font-size: 0;
  857. .contact-container-box{
  858. width: 100%;
  859. padding: 0;
  860. color: rgba(0,0,0,0.85);
  861. display: flex;
  862. flex-direction: column;
  863. h4{@include setFontStyle(-2);font-weight: 700;color: rgba(0, 0, 0, 1);margin-bottom: 24px;margin-top:0;text-align: center;}
  864. li{
  865. width: 100%;display: block;margin-bottom: 24px;
  866. i{width: 20px;height: 20px;}
  867. span{@include setFontStyle(-6);}
  868. }
  869. li:nth-child(2),li:nth-child(4){
  870. text-align: left;
  871. span{width: auto;}
  872. }
  873. li:nth-child(1){order: 1;}
  874. li:nth-child(2){order: 2;}
  875. li:nth-child(3){order: 4;}
  876. li:nth-child(4){order: 3;}
  877. }
  878. }
  879. }
  880. }
  881. /******** describe: 新闻资讯 author: TX date:2020-08-10 ********/
  882. .client-newsInfor-page{
  883. // banner
  884. .newsInfor-banner{
  885. width: 100%;
  886. height: 520px;
  887. background-color: #fff;
  888. background-position-x: center;
  889. background-repeat: no-repeat;
  890. }
  891. // 菜单 ul
  892. .newsInfor-menu-ul{
  893. display: block;
  894. margin: 0 auto;
  895. text-align: center;
  896. background: #F7F9FB;
  897. 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}
  898. li.active{color: #2B5CFD;background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);}
  899. li:hover{
  900. transform: scale(1.1);
  901. }
  902. }
  903. // 页面主要内容区域
  904. .newsInfor-content-box{
  905. min-height: 304px;
  906. padding: 48px 0 80px;
  907. ul{display: inline-block;vertical-align: top}
  908. // 右侧内容区域
  909. .newsInfor-content-ul{
  910. padding: 0 32px;
  911. li{margin-bottom: 40px;cursor: pointer}
  912. li:last-child{margin-bottom: 0;}
  913. //图片
  914. .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;}
  915. //内容区域
  916. .newsInfor-list-content{
  917. width: calc(100% - 350px);
  918. display: inline-block;
  919. vertical-align: top;
  920. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;}
  921. div{
  922. margin-bottom: 8px;
  923. 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");}
  924. i[type="visits"]{background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");}
  925. span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;}
  926. }
  927. 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;}
  928. a{@include setFontStyle(-6);color: #4A73FD;}
  929. a:after{content: "";width: 14px;height: 12px;display:inline-block;background-image: url("~static/images/client/newsInfor/newsInfor-list-icon.svg");margin-left: 8px;}
  930. a:hover{cursor: pointer;}
  931. }
  932. }
  933. }
  934. @media (max-width: 768px){
  935. // banner
  936. .newsInfor-banner{
  937. height: 150px;background-size: cover;
  938. img{width: auto;height: 150px;}
  939. }
  940. // 页面主要内容区域
  941. .newsInfor-content-box{
  942. min-height: unset;padding: 20px 0 50px;
  943. // 右侧内容区域
  944. .newsInfor-content-ul{
  945. width:100%;padding: 0 6%;box-sizing: border-box;
  946. li{box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px -1px;margin-bottom: 20px;}
  947. //图片
  948. .newsInfor-img-box{width:100%;height:180px;display: block;margin-right:0;border-radius: 0;}
  949. //内容区域
  950. .newsInfor-list-content{
  951. width: 100%;padding: 20px;box-sizing: border-box;
  952. h5{@include setFontStyle(-4);color: rgb(16, 16, 16);margin-bottom: 12px;}
  953. div{
  954. span{margin-bottom: 0;@include setFontStyle(-8);color: rgb(16, 16, 16);}
  955. }
  956. p{height: auto;max-height: 60px;margin-bottom:0;font-size: 14px;color: rgb(16, 16, 16);line-height: 20px;}
  957. }
  958. // 分页
  959. .client-el-pagination{margin-top: 24px}
  960. }
  961. }
  962. }
  963. }
  964. /******** describe: 政府机构-详情页 author: TX date:2020-08-10 ********/
  965. .client-government-page{
  966. // banner
  967. .industrydetails-banner{background-color: #1B33B7;}
  968. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/government-banner-img.png");}
  969. // 我们的系统为您改变了什么
  970. .government-change-box{
  971. background: #F9FAFF;
  972. padding-bottom: 80px;
  973. .industrydetails-content{
  974. width: 100%;height: 312px;margin-top: 48px;background-image: url("~static/images/client/industrydetails/government-change-bg.png");
  975. li{
  976. p{margin-left: 30px}
  977. }
  978. img{width:100px;display: inline-block;vertical-align: top;margin: 85px 25px 85px 30px;}
  979. }
  980. .change-content-left{
  981. display: inline-block;padding: 32px 0 0 64px;vertical-align: top;
  982. h5,li,li i{color: #fff;border-color: #fff;}
  983. p{color: rgba(255,255,255,0.65);}
  984. }
  985. .change-content-right{width: 525px;display: inline-block;padding-top: 64px;}
  986. }
  987. // 我们的优势
  988. .government-advantage-box{
  989. padding-bottom: 50px;
  990. h4{margin-bottom: 48px;}
  991. dl{width:33.33%;display: inline-block;margin-bottom: 30px;}
  992. dt{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 16px}
  993. dd{@include setFontStyle(-6);color: rgba(0,0,0,0.65);margin-left: 33px;}
  994. 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;}
  995. .government-advantage-content{margin-right: -100px;padding: 4px 0 0 4px;}
  996. }
  997. @media (max-width: 768px) {
  998. // 我们的系统为您改变了什么
  999. .government-change-box{
  1000. background: rgb(238, 238, 238);padding: 0 15px;
  1001. .industrydetails-content{
  1002. height: auto;margin-top: 20px;background-image:unset;position: relative;
  1003. li{
  1004. p{margin-left: 20px}
  1005. }
  1006. img{width:80px;display:block;margin: -60px auto;position: absolute;left: 50%;margin-left: -40px;}
  1007. }
  1008. .change-content-left,.change-content-right{
  1009. width: 100%;box-sizing: border-box;margin-bottom: 20px;
  1010. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1011. i{border-color: #fff;opacity: 1;}
  1012. }
  1013. .change-content-left{background-color: rgb(0, 102, 204);padding: 20px 16px;}
  1014. .change-content-right{background-color: rgb(255, 186, 0);padding: 60px 16px 36px;}
  1015. }
  1016. }
  1017. }
  1018. /******** describe: 金融保险-详情页 author: TX date:2020-09-01 ********/
  1019. .client-finance-page{
  1020. // banner
  1021. .industrydetails-banner{background-color: #593513;}
  1022. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/finance-banner-img.png");}
  1023. // 金融行业的问题
  1024. .finance-question-box{
  1025. background: #F9FAFF;
  1026. padding: 80px 0;
  1027. .finance-question-top{
  1028. width: 946px;height: 104px;background-image: url("~static/images/client/industrydetails/finance-question-bg.png");margin: 0 auto 48px;
  1029. h5{height: 104px;line-height:104px;display: inline-block;@include setFontStyle(10);color: rgba(255,255,255,0.85);padding: 0 56px}
  1030. h5:first-child{margin-right: 180px;color: rgba(0,0,0,0.85);}
  1031. }
  1032. ul{
  1033. 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;
  1034. i{width: 12px;height: 12px;background-image: linear-gradient(90deg, #2B5CFD 0%, #FFFFFF 100%);border-radius: 50%;border:0;transform: rotate(0deg);opacity: 1;}
  1035. p{margin-left: 30px;}
  1036. }
  1037. .finance-question-right{
  1038. border: 1px solid #FF6226;
  1039. i{background-image: linear-gradient(90deg, #FF6226 0%, #FFFFFF 100%);}
  1040. }
  1041. }
  1042. @media (max-width: 768px) {
  1043. .finance-question-box{background-color: rgb(238, 238, 238);padding: 20px 15px 30px;}
  1044. .phone-class-box{
  1045. ul{
  1046. border: 0;width: 100%;margin: 0;padding: 20px 0 0;min-height: unset;
  1047. li{margin-bottom: 10px;}
  1048. i{width: 10px;height: 10px;margin-right: 8px;margin-top: 8px;border: 1px solid #fff;opacity: 1;border-radius:0;
  1049. float: left;box-sizing: border-box;display: block;transform: rotate(45deg);background-image: unset;}
  1050. p{font-size: 14px;color: white;line-height: 24px;margin-left: 20px;text-align: justify;}
  1051. }
  1052. h4{color: #fff;}
  1053. img {width: 130px;display: block;margin: -45px auto;position: absolute;left: 50%;margin-left: -65px;}
  1054. .financial-tradition-phone{background-color: rgb(0, 102, 204);margin: 0 0 20px;padding: 0 16px 20px;}
  1055. .financial-solve-phone{background-color: rgb(247, 109, 0);padding: 40px 16px 36px;}
  1056. }
  1057. }
  1058. }
  1059. /******** describe: 信息产业-详情页 author: TX date:2020-09-02 ********/
  1060. .client-information-page{
  1061. // banner
  1062. .industrydetails-banner{background-color: #070B20;}
  1063. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/information-banner-img.png");}
  1064. // 我们的系统为您改变了什么
  1065. .information-change-box{
  1066. background: #F9FAFF;
  1067. padding-bottom: 80px;
  1068. .industrydetails-content{
  1069. width: 100%;height: 300px;margin-top: 48px;background-image: url("~static/images/client/industrydetails/information-change-bg.png");
  1070. li{
  1071. p{margin-left: 30px;}
  1072. }
  1073. img{display: inline-block;vertical-align: top;margin: 120px 30px auto 70px;}
  1074. }
  1075. .change-content-left{
  1076. display: inline-block;padding: 48px 0 0 64px;vertical-align: top;
  1077. h5,li,li i{color: #fff;border-color: #fff;}
  1078. p{color: rgba(255,255,255,0.65);}
  1079. }
  1080. .change-content-right{width: 500px;display: inline-block;padding-top: 36px;}
  1081. }
  1082. @media (max-width: 768px) {
  1083. // 我们的系统为您改变了什么
  1084. .information-change-box{
  1085. background-color: rgb(238, 238, 238);padding: 0 15px 15px;
  1086. .industrydetails-content{
  1087. height: auto;margin-top: 20px;background-image:unset;position: relative;
  1088. li{
  1089. p{margin-left: 20px}
  1090. }
  1091. img{width:130px;display:block;margin: -45px auto;position: absolute;left: 50%;margin-left: -65px;}
  1092. }
  1093. .change-content-left,.change-content-right{
  1094. width: 100%;box-sizing: border-box;margin-bottom: 20px;
  1095. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1096. i{border-color: #fff;opacity: 1;}
  1097. }
  1098. .change-content-left{background-color: rgb(14, 60, 106);padding: 20px 16px;}
  1099. .change-content-right{background-color: rgb(164, 3, 3);padding: 60px 16px 36px;}
  1100. }
  1101. }
  1102. }
  1103. /******** describe: 能源化工-详情页 author: TX date:2020-09-02 ********/
  1104. .client-energy-page{
  1105. // banner
  1106. .industrydetails-banner{background-color: #073A44;}
  1107. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/energy-banner-img.png");}
  1108. // 我们的系统为您改变了什么
  1109. .energy-change-box{
  1110. background: #F9FAFF;
  1111. padding-bottom: 80px;
  1112. // 模块上半部分
  1113. .change-box-top{
  1114. width: 1100px;height: 247px;padding: 32px 64px;box-sizing: border-box;background: #104644;border-radius: 8px;margin-left: 20px;margin-top: 48px;
  1115. i{border: 1px solid #fff;}
  1116. }
  1117. // 模块下半部分
  1118. .change-box-bottom{
  1119. width: 1100px;height: 368px;padding: 24px;box-sizing: border-box;border-radius: 8px;background: #FE552C;margin-left: 100px;margin-top:-24px;position: relative;
  1120. h5{margin-top: 55px;}
  1121. li:nth-of-type(odd){p{margin-right: 60px}}
  1122. }
  1123. h5{color: rgba(255,255,255,0.85);}
  1124. li{
  1125. width: 50%;display: inline-block;@include setFontStyle(-6);color: rgba(255,255,255,0.65);line-height: 22px;vertical-align: top;
  1126. p{margin-left: 30px;color: rgba(255,255,255,0.65);}
  1127. }
  1128. img{position: absolute;top: -70px;left: 50%;margin-left: -50px;}
  1129. }
  1130. @media (max-width: 768px) {
  1131. // 我们的系统为您改变了什么
  1132. .energy-change-box{
  1133. background-color: rgb(238, 238, 238);padding: 0 15px 15px;
  1134. // 模块上半部分
  1135. .change-box-top{width: 100%;height:auto;padding: 20px 16px;margin:20px 0 20px;border-radius:0;}
  1136. // 模块下半部分
  1137. .change-box-bottom{width: 100%;height:auto;padding: 60px 16px 36px;margin:0 0 20px;border-radius:0;background-color: rgb(255, 115, 5);}
  1138. .change-box-top,.change-box-bottom{
  1139. i{border: 1px solid #fff;opacity: 1;}
  1140. h5{margin-top: 20px;color: #fff;}
  1141. li:nth-of-type(odd){p{margin-right: 0}}
  1142. }
  1143. li{
  1144. width: 100%;display: block;
  1145. p{margin-left: 20px;color: #fff;}
  1146. }
  1147. }
  1148. }
  1149. }
  1150. /******** describe: 交通运输-详情页 author: TX date:2020-09-02 ********/
  1151. .client-traffic-page{
  1152. // banner
  1153. .industrydetails-banner{background-color: #0A2F41;}
  1154. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/traffic-banner-img.png");}
  1155. // 我们的系统为您改变了什么
  1156. .traffic-change-box{
  1157. background: #F9FAFF;
  1158. padding-bottom: 80px;
  1159. .change-content-left,.change-content-right{
  1160. width: 462px;height: 359px;display:inline-block;background-repeat: no-repeat;vertical-align: top;margin-top: 48px;
  1161. h5{height: 58px;line-height: 58px;color: rgba(255,255,255,0.85);}
  1162. ul{margin-top: 80px;margin-left: 32px;}
  1163. i{width:12px;height:12px;border-radius:50%;border: 1px solid #1276FF;margin-top: 5px;}
  1164. }
  1165. .change-content-left{background-image: url("~static/images/client/industrydetails/traffic-left-bg.png");margin-right: 104px;}
  1166. .change-content-right{background-image: url("~static/images/client/industrydetails/traffic-right-bg.png");}
  1167. }
  1168. @media (max-width: 768px) {
  1169. // 我们的系统为您改变了什么
  1170. .traffic-change-box{
  1171. background-color: rgb(238, 238, 238);padding: 0 15px 30px;
  1172. .change-content-left,.change-content-right{
  1173. width: 100%;height: unset;margin:0;box-sizing: border-box;
  1174. ul{margin: 0;}
  1175. h5{height: unset;line-height: unset;@include setFontStyle(-4);color: rgba(255, 255, 255, 1);margin-bottom: 16px;text-align: center;font-weight: 700;}
  1176. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1177. i{width: 10px;height: 10px;border-color: #fff;opacity: 1;border-radius: 0;}
  1178. }
  1179. .change-content-left{background-color: rgb(31, 104, 176);padding: 20px 16px;background-image:unset;margin: 20px 0;}
  1180. .change-content-right{background-color: rgb(234, 118, 27);padding: 20px 16px;background-image:unset;}
  1181. }
  1182. }
  1183. }
  1184. /******** describe: 教育行业-详情页 author: TX date:2020-09-02 ********/
  1185. .client-education-page{
  1186. // banner
  1187. .industrydetails-banner{background-color: #085903;}
  1188. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/education-banner-img.png");}
  1189. // 我们的系统为您改变了什么
  1190. .education-change-box{
  1191. background: #F9FAFF;padding-bottom: 80px;
  1192. img{position: absolute;top: 50%;margin-top: -78px;left:50%;margin-left: -54px;}
  1193. .industrydetails-content{position: relative;}
  1194. .change-content-left,.change-content-right{height: 338px;box-sizing: border-box;}
  1195. .change-content-left{width: 637px;float:left;padding:32px 48px;background-image: url("~static/images/client/industrydetails/education-left-bg.png");}
  1196. .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;}
  1197. }
  1198. @media (max-width: 768px) {
  1199. .education-change-box{
  1200. background-color: rgb(238, 238, 238);padding: 0 15px 30px;
  1201. img{width:100px;margin: -105px auto;margin-left: -50px;}
  1202. .mt48{margin-top: 20px;}
  1203. .change-content-left,.change-content-right{
  1204. width: 100%;height:unset;box-sizing: border-box;margin-bottom: 20px;background-image: unset;float: unset;margin: 0 0 20px;
  1205. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1206. i{border-color: #fff;opacity: 1;}
  1207. }
  1208. .change-content-left{background-color: rgb(50, 159, 132);padding: 20px 16px 52px;}
  1209. .change-content-right{background-color: rgb(249, 163, 97);padding: 60px 16px 16px;}
  1210. }
  1211. }
  1212. }
  1213. /******** describe: 食品餐饮-详情页 author: TX date:2020-09-03 ********/
  1214. .client-restaurant-page{
  1215. // banner
  1216. .industrydetails-banner{background-color: #1C1E21;}
  1217. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/restaurant-banner-img.png");}
  1218. // 我们的系统为您改变了什么
  1219. .restaurant-change-box{
  1220. background: #F9FAFF;
  1221. padding-bottom: 80px;
  1222. .industrydetails-content{
  1223. position: relative;
  1224. img{position: absolute;top:50%;left: 50%;margin-top: -40px;margin-left: -45px;}
  1225. }
  1226. .change-content-left,.change-content-right{
  1227. width: 552px;height: 328px;display:inline-block;background-repeat: no-repeat;vertical-align: top;
  1228. h5{height: 58px;line-height: 58px;color: rgba(255,255,255,0.85);}
  1229. ul{margin-top: 32px;margin-left: 48px;}
  1230. }
  1231. .change-content-left{background-image: url("~static/images/client/industrydetails/restaurant-left-bg.png");margin-right: 90px;}
  1232. .change-content-right{background-image: url("~static/images/client/industrydetails/restaurant-right-bg.png");}
  1233. }
  1234. @media (max-width: 768px) {
  1235. // 我们的系统为您改变了什么
  1236. .restaurant-change-box{
  1237. background-color: rgb(238, 238, 238);padding: 0 15px 30px;
  1238. .mt48{margin-top: 20px;}
  1239. .industrydetails-content img{margin-top: -85px;}
  1240. .change-content-left,.change-content-right{
  1241. width: 100%;height:unset;box-sizing: border-box;margin-bottom: 20px;background-image: unset;float: unset;margin: 0 0 20px;
  1242. ul{margin: 0;}
  1243. h5{height: unset;line-height: unset;color: #fff;}
  1244. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1245. i{border-color: #fff;opacity: 1;}
  1246. }
  1247. .change-content-left{background-color: rgb(240, 112, 112);padding: 20px 16px;}
  1248. .change-content-right{background-color: rgb(255, 207, 78);padding: 60px 16px 16px;}
  1249. }
  1250. }
  1251. }
  1252. /******** describe: 医疗卫生-详情页 author: TX date:2020-09-03 ********/
  1253. .client-medical-page{
  1254. // banner
  1255. .industrydetails-banner{background-color: #2178E0;}
  1256. .industrydetails-banner-box{background-image: url("~static/images/client/industrydetails/medical-banner-img.png");}
  1257. // 我们的系统为您改变了什么
  1258. .medical-change-box{
  1259. background: #F9FAFF;
  1260. padding-bottom: 80px;
  1261. .industrydetails-content{width: 1200px;height: 316px;background-image: url("~static/images/client/industrydetails/medical-change-bg.png");}
  1262. .change-content-left,.change-content-right{
  1263. width: 500px;display:inline-block;vertical-align: top;
  1264. ul{margin-left: 48px;}
  1265. h5{margin-top: 36px;color: rgba(255,255,255,0.85);}
  1266. p{color: rgba(255,255,255,0.65);}
  1267. i{border-color: #fff;}
  1268. }
  1269. .change-content-left{margin-right: 180px;}
  1270. }
  1271. @media (max-width: 768px) {
  1272. .medical-change-box{
  1273. background-color: rgb(238, 238, 238);padding: 0 15px 30px;
  1274. .industrydetails-content{width: 100%;height: unset;background-image:unset;}
  1275. .mt48{margin-top: 20px;}
  1276. .change-content-left,.change-content-right{
  1277. width: 100%;height:unset;box-sizing: border-box;margin-bottom: 20px;background-image: unset;float: unset;margin: 0 0 20px;
  1278. ul{margin: 0;}
  1279. h5{height: unset;line-height: unset;color: #fff;margin-top: 0;}
  1280. p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;}
  1281. i{border-color: #fff;opacity: 1;}
  1282. }
  1283. .change-content-left{background-color: rgb(31, 104, 176);padding: 20px 16px;}
  1284. .change-content-right{background-color: rgb(234, 118, 27);padding: 20px 16px;}
  1285. }
  1286. }
  1287. }
  1288. /******** describe: 1-X-详情页 author: TX date:2020-09-03 ********/
  1289. .client-indexEducation-page{
  1290. padding-bottom: 80px;
  1291. .client-platform-new-banner{
  1292. .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;
  1293. position: absolute;top: 330px;left: 50%;margin-left: -150px;}
  1294. .client-default-white-Btn{background: transparent;border-color: #0a86fe;color:#fff;left: 50%;margin-left: 30px;}
  1295. }
  1296. @media (max-width: 768px){
  1297. padding-bottom: 15px;
  1298. .client-platform-new-banner{
  1299. .client-default-Btn,.client-default-white-Btn{width: 122px;height: 35px;line-height: 35px;top: 105px;margin-left: -130px}
  1300. .client-default-white-Btn{left: 50%;margin-left: 10px;}
  1301. }
  1302. }
  1303. }
  1304. /******** describe: 课程资源 author: TX date:2020-09-03 ********/
  1305. .client-resources-page{
  1306. // 图标列表
  1307. .train-scheme-list{
  1308. margin: 54px -24px 0;
  1309. li{width: 25%;display: inline-block;text-align: center}
  1310. i{width: 100px;height: 100px;display: block;margin: 0 auto;}
  1311. span{@include setFontStyle(-4);color: #333;margin-top: 10px;display: block;}
  1312. div{box-shadow: 0 0 7px 2px #f5f2ff;margin: 24px;padding: 42px 0;}
  1313. li:nth-child(1) i{background-image: url("~static/images/client/resources/train-scheme-icon1.png")}
  1314. li:nth-child(2) i{background-image: url("~static/images/client/resources/train-scheme-icon2.png")}
  1315. li:nth-child(3) i{background-image: url("~static/images/client/resources/train-scheme-icon3.png")}
  1316. li:nth-child(4) i{background-image: url("~static/images/client/resources/train-scheme-icon4.png")}
  1317. li:nth-child(5) i{background-image: url("~static/images/client/resources/train-scheme-icon5.png")}
  1318. li:nth-child(6) i{background-image: url("~static/images/client/resources/train-scheme-icon6.png")}
  1319. li:nth-child(7) i{background-image: url("~static/images/client/resources/train-scheme-icon7.png")}
  1320. li:nth-child(8) i{background-image: url("~static/images/client/resources/train-scheme-icon8.png")}
  1321. }
  1322. // 为企业培训打造学习矩阵
  1323. .products-services-content p{line-height: 52px;}
  1324. // 蓝色提醒文字
  1325. .blue-big-size{
  1326. font-size: 26px;color: #3e7ce7;padding: 0 5px;
  1327. }
  1328. // 课程内容形式多样
  1329. .course-learn-box{
  1330. background: #f9faff;
  1331. // video列表
  1332. .learn-box-list{
  1333. margin: 54px -16px 0;
  1334. li{
  1335. width: 33.33%;display: inline-block;
  1336. a{display: none;}
  1337. div{background: #fff;border-radius: 8px;margin: 0 16px 40px;box-shadow: 0 0 7px 2px #f5f2ff;}
  1338. span{width:342px;height:192px;display: inline-block;margin-top: 16px;border-radius:4px;overflow: hidden;position: relative}
  1339. i{width: 48px;height: 48px;cursor: pointer;background-image: url("~static/images/client/course/course-video-icon.svg");display: inline-block;position: absolute;
  1340. left: 50%;margin-left: -24px;z-index: 5;top: 50%;margin-top: -24px;background-size: cover;background-position: bottom;transition: all 0.5s;}
  1341. img{transition: all 0.5s;}
  1342. p{@include setFontStyle(-4);color: #3e7ce7;padding: 24px 16px 16px;text-align: left}
  1343. .course-explain-black{@include setFontStyle(-4);color: #333;line-height: 24px;padding: 0 16px 24px;}
  1344. }
  1345. li span:hover{img{transform: scale(1.1);}}
  1346. li i:hover{background-image: url("~static/images/client/course/course-video-icon-a.svg");background-size: cover;background-position: bottom;}
  1347. }
  1348. }
  1349. // banner背景色
  1350. .client-platform-banner{background-color: #03022e;}
  1351. // 新闻资讯
  1352. .platform-news-information{background: #fff;}
  1353. // 按钮
  1354. .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;}
  1355. .client-default-white-Btn{background: #fff;color:#3e7ce7;margin-right: 0 }
  1356. @media (max-width: 768px){
  1357. // 图标列表
  1358. .train-scheme-list{
  1359. margin: 12px 16px 36px;
  1360. li{
  1361. width: 50%;
  1362. i{width: 70px;height: 70px;background-size: cover;}
  1363. div{margin: 6px;padding: 24px 0;}
  1364. }
  1365. }
  1366. // 为企业培训打造学习矩阵
  1367. .products-services-content p{font-size: 14px;line-height: 40px;text-align: center;color: #101010;}
  1368. // 蓝色提醒文字
  1369. .blue-big-size{font-size: 18px;}
  1370. // 按钮box
  1371. .default-Btn-box{text-align: center}
  1372. // 视频列表
  1373. .course-learn-box{
  1374. margin:0;background-color: rgb(238, 238, 238);
  1375. .client-container {padding: 0 15px;}
  1376. .learn-box-list{
  1377. margin: 20px 0;
  1378. li {
  1379. width: 100%;
  1380. div{box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px -1px;border-radius:0;margin: 0 16px;}
  1381. span {width: 100%;height: 180px;margin-top: 0;border-radius: 0;}
  1382. img {max-width: 100%;}
  1383. p {font-size: 14px;padding: 16px 0;text-align: center;}
  1384. .course-explain-black{font-size: 14px;text-align: left;padding: 0 16px 20px;}
  1385. }
  1386. }
  1387. }
  1388. // 按钮
  1389. .client-default-Btn,.client-default-white-Btn{width: 122px;height: 35px;line-height: 35px;margin:0 8px 42px;}
  1390. }
  1391. }
  1392. /******** describe: 考试系统更新日志 author: TX date:2020-09-03 ********/
  1393. .client-checklog-page{
  1394. // banner
  1395. .client-checklog-banner{
  1396. width: 100%;height: 300px;background-color: rgb(0, 102, 204);text-align: center;
  1397. h4{font-size: 56px;color: rgba(255, 255, 255, 1);font-weight: bold;padding-top: 64px;}
  1398. p{font-size: 28px;color: rgb(255, 255, 255);padding-top: 24px;}
  1399. }
  1400. // 数据展示
  1401. .log-data-show{
  1402. height: 200px;
  1403. border-color: rgb(187, 187, 187);
  1404. border-width: 1px;
  1405. border-style: solid;
  1406. box-shadow: rgb(121, 188, 255) 0px 2px 6px 0px;
  1407. border-radius: 10px;
  1408. padding: 24px;
  1409. box-sizing: border-box;
  1410. display: flex;
  1411. justify-content: space-evenly;
  1412. margin-top: -64px;
  1413. background: #fff;
  1414. div{
  1415. display: inline-block;text-align: center;
  1416. span{font-size: 24px;color: rgba(39, 137, 221, 1);font-weight: bold;padding-top: 32px;display: inline-block;}
  1417. p{font-size: 54px;color: rgba(39, 137, 221, 1);font-weight: bold;padding-top: 10px;}
  1418. }
  1419. i{width: 1px;height: 150px;background: lightgray;display: inline-block;}
  1420. }
  1421. // 日志内容
  1422. .log-content-box{
  1423. margin: 52px auto 100px;color: rgb(16, 16, 16);
  1424. li{
  1425. color: rgb(16, 16, 16);border-bottom: 1px dashed #ccc;padding: 0 88px;
  1426. h5{font-size: 18px;margin: 14px 0;font-weight: bold;}
  1427. span{font-size: 18px;margin-bottom: 14px;display: block;font-weight: bold;}
  1428. div{margin-bottom: 14px;}
  1429. i{width: 12px;height: 1px;display: inline-block;background: #bbb;vertical-align: top;margin: 10px 6px 10px 0;}
  1430. p{width: 1000px;font-size: 16px;display: inline-block;vertical-align: middle;line-height: 24px;color: #000;text-align: justify}
  1431. }
  1432. li:last-child{border: 0;}
  1433. }
  1434. }
  1435. /******** describe: 体验中心 author: TX date:2021-06-09 ********/
  1436. .tiyan-center-page{
  1437. .tiyan-center-register{
  1438. background: #3776ff;text-align: center;padding: 52px 0;margin-top: 70px;
  1439. h5{font-size: 42px;color: #fff;margin: 24px 0;}
  1440. p{font-size: 32px;color: #fff;margin-bottom: 52px;}
  1441. span{font-size: 52px;color: #ffff00}
  1442. a{width: 355px;height: 60px;line-height: 60px;text-align: center;background: #ff4d4d;border-radius: 4px;display: inline-block;color: #fff;}
  1443. }
  1444. @media (max-width: 768px){
  1445. /* 网站banner */
  1446. .client-platform-banner div{background-position-x: 42%;}
  1447. .experience-swiper-box .swiper-pagination-style {width: 80px;margin-left: -30px;}
  1448. }
  1449. }
  1450. // 立即注册弹窗
  1451. .register-now-dialog{
  1452. .el-dialog{
  1453. width:540px;
  1454. // 关闭图标
  1455. .el-icon-close:before{color: #fff}
  1456. // 弹窗头部
  1457. .el-dialog__header{height: 100px;background: #363fdc;}
  1458. // 弹窗body
  1459. .el-dialog__body{
  1460. height:200px;position: relative;background: #fff;
  1461. .register-now-box{
  1462. position: absolute;top: -100px;left: 0;right: 0;
  1463. >p{font-size: 18px;color: #fff;text-align: center;line-height: 24px;margin-bottom: 8px}
  1464. >span{
  1465. margin-top: 36px;color: #666;font-size: 16px;display: block;text-align: center;
  1466. .tel-code{font-size: 30px;color:#1f68b4;font-weight: bold;}
  1467. }
  1468. }
  1469. }
  1470. .system-box{
  1471. 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;
  1472. a{
  1473. display: inline-block;
  1474. i{width: 158px;height: 120px;display: block;background-size: cover;}
  1475. }
  1476. span{width: 1px;min-height: 100px;display:inline-block;background:#e8e8e8;@include setFontStyle(-4);margin: 10px;}
  1477. p{@include setFontStyle(-4);color: rgba(0,0,0,0.85);line-height: 24px;text-align: center;}
  1478. }
  1479. .system-box:nth-child(1){i{background-image:url("~static/images/client/exam/product-function-icon3.png");} }
  1480. .system-box:nth-child(3){i{background-image:url("~static/images/client/train/product-function-icon6.png");} }
  1481. }
  1482. }
  1483. // 系统维护弹窗
  1484. .system-maintain-dialog{
  1485. .el-dialog{width: 540px;height: 380px;background-image:url("~static/images/client/tiyanCenter/ty-dialog-bj.jpg");}
  1486. }
  1487. /******** describe: 课程开发解决方案 author: TX date:2021-08-06 ********/
  1488. .course-develop-page{
  1489. // 标题
  1490. .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;}
  1491. // form
  1492. .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;}
  1493. // 滑块px
  1494. .nc-container{
  1495. overflow: hidden;height: 52px;
  1496. .nc_wrapper{width:100%!important;margin-bottom: 22px;border-radius: 5px;overflow: hidden;}
  1497. .nc_scale{
  1498. height: 30px;
  1499. .scale_text{overflow: hidden;line-height: 30px;}
  1500. span{width:40px;height: 30px;line-height: 30px;border-radius: 5px;border: 1px solid rgb(187, 187, 187);box-sizing: border-box;overflow: hidden}
  1501. }
  1502. .btn_ok{margin-left: -1px;}
  1503. }
  1504. // 输入框-验证码
  1505. .course-develop-input-code{width: calc(100% - 122px);}
  1506. .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;}
  1507. // 公司名称
  1508. .dialog-input-company{
  1509. .el-form-item__content{display: grid;}
  1510. }
  1511. // 表单按钮
  1512. .form-blue-btn,.form-border-btn{
  1513. 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;
  1514. }
  1515. .form-blue-btn{background-color: rgb(0, 102, 204);border-color:rgb(0, 102, 204);}
  1516. .form-border-btn{display:block;border-color:rgb(0, 102, 204);color:rgb(0, 102, 204);margin-top: 20px; }
  1517. // 咨询电话
  1518. .course-develop-tel{display:block;text-align: center;margin: 60px 0;font-weight: 700;@include setFontStyle(-2);color: #101010;}
  1519. // 产品
  1520. .dialog-input-company{text-align: center;padding: 0;}
  1521. }
  1522. /******** describe: 注册页面--手机 author: TX date:2021-08-06 ********/
  1523. .register-phone-page{
  1524. // 标题
  1525. .course-develop-title{font-size: 20px;}
  1526. // 咨询电话
  1527. .course-develop-tel{margin: 46px 0;}
  1528. }
  1529. /******** describe: 复制路径页面--手机 author: TX date:2021-08-06 ********/
  1530. .copy-url-page{
  1531. background: #fff;height: 100vh;
  1532. // 底部
  1533. .success-body-box{
  1534. img{max-width: 100%;padding: 30px;box-sizing: border-box;}
  1535. p{font-weight: 700;font-size: 20px;color: rgb(31, 104, 176);text-align: center;margin: 4px 0;}
  1536. 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;}
  1537. a{width: 122px;height: 36px;line-height:36px;background-color: rgb(234, 118, 27);color: rgb(255, 255, 255);
  1538. border-radius: 5px;font-size: 14px;display: block;margin: 0 auto;text-align: center}
  1539. }
  1540. }
  1541. /******** describe: 企业微课制作 author: TX date:2021-09-13 ********/
  1542. .client-makeCourse-page{
  1543. .client-platform-banner{
  1544. background-color: #22252A;
  1545. .free-trial-default-btn{background: #f76377}
  1546. }
  1547. // 按钮
  1548. .btn-big-box{width: 263px;margin: 50px auto 0;display: block;text-align: center;}
  1549. // 页面标题
  1550. .make-course-title {width: 100%;font-size: 24px;font-weight: normal;margin-bottom: 35px;padding-left: 10px;color: #333;text-align: center}
  1551. .course-blue-title{color: #3E7BE6;}
  1552. // 页面文字
  1553. .make-course-h2{
  1554. width: 100%;text-align: center;padding: 40px 0;border-bottom: 1px solid #CCC;
  1555. img{max-width: 100%;}
  1556. }
  1557. // 基本介绍
  1558. .makeCourse-introduce-box{
  1559. margin: 64px 0;
  1560. dl {
  1561. width: 580px;float: left;padding-top: 100px;padding-left: 20px;
  1562. h3{text-align: left}
  1563. dt {width: 100%;font-size: 18px;font-weight: normal;margin-bottom: 35px;color: #333;padding-left: 10px;}
  1564. }
  1565. }
  1566. .contrary-introduce-box{
  1567. margin-bottom: 88px;
  1568. dl {
  1569. width: 480px;float: right;padding-top: 0;height: 350px;
  1570. dt {margin-bottom: 20px;}
  1571. dd{margin-top: 35px;}
  1572. }
  1573. }
  1574. // 课程目标
  1575. .course-target-box{
  1576. background: #F8F8F8;padding: 42px 0;
  1577. li{
  1578. width: 20%;display: inline-block;
  1579. div{text-align: center;background: #fff;margin: 5px;padding: 24px 0;}
  1580. img{height: 100px;margin-bottom: 24px;}
  1581. span{text-align: center;font-size: 18px;color: #333;display: block}
  1582. }
  1583. }
  1584. // 培训讲师介绍
  1585. .px-teacher-box{
  1586. margin: 60px 0;
  1587. .teacher-content-box{display: flex;justify-content: space-between;align-items: center;}
  1588. span{display: block;font-size: 18px;color: #333;text-align: center;}
  1589. p{margin-left: 70px;line-height: 50px;}
  1590. .btn-big-box{margin-top: 32px;}
  1591. }
  1592. // 课程体系
  1593. .course-system-box{
  1594. padding: 32px 0;
  1595. .course-system-img{margin-bottom: 40px;max-width: 100%;}
  1596. img{max-width: 100%;}
  1597. }
  1598. // 微课设计
  1599. .course-learn-box{
  1600. padding: 64px 0;
  1601. .learn-box-list li div{margin: 0 16px 0;}
  1602. }
  1603. // 报名学习
  1604. .sign-study-box{
  1605. width: 100%;
  1606. .study-gj-box{width: 100%;height: 298px;background-image:url("~static/images/client/makeCourse/sign-study-bj.png");
  1607. margin-top: 20px;border-radius: 8px;bottom: -20px;position: relative;}
  1608. .sign-study-content{
  1609. position: absolute;bottom: 74px;font-size: 0;left: 76px;
  1610. .el-input{
  1611. width: 400px;font-size: 16px;
  1612. .el-input__inner{height: 64px;display: inline-block;border-radius: 0;font-size: 16px}
  1613. .el-input__inner::-webkit-input-placeholder { /* WebKit browsers */
  1614. font-size: 16px;
  1615. }
  1616. .el-input__inner::-moz-placeholder { /* Mozilla Firefox 19+ */
  1617. font-size: 16px;
  1618. }
  1619. .el-input__inner:-ms-input-placeholder { /* Internet Explorer 10+ */
  1620. font-size: 16px;
  1621. }
  1622. }
  1623. .el-button{width:150px;height:64px;display: inline-block;margin-left: -1px;font-size: 16px}
  1624. }
  1625. }
  1626. @media (max-width: 768px) {
  1627. // 按钮
  1628. .client-default-Btn{width: 120px;height: 35px;line-height: 35px;margin: 32px auto 0;}
  1629. // 页面标题
  1630. .make-course-title {font-size: 16px;margin-bottom: 16px;color: #3E7BE6;padding-left: 0;font-weight: bold;}
  1631. // 页面文字
  1632. .make-course-h2{
  1633. padding: 32px 0;
  1634. }
  1635. // 基本介绍
  1636. .makeCourse-introduce-box{
  1637. margin: 32px 0;
  1638. img{max-width: 100%;display: block;margin: 0 auto;}
  1639. dl {
  1640. width: 100%;float: unset;padding: 24px 10px;box-sizing: border-box;text-align: center;
  1641. h3{text-align: center;}
  1642. dt {font-size: 14px;margin-bottom: 16px;color: #555555;padding-left: 0;line-height: 24px}
  1643. }
  1644. }
  1645. .contrary-introduce-box{
  1646. dl {
  1647. width: 100%;float: unset;padding: 24px 10px;box-sizing: border-box;text-align: center;height: unset;
  1648. dt {margin-bottom: 4px;}
  1649. }
  1650. }
  1651. // 课程目标
  1652. .course-target-box{
  1653. background: #F8F8F8;padding: 16px 0 32px;
  1654. h3{font-size: 18px;color: #333;margin: 12px 0;text-align: center}
  1655. ul{text-align: center;}
  1656. li{
  1657. width: 33.33%;
  1658. div{margin: 6px;padding: 16px 0;}
  1659. img{height: 40px;margin-bottom: 10px;}
  1660. span{font-size: 16px;color: #333;}
  1661. }
  1662. .btn-big-box{margin-top: 50px;}
  1663. }
  1664. // 培训讲师介绍
  1665. .px-teacher-box{
  1666. margin: 32px 0;
  1667. .teacher-img-box{
  1668. width: 80px;padding: 0;box-sizing: border-box;flex-shrink: 0;
  1669. img{width: 80px;display: inline-block;vertical-align: middle;}
  1670. }
  1671. .teacher-content-box{display: flex;justify-content: space-between;}
  1672. span{font-size: 16px;margin: 10px 0;}
  1673. p{font-size: 14px;line-height: 24px;margin: 10px 12px;text-align: justify;}
  1674. .btn-big-box{margin-top: 32px;}
  1675. }
  1676. // 微课设计
  1677. .course-learn-box{
  1678. padding: 32px 0;
  1679. .client-container{padding: 0}
  1680. .learn-box-list li div{margin: 0}
  1681. }
  1682. // 报名学习
  1683. .sign-study-box{
  1684. background: #3776ff;
  1685. .client-container{padding: 0;}
  1686. .study-gj-box{height:180px;background-image:url("~static/images/client/makeCourse/sign-study-sjBj.png");background-size: contain;background-repeat: no-repeat;
  1687. bottom: 0;border-radius: 0;background-position: center;}
  1688. .sign-study-content{
  1689. bottom: 40px;left: 40px;right: 40px;
  1690. .el-input{
  1691. width: 68%;font-size: 14px;vertical-align: middle;
  1692. .el-input__inner{height: 38px;font-size: 14px}
  1693. .el-input__inner::-webkit-input-placeholder { /* WebKit browsers */
  1694. font-size: 14px;
  1695. }
  1696. .el-input__inner::-moz-placeholder { /* Mozilla Firefox 19+ */
  1697. font-size: 14px;
  1698. }
  1699. .el-input__inner:-ms-input-placeholder { /* Internet Explorer 10+ */
  1700. font-size: 14px;
  1701. }
  1702. }
  1703. .el-button{width:32%;height:38px;font-size: 14px;border-radius: 2px;vertical-align: middle; padding: 0;}
  1704. }
  1705. }
  1706. }
  1707. }
  1708. /**************** describe:城市合作商 author: TX date:2022-09-22 ****************/
  1709. .urban-partners-page{
  1710. // 标题
  1711. .urban-partners-title{
  1712. font-size: 36px;color: #3b3838;text-align: center;font-weight: 700;
  1713. }
  1714. // banner
  1715. .urban-partners-banner{
  1716. width:100%;height: 514px;background-position: center;position: relative;
  1717. background-image:url("~static/images/client/urbanPartners/urban-partners-banner-pc.png");
  1718. span{
  1719. width: 222px;height: 58px;line-height:58px;display: inline-block;font-size: 24px;
  1720. background: #f5f5f5;border-radius: 10px;color: #1d1ab2;position: absolute;left: 50%;
  1721. transform: translateX(-50%);bottom: 126px;text-align: center;cursor: pointer;
  1722. }
  1723. }
  1724. // 携手栋科软件
  1725. .xs-dk-box{
  1726. width: 100%;height: 386px;padding-top: 105px;box-sizing: border-box;
  1727. background-image:url("~static/images/client/urbanPartners/xs-dk-bj.png");
  1728. background-position: center;background-size: cover;
  1729. ul{display: flex;margin-top: 82px;justify-content: space-around;}
  1730. li{font-size: 22px;text-align: center;}
  1731. span{color: #0165CD;font-size: 36px;font-family: 'Din';padding: 0 4px;}
  1732. }
  1733. // 私有化部署
  1734. .syh-bs-box{
  1735. background: #F9F9F9;padding: 70px 0 114px;
  1736. // 布局
  1737. .syh-bs-card{
  1738. display: flex;
  1739. >div{width: 50%;}
  1740. >div +div{margin-left: 50px;}
  1741. }
  1742. // 头部
  1743. .syh-bs-head{
  1744. h4{font-size: 36px;font-weight: 700;color: #3b3838;text-align: center}
  1745. i{
  1746. width:313px;height:35px;display: block;margin: 12px auto;
  1747. background-image:url("~static/images/client/urbanPartners/tree-branch-icon.png");}
  1748. }
  1749. // 内容区域
  1750. .syh-bs-body{
  1751. display: flex;margin: 0 -25px;
  1752. li{width: 50%;}
  1753. div{height:352px;margin: 0 25px;background: #fff;border: 1px solid #d0d0d0;border-radius: 10px;}
  1754. i{width: 83px;height: 80px;display: block;margin: 56px auto 0;}
  1755. h5{font-size: 20px;font-weight: 700;color: #3b3838;text-align: center;margin: 36px 0 24px;}
  1756. p{width:82%;font-size: 18px;font-weight: 400;color: #3b3838;display: flex;
  1757. line-height: 28px;margin: 0 auto;text-align: justify;}
  1758. p:before{
  1759. content: '';width: 6px;height: 6px;background: #1d3ac3;border-radius: 50%;
  1760. flex-shrink: 0;margin: 10px 12px 0 0;
  1761. }
  1762. li:nth-child(1) i{background-image:url("~static/images/client/urbanPartners/syh-bs-icon1.png");}
  1763. li:nth-child(2) i{background-image:url("~static/images/client/urbanPartners/syh-bs-icon1.png");}
  1764. li:nth-child(3) i{background-image:url("~static/images/client/urbanPartners/syh-bs-icon1.png");}
  1765. li:nth-child(4) i{background-image:url("~static/images/client/urbanPartners/syh-bs-icon1.png");}
  1766. }
  1767. }
  1768. // 合作优势
  1769. .hz-ys-box{
  1770. background-color: #fff;padding: 94px 0 120px;font-size: 0;
  1771. h5{font-size: 24px;color: #3b3838;text-align: center;margin: 24px 0 75px;}
  1772. .hz-ys-card{
  1773. width: 48%;display: inline-block;border: 1px solid #2a63c6;padding: 35px 48px 35px 78px;
  1774. border-radius: 10px;box-sizing: border-box;
  1775. p{display: flex;font-size: 20px;font-weight: 500;margin-bottom: 32px;
  1776. color: #3b3838;line-height: 64px;}
  1777. p:last-child{margin-bottom: 0;}
  1778. i{width: 64px;height: 64px;display: block;margin-right: 44px;}
  1779. }
  1780. .hz-ys-card +.hz-ys-card{margin-left: 4%;}
  1781. .card-left p:nth-child(1) i{background-image:url("~static/images/client/urbanPartners/hz-ys-icon1.png");}
  1782. .card-left p:nth-child(2) i{background-image:url("~static/images/client/urbanPartners/hz-ys-icon2.png");}
  1783. .card-left p:nth-child(3) i{background-image:url("~static/images/client/urbanPartners/hz-ys-icon3.png");}
  1784. .card-right p:nth-child(1) i{background-image:url("~static/images/client/urbanPartners/hz-ys-icon4.png");}
  1785. .card-right p:nth-child(2) i{background-image:url("~static/images/client/urbanPartners/hz-ys-icon5.png");}
  1786. .card-right p:nth-child(3) i{background-image:url("~static/images/client/urbanPartners/hz-ys-icon6.png");}
  1787. }
  1788. // 合作条件
  1789. .hz-tj-box{
  1790. width: 100%;height: 651px;padding: 128px 0 124px;box-sizing: border-box;
  1791. background-image:url("~static/images/client/urbanPartners/hz-tj-bj.png");background-repeat: no-repeat;
  1792. background-position: center;
  1793. .hz-yj-body{
  1794. display: flex;margin: 100px -12px 0;
  1795. li{width: 25%;}
  1796. div{height: 267px;display: block;background: #fff;border-radius: 10px;margin: 0 12px;overflow: hidden;}
  1797. div:before{content: '';width:100%;height: 10px;display: block;
  1798. background: linear-gradient(89deg,#2739f6 0%, #5bbaf9 100%);}
  1799. p{
  1800. font-size: 26px;font-weight: 500;text-align: center;color: #2a63c6;margin-top: 70px;
  1801. }
  1802. span{
  1803. font-size: 18px;font-weight: 400;text-align: center;color: #3b3838;line-height: 30px;
  1804. margin-top: 30px;display: block;
  1805. }
  1806. }
  1807. }
  1808. // 申请城市合作商弹窗
  1809. .apply-collaborate-dialog{
  1810. .el-dialog{width: 480px;border-radius: 8px;}
  1811. .el-dialog__header{display: none;}
  1812. .el-dialog__body{padding:0 48px 38px;}
  1813. // 弹窗标题
  1814. h4{
  1815. font-size: 28px;font-weight: 700;color: #2a63c6;
  1816. padding: 36px 0 40px;text-align: center;
  1817. }
  1818. // 按钮
  1819. .apply-dialog-btn{
  1820. width: 180px;height: 54px;
  1821. line-height: 54px;background: #2a63c6;border-radius: 6px;
  1822. font-size: 20px;color: #fff;text-align: center;margin: 0 auto;
  1823. }
  1824. }
  1825. // 合作商申请流程
  1826. .sq-lc-box{
  1827. padding: 90px 0 44px;
  1828. // 内容区域
  1829. .sq-lc-body{
  1830. display: flex;justify-content: space-between;margin-top: 83px;border-bottom: 1px dashed #d0d0d0;padding-bottom: 24px;
  1831. i{width: 91px;height: 91px;display: block;margin-bottom: 18px;}
  1832. span{
  1833. font-size: 22px;font-weight: 400;text-align: center;color: #3b3838;
  1834. }
  1835. li{position: relative}
  1836. li:nth-child(1) i{background-image:url("~static/images/client/urbanPartners/sq-lc-icon1.png");}
  1837. li:nth-child(2) i{background-image:url("~static/images/client/urbanPartners/sq-lc-icon2.png");}
  1838. li:nth-child(3) i{background-image:url("~static/images/client/urbanPartners/sq-lc-icon3.png");}
  1839. li:nth-child(4) i{background-image:url("~static/images/client/urbanPartners/sq-lc-icon4.png");}
  1840. li:nth-child(5) i{background-image:url("~static/images/client/urbanPartners/sq-lc-icon5.png");}
  1841. li:nth-child(6) i{background-image:url("~static/images/client/urbanPartners/sq-lc-icon6.png");}
  1842. li:after{
  1843. content: '';width: 8px;height: 8px;background: #898989;display: block;border-radius: 50%;
  1844. position: absolute;bottom: -28px;left: 50%;transform: translateX(-50%);
  1845. }
  1846. }
  1847. // 二维码区域
  1848. .two-code-box{
  1849. i{width: 115px;height: 115px;display: block;margin: 60px auto 20px;
  1850. background-image:url("~static/images/client/urbanPartners/zs-qd-code.png");}
  1851. p{
  1852. font-size: 20px;font-weight: 400;text-align: center;color: #3b3838;
  1853. }
  1854. a{
  1855. width: 205px;height: 52px;line-height:52px;background: #2a63c6;border-radius: 6px;cursor: pointer;
  1856. font-size: 24px;font-weight: 400;text-align: center;color: #e6e8ef;display: block;margin: 20px auto;
  1857. }
  1858. }
  1859. }
  1860. // 优秀合作伙伴真实评价
  1861. .zs-pj-box{
  1862. background-color: #F9F9F9;padding: 100px 0 70px;
  1863. ul{display: flex;margin: 70px 0 0;justify-content: space-between;}
  1864. li{
  1865. width: 366px;height:420px;border-radius: 4px;background-color: #fff;overflow: hidden;
  1866. i{width:367px;height:196px;display: block;}
  1867. h5{
  1868. font-size: 20px;font-weight: 700;text-align: justify;
  1869. color: #3b3838;line-height: 24px;margin: 30px 24px 0;
  1870. }
  1871. p{
  1872. font-size: 16px;font-weight: 400;text-align: justify;
  1873. color: #3b3838;line-height: 24px;margin: 16px 24px 0;
  1874. }
  1875. }
  1876. li:nth-child(1) i{background-image:url("~static/images/client/urbanPartners/zs-pj-img1.jpg");}
  1877. li:nth-child(2) i{background-image:url("~static/images/client/urbanPartners/zs-pj-img2.jpg");}
  1878. li:nth-child(3) i{background-image:url("~static/images/client/urbanPartners/zs-pj-img3.jpg");}
  1879. }
  1880. // 申请城市合作商
  1881. .sqcs-hzs-box{
  1882. width: 100%;height: 303px;padding: 77px 0 50px;box-sizing: border-box;
  1883. background-image:url("~static/images/client/urbanPartners/zs-sq-bj-pc.png");
  1884. h4,h5{font-size: 36px;font-weight: 400;text-align: center;color: #ffffff;}
  1885. h5{font-weight: 700;margin-top: 20px;}
  1886. a{
  1887. width: 208px;height: 54px;background: #ffffff;display: block;
  1888. line-height:54px;border-radius: 6px;font-size: 24px;font-weight: 400;
  1889. text-align: center;color: #2a63c6;margin: 28px auto 0;}
  1890. }
  1891. @media (max-width: 768px){
  1892. // 标题
  1893. .urban-partners-title{
  1894. font-size: 18px;line-height: 26px;
  1895. }
  1896. // banner
  1897. .urban-partners-banner{
  1898. width: 100%;height: 222px;background-size: cover;
  1899. background-image:url("~static/images/client/urbanPartners/urban-partners-banner-sj.png");
  1900. span{
  1901. width: 120px;height: 28px;line-height:28px;font-size:14px;border-radius: 4px;bottom: 16px;
  1902. }
  1903. }
  1904. // 携手栋科软件
  1905. .xs-dk-box{
  1906. height: 218px;padding-top: 25px;
  1907. ul{justify-content: center;flex-wrap: wrap;margin-top: 36px;}
  1908. li{width: 50%;font-size: 12px;font-weight: 600;margin-bottom: 22px;}
  1909. span{font-size: 18px;padding: 0 2px;font-weight: normal;}
  1910. }
  1911. // 私有化部署
  1912. .syh-bs-box{
  1913. padding: 26px 0;
  1914. // 布局
  1915. .syh-bs-card{
  1916. display: flex;flex-wrap: wrap;
  1917. >div{width: 100%;}
  1918. >div +div{margin-left: unset;}
  1919. }
  1920. // 头部
  1921. .syh-bs-head{
  1922. flex-wrap: wrap;
  1923. div{width: 100%;}
  1924. h4{font-size: 24px;}
  1925. i{
  1926. width:156px;height:17px;margin: 8px auto 6px;background-size: contain;
  1927. background-repeat: no-repeat;background-position: center;
  1928. }
  1929. }
  1930. // 内容区域
  1931. .syh-bs-body{
  1932. display: flex;margin: 0 0 42px;
  1933. li{width: 50%;}
  1934. div{height: 110%;margin: 0 6%;}
  1935. i{width: 38px;height: 36px;margin: 30px auto 0;background-size: contain;
  1936. background-repeat: no-repeat;background-position: center;}
  1937. h5{font-size: 12px;margin: 20px 0 12px;}
  1938. p{width:90%;font-size: 12px;line-height: 20px;}
  1939. p:before{
  1940. content: '';width: 3px;height: 3px;margin: 10px 6px 0 0;
  1941. }
  1942. }
  1943. }
  1944. // 合作优势
  1945. .hz-ys-box{
  1946. padding: 36px 0 24px;
  1947. h5{font-size: 12px;margin: 12px 0 38px;}
  1948. .hz-ys-card{
  1949. width: 90%;display: block;padding: 18px 18px 18px 24px;margin: 0 auto 18px;
  1950. p{font-size: 12px;margin-bottom: 16px;
  1951. color: #3b3838;line-height: 32px;}
  1952. i{width: 32px;height: 32px;margin-right: 14px;background-size: contain;
  1953. background-repeat: no-repeat;background-position: center;}
  1954. }
  1955. .hz-ys-card +.hz-ys-card{margin-left:unset;}
  1956. .card-right{margin: 0 auto!important;}
  1957. }
  1958. // 合作条件
  1959. .hz-tj-box{
  1960. height: 391px;padding: 34px 0 30px;background-size: cover;
  1961. .hz-yj-body{
  1962. display: flex;margin: 20px 0 0;flex-wrap: wrap;
  1963. li{width: 50%;margin-bottom: 23px;}
  1964. div{height: 134px;margin: 0 6px;}
  1965. div:before{height: 5px;}
  1966. p{font-size: 14px;margin-top: 24px;}
  1967. span{
  1968. font-size: 12px;line-height: 18px;margin-top: 20px;
  1969. }
  1970. }
  1971. }
  1972. // 合作商申请流程
  1973. .sq-lc-box {
  1974. padding: 32px 0 34px;
  1975. // 二维码区域
  1976. .two-code-box {
  1977. i {width: 60px;height: 60px;margin: 36px auto 10px;background-size: cover;}
  1978. p {font-size: 10px;}
  1979. a {
  1980. width: 102px;height: 26px;line-height: 26px;
  1981. border-radius: 4px;font-size: 12px;margin: 10px auto;
  1982. }
  1983. }
  1984. }
  1985. // 优秀合作伙伴真实评价
  1986. .zs-pj-box{
  1987. padding: 38px 0 34px;
  1988. ul{margin: 27px 0 0;justify-content: center;flex-wrap: wrap;}
  1989. li{
  1990. width: 48%;height:auto;background-size: cover;margin-bottom: 32px;border-radius: 2px;
  1991. i{width: 100%;height: 100px;background-size: cover;flex-shrink: 0;}
  1992. h5{
  1993. font-size: 12px;line-height: 12px;margin: 14px 10px 0;
  1994. }
  1995. p{
  1996. font-size: 11px;line-height: 18px;margin: 8px 10px 10px;
  1997. }
  1998. }
  1999. li + li{margin-left: 4%;}
  2000. }
  2001. // 申请城市合作商
  2002. .sqcs-hzs-box{
  2003. width: 100%;height: 150px;padding: 36px 0 24px;background-repeat: no-repeat;
  2004. background-size: cover;background-position: center;
  2005. background-image:url("~static/images/client/urbanPartners/zs-sq-bj-sj.png");
  2006. h4,h5{font-size: 18px;}
  2007. h5{margin-top: 10px;}
  2008. a{
  2009. width: 104px;height: 27px;line-height:27px;border-radius: 3px;
  2010. font-size: 12px;margin: 14px auto 0;}
  2011. }
  2012. // 弹窗
  2013. .apply-collaborate-dialog{
  2014. .el-dialog{width: 90%;}
  2015. .el-dialog__body{padding:0 20px 24px;}
  2016. // 弹窗标题
  2017. h4{font-size: 20px;padding: 20px 0;}
  2018. // 按钮
  2019. .apply-dialog-btn{
  2020. width: 120px;height: 36px;line-height: 36px;font-size: 14px;
  2021. }
  2022. }
  2023. }
  2024. }
  2025. }