@import "../base/utils"; /************************ 通用class样式 author: TX date:2020-07-30 **********************/ /* 页面样式 */ body, html, #app {padding: 0;margin: 0;@include setFontStyle(0);} /* 内外边距通常让各个浏览器样式的表现位置不同 */ div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{margin:0;padding:0;} /* HTML5 媒体文件跟 img 保持一致 */ audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} /* 默认不显示下划线,保持页面简洁 */ ins,a{text-decoration:none;cursor:pointer;} /* 去掉列表前的标识, li 会继承 */ ol,ul,dl,dt,dd{ list-style:none; margin: 0; padding: 0; letter-spacing: 0; word-spacing: 0; font-size: 0;} /* 让标题都自定义, 适应多个系统应用 */ h1,h2,h3,h4,h5,h6,p{font-weight:normal;margin: 0;} /* 外边距 */ .m5{margin:5px;} .m10 {margin: 10px;} .m15 {margin: 15px;} .m20 {margin: 20px;} .m25 {margin: 25px;} .m30 {margin: 30px;} .m35 {margin: 35px;} .m40 {margin: 40px;} /* 外边距 上下边距 左右居中 */ .ma0{margin:0 auto;} .ma5{margin:5px auto;} .ma10{margin:10px auto;} .ma15{margin:15px auto;} .ma20{margin:20px auto;} .ma25{margin:25px auto;} .ma30{margin:30px auto;} .ma35{margin:35px auto;} .ma40{margin:40px auto;} /* 上外边距 */ .mt5 {margin-top: 5px;} .mt10 {margin-top: 10px;} .mt15 {margin-top: 15px;} .mt20 {margin-top: 20px;} .mt25 {margin-top: 25px;} .mt30 {margin-top: 30px;} .mt35 {margin-top: 35px;} .mt40 {margin-top: 40px;} .mt48 {margin-top: 48px;} /* 下外边距 */ .mb5 {margin-bottom: 5px;} .mb10 {margin-bottom: 10px;} .mb15 {margin-bottom: 15px;} .mb20 {margin-bottom: 20px;} .mb25 {margin-bottom: 25px;} .mb30 {margin-bottom: 30px;} .mb35 {margin-bottom: 35px;} .mb40 {margin-bottom: 40px;} /* 左外边距 */ .ml5 {margin-left: 5px;} .ml10 {margin-left: 10px;} .ml15 {margin-left: 15px;} .ml20 {margin-left: 20px;} .ml25 {margin-left: 25px;} .ml30 {margin-left: 30px;} .ml35 {margin-left: 35px;} .ml40 {margin-left: 40px;} /* 右外边距 */ .mr5 {margin-right: 5px;} .mr10 {margin-right: 10px;} .mr15 {margin-right: 15px;} .mr20 {margin-right: 20px;} .mr25 {margin-right: 25px;} .mr30 {margin-right: 30px;} .mr35 {margin-right: 35px;} .mr40 {margin-right: 40px;} /*文字对齐方式*/ .tl{text-align:left;} .tr{text-align:right;} .tc{text-align:center;} /*字体大小*/ .fs_12{font-size:12px;} .fs_14{font-size:14px;} .fs_16{font-size:16px;} .fs_18{font-size:18px;} .fs_20{font-size:20px;} .fs_22{font-size:22px;} .fs_24{font-size:24px;} .fs_26{font-size:26px;} .fs_28{font-size:28px;} .fs_30{font-size:30px;} /* 清除浮动-父级使用 */ .fn-clear:after{content:" ";height:0;display:block;font-size:0;visibility:hidden;clear:both;} /* 清除元素间隙 */ .fn-clear-gap{font-size:0;list-style:none;margin: 0;padding: 0;letter-spacing: 0;word-spacing: 0;} /* 隐藏, 通常用来与 JS 配合 */ .fn-hide{display:none;} /* 隐藏多余内容*/ .fn-hidden{overflow: hidden} /* 文本超出省略号显示 (一行) ------ 使用方式:@include single-line-ellipsis; */ @mixin single-line-ellipsis {text-overflow: ellipsis;overflow: hidden;word-wrap: break-word;white-space: nowrap;word-break: break-all;} /* 文本超出省略号显示 (多行),括号里传行数 ------ 使用方式:@include multi-line-ellipsis(3); */ @mixin multi-line-ellipsis($rows){-webkit-line-clamp:$rows;text-overflow: ellipsis;-o-text-overflow: ellipsis;overflow: hidden;word-wrap: break-word;display: -webkit-box;white-space: normal !important;-webkit-box-orient: vertical;} /************************ 网站公共class样式 author: TX date:2020-07-30 **********************/ /* 网站框架 */ .website-frame{ font-family: "Helvetica Neue", Helvetica, Arial, "微软雅黑", sans-serif; color: #2C3E50; min-width: 1240px; // head移动端响应式 @media (max-width: 768px){min-width: unset;} } /* 饿了么右侧生成的间距 */ .el-popup-parent--hidden{ padding-right:0 !important } /* 网站主体部分 */ .client-container{ width: 1200px;margin: 0 auto; @media (max-width: 768px){width: auto;padding: 0 15px;max-width: 100%;box-sizing: border-box;} } .client-container-middle{width: 960px;margin: 0 auto;} /* 网站头部导航栏 */ .client-head{ width: 100%; //height: 80px; height: 120px; z-index: 999; background: #fff; position: fixed; top:0; //头部布局 .head-layout{display: flex;justify-content: space-between;} //头部导航 .el-menu--horizontal{ border: 0; >.el-menu-item { color: rgba(0,0,0,0.85); @include setFontStyle(-2); height: 60px; line-height: 60px; margin: 0 10px; padding: 0!important; a{height: inherit;display: inline-block;padding: 0 6px;} } >.el-menu-item.is-active{ @include setThemeColorBase("color", 0); @include setThemeColorBase("border-color", 0); border-width:4px; } } //头部左侧区域 .head-left{ display: flex; width: 100%; justify-content: space-between; align-items: center; //头部图标 .client-head-img{width: 200px;height:79px;display: inline-block;background-image: url("~static/images/client/component/nav-logo.jpg");background-repeat: no-repeat;background-position: center;background-size: cover;margin-right: 40px;} } //头部右侧区域 .head-right{ line-height: 60px;position: relative; >a{height: 40px;line-height: 40px;@include setFontStyle(-4);padding: 0 30px;border-radius: 4px;display: inline-block;border: 1px solid #0366cd;color:#0064cc;box-sizing: border-box;text-align: center;} >a.right-tel-btn{width: 130px;color: #fff;background: #3e7ce7;border: 1px solid #3e7ce7;padding: 0 8px;margin-right:10px;position: relative;} >a:hover{cursor: pointer;} .system-box{width: 130px;height: 60px;position: absolute;top: 20px; z-index: 999} .system-box{ div{ display: none;min-width:260px;height:120px;position: absolute;background: #fff;border: 1px solid #b5b5b5;border-radius: 4px;padding: 10px 8px;left: 0;top:57px;transition: 5s; a{ display: inline-block; i{width: 110px;height: 84px;display: block;background-size: cover;} } a:nth-child(1){i{background-image:url("~static/images/client/exam/product-function-icon3.png");} } a:nth-child(3){i{background-image:url("~static/images/client/train/product-function-icon6.png");} } span{width: 1px;min-height: 88px;display:inline-block;background:#e8e8e8;@include setFontStyle(-4);margin: 10px;} p{@include setFontStyle(-4);color: rgba(0,0,0,0.85);line-height: 24px;text-align: center;} } // 伪类气泡箭头 div:after,div:before { width: 0; height: 0; font-size: 0; overflow: hidden; position: absolute; content: ' '; left: 60px; } div:after{ border-width: 10px; border-style: dashed dashed solid ; border-color: transparent transparent #ffffff; top: -19px; } div:before{ border-width: 10px; border-style: dashed dashed solid ; border-color: transparent transparent #666 ; top:-20px; } } .system-box:hover{ >div{ display: block; } } } .header-left-container { display: flex; justify-content: flex-end; align-items: center; .phone-tel-box { margin-right: 20px; display: flex; color: rgb(0, 84, 145); align-items: center; .phone-tel-box-icon { width: 25px; height: 25px; display: inline-block; margin-right: 5px; background-image: url("~static/images/client/component/head-phone-icon.png"); } } } // head移动端响应式 @media (max-width: 768px){ // head height: 60px;border-bottom: 1px solid #e7e7e7; //头部左侧区域 logo .head-left{ justify-content: space-between;height: 60px;align-items: center;padding:0; .client-head-img{width: 92px;height: 46px;background-size: contain;margin:0;} } //头部导航 .el-menu{position: absolute;margin: 0;left: 0;right: 0;height: 100vh;transition: 0.5s;top: 61px;} // 手机菜单关闭 .head-nav-up{height: 0;display:none;opacity: 0;} // 手机菜单开启 .head-nav-down{height: 100vh;display:block;opacity: 1;} // li .el-menu--horizontal>.el-menu-item{float: none;height: 60px;line-height: 60px;border-bottom: 1px solid #e9e9e9;margin:0 18px; border-bottom-color:#e9e9e9!important;font-weight: 700;font-size: 16px;color: rgb(16, 16, 16);} .el-menu--horizontal>.el-menu-item a{width: 100%} .el-menu--horizontal>.el-menu-item:last-child{border: 0;} .el-menu--horizontal > .el-menu-item.is-active{border-bottom: 1px solid #e9e9e9;border-bottom-color: #e9e9e9 !important;} // 咨询电话 .phone-tel-box{color: rgb(0, 84, 145);font-size: 14px;font-weight: bold;line-height: 60px;} // 按钮 .phone-nav-btn{width:30px;height:30px;background-image: url("~static/images/client/component/head-btn-icon.svg");} // 布局 .head-layout{display: block} } } /* 网站头部导栏 - 面包屑 */ .client-breadcrumb-box { width: 1200px; font-size: 16px; margin: 24px auto; .st-breadcrumb{ margin-left: 24px; a:last-child{ .breadcrumb-div::after{display: none;} } } .st-breadcrumb-item {display: inline-block;vertical-align: middle;color: #4a73fd;text-decoration: none;} .st-breadcrumb-item:hover {cursor: pointer;} .st-breadcrumb-item:after {width: 11px;height: 16px;content: '';display: inline-block;padding: 0 16px;vertical-align: middle;zoom:0.8;-moz-transform:scale(0.8,0.8); background-image: url("~static/images/client/component/breadcrumb-icon.svg");background-repeat: no-repeat;background-position: center;} .breadcrumb-div{display: inline-block;vertical-align: middle;} .st-breadcrumb-item-last {display: inline-block;text-decoration: none;color: #333;vertical-align: middle;} .st-breadcrumb-item-last:hover {cursor: default;} // IE11兼容写法 @media all and (-ms-high-contrast:none) { *::-ms-backdrop, .st-breadcrumb-item-last { margin-left: -10px;} } // IE10兼容写法 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .st-breadcrumb-item-last { margin-left: -10px;} } } /* 网站标题 */ .client-title{ @include setFontStyle(10);color: rgba(0,0,0,0.85);letter-spacing: 0;padding-top: 80px;text-align: center; // head移动端响应式 @media (max-width: 768px){@include setFontStyle(-4);padding-top: 20px;font-weight: 700;color: rgb(16, 16, 16);} } /* 网站副标题 */ .client-subtitle-title{ width: 650px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 30px;margin:0 auto;margin-top: 16px;text-align: center; @media (max-width: 768px){width: 100%;text-align: justify;@include setFontStyle(-6);line-height: 24px;} } .client-subtitle-title-big{ width: 1000px;padding:0 100px;@include setFontStyle(-4);color: rgba(0,0,0,0.65);line-height: 30px;margin:0 auto;margin-top: 48px;text-align: center; @media (max-width: 768px){width: 100%;text-align: justify;margin-top: 24px;padding: 0;@include setFontStyle(-6);line-height: 24px;} } /* 网站通用按钮 */ .client-default-Btn{display: block;@include setFontStyle(-4);background: #2B5CFD;color: rgba(255, 255, 255, 0.85);border-radius: 4px;transition: .3s all linear;text-align: center;} .client-default-Btn:hover{background: #2249C9;cursor: pointer;} // 白色 .client-default-white-Btn{display: block;@include setFontStyle(-4);background: #fff;color: #2B5CFD;border-radius: 4px;transition: .3s all linear;text-align: center;} .client-default-white-Btn:hover{background: #fff;cursor: pointer;} // 免费试用按钮 .free-trial-default-btn{ width: 238px;height: 40px;line-height: 40px;margin: 40px auto 0;display: block;@include setFontStyle(-4);background: #3e7ee7; color: rgba(255, 255, 255, 0.85);border-radius: 4px;transition: .3s all linear;text-align: center; @media (max-width: 768px){width: 122px;height: 35px;line-height: 35px;margin: 16px auto 28px;} } .free-trial-default-btn:hover{cursor: pointer;} /* 网站底部footer */ .client-footer{ background: #1E2534;padding-bottom: 50px; //footer内容区域 .contact-box{ padding-top: 40px; .contact-left-box{ display: inline-block; dl{display: inline-block;margin-right: 48px;margin-bottom: 40px;vertical-align: top;} dt{@include setFontStyle(-4);color: #FFFFFF;margin-bottom: 24px;} dd,dd a{@include setFontStyle(-6);color: rgba(255,255,255,0.64);margin-bottom: 8px;} dd:hover,dd a:hover{color: rgba(255,255,255,0.85);cursor: pointer} // 二维码 .two-code-box{position: relative;} .two-dimensional-code{width: 110px;height: 110px;background-color: #fff;background-image: url("~static/images/client/component/two-dimensional-code.jpg");display: none;position: absolute;left: 85px;top:-40px;background-size: cover;border-radius: 4px;transition: .5s; } .two-dimensional-code:before{width: 0;height: 0;content: "";display: none;margin-left: -20px;margin-top: 40px;border-width: 10px;border-style: solid;border-color: transparent #fff transparent transparent;transition: .5s; } .two-code-box:hover{ cursor: default; .two-dimensional-code{display: block;} .two-dimensional-code:before{display: block;} } } .contact-right-box{ //width: 170px; float: right; .right-sw-box{ margin-right: 24px; h4{@include setFontStyle(-4);color: #FFFFFF;margin-bottom: 16px;text-align: center} img{width: 100px} } div{display: inline-block} h3{@include setFontStyle(4);color: #FFF;margin-bottom: 16px;} p{@include setFontStyle(-6);color: rgba(255,255,255,0.64);margin-bottom: 8px;} a{@include setFontStyle(-6);color: #2B5CFD;} a:hover{cursor: pointer;} } } //友情链接区域 .link-box{ border-top: 1px solid #333B4C; border-right: 0; border-left: 0; padding: 32px 0; h4{@include setFontStyle(-4);color: #FFF;float: left;margin-right: 48px;line-height: 22px;} .link-a-box{ margin-left: 114px; line-height: 22px; a{@include setFontStyle(-6);color: rgba(255,255,255,0.54);display:inline-block;margin-right: 32px;white-space: nowrap;} a:hover{color: rgba(255,255,255,0.85);cursor: pointer;} } } //底部版权 h5{@include setFontStyle(-8);color: #B8B8B8;text-align: center;padding: 16px 0 24px;border-top: 1px solid #333B4C;} @media (max-width: 768px) { .phone-footer-box { text-align: center;padding: 20px 0; a,p{@include setFontStyle(-10);color: #fff;padding: 6px 0} a{display: block} } } } /* 网站分页 */ .client-el-pagination{text-align: center;margin-top: 36px} /* 网站通用详情页布局 */ .client-details-page{ background: #f9faff; width: 100%; padding: 24px 0; // 时间人数 .details-visits-box{ margin-bottom: 16px; 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");} i[type="visits"]{background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");} span{@include setFontStyle(-6);display:inline-block;color: #666;margin-right: 60px;vertical-align: middle;} } //行业资讯详情外层box .client-details-box{ width: 1200px; margin: 0 auto; padding: 24px; box-sizing: border-box; background: #FFFFFF; border-radius: 8px; } // 行业资讯详情 .client-details-wrap{ width: 820px; display: inline-block; padding-right: 24px; border-right:1px solid #DCE0E8; box-sizing: border-box; vertical-align: top; >h1{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 16px;} //内容区域 .client-content-box{ min-height: calc(100vh - 587px); line-height: 24px; color: rgba(0,0,0,0.64); @include setFontStyle(-6); margin-bottom: 70px; p{line-height: 22px;} img{max-width: 100%;} h1,h2,h3,h4,h5,h6,p{margin-bottom: 10px;} } // 上一篇下一篇 .client-details-pagination{ a{max-width: 45%;float: left;@include setFontStyle(-4);color: rgba(43,92,253,0.85);display: inline-block;@include single-line-ellipsis;} a:last-child{margin-left: 10%;float: right;} a:hover{color: #1648EE;cursor: pointer} } } // 最新新闻 .latest-news-box{ width: 300px; padding-left: 24px; display: inline-block; vertical-align: top; h4{@include setFontStyle(-4);color: rgba(0,0,0,0.85);margin-bottom: 16px;} .latest-news-list{ li{margin-bottom: 24px} a{width: 100%;@include setFontStyle(-4);display:inline-block;color: rgba(43,92,253,0.65);margin-bottom: 8px;@include single-line-ellipsis;} a:hover{color: rgba(43,92,253,0.85);cursor: pointer} } // 时间人数 .details-visits-box span{margin-right: 24px;} } @media (max-width: 768px) { padding: 0; // 时间人数 .details-visits-box{ margin-bottom: 36px;text-align: center; i{width: 16px;height: 16px;margin-right: 6px;background-size: cover;} span{@include setFontStyle(-8);margin-right: 24px;line-height: 12px;} } //行业资讯详情外层box .client-details-box{width: 100%;} // 行业资讯详情 .client-details-wrap{ width: 100%;border: 0;padding-right:0; >h1{@include setFontStyle(-4);margin: 16px 0;text-align: center;font-weight: bolder;} //内容区域 .client-content-box{ min-height:unset; } // 上一篇下一篇按钮 .client-details-pagination a{border: 1px solid rgba(43, 92, 253, 0.85);padding: 4px 12px;border-radius: 4px;} } } } /* 网站通用轮播 */ /*.client-industry-information{ background-image: url("~static/images/client/index/index-industry-bg.png"); background-position: center; padding-bottom: 80px; // 标题 .client-title{ color: #fff; } // 轮播 .information-carousel-box{ width: 100%; overflow: hidden; } // 轮播组件 .el-carousel--horizontal{ overflow: visible; } .el-carousel{ width: 1000px; margin: 0 auto; margin-top: 48px; .el-carousel__container{width: 640px;height: 320px;margin: 0 auto;position: relative;} } .el-carousel__item{ width: 640px; background: #FFFFFF; border-radius: 8px; .industry-img-box{width: 50%;height: 320px;float: left;background-repeat: no-repeat;background-size: cover;} .industry-content-box{ height: inherit;margin-left: 50%;padding:32px;box-sizing: border-box;position: relative; h5{@include setFontStyle(2);color: rgba(0,0,0,0.85);margin-bottom: 16px;@include multi-line-ellipsis(2);line-height: 30px;max-height: 60px;} p{@include setFontStyle(-4);color: rgba(0,0,0,0.64);line-height: 24px;@include multi-line-ellipsis(6);margin-bottom: 24px;max-height: 144px;} a{width: 132px;height: 32px;line-height:32px;position: absolute;bottom: 32px;} } } !*.el-carousel__item.is-active{ .industry-img-box{width: 50%;} .industry-content-box{margin-left: 50%;} }*! // 左右按钮 .el-carousel__arrow{width: 50px;height: 50px;background-color: rgba(43, 92, 253, 0.22);@include setFontStyle(16);color: rgba(255,255,255,0.8);} // 左箭头 .el-carousel__arrow--left{left:-200px;} // 右箭头 .el-carousel__arrow--right{right:-200px;} // 指示器 .el-carousel__indicators{display: none} }*/ /* 网站通用弹窗-申请方案 */ .application-scheme-dialog{ .el-dialog{width: 610px;border-radius: 8px;} .el-dialog__body{ padding: 30px 120px 60px; >i{width:213px;height:92px;display: block;background-image: url("~static/images/client/course/course-dialog-img.png");margin: 0 auto;} p{@include setFontStyle(-2);color: rgba(0,0,0,0.85);text-align: center;margin:24px 0 36px;} span{@include setFontStyle(-6);color: rgba(0,0,0,0.65);} a{@include setFontStyle(-6);color: #2B5CFD;float: right;} // 申请注册按钮 .application-scheme-btn{height: 40px;line-height: 40px;@include setFontStyle(-4);background: #1890FF;border-radius: 4px;color: #FFFFFF;text-align: center;margin-bottom: 16px;} } // 输入框上下间距 .el-form-item{margin-bottom: 24px} // 输入框左右间距 .el-input .el-input__inner{padding: 0 15px 0 35px;} //输入框图标 .dialog-input-tel:after,.dialog-input-code:after{width: 16px;height: 16px;content: "";display: inline-block;position: absolute;top: 12px;left: 12px;} .dialog-input-tel:after{background-image: url("~static/images/client/course/course-dialog-icon1.svg");} .dialog-input-code:after{background-image: url("~static/images/client/course/course-dialog-icon2.svg");} // 输入框-验证码 .dialog-input-code{width: calc(100% - 132px);} .dialog-code-btn.el-button{width:120px;box-sizing:border-box;padding: 12px 15px;margin-left: 8px;} // 滑块px .nc-container{ .nc_wrapper{width:100%!important;margin-bottom: 24px;border-radius: 4px;overflow: hidden;} .nc_scale{ .btn_slide{color: #fff;} span{width:50px;background: #3893FE;border-radius: 0 4px 4px 0;border: 1px solid transparent;} } } } /* 网站通用弹窗-视频播放 */ .course-video-dialog{ .el-dialog{width: 940px;border-radius: 8px;} .el-dialog__body{padding: 14px 40px 80px;} // 标题 .el-dialog__title{@include setFontStyle(-2);color: rgba(0,0,0,0.85);} // 视频 .course-video-box{width: 100%;height: 480px;} p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);margin-top: 16px;line-height: 22px} @media (max-width: 768px){ .el-dialog{width: 90%;border-radius: 8px;margin: 0 5%;} .el-dialog__body{padding: 0 16px;} // 视频 .course-video-box{height: 180px;} p{@include setFontStyle(-6);padding: 10px 0 16px;margin: 0} } } /* 首页行业学习详情页-通用部分 */ // banner .industrydetails-banner{ width: 100%; height: 400px; background-color:#042D85; position: relative; .industrydetails-banner-box{width:inherit;height:inherit;background-position-x: center;background-repeat: no-repeat;} .free-trial-default-btn{position: absolute;top:280px;left: 50%;margin-left: -119px;} @media (max-width: 768px){ height: 150px; .industrydetails-banner-box{background-size: cover;} .free-trial-default-btn{top:95px;margin-left: -61px;} } } // 发展现状 .industrydetails-develop-box{ .client-container{padding: 48px 0 80px;text-align: center;} p{width: 480px;display: inline-block;@include setFontStyle(-5);color: rgba(0,0,0,0.65);line-height: 30px;vertical-align: middle;margin-right: 120px;text-align: justify;} img{display: inline-block;vertical-align: middle;} @media (max-width: 768px){ .client-container{padding: 16px 30px 48px;display: flex;flex-direction: column-reverse;} p{width: 100%;display: block;@include setFontStyle(-6);color: rgba(85, 85, 85, 1);line-height: 24px;margin-right: 0;} img{max-width: 100%;display: block;vertical-align:unset;margin-bottom: 16px;} } } // 产品和服务 .products-services-box{ width: 100%;display: inline-block; // 头部图片 img{width: 640px;height: 485px;float: right;} // 内容区域 .products-services-content{ width: 500px; float: right; padding: 110px 12px 0; box-sizing: border-box; margin: 0 20px; @include setFontStyle(-6); h5{@include setFontStyle(4);color: rgba(0,0,0,0.85);} i{width:50px;height:5px;display: block;background: #3e7ce7;margin: 24px 0;} p{line-height: 24px;color: rgba(0,0,0,0.65);margin-bottom: 56px;text-align: justify;} .p-before-circle{margin-bottom: 6px;} .p-before-circle:before{ content: ''; width: 6px; height: 6px; display: inline-block; border-radius: 3px; margin-right: 8px; background: #3e7ce7; vertical-align: middle; } .client-btn-box{margin: 40px 0} .client-default-Btn,.client-default-white-Btn{width: 150px;height: 40px;line-height: 40px;display:inline-block;background: #3e7ce7;border: 1px solid #3e7ce7;box-sizing: border-box;} .client-default-white-Btn{background: #fff;color: #3e7ce7;} a,div.client-default-Btn{margin-right: 24px} span.client-default-Btn{background: #fff;color: #3e7ce7;margin-right: 0;} } @media (max-width: 768px){ // 头部图片 img{width: 100%;height: auto;float: none;} // 内容区域 .products-services-content{ width: 100%;float: none;padding: 0 10px;margin: 0; @include setFontStyle(-6); h5{@include setFontStyle(-6);font-weight: 700;color: rgba(0, 0, 0, 1);} i{width:34px;height:3px;margin: 10px 0;} p{margin-bottom: 30px;color: rgba(85, 85, 85, 1);} .client-btn-box{text-align: center;margin:40px 0;} .client-default-Btn,.client-default-white-Btn{width: 120px;height: 35px;line-height: 35px;} a,div.client-default-Btn{margin-right: 16px} } } } .products-contrary-box{ // 头部图片 img{float: left;} // 内容区域 .products-services-content{float: right;} } // 考试平台和培训平台样式--多下边线 .platform-products-services{ li:not(:last-child){border-bottom:1px solid #eee; } } // 详情页内容 .industrydetails-content{ li{margin-bottom: 16px;} i{width: 14px;height: 14px;float:left;box-sizing: border-box;opacity: 0.8;display: block;border: 1px solid #13192D;transform: rotate(45deg);margin-right: 16px;margin-top: 4px;} h5{@include setFontStyle(-2);color: rgba(0,0,0,0.85);margin-bottom: 24px;text-align: center;} p{@include setFontStyle(-5);color: rgba(0,0,0,0.65);line-height: 22px;text-align: left;} @media (max-width: 768px) { li{margin-bottom: 10px;} i{width: 10px;height: 10px;margin-right: 8px;margin-top: 8px;} h5{@include setFontStyle(-4);color: rgba(255, 255, 255, 1);margin-bottom: 16px;text-align: center;font-weight: 700;} p{@include setFontStyle(-6);color: rgba(255, 255, 255, 1);line-height: 24px;text-align: justify;} } } // 通用平台-新闻资讯样式 .platform-news-information{ padding-bottom: 80px; background: #f8f8f8; ul{margin-top: 48px;} li{ width: 50%;display: inline-block;vertical-align: top; div{margin: 10px;padding:10px 10px 10px 0;border-bottom:1px dashed #666;} img{width: 190px;height: 118px;float: left;margin-right: 24px;} h4{@include setFontStyle(-2);color: rgba(0, 0, 0, 0.85);@include single-line-ellipsis;margin-bottom: 8px;} h4:hover{color: #3e7ce7;cursor: pointer;} span{display: block;@include setFontStyle(-6);color: rgba(0, 0, 0, 0.65);margin-bottom: 8px;} p{@include setFontStyle(-6);height: 66px;line-height: 22px;color: rgba(0, 0, 0, 0.65);@include multi-line-ellipsis(3);} } } // 页面内部导航菜单(课程开发和客户案例) .platform-menu-ul{ display: block; margin: 0 auto; text-align: center; background: #F7F9FB; 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} li.active{color: #2B5CFD;background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);} li:hover{ transform: scale(1.1); } @media (max-width: 768px){ background: #fff;margin: 20px 0 0; 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); color: rgb(0, 102, 204);background: #fff;box-shadow: 0 2px 4px 0 rgba(43,92,253,0.16);box-sizing: border-box} li.active{color: #fff;background: rgb(0, 102, 204);} li:hover{transform: none;} } } /* 页面课程列表 */ .course-learn-box{ // video列表 .learn-box-list{ margin: 54px -16px 0; li{ width: 33.33%;display: inline-block;text-align: center; a{display: none;} div{background: #fff;border-radius: 8px;margin: 0 16px 40px;} span{width:342px;height:192px;display: inline-block;margin-top: 16px;border-radius:4px;overflow: hidden;position: relative} i{width: 48px;height: 48px;cursor: pointer;background-image: url("~static/images/client/course/course-video-icon.svg");display: inline-block;position: absolute; left: 50%;margin-left: -24px;z-index: 5;top: 50%;margin-top: -24px;background-size: cover;background-position: bottom;transition: all 0.5s;} img{transition: all 0.5s;} p{@include setFontStyle(-4);color: rgba(0,0,0,0.65);padding: 24px 0 24px;} } li span:hover{img{transform: scale(1.1);}} li i:hover{background-image: url("~static/images/client/course/course-video-icon-a.svg");background-size: cover;background-position: bottom;} } @media (max-width: 768px){ margin: 0 6%; // video列表 .learn-box-list{ margin: 12px 0; li{ width: 100%;margin-bottom: 20px; div{margin: 0;padding: 0;box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px -1px;border-radius:0;} span{width: 100%;height: 180px;margin-top: 0;border-radius:0;} img{width: 100%;} p{padding: 20px 0 20px;@include setFontStyle(-6);color: #101010;} } } } } /* 底部跳转 */ .bottom-btn-box{ height: 50px;position: fixed;bottom: 0;left: 0;right: 0;font-size: 0;background: #fff;z-index: 99999;border-top: 1px solid #ccc; li{width: 25%;margin: 0;padding: 0;} a{width: 100%;height: 50px;line-height: 1;display: inline-block;text-align: center;font-size: 13px;color: #333;margin: 6px 0;} i{width:22px;height: 22px;background-size:cover;display: block;margin: 0 auto 3px;} span{color: #333;} li:nth-child(1) i{background-image: url("~static/images/icons/shouye.svg");} li:nth-child(2) i{background-image: url("~static/images/icons/tiyan.svg");} li:nth-child(3) i{background-image: url("~static/images/icons/dianhua.svg");} li:nth-child(4) i{background-image: url("~static/images/icons/zixun.svg");} li.is-active span{color: #2881db;} li.is-active:nth-child(1) i{background-image: url("~static/images/icons/shouye-a.svg");} li.is-active:nth-child(2) i{background-image: url("~static/images/icons/tiyan-a.svg");} li.is-active:nth-child(3) i{background-image: url("~static/images/icons/dianhua-a.svg");} li.is-active:nth-child(4) i{background-image: url("~static/images/icons/zixun-a.svg");} } /********************************* 麦塔栅格**********************************/ /* 栅格说明: 1.网站内容区域1200px; 2.手机端<=768 3.pad-------------------(769---992---1200) pad768*1024(手机样式) pad1024*1366(pad样式) 4.pc---1200以上 */ // 大于768的隐藏 @media screen and (min-width: 769px) { .mta-hidden-sm{display: none!important;} } // 小于769的隐藏 @media screen and (max-width: 769px) { .mta-hidden-xs{display: none!important;} // 提示框 .phone-message-box{ width: 88%;min-width: unset;top: 35% !important;display: block;text-align: center;padding: 36px 0; .el-message__icon{margin-bottom: 20px;} .el-message__icon:before{font-size: 50px;} } } /********************************* 麦塔移动端组件**********************************/ @media (max-width: 768px) { // swiper .experience-swiper-box { position: relative; // swiper--div .swiper-slide {width: 100%;} .swiper-pagination-style { width: 80px;position: absolute;bottom: 66px;left: 50%;margin-left: -30px;z-index: 99; // 小圆点 .my-bullet-swiper {width: 10px;height: 10px;border-radius: 5px;display: inline-block;background: rgba(0, 102, 204, 0.2);margin-right: 14px;} // 分页active .my-bullet-active-swiper {background: rgb(0, 102, 204)} } // swiper 内容区 .experience-content-box { height: 243px;display: flex;flex-direction: column;align-items: center;justify-content: center; margin: 5px 4% 40px;box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px -1px;text-align: center;padding: 20px 0; i {width: 64px;height: 64px;background-repeat: no-repeat;background-size: contain;margin-bottom: 24px;display: inline-block;flex-shrink: 0;} h5 {font-weight: 700;font-size: 16px;color: rgb(16, 16, 16);margin-bottom: 30px;} p {font-weight: 400;font-size: 14px;color: rgb(16, 16, 16);margin: 6px 0;} a {width: 122px;height: 35px;line-height: 35px;background-color: rgb(0, 102, 204);color: rgb(255, 255, 255);border-radius: 5px;font-size: 14px; padding: 0;text-align: center;display: inline-block;margin-top: 16px; } } // swiper 提示 .experience-swiper-tip {font-weight: 400;font-size: 14px;color: rgb(96, 96, 96);text-align: center;margin: 0 0 42px;} } // 移动端点击a标签背景变色bug修复 a{-webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-user-select: none; -moz-user-focus: none; -moz-user-select: none;} }