@font-face {
  font-family: me;
  src: url(me.ttf),url(me.eot);
}
body{
  font-family: me;
}
.ys_navph2_menu{
	display: flex;
    align-items: center;
}
.ys_navph2_menu a{
	color: #555;
    font-size: 15px;
/*    transform: translateY(-1px);*/
    margin-right: 10px;
}
/* 阿里图标 */

@font-face {
    font-family: "iconfont";
    /* Project id 3143949 */
    src: url("iconfont.woff2?t=1643352695576") format("woff2"), url("iconfont.woff?t=1643352695576") format("woff"), url("iconfont.ttf?t=1643352695576") format("truetype");
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-jianhao:before {
    content: "\e614";
}

.icon-jiajianzujianjiahao:before {
    content: "\e64d";
}

.icon-chengbeifen:before {
    content: "\e61d";
}

.icon-cheng:before {
    content: "\e60f";
}

.icon-PDF:before {
    content: "\e6b6";
}

.icon-zhankai:before {
    content: "\e63c";
}

.icon-dianji:before {
    content: "\e600";
}

.icon-zuobiao:before {
    content: "\e659";
}

.icon-youjian_o:before {
    content: "\ebca";
}

.icon-24gl-phoneLoudspeaker:before {
    content: "\e94f";
}

.icon-Postcodeyoubian:before {
    content: "\e766";
}

.icon-24gf-playCircle:before {
    content: "\ea82";
}

.icon-tuichuquanping:before {
    content: "\e8fa";
}

.icon-angle-right:before {
    content: "\e84e";
}

.icon-angle-left:before {
    content: "\e84f";
}

.icon-jiantou-copy:before {
    content: "\e667";
}

.icon-jiantou:before {
    content: "\e63f";
}

.icon-jinrujiantouxiao:before {
    content: "\e8d4";
}

:root {
    --themeColor: #f5a53c;
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.1s;
}

html {
    overflow-x: hidden;
}

img {
    vertical-align: middle;
}


/* a:hover{
	color: rgb(238,188,40);
} */

.content {
    width: 1400px;
    margin: 0 auto;
}
/* 网站黑白 */
html.plain { 
  -webkit-filter: grayscale(100%); 
  -moz-filter: grayscale(100%); 
  -ms-filter: grayscale(100%); 
  -o-filter: grayscale(100%); 
  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);  
  _filter:none; 
}
.header {
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: none;
    z-index: 9999;
    transition: 0.5s;
}

.header:hover {
    background: rgba(255, 255, 255, 1);
}

.nav {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    height: 100%;
    width: 73%;
}

.nav-left ul {
    display: flex;
    margin-left: 60px;
    width: 70%;
    justify-content: space-between;
}

.nav-left ul li .one-a {
    color: #fff;
    padding: 20px 0px;
    position: relative;
}

.header:hover .nav-left ul li .one-a {
    color: #333;
}

.nav-left ul li .one-a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 0;
    height: 4px;
    background: #f4a63c;
    transition: all 0.65s;
}

.nav-left ul li .one-a:hover::after,
.nav-left ul li .one-a.nav_act::after {
    width: 100%;
}

.nav-left .logo {
    position: relative;
    width: 195px;
}

.nav-left .logo img {
    /* width: 195px; */
    width: auto;
    height: 46px;
}

.nav-left .logo .logoImg {
    display: block;
}

.nav-left .logo .logoImgs {
    display: none;
}

.header:hover .nav-left .logo .logoImg {
    display: none;
}

.header:hover .nav-left .logo .logoImgs {
    display: block;
}

.nav-right {
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    color: #fff;
    position: relative;
}

.nav-right::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 16px);
    width: 1px;
    height: 32px;
    /* background: #fff; */
    opacity: 0.4;
}

.nav-right span {
    font-size: 26px;
    font-weight: 800;
    margin-left: 30px;
    margin-right: 30px;
}

.nav-right a {
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 3px 13px;
/*    margin-left: 20px;*/
}

.nav-right a:hover {
    background: #fff;
    color: #333;
}

.header.on {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05);
}

.header.on .nav-left .logo .logoImg {
    display: none;
}

.header.on .nav-left .logo .logoImgs {
    display: block;
}

.header.on .nav-right {
    color: #333333;
}

.header.on .nav-right a {
    border: 1px solid #333333;
    color: #333333;
}

.header.on .nav-left ul li .one-a {
    color: #333;
}


/* .header.on .nav-right::after {
  background: #333;
} */

.header.on .nav-right a:hover {
    background: #333;
    color: #fff;
}

.nav-left ul {
    height: 100%;
}

.header .nav-left ul li {
    position: relative;
    line-height: 80px;
}

.header .nav-left ul li .last-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: calc(50% - 90px);
    width: 180px;
    background: #fff;
    text-align: center;
    z-index: 99999;
    line-height: 30px;
    border-radius: 0 0 6px 6px;
    box-shadow: 2px 2px 2px #ddd;
    transition: none;
}

.header .nav-left ul li:hover .last-nav {
    display: block;
    animation: lastnav 0.55s;
    -webkit-animation: lastnav 0.55s;
}

