cus-client-page.scss 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071
  1. @import "../base/utils";
  2. @import "cus-client-common";
  3. @mixin setClientPage() {
  4. /******** describe: 网站首页 author: TX date:2020-07-30 ********/
  5. .client-index-page{
  6. width: 100%;
  7. /* 网站banner */
  8. .client-index-banner{
  9. width: 100%;
  10. height: 395px;
  11. background-color:#031073;
  12. background-image: url("~static/images/client/index/index-banner-background.png");
  13. background-position-x: center;
  14. background-repeat: no-repeat;
  15. }
  16. /* 发展历程*/
  17. .client-company-history{
  18. background:#f8f8f8;
  19. li{
  20. width: 25%;display: inline-block;text-align: center;
  21. div{border-right:2px solid #e5e5e5;margin: 24px 0;}
  22. p{@include setFontStyle(16);margin-bottom: 16px;color: #333;}
  23. span{@include setFontStyle(6);}
  24. h4{@include setFontStyle(-4);color: #666;}
  25. }
  26. li:last-child div{border-right: 0;}
  27. }
  28. /* 产品和服务 */
  29. .products-services-box{
  30. padding: 48px 0 32px;
  31. li{
  32. width: 100%;
  33. display: inline-block;
  34. //头部图片
  35. .products-services-img{
  36. width: 640px;
  37. height: 485px;
  38. float: right;
  39. }
  40. //内容区域
  41. .products-services-content{
  42. width: 500px;
  43. float: right;
  44. padding: 110px 60px 0;
  45. box-sizing: border-box;
  46. margin: 0 24px;
  47. @include setFontStyle(-6);
  48. h5{@include setFontStyle(4);color: rgba(0,0,0,0.85);}
  49. i{width:50px;height:5px;display: block;background: #3e7ce7;margin: 24px 0;}
  50. p{line-height: 22px;color: rgba(0,0,0,0.65);margin-bottom: 56px;text-align: justify;}
  51. .client-default-Btn{width: 150px;height: 40px;line-height: 40px;display:inline-block;background: #3e7ce7;border: 1px solid #3e7ce7;box-sizing: border-box;}
  52. a,div.client-default-Btn{margin-right: 24px}
  53. span.client-default-Btn{background: #fff;color: #3e7ce7;margin-right: 0;}
  54. }
  55. }
  56. li:nth-child(1){
  57. .products-services-img{background-image: url("~static/images/client/index/index-products-kaoshi.png");}
  58. }
  59. li:nth-child(2){
  60. .products-services-img{float: left;background-image: url("~static/images/client/index/index-products-peixun.png");}
  61. .products-services-content{float: right;}
  62. }
  63. li:nth-child(3){
  64. .products-services-img{background-image: url("~static/images/client/index/index-products-kejian.png");}
  65. }
  66. }
  67. /* 行业学习需求 */
  68. .client-demand-box{
  69. background: #F9FAFF;
  70. padding-bottom: 80px;
  71. min-height: 720px;
  72. //tab
  73. .demand-box-tab{
  74. margin-top: 30px;
  75. .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;}
  76. .el-tabs__item.is-active{background-color:#3e7ee7;color: #fff;position: relative}
  77. .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;
  78. position: absolute;bottom: -33px;left: 50%;margin-left: -8px;}
  79. // 免费试用按钮
  80. .client-default-Btn{width: 238px;height: 40px;line-height: 40px;margin: 40px auto 0;}
  81. }
  82. //覆盖饿了么样式
  83. .el-tabs__header{margin: 0 0 48px;}
  84. .demand-box-tab.el-tabs--card>.el-tabs__header{border: 0}
  85. .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;}
  86. .demand-box-tab .el-tabs__nav-scroll{text-align: center;}
  87. .demand-box-tab .el-tabs__nav{float: none;}
  88. // 考试ul
  89. .demand-tab-list{
  90. margin: 0 -18px;
  91. li{
  92. width: 33.33%;display: inline-block;position: relative;margin-bottom: 24px;overflow: hidden;
  93. // 内容区域
  94. .demand-content-box{height: 300px;margin: 0 18px;background-color: #fff;background-repeat: no-repeat;background-position: 5px 5px;}
  95. //图片区域
  96. .demand-img-box{
  97. position: absolute;
  98. top: 90px;
  99. left: 50%;
  100. margin-left: -50px;
  101. i{width: 100px;height: 100px;display:block;margin-bottom: 24px;background-repeat: no-repeat;background-size: cover;}
  102. h4{@include setFontStyle(-2);color: #272727;text-align: center;}
  103. }
  104. // 蒙版
  105. .demand-mask-box{
  106. position: absolute;
  107. top: 300px;
  108. padding: 20px;
  109. background:rgba(66,66,66,0.65);
  110. transition: 0.5s;
  111. margin: 0 18px;
  112. color: #fff;
  113. h4{
  114. @include setFontStyle(0);margin-bottom: 24px;text-align: center;
  115. >a{float: right;display: none;}
  116. }
  117. p{@include setFontStyle(-6);line-height: 24px;margin-bottom: 16px;@include multi-line-ellipsis(4);text-align: justify; }
  118. span{@include setFontStyle(-6);color: #fff;}
  119. 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");}
  120. }
  121. // 图标div
  122. .demand-icon-box{
  123. padding: 16px 0;
  124. border-top: 1px solid #fff;
  125. a{margin-right: 8px}
  126. a:last-child{margin-right: 0;}
  127. img{width: 77px;height: 77px;}
  128. }
  129. }
  130. li:nth-child(1){
  131. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic1.png");}}
  132. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img1.png");}
  133. }
  134. li:nth-child(2){
  135. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic2.png");}}
  136. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img2.png");}
  137. }
  138. li:nth-child(3){
  139. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic3.png");}}
  140. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img3.png");}
  141. }
  142. li:nth-child(4){
  143. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic4.png");}}
  144. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img4.png");}
  145. }
  146. li:nth-child(5){
  147. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic5.png");}}
  148. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img5.png");}
  149. }
  150. li:nth-child(6){
  151. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic6.png");}}
  152. .demand-content-box{background-image: url("~static/images/client/index/index-demand-img6.png");}
  153. }
  154. li:hover{
  155. // 蒙版
  156. .demand-mask-box{
  157. top:0;
  158. h4{
  159. text-align: left;
  160. >a{display: inline-block;}
  161. }
  162. }
  163. }
  164. }
  165. .demand-peixun-list{
  166. li:nth-child(1){
  167. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic7.png");}}
  168. }
  169. li:nth-child(2){
  170. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic6.png");}}
  171. }
  172. li:nth-child(3){
  173. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic8.png");}}
  174. }
  175. li:nth-child(4){
  176. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic1.png");}}
  177. }
  178. li:nth-child(5){
  179. .demand-img-box{i{background-image: url("~static/images/client/index/index-demand-pic3.png");}}
  180. }
  181. }
  182. }
  183. /* 超过10万家客户的信任之选 */
  184. .client-customer-box{
  185. .customer-img-box{
  186. padding-bottom: 80px;
  187. li{
  188. width: 20%;
  189. display: inline-block;
  190. }
  191. img{margin: 48px 30px 0;transition: all 0.5s;}
  192. li:hover{
  193. img{transform: scale(1.1);box-shadow: 0 4px 8px 0 rgba(214, 214, 214, 0.76);border-radius: 6px}
  194. }
  195. }
  196. }
  197. /* 我们始终专注教育系统研发更懂用户需求 */
  198. .client-cert-box{
  199. background: #005491;
  200. padding-bottom: 80px;
  201. .client-title{color: #fff}
  202. .cert-img-box{
  203. display: flex;
  204. justify-content: space-between;
  205. margin: 48px 0 0;
  206. align-items: center;
  207. span{display:block;height: max-content;background: #80aac8;padding: 8px 8px 3px;overflow: hidden;}
  208. span:nth-child(3){
  209. img{width: 320px;height:210px;}
  210. }
  211. img{width: 170px;height:240px;transition: all 0.5s;}
  212. img:hover{transform: scale(1.14);}
  213. }
  214. a{width:238px;height:40px;line-height: 40px;margin: 40px auto 0;}
  215. }
  216. /* 为什么选择我们 */
  217. .client-chose-box{
  218. padding-bottom: 80px;
  219. .chose-img-box{
  220. margin: 48px -14px 0;
  221. li{
  222. width: 25%;display: inline-block;vertical-align: top;
  223. div{height: 260px;background: #f8f8f8;position:relative;text-align: center;margin: 0 14px;}
  224. span{width: 100%;height: 200px;display: inline-block;}
  225. img{margin: 50px auto 0;}
  226. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);}
  227. }
  228. }
  229. }
  230. /* 新闻资讯 */
  231. .client-news-information {
  232. background: #f9faff;
  233. padding-bottom: 80px;
  234. .industry-information-box {
  235. margin-top: 48px;
  236. // 左
  237. .industry-information-left {
  238. width: 520px;
  239. margin-right: 80px;
  240. display: inline-block;
  241. vertical-align: top;
  242. color: #333;
  243. div {float: left;border-right: 1px solid #dbdbea;padding: 8px 16px 8px 0;}
  244. img {width: 520px;height: 210px;margin-bottom: 42px;}
  245. h4 {@include setFontStyle(-2);margin-bottom: 16px;color: #222;}
  246. i{width:25px;height:12px;float:right;background-image:url("~static/images/client/index/news-information-icon.png")}
  247. p {@include setFontStyle(-6);height: 68px;line-height: 22px;padding: 2px 0 0 16px;text-align: justify;@include multi-line-ellipsis(3);}
  248. b {@include setFontStyle(-4);font-weight: normal;display: block;margin-bottom: 16px;}
  249. span {@include setFontStyle(-6);display: block;color: #666;}
  250. }
  251. // 右
  252. .industry-information-right {
  253. width: 590px;
  254. display: inline-block;
  255. vertical-align: top;
  256. li {border-bottom: 1px solid #ccc;margin-bottom: 16px;}
  257. li:last-child {border: 0;}
  258. h4 {@include setFontStyle(-4);color: #333;@include single-line-ellipsis;margin-bottom: 12px;}
  259. h4:hover {cursor: pointer;color: #3e7ce7;}
  260. p {@include setFontStyle(-6);color: #666;@include single-line-ellipsis;margin-bottom: 16px;}
  261. span {margin: 0 30px 0 10px;}
  262. }
  263. }
  264. }
  265. }
  266. /******** describe: 考试平台 author: TX date:2020-08-12 ********/
  267. .client-exam-page{
  268. /* 网站banner */
  269. .client-exam-banner{
  270. width: 100%;
  271. height: 400px;
  272. background-image: url("~static/images/client/exam/exam-banner-background.png");
  273. background-position-x: center;
  274. /* banner文字区域 */
  275. .exam-banner-container{
  276. width:500px;
  277. display: inline-block;
  278. margin-left: 150px;
  279. h4{@include setFontStyle(40);color: #FFF;letter-spacing: 0;padding-top: 110px;}
  280. p{@include setFontStyle(0);color: #FFF;margin: 16px 0;}
  281. i{width:1px;height:16px;display:inline-block;margin: 0 24px;background: #DFE6FE;vertical-align: middle;}
  282. a{width: 132px;height: 32px;line-height: 32px;display: inline-block;@include setFontStyle(-4);color: #2B5CFD;background: #FFFFFF;text-align:center;border-radius: 4px;}
  283. }
  284. }
  285. /* 产品优势 */
  286. .exam-product-advantages{
  287. width: 100%;display: flex;justify-content: space-between;margin: 48px 0;
  288. li{width: 250px;padding: 32px 0;border-radius: 8px;transition: .3s all linear;}
  289. li:hover{background: #F9FAFF;cursor: default}
  290. img{display: block;margin: 0 auto;}
  291. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin: 16px 0 8px;}
  292. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);padding:0 24px;margin-bottom: 21px;text-align: center;@include multi-line-ellipsis(3);}
  293. }
  294. /* 产品功能 */
  295. .exam-product-function{
  296. background: #F9FAFF;
  297. padding-bottom: 32px;
  298. // ul
  299. .product-function-box{
  300. margin-top: 24px;
  301. li{
  302. width: 50%;display: inline-block;transition: .3s all linear;
  303. div{padding: 24px 32px;margin: 0 32px;}
  304. i{width: 40px;height: 40px;float:left;background-size: cover;background-repeat: no-repeat;}
  305. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;margin-left: 56px;}
  306. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);margin-left: 56px;@include multi-line-ellipsis(3);}
  307. }
  308. li:nth-child(1){i{background-image:url("~static/images/client/exam/product-function-icon1.svg");}}
  309. li:nth-child(2){i{background-image:url("~static/images/client/exam/product-function-icon2.svg");}}
  310. li:nth-child(3){i{background-image:url("~static/images/client/exam/product-function-icon3.svg");}}
  311. li:nth-child(4){i{background-image:url("~static/images/client/exam/product-function-icon4.svg");}}
  312. li:nth-child(5){i{background-image:url("~static/images/client/exam/product-function-icon5.svg");}}
  313. li:nth-child(6){i{background-image:url("~static/images/client/exam/product-function-icon6.svg");}}
  314. li:nth-child(7){i{background-image:url("~static/images/client/exam/product-function-icon7.svg");}}
  315. li:nth-child(8){i{background-image:url("~static/images/client/exam/product-function-icon8.svg");}}
  316. li:hover{div{box-shadow: 0 2px 4px 0 #D4DBFF;border-radius: 8px;cursor: default}}
  317. }
  318. }
  319. /* 产品展示 */
  320. .exam-product-show{
  321. background: #0E1F3C;
  322. h4{color: #fff;}
  323. // 轮播外层容器
  324. .product-show-container{max-width: 1600px;margin: 0 auto;}
  325. .el-carousel{
  326. min-height: 360px;padding: 48px 0 80px;
  327. // 轮播内容区
  328. .el-carousel__container{width: 1360px;height: 360px;margin: 0 auto;}
  329. }
  330. // 后方卡片
  331. .el-carousel__item{
  332. width:560px;
  333. .el-carousel__mask{background: transparent;}
  334. .product-show-carousel{
  335. width:350px;
  336. padding-top: 70px;
  337. margin: 0 auto;
  338. img{width:100%;height: 198px;border-radius: 8px;}
  339. h5{@include setFontStyle(-4);color: rgba(255,255,255,0.65);margin-top: 16px;text-align: center;}
  340. }
  341. }
  342. // 前方卡片(active)
  343. .el-carousel__item.is-active{
  344. width: 560px;
  345. .product-show-carousel{
  346. width: 560px;
  347. padding-top: 0;
  348. img{height: 315px;}
  349. }
  350. }
  351. // 轮播下方进度标签
  352. .el-carousel__indicators--outside{display: none}
  353. }
  354. /* 应用场景 */
  355. .exam-application-scenarios{
  356. background: #F9FAFF;
  357. .application-scenarios-box{padding: 120px 0 80px;margin: 0 -16px;}
  358. li{
  359. width: 33.33%;
  360. display: inline-block;
  361. vertical-align: top;
  362. position: relative;
  363. transition: .3s all linear;
  364. .application-scenarios-img{
  365. width: 116px;
  366. height: 116px;
  367. position: absolute;
  368. top: -70px;
  369. left: 50%;
  370. margin-left: -58px;
  371. background-size: cover;
  372. i{width:32px;height:32px;display: block;background-size: cover;position: absolute;}
  373. }
  374. .application-scenarios-content{
  375. padding: 80px 24px 40px;
  376. margin: 0 16px;
  377. background: #FFF;
  378. border-radius: 8px;
  379. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin-bottom: 16px;}
  380. p{@include setFontStyle(-6);line-height: 22px;color: rgba(0,0,0,0.65);text-align: justify;@include multi-line-ellipsis(5);min-height: 110px;max-height: 110px}
  381. }
  382. }
  383. li:hover{
  384. margin-top: -16px;cursor: default;
  385. }
  386. li:nth-child(1){
  387. .application-scenarios-img {
  388. background-image: url("~static/images/client/exam/application-scenarios-img1.svg");
  389. i{top: 48px;left: 42px;background-image: url("~static/images/client/exam/application-scenarios-icon1.svg");animation: 3s scenariosImgUpDown1 linear infinite;}
  390. }
  391. }
  392. li:nth-child(2){
  393. .application-scenarios-img {
  394. background-image: url("~static/images/client/exam/application-scenarios-img2.svg");
  395. i{top: 35px;left: 38px;background-image: url("~static/images/client/exam/application-scenarios-icon2.svg");animation: 3s scenariosImgUpDown2 linear infinite;}
  396. }
  397. }
  398. li:nth-child(3){
  399. .application-scenarios-img {
  400. background-image: url("~static/images/client/exam/application-scenarios-img3.svg");
  401. i{top: 35px;left: 32px;background-image: url("~static/images/client/exam/application-scenarios-icon3.svg");animation: 3s scenariosImgUpDown2 linear infinite;}
  402. }
  403. }
  404. // 应用场景图标动画
  405. @keyframes scenariosImgUpDown1 {
  406. 0%, to {top: 48px;}
  407. 50% {top: 40px;}
  408. }
  409. @keyframes scenariosImgUpDown2 {
  410. 0%, to {top: 35px;}
  411. 50% {top: 28px;}
  412. }
  413. }
  414. }
  415. /******** describe: 培训平台 author: TX date:2020-08-14 ********/
  416. .client-train-page{
  417. /* 网站banner */
  418. .client-train-banner{
  419. width: 100%;
  420. height: 454px;
  421. background-image: url("~static/images/client/train/train-banner-background.png");
  422. background-position-x: center;
  423. /* banner文字区域 */
  424. .train-banner-container{
  425. width:500px;
  426. display: inline-block;
  427. margin-left: 150px;
  428. h4{@include setFontStyle(36);color: #FFF;letter-spacing: 0;padding-top: 110px;}
  429. p{@include setFontStyle(0);color: #FFF;margin: 16px 0;}
  430. a{width: 132px;height: 32px;line-height: 32px;display: inline-block;@include setFontStyle(-4);color: #2B5CFD;background: #FFFFFF;text-align:center;border-radius: 4px;}
  431. }
  432. }
  433. /* 产品优势 */
  434. .train-product-advantages{
  435. width: 100%;display: flex;justify-content: space-between;margin: 48px 0;
  436. li{width: 250px;padding: 32px 0;border-radius: 8px;transition: .3s all linear;}
  437. li:hover{background: #F9FAFF;cursor: default}
  438. img{display: block;margin: 0 auto;}
  439. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin: 16px 0 8px;}
  440. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);padding:0 24px;margin-bottom: 21px;text-align: center;@include multi-line-ellipsis(3);}
  441. }
  442. /* 产品功能 */
  443. .train-product-function{
  444. background: #F9FAFF;
  445. padding-bottom: 32px;
  446. // ul
  447. .product-function-box{
  448. margin-top: 24px;
  449. li{
  450. width: 50%;display: inline-block;transition: .3s all linear;
  451. div{padding: 24px 32px;margin: 0 32px;}
  452. i{width: 40px;height: 40px;float:left;background-size: cover;background-repeat: no-repeat;}
  453. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;margin-left: 56px;}
  454. p{@include setFontStyle(-6);height:66px;line-height: 22px;color: rgba(0,0,0,0.65);margin-left: 56px;@include multi-line-ellipsis(3);}
  455. }
  456. li:nth-child(1){i{background-image:url("~static/images/client/train/product-function-icon1.svg");}}
  457. li:nth-child(2){i{background-image:url("~static/images/client/train/product-function-icon2.svg");}}
  458. li:nth-child(3){i{background-image:url("~static/images/client/train/product-function-icon3.svg");}}
  459. li:nth-child(4){i{background-image:url("~static/images/client/train/product-function-icon4.svg");}}
  460. li:nth-child(5){i{background-image:url("~static/images/client/train/product-function-icon5.svg");}}
  461. li:nth-child(6){i{background-image:url("~static/images/client/train/product-function-icon6.svg");}}
  462. li:nth-child(7){i{background-image:url("~static/images/client/train/product-function-icon7.svg");}}
  463. li:nth-child(8){i{background-image:url("~static/images/client/train/product-function-icon8.svg");}}
  464. li:hover{div{box-shadow: 0 2px 4px 0 #D4DBFF;border-radius: 8px;cursor: default}}
  465. }
  466. }
  467. /* 产品展示 */
  468. .train-product-show{
  469. background: #0E1F3C;
  470. h4{color: #fff;}
  471. // 轮播外层容器
  472. .product-show-container{max-width: 1600px;margin: 0 auto;}
  473. .el-carousel{
  474. height: 360px;padding: 48px 0 80px;
  475. // 轮播内容区
  476. .el-carousel__container{width: 1360px;height: 360px;margin: 0 auto;}
  477. }
  478. // 后方卡片
  479. .el-carousel__item{
  480. width:560px;
  481. .el-carousel__mask{background: transparent;}
  482. .product-show-carousel{
  483. width:350px;
  484. padding-top: 70px;
  485. margin: 0 auto;
  486. img{width:100%;height: 198px;border-radius: 8px;}
  487. h5{@include setFontStyle(-4);color: rgba(255,255,255,0.65);margin-top: 16px;text-align: center;}
  488. }
  489. }
  490. // 前方卡片(active)
  491. .el-carousel__item.is-active{
  492. width: 560px;
  493. .product-show-carousel{
  494. width: 560px;
  495. padding-top: 0;
  496. img{height: 315px;}
  497. }
  498. }
  499. // 轮播下方进度标签
  500. .el-carousel__indicators--outside{display: none}
  501. }
  502. /* 应用场景 */
  503. .train-application-scenarios{
  504. background: #F9FAFF;
  505. .application-scenarios-box{height:266px;padding: 120px 0 80px;margin: 0 -16px;}
  506. li{
  507. width: 33.33%;
  508. display: inline-block;
  509. vertical-align: top;
  510. position: relative;
  511. transition: .3s all linear;
  512. .application-scenarios-img{
  513. width: 116px;
  514. height: 116px;
  515. position: absolute;
  516. top: -70px;
  517. left: 50%;
  518. margin-left: -58px;
  519. background-size: cover;
  520. i{width:32px;height:32px;display: block;background-size: cover;position: absolute;}
  521. }
  522. .application-scenarios-content{
  523. padding: 80px 24px 40px;
  524. margin: 0 16px;
  525. background: #FFF;
  526. border-radius: 8px;
  527. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin-bottom: 16px;}
  528. p{@include setFontStyle(-6);line-height: 22px;color: rgba(0,0,0,0.65);text-align: justify;@include multi-line-ellipsis(5);min-height: 110px;max-height: 110px}
  529. }
  530. }
  531. li:hover{
  532. margin-top: -16px;cursor: default;
  533. }
  534. li:nth-child(1){
  535. .application-scenarios-img {
  536. background-image: url("~static/images/client/train/application-scenarios-img1.svg");
  537. i{top: 45px;left: 38px;background-image: url("~static/images/client/train/application-scenarios-icon1.svg");animation: 3s trainScenariosImgUpDown1 linear infinite;}
  538. }
  539. }
  540. li:nth-child(2){
  541. .application-scenarios-img {
  542. background-image: url("~static/images/client/train/application-scenarios-img2.svg");
  543. i{top: 45px;left: 38px;background-image: url("~static/images/client/train/application-scenarios-icon2.svg");animation: 3s trainScenariosImgUpDown1 linear infinite;}
  544. }
  545. }
  546. li:nth-child(3){
  547. .application-scenarios-img {
  548. background-image: url("~static/images/client/train/application-scenarios-img3.svg");
  549. i{top: 32px;left: 34px;background-image: url("~static/images/client/train/application-scenarios-icon3.svg");animation: 3s trainScenariosImgUpDown2 linear infinite;}
  550. }
  551. }
  552. // 应用场景图标动画
  553. @keyframes trainScenariosImgUpDown1 {
  554. 0%, to {top: 45px;}
  555. 50% {top: 38px;}
  556. }
  557. @keyframes trainScenariosImgUpDown2 {
  558. 0%, to {top: 32px;}
  559. 50% {top: 25px;}
  560. }
  561. }
  562. }
  563. /******** describe: 课程开发 author: TX date:2020-08-24 ********/
  564. .client-course-page{
  565. /* 网站banner */
  566. .client-course-banner{
  567. width: 100%;
  568. height: 400px;
  569. background-image: url("~static/images/client/course/course-banner-background.png");
  570. background-position-x: center;
  571. /* banner文字区域 */
  572. .course-course-container{
  573. width:520px;
  574. display: inline-block;
  575. margin-left: 150px;
  576. h4{@include setFontStyle(36);color: #FFF;letter-spacing: 0;padding-top: 110px;}
  577. p{@include setFontStyle(0);color: #FFF;margin: 16px 0;}
  578. a{width: 132px;height: 32px;line-height: 32px;display: block;@include setFontStyle(-4);color: #2B5CFD;background: #FFFFFF;text-align:center;border-radius: 4px;}
  579. }
  580. }
  581. /* 课程定制开发 */
  582. .course-made-box{
  583. padding-bottom: 80px;
  584. .client-container{width: 880px;padding-top: 48px;}
  585. .course-made-content{
  586. display: inline-block;
  587. vertical-align: middle;
  588. margin-right: 56px;
  589. p{width: 455px;@include setFontStyle(-6);color: rgba(0,0,0,0.65);line-height: 22px;margin-bottom: 40px;text-align: justify}
  590. a{width: 132px;height: 32px;line-height: 32px;@include setFontStyle(-4);display:inline-block;text-align:center;background: #2B5CFD;border-radius: 4px;color: rgba(255,255,255,0.85);}
  591. }
  592. img{width: 357px;height: 251px;display:inline-block;vertical-align: middle;}
  593. }
  594. /* E-learning课程 */
  595. .course-learn-box{
  596. background: #F9FAFF;
  597. padding-bottom: 80px;
  598. // 申请方案按钮
  599. .course-apply-btn{width: 238px;height: 40px;line-height:40px;display: inline-block;@include setFontStyle(-4);background: #2B5CFD;border-radius: 4px;color: rgba(255,255,255,0.85);text-align: center;margin: 0 auto;}
  600. // video列表
  601. .learn-box-list{
  602. margin: 54px -16px 24px;
  603. li{
  604. width: 33.33%;display: inline-block;
  605. a{display: none;}
  606. div{background: #fff;border-radius: 8px;margin: 0 16px 40px;}
  607. span{width:342px;height:192px;display: inline-block;margin-top: 16px;border-radius:4px;overflow: hidden;position: relative}
  608. i{width: 48px;height: 48px;cursor: pointer;background-image: url("~static/images/client/course/course-video-icon.svg");display: inline-block;position: absolute;
  609. left: 50%;margin-left: -24px;z-index: 5;top: 50%;margin-top: -24px;background-size: cover;background-position: bottom;transition: all 0.5s;}
  610. img{transition: all 0.5s;}
  611. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);padding: 24px 0 24px;}
  612. }
  613. li span:hover{img{transform: scale(1.1);}}
  614. li i:hover{background-image: url("~static/images/client/course/course-video-icon-a.svg");background-size: cover;background-position: bottom;}
  615. }
  616. }
  617. /* 微课程 */
  618. .course-micro-box{background: #FFF;}
  619. }
  620. /******** describe: 关于我们 author: TX date:2020-08-07 ********/
  621. .client-aboutUs-page{
  622. // banner
  623. .aboutUs-banner{width: 100%;height: 400px;background-image: url("~static/images/client/aboutUs/aboutUs-banner.png");background-position-x: center;}
  624. // 公司简介
  625. .company-profile-box{
  626. padding-bottom: 80px;
  627. font-size: 0;
  628. .company-profile-left{
  629. width: 480px;
  630. display: inline-block;
  631. margin-right: 48px;
  632. vertical-align: middle;
  633. p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;text-align: justify;}
  634. }
  635. .company-profile-right{
  636. width:432px;height:296px;display: inline-block;background: #E8ECFF;border-radius: 8px;text-align: center;vertical-align: middle;
  637. img{margin-top: 12px;}
  638. }
  639. }
  640. // 品牌介绍
  641. .brand-introduction-box{
  642. background: #F9FAFF;
  643. padding-bottom: 80px;
  644. .brand-introduction-content{
  645. width: 806px;
  646. padding: 30px 0;
  647. background: #E8ECFF;
  648. border-radius: 8px;
  649. float: right;
  650. span{width: 570px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;display: inline-block;vertical-align: middle;padding-left: 60px;text-align: justify;}
  651. img{
  652. display: inline-block;
  653. vertical-align: middle;
  654. margin-left: -126px;
  655. }
  656. }
  657. }
  658. // 企业文化
  659. .corporate-culture-box{
  660. padding-bottom: 80px;
  661. dl{
  662. width: 240px;
  663. display: inline-block;
  664. vertical-align: middle;
  665. margin: 0 162px 0 90px;
  666. dt{
  667. margin-bottom: 16px;
  668. i{width: 14px;height: 14px;display:inline-block;border: 1px solid #2B5CFD;transform: rotate(45deg);margin-right: 16px;}
  669. span{@include setFontStyle(0);color: rgba(0,0,0,0.85);}
  670. }
  671. dd{@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;margin-bottom: 24px;}
  672. }
  673. img{
  674. display: inline-block;vertical-align: middle;
  675. }
  676. }
  677. // 企业发展历程
  678. .enterprise-development-box{
  679. background: #F9FAFF;
  680. .development-left{
  681. float: left;
  682. width: 50%;
  683. text-align: right;
  684. padding-right: 76px;
  685. padding-top: 170px;
  686. box-sizing: border-box;
  687. .development-content{
  688. h4 div{top: -8px;right: -87px;left: auto}
  689. p i{margin-left:16px;}
  690. }
  691. }
  692. .development-right{
  693. width: 50%;
  694. margin-bottom: 80px;
  695. float: right;
  696. padding-left: 76px;
  697. border-left: 1px solid #D1DFFD;
  698. box-sizing: border-box;
  699. .development-content{
  700. h4 div{top: -8px;left: -87px;right: auto}
  701. p i{margin-right:16px;}
  702. }
  703. }
  704. .development-content{
  705. position: relative;
  706. h4{
  707. @include setFontStyle(8);color: rgba(0,0,0,0.85);margin-bottom: 24px;
  708. div{width: 20px;height: 34px;position: absolute;background:#F9FAFF}
  709. span{
  710. width: 18px;
  711. height: 18px;
  712. border: 1px solid #2B5CFD;
  713. display: inline-block;
  714. vertical-align: middle;
  715. border-radius: 50%;
  716. text-align: center;
  717. }
  718. i{
  719. width: 12px;
  720. height: 12px;
  721. display: inline-block;
  722. vertical-align: top;
  723. margin-top: 3px;
  724. background-image: url("~static/images/client/aboutUs/development-content-icon.svg");
  725. }
  726. p{display: inline-block;margin: 0;}
  727. }
  728. p{
  729. margin-bottom: 16px;
  730. i{width: 36px;height:24px;line-height:24px;display: inline-block;text-align: center;@include setFontStyle(-6);color: rgba(0,0,0,0.65);background: rgba(121,152,255,0.26);border: 1px solid #7998FF;border-radius: 4px;font-style: normal;}
  731. span{@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 24px;}
  732. }
  733. }
  734. .development-content + .development-content {
  735. margin-top: 204px;
  736. }
  737. }
  738. // 联系我们
  739. .contact-us-box{
  740. height: 534px;
  741. padding-top: 80px;
  742. background-image: url("~static/images/client/aboutUs/contact-us-background.png");
  743. .contact-container-box{
  744. color: rgba(255,255,255,0.85);
  745. h4{@include setFontStyle(10);margin-bottom: 32px;}
  746. li{
  747. i{width: 22px;height: 24px;display: inline-block;background-repeat: no-repeat;background-position: center;background-size: cover;margin-right: 16px;vertical-align: middle;}
  748. span{@include setFontStyle(0);vertical-align: middle;}
  749. p{@include setFontStyle(-4);color: rgba(255,255,255,0.64);line-height: 24px;margin: 20px 0 24px;}
  750. }
  751. li:nth-child(2) {
  752. i {background-image: url("~static/images/client/aboutUs/contact-us-icon1.png");}
  753. }
  754. li:nth-child(3) {
  755. i {background-image: url("~static/images/client/aboutUs/contact-us-icon2.png");}
  756. }
  757. li:nth-child(4) {
  758. i {background-image: url("~static/images/client/aboutUs/contact-us-icon3.png");}
  759. }
  760. li:nth-child(5) {
  761. i {background-image: url("~static/images/client/aboutUs/contact-us-icon4.png");}
  762. }
  763. }
  764. }
  765. }
  766. /******** describe: 新闻资讯 author: TX date:2020-08-10 ********/
  767. .client-newsInfor-page{
  768. // banner
  769. .newsInfor-banner{width: 100%;height: 300px;background-image: url("~static/images/client/newsInfor/newsInfor-banner.png");background-position-x: center;}
  770. // 菜单 ul
  771. .newsInfor-menu-ul{
  772. display: block;
  773. margin: 0 auto;
  774. text-align: center;
  775. background: #F7F9FB;
  776. 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}
  777. li.active{color: #2B5CFD;background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);}
  778. li:hover{
  779. transform: scale(1.1);
  780. }
  781. }
  782. // 页面主要内容区域
  783. .newsInfor-content-box{
  784. min-height: 304px;
  785. padding: 48px 0 80px;
  786. ul{display: inline-block;vertical-align: top}
  787. // 右侧内容区域
  788. .newsInfor-content-ul{
  789. padding: 0 32px;
  790. li{margin-bottom: 40px;}
  791. li:last-child{margin-bottom: 0;}
  792. //图片
  793. .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;}
  794. //内容区域
  795. .newsInfor-list-content{
  796. width: calc(100% - 350px);
  797. display: inline-block;
  798. vertical-align: top;
  799. h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 8px;}
  800. div{
  801. margin-bottom: 8px;
  802. 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");}
  803. i[type="visits"]{background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");}
  804. span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;}
  805. }
  806. 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;}
  807. a{@include setFontStyle(-6);color: #4A73FD;}
  808. a:after{content: "";width: 14px;height: 12px;display:inline-block;background-image: url("~static/images/client/newsInfor/newsInfor-list-icon.svg");margin-left: 8px;}
  809. a:hover{cursor: pointer;}
  810. }
  811. }
  812. }
  813. }
  814. /******** describe: 政府机构-详情页 author: TX date:2020-08-10 ********/
  815. .client-government-page{
  816. // banner
  817. .government-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/government-banner-img.png");background-position-x: center;}
  818. // 我们的系统为您改变了什么
  819. .government-change-box{
  820. background: #F9FAFF;
  821. padding-bottom: 80px;
  822. .industrydetails-content{
  823. width: 100%;height: 312px;margin-top: 48px;background-image: url("~static/images/client/industrydetails/government-change-bg.png");
  824. li{
  825. margin-bottom: 24px;
  826. p{margin-left: 30px}
  827. }
  828. img{display: inline-block;vertical-align: top;margin: 85px 42px;}
  829. }
  830. .change-content-left{
  831. display: inline-block;padding: 32px 0 0 64px;vertical-align: top;
  832. h5,li,li i{color: #fff;border-color: #fff;}
  833. p{color: rgba(255,255,255,0.65);}
  834. }
  835. .change-content-right{width: 500px;display: inline-block;padding-top: 64px;}
  836. }
  837. // 我们的优势
  838. .government-advantage-box{
  839. padding-bottom: 50px;
  840. h4{margin-bottom: 48px;}
  841. dl{width:33.33%;display: inline-block;margin-bottom: 30px;}
  842. dt{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 16px}
  843. dd{@include setFontStyle(-6);color: rgba(0,0,0,0.65);margin-left: 33px;}
  844. 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;}
  845. .government-advantage-content{margin-right: -100px;padding: 4px 0 0 4px;}
  846. }
  847. }
  848. /******** describe: 金融保险-详情页 author: TX date:2020-09-01 ********/
  849. .client-finance-page{
  850. // banner
  851. .finance-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/finance-banner-img.png");background-position-x: center;}
  852. // 金融行业的问题
  853. .finance-question-box{
  854. background: #F9FAFF;
  855. padding: 80px 0;
  856. .finance-question-top{
  857. width: 946px;height: 104px;background-image: url("~static/images/client/industrydetails/finance-question-bg.png");margin: 0 auto 48px;
  858. h5{height: 104px;line-height:104px;display: inline-block;@include setFontStyle(10);color: rgba(255,255,255,0.85);padding: 0 56px}
  859. h5:first-child{margin-right: 180px;color: rgba(0,0,0,0.85);}
  860. }
  861. ul{
  862. width:460px;min-height:328px;display: inline-block;border: 1px solid #2B67FD;border-radius: 4px;padding: 32px;box-sizing: border-box;vertical-align: middle;margin: 0 52px;
  863. i{width: 12px;height: 12px;background-image: linear-gradient(90deg, #2B5CFD 0%, #FFFFFF 100%);border-radius: 50%;border:0;transform: rotate(0deg);opacity: 1;}
  864. p{margin-left: 30px;}
  865. }
  866. .finance-question-right{
  867. border: 1px solid #FF6226;
  868. i{background-image: linear-gradient(90deg, #FF6226 0%, #FFFFFF 100%);}
  869. }
  870. }
  871. }
  872. /******** describe: 信息产业-详情页 author: TX date:2020-09-02 ********/
  873. .client-information-page{
  874. // banner
  875. .information-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/information-banner-img.png");background-position-x: center;}
  876. // 我们的系统为您改变了什么
  877. .information-change-box{
  878. background: #F9FAFF;
  879. padding-bottom: 80px;
  880. .industrydetails-content{
  881. width: 100%;height: 300px;margin-top: 48px;background-image: url("~static/images/client/industrydetails/information-change-bg.png");
  882. li{
  883. margin-bottom: 24px;
  884. p{margin-left: 30px;}
  885. }
  886. img{display: inline-block;vertical-align: top;margin: 120px 30px auto 70px;}
  887. }
  888. .change-content-left{
  889. display: inline-block;padding: 48px 0 0 64px;vertical-align: top;
  890. h5,li,li i{color: #fff;border-color: #fff;}
  891. p{color: rgba(255,255,255,0.65);}
  892. }
  893. .change-content-right{width: 500px;display: inline-block;padding-top: 48px;}
  894. }
  895. }
  896. /******** describe: 能源化工-详情页 author: TX date:2020-09-02 ********/
  897. .client-energy-page{
  898. // banner
  899. .energy-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/energy-banner-img.png");background-position-x: center;}
  900. // 我们的系统为您改变了什么
  901. .energy-change-box{
  902. background: #F9FAFF;
  903. padding-bottom: 80px;
  904. // 模块上半部分
  905. .change-box-top{
  906. width: 1100px;height: 247px;padding: 32px 64px;box-sizing: border-box;background: #104644;border-radius: 8px;margin-left: 20px;margin-top: 48px;
  907. i{border: 1px solid #fff;}
  908. }
  909. // 模块下半部分
  910. .change-box-bottom{
  911. width: 1100px;height: 368px;padding: 24px;box-sizing: border-box;border-radius: 8px;background: #FE552C;margin-left: 100px;margin-top:-24px;position: relative;
  912. h5{margin-top: 70px;}
  913. li:nth-of-type(odd){p{margin-right: 60px}}
  914. }
  915. h5{color: rgba(255,255,255,0.85);}
  916. li{
  917. width: 50%;display: inline-block;@include setFontStyle(-6);color: rgba(255,255,255,0.65);margin-bottom: 24px;line-height: 22px;vertical-align: top;
  918. p{margin-left: 30px;color: rgba(255,255,255,0.65);}
  919. }
  920. img{position: absolute;top: -55px;left: 50%;margin-left: -50px;}
  921. }
  922. }
  923. /******** describe: 交通运输-详情页 author: TX date:2020-09-02 ********/
  924. .client-traffic-page{
  925. // banner
  926. .traffic-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/traffic-banner-img.png");background-position-x: center;}
  927. // 我们的系统为您改变了什么
  928. .traffic-change-box{
  929. background: #F9FAFF;
  930. padding-bottom: 80px;
  931. .change-content-left,.change-content-right{
  932. width: 462px;height: 359px;display:inline-block;background-repeat: no-repeat;vertical-align: top;margin-top: 48px;
  933. h5{height: 58px;line-height: 58px;color: rgba(255,255,255,0.85);}
  934. ul{margin-top: 80px;margin-left: 32px;}
  935. i{width:12px;height:12px;border-radius:50%;border: 1px solid #1276FF;margin-top: 5px;}
  936. }
  937. .change-content-left{background-image: url("~static/images/client/industrydetails/traffic-left-bg.png");margin-right: 104px;}
  938. .change-content-right{background-image: url("~static/images/client/industrydetails/traffic-right-bg.png");}
  939. }
  940. }
  941. /******** describe: 教育行业-详情页 author: TX date:2020-09-02 ********/
  942. .client-education-page{
  943. // banner
  944. .education-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/education-banner-img.png");background-position-x: center;}
  945. // 我们的系统为您改变了什么
  946. .education-change-box{
  947. background: #F9FAFF;padding-bottom: 80px;
  948. img{position: absolute;top: 50%;margin-top: -78px;left:50%;margin-left: -54px;}
  949. .industrydetails-content{position: relative;}
  950. .change-content-left,.change-content-right{height: 338px;box-sizing: border-box;}
  951. .change-content-left{width: 637px;float:left;padding:32px 48px;background-image: url("~static/images/client/industrydetails/education-left-bg.png");}
  952. .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;}
  953. }
  954. }
  955. /******** describe: 食品餐饮-详情页 author: TX date:2020-09-03 ********/
  956. .client-restaurant-page{
  957. // banner
  958. .restaurant-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/restaurant-banner-img.png");background-position-x: center;}
  959. // 我们的系统为您改变了什么
  960. .restaurant-change-box{
  961. background: #F9FAFF;
  962. padding-bottom: 80px;
  963. .industrydetails-content{
  964. position: relative;
  965. img{position: absolute;top:50%;left: 50%;margin-top: -40px;margin-left: -45px;}
  966. }
  967. .change-content-left,.change-content-right{
  968. width: 552px;height: 328px;display:inline-block;background-repeat: no-repeat;vertical-align: top;
  969. h5{height: 58px;line-height: 58px;color: rgba(255,255,255,0.85);}
  970. ul{margin-top: 32px;margin-left: 48px;}
  971. }
  972. .change-content-left{background-image: url("~static/images/client/industrydetails/restaurant-left-bg.png");margin-right: 90px;}
  973. .change-content-right{background-image: url("~static/images/client/industrydetails/restaurant-right-bg.png");}
  974. }
  975. }
  976. /******** describe: 医疗卫生-详情页 author: TX date:2020-09-03 ********/
  977. .client-medical-page{
  978. // banner
  979. .medical-banner{width: 100%;height: 400px;background-image: url("~static/images/client/industrydetails/medical-banner-img.png");background-position-x: center;}
  980. // 我们的系统为您改变了什么
  981. .medical-change-box{
  982. background: #F9FAFF;
  983. padding-bottom: 80px;
  984. .industrydetails-content{width: 1200px;height: 316px;background-image: url("~static/images/client/industrydetails/medical-change-bg.png");}
  985. .change-content-left,.change-content-right{
  986. width: 500px;display:inline-block;vertical-align: top;
  987. ul{margin-left: 48px;}
  988. h5{margin-top: 36px;color: rgba(255,255,255,0.85);}
  989. p{color: rgba(255,255,255,0.65);}
  990. i{border-color: #fff;}
  991. }
  992. .change-content-left{margin-right: 180px;}
  993. }
  994. }
  995. }