/* 网站背景 */
.bg-color{background-color: #fff;}
/* 导航 */
.nav-bar{background-color: #fff;height: 100px;position: fixed;top: 0;left: 0;width: 100%;z-index: 99;}
.nav-bar .navbox{width: 1800px;margin: 0 auto;}
.nav-bar .logo{float: left;height: 100px;display: flex;align-items: center;}
.nav-bar .logo img{height: 58px;}
.nav-bar .logo .txt{margin-left: 24px;border-left: 1px solid #d2d2d2;padding-left: 15px;color: #666;font-size: 16px;line-height: 1.6;}
.nav-bar .list{float: right;width: calc(100% - 650px);display: flex;justify-content: center;flex-direction: column;}
.nav-bar .list ul{display: flex;justify-content: space-between;align-items: center;}
.nav-bar .list ul li{line-height: 100px;margin-left: auto;}
.nav-bar .list ul li#home{margin-left: 0;}
.nav-bar .list ul li a{position: relative;display: block;font-size: 18px;color: #333;transition: all 0.5s ease-in-out;}
.nav-bar .list ul li a::after{position: absolute;content: '';left: 50%;bottom: 16px;width: 7px;height: 7px;background-color: #0069bc;transform: translateX(-50%);opacity: 0;border-radius: 50%;transition: all 0.5s ease-in-out;}
.nav-bar .list ul li a:hover,
.nav-bar .list ul li.active a{color: #000;font-weight: 700;}
.nav-bar .list ul li a:hover::after,
.nav-bar .list ul li.active a::after{opacity: 1;}
.nav-bar .list ul .tel{color: #666;font-size: 16px;height: 100px;line-height: 24px;padding-left: 50px;margin-left: auto;display: flex;justify-content: center;flex-direction: column;background-image: url(../images/nav-tel.png);background-position: left center;background-repeat: no-repeat;}
.nav-bar .list ul .tel span{font-weight: 700;font-size: 24px;display: block;color: #908e90;letter-spacing: 0;}
@media(max-width: 1830px){
	.nav-bar .navbox{width: 1300px;}
	.nav-bar .logo .txt{display: none;}
	.nav-bar .list{width: calc(100% - 450px);}
	.nav-bar .list ul .tel{display: none;}
	.nav-bar .list ul li a::after{background-color: #be0725;}
}
.nav-bar.nav-move{-webkit-transform: translateY(-100%);transform: translateY(-100%);box-shadow: none !important;}
.nav-bar.nav-hide{box-shadow: 0 2px 11px rgba(0, 0, 0, 0.5);height: 80px;background-color: rgba(255, 255, 255, 1);}
.nav-bar.nav-hide .logo{height: 80px;}
.nav-bar.nav-hide .logo img{height: 50px;}
.nav-bar.nav-hide .list ul li{line-height: 80px;}
.nav-bar.nav-hide .list ul .tel{height: 80px;}
/* 二级导航 */
.subNavBox{background: #efefef url(../images/subnav_bg.png) no-repeat right center;position: absolute;left: 0;width: 100%;transition: 0.5s ease 0s;transform-origin: top;opacity: 0;transform: scale(1, 0);overflow: hidden;}
.subNavBox .left{width: 440px;height: 275px;margin: 35px 0;position: relative;float: left;}
.subNavBox .left .img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;}
.subNavBox .left .img img{width: 100%;height: 100%;object-fit: cover;}
.subNavBox .left .name{position: absolute;top: 50%;left: 50%;width: 200px;height: 126px;line-height: 126px;text-align: center;color: #fff;font-size: 24px;background-color: rgba(0,97,174,0.65);transform: translate(-50%,-50%);}
.subNavBox .sublist{float: right;width: 780px;margin-top: 35px;}
.subNavBox .sublist dt{float: left;width: 260px;margin-right: 26px;margin-bottom: 35px;}
.subNavBox .sublist dt a{border: 1px solid #dcdcdc;background-color: #fff;padding: 0 55px 0 22px;height: 48px;line-height: 48px;}
.subNavBox .sublist dt a::after{display: none;}
.subNavBox .sublist dt a::before{content: '';position: absolute;right: 25px;top: 50%;width: 25px;height: 6px;background-image: url(../images/nav-icon01.png);background-position: center;background-repeat: no-repeat;transform: translateY(-50%);transition: all 0.5s ease-in-out;}
.subNavBox .sublist dt a:hover{font-weight: 400 !important;background-color: #005bac;color: #fff !important;}
.subNavBox .sublist dt a:hover::before{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);}
.subNavBox .subNvRx{float: right;width: 780px;}
.subNavBox .subNvRx dl{width: calc(33.33% - 32px);float: left;position: relative;padding-left: 32px;}
.subNavBox .subNvRx dl::before,
.subNavBox .subNvRx dl::after{content: '';position: absolute;top: 0;width: 1px;height: 100%;min-height: 345px;}
.subNavBox .subNvRx dl::before{left: 0;background-color: #d9d9d9;}
.subNavBox .subNvRx dl::after{left: 1px;background-color: #fff;}
.subNavBox .subNvRx dl dt{margin-top: 35px;line-height: 1;padding-left: 14px;border-left: 3px solid #0061ae;margin-bottom: 15px;}
.subNavBox .subNvRx dl dt a::after{display: none;}
.subNavBox .subNvRx dl dt a:hover{color: #0061ae !important;font-weight: 400 !important;}
.subNavBox .subNvRx dl dd{padding-left: 14px;line-height: 30px;}
.subNavBox .subNvRx dl dd a{color: #666 !important;font-size: 15px !important;}
.subNavBox .subNvRx dl dd a::after{display: none;}
.subNavBox .subNvRx dl dd a:hover{color: #0061ae !important;font-weight: 400 !important;text-decoration: underline;}
.nav-bar .list ul li:hover .subNavBox{transform: scale(1);opacity: 1;}
.nav-bar .list ul li.active dl a{color: #666;font-weight: 400;}
.nav-bar .list ul li.active dt a{font-weight: 400;}
/* banner大图 */
.banner{width: 100%;margin: 100px auto 0;position: relative;overflow: hidden;z-index: 1;text-align: center;}
.banner a{display: block;}
.banner img{width: 100%;}
.banner .banner-prev,
.banner .banner-next{width: 70px;height: 70px;background-color: rgba(0,0,0,0.45);margin-top: -35px;background-size: 18px 14px;}
.banner .banner-prev{left: 0;background-image: url(../images/banner-left.png);}
.banner .banner-next{right: 0;background-image: url(../images/banner-right.png);}
.banner .banner-prev:hover,
.banner .banner-next:hover{background-color: #0069bc;}
.banner .swiper-pagination{bottom: 28px;display: flex;justify-content: center;align-items: center;}
.banner .swiper-pagination-bullet{width: 26px;height: 26px;margin: 0 5px;border-radius: 50%;opacity: 1;background-color: transparent;border-width: 2px;border-style: solid;border-color: transparent;position: relative;transition: all 0.5s ease-in-out;}
.banner .swiper-pagination-bullet::before{content: '';position: absolute;top: 50%;left: 50%;width: 8px;height: 8px;background-color: #fff;border-radius: 50%;transform: translate(-50%,-50%);transition: all 0.5s ease-in-out;}
.banner .swiper-pagination-bullet-active{border-color: #0069bc;}
.banner .swiper-pagination-bullet-active::before{background-color: #0069bc;}
#main{overflow: hidden;}
/* 首页MORE */
#main .indexmore{display: flex;justify-content: center;align-items: center;color: #686868;font-size: 18px;height: 50px;border-radius: 30px;}
#main .indexmore i{width: 28px;height: 28px;border-radius: 50%;background-color: #005bac;background-image: url(../images/index-more.png);background-position: center;background-repeat: no-repeat;background-size: 15px 13px;margin-right: 15px;}
#main .indexmore:hover{background-color: #005bac;color: #fff;padding: 0 25px;}
#main .indexmore:hover i{background-color: #be0725;}
/* 公司简介 */
#main .company-main{padding: 80px 0;background-image: url(../images/companybg.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;}
#main .company-main .box{width: 580px;float: left;}
#main .company-main .box .name{color: #005bac;font-size: 40px;font-weight: 700;line-height: 1;}
#main .company-main .box .txt{color: #333;font-size: 24px;line-height: 1;margin: 15px 0 30px 0;}
#main .company-main .box .con{color: #686868;line-height: 1.8;font-size: 16px;text-align: justify;}
#main .company-main .box .more{margin-top: 44px;display: flex;}
#main .company-main .box .list{margin-top: 60px;border: 1px solid #dcdcdc;}
#main .company-main .box .list li{width: 33.33%;float: left;}
#main .company-main .box .list li a{display: block;background-color: #fff;border-left: 1px solid #dcdcdc;display: flex;height: 76px;align-items: center;padding: 0 20px;position: relative;z-index: 1;}
#main .company-main .box .list li:first-child a{border-left: none;}
#main .company-main .box .list li a::before{content: '';position: absolute;top: 0;left: 0;width: 0;height: 100%;background-color: #005bac;z-index: -1;transition: all 0.5s ease-in-out;}
#main .company-main .box .list li a .icon{margin-right: 18px;}
#main .company-main .box .list li a .icon img{max-width: 100%;}
#main .company-main .box .list li a .tit{color: #393939;font-size: 18px;}
#main .company-main .box .list li a:hover::before{width: 100%;}
#main .company-main .box .list li a:hover .icon img{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);-webkit-animation-name: pulse-shrink;animation-name: pulse-shrink;-webkit-animation-duration: 0.3s;animation-duration: 0.3s;-webkit-animation-timing-function: linear;animation-timing-function: linear;-webkit-animation-iteration-count: infinite;animation-iteration-count: infinite;-webkit-animation-direction: alternate;animation-direction: alternate;}
@-webkit-keyframes pulse-shrink{to{-webkit-transform: scale(0.9);transform: scale(0.9);}}
@keyframes pulse-shrink{to{-webkit-transform: scale(0.9);-ms-transform: scale(0.9);transform: scale(0.9);}}
#main .company-main .box .list li a:hover .tit{color: #fff;}
#main .company-main .company-video{float: right;width: 650px;height: 425px;position: relative;}
#main .company-main .company-video .company-video-img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;}
#main .company-main .company-video .company-video-img img{width: 100%;height: 100%;object-fit: cover;}
#main .company-main .company-video .company-video-icon{position: absolute;left: 50%;top: 50%;-webkit-transform: translate(-50%,-50%);-moz-transform: translate(-50%,-50%);-ms-transform: translate(-50%,-50%);-o-transform: translate(-50%,-50%);transform: translate(-50%,-50%);width: 80px;height: 80px;background-color: #fff;border-radius: 100%;cursor: pointer;z-index: 1;}
#main .company-main .company-video .company-video-icon img{position: absolute;max-width: 100%;max-height: 100%;top: 0;bottom: 0;left: 0;right: 0;margin: auto;}
#main .company-main .company-video .company-video-icon i,
#main .company-main .company-video .company-video-icon i:before,
#main .company-main .company-video .company-video-icon i:after{display: block;position: absolute;top: 50%;left: 50%;width: 80px;height: 80px;transform: translate(-50%, -50%);-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);box-shadow: 0 0 0 0 rgb(255 255 255 / 55%);-webkit-animation: ripple 3s infinite;animation: ripple 3s infinite;border-radius: 100%;}
@-webkit-keyframes ripple{70%{box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);}100%{box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);}}
@keyframes ripple{70%{box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);}100%{box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);}}
#main .company-main .company-video .company-video-icon i{border: 6px solid rgba(255, 255, 255, 0.5);box-sizing: content-box;}
#main .company-main .company-video .company-video-icon i:before{-webkit-animation-delay: 0.9s;animation-delay: 0.9s;content: "";position: absolute;}
#main .company-main .company-video .company-video-icon i:after{-webkit-animation-delay: 0.6s;animation-delay: 0.6s; content: "";position: absolute;}
/* 产业布局 */
#main .layout-main{height: 800px;position: relative;}
#main .layout-main .bd,
#main .layout-main .hd{position: absolute;left: 0;width: 100%;}
#main .layout-main .bd{top: 0;height: 100%;}
#main .layout-main .bd .slideBox{height: 100%;}
#main .layout-main .bd .slideBox .img{width: 100%;height: 100%;overflow: hidden;}
#main .layout-main .bd .slideBox .img img{width: 100%;height: 100%;object-fit: cover;}
#main .layout-main .bd .slideBox .box{position: absolute;top: 140px;left: 0;width: 100%;z-index: 1;}
#main .layout-main .bd .slideBox .box .name{display: inline-block;color: #fff;font-size: 40px;font-weight: 700;line-height: 1;position: relative;z-index: 1;}
#main .layout-main .bd .slideBox .box .name::before{content: "";display: block;width: 50px;height: 54px;background-image: url(../images/layout-top.png);background-position: center;background-repeat: no-repeat;background-size: 100% auto;position: absolute;right: -25px;top: -27px;animation: fzyd 20s infinite ease-in-out;z-index: -1;}
@keyframes fzyd{0%{ transform: scale(1,1) rotate(0deg);}50%{transform: scale(.6,.6) rotate(360deg);}100%{transform: scale(1,1) rotate(0deg);}}
#main .layout-main .bd .slideBox .box .tags{padding-left: 44px;color: #fff;font-size: 20px;line-height: 1;position: relative;margin: 24px 0 34px 0;}
#main .layout-main .bd .slideBox .box .tags::before,
#main .layout-main .bd .slideBox .box .tags::after{content: '';position: absolute;top: 50%;left: 0;transform: translateY(-50%);}
#main .layout-main .bd .slideBox .box .tags::before{width: 13px;height: 5px;background-color: #005bac;z-index: 2;}
#main .layout-main .bd .slideBox .box .tags::after{width: 31px;height: 1px;background-color: #fff;z-index: 1;}
#main .layout-main .bd .slideBox .box .con{color: #fff;font-size: 18px;line-height: 1.7;width: 740px;padding-top: 40px;border-top: 1px dashed rgba(255,255,255,0.35);}
#main .layout-main .bd .slideBox .box .list{margin-top: 70px;width: 490px;background-color: #fff;position: relative;z-index: 1;}
#main .layout-main .bd .slideBox .box .list::before,
#main .layout-main .bd .slideBox .box .list::after{content: '';position: absolute;top: 50%;transform: translateY(-50%);width: 28px;height: 28px;background-color: #fff;border-radius: 50%;z-index: -1;}
#main .layout-main .bd .slideBox .box .list::before{left: -14px;}
#main .layout-main .bd .slideBox .box .list::after{right: -14px;}
#main .layout-main .bd .slideBox .box .list .tempWrap{width: 100% !important;}
#main .layout-main .bd .slideBox .box .list li{width: 33.33%;float: left;}
#main .layout-main .bd .slideBox .box .list li a{display: block;text-align: center;padding: 10px;border-right: 1px solid #dcdcdc;height: 90px;line-height: 90px;font-size: 0;}
#main .layout-main .bd .slideBox .box .list li a img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#main .layout-main .bd .slideBox .box .list li a:hover img{transform: scale(1.1);}
#main .layout-main .bd .slideBox .box .list .sPrev,
#main .layout-main .bd .slideBox .box .list .sNext{position: absolute;top: 50%;transform: translateY(-50%);width: 18px;height: 18px;border-radius: 50%;background-color: #bfbfbf;background-position: center;background-repeat: no-repeat;z-index: 2;}
#main .layout-main .bd .slideBox .box .list .sPrev{left: -9px;background-image: url(../images/layout-left.png);}
#main .layout-main .bd .slideBox .box .list .sNext{right: -9px;background-image: url(../images/layout-right.png);}
#main .layout-main .bd .slideBox .box .list .sPrev:hover,
#main .layout-main .bd .slideBox .box .list .sNext:hover{background-color: #005bac;}
#main .layout-main .hd{bottom: 0;z-index: 3;}
#main .layout-main .hd ul{background-color: rgba(255,255,255,0.15);}
#main .layout-main .hd li{float: left;width: 25%;}
#main .layout-main .hd li a{display: block;height: 130px;border-left: 1px solid rgba(255, 255, 255, 0.5);display: flex;justify-content: center;align-items: center;flex-direction: column;position: relative;z-index: 1;}
#main .layout-main .hd li a::before{content: '';position: absolute;top: 0;left: 0;width: 0;height: 100%;background-color: #005bac;z-index: -1;transition: all 0.5s ease-in-out;}
#main .layout-main .hd li:first-child a{border-left: none;}
#main .layout-main .hd li a .icon{height: 40px;}
#main .layout-main .hd li a .icon img{max-height: 100%;}
#main .layout-main .hd li a .name{color: #fff;font-size: 20px;line-height: 1;margin-top: 18px;}
#main .layout-main .hd li.on a::before{width: 100%;}
/* 新闻动态 */
#main .news-main{background-color: #fff;padding: 80px 0;}
#main .news-main .top{margin-bottom: 20px;display: flex;justify-content: space-between;align-items: center;}
#main .news-main .top .name{line-height: 1;color: #000;font-size: 40px;font-weight: 700;}
#main .news-main ul{margin: 0 -18px;}
#main .news-main ul li{width: 409px;float: left;margin: 0 18px;}
#main .news-main ul li a{display: block;}
#main .news-main ul li a .img{width: 100%;height: 296px;overflow: hidden;position: relative;}
#main .news-main ul li a .img img{width: 100%;height: 100%;object-fit: cover;}
#main .news-main ul li a .con{padding: 0 18px 30px 18px;background-color: #f8f8f8;}
#main .news-main ul li a .con .tit{margin-bottom: 36px;}
#main .news-main ul li a .con .tit .time{width: 90px;height: 72px;float: left;padding-top: 18px;background-color: #005bac;color: #fff;text-align: center;margin-top: -45px;position: relative;}
#main .news-main ul li a .con .tit .time .time-img{width: 30px;height: 30px;margin: 0 auto;background: url(../images/news-time.png);background-position: center;background-repeat: no-repeat;}
#main .news-main ul li a .con .tit .time p{font-size: 18px;line-height: 35px;}
#main .news-main ul li a .con .tit .title{float: right;width: 260px;color: #000;font-size: 20px;line-height: 24px;margin-top: 21px;}
#main .news-main ul li a .con .text{color: #666;font-size: 14px;line-height: 24px;margin-bottom: 30px;}
#main .news-main ul li a .con .icon{width: 30px;height: 7px;background: url(../images/news-more.png);background-position: center;background-repeat: no-repeat;}
#main .news-main ul li a:hover .img img{transform: scale(1.1);}
#main .news-main ul li a:hover .con{background-color: #005bac;}
#main .news-main ul li a:hover .con .tit .time{background-color: #fff;color: #000;}
#main .news-main ul li a:hover .con .tit .time .time-img{background: url(../images/news-timeH.png);}
#main .news-main ul li a:hover .con .tit .title,
#main .news-main ul li a:hover .con .text{color: #fff;}
#main .news-main ul li a:hover .con .icon{background: url(../images/news-moreH.png);}
/* 卓超商学院 */
#main .school-main{overflow: hidden;}
#main .school-main .list{float: left;width: 50%;}
#main .school-main .list li{width: 100%;height: 380px;}
#main .school-main .list li a{display: block;width: 100%;height: 100%;position: relative;}
#main .school-main .show{float: right;width: 50%;height: 760px;position: relative;}
#main .school-main .img,
#main .school-main .bg{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
#main .school-main .list li a .img::before{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(0, 0, 0, 0.95);}
#main .school-main .img img{width: 100%;height: 100%;object-fit: cover;}
#main .school-main .bg{background-color: rgba(0,116,196,0.45);background: -moz-linear-gradient(-45deg, rgba(0,116,196,0.45) 0%, rgba(0,116,196,0) 100%);background: -webkit-linear-gradient(-45deg, rgba(0,116,196,0.45) 0%,rgba(0,116,196,0) 100%);background: linear-gradient(-45deg, rgba(0,116,196,0.45) 0%,rgba(0,116,196,0) 100%);}
#main .school-main .box{position: absolute;top: 90px;width: 530px;}
#main .school-main .list .box{right: 120px;}
#main .school-main .show .box{left: 120px;}
#main .school-main .list .box .top{line-height: 39px;display: inline-block;padding: 0 15px;color: #fff;font-size: 20px;border-radius: 20px;background-color: #005bac;background: -moz-linear-gradient(45deg, #005bac 0%, #3d9cde 100%);background: -webkit-linear-gradient(45deg, #005bac 0%,#3d9cde 100%);background: linear-gradient(45deg, #005bac 0%,#3d9cde 100%);}
#main .school-main .list .box .name{color: #fff;font-size: 30px;line-height: 1;margin: 35px 0 15px 0;}
#main .school-main .box .con{color: rgba(255,255,255,0.6);font-size: 16px;line-height: 1.8;}
#main .school-main .show .box .name{color: #fff;font-size: 40px;line-height: 1;font-weight: 700;}
#main .school-main .show .box .con{margin: 20px 0 40px 0;}
#main .school-main .show .box .more{display: flex;}
#main .school-main .show .box .more .indexmore{color: #fff;}
/* 网站底部 */
.footertop{background-color: #282828;padding: 30px 0;}
.footertop .logo{width: 360px;height: 90px;line-height: 90px;font-size: 0;float: left;}
.footertop .logo img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
.footertop .wechat{float: left;display: flex;min-width: 310px;border-right: 1px solid #454545;}
.footertop .wechat .ewm{display: flex;margin-right: 22px;}
.footertop .wechat .ewm .name{width: 30px;height: 90px;background-color: #393939;color: #ccc;font-size: 14px;line-height: 30px;-webkit-writing-mode: vertical-rl;-ms-writing-mode: bt-rl;writing-mode: vertical-rl;text-align: center;}
.footertop .wechat .ewm .img{width: 86px;height: 86px;padding: 2px;line-height: 86px;text-align: center;font-size: 0;overflow: hidden;background-color: #fff;}
.footertop .wechat .ewm .img img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
.footertop .tel{float: left;width: 370px;margin-left: 38px;line-height: 1;}
.footertop .tel h3{color: #fff;font-size: 14px;font-weight: 700;}
.footertop .tel p{color: #999;font-size: 14px;margin: 10px 0 22px 0;}
.footertop .tel h4{color: #fff;font-size: 30px;font-weight: 700;}
.footertop .more{float: right;width: 155px;height: 38px;line-height: 38px;text-align: center;font-size: 14px;color: #fff;margin-top: 26px;background-color: #005bac;}
.footertop .more:hover{background-color: #be0725;}
.footer{padding: 30px 0;background-color: #282828;border-top: 1px solid rgba(255,255,255,0.1);}
.footer .list li{width: 14%;float: left;}
.footer .list li:last-child{width: 30%;}
.footer .list li .tit{color: #fff;line-height: 1;margin-bottom: 20px;font-size: 18px;}
.footer .list li .box a,
.footer .list li .box p{font-size: 16px;color: #999;line-height: 1.5;padding: 6px 0;display: flex;transition: all 0.5s ease-in-out;}
.footer .list li .box a:hover{color: #005bac;}
.footer .list li .box p{padding-left: 30px;background-position: left 10px;background-repeat: no-repeat;}
.footer .list li .box p.add{background-image: url(../images/footer-add.png);}
.footer .list li .box p.tel{background-image: url(../images/footer-tel.png);}
.footer .list li .box p span{min-width: 50px;}
.footer2{background-color: #282828;border-top: 1px solid rgba(255,255,255,0.1);padding: 20px 0;text-align: center;color: #9c9b9b;font-size: 16px;line-height: 2;}
.footer2 a{color: #9c9b9b;}
.footer2 a:hover{color: #005bac;}
.footer2 a img{display: inline-block;}
/* 集团介绍 */
#about{overflow: hidden;}
#about .about1-main{background-color: #fff;padding: 90px 0;}
#about .about1-main .company-video{float: left;width: 650px;height: 425px;position: relative;margin-top: 35px;z-index: 1;}
#about .about1-main .company-video::before{content: '';position: absolute;top: -35px;left: -35px;width: 320px;height: 495px;background-color: #005bac;z-index: -1;}
#about .about1-main .company-video .company-video-img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;}
#about .about1-main .company-video .company-video-img img{width: 100%;height: 100%;object-fit: cover;}
#about .about1-main .company-video .company-video-icon{position: absolute;left: 50%;top: 50%;-webkit-transform: translate(-50%,-50%);-moz-transform: translate(-50%,-50%);-ms-transform: translate(-50%,-50%);-o-transform: translate(-50%,-50%);transform: translate(-50%,-50%);width: 80px;height: 80px;background-color: #fff;border-radius: 100%;cursor: pointer;z-index: 1;}
#about .about1-main .company-video .company-video-icon img{position: absolute;max-width: 100%;max-height: 100%;top: 0;bottom: 0;left: 0;right: 0;margin: auto;}
#about .about1-main .company-video .company-video-icon i,
#about .about1-main .company-video .company-video-icon i:before,
#about .about1-main .company-video .company-video-icon i:after{display: block;position: absolute;top: 50%;left: 50%;width: 80px;height: 80px;transform: translate(-50%, -50%);-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);box-shadow: 0 0 0 0 rgb(255 255 255 / 55%);-webkit-animation: ripple 3s infinite;animation: ripple 3s infinite;border-radius: 100%;}
@-webkit-keyframes ripple{70%{box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);}100%{box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);}}
@keyframes ripple{70%{box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);}100%{box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);}}
#about .about1-main .company-video .company-video-icon i{border: 6px solid rgba(255, 255, 255, 0.5);box-sizing: content-box;}
#about .about1-main .company-video .company-video-icon i:before{-webkit-animation-delay: 0.9s;animation-delay: 0.9s;content: "";position: absolute;}
#about .about1-main .company-video .company-video-icon i:after{-webkit-animation-delay: 0.6s;animation-delay: 0.6s; content: "";position: absolute;}
#about .about1-main .show{float: right;width: 580px;}
#about .about1-main .show h3{font-style: italic;color: #333;font-size: 46px;font-weight: 700;line-height: 1;text-transform: uppercase;}
#about .about1-main .show h3 span{color: #005bac;padding-left: 10px;}
#about .about1-main .show .name{color: #005bac;font-size: 30px;line-height: 1;margin: 20px 0 15px 0;}
#about .about1-main .show .en{color: #999;font-size: 14px;line-height: 1;padding-bottom: 33px;margin-bottom: 30px;position: relative;}
#about .about1-main .show .en::before{content: '';position: absolute;bottom: 0;left: 0;width: 60px;height: 2px;background-color: #005bac;}
#about .about1-main .show .con{color: #383838;font-size: 16px;line-height: 1.8;text-align: justify;}
#about .about1-main .show .list{margin-top: 60px;display: flex;justify-content: space-between;}
#about .about1-main .show .list li{margin-left: auto;width: 250px;display: flex;justify-content: space-between;padding-bottom: 18px;border-bottom: 1px solid #e8e8e8;}
#about .about1-main .show .list li:first-child{margin-left: 0;}
#about .about1-main .show .list li .box{width: calc(100% - 80px);}
#about .about1-main .show .list li .box .tit{display: flex;line-height: 1;align-items: baseline;}
#about .about1-main .show .list li .box .tit .num{color: #be0725;font-size: 50px;}
#about .about1-main .show .list li .box .tit .num i{font-style: italic !important;}
#about .about1-main .show .list li .box .tit .t1{color: #fff;font-size: 14px;padding: 3px;border-radius: 50%;background-color: #be0725;margin-left: 5px;}
#about .about1-main .show .list li .box .con{line-height: 1;color: #383838;font-size: 16px;margin-top: 10px;}
#about .about1-main .show .list li .icon{width: 70px;height: 70px;line-height: 70px;text-align: center;font-size: 0;overflow: hidden;}
#about .about1-main .show .list li .icon img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#about .about2-main{background-color: #f6f6f6;padding: 80px 0;}
#about .about2-main .list li{height: 420px;}
#about .about2-main .list li .img,
#about .about2-main .list li .box{float: left;width: 50%;height: 100%;}
#about .about2-main .list li .img img{width: 100%;height: 100%;object-fit: cover;}
#about .about2-main .list li .box{background-color: #fff;padding: 60px 80px;box-sizing: border-box;}
#about .about2-main .list li .box .tit{color: #005bac;font-size: 30px;line-height: 1;margin-bottom: 40px;}
#about .about2-main .list li .box .con{color: #383838;font-size: 16px;line-height: 1.8;text-align: justify;}
#about .about3-main{background-color: #fff;padding: 60px 0;}
#about .about3-main .top{color: #666;font-size: 16px;line-height: 1;margin-bottom: 60px;display: flex;align-items: center;}
#about .about3-main .top span{color: #be0725;}
#about .about3-main .top b{color: #383838;font-size: 40px;font-weight: 700;padding-right: 22px;}
#about .about3-main .list{position: relative;}
#about .about3-main .list .swiper-slide::before{content: '';position: absolute;top: -7px;left: -7px;width: 5px;height: 5px;background-color: #e8e8e8;border-radius: 50%;z-index: 1;}
#about .about3-main .list .swiper-slide:nth-child(2)::before,
#about .about3-main .list .swiper-slide:nth-child(2n-1)::before{display: none;}
#about .about3-main .list .swiper-slide a{display: block;padding: 15px;background-color: #fff;height: 100px;line-height: 100px;text-align: center;font-size: 0;position: relative;}
#about .about3-main .list .swiper-slide a::before,
#about .about3-main .list .swiper-slide a::after{content: '';position: absolute;background-color: #e8e8e8;}
#about .about3-main .list .swiper-slide a::before{width: calc(100% - 35px);left: 50%;height: 1px;top: -5px;transform: translateX(-50%);}
#about .about3-main .list .swiper-slide a::after{width: 1px;left: -5px;height: calc(100% - 35px);top: 50%;transform: translateY(-50%);}
#about .about3-main .list .swiper-slide:nth-child(1) a::after,
#about .about3-main .list .swiper-slide:nth-child(2) a::after,
#about .about3-main .list .swiper-slide:nth-child(2n-1) a::before{display: none;}
#about .about3-main .list .swiper-slide a img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#about .about3-main .list .swiper-slide a:hover img{transform: scale(1.1);}
#about .about3-main .list .about3-prev,
#about .about3-main .list .about3-next{width: 80px;height: 80px;background-size: 45px 14px;margin-top: -40px;}
#about .about3-main .list .about3-prev{left: -100px;background-image: url(../images/core-left.png);}
#about .about3-main .list .about3-next{right: -100px;background-image: url(../images/core-right.png);}
#about .about3-main .list .about3-prev:hover,
#about .about3-main .list .about3-next:hover{background-color: #005bac;}
#about .about3-main .list .about3-prev:hover{background-image: url(../images/core-leftH.png);}
#about .about3-main .list .about3-next:hover{background-image: url(../images/core-rightH.png);}
/* 集团文化 */
#culture{overflow: hidden;}
#culture .culture1-main{background-color: #fff;padding: 70px 0;}
#culture .culture1-main .img{display: flex;justify-content: center;}
#culture .culture1-main .img img{max-width: 100%;}
#culture .culture2-main{padding: 100px 0;background-image: url(../images/culturebg.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;}
#culture .culture2-main .list{margin: 0 -16px;}
#culture .culture2-main .list li{cursor: pointer;float: left;width: 301px;margin: 0 16px;height: 400px;background-color: rgba(255,255,255,0.9);border-radius: 10px;overflow: hidden;position: relative;}
#culture .culture2-main .list li .box{position: absolute;top: 50px;left: 0;width: 100%;text-align: center;line-height: 1;padding: 0 20px;z-index: 1;box-sizing: border-box;}
#culture .culture2-main .list li .box .img{width: 150px;height: 150px;line-height: 150px;text-align: center;font-size: 0;overflow: hidden;margin: 0 auto;}
#culture .culture2-main .list li .box .img img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#culture .culture2-main .list li .box .name{color: #333;font-size: 20px;margin: 30px 0 10px 0;}
#culture .culture2-main .list li .box .tags{color: #ccc;font-size: 14px;text-transform: uppercase;}
#culture .culture2-main .list li .show{position: absolute;bottom: 0;left: 0;width: 100%;height: 70px;color: #fff;text-align: center;padding: 0 30px;z-index: 2;box-sizing: border-box;}
#culture .culture2-main .list li .show .icon{height: 30px;line-height: 30px;text-align: center;font-size: 0;}
#culture .culture2-main .list li .show .icon img{display: inline-block;max-height: 100%;vertical-align: middle;}
#culture .culture2-main .list li .show .tit{line-height: 1;font-size: 20px;margin: 10px 0 70px 0;opacity: 0;}
#culture .culture2-main .list li .show .con{font-size: 16px;line-height: 1.8;opacity: 0;}
#culture .culture2-main .list li:hover .show{background-color: #005bac;height: 100%;}
#culture .culture2-main .list li:hover .show .icon{margin-top: 80px;}
#culture .culture2-main .list li:hover .show .icon img{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);}
#culture .culture2-main .list li:hover .show .tit,
#culture .culture2-main .list li:hover .show .con{opacity: 1;}
/* 集团荣誉 */
#honor{overflow: hidden;background-color: #f6f6f6;}
#honor .type{padding-top: 60px;}
#honor .type .list{display: flex;justify-content: center;align-items: center;}
#honor .type .list li{margin: 0 30px;}
#honor .type .list li a{color: #666;display: block;width: 108px;height: 108px;border: 1px solid #c2c2c2;background-color: #fff;border-radius: 50%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
#honor .type .list li a .icon{width: 40px;height: 40px;line-height: 40px;text-align: center;font-size: 0;overflow: hidden;}
#honor .type .list li a .icon img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#honor .type .list li a .tit{font-size: 18px;line-height: 1;margin-top: 10px;}
#honor .type .list li a:hover,
#honor .type .list li a.on{background-color: #005bac;border-color: #005bac;color: #fff;}
#honor .type .list li a:hover .icon img,
#honor .type .list li a.on .icon img{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);}
#honor .honor-main{padding-top: 26px;}
#honor .honor-main ul{margin: 0 -24px;}
#honor .honor-main ul li{float: left;width: 289px;margin: 24px;}
#honor .honor-main ul li a{display: block;background-color: #fff;padding: 0 10px;}
#honor .honor-main ul li a .img{padding: 20px;height: 270px;line-height: 270px;text-align: center;font-size: 0;overflow: hidden;}
#honor .honor-main ul li a .img img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#honor .honor-main ul li a .tit{min-height: 50px;text-align: center;color: #666;font-size: 16px;line-height: 1.3;}
#honor .honor-main ul li a:hover .img img{transform: scale(1.1);}
#honor .honor-main ul li a:hover .tit{color: #005bac;}
/* 发展历程 */
#history{overflow: hidden;padding: 240px 0 120px 0;background-image: url(../images/historybg.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;background-attachment: fixed;}
#history .gallery-top .swiper-slide{width: 1300px;opacity: 0.1;}
#history .gallery-top .show{position: relative;height: 100%;margin: 0 auto;min-height: 400px;}
#history .gallery-top .show .box,
#history .gallery-top .show .img{position: absolute;top: 0;}
#history .gallery-top .show .box{width: 450px;left: 0;height: 100%;}
#history .gallery-top .show .box .tit{line-height: 1;color: #005bac;font-size: 48px;font-weight: 700;margin-bottom: 40px;}
#history .gallery-top .show .box .con{color: #666;font-size: 16px;line-height: 2.25;}
#history .gallery-top .show .img{width: 490px;height: 290px;overflow: hidden;right: 0;opacity: 0;}
#history .gallery-top .show .img img{width: 100%;height: 100%;object-fit: cover;}
#history .gallery-top .swiper-slide.swiper-slide-active{opacity: 1;}
#history .gallery-top .swiper-slide.swiper-slide-active .show .img{opacity: 1;}
#history .gallery-top .swiper-slide.swiper-slide-active .show{width: 950px;}
#history .gallery-top .swiper-slide.swiper-slide-prev .show .box{width: 290px;right: 0;left: auto;}
#history .list{margin-top: 20px;}
#history .list .warpper::before{content: '';position: absolute;top: 9px;left: 0;width: 100%;height: 1px;background-color: #bfbfbf;}
#history .list .swiper-slide::before,
#history .list .swiper-slide::after{content: '';position: absolute;left: 50%;transform: translateX(-50%);border-radius: 50%;transition: all 0.5s ease-in-out;}
#history .list .swiper-slide::before{top: 5px;width: 8px;height: 8px;background-color: #bfbfbf;}
#history .list .swiper-slide::after{top: 0;width: 18px;height: 18px;background-color: rgba(0,91,172,0.3);opacity: 0;}
#history .list .swiper-slide .tit{text-align: center;line-height: 1;color: rgba(0,0,0,0.5);font-size: 34px;font-weight: 700;margin-top: 24px;}
#history .list .swiper-slide.swiper-slide-thumb-active::before{background-color: #005bac;}
#history .list .swiper-slide.swiper-slide-thumb-active::after{opacity: 1;}
#history .list .swiper-slide.swiper-slide-thumb-active .tit{color: #005bac;}
#history .list .history-prev,
#history .list .history-next{width: 30px;height: 30px;border-radius: 50%;background-size: 10px 16px;margin-top: -35px;}
#history .list .history-prev{left: -50px;background-image: url(../images/history-left.png);}
#history .list .history-next{right: -50px;background-image: url(../images/history-right.png);}
#history .list .history-prev:hover,
#history .list .history-next:hover{background-color: #005bac;}
#history .list .history-prev:hover{background-image: url(../images/history-leftH.png);}
#history .list .history-next:hover{background-image: url(../images/history-rightH.png);}
/* 产业布局 */
#layout{overflow: hidden;}
#layout .layout1-main{background-color: #fff;padding: 100px 0 80px 0;}
#layout .layout1-main .img{float: left;width: 50%;height: 400px;overflow: hidden;}
#layout .layout1-main .img img{width: 100%;height: 100%;object-fit: cover;}
#layout .layout1-main .box{float: right;width: 50%;height: 400px;padding: 70px 50px;background-color: rgba(0,116,196,0.58);background: -moz-linear-gradient(-45deg, rgba(0,116,196,0.58) 0%, rgba(0,116,196,0) 100%);background: -webkit-linear-gradient(-45deg, rgba(0,116,196,0.58) 0%,rgba(0,116,196,0) 100%);background: linear-gradient(-45deg, rgba(0,116,196,0.58) 0%,rgba(0,116,196,0) 100%);position: relative;box-sizing: border-box;}
#layout .layout1-main .box::before{content: '';position: absolute;bottom: 0;right: 0;width: 345px;height: 238px;background-image: url(../images/layout-logo.png);background-position: center;background-repeat: no-repeat;}
#layout .layout1-main .box .tit{line-height: 1;color: #005bac;font-size: 36px;}
#layout .layout1-main .box .tags{color: #000;font-size: 24px;line-height: 1;padding-bottom: 30px;margin: 20px 0 40px 0;position: relative;}
#layout .layout1-main .box .tags::before{content: '';position: absolute;bottom: 0;left: 0;width: 60px;height: 2px;background-color: #005bac;}
#layout .layout1-main .box .con{color: #333;font-size: 16px;line-height: 1.8;text-align: justify;}
#layout .layout2-main{background-color: #f6f6f6;padding: 70px 0;}
#layout .layout2-main .top{text-align: center;line-height: 1;margin-bottom: 40px;}
#layout .layout2-main .top .name{color: #005bac;font-size: 36px;}
#layout .layout2-main .top .en{color: #ccc;font-size: 18px;text-transform: uppercase;margin-top: 10px;font-weight: 700;}
#layout .layout2-main .img{height: 420px;overflow: hidden;}
#layout .layout2-main .img img{width: 100%;height: 100%;object-fit: cover;}
#layout .layout2-main .show{height: 196px;}
#layout .layout2-main .show .box{float: left;color: #fff;padding: 0 40px;width: calc(100% - 142px);height: 100%;display: flex;justify-content: center;flex-direction: column;background-color: #005bac;background: -moz-linear-gradient(-45deg, #005bac 0%, #0f78d5 100%);background: -webkit-linear-gradient(-45deg, #005bac 0%,#0f78d5 100%);background: linear-gradient(-45deg, #005bac 0%,#0f78d5 100%);}
#layout .layout2-main .show .box .tit{font-size: 30px;line-height: 1;margin-bottom: 20px;}
#layout .layout2-main .show .box .con{font-size: 16px;line-height: 1.8;opacity: 0.6;}
#layout .layout2-main .show .more{float: right;width: 24px;padding: 0 19px;text-align: center;line-height: 1.5;height: 100%;background-color: #b90010;display: flex;justify-content: center;flex-direction: column;align-items: center;color: #fff;font-size: 16px;}
#layout .layout2-main .show .more .icon{margin-top: 10px;}
#layout .layout2-main .show .more:hover{background-color: #000;}
#layout .layout3-main{background-color: #f6f6f6;padding: 80px 0;}
#layout .layout3-main .top{text-align: center;line-height: 1;margin-bottom: 40px;}
#layout .layout3-main .top .name{color: #005bac;font-size: 36px;}
#layout .layout3-main .top .en{color: #ccc;font-size: 18px;text-transform: uppercase;margin-top: 10px;font-weight: 700;}
#layout .layout3-main .list{margin: 0 -20px;padding: 0 160px;}
#layout .layout3-main .list li{float: left;width: 300px;height: 300px;margin: 0 20px;}
#layout .layout3-main .list li a{display: block;width: 100%;height: 100%;background-color: #fff;display: flex;justify-content: center;align-items: center;flex-direction: column;}
#layout .layout3-main .list li a .icon{height: 74px;line-height: 74px;text-align: center;font-size: 0;overflow: hidden;}
#layout .layout3-main .list li a .icon img{max-height: 100%;display: inline-block;vertical-align: middle;}
#layout .layout3-main .list li a .name{color: #333;font-size: 24px;line-height: 1;margin-top: 50px;}
#layout .layout3-main .list li a:hover{background-color: #005bac;-webkit-transform: translate3d(0,-10px,0);-moz-transform: translate3d(0,-10px,0);transform: translate3d(0,-10px,0);}
#layout .layout3-main .list li a:hover .icon img{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);}
#layout .layout3-main .list li a:hover .name{color: #fff;}
#layout .layout15-common{margin-bottom: 40px;line-height: 1;}
#layout .layout15-common .name{color: #383838;font-size: 36px;font-weight: 700;}
#layout .layout15-common .txt{color: #666;font-size: 16px;margin-top: 12px;}
#layout .layout4-main{background-color: #fff;padding-top: 100px;}
#layout .layout4-main .list{margin: -13px;}
#layout .layout4-main .list li{float: left;width: 416px;margin: 13px;}
#layout .layout4-main .list li:nth-child(4){float: right;}
#layout .layout4-main .list li:nth-child(5){width: 858px;}
#layout .layout4-main .list li .img{width: 100%;height: 370px;overflow: hidden;}
#layout .layout4-main .list li .img img{width: 100%;height: 100%;object-fit: cover;}
#layout .layout4-main .list li .box{background-color: #eee;padding: 30px;text-align: center;}
#layout .layout4-main .list li .box .name{color: #333;font-size: 22px;line-height: 1;margin-bottom: 20px;}
#layout .layout4-main .list li .box .con{color: #666;font-size: 16px;line-height: 1.5;padding: 0 30px;min-height: 48px;}
#layout .layout4-main .list li:nth-child(5) .con{padding: 0 150px;}
#layout .layout4-main .list li:hover .img img{transform: scale(1.1);}
#layout .layout4-main .list li:hover .name{color: #be0725;}
#layout .layout5-main{background-color: #fff;padding: 70px 0;text-align: center;}
#layout .layout5-main .layout5-wrap{width: 530px;height: 530px;position: relative;margin: 0 auto;}
#layout .layout5-main .layout5-wrap::before{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;border: 1px dashed #e6e6e6;border-radius: 50%;box-sizing: border-box;}
#layout .layout5-main .layout5-wrap img{width: 100%;}
#layout .layout5-main .layout5-wrap .layout5-imgs{width: 100% !important;}
#layout .layout5-main .layout5-wrap .layout5-imgs,
#layout .layout5-main .layout5-wrap .layout5-img2{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);border-radius: 50%;overflow: hidden;width: 87%;}
#layout .layout5-main .layout5-wrap .layout5-ul{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
#layout .layout5-main .layout5-wrap .layout5-ul li{width: 410px;position: absolute;}
#layout .layout5-main .layout5-wrap .layout5-ul li.layout5-li1{top: 25px;left: -370px;}
#layout .layout5-main .layout5-wrap .layout5-ul li.layout5-li2{bottom: 40px;left: -378px;}
#layout .layout5-main .layout5-wrap .layout5-ul li.layout5-li3{bottom: 32px;right: -370px;}
#layout .layout5-main .layout5-wrap .layout5-ul li.layout5-li4{top: 32px;right: -376px;}
#layout .layout5-main .layout5-wrap .layout5-ul li .box{text-align: right;line-height: 1;}
#layout .layout5-main .layout5-wrap .layout5-ul li .box .name{font-size: 22px;margin-bottom: 13px;}
#layout .layout5-main .layout5-wrap .layout5-ul li .box .con{font-size: 16px;line-height: 28px;color: #666;min-height: 56px;}
#layout .layout5-main .layout5-wrap .layout5-ul li em{display: inline-block;width: 8px;height: 8px;border-radius: 50%;background-color: #999999;position: relative;float: right;margin-top: -46px;margin-right: -46px;}
#layout .layout5-main .layout5-wrap .layout5-ul li em::after{content: "";width: 14px;height: 14px;border-radius: 50%;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);border: 1px solid #d30c2e;opacity: 0;}
#layout .layout5-main .layout5-wrap .layout5-ul li.layout5-li3 em,
#layout .layout5-main .layout5-wrap .layout5-ul li.layout5-li4 em{float: left;margin-right: 0;margin-left: -46px;}
#layout .layout5-main .layout5-wrap .layout5-ul li.layout5-li3 .box,
#layout .layout5-main .layout5-wrap .layout5-ul li.layout5-li4 .box{text-align: left;}
#layout .layout5-main .layout5-wrap:hover .layout5-img2 img{transform: scale(1.05);}
#layout .layout5-main .layout5-wrap .layout5-ul li.on em{background-color: #d30c2e;}
#layout .layout5-main .layout5-wrap .layout5-ul li.on em::after{animation: zsxkuosan 1s linear infinite;}
@keyframes zsxkuosan{from{opacity: 1;width: 5px;height: 5px;}to{opacity: 0;width: 18px;height: 18px;}}
#layout .layout6-main{background-color: #fff;padding: 80px 0;position: relative;z-index: 1;}
#layout .layout6-main::before{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 400px;background-image: url(../images/layout6bg.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;z-index: -1;}
#layout .layout6-main .layout15-common .name,
#layout .layout6-main .layout15-common .txt{color: #fff;}
#layout .layout6-main .list{padding: 50px;background-color: #fff;margin: 0 -14px;}
#layout .layout6-main .list li{float: left;width: 279px;margin: 0 14px;}
#layout .layout6-main .list li .img{height: 300px;overflow: hidden;}
#layout .layout6-main .list li .img img{width: 100%;height: 100%;object-fit: cover;}
#layout .layout6-main .list li .tit{text-align: center;font-size: 22px;color: #333;line-height: 1;margin-top: 20px;}
#layout .layout6-main .list li:hover .img img{transform: scale(1.1);}
#layout .layout6-main .list li:hover .tit{color: #d30c2e;}
/* 核心领域 */
#core{overflow: hidden;}
#core .core1-main{background-color: #f6f6f6;padding: 60px 0;}
#core .core1-main .core-type{padding-bottom: 20px;border-bottom: 1px solid #d2d2d2;margin-bottom: 10px;}
#core .core1-main .core-type ul{display: flex;flex-wrap: wrap;}
#core .core1-main .core-type ul li{margin-right: 60px;}
#core .core1-main .core-type ul li a{display: block;padding-left: 20px;color: #666;font-size: 16px;line-height: 1;position: relative;}
#core .core1-main .core-type ul li a::before{content: '';position: absolute;top: 50%;transform: translateY(-50%);left: 0;width: 6px;height: 6px;border: 2px solid #a0a0a0;transition: all 0.5s ease-in-out;}
#core .core1-main .core-type ul li a.on,
#core .core1-main .core-type ul li a:hover{color: #be0725;}
#core .core1-main .core-type ul li a.on::before,
#core .core1-main .core-type ul li a:hover::before{background-color: #be0725;border-color: #be0725;}
#core .core1-main .show{padding: 30px 0;}
#core .core1-main .show .img{float: left;width: 50%;height: 400px;overflow: hidden;}
#core .core1-main .show .img img{width: 100%;height: 100%;object-fit: cover;}
#core .core1-main .show .box{float: right;width: 50%;height: 400px;padding: 0 50px;background-color: rgba(0,116,196,0.58);background: -moz-linear-gradient(-45deg, rgba(0,116,196,0.58) 0%, rgba(0,116,196,0) 100%);background: -webkit-linear-gradient(-45deg, rgba(0,116,196,0.58) 0%,rgba(0,116,196,0) 100%);background: linear-gradient(-45deg, rgba(0,116,196,0.58) 0%,rgba(0,116,196,0) 100%);position: relative;box-sizing: border-box;display: flex;justify-content: center;flex-direction: column;}
#core .core1-main .show .box::before{content: '';position: absolute;bottom: 0;right: 0;width: 345px;height: 238px;background-image: url(../images/layout-logo.png);background-position: center;background-repeat: no-repeat;}
#core .core1-main .show .box .tit{line-height: 1;color: #005bac;font-size: 36px;padding-bottom: 20px;margin-bottom: 30px;position: relative;}
#core .core1-main .show .box .tit::before{content: '';position: absolute;bottom: 0;left: 0;width: 60px;height: 2px;background-color: #005bac;}
#core .core1-main .show .box .con{color: #333;font-size: 16px;line-height: 1.8;text-align: justify;}
#core .core1-main .show .company-video{float: left;width: 50%;height: 400px;position: relative;}
#core .core1-main .show .company-video .company-video-img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;}
#core .core1-main .show .company-video .company-video-img img{width: 100%;height: 100%;object-fit: cover;}
#core .core1-main .show .company-video .company-video-icon{position: absolute;left: 50%;top: 50%;-webkit-transform: translate(-50%,-50%);-moz-transform: translate(-50%,-50%);-ms-transform: translate(-50%,-50%);-o-transform: translate(-50%,-50%);transform: translate(-50%,-50%);width: 80px;height: 80px;background-color: #fff;border-radius: 100%;cursor: pointer;z-index: 1;}
#core .core1-main .show .company-video .company-video-icon img{position: absolute;max-width: 100%;max-height: 100%;top: 0;bottom: 0;left: 0;right: 0;margin: auto;}
#core .core1-main .show .company-video .company-video-icon i,
#core .core1-main .show .company-video .company-video-icon i:before,
#core .core1-main .show .company-video .company-video-icon i:after{display: block;position: absolute;top: 50%;left: 50%;width: 80px;height: 80px;transform: translate(-50%, -50%);-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);box-shadow: 0 0 0 0 rgb(255 255 255 / 55%);-webkit-animation: ripple 3s infinite;animation: ripple 3s infinite;border-radius: 100%;}
#core .core1-main .show .company-video .company-video-icon i{border: 6px solid rgba(255, 255, 255, 0.5);box-sizing: content-box;}
#core .core1-main .show .company-video .company-video-icon i:before{-webkit-animation-delay: 0.9s;animation-delay: 0.9s;content: "";position: absolute;}
#core .core1-main .show .company-video .company-video-icon i:after{-webkit-animation-delay: 0.6s;animation-delay: 0.6s; content: "";position: absolute;}
#core .core2-main{background-color: #fff;padding-bottom: 100px;}
#core .core2-main .show{padding-top: 70px;}
#core .core2-main .show .top{text-align: center;line-height: 1;margin-bottom: 40px;}
#core .core2-main .show .top .name{color: #005bac;font-size: 36px;}
#core .core2-main .show .top .en{color: #ccc;font-size: 18px;text-transform: uppercase;margin-top: 10px;font-weight: 700;}
#core .core2-main .show .lunbo{position: relative;}
#core .core2-main .show .lunbo .swiper-slide a{display: block;width: 100%;height: 300px;position: relative;overflow: hidden;}
#core .core2-main .show .lunbo .swiper-slide a .img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
#core .core2-main .show .lunbo .swiper-slide a .img img{width: 100%;height: 100%;object-fit: cover;}
#core .core2-main .show .lunbo .swiper-slide a .tit{position: absolute;bottom: 0;left: 0;width: 100%;height: 50px;line-height: 50px;text-align: center;color: #fff;font-size: 16px;padding: 0 10px;background-color: rgba(0, 0, 0, 0.6);box-sizing: border-box;}
#core .core2-main .show .lunbo .swiper-slide a:hover .img img{transform: scale(1.1);}
#core .core2-main .show .lunbo .swiper-slide a:hover .tit{background-color: #005bac;}
#core .core2-main .show .lunbo .core-prev,
#core .core2-main .show .lunbo .core-next{width: 80px;height: 80px;background-size: 45px 14px;margin-top: -40px;}
#core .core2-main .show .lunbo .core-prev{left: -100px;background-image: url(../images/core-left.png);}
#core .core2-main .show .lunbo .core-next{right: -100px;background-image: url(../images/core-right.png);}
#core .core2-main .show .lunbo .core-prev:hover,
#core .core2-main .show .lunbo .core-next:hover{background-color: #005bac;}
#core .core2-main .show .lunbo .core-prev:hover{background-image: url(../images/core-leftH.png);}
#core .core2-main .show .lunbo .core-next:hover{background-image: url(../images/core-rightH.png);}
#core .core2-main .show .list{margin-top: -35px;}
#core .core2-main .show .list li{float: left;width: 410px;margin-right: 35px;margin-top: 35px;}
#core .core2-main .show .list li:nth-child(3n){margin-right: 0;}
#core .core2-main .show .list li .img{height: 300px;overflow: hidden;}
#core .core2-main .show .list li .img img{width: 100%;height: 100%;object-fit: cover;}
#core .core2-main .show .list li .img.video{position: relative;}
#core .core2-main .show .list li .img.video::before{content: '';position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);width: 70px;height: 70px;background-image: url(../images/media-icon.png);background-position: center;background-repeat: no-repeat;background-size: cover;z-index: 9;}
#core .core2-main .show .list li .box{background-color: #eee;padding: 20px;}
#core .core2-main .show .list li .box .tit{line-height: 1;color: #333;font-size: 18px;text-align: center;}
#core .core2-main .show .list li .box .con{color: #666;font-size: 14px;line-height: 1.5;margin-top: 10px;min-height: 105px;}
#core .core2-main .show .list li:hover .img img{transform: scale(1.1);}
#core .core2-main .show .list li:hover .tit{color: #005bac;}
#core .corelist-main{padding: 60px 0;background-color: #f6f6f6;}
#core .corelist-main.core2{background-color: #fff;}
#core .corelist-main .topname{text-align: center;line-height: 1;color: #000;font-size: 26px;margin-bottom: 30px;}
#core .corelist-main .lunbo{position: relative;}
#core .corelist-main .lunbo .swiper-slide a{display: block;width: 100%;height: 300px;position: relative;overflow: hidden;}
#core .corelist-main .lunbo .swiper-slide a .img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
#core .corelist-main .lunbo .swiper-slide a .img img{width: 100%;height: 100%;object-fit: cover;}
#core .corelist-main .lunbo .swiper-slide a .tit{position: absolute;bottom: 0;left: 0;width: 100%;height: 50px;line-height: 50px;text-align: center;color: #fff;font-size: 16px;padding: 0 10px;background-color: rgba(0, 0, 0, 0.6);box-sizing: border-box;}
#core .corelist-main .lunbo .swiper-slide a:hover .img img{transform: scale(1.1);}
#core .corelist-main .lunbo .swiper-slide a:hover .tit{background-color: #005bac;}
#core .corelist-main .lunbo .core-prev,
#core .corelist-main .lunbo .core-next{width: 80px;height: 80px;background-size: 45px 14px;margin-top: -40px;}
#core .corelist-main .lunbo .core-prev{left: -100px;background-image: url(../images/core-left.png);}
#core .corelist-main .lunbo .core-next{right: -100px;background-image: url(../images/core-right.png);}
#core .corelist-main .lunbo .core-prev:hover,
#core .corelist-main .lunbo .core-next:hover{background-color: #005bac;}
#core .corelist-main .lunbo .core-prev:hover{background-image: url(../images/core-leftH.png);}
#core .corelist-main .lunbo .core-next:hover{background-image: url(../images/core-rightH.png);}
/* 商学院 */
#school{overflow: hidden;}
#school .common{margin-bottom: 40px;line-height: 1;text-align: center;}
#school .common .name{color: #005bac;font-size: 36px;}
#school .common .en{color: #ccc;font-size: 18px;text-transform: uppercase;margin-top: 10px;font-weight: 700;}
#school .school1-main{background-color: #fff;padding: 100px 0;}
#school .school1-main .img{float: left;width: 650px;height: 400px;overflow: hidden;}
#school .school1-main .img img{width: 100%;height: 100%;object-fit: cover;}
#school .school1-main .box{float: right;width: 540px;}
#school .school1-main .box .common{text-align: left;margin: 30px 0;}
#school .school1-main .box .con{color: #333;font-size: 18px;line-height: 1.7;text-align: justify;}
#school .school1-main .box .con p{margin-bottom: 40px;}
#school .school2-main{padding: 60px 0;background-image: url(../images/school2bg.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;background-attachment: fixed;}
#school .school2-main .common .name,
#school .school2-main .common .en{color: #fff;}
#school .school2-main .common .en{opacity: 0.5;}
#school .school2-main .list{display: flex;}
#school .school2-main .list li{width: 270px;height: 270px;position: relative;overflow: hidden;}
#school .school2-main .list li.on{width: 490px;}
#school .school2-main .list li .img,
#school .school2-main .list li .box{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
#school .school2-main .list li .img{overflow: hidden;}
#school .school2-main .list li .img img{height: 100%;object-fit: cover;}
#school .school2-main .list li .box{padding: 0 34px;box-sizing: border-box;}
#school .school2-main .list li .box .name{color: #000;font-size: 28px;font-weight: 700;line-height: 1;margin: 50px 0 30px 0;}
#school .school2-main .list li .box .con{color: #333;font-size: 16px;line-height: 1.75;min-height: 112px;}
#school .school2-main .list li .box .icon{width: 25px;margin-top: 10px;}
#school .school3-main{background-color: #fff;padding-top: 80px;}
#school .school3-main .list{margin: 0 -10px;}
#school .school3-main .list li{float: left;width: 338px;padding: 40px;margin: 0 10px;text-align: center;background-color: #fcfcfc;border: 1px solid #e8e8e8;}
#school .school3-main .list li .img{width: 66px;height: 65px;line-height: 65px;text-align: center;font-size: 0;margin: 0 auto;}
#school .school3-main .list li .img img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#school .school3-main .list li .name{line-height: 1;color: #000;font-size: 24px;font-weight: 700;margin: 25px 0 20px 0;padding-bottom: 24px;position: relative;}
#school .school3-main .list li .name::before{content: '';position: absolute;bottom: 0;left: 50%;width: 30px;height: 2px;background-color: #1a6fc9;margin-left: -15px;}
#school .school3-main .list li .con{color: #333;font-size: 16px;line-height: 1.7;min-height: 162px;}
#school .school3-main .list li:hover{background-color: #005bac;}
#school .school3-main .list li:hover .img img{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);}
#school .school3-main .list li:hover .name,
#school .school3-main .list li:hover .con{color: #fff;}
#school .school3-main .list li:hover .con{opacity: 0.5;}
#school .school4-main{background-color: #fff;padding: 70px 0;}
#school .school4-main .list{position: relative;height: 830px;overflow: hidden;}
#school .school4-main .list .img,
#school .school4-main .list ul{position: absolute;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;}
#school .school4-main .list .img img{width: 100%;height: 100%;object-fit: cover;}
#school .school4-main .list ul{background-color: rgba(0, 0, 0, 0.5);}
#school .school4-main .list ul li{float: left;width: 50%;height: 50%;border-right: 1px solid #fff;border-top: 1px solid #fff;box-sizing: border-box;position: relative;}
#school .school4-main .list ul li .name,
#school .school4-main .list ul li .tit,
#school .school4-main .list ul li .box{position: absolute;}
#school .school4-main .list ul li .name{background-color: #7e6b5a;width: 90px;height: 90px;line-height: 90px;text-align: center;color: #fff;font-size: 36px;font-family: "STXingkai";z-index: 1;}
#school .school4-main .list ul li:nth-child(1) .name{bottom: 0;right: 0;}
#school .school4-main .list ul li:nth-child(2) .name{bottom: 0;left: 0;}
#school .school4-main .list ul li:nth-child(3) .name{top: 0;right: 0;}
#school .school4-main .list ul li:nth-child(4) .name{top: 0;left: 0;}
#school .school4-main .list ul li .tit{top: 50%;left: 50%;transform: translate(-50%,-50%);color: #fff;font-size: 36px;line-height: 1;}
#school .school4-main .list ul li .box{opacity: 0;top: 0;left: 0;width: 100%;height: 100%;padding: 0 38px;color: #fff;background-color: rgba(90,14,23,0.75);background: -moz-linear-gradient(45deg, rgba(90,14,23,0.75) 0%, rgba(36,20,16,0.75) 100%);background: -webkit-linear-gradient(45deg, rgba(90,14,23,0.75) 0%,rgba(36,20,16,0.75) 100%);background: linear-gradient(45deg, rgba(90,14,23,0.75) 0%,rgba(36,20,16,0.75) 100%);box-sizing: border-box;}
#school .school4-main .list ul li .box .top{line-height: 1;font-size: 36px;margin: 45px 0 18px 0;padding-bottom: 30px;position: relative;}
#school .school4-main .list ul li .box .top::before{content: '';position: absolute;bottom: 0;left: 0;width: 35px;height: 2px;background-color: rgba(255, 255, 255, 0.5);}
#school .school4-main .list ul li .box .con{font-size: 16px;line-height: 1.7;padding-right: 70px;text-align: justify;}
#school .school4-main .list ul li:nth-child(2n) .box .top{text-align: right;}
#school .school4-main .list ul li:nth-child(2n) .box .top::before{left: auto;right: 0;}
#school .school4-main .list ul li:nth-child(2n) .box .con{padding-left: 70px;padding-right: 0;}
#school .school4-main .list ul li:hover .name{background-color: #be0725;}
#school .school4-main .list ul li:hover .tit{opacity: 0;}
#school .school4-main .list ul li:hover .box{opacity: 1;}
#school .school5-main{padding: 70px 0;background-image: url(../images/school5bg.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;}
#school .school5-main .list{float: left;width: 720px;margin-top: -30px;}
#school .school5-main .list li{float: left;width: 290px;padding: 20px 16px;margin-right: 30px;margin-top: 30px;border: 4px solid #a9a9a9;}
#school .school5-main .list li .name{padding-left: 70px;line-height: 51px;color: #000;font-size: 24px;font-weight: 700;position: relative;margin-bottom: 26px;}
#school .school5-main .list li .name::before{content: '';position: absolute;top: 0;left: 0;width: 51px;height: 51px;border-radius: 10px;background-color: #7f7f7f;overflow: hidden;background-image: url(../images/school5-li.png);background-position: center;background-repeat: no-repeat;background-size: 24px 24px;transition: all 0.5s ease-in-out;}
#school .school5-main .list li .con{color: #333;font-size: 18px;line-height: 1.7;min-height: 90px;}
#school .school5-main .img{float: right;width: 493px;height: 440px;text-align: center;font-size: 0;overflow: hidden;}
#school .school5-main .img img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#school .school5-main .list li:hover{border-color: #005bac;}
#school .school5-main .list li:hover .name::before{background-color: #005bac;}
#school .school6-main{background-color: #fff;padding: 70px 0;}
#school .school6-main .list{position: relative;}
#school .school6-main .list .swiper-slide a{display: block;padding: 15px 10px;background-color: #eee;display: flex;justify-content: space-between;}
#school .school6-main .list .swiper-slide a .img{width: 332px;height: 250px;overflow: hidden;}
#school .school6-main .list .swiper-slide a .img img{width: 100%;height: 100%;object-fit: cover;}
#school .school6-main .list .swiper-slide a .box{width: 250px;}
#school .school6-main .list .swiper-slide a .box .tit{line-height: 1;color: #000;font-size: 24px;font-weight: 700;margin: 18px 0 34px 0;}
#school .school6-main .list .swiper-slide a .box .con{color: #333;font-size: 18px;line-height: 1.7;}
#school .school6-main .list .swiper-slide a:hover{background-color: #005bac;}
#school .school6-main .list .swiper-slide a:hover .img img{transform: scale(1.1);}
#school .school6-main .list .swiper-slide a:hover .box .tit,
#school .school6-main .list .swiper-slide a:hover .box .con{color: #fff;}
#school .school6-main .list .swiper-slide a:hover .box .con{opacity: 0.5;}
#school .school6-main .list .kecheng-prev,
#school .school6-main .list .kecheng-next{width: 80px;height: 80px;background-size: 45px 14px;margin-top: -40px;}
#school .school6-main .list .kecheng-prev{left: -100px;background-image: url(../images/core-left.png);}
#school .school6-main .list .kecheng-next{right: -100px;background-image: url(../images/core-right.png);}
#school .school6-main .list .kecheng-prev:hover,
#school .school6-main .list .kecheng-next:hover{background-color: #005bac;}
#school .school6-main .list .kecheng-prev:hover{background-image: url(../images/core-leftH.png);}
#school .school6-main .list .kecheng-next:hover{background-image: url(../images/core-rightH.png);}
/* 新闻列表 */
#news{overflow: hidden;}
#news .news-main{padding-top: 60px;}
#news .news-main ul{margin: -13px;}
#news .news-main ul li{float: left;width: 416px;margin: 13px;}
#news .news-main ul li a{display: block;}
#news .news-main ul li a .img{height: 230px;overflow: hidden;}
#news .news-main ul li a .img img{width: 100%;height: 100%;object-fit: cover;}
#news .news-main ul li a .box{padding: 40px;background-color: #f2f3f6;}
#news .news-main ul li a .box .time{color: #005bac;font-size: 18px;line-height: 1;}
#news .news-main ul li a .box .tit{color: #000;font-size: 18px;line-height: 1;margin: 22px 0 25px 0;}
#news .news-main ul li a .box .con{color: #666;font-size: 16px;line-height: 1.7;}
#news .news-main ul li a .box .more{color: #8f9093;font-size: 14px;line-height: 1;font-family: "宋体";margin-top: 30px;}
#news .news-main ul li a:hover .img img{transform: scale(1.1);}
#news .news-main ul li a:hover .box{background-color: #005bac;}
#news .news-main ul li a:hover .box .time,
#news .news-main ul li a:hover .box .tit,
#news .news-main ul li a:hover .box .con,
#news .news-main ul li a:hover .box .more{color: #fff;}
#news .news-main ul li a:hover .box .con,
#news .news-main ul li a:hover .box .more{opacity: 0.5;}
/* 商务合作 */
#cooper{padding-bottom: 120px;overflow: hidden;}
#cooper .cooper1-main{background-color: #fff;padding: 60px 0;}
#cooper .cooper1-main .top{line-height: 1;margin-bottom: 50px;}
#cooper .cooper1-main .top .name{font-size: 24px;color: #005bac;}
#cooper .cooper1-main .top h3{text-transform: uppercase;font-size: 32px;color: #ccc;font-weight: 700;margin: 20px 0 10px 0;}
#cooper .cooper1-main .top h4{text-transform: uppercase;font-size: 12px;color: #ccc;font-weight: 700;}
#cooper .cooper1-main .box{float: left;width: 560px;}
#cooper .cooper1-main .box .con{color: #666;font-size: 16px;line-height: 2;text-align: justify;}
#cooper .cooper1-main .contact{float: right;width: 550px;}
#cooper .cooper1-main .contact .show{float: left;width: 140px;}
#cooper .cooper1-main .contact .show .name{line-height: 1;color: #005bac;font-size: 30px;}
#cooper .cooper1-main .contact .show .link{line-height: 1;color: #333;font-size: 14px;font-family: "宋体";margin-top: 10px;}
#cooper .cooper1-main .contact .list{float: right;width: 403px;}
#cooper .cooper1-main .contact .list li{color: #333;font-size: 16px;text-indent: 23px;height: 39px;line-height: 39px;margin-top: 10px;background-position: center;background-repeat: no-repeat;background-size: cover;}
#cooper .cooper1-main .contact .list li.tel{margin-top: 0;background-image: url(../images/cooper-tel.png);}
#cooper .cooper1-main .contact .list li.mobile{background-image: url(../images/cooper-mobile.png);}
#cooper .cooper1-main .contact .list li.email{background-image: url(../images/cooper-email.png);}
#cooper .cooper2-main{overflow: hidden;background-color: #fff;}
#cooper .cooper2-main .show{margin-bottom: 20px;}
#cooper .cooper2-main .show a{display: block;height: 430px;position: relative;overflow: hidden;}
#cooper .cooper2-main .show a .img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
#cooper .cooper2-main .show a .img img{width: 100%;height: 100%;object-fit: cover;}
#cooper .cooper2-main .show a .box{position: absolute;bottom: 0;right: 0;color: #fff;width: 580px;padding: 35px;background-color: rgba(0,91,172,0.9);}
#cooper .cooper2-main .show a .box .name{font-size: 30px;font-weight: 700;line-height: 1;margin-bottom: 25px;}
#cooper .cooper2-main .show a .box .con{font-size: 16px;line-height: 1.8;text-align: justify;min-height: 140px;}
#cooper .cooper2-main .show a .box .icon{display: flex;justify-content: flex-end;margin-top: 20px;}
#cooper .cooper2-main .show a .box .icon img{max-width: 32px;}
/* 招贤纳士 */
#job{overflow: hidden;}
#job .job-main{padding-top: 80px;}
#job .job-main .top{margin-bottom: 30px;color: #be0725;font-size: 16px;line-height: 1;}
#job .job-main li{margin-bottom: 10px;cursor: pointer;}
#job .job-main li .jitp{display: flex;padding: 0 30px;background-color: #e7e7e7;height: 60px;color: #666;align-items: center;}
#job .job-main li .jitp span{width: 20%;font-size: 16px;}
#job .job-main li .jitp span:first-child{width: calc(40% - 18px);color: #333;font-size: 18px;}
#job .job-main li .jitp .dianji{width: 18px;}
#job .job-main li .jibt{display: none;border: 1px solid #e7e7e7;padding: 50px 80px;}
#job .job-main li .jibt .name{color: #000;font-size: 22px;line-height: 1;margin-bottom: 20px;}
#job .job-main li .jibt .con{color: #666;font-size: 16px;line-height: 1.8;font-family: "宋体";}
#job .job-main li .jibt .more{display: block;width: 218px;height: 40px;line-height: 40px;text-align: center;color: #777;font-size: 14px;background-color: #e7e7e7;margin-top: 70px;}
#job .job-main li .jibt .more:hover{background-color: #005bac;color: #fff;}
#job .job-main li:hover .jitp,
#job .job-main li.cur .jitp{background-color: #005bac;color: #fff;}
#job .job-main li:hover .jitp span:first-child,
#job .job-main li.cur .jitpspan:first-child{color: #fff;}
#job .job-main li:hover .jitp .dianji img,
#job .job-main li.cur .jitp .dianji img{-webkit-filter: brightness(0) invert(1);filter: brightness(0) invert(1);}
#job .jobs_content{background-color: #fff;padding: 60px 0;}
#job .jobs_content .sqxx{background-color:#fff;}
#job .jobs_content .sqxx h2{text-align:center;font-size:20px;color:#000;line-height:90px;}
#job .jobs_content .sqxx .form{background-color:#e7e7e7;padding:30px 7% 25px;}
#job .jobs_content .sqxx .form div{float:left;width:47%;margin-right:6%;margin-bottom:25px;}
#job .jobs_content .sqxx .form div:nth-child(2n+0){margin-right:0;}
#job .jobs_content .sqxx .form div p{float:left;width:88px;color:#636366;line-height:42px;}
#job .jobs_content .sqxx .form div p:before{content:"* ";color:#f00;}
#job .jobs_content .sqxx .form div input{width:calc(100% - 88px);background:#fff;border:1px rgba(0,0,0,.1) solid;line-height:22px;outline:none;padding:9px 10px;box-sizing: border-box;}
#job .jobs_content .sqxx .form div.captcha{position: relative;}
#job .jobs_content .sqxx .form div.captcha img{position: absolute;top: 0;right: 0;height: 42px;}
#job .jobs_content .sqxx .form div .tr-cont.radio-cont{width:calc(100% - 88px);line-height: 40px;display: inline-block;margin-bottom: 0;}
#job .jobs_content .sqxx .form div .tr-cont.radio-cont input[type=radio]{font-size: 14px;color: #333;padding: 0 10px;width: 20px;height: 12px;border: 1px solid #e6e6e6;}
#job .jobs_content .sqxx .form div .tr-cont.radio-cont label{margin-right: 30px;color: #4c4c4c;line-height: 40px;font-weight: bold;}
#job .jobs_content .sqxx .form div:last-child{width:100%;}
#job .jobs_content .sqxx .form div textarea{width:calc(100% - 88px);background:#fff;border:1px rgba(0,0,0,.1) solid;line-height:22px;outline:none;padding:9px 10px;resize:none;box-sizing: border-box;}
#job .jobs_content .sqxx form .submit{display:block;margin:30px auto 0px;background-color: #005bac;width:100%;max-width:230px;color:#fff;height:44px;outline:none;font-size:18px;transition:.3s;border:0;text-align: center;line-height: 44px;}
#job .jobs_content .zwcont form .submit:hover{background-color: #be0725;}
/* 联系我们 */
#contact{overflow: hidden;}
#contact .contact-main{background-color: #fff;padding: 60px 0;}
#contact .contact-main .box{float: left;width: 800px;}
#contact .contact-main .box .name{color: #005bac;font-size: 30px;line-height: 1;margin-bottom: 30px;}
#contact .contact-main .box .add{color: #333;font-size: 16px;line-height: 1;margin-bottom: 50px;}
#contact .contact-main .box .tel{padding-left: 45px;line-height: 1;background-image: url(../images/contact-tel.png);background-position: left center;background-repeat: no-repeat;}
#contact .contact-main .box .tel p{color: #005bac;font-size: 14px;font-family: "宋体";}
#contact .contact-main .box .tel h4{color: #be0825;font-size: 26px;font-weight: 700;margin: 8px 0;}
#contact .contact-main .box .tel span{display: block;color: #ccc;font-size: 12px;}
#contact .contact-main .wechat{float: right;width: 420px;display: flex;justify-content: flex-end;}
#contact .contact-main .wechat .ewm{width: 118px;padding: 0 30px;margin-left: 30px;border: 1px solid #e7e7e7;border-radius: 10px;}
#contact .contact-main .wechat .ewm .img{width: 100%;height: 118px;line-height: 118px;text-align: center;font-size: 0;overflow: hidden;margin-top: 20px;}
#contact .contact-main .wechat .ewm .img img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
#contact .contact-main .wechat .ewm .name{text-align: center;font-size: 14px;color: #999;font-family: "宋体";margin: 14px 0;}
#contact .contact-map{background-color: #fff;padding-bottom: 60px;}
#contact .contact-map #dituContent{height: 500px;}