@keyframes lastnav {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes lastnav
/* Safari 与 Chrome */

{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.header .nav-left ul li .last-nav a {
    font-size: 15px;
    color: #333;
    line-height: 50px;
    width: 100%;
    display: inline-block;
    position: relative;
    transition: none;
}

.header .nav-left ul li .last-nav a img {
    position: absolute;
    top: 17px;
    left: 14px;
    opacity: 0;
    transition: all 0.75s;
}

.header .nav-left ul li .last-nav a:hover {
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    width: 108%;
    position: relative;
    left: -4%;
}

.header .nav-left ul li .last-nav a:hover img {
    opacity: 1;
    left: 20px;
}

.banner-swiper .swiper-wrapper {
    transition-delay: 0.3s;
}

.banner-swiper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.banner-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.banner-swiper .swiper-slide {
    transform: scale(1);
    /* opacity: 0.8; */
    /* border-radius: 160px; */
    overflow: hidden;
    /* transition: all 4s; */
}

.banner-swiper .swiper-slide.ani-slide>img {
    /* transform: scale(1.06); */
    /* opacity: 1; */
    /* border-radius: 0; */
    animation: scale 3s;
}

.banner-swiper .swiper-slide.ani-slide2>img {
    animation: scale2 3s;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

@-webkit-keyframes scale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

@-o-keyframes scale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

@keyframes scale2 {
    0% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes scale2 {
    0% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

@-o-keyframes scale2 {
    0% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper-slide.ani-slide .banner-txt h1 {
    height: 100px;
    transform: translate(0%, 0%);
}

.banner-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 20px !important;
    background: #fff;
    opacity: 0.8;
    position: relative;
}

.banner-pagination {
    bottom: 20px !important;
    display: none;
}

.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}

.banner-swiper .swiper-pagination-bullet::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    top: -7px;
    left: -7px;
}

.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    border: 1px solid #fff;
}

.banner-swiper .swiper-pagination-bullet:hover::after {
    border: 1px solid #fff;
    animation: guodu 1.5s linear infinite;
    -webkit-animation: guodu 1.5s linear infinite;
    -moz-animation: guodu 1.5s linear infinite;
    -o-animation: guodu 1.5s linear infinite;
}

.quan {
    position: absolute;
    bottom: 100px;
    left: calc(45% - 120px);
    z-index: 99;
    height: 220px;
    display: none;
}

.banner-more {
    position: absolute;
    left: 160px;
    bottom: 6px;
    width: 80px;
    letter-spacing: 1px;
    font-size: 18px;
    text-align: center;
}

.banner-more a {
    color: #fff;
}

.sky_text {
    transition: all 1s;
}


/* 
.sky_text {
	background: #f76220;
	position: absolute;
	left: calc(50% - 100px);
	bottom: 150px;
	z-index: 999;
	width: 2px;
	height: 2px;
} */

.banner-next,
.banner-prev {
    position: absolute;
    top: 50%;
    z-index: 99;
}

.banner-next img,
.banner-prev img {
    height: 60px;
    opacity: 0.3;
    cursor: pointer;
}

.banner-next img:hover,
.banner-prev img:hover {
    opacity: 0.8;
}

.banner-prev {
    left: 30px;
}

.banner-next {
    right: 30px;
}

.banner-txt {
    position: absolute;
    z-index: 99;
    bottom: 280px;
    width: 100%;
    display: none;
}

.swiper-slide .banner-img {
    position: absolute;
    z-index: 99;
    top: 34%;
    left: 18%;
    text-align: left;
    height: 0;
    overflow: hidden;
    /* transform: translateX(-50%); */
    transition: all 3.5s;
}

.swiper-slide .banner-img img {
    height: auto;
}

.swiper-slide.ani-slide .banner-img {
    height: 300px;
    /* transform: translate(0% , 0%); */
}

.banner-txt h1 {
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 38px;
    letter-spacing: 4px;
    height: 0;
    overflow: hidden;
    transform: translate(0%, -20%);
    transition: all 1s;
}

.banner-product {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.banner-product ul {
    display: flex;
    justify-content: space-between;
}

.banner-product ul li {
    width: 15%;
    height: 80px;
    position: relative;
}

.banner-product ul li .topImg {
    width: 100%;
    opacity: 0;
    position: absolute;
    bottom: 100px;
    transition: all 0.75s;
    border-radius: 6px;
}

.banner-product ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    font-size: 18px;
    color: #fff;
    border-top: 1px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.banner-product ul li a{
    font-size: 15px;
}
.banner-product ul li a img {
    margin-left: 10px;
    opacity: 0;
    position: relative;
    top: 1px;
}

.banner-product ul li a span {
/*    margin-left: 15px;*/
}

.banner-product ul li .bgc {
    width: 0%;
    height: 100%;
    background-color: #f5a53cbb;
    transition: all 0.5s;
}

.banner-product ul li:hover .bgc {
    /* background: url(../images/banner-proBg.png) no-repeat;
  background-size: 100% 100%; */
    width: 100%;
}

.banner-product ul li:hover a img {
    opacity: 1;
}

.banner-product ul li:hover .topImg {
    opacity: 1;
}

.he_shubiao {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.he_shubin {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #fcc800;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.36s;
}

.he_shubin::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #fcc800;
    transition: all 0.36s;
}

.he_shubiao.on .he_shubin {
    width: 46px;
    height: 46px;
}

.he_shubiao.on .he_shubin::after {
    background: #fcc800;
    width: 6px;
    height: 6px;
}

.yewu_shubiao {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.yewu_shubin {
    width: 60px;
    height: 60px;
    background: url(../images/yewuzuo.png) no-repeat;
    background-size: 90% 90%;
    transition: all 0.36s;
}

.yewu_shubiao.on .yewu_shubin {
    width: 70px;
    height: 70px;
}

.home-about {
    position: relative;
    margin-top: 36px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
}


/* 首页新闻广播 */

.home_about_top {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 50px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: -10px;
    line-height: 50px;
    display: flex;
}

.about_top_left {
    display: flex;
    align-items: center;
    background-color: #f5a53c;
    padding: 0 10px 0 5px;
}

.about_top_left span {
    /*margin-left: 20px;*/
    color: #fff;
    position: relative;
    font-size: 14px;
}

.news_top_ogo {
    width: 40px;
    position: relative;
    transform-style: preserve-3d;
}

.news_top_ogo img {
    width: 124%;
    margin-left: -12%;
}

.news_top_ogo .quan {
    width: 100%;
    height: 40px;
    border: 1.5px solid #fff;
    /*border-image: linear-gradient(to top, transparent, #fff);*/
    position: absolute;
    top: 54%;
    transform: translateY(-50%) rotateX(66deg);
    left: 0;
    display: block;
    border-radius: 50%;
    animation: re 1.2s infinite linear;
}

.news_top_ogo .quan::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: -4px;
    left: 50%;
    margin-left: -4px;
}
@keyframes re {
    0% {
        transform: translateY(-50%) rotateX(66deg) rotateZ(0deg);
    }
    100% {
        transform: translateY(-50%) rotateX(66deg) rotateZ(360deg);
    }
}

.home_about_top .about_top_main a {
    display: block;
    font-size: 16px;
    color: #f5a53c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 800px) {
    .home_about_top {
        height: 40px;
        line-height: 40px;
    }
    .about_top_left>img {
        display: none;
    }
    .about_top_left span::after {
        display: none;
    }
    .about_top_left span {
        margin-left: 0;
        display: none;
    }
    .about_top_left{
        padding: 0;
    }
    .news_top_ogo img{
        width: 110%;
        margin-left: -5%;
    }
    .about_top_main {
        left: 10px !important;
        width: 90%;
    }
    .home_about_top .about_top_main a {
        font-size: 14px;
    }
    .about_top_btn_box {
        display: none;
    }
}

.home_about_top>.about_top_content {
    position: relative;
    flex: 1;
    background-color: #f8f8f8;
}

.about_top_main {
    position: absolute;
    top: 0;
    left: 20px;
    transition: none;
}

.about_top_btn_box i {
    display: block;
    line-height: 25px;
    width: 25px;
    text-align: center;
    background-color: #dbdbdb;
    color: #fff;
    cursor: pointer;
}

.about_top_btn_box i:nth-child(1) {
    transform: rotate(-90deg);
}

.about_top_btn_box i:nth-child(2) {
    transform: rotate(90deg);
}

.about_top_btn_box i:hover {
    background: var(--themeColor);
}


@media (min-width: 700px){
.home-about .home-about-left:hover img {
    transform: scale(1.03);
}
}

@media (max-width: 980px) {
    .home_about_top a {
        font-size: 13px;
    }
}

.home-about .home-about-left {
    width: 64.5%;
    height: 700px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(245, 166, 60, 0.6);
    overflow: hidden;
}

.home-about .home-about-left img {
    width: 100%;
    transition: all 1s;
}

.home-about .home-about-left>a>img {
    opacity: 0;
    border-radius: 16px 16px 0 0;
}

.home-about .home-about-left>a>img:not(.op0) {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.home-about .home-about-left>a>img.act:not(.op0) {
    opacity: 1;
}

.home-about h3 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-top: 36px;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-about h3 span {
    font-size: 14px;
    color: #666;
}

.btn_warp {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    padding: 10px;
}

.btn_warp .iconfont {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_warp .iconfont:hover {
    color: var(--themeColor);
}

.home-about .home-about-right {
    width: 32.5%;
}

.home-about .home-about-right div {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 36px;
}

.home-about .home-about-right div img {
    transition: all 1s;
    width: 100%;
}

.home-about .home-about-right div:hover img {
    transform: scale(1.06);
}

.home-about .home-about-right div p {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 56px;
    color: #fff;
    padding-left: 20px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 20px;
}

.about-moreBtn {
    height: 56px;
    width: 166px;
    border-radius: 60px;
    background: transparent;
    color: #333;
    border: 1px solid #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    transition: all 0.3s;
}

.about-moreBtn img:nth-child(2) {
    display: none;
}

.about-moreBtn:hover {
    background: #f5a53c;
    color: #fff;
    transform: translate(10px, 10px);
    border-color: transparent;
}

.about-moreBtn:hover img:nth-child(2) {
    display: block;
}

.about-moreBtn:hover img:nth-child(1) {
    display: none;
}


/* .home-about a{
	height: 56px;
	width: 166px;
	border-radius: 60px;
	border: 1px solid #666;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	padding: 0 30px;
	color: #333;
	margin-top: 60px;
	position: relative;
	transition: all 0.55s;
	transform: translate(0,0);
	z-index: 1;
} */


/* .home-about a:hover{
	transform: translate(10px,10px);
	background: #F5A53C;
	color: #fff;
	border: none;
}
.home-about a:hover img:nth-child(1){
	display: none;
}
.home-about a:hover img:nth-child(2){
	display: block;
} */


/* .home-about a::after{
	content: "";
	position: absolute;
	height: 56px;
	width: 166px;
	right: -1px;
	bottom: -1px;
	border-radius: 8px;
}
.home-about a:hover::after{
	content: "";
	border: 1px solid #eee;
	position: absolute;
	height: 56px;
	width: 166px;
	right: 5px;
	bottom: 5px;
	border-radius: 8px;
	z-index: -1;
} */

.he_syp2hd {
    /* transition: all 0.36s; */
    position: absolute;
    bottom: 8%;
    left: 0;
    /* width: 100%; */
    width: 100vw;
    text-align: center;
    z-index: 9;
}

.he_syp2hd.new_he_syfdpc {
    bottom: 0%;
    left: 0;
    background-color: #fff;
    padding: 30px 0 10%;
}

.he_syp2hd p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #999;
}

.he_syp2hd .shubiao {
    width: 36px;
    animation: xl 1.2s infinite;
}

.he_syp2hd h2 {
    font-size: 24px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 30px;
}

.he_syp2hd a {
    background: #fff;
    color: #333;
    width: 170px;
    margin: auto;
    border-radius: 30px;
    padding: 14px 40px;
    transition: all 0.35s;
    border: 1px solid #eee;
    transition: all 0.3s;
    display: block;
}

.he_syp2hd a:hover {
    background-color: #f5a63c;
    color: #fff;
    transform: translate(5px, 5px);
}

.he_syp2hd a img {
    margin-left: 20px;
}

.he_syp2hd a:hover {
    box-shadow: 0 0 10px #ddd;
}

@keyframes xl {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* .he_syp2{
	height: 100vh;
} */


/* 滚动新增开始 */

.he_syp2 {
    width: 100%;
    position: relative;
}

.mc_bs3_videobox {
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
}


/* 
.mc_bs3_videobox::before{
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 10%;
	background: #fff;
} */


/* .mc_bs3_videobox.act .mc_bs3_videowrap {
    width: 100%;
    transform: translate(-50%, -50%);
} */

.he_syp2 .mc_bs3_video {
    width: 80%;
}

.mc_bs3_video,
.mc_bs3_videowrap::before,
.mc_bs3_videowrap {
    /* transition: all 1s; */
}

.mc_bs3_videobox.act .mc_bs3_video {
    opacity: 1;
    /* transition: all 1s !important;
    transition-delay: 1s; */
}

.mc_bs3_video {
    /* z-index: -2;
    opacity: 0; */
    /* width: auto; */
    height: auto;
    max-width: none;
    /* transform: translateY(-30px); */
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    min-height: 100vh;
    transition: inherit;
    /* width: 20%; */
}

.mc_bs3_videowrap {
    position: absolute;
    left: 0;
    top: 0;
    /* left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%); */
    width: 100vw;
    height: 100vh;
    max-width: none;
    overflow: hidden;
    display: none;
}

.mc_b_s3 {
    height: 220vh;
    overflow: hidden;
}

.mc_bs3_svg {
    position: absolute;
    left: 49.5%;
    /* top: calc(50% - 1px); */
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: none;
    /* transition: all 0.36s; */
}

.he_syp4 .mc_bs3_svg {
    top: calc(50% + 2px);
}

.mc_bs3_svg {
    width: 120%;
}

.mc_bs3_videowrap {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.mc_bs3_videowrap::before {
    width: 110%;
}


/* .mc_bs3_videowrap::before,
.mc_bs3_videowrap {
    transition: all 1s;
} */

.mc_bs3_title {
    /* transition: all 0.36s; */
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    text-align: center;
}

.mc_bs3_videobox.act .he_syp2hd {
    /* transform: translate(-50%, -50%) translateX(-100%); */
    opacity: 0;
}

.mc_bs3_videobox.act .mc_bs3_videowrap::before {
    opacity: 0;
}


/* .mc_bs3_videobox.act .mc_bs3_videowrap {
    width: 100%;
    transform: translate(-50%, -50%);
} */

.mc_bs3_videobox.act .mc_bs3_video {
    opacity: 1;
    /* transition: all 1s !important; */
    /* transition-delay: 1s; */
}

.mc_bs3_videobox.v1 video {
    background: linear-gradient(to bottom, #fff 50%, #080811 80%);
}

.mc_bs3_videobox.end .mc_bs3_svg {
    opacity: 0;
}

.he_syp2hd p {
    font-size: 16px;
    line-height: 1.75;
    color: #999999;
    margin-bottom: 15px;
}

.he_syp2hd img {
    width: 36px;
    animation: xl 1.2s infinite;
}

.he_syp2hd {
    margin-top: 37px;
}

@keyframes xl {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.he_syp3 {
    width: 100%;
    position: relative;
    padding-top: 230px;
    padding-bottom: 315px;
}

.he_syp3tp p {
    font-size: 16px;
    line-height: 1.75;
    color: #666666;
}

.he_syp3tp {
    margin-top: 15px;
}

.he_syp3top {
    text-align: center;
    margin-bottom: 50px;
}

.he_syp3bp {
    width: 100%;
    position: relative;
    margin-top: 20px;
    cursor: inherit !important;
}

.he_syp3bpul {
    width: 100%;
    position: relative;
}

.he_syp3bpli {
    width: 21% !important;
    margin: 0 11px;
    border-radius: 14px;
    overflow: hidden;
}

.he_syp3bpbx {
    width: 100%;
    position: relative;
}

.he_syp3bpsig {
    width: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.he_syp3bpsig::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-image: linear-gradient( to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.01));
    z-index: 10;
    opacity: 0;
    transition: all 0.36s;
}

.he_syp3bp {
    overflow: inherit !important;
}

.he_syp3bpli.swiper-slide-active .he_syp3bpbx {
    transform: scale(0.94);
}

.he_syp3bpli.swiper-slide-active .he_syp3bpsig::after {
    opacity: 1;
}

.he_syp3bpli.swiper-slide-active {
    margin: 0;
}

.he_swepbx {
    width: 49px;
    margin: 0 12px;
    outline: none;
}

.he_swepbx img {
    width: 100%;
    border-radius: 50%;
}

.he_swep {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.he_syp4 .mc_bs3_videobox .mc_bs3_svg {
    opacity: 0;
}

.he_syp4 .mc_bs3_videobox.end .mc_bs3_svg {
    opacity: 1;
}


/* .he_syp4 .mc_bs3_videobox .mc_bs3_title {
    opacity: 1;
} */

.he_syp4 .mc_bs3_videobox .he_syp2hd {
    opacity: 0;
    bottom: 15%;
}

.he_syp4 .mc_bs3_videobox.act .he_syp2hd {
    opacity: 1;
}

.he_syp4 .mc_bs3_videobox .he_syp2hd img {
    animation: none;
    width: auto;
}

.he_syp2hmo a {
    font-size: 16px;
    line-height: 1.5;
    color: #274a94;
}

.he_syp1ti {
    transform: translateY(100px);
}

.he_syp1ble {
    transform: translateY(100px);
}

.he_syp1bri {
    transform: translateY(100px);
}

.he_syp1.on .he_syp1ti {
    -webkit-animation: effect0 1s ease-out both;
    animation: effect0 1s ease-out both;
}

@-webkit-keyframes effect0 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0px);
    }
}

.he_syp1.on .he_syp1ble {
    -webkit-animation: effect1 1s ease-out both;
    animation: effect1 1s ease-out both;
    /*animation-delay: 0.36s;*/
}

@-webkit-keyframes effect1 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0px);
    }
}

.he_syp1.on .he_syp1bri {
    -webkit-animation: effect2 1s ease-out both;
    animation: effect2 1s ease-out both;
    /*animation-delay: 0.36s;*/
}

@-webkit-keyframes effect2 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0px);
    }
}

.he_syp4 {
    height: 300vh;
}

.he_syp4 .mc_bs3_title {
    bottom: 20%;
}

.he_nyban {
    width: 100%;
    position: relative;
}

.he_nybanig {
    width: 100%;
    position: relative;
    height: 557px;
}

.he_nybanig img {
    width: auto;
    height: 100%;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: inherit !important;
}

.he_nybante h1 {
    font-size: 60px;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
}


/* .he_nypu .he_nyban {
    margin-top: 69px;
} */

.he_nybante {
    position: absolute;
    top: 100px;
    text-align: center;
    width: 100%;
}

.he_b1p1 {
    width: 100%;
    position: relative;
    margin-top: -300px;
}

.he_bode {
    width: 100%;
    position: relative;
}

.he_bodeli a {
    font-size: 14px;
    line-height: 1.75;
    color: #fff;
    transition: all 0.36s;
}

.he_bodeli {
    font-size: 14px;
    line-height: 1.75;
    color: #fff;
}

.he_bodeli.act a {
    color: rgba(255, 255, 255, 0.6);
}

.he_bodeli {
    margin-left: 3px;
}

.he_bodeli:first-child {
    margin-left: 0;
}

.he_b1p1ny .he_conten1 {
    background: #fff;
    border-radius: 14px;
}

.he_b1p1ny {
    margin-top: 18px;
}

.he_b1p1bx {
    width: 100%;
    padding-top: 80px;
}

.he_b1p1le {
    width: 65.26%;
    position: relative;
}

.he_b1p1ri {
    width: calc(100% - 65.26%);
    padding-left: 4.5%;
}

.he_b1p1lenu {
    width: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.he_b1p1leig {
    width: 100%;
    position: relative;
}

.he_b1p1leig img {
    transition: all 0.8s;
}

.he_b1p1leig::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient( to top, rgba(17, 14, 65, 0.65), rgba(17, 14, 65, 0.01));
    height: 170px;
    z-index: 10;
}

.he_b1p1leig img {
    border-radius: 14px;
}

.he_b1p1lep1 p {
    font-size: 24px;
    line-height: 1.5;
    color: #ffffff;
    height: 36px;
    overflow: hidden;
}

.he_b1p1lete {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    padding: 33px 45px;
}

.he_b1p1lep2 p {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
}

.he_b1p1lep2 {
    margin-top: 18px;
}

.he_b1p1le a {
    width: 100%;
    display: block;
}

.he_b1p1ribx {
    width: 100%;
    position: relative;
}

.he_b1p1li {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    margin-top: 38px;
}

.he_b1p1li:first-child {
    margin-top: 8px;
}

.he_b1p1lst p {
    font-size: 16px;
    line-height: 1.75;
    color: #284a94;
    font-family: "RobotoRegular" !important;
}

.he_b1p1lsl p {
    font-size: 18px;
    line-height: 1.65;
    color: #333333;
    height: 58px;
    overflow: hidden;
    transition: all 0.36s;
}

.he_b1p1lsl {
    margin-top: 10px;
}

.he_b1p1li a {
    width: 100%;
    display: block;
    padding-bottom: 23px;
}

.he_b1p2 {
    width: 100%;
    position: relative;
    z-index: 20;
}

.he_b1p3 .he_content {
    padding-top: 50px;
}

.he_b1p2 {
    margin-top: 50px;
}

.he_b1p2bx {
    width: 100%;
    position: relative;
}

.he_b1p2le {
    width: 270px;
}

.he_b1p2ri {
    width: calc(100% - 270px);
    padding-left: 17px;
}

.he_b1p2tb {
    width: 100%;
    position: relative;
}

.he_b1p2tsh {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 0 24px;
    cursor: pointer;
}

.he_b1p2tskp p {
    font-size: 14px;
    color: #999999;
    line-height: 64px;
    height: 64px;
    overflow: hidden;
}

.he_b1p2tskp {
    width: 100%;
    padding-right: 10px;
}

.he_b1p2ar {
    width: 10px;
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
}

.he_b1p2ar img {
    width: 100%;
    transition: all 0.36s;
}

.he_b1p2txa {
    width: 100%;
    position: absolute;
    top: 72px;
    left: 0;
    z-index: 10;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    display: none;
    z-index: 20;
}

.he_b1p2txa {
    padding: 18px 24px;
}

.he_b1p2txa p {
    color: #999999;
    font-size: 14px;
    line-height: 1.75;
    margin: 2px 0;
    cursor: pointer;
    transition: all 0.36s;
    height: 24px;
    overflow: hidden;
}

.he_b1p2rv {
    width: 100%;
    position: relative;
    height: 64px;
    line-height: 64px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.he_b1p2rv input {
    width: 100%;
    padding: 0 24px;
    padding-right: 50px;
    color: #999999;
    font-size: 14px;
}

.he_b1p2rv input::placeholder {
    color: #999999;
    font-size: 14px;
}

.he_b1p2rv img {
    width: 26px;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    position: absolute;
    cursor: pointer;
}

.he_b1p3 {
    width: 100%;
    position: relative;
}

.he_b1p3bx {
    width: 100%;
    position: relative;
}

.he_b1p3ul {
    width: 100%;
}

.he_b1p3li {
    width: 33.333333%;
    position: relative;
    border-right: 1px solid #e9edf0;
    transition: all 0.36s;
    margin-bottom: 48px;
}

.he_b1p3bu {
    width: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    padding: 50px 48px 52px;
}

.he_b1p3bu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: url(../images/b1pic02.jpg) center / cover no-repeat;
    transition: all 0.36s;
    opacity: 0;
    z-index: -1;
}

.he_b1p3bu .he_b1p1lep1 p {
    color: #333333;
    height: 72px;
}

.he_b1p3bu .he_b1p1lep1 {
    margin-top: 31px;
    transition: all 0.36s;
}

.he_b1p3jp p {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    height: 48px;
    overflow: hidden;
}

.he_b1p3jp {
    margin-top: 50px;
}

.he_b1p3mo .he_b1p1lep2 p {
    color: #274a94;
}

.he_b1p3mo {
    margin-top: 70px;
    transition: all 0.36s;
}

.he_b1p3li a {
    width: 100%;
    display: inline-block;
}

.he_b1p3li:nth-child(3n) {
    border-right: none;
}

.he_pcfy {
    width: 100%;
}

.he_b1p4 {
    padding-bottom: 120px;
}

.he_b1p3 {
    padding-bottom: 80px;
}

.he_fot {
    width: 100%;
    position: relative;
    background: #403f45;
}

.he_fojt {
    width: 100%;
    position: relative;
    padding: 52px 0 32px;
}

.he_fojtqle {
    width: 140px;
    padding-right: 15px;
}

.he_fojtqri {
    width: calc(100% - 140px);
    margin-top: 2px;
}

.he_fojalp p {
    font-size: 16px;
    line-height: 1.75;
    color: #9b9b9d;
    transition: all 0.36s;
    cursor: pointer;
    height: 28px;
    overflow: hidden;
}

.he_fojalp.act p {
    color: #ffffff;
}

.he_fojalp {
    margin-bottom: 10px;
}

.he_fojtbv {
    width: 100%;
    position: relative;
}

.he_fojtbp1 p {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}

.he_fojtbp2 p {
    font-size: 48px;
    line-height: 1.4;
    color: #ffffff;
    font-family: "ROBOTO-BOLD" !important;
    position: relative;
}

.he_fojtbp2 span {
    font-family: "ROBOTO-BOLD" !important;
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    padding-left: 5px;
    position: relative;
}

.he_fojtbp2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 13px;
    height: 7px;
    background-image: url(../images/fotar.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: none;
}

.he_fojtbp3 p {
    font-size: 14px;
    line-height: 1.75;
    font-family: "PoppinsRegular";
    color: #9b9b9d;
}

.he_fojtbli {
    width: 100%;
    display: none;
}

.he_fojtbli:first-child {
    display: block;
}

.he_fojtbul {
    width: 100%;
    position: relative;
}

.he_fojtle {
    width: 50%;
}

.he_fojtri {
    width: 50%;
    text-align: right;
    margin-top: 24px;
}

.he_xwho {
    width: 46px;
    /* height: 46px; */
    cursor: pointer;
    position: relative;
}

.he_xwho .he_wxhig {
    width: 100%;
    border-radius: 50%;
}

.he_xwhofd {
    width: 404px;
    position: absolute;
    bottom: 73px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: none;
    background: #fff;
    box-shadow: 0 5px 7px 0 rgba(132, 132, 132, 0.1);
    border-radius: 14px;
    /* overflow: hidden; */
    padding: 74px 30px 17px;
}

.he_xwhofd::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
    width: 0;
    height: 0;
    border-bottom: 14px solid transparent;
    border-top: 14px solid #fff;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
}

.he_tchun {
    display: inline-block;
}

.he_xwho1 {
    margin-right: 14px;
}

.he_xwhofig {
    width: 105%;
    position: absolute;
    top: -85px;
    left: 48%;
    transform: translateX(-50%);
}

.he_xwhofig img {
    width: 100%;
}

.he_xwhofli {
    width: 33.333333%;
    padding: 0 8px;
    text-align: center;
}

.he_xwhoful {
    margin: 0 -8px;
}

.he_xwhofbx {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px;
}

.he_xwhofbx img {
    width: 100%;
}

.he_xwhofbte p {
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    height: 24px;
    overflow: hidden;
}

.he_xwhofbte {
    margin-top: 2px;
}

.he_xwhomo img {
    width: 19px;
}

.he_xwhomo {
    text-align: center;
    margin-top: 10px;
}

.he_xwhomo a {
    display: inline-block;
}

.he_xwho2 a {
    position: absolute;
    width: 100%;
    height: 100% !important;
    display: block;
    background: none !important;
    left: 0;
    top: 0;
    z-index: 5;
}

.he_xwho2 a {
    padding-left: 0 !important;
}

.he_fobt {
    width: 100%;
    position: relative;
    background: #36353b;
    padding-top: 42px;
}

.he_fobtty {
    width: 100%;
}

.he_fobttli a {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    font-weight: bold;
    transition: all 0.36s;
}

.he_fobttli {
    margin-right: 70px;
}

.he_fobtnh {
    width: 98%;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.he_fobtnh {
    margin-top: 70px;
    padding: 12px 0;
}

.he_fottbri p a:last-child {
    color: #5b5a5f;
}

.he_fottgle a {
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
}

.he_fottgle {
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
}

.he_b1p2txbc {
    height: 100px;
    overflow: hidden;
}

.he_b1p2txa .mCSB_inside>.mCSB_container {
    margin-right: 19px;
}

.he_b1p2txa .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    position: relative;
    width: 2px;
}

.he_b2pxbx {
    width: 100%;
    padding: 90px 98px;
}

.he_b2pxbxt1 .he_b1p1lep1 p {
    color: #333333;
    height: inherit;
}

.he_b2pxbxt2 {
    margin-top: 23px;
}

.he_b2pxbxti {
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 35px;
}

.he_b2pxny {
    width: 100%;
    margin-top: 38px;
}

.he_b2pxbh p {
    font-size: 16px;
    line-height: 1.875;
    color: #666666;
    margin-bottom: 16px;
}

.he_b1p1sx {
    width: 100%;
    position: relative;
    padding-top: 70px;
}

.he_b1p1qh {
    width: 50%;
    position: relative;
}

.he_b1p1qhle {
    padding-right: 36px;
}

.he_b1p1qhri {
    padding-left: 36px;
}

.he_b1p1qh a {
    width: 100%;
    display: block;
}

.he_b1p1bf p {
    font-size: 16px;
    line-height: 1.75;
    color: #274a94;
}

.he_b1p1kf p {
    font-size: 18px;
    line-height: 1.75;
    color: #333333;
    height: 31px;
    overflow: hidden;
    padding-right: 50px;
    transition: all 0.36s;
}

.he_b1p1kf p span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: all 0.36s;
}

.he_b1p1kf {
    width: 100%;
    position: relative;
    margin-top: 7px;
}

.he_b1p2tb.on .he_b1p2ar img {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
}

.he_jianfbgd {
    max-height: 92px;
    overflow: hidden;
}

.he_syp3bpgig p {
    font-size: 18px;
    line-height: 1.75;
    color: #fff;
    height: 30px;
    overflow: hidden;
}

.he_syp3bpgig {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 26px;
    opacity: 0;
    transition: all 0.36s;
}

.he_syp3bpli.swiper-slide-active .he_syp3bpgig {
    opacity: 1;
}

.he_cdph {
    width: 406px;
    margin: 0 auto;
    display: none;
}

.he_syp3top .he_syp3ti {
    overflow: hidden;
}

.he_syp2hmo span {
    color: #6d9cd4;
}


/* .he_syp4 .mc_bs3_videobox.act .he_dxsp1 {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    animation-delay: 0.1s;
}

.he_syp4 .mc_bs3_videobox.act .he_dxsp2 {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    animation-delay: 0.2s;
}

.he_syp4 .mc_bs3_videobox.act .he_dxsp3 {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    animation-delay: 0.3s;
}

.he_syp4 .mc_bs3_videobox.act .he_dxsp4 {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    animation-delay: 0.4s;
}

.he_syp4 .mc_bs3_videobox.act .he_dxsp5 {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    animation-delay: 0.5s;
}

.he_syp4 .mc_bs3_videobox.act .he_dxsp6 {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    animation-delay: 0.6s;
} */

.he_banpj1 {
    overflow: hidden;
}

.he_banpj2 {
    overflow: hidden;
}

.he_playpn {
    display: none;
}

.he_b1p1ul {
    overflow: hidden;
}

.he_b1p3ul {
    overflow: hidden;
}

.he_yilou {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    z-index: 9;
}

.he_yilbx {
    width: 50%;
    position: relative;
}

.he_yilbp1 p {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
}

.he_yilbp2 p {
    font-size: 40px;
    line-height: 1.75;
    color: #fff;
}

.he_yilbp3 p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.he_yilbp2 {
    margin-top: 17px;
}

.he_yilbp3 {
    margin-top: 26px;
    padding-right: 24%;
}

.he_yiluig {
    width: 323px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    left: 0;
}

.he_yiluig img {
    width: 100%;
}

.he_yilbp2 p span {
    padding: 0 20px;
    position: relative;
}

.he_huhle {
    width: 15px;
    position: absolute;
    top: -4px;
    left: 2px;
    background: transparent;
}

.he_huhri {
    width: 15px;
    position: absolute;
    bottom: -8px;
    right: 17px;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
}

.he_yiluig {
    width: 54%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
            -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    left: -59%;
}

.mc_bs3_videobox.end .he_yilou {
    opacity: 0;
}

.he_jianfvcli {
    margin: 4px 0;
}

.he_syp1pkc {
    display: none;
}


/* .he_banig {
    height: calc(100vh - 69px);
}
*/

.he_banig .he_banpc {
    width: 100%;
    /*   max-width: inherit;
    height: 100%;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);*/
}

.he_syp4 .mc_bs3_videobox.act .two {
    -webkit-animation: fadeInUp 1s ease both;
    animation: fadeInUp 1s ease both;
    animation-delay: 0.4s;
}

.he_syp4 .mc_bs3_videobox.act .he_syp2hmo {
    -webkit-animation: fadeInUp 1s ease both;
    animation: fadeInUp 1s ease both;
    animation-delay: 0.4s;
}

.he_b1p3li.on {
    border-right: 1px solid transparent;
}

.he_syp1ckm .g_fadein1 {
    transition-delay: 0.1s;
}

.he_syp1ckm .g_fadein2 {
    transition-delay: 0.2s;
}

.he_syp1ckm .g_fadein3 {
    transition-delay: 0.3s;
}

.he_syp1ckm .g_fadein4 {
    transition-delay: 0.4s;
}

.he_syp1ckm .g_fadein5 {
    transition-delay: 0.5s;
}

.he_syp1ckm .g_fadein6 {
    transition-delay: 0.6s;
}

.he_syp1ckm .g_fadein7 {
    transition-delay: 0.7s;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    /* IE 9 */
    -webkit-transform-style: preserve-3d;
    /* Safari and Chrome */
    -o-transform-style: preserve-3d;
    /* Opera */
    -moz-transform-style: preserve-3d;
    /* Firefox */
}

.he_syp2 .mc_bs3_video {
    width: 100%;
}

.he_syp2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    z-index: 10;
}

.he_bansvg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

@-webkit-keyframes dots {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes dots {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.he_banli4.on circle {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
}

.he_banli4.on ellipse {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
}

.he_banli4.on .dot2 {
    animation-delay: 0s;
}

.he_banli4.on .dot17 {
    animation-delay: 0.2s;
}

.he_banli4.on .dot11 {
    animation-delay: 0.8s;
}

.he_banli4.on .dot12 {
    animation-delay: 1.5s;
}

.he_banli4.on .dot13 {
    animation-delay: 2.4s;
}

.he_banli4.on .dot1 {
    animation-delay: 1.8s;
}

.he_banli4.on .dot5 {
    animation-delay: 0.6s;
}

.he_banli4.on .dot4 {
    animation-delay: 2.4s;
}

.he_banli4.on .dot3 {
    animation-delay: 1.2s;
}

.he_banli4.on .dot6 {
    animation-delay: 1.6s;
}

.he_banli4.on .dot7 {
    animation-delay: 1.8s;
}

.he_banli4.on .dot8 {
    animation-delay: 1.9s;
}

.he_banli4.on .dot9 {
    animation-delay: 2.2s;
}

.he_banli4.on .dot10 {
    animation-delay: 1.6s;
}

.he_banli4.on .dot14 {
    animation-delay: 2.6s;
}

.he_banli4.on .dot15 {
    animation-delay: 2.8s;
}

.he_banli4.on .dot16 {
    animation-delay: 2s;
}

.he_syp1ckm span {
    transition: all 0.46s;
    color: #6d9cd4;
}

.he_syp2hmo .he_dxsp1 {
    transition-delay: 0.1s;
}

.he_syp2hmo .he_dxsp2 {
    transition-delay: 0.2s;
}

.he_syp2hmo .he_dxsp3 {
    transition-delay: 0.3s;
}

.he_syp2hmo .he_dxsp4 {
    transition-delay: 0.4s;
}

.he_syp2hmo .he_dxsp5 {
    transition-delay: 0.5s;
}

.he_syp2hmo .he_dxsp6 {
    transition-delay: 0.6s;
}

.he_syp2hmo .he_dxsp7 {
    transition-delay: 0.7s;
}

.he_loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 9999;
    /* background: #fff; */
    /* display: none; */
}

.he_inbo.acd .he_loading {
    display: none;
}

.he_loading.on .he_imgj1 {
    opacity: 0;
}

.he_loading .he_imgj2 {
    width: auto;
    height: 100%;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: inherit;
}

.he_inbo {
    overflow: hidden;
}

.he_inbo.on {
    overflow: inherit;
}

.he_loading.on1 {
    /* transition: transform 1s cubic-bezier(1, .01, 0, .04), opacity 1.5s ease-in;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%) matrix(45, 0, 0, 45, 0, 0); */
    transition: transform 1.8s cubic-bezier(1, 0.01, 0, 0.04), opacity 2s ease-in 0.8s;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%) matrix(45, 0, 0, 45, 0, 0);
    opacity: 0;
}

.he_syp1bmo p span {
    color: #6d9cd4;
    transition: all 0.36s;
}

.he_syp1bmo .g_fadein4 {
    transition-delay: 0.2s;
}

.he_fgdy p {
    display: inline-block;
}

.mc_bs3_videowrap .he_fengmtu {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: none;
}

.he_syp4 .mc_bs3_video {
    width: 100%;
}


/* 滚动结束 */


/* .home-title{
	width: 1400px;
	margin: 0 auto;
} */

.home-title h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 18px;
}

.yewuBox {
    margin-top: 100px;
}

.yewu-swiper {
    cursor: move;
    width: 1400px;
    margin-top: 40px;
    margin-bottom: 120px;
    padding: 20px 10px 50px 10px;
}

.yewu-swiper .swiper-slide {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 0 20px #999; */
    background: #fff;
}

.yewu-swiper .swiper-slide .yewuImg {
    width: 98%;
    margin-left: 1%;
    border-radius: 16px;
    transition: all 0.75s;
}

.yewu-swiper .swiper-slide:hover .yewuImg {
    box-shadow: 0 4px 8px #bbb;
}

.yewu-swiper .swiper-slide .yewu-txt {
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    /* color: #fff; */
    padding: 24px 6px;
    /* background: rgba(0,0,0,0.6); */
    /* height: 70px; */
    transition: all 0.65s;
    color: #333;
}

.yewu-swiper .swiper-slide .yewu-txt img {
    margin-top: 40px;
    width: 30px;
    -webkit-filter: grayscale(1);
    filter: gray;
    opacity: 0.8;
}

.yewu-swiper .swiper-slide:hover .yewu-txt img {
    filter: none;
    -webkit-filter: grayscale(0);
}

.yewu-swiper .swiper-slide .yewu-txt:hover {
    /* height: 100%; */
    /* padding-top: 100px; */
}


/* .yewu-swiper .swiper-slide span{
	position: relative;
	top: 20px;
	left: 0px;
	display: inline-block;
	width: 80px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 60px;
	border: 1px solid #ddd;
	color: #333;
	opacity: 1;
	transition: all 0.5s;
} */


/* .yewu-swiper .swiper-slide:hover .yewu-txt a{
	opacity: 1;
}
.yewu-swiper .swiper-slide:hover span{
	background: #F5A53C;
	color: #fff;
} */

.yewu-swiper .swiper-slide .yewu-txt h4 {
    font-size: 22px;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 16px;
    color: #333;
}

.yewu-swiper .swiper-slide .yewu-txt p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 6px;
    color: #666;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 300px;
    bottom: 0;
    left: 10px;
    top: auto;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 300px;
    bottom: 0;
    top: auto;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #999;
}

.threeBox {
    background: url(../images/sanda.jpg) no-repeat;
    background-size: 100% 100%;
    padding: 1px 0;
}

.threeBox .home-title {
    color: #fff;
    text-align: center;
    padding: 20px 100px;
    margin-top: 60px;
    line-height: 1.78;
}

.threeBox .home-title h1 {
    margin-bottom: 0;
}

.threeMain {
    display: flex;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
}

.three-left {
    width: 740px;
    height: 675px;
    position: relative;
    /* overflow: hidden; */
    transform: scale(1) translateX(-5%);
            -ms-transform: scale(1) translateX(-5%);
    /* IE 9 */
    -moz-transform: scale(1) translateX(-5%);
    /* Firefox */
    -webkit-transform: scale(1) translateX(-5%);
    /* Safari 和 Chrome */
    -o-transform: scale(1) translateX(-5%);
    top: -30px;
    left: -40px;
}

.quan_big {
    width: 740px;
    height: 740px;
    background: url(../images/quanbig.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.quan_center {
    width: 740px;
    height: 740px;
    background: url(../images/quanc1.png) no-repeat;
    background-size: 100% 100%;
    transform: rotate(0);
    transition: all 1s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
}

.quan_centers {
    width: 740px;
    height: 740px;
    background: url(../images/quanc2.png) no-repeat;
    background-size: 100% 100%;
    transform: rotate(0);
    transition: all 1s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.quan_main {
    width: 740px;
    height: 740px;
    position: relative;
    z-index: 11;
}

.quan_list {
    color: #fff;
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    transition: all 0.75s;
}

.quan_list_big {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quan_list_center {
    width: 140px;
    height: 140px;
    background: url(../images/quan_list_center.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.quan_list_center img {
    width: 30%;
}

.quan_list_center h3 {
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 1.78;
}

.quan_list_center .data-txt {
    display: none;
}

.donghua {
    animation: guodu 1s;
    -webkit-animation: guodu 1s;
    -moz-animation: guodu 1s;
    -o-animation: guodu 1s;
}


/* .donghua img{
	animation: guoduImg 1s;
	-webkit-animation:guoduImg 1s;
	-moz-animation:guoduImg 1s;
	-o-animation:guoduImg 1s;
} */

@keyframes guodu {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes guoduImg {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}


/* 小球 */


/* .quan_list:nth-child(1) {
  transform: translate(0px, -180px);
}
.quan_list:nth-child(2) {
  transform: translate(170px, 80px);
}
.quan_list:nth-child(3) {
  transform: translate(-150px, 80px);
} */

.quan_list:nth-child(1) {
    transform: translate(25px, -180px);
}

.quan_list:nth-child(2) {
    transform: translate(195px, -75px);
}

.quan_list:nth-child(3) {
    transform: translate(195px, 90px);
}

.quan_list:nth-child(4) {
    transform: translate(25px, 200px);
}

.quan_list:nth-child(5) {
    transform: translate(-150px, 80px);
}

.quan_list:nth-child(6) {
    transform: translate(-150px, -75px);
}

.quan_list.active .quan_list_big {
    background: url(../images/quan_list_big.png) no-repeat;
    background-size: 100% 100%;
}

.quan_list_center img {
    display: none;
}

.quan_list.active .quan_list_big img {
    display: block;
}

.quan_big {
    /* animation: rotate 10s linear infinite;
	-webkit-animation:rotate 10s linear infinite;
	-moz-animation:rotate 10s linear infinite;
	-o-animation:rotate 10s linear infinite; */
    transform: rotate(-85deg);
    opacity: 0;
}

.quan_center {
    animation: rotate_center 10s linear infinite;
    -webkit-animation: rotate_center 10s linear infinite;
    -moz-animation: rotate_center 10s linear infinite;
    -o-animation: rotate_center 10s linear infinite;
}

.quan_centers {
    animation: rotate 10s linear infinite;
    -webkit-animation: rotate 10s linear infinite;
    -moz-animation: rotate 10s linear infinite;
    -o-animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) skew(0deg) scale(1);
        -ms-transform: rotate(0deg) skew(0deg) scale(1);
        /* IE 9 */
        -moz-transform: rotate(0deg) skew(0deg) scale(1);
        /* Firefox */
        -webkit-transform: rotate(0deg) skew(0deg) scale(1);
        /* Safari ºÍ Chrome */
        -o-transform: rotate(0deg) skew(0deg) scale(1);
    }
    100% {
        transform: rotate(360deg) skew(0deg) scale(1);
        -ms-transform: rotate(360deg) skew(0deg) scale(1);
        /* IE 9 */
        -moz-transform: rotate(360deg) skew(0deg) scale(1);
        /* Firefox */
        -webkit-transform: rotate(360deg) skew(0deg) scale(1);
        /* Safari ºÍ Chrome */
        -o-transform: rotate(360deg) skew(0deg) scale(1);
    }
}

@keyframes rotate_center {
    0% {
        transform: rotate(360deg) skew(0deg) scale(1);
        -ms-transform: rotate(360deg) skew(0deg) scale(1);
        /* IE 9 */
        -moz-transform: rotate(360deg) skew(0deg) scale(1);
        /* Firefox */
        -webkit-transform: rotate(360deg) skew(0deg) scale(1);
        /* Safari ºÍ Chrome */
        -o-transform: rotate(360deg) skew(0deg) scale(1);
    }
    100% {
        transform: rotate(0deg) skew(0deg) scale(1);
        -ms-transform: rotate(0deg) skew(0deg) scale(1);
        /* IE 9 */
        -moz-transform: rotate(0deg) skew(0deg) scale(1);
        /* Firefox */
        -webkit-transform: rotate(0deg) skew(0deg) scale(1);
        /* Safari ºÍ Chrome */
        -o-transform: rotate(0deg) skew(0deg) scale(1);
    }
}

.three-right {
    color: #fff;
    width: 555px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
}

.three-right .iconfont {
    font-size: 23px;
}

.three-right ul {
    height: 100%;
}

.three-right li {
    height: 80%;
    position: relative;
    transition: all 1s;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.three-right li img {
    box-shadow: 0 0 30px #000;
    border-radius: 16px;
    width: 100%;
    /* height: 360px; */
}

.three-right li a {
    position: absolute;
    top: 1vmax;
    right: 1vmax;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    width: 90px;
    height: 54px;
    border-radius: 60px;
    text-align: center;
    line-height: 54px;
    font-size: 16px;
    transition: all 0.5s;
}


/* 新增 移动端底部电话，地址 */
.app_fot_call_me {
    font-size: 13px;
    opacity: 0.6;
    line-height: 2;
}

.app_fot_call_me:nth-of-type(1) {
    /* margin-top: 20px; */
}

@media (max-width: 1500px) {
    .three-right li a {
        transform: scale(0.6);
        transform-origin: right top;
    }
}

@media (max-width: 1350px) {
    .three-left {
        width: 740px;
        margin: auto;
        left: 0;
    }
    .three-right {
        margin: 20px auto;
    }
}

@media (max-width: 1450px) {
    .three-right {
        margin-left: -50px !important;
    }
}

@media (max-width: 1350px) {
    .three-left {
        transform: scale(0.8) !important;
     -ms-transform: scale(0.8) !important;
    /* IE 9 */
    -moz-transform: scale(0.8) !important;
    /* Firefox */
    -webkit-transform: scale(0.8) !important;
    /* Safari 和 Chrome */
    -o-transform: scale(0.8) !important;
        transition: all 0.5s;
        margin-left: -150px !important;
    }
    .three-right {
        transform: scale(0.8) !important;
             -ms-transform: scale(0.8) !important;
    /* IE 9 */
    -moz-transform: scale(0.8) !important;
    /* Firefox */
    -webkit-transform: scale(0.8) !important;
    /* Safari 和 Chrome */
    -o-transform: scale(0.8) !important;
        transition: all 0.5s;
        margin-left: -100px !important;
    }
}

@media (max-width: 1150px) {
    .three-left {
        transform: scale(0.7) !important;
             -ms-transform: scale(0.7) !important;
    /* IE 9 */
    -moz-transform: scale(0.7) !important;
    /* Firefox */
    -webkit-transform: scale(0.7) !important;
    /* Safari 和 Chrome */
    -o-transform: scale(0.7) !important;
        transition: all 0.5s;
        margin-left: -150px !important;
    }
    .three-right {
        transform: scale(0.7) !important;
             -ms-transform: scale(0.7) !important;
    /* IE 9 */
    -moz-transform: scale(0.7) !important;
    /* Firefox */
    -webkit-transform: scale(0.7) !important;
    /* Safari 和 Chrome */
    -o-transform: scale(0.7) !important;
        transition: all 0.5s;
        margin-left: -180px !important;
    }
}

.three-right li a:hover {
    background: #f5a53c;
    color: #fff;
    border: 1px solid #f5a53c;
}

.three-right li div h3 {
    font-size: 23px;
    margin: 26px 0;
}

.three-right li div p {
    line-height: 1.78;
    font-size: 17px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.three-btn {
    margin: 25% 10px 0;
}

.three-right .three-btn span {
    margin: 0 16px;
}

.anli {
    margin: 110px auto;
}

.anli .home-title {
    text-align: center;
}

.anli .home-title p {
    padding: 0 3em;
    line-height: 1.78;
    margin-bottom: 30px;
    margin-top: 24px;
}

.anliBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}

.anli-swiper {
    width: 750px;
    height: 480px;
}

.anli-swiper .swiper-slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-left: 10px;
}

.swiper-3d .swiper-slide-shadow {
    background: none;
}

.anli-swiper .swiper-slide img {
    width: 88%;
    height: auto;
    box-shadow: 0 0 10px #666;
    border-radius: 26px;
}

.anli-swiper .swiper-slide div {
    position: absolute;
    bottom: 70px;
    left: 60px;
    color: #fff;
    line-height: 2;
}

.anli-swiper .swiper-slide div h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anli-swiper .swiper-slide div p {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anli-left {
    margin-right: 30px;
}

.anli-right {
    /* width: 537px; */
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.anli-right a {
    border: 1px solid #999;
    width: 31%;
    /* height: 15vw; */
    min-width: 110px !important;
    padding: 10% 0;
    margin: 8px 0;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.55s;
}

@media (max-width: 1120px) {
    .anli-right a .home-anli-list {
        transform: scale(0.8);
    }
}

.anli-right a .home-anli-list {
    text-align: center;
}

.anli-right a .home-anli-list img {
    display: none;
    margin: 0 auto;
    margin-bottom: 36px;
}

.anli-right a .home-anli-list img:nth-child(2) {
    display: block;
}

.anli-right a:hover .home-anli-list img {
    display: none;
}

.anli-right a:hover .home-anli-list img:first-child {
    display: block;
}

.anli-right a .home-anli-list p {
    color: #333;
    font-size: 17px;
    font-weight: 400;
}

.anli-right a:hover .home-anli-list p {
    color: #fff;
}

.anli-right a:hover {
    background: url(../images/anlilistbg.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    box-shadow: 2px 2px 8px #ccc;
    transform: translateY(-6px);
}

.anli-right h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 28px;
    margin-top: 42px;
}

.anli-title {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #999;
    position: relative;
    padding-bottom: 10px;
}

.anli-title a {
    color: #333;
    font-weight: 600;
}

.anli-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #999;
}

.anli-title img {
    margin-right: 20px;
    margin-left: 6px;
}

.anli-txt {
    width: 89%;
    border-left: 1px solid #888;
    font-size: 14px;
    margin-left: 9%;
    padding-left: 16px;
    color: #666;
    line-height: 1.6;
    padding-top: 12px;
}

.anli-right ul li {
    /* margin-bottom: 27px; */
    margin-bottom: 18px;
}


/* .anli-right ul li a{
	font-size: 16px;
	color: #666;
} */

.anli-right ul li a {
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.anli-title img {
    display: none;
}

.anli-right ul li a:hover {
    color: #f5a53c;
}

.anli-right ul li .anliShow {
    display: none;
    transition: none;
}

.anli-right ul li .anli-title a {
    color: #333;
    font-weight: 600;
    font-size: 20px;
}

.anli-right ul li .anli-title a:hover {
    color: #f5a53c;
}

.anli-right ul li:first-child .anliShow {
    display: block;
}


/* .anli-right ul li:first-child .anliclick{
	display: none;
} */

.anliclick {
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-bottom: 10px;
}

.anliclick a {
    color: #333;
    font-weight: 600;
}

.anliclick.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #999;
}

.anliclick.active {
    border-bottom: 1px solid #999;
}

.anli-right ul li .anliclick.active {
    border-bottom: 1px solid #999;
}

.anli-right ul li .anliclick.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #999;
}

.flash4 {
    width: 100%;
    height: 700px;
    margin: 0px auto;
    margin-bottom: 20px;
    position: relative;
}

.flash4 ul {
    display: flex;
}

.flash4 ul li {
    width: calc(100% / 4);
    height: 700px;
    border-left: 1px solid #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.75s;
}

.flash4 ul li:first-child {
    border-left: none;
}

.flash4 ul li .imgTop {
    display: flex;
    justify-content: center;
}


/* .flash4 ul li .imgTop img{opacity:1;}
.flash4 ul li .imgTop img.tm{opacity:1;}
 */

.flash4 ul li:hover {
    width: 50%;
}

.showCenter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.showCenter h2 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 28px;
    letter-spacing: 2px;
    margin-top: 20px;
}

.showBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 14%;
    background: rgba(0, 0, 0, 0.4);
    /* display: none; */
    opacity: 0;
    transition: all 0.35s;
}

.showBox h2 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-top: 16px;
    margin-bottom: 36px;
}

.showBox p {
    line-height: 1.78;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.showBox-listBox {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.showBox .showBox-list {
    width: 150px;
    height: 160px;
    background: #fff;
    color: #409ad6;
    text-align: center;
    font-size: 15px;
    border-radius: 15px;
}

.showBox .showBox-list img {
    margin-top: 30px;
}

.showBox .showBox-list p {
    line-height: 1.5;
    margin-top: 10px;
}

.showBox-imgBox {
    text-align: center;
    margin-top: 20px;
}

.showBox-listBox.listBox-two {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}

.showBox .listBox-two .showBox-list {
    width: 47%;
    height: 130px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    padding: 16px 0;
    margin-bottom: 20px;
}

.showBox .listBox-two .showBox-list img {
    margin: 0 16px;
}

.showBox .listBox-two .showBox-list h3 {
    font-size: 18px;
    font-weight: 500;
}

.showBox .listBox-two .showBox-list p {
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.5;
    padding-right: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.box-p {
    height: 86px;
}

.box-list {
    margin-top: 60px;
}

.box-list p {
    margin-top: 30px;
}

.flash4 ul li:hover .showCenter {
    display: none;
}

.flash4 ul li:hover .showBox {
    opacity: 1;
}

.home-news {
    margin-top: 110px;
    margin-bottom: 110px;
}

.home-news h1 {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 58px;
}

.home-news ul {
    display: flex;
    justify-content: space-between;
}

.home-news ul li {
    width: 31%;
    /* border-radius: 18px 18px 0 0; */
    /* border-bottom: 2px solid #ddd; */
    overflow: hidden;
    transition: all 0.75s;
    position: relative;
}

.home-news ul li:hover {
    box-shadow: 0 0 10px #ddd;
    /* border-bottom: 2px solid #F5A53C; */
}

.home-news ul li::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.home-news ul li::before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f5a53c;
    z-index: 2;
    transition: all 0.55s;
}

.home-news ul li:hover::before {
    width: 100%;
}

.home-news ul li .newsImg {
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.75s;
}

.home-news ul li:hover .newsImg {
    transform: scale(1.05);
}

.home-news ul li span {
    /* border-bottom: 1px solid #666; */
    font-size: 15px;
    padding-right: 20px;
    display: inline-block;
    line-height: 40px;
    margin-bottom: 16px;
    color: #999999;
    transition: all 0.5s;
    padding: 0 16px;
    margin-top: 16px;
}

.home-news ul li span img {
    position: relative;
    top: -1px;
    margin-left: 6px;
    /* opacity: 0; */
    transition: all 0.5s;
    -webkit-filter: grayscale(1);
    filter: gray;
    opacity: 0.5;
}

.home-news ul li p {
    font-size: 15px;
    line-height: 1.78;
    color: #333333;
    transition: all 0.75s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    padding: 0 16px;
    margin-top: 4px;
    height: 80px;
}

.home-news ul li p a {
    color: #666;
}


/* .home-news ul li:hover p{
	transform: translateY(-46px);
} */

.home-news ul li:hover p a {
    color: #333333;
}


/* .home-news ul li:hover span{
	transform: translateY(90px);
	color: #333333;
	border-bottom: none;
	width: 100%;
	border-top: 1px dotted #ccc;
} */

.home-news ul li:hover span img {
    /* opacity: 1; */
}

.newsMore {
    text-align: center;
}

.newsMore a {
    height: 56px;
    width: 166px;
    border-radius: 60px;
    border: 1px solid #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding: 0 30px;
    color: #333;
    margin: 0 auto;
    margin-top: 60px;
    position: relative;
    transition: all 0.55s;
    transform: translate(0, 0);
    z-index: 1;
}

.newsMore a img:nth-child(2) {
    display: none;
}

.newsMore a span {}

.newsMore a:hover {
    transform: translate(10px, 10px);
    background: #f5a53c;
    color: #fff;
    border: none;
}

.newsMore a:hover img:nth-child(1) {
    display: none;
}

.newsMore a:hover img:nth-child(2) {
    display: block;
}


/* 底部 */

.fot-top {
    background: #444;
    color: #fff;
    height: 160px;
}

.fot-topBox {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.fot-topBox .fot-topleft img {
    position: relative;
    top: -2px;
}

.fot-topBox .fot-topleft h1 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-end;
}

.fot-topBox .fot-topleft h1>div {
    display: block;
/*    width: 100%;*/
}

.fot-topBox .fot-topleft h1>div.xia {
    transform: rotate(180deg);
}

.fot-topBox .fot-topleft h1 b {
    font-size: 32px;
    line-height: 1;
}

.fot-topBox .fot-topleft h1>div {
    /* padding-bottom: 2px; */
}

.fot-topBox .fot-topleft .time {
    font-size: 13px;
    line-height: 2;
    opacity: 0.6;
}


/* .fot-topBox .fot-topleft img.app_ewm{
  position: absolute;
  right: -35%;
  bottom: 5px;
  top: auto;
} */

.fot-topBox.fot_sb {
    width: calc(100vw - 40px) !important;
    align-items: flex-end;
}

.foot_sb_left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-box-pack: space-between;
    -webkit--moz-box-pack: space-between;
    box-pack: space-between;
    flex-direction: column;
    -webkit-flex-direction: column;
    height: 100px;
}

.fot_sb_right {
    padding-bottom: 5px;
}

@media (min-width: 980px) {
    .fot-topBox.fot_sb {
        display: none;
    }
}

.fot-topright {
    position: relative;
}

.fot-topright .ewmimg {
    width: 110px;
    height: 110px;
    border-radius: 5px;
}

.fot-topright .wxicon {
    opacity: 0.4;
    transition: all 0.75s;
}

.fot-topright .ewmbox {
    position: absolute;
    bottom: 70px;
    left: -30px;
    z-index: 999;
    background: url(../images/ewmbox.png) no-repeat;
    background-size: 100% 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.75s;
    border-radius: 6px;
}

.fot-box {
    background: #333333;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
}

.fot-center-top p {
    font-size: 14px;
}

.fot-center-top h1 {
    font-weight: 500;
    font-size: 36px;
    margin-top: 10px;
}

.fot-center-top h1 a {
    color: #fff;
}

.fot-list {
    display: flex;
    justify-content: space-between;
}

.fot-listleft {
    width: 25%;
}

.fot-listleft .fotlogoImg {
    margin-bottom: 30px;
    width: 195px;
}

.fot-listleft p {
    margin-bottom: 22px;
    font-size: 16px;
    opacity: 0.9;
}

.fot-listleft p img {
    margin-right: 6px;
    position: relative;
    top: -2px;
}

.fot-listright {
    width: 75%;
}

.fot-listright ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 84px;
}

.fot-listright ul li a {
    color: #fff;
    transition: all 0.3s;
}

.fot-listright ul li a:hover {
    color: var(--themeColor);
}

.fot-listright ul li h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.fot-listright ul li p {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.6;
    margin-bottom: 16px;
}

.fot-listright ul li p:hover {
    opacity: 1;
}

.fot-bot {
    width: 100%;
    height: 60px;
    border-top: 1px solid #999;
    background: #333;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #ccc;
    font-size: 14px;
}
.fot-bot a{
    color: #fff;
}
.fot-bot p {
    opacity: 0.6;
    text-align: center;
}

.top-banner {
    position: relative;
    overflow: hidden;
}

.top-banner img {
    width: 100%;
    /* animation: topBanner 2s;
	-webkit-animation:topBanner 2s;
	-moz-animation:topBanner 2s;
	-o-animation:topBanner 2s; */
}

@keyframes topBanner {
    0% {
        transform: scale(1.05);
        -ms-transform: scale(1.05);
        /* IE 9 */
        -moz-transform: scale(1.05);
        /* Firefox */
        -webkit-transform: scale(1.05);
        /* Safari ºÍ Chrome */
        -o-transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        -ms-transform: scale(1);
        /* IE 9 */
        -moz-transform: scale(1);
        /* Firefox */
        -webkit-transform: scale(1);
        /* Safari ºÍ Chrome */
        -o-transform: scale(1);
    }
}

.top-bannerTxt {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* margin: 13% 18%; */
    animation: topBannerImg 3s;
    -webkit-animation: topBannerImg 3s;
    -moz-animation: topBannerImg 3s;
    -o-animation: topBannerImg 3s;
    /* display: none; */
}

.top-bannerTxt .banner-img {
    transition: all 1s;
}

@media (max-width: 980px) {
    .top-bannerTxt {
        margin: 0 !important;
        width: 50vw;
        top: 60%;
    }
    .top-bannerTxt .banner-img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 500px) {
    .top-bannerTxt {
        width: 75vw;
    }
}

@keyframes topBannerImg {
    0% {
        /* height: 0px; */
        opacity: 0;
    }
    100% {
        /* height: 300px; */
        opacity: 1;
    }
}

.top-bannerFot {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    display: none;
}

.top-bannerFot img {
    width: 13px;
    height: 12px;
    animation: xl 1.2s infinite;
}

.about-topNav {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #eee;
    background: #fff;
    z-index: 99;
}

.topNav-box {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topNav-right {
    opacity: 0;
    transition: 0.5s;
}

.topNav-right.on {
    opacity: 1;
}
.topNav-right .right_sxl{
	display: none;
}

@media (max-width: 1240px){
	.topNav-right{
    opacity: 1;		
	}
	.topNav-right a{
		display: none;
	}
	.topNav-right .right_sxl{
		display: block;
	}
	.topNav-right.on a{
		display: block;
	}
	.topNav-right.on .right_sxl{
		display: none;
	}
}
.topNav-box a {
    margin-right: 50px;
    color: #333;
    position: relative;
}

.topNav-box a:hover {
    color: #f4a63c;
}

.topNav-box a.active {
    color: #f4a63c;
}

.topNav-box a.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f4a63c;
}

.topNav-right a img {
    margin-left: 4px;
}

.topNav-box .topNav-right a {
    margin-right: 0;
}

.topNav-right a.active::after {
    display: none;
}

.about-topNav.on {
    position: fixed;
    top: 80px;
    left: 0;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
}

.topNav-right a img {
    position: relative;
    top: -2px;
}

.aboutOneBox {
    background: url(../images/about/aboutonebg.png) left top no-repeat;
    margin-top: 60px;
    margin-bottom: 60px;
    padding-top: 30px;
    background-size: auto 100px;
    background-position-y: 23px;
}

.title-txt {
    font-size: 34px;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

.aboutOneBox p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

.aboutOneBox .title-txt {
    margin-bottom: 80px;
}

.userHoner-main {
    display: none;
}

.userHoner-main.show-userHoner {
    display: block;
}

.aboutTwoBox {
    margin-top: 80px;
    /* margin-bottom: 60px; */
    display: flex;
    justify-content: space-between;
}

.aboutTwoBox .title-txt {
    margin-bottom: 60px;
}

@media (max-width: 1350px) {
    .aboutTwoBox .aboutTwo-left .srcoll {
        height: 600px;
    }
}

@media (max-width: 1250px) {
    .aboutTwoBox .aboutTwo-left .srcoll {
        height: 500px;
    }
}

@media (max-width: 1150px) {
    .aboutTwoBox .aboutTwo-left .srcoll {
        height: 450px;
    }
}

.aboutTwoBox .aboutTwo-left .srcoll {
    padding-right: 15px;
    overflow: auto;
}

.aboutTwoBox .aboutTwo-left {
    width: 630px;
    margin-top: 0 !important;
    margin-bottom: 20px;
}

.aboutTwoBox .aboutTwo-left,
.aboutTwoBox .aboutTwo-right {
    flex: 1;
}

.aboutTwoBox .aboutTwo-left p.laoban {
    font-size: 16px;
    color: #666666;
    line-height: 2;
          text-align: justify;
}

.aboutTwoBox .aboutTwo-left p.laoban span {
    color: #f5a53c;
}

.userHoner {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.userHoner h1 {
    color: #f5a53c;
    font-size: 46px;
}

.userHoner h1 span {
    color: #666666;
}

.userHoner-right {
    width: calc(100% - 140px);
}

.userHoner-tab {
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
}

.userHoner-tab div.span_act {
    display: flex;
    flex-direction: row-reverse;
    flex: 1;
    justify-content: space-around;
}

.userHoner-tab i {
    font-size: 18px;
    font-weight: bold;
    color: #999;
}

.userHoner-tab span {
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.userHoner-tab span.active {
    color: #f5a53c;
}

.userHoner-swiper {
    font-size: 17px;
    color: #666666;
    padding: 16px 0;
    padding-bottom: 30px;
}

.userHoner-swiper .swiper-slide {
    cursor: move;
}

.userHoner-pagination {
    bottom: 0;
    text-align: left;
    font-size: 14px;
    color: #888;
    padding-left: 2px;
}

.userHoner-swiper .swiper-pagination-current {
    font-size: 16px;
    color: #f5a53c;
}

.userHoner-swiper .swiper-slide p {
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.userHoner-swiper .swiper-slide p b {
    color: #f5a53c;
    margin-left: 5px;
    margin-right: 4px;
}

.userHoner-pagination.swiper-pagination-lock {
    display: block;
}

.jiyu h3 {
    color: #333;
    border-left: 4px solid #f5a53c;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.jiyu p {
    font-size: 16px;
    color: #666666;
    line-height: 2;
    margin-bottom: 30px;
          text-align: justify;
}

.aboutTwoBox .aboutTwo-right {
    width: calc(100% - 700px);
    display: flex;
    justify-content: flex-end;
}

.dsz_img_warp {
    height: max-content;
}

.aboutTwo-right img {
    width: 100%;
    height: auto;
}

.aboutTwoAddsBox {
/*    background: #eee;*/
    padding-top: 90px;
    padding-bottom: 20px;
}

.aboutHexin-main {
    margin-top: 90px;
}

.aboutHexin-main img {
    max-width: 100%;
}

.aboutThreeMain {
    background: #eee;
    padding: 90px 0;
}

.aboutThreeBox .title-txt {
    margin-bottom: 60px;
}

.aboutThreeBox ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.aboutThreeBox ul li {
    position: relative;
    width: 48%;
    margin-right: 4%;
    margin-top: 2.5%;
    border-radius: 10px;
    /* background: #FFFFFF; */
    /* box-shadow: 0px 5px 38px rgba(0,69,87, 0.09); */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*overflow: hidden;*/
    -webkit-perspective: 1000;
    perspective: 1000;
    transform-style: preserve-3d;
    transition: all 0.35s;
}

.aboutThreeBox ul li:hover {
    box-shadow: 0px 0 10px #ddd;
}

.aboutThreeBox ul li:nth-child(2n+2) {
    margin-right: 0;
}

.aboutThreeBox ul li .qian {
    padding: 0 7%;
    padding-top: 5%;
    background: #fff;
    position: relative;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;
    transform: rotateY(0deg);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    z-index: 24;
    /* box-shadow: 0px 5px 38px rgba(0,69,87, 0.09); */
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    height: 397px;
}

.aboutThreeBox ul li .qian .team-listImg {
    width: 208px;
}

.aboutThreeBox ul li .qian .team-listImg img {
    width: 100%;
}

.aboutThreeBox ul li .qian .team-listTxt {
    width: calc(100% - 260px);
}

.aboutThreeBox ul li .qian .team-listTxt h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 10px;
}

.aboutThreeBox ul li .qian .team-listTxt h3 {
    font-size: 18px;
    color: #f5a53c;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
    padding-bottom: 16px;
}

.aboutThreeBox ul li .qian .team-listTxt p {
    line-height: 1.8;
    color: #333333;
    font-size: 16px;
    margin-top: 12px;
    height: 90px;
    overflow: hidden;
}

.aboutThreeBox ul li .qian .team-listTxt a {
    width: 170px;
    height: 54px;
    border-radius: 60px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding: 0 30px;
    color: #333;
    margin-top: 60px;
    position: relative;
    transition: all 0.55s;
    transform: translate(0, 0);
    z-index: 1;
}

.aboutThreeBox ul li .qian .team-listTxt a img {
    margin-left: 16px;
}

.aboutThreeBox ul li .qian .team-listTxt a img:nth-child(2) {
    display: none;
}

.aboutThreeBox ul li .qian .team-listTxt a:hover {
    /* transform: translate(10px,10px); */
    background: #f5a53c;
    color: #fff;
    border: none;
}

.aboutThreeBox ul li .qian .team-listTxt a:hover>img:nth-child(1) {
    display: none;
}

.aboutThreeBox ul li .qian .team-listTxt a:hover>img:nth-child(2) {
    display: block;
}


/* 
.aboutThreeBox ul li:hover .qian{
	z-index: 35;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
} */

.aboutThreeBox ul li.active .qian {
    z-index: 35;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.aboutThreeBox ul li .hou {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about/teamhou.png) center no-repeat;
    background-size: cover;
    box-shadow: 0px 5px 38px rgba(0, 69, 87, 0.09);
    -webkit-transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-transform: rotateY(-180deg);
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;
    transform: rotateY(-180deg);
    -moz-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    z-index: 13;
    border-radius: 10px;
    padding: 7%;
    color: #fff;
/*    overflow: auto;*/
}

.aboutThreeBox ul li .hou h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
}

.aboutThreeBox ul li .hou h2 span {
    font-size: 20px;
    font-weight: 500;
    margin-left: 20px;
}

.aboutThreeBox ul li .hou p {
    font-size: 17px;
    line-height: 1.8;

    text-align: left;
    overflow: auto;
    height: 76%;
}


/* .aboutThreeBox ul li:hover .hou{
	z-index: 46;
	display: block;
    -webkit-animation: fadeIn 0.8s;
    animation: fadeIn 0.8s;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
} */

.aboutThreeBox ul li.active .hou {
    z-index: 46;
    display: block;
    -webkit-animation: fadeIn 0.8s;
    animation: fadeIn 0.8s;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.aboutThreeAddsBox {
    padding-top: 100px;
}

.buildBox {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.build-left {
    width: 48.5%;
}

.build-left>a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.build-left img {
    width: 100%;
}

.build-right {
    width: 49%;
}

.build-left h3 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    padding-left: 16px;
}

.build-left h3::after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 20px;
    background: #f5a63c;
}

.build-left p {
    color: #666;
    font-size: 16px;
    line-height: 1.78;
          text-align: justify;
    /*margin: 20px auto;*/
    /*   display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
word-wrap: break-word;
white-space: normal !important;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical; */
}

.build-list {
    height: 574px;
    overflow-y: scroll;
    padding: 1px 5px;
    padding-right: 20px;
}

*:not(body) ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}


/* <!--修改 滚动条的 下面 的 样式--> */

*:not(body) ::-webkit-scrollbar-track {
    background-color: #eee;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 5px;
}


/* <!--修改 滑块 --> */

*:not(body) ::-webkit-scrollbar-thumb {
    background-color: #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 5px;
}

.build-list li {
    display: flex;
    height: 170px;
    padding: 15px;
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    box-shadow: 0 0 6px #ddd;
    margin-bottom: 30px;
    transition: all 0.55s;
}

.build-list li:last-child {
    /* margin-bottom: 0; */
}

.build-list li img {
    width: 200px;
    height: 140px;
}

.build-list li div {
    margin-left: 20px;
}
.build-list li div a{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.build-list li h4 {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.build-list li span {
    font-size: 14px;
    color: #666;
}

.build-list li p {
    font-size: 14px;
    color: #888;
    line-height: 1.78;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.build-list li:hover {
    background: #f5a53c;
}

.build-list li:hover h4 {
    color: #fff;
}

.build-list li:hover p {
    color: #fff;
    opacity: 0.7;
}

.build-list li:hover span {
    color: #fff;
    opacity: 0.8;
}

.aboutFourBox {
    padding: 100px 0;
}

.aboutFourBox .title-txt {
    margin-bottom: 60px;
}

.aboutFourBox ul {
    display: flex;
    justify-content: space-between;
}

.aboutFourBox ul li {
    position: relative;
    width: 400px;
    height: 461px;
    border-radius: 10px;
    /*background: #FFFFFF;
	box-shadow: 0px 5px 38px rgba(0,69,87, 0.09);*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*overflow: hidden;*/
    -webkit-perspective: 1000;
    perspective: 1000;
    transform-style: preserve-3d;
    text-align: center;
}

.aboutFourBox ul li .qian {
    height: 100%;
    width: 100%;
    background: url(../images/about/qian.png) center no-repeat;
    background-size: 100% 100%;
    position: relative;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;
    transform: rotateY(0deg);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    z-index: 24;
    /* box-shadow: 0px 5px 38px rgba(0,69,87, 0.09); */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.aboutFourBox ul li .qian p {
    width: 100%;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 2;
    /* color: #657388; */
    color: #333;
}

.aboutFourBox ul li .qian p:last-child {
    font-weight: 500;
}

.aboutFourBox ul li .qian img {
    /* margin-bottom: 40px; */
    margin-bottom: 30px;
    margin-top: 30px;
    /* background: url(../images/aboutsanjiaohei.png) no-repeat; */
    background-size: 100% 100%;
}

.aboutFourBox ul li:hover .qian {
    z-index: 35;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.aboutFourBox ul li .hou {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about/qianhou.png) center no-repeat;
    background-size: 100% 100%;
    /* box-shadow: 0px 5px 38px rgba(0,69,87, 0.09); */
    -webkit-transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-transform: rotateY(-180deg);
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;
    transform: rotateY(-180deg);
    -moz-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    z-index: 13;
    color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.aboutFourBox ul li .hou p {
    width: 100%;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 2;
}

.aboutFourBox ul li .hou p:last-child {
    font-weight: 500;
}

.aboutFourBox ul li .hou img {
    /* margin-bottom: 40px; */
    margin-bottom: 30px;
    margin-top: 30px;
    background: url(../images/abaoutsanjiao.png) no-repeat;
    background-size: 100% 100%;
}

.aboutFourBox ul li:hover .hou {
    display: flex;
    -webkit-animation: fadeIn 0.8s;
    animation: fadeIn 0.8s;
}

.aboutFourBox ul li:hover .hou {
    z-index: 46;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.aboutFiveBox .title-txt {
    margin-bottom: 40px;
}

.aboutFiveBox h2 {
    font-size: 20px;
    font-weight: 500;
    color: #666666;
    position: relative;
}

.aboutFiveBox h2 b {
    background: #fff;
    position: relative;
    font-weight: 500;
    z-index: 2;
    padding-right: 10px;
}

.aboutFiveBox h2 span {
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #eee;
    position: absolute;
    top: 14px;
    left: 0;
    z-index: 1;
}

.qiye-honer {
    width: 100%;
    margin-top: 40px;
    padding: 10px;
    margin-bottom: 30px;
}

.qiye-honer ul li {
    cursor: move;
}

.qiye-honer ul li img {
    box-shadow: 0 0 10px #ccc;
    width: 100%;
    height: 230px;
}

.qiye-honer ul li p {
    text-align: center;
    line-height: 1.78;
    margin: 16px 0;
    color: #333333;
    font-size: 14px;
}

.qiye-honer .swiper-pagination {
    bottom: 0;
}

.qiye-honer .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    /*background: #f4a63c;*/
    margin: 0 10px !important;
}

.licheng {
    /* margin-bottom: 100px; */
    padding-bottom: 240px;
    margin-top: 40px;
    position: relative;
    /* background: url(../images/aboutfot.png) bottom no-repeat; */
}

.about_fot_b {
    width: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0.05;
}

.licheng-tab {
    display: flex;
    justify-content: space-between;
}

.licheng-tab span {
    position: relative;
    /* margin: 20px; */
    font-size: 20px;
    color: #999999;
}

.licheng-tab span img {
    position: absolute;
    width: 32px;
    left: calc(50% - 16px);
    top: 30px;
    opacity: 0;
    transition: all 0.75s;
}

.licheng-tab span.active img {
    opacity: 1;
}

.licheng-tab span.active {
    color: #f5a53c;
}

.licheng-tab span:hover {
    color: #f5a53c;
    cursor: pointer;
}

.licheng-main {
    display: none;
}

.licheng-main.show-licheng {
    display: block;
}

.lichengUl {
    display: none;
}

.lichengUl.show-lichengUl {
    display: block;
}

.licheng-main {
    margin-top: 94px;
}

.licheng-mainBox {
    display: flex;
}

.licheng-mainBox .licheng-main-left {
    border-right: 1px solid #ddd;
    /* padding-right: 50px; */
    margin-right: 50px;
    width: 150px;
}

.licheng-mainBox .licheng-main-left p {
    font-size: 22px;
    color: #666666;
    cursor: pointer;
}

.licheng-mainBox .licheng-main-left p:hover {
    color: #f5a53c;
}

.licheng-mainBox .licheng-main-left p.active {
    color: #f5a53c;
}

.licheng-mainBox .licheng-main-left p:first-child {
    margin-bottom: 50px;
}

.licheng-mainBox .licheng-main-left p:last-child {
    display: none;
}

.licheng-main-right li {
    list-style-image: url(../images/about/liicon.png);
    padding-left: 6px;
    color: #666666;
    font-size: 16px;
    margin-bottom: 24px;
    margin-left: 20px;
}

.licheng-main-right li:last-child {
    margin-bottom: 0;
}

.aboutSixBox {
    position: relative;
    height: 500px;
    margin-top: 300px;
}

.aboutSix-main {
    position: relative;
    overflow: hidden;
    z-index: 6;
    color: #fff;
    top: -111px;
    padding-left: 80px;
}

.aboutSixBoxBg {
    width: 1920px;
    height: 720px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: 0px;
    margin-left: -960px;
    z-index: 2;
    background: url(../images/about/lichengbg.png) no-repeat left bottom;
}

.licheng-swiper .beizhu {
    margin-bottom: 2px;
    display: flex;
    align-items: flex-start;
    opacity: 0;
}

.licheng-swiper .beizhu.on {
    opacity: 1;
}

.licheng-swiper .beizhu span {
    margin-top: 0px;
    margin-left: 8px;
}

.licheng-swiper .beizhu img {
    width: 3px;
    height: 64px;
}

.licheng-swiper b {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #f4a63c;
    border-radius: 50%;
}

.licheng-swiper ul {
    margin-top: 20px;
}

.licheng-swiper ul li {
    position: relative;
    margin-left: 12px;
    margin-bottom: 10px;
}

.licheng-swiper ul li::after {
    /* list-style: disc; */
    content: "";
    width: 2px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: -10px;
    top: 0.7em;
}

.licheng-swiper h2 {
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 10px;
}

.licheng-swiper {
    padding-top: 123px;
    padding-bottom: 126px;
}

.licheng-swiper .swiper-slide {
    top: -122px;
    transition: all 0.75s;
}

.licheng-swiper .swiper-slide.swiper-slide-next {
    top: -33px;
}

.licheng-swiper .swiper-slide.swiper-slide-active {
    top: 71px;
}

.licheng-next {
    position: absolute;
    left: 0;
    top: 185px;
    z-index: 9;
    cursor: pointer;
}

.licheng-prev {
    position: absolute;
    right: 0;
    top: -125px;
    z-index: 9;
    cursor: pointer;
}

.aboutSixMain .title-txt {
    color: #fff;
    z-index: 9;
    position: absolute;
    top: -120px;
}

.licheng-next img:first-child {
    display: none;
}

.licheng-next.swiper-button-disabled img {
    display: none;
}

.licheng-next.swiper-button-disabled img:first-child {
    display: block;
}

.licheng-prev img:first-child {
    display: none;
}

.licheng-prev.swiper-button-disabled img {
    display: none;
}

.licheng-prev.swiper-button-disabled img:first-child {
    display: block;
}

.licheng-m-box {
    display: none;
    position: relative;
}

.licheng-m-box .title-txt {
    /* font-size: 20px; */
    /* font-weight: 500; */
    /* color: #666666; */
    position: relative;
    margin-bottom: 30px;
}

.lichengM-next {
    position: absolute;
    top: 20px;
    right: 40px;
}

.lichengM-prev {
    position: absolute;
    top: 20px;
    right: 0;
}

.licheng-m-box .aboutbig {
    position: absolute;
    bottom: 0px;
    left: 0;
}

.licheng-m-box .aboutbig img {
    width: 100%;
}

.licheng-swiper-m {
    width: 94%;
    margin-left: 3%;
    height: auto;
    padding-bottom: 80px;
}

.licheng-swiper-m .swiper-wrapper {
    height: auto;
}

.licheng-swiper-m .swiper-slide h2 {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}

.licheng-swiper-m .swiper-slide li {
    list-style-image: url(../images/about/liicon.png);
    padding-left: 6px;
    color: #666666;
    font-size: 16px;
    margin-bottom: 24px;
    margin-left: 20px;
}

.m-video {
    display: none;
    width: 100%;
    margin-top: 20px;
}

.m-video video {
    width: 100%;
}

.m-video.m-video-two {
    margin: 20px auto 0;
    position: relative;
    top: 5px;
}

.aboutfot-zhanwei {
    height: 100px;
}


/* .userHoner-s h3{
	color: #666;
	font-size: 26px;
	margin-bottom: 4px;
	margin-top: 16px;
}
.userHoner-s h3 span{
	color: #f5a53c;
}
.userHoner-s h2 {
    color: #333;
    border-left: 4px solid #F5A53C;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 500;
	margin-top: 20px;
    margin-bottom: 10px;
}
.userHoner-s p{
	color: #666;
	font-size: 17px;
	line-height: 1.7;
}
.jiyu h3 {
	margin-top: 40px;
    margin-bottom: 10px;
} */

.aboutTwoBox .aboutTwo-left {
    margin-top: 72px;
}

.aboutThreeAddsBox {
    padding-top: 88px;
}

.aboutFiveBox {
    margin-top: 88px;
}

.aboutSixBox {
    margin-top: 220px;
}

.licheng-m-box {
    margin-top: 40px;
}


/* 1.6新增页面加载动画 */

.he_loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    transform: translate(0);
    z-index: 999999999999999999;
    display: none;
}

.he_imgj {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.he_loadingLogo {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.app_about1_img {
    border-radius: 16px 16px 0 0;
}

@media (min-width: 980px) {
    .app_about1_img {
        display: none;
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 980px) {
    .pc_about1_img {
        display: none;
    }
}

.he_jindu {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background-color: #aaa;
}

.he_jinna {
    width: 0%;
    height: 100%;
    background-color: rgb(251, 198, 0);
    transition: all 2s;
}

.he_inbo>div:not(.he_loading),
.he_inbo>section {
    opacity: 0;
    /* transition: opacity 0.2s; */
    transition: none;
}

.he_inbo.on>div:not(.he_loading),
.he_inbo.on>section {
    opacity: 1;
}


/* 1.14 新增搜索 */


/* 搜索 */

.swich {
    background-color: #fff;
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    border-top: 1px solid #ddd;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.swich_box {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swich_box input {
    border: none;
    border-bottom: 1px solid #ddd;
    margin: 0 10px;
    flex: 1;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.swich_box img {
    width: 18px;
}

.swich_box input.error {
    border-color: red;
    color: red;
}

input[type="number"] {
    -webkit-appearance: none !important;
}

.notDate {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin: 10px auto;
}


/* 2.18 新增 */

.swich_pc {
    display: flex;
    position: relative;
    cursor: pointer;
}

.swich_pc .searchBtn {
    transition: all 0.3s;
    cursor: pointer;
    width: 25px;
}

.swich_pc input {
    cursor: pointer;
    width: 600%;
    position: absolute;
    right: 0;
    border: 1px solid #ccc;
    font-size: 18px;
    line-height: 25px;
    background-color: transparent;
    opacity: 0;
    padding: 0 3px;
    transition: all 0.3s;
}

.swich_pc.hover .searchBtn {
    opacity: 0;
}

.swich_pc.hover input {
    opacity: 1;
}

/* pc搜索 */
.pc_search_box_warp{
    width: 100%;
    line-height: 40px;
    position: fixed;
    left: 0;
    top: 80px;
    display: none;
}
.pc_search_box{
    background: #fff;
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.pc_search_box input{
    width: 40vw;
    line-height: 40px;
    margin: 20px 0;
    height: 0 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-right: -30px;
}
.pc_search_box img{
    filter: invert(100%);
    cursor: pointer;
}

.line3{
    -webkit-line-clamp:3 !important;
}

.tool_sxl{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(0,0,0,0.5);
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    z-index: 9999;
    display: none;
}




