
/*header*/

.header{
    background: #fff;
    height: 100px;
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    padding: 0px 0;
}
.header .left {}
.header .left_p {font-weight: 600;font-size: 23px;color: #c6010b;margin-top: 39px;margin-left: 25px;}
.header .left a img{
    height: 123px;
    margin: 15px 0;
}
.header .left .img2{
    display: none;
}

.header .nav{
    background: #fff;
    margin-top: 25px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 100%;
    line-height: 60px;
}
.header .navbar_nav li{
    float:left;
    position: relative;
    display: block;
}
.header .navbar_nav li:after{
    content: "";
    width: 0;
    height: 2px;
    background: #c6010b;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.header .navbar_nav li:hover:after{
    width: 100%;
}
.header .navbar_nav li a{
    font-weight: 600;
    text-decoration: none;
    height: 100%;
    padding: 0 23px;
    display: block;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 19px;
}
.header .navbar_nav li:hover a{
    color: #c6010b;
}
.header .navbar_nav li.dropdown{
    display: inherit;
    position: relative;
}
.header .navbar_nav li.dropdown .jt{
    width: 20px;
    height: 20px;
    background: url(i/top.png) no-repeat;
    background-size: 100% 100%;
    display: block;
}
.header .navbar_nav li.dropdown .dropdown_menu{
    display: none;
    position: absolute;
    top: 60px;
    background: #fff;
    box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
    width: 200px;
    left:-40px;
}
.header .navbar_nav li.dropdown .dropdown_menu a{
    font-size: 18px;
    color: #c6010b;
    padding: 0 10px;
    line-height: 48px;
    text-align: center;
    background: #ffffff;
    margin-bottom: 2px;
    font-weight: 300;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu{
    display: block;
    background: #f3f3f3;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a{
    color: #000;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover{
    color: #fff;
    background:#c6010b;
}

.header.on{
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
}
.header.on .left .img1{
    display: none;
}
.header.on .left .img2{
    height: 73px;
    display: block;
}
.header.on .navbar_nav li a{
    color: #333;
}
.header.on .navbar_nav li:hover a{
    color: #c6010b;
}

.navbar_nav {float:left;}
.nav_dh {
    padding: 4px 15px;
    margin-left: 54px;
    margin-top: 1%;
    float: right;
    display: flex;
    background: #c6010b;
    border-radius: 60px;
    /* border: 2px solid #333; */
}
.nav_dh img {
    width: 30px;
    margin-right: 8px;
}
.nav_dh p {
    line-height: 31px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}



#navToggle{
    display: none;
}

.m_nav{
    position: fixed;
    top: 0px;
    box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
    height: 60px;
    padding: 20px;
    box-sizing: border-box;
}
.m_nav .top .closed{
    width: 30px;
    height: 30px;
    vertical-align: middle;
    float:right;
    cursor: pointer;
}
.m_nav .logo{
    width: 100%;
    margin:0 auto;
}
.m_nav .logo img{
    height:103px;
    display: block;
    margin:27px auto;
}
.m_nav .ul{
    margin-top: 30px;
}
.m_nav .ul li{
    padding: 0 20px;
    border-bottom: 1px solid #f5f5f5;
    transform: translateY(0);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li a{
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    width: 100%;
}
.m_nav .ul li .dropdown_menu{
    display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
    display: block;
}
.m_nav .ul li .dropdown_menu a{
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child{
    border: none;
}
@media screen and (max-width:1400px){
.header .navbar_nav li a {padding: 0 15px;font-size: 17px;}
.nav_dh {margin-left: 30px;}
.nav_dh img {width: 25px;height: 25px;}
.nav_dh p {font-size:19px;line-height: 26px;}
.header .left_p {font-size: 20px;}
.header .navbar_nav li.dropdown .dropdown_menu a {
    font-size: 16px;}
.header .navbar_nav li.dropdown .dropdown_menu {width: 167px;}
}

@media screen and (max-width:1100px){
.header .navbar_nav li a {
    padding: 0 9px;}
}

@media screen and (max-width: 992px){
.header .left_p {font-size: 13px;margin-top: 13px;}
.nav_dh {}
.nav_dh img {}
.nav_dh p {}

    .header{
        height: 44px;
    }
    .header #navToggle {
        height: 100%;
        padding: 9px 15px;
        margin-right: 0;
        display: inline-block;
        float: right;
    }
    .header #navToggle span {
        position: relative;
        width: 25px;
        height: 1px;
        margin-top: 13px;
    }
    .header #navToggle span:before,
    .header #navToggle span:after {
        content: '';
        position: relative;
        width: 100%;
        height: 1px;
        left: 0;
    }
    .header #navToggle span,
    .header #navToggle span:before,
    .header #navToggle span:after {
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        display: block;
        background: #cf1617;
    }
    .header #navToggle span:before {
        top: 8px;
    }
    .header #navToggle span:after {
        bottom: 10px;
    }
    .header #navToggle.open span:before {
        top: 10px;
        -webkit-transform: translateY(-11px) rotate(-45deg);
        -moz-transform: translateY(-11px) rotate(-45deg);
        -ms-transform: translateY(-11px) rotate(-45deg);
        -o-transform: translateY(-11px) rotate(-45deg);
        transform: translateY(-11px) rotate(-45deg);
    }
    .header #navToggle.open span:after {
        bottom: 12px;
        -webkit-transform: translateY(10px) rotate(45deg);
        -moz-transform: translateY(10px) rotate(45deg);
        -ms-transform: translateY(10px) rotate(45deg);
        -o-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }
    .header #navToggle.open span {
        background: none;
    }
    .header #navToggle.open span:before,
    .header #navToggle.open span:after {
        background: #4f4f4f;
    }
    
    .header .nav{
        display: none;
    }

    .header .left a img {
    height: 30px !important;
    margin: 7px 0;
}

}

/*header-end*/


/*banner*/
.wrapper {margin-top: 100px;}
.wrapper img {width:100%;}
.wrapper .swiper-container .swiper-pagination {
   bottom: 25px;
}

.wrapper .swiper-container .swiper-pagination-bullet {
    opacity: 1;
    position: relative;
    width: 50px;
    height: 3px;
    border-radius: 0;
    margin: 0 4px;
    background-color: rgba(0,0,0,0.5);
    transition: background-color .3s ease;
}

.wrapper .swiper-container .swiper-pagination-bullet::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: 0 0;
}

.wrapper .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    animation: sliderPagination 3s linear forwards
}

.wrapper .swiper-container .swiper-pagination-bullet:hover {
    background-color: #fff;
}

@keyframes sliderPagination {
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media screen and (max-width: 992px){
.wrapper {
    margin-top: 44px;
}
.wrapper .swiper-container .swiper-pagination {
    bottom:5px;
}
.wrapper .swiper-container .swiper-pagination-bullet {
    width: 15px;
    height: 2px;
}

}
/*banner-end*/

/*index_title*/

.index_title {
    margin: 4% 0 2.5%;
    display: flex;
    justify-content: center;
}
.index_title i {
    width: 50px;
    height: 1px;
    display: block;
    background: #06060696;
    margin: 22px;
}
.index_title h2 {
    line-height: 46px;
    font-size: 40px;
    font-weight: 600;
    color: #c6010b;
}

@media (max-width:900px) {
.index_title h2 {
    font-size: 20px;
}
.index_title i {
    width: 20px;
}
}
/*index_title-end*/


/*index_ppyl*/

.index_ppyl {
    padding: 0 3%;
    display: flex;
}
.index_ppyl dl {
    padding: 2% 1%;
    width: 33%;
    overflow: hidden;
    position: relative;
}
.index_ppyl dl dt {
    padding: 0 4%;
    margin-bottom: 0%;
}
.index_ppyl dl dt img {
    position: absolute;
    margin-right: 2px;
    width: 186px;
    bottom: 2%;
    right: 0%;
}
.index_ppyl dl dt h1 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-top: 3px;
}

.index_ppyl dl dt h1 span {
    font-size: 12px;
    color: #000;
    margin-left: 11px;
    background: #fff;
    padding: 4px 7px;
    border-radius: 22px;
}

.index_ppyl dl dt a {}

.index_ppyl dl dd {
    margin: 3% 0 0;
}

.index_ppyl dl dd a{
    width: 66%;
    padding: 1.5% 4%;
    color: #fff;
    display: block;
    border-bottom: 1px solid #fff0;
    border-top: 1px solid #fff0;
}
.index_ppyl dl dd a:hover {border-bottom: 1px solid #ffffff40;}
.index_ppyl dl dd a:hover {border-top: 1px solid #ffffff40;}

.index_ppyl dl .ppyl_a {
    margin: 6% 4% 0;
}
.index_ppyl dl .ppyl_a a {
    font-size: 15px;
    background: #fff;
    padding: 9px 17px;
}
.index_ppyl dl .ppyl_a a:hover {color:#c6010b}

.index_ppyl dl dd a i {
    overflow: hidden;
    position:relative;
    margin-right: 9px;
    width: 30px;
    height: 30px;
    display: block;
    float: left;
}
.index_ppyl dl dd a p {
    display: block;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_ppyl dl dd a span {
    font-family: emoji;
    font-weight: 300;
    font-size: 14px;
}

.index_ppyl dl:nth-child(1) {
    background: #f8b62a;
}
.index_ppyl dl:nth-child(2) {
    background: #c6010b;
}
.index_ppyl dl:nth-child(3) {
    background: #ed7d31;
}

.index_ppyl dl dd a img {}
.index_ppyl dl:hover {}
.index_ppyl dl dd:hover a {color: #ffffff;}

@media (max-width:1500px) {

}

@media (max-width:1400px) {
.index_ppyl dl dt img {
    margin-right: 7px;
}
.index_ppyl dl dd a p {
    font-weight: 300;
}
}
@media (max-width:1300px) {
.index_ppyl dl {}
.index_ppyl dl dd a {}
.index_ppyl dl dd a i {width: 23px;height: 23px;}
.index_ppyl dl dt h1 {
    font-size: 28px;}
.index_ppyl dl dt img {
    margin-right: 4px;
    width: 123px;
    bottom: 2%;
}
.index_ppyl dl dd a p {
    line-height: 24px;
    font-weight: 300;
    font-size: 16px;
}
.index_ppyl dl dd a span { font-size: 11px;}
}

@media (max-width:1100px) {
.index_ppyl dl dd a {}
}


@media (max-width:900px) {
.index_ppyl {padding: 0% 0;display:block;}
.index_ppyl dl {width: auto;padding: 4%;margin: 4%;}
.index_ppyl dl dt h1 {line-height: 25px;font-size: 29px;}
.index_ppyl dl dd a{
    padding: 2% 0%;
}
.index_ppyl dl dd a i {width: 22px;height: 22px;margin-right: 9px;}
.index_ppyl dl dt img {
    margin-right: 10px;
    width: 113px;
    bottom: 6%;
 }
 .index_ppyl dl dt {padding:0;}

.index_ppyl dl .ppyl_a {
    margin: 5% 0% 0;
} 
.index_ppyl dl .ppyl_a a {
    font-size: 13px;}
}


/*index_ppyl-end*/


/*index_shipin*/

.index_shipin {}
.index_shipin ul {
    justify-content: space-between;
    display: flex;
    padding: 0 3% 5%;
}
.index_shipin ul li {overflow: hidden;position: relative;width: 32%;}
.index_shipin ul li img {}
.index_shipin ul li .sp_top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008f;
    transition: 1s all;
    -webkit-transition: 1s all;
}
.index_shipin ul li .sp_top i {
    display: block;
    width: 100%;
    position: absolute;
    top: 34%;
    transition: 1s all;
    -webkit-transition: 1s all;
}
.index_shipin ul li .sp_top i img {
    display: block;
    width: 81px;
    margin: 0 auto;
}
.index_shipin ul li .sp_top p {
    transition: 1s all;
    -webkit-transition: 1s all;
    font-size: 20px;
    text-align: center;
    padding: 0 4%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    position: absolute;
    bottom: 22%;
    width: 92%;
}

.index_shipin ul li:hover .sp_top {opacity:0;}
.index_shipin ul li:hover .sp_top i {top:-100%;}
.index_shipin ul li:hover .sp_top p {bottom:-100%;}


@media (max-width:900px) {
.index_shipin {}
.index_shipin ul {
    padding: 0 1% 6%;
}
.index_shipin ul li {}
.index_shipin ul li .sp_top i img {width:25px;}
.index_shipin ul li .sp_top p {
    font-size: 11px;
    font-weight:300;
    bottom: 14%;
}
.index_shipin ul li .sp_top i {top:20%;}
}


/*index_shipin-end*/



/*footer*/
.footer {
    overflow:hidden;
    padding: 35px 0;
    background: #222;
}

.foot-contact {
    margin-top: 20px;
}

.footer .foot-contact dl dt {
    padding-bottom: 20px;
    margin-bottom: 20px;
    font: normal 14px/1 'gotham-medium';
    color: #fff;
    border-bottom: 1px solid #282828;
}
.footer .foot-contact dl dd i {
    width: 30px;
    height: 30px;
    display: block;
}
.footer .foot-contact dl .address {
    display: flex;
}
.footer .foot-contact dl .address span {
    color: #767676;
    font-size: 13px;
}

.footer .foot-contact dl .phone-number span {
    line-height: 22px;
    font-size: 29px;
    font-weight: 800;
}
.footer .foot-contact dl .phone-number {margin-bottom: 17px;display:flex;}
.footer .foot-contact dl .phone-number span a {
    line-height: 20px;
    color: #fff;
}

.qr-content {
    float: left;
    width: 137px;
    margin-top: 20px;
    text-align: center;
    margin: 0 13px;
}

.qr-content img {
overflow: hidden;
border-radius: 10px;
}
.qr-content p {
    font-size:13px;
    color: #999;
    margin-top: 10px;
}

.copyright {
    line-height: 47px;
    background: #2d2f2d;
    font-size: 12px;
}

.copyright .container {
    border-top: 1px solid #424442;
}

.copyright .container span {
    color: #898989;
    margin-right: 16px;
}
.copyright .container a {
    color: #898989;
}


@media (max-width:900px) {

.footer .foot-contact dl .phone-number span a:hover {}
.foot-form .title h3, .foot-form .title h4 {font-size: 13px;}
.foot-form .title h3 b {font-size: 20px;}
.foot-form .title .tel b {font-size: 22px;}
.foot-form .title .tel i {margin-right: 2px;width: 22px;}
.foot-form .title .tel {margin-top: 21px;}
.foot-form {padding: 22px 0;}
.foot-form .cont .form-list textarea {height: 82px;font-size: 11px;}
.foot-form .cont .form-list .inp {height: 36px;font-size: 11px;padding: 0px 9px;}
.foot-form .cont .form-list .sub {width: 89px;height: 31px;font-size: 11px;}

}


@media (max-width:750px){
.footer .foot-contact dl .phone-number {
    margin-bottom: 2px;}
.footer {
    padding: 17px 0;}
.foot-form .com-width {display:block;}
.foot-form .title {width:100%;margin-bottom:20px;}
.foot-form .cont {width:100%;}
.foot-form .title .tel {margin-top: 3px;}
.qr-content img {width:100%;}
.footer .foot-contact dl .phone-number span {font-size:16px;}
.footer .foot-contact dl .address span {font-size: 10px;}
.footer .foot-contact dl dd i {
    width: 17px;
    height: 17px;}
.footer .foot-contact dl dd i img {width:69%;}
.footer .foot-contact dl dt {
    padding-bottom: 12px;
    margin-bottom: 5px;}
.qr-content {margin: 12px;width: 137px;}
.copyright {
    line-height: 21px;
    background: #2d2f2d;
    font-size: 10px;
}
.links-content {
    font-size: 10px;
    background: #2d2f2d;
    padding: 6px 0;
    line-height: 19px;
}
.foot-contact dl {
    margin-left: 19px;
}
.foot-contact {
    margin: 16px 19px;
}

}


/*footer-end*/

/*ny*/
.ny_banner {margin-top:100px;}
@media (max-width:920px){
.ny_banner {
    margin-top: 44px;
}
}

.article {
    margin: 4% auto;
    max-width: 1400px;
    width: 90%;
}
.article .art_top {
    text-align: center;
    margin-bottom: 3%;
}
.article .art_top h1 {color: #c6010b;letter-spacing: 0px;display: block;margin-bottom: 2%;font-weight: 600;}
.article .art_top span {
    margin: 0 3%;
}

.art_con {font-size: 17px;letter-spacing:0px;margin-bottom: 3%;line-height: 32px;}
.art_con img {display:block;margin:2% auto;}

.art_bot {}
.art_bot a {
    color: #9d9d9d;
    display: block;
    margin: 1% 0;
}
.art_bot a b {
    color: #c6010b;
}

.art_bot a:hover {color: #e60012; }

.article_pro {
    margin: 3% 0;
}
.article_pro .left_container{
    display: flex;
}
.article_pro .pro_fl {
    background: #ffffff;
    width: 38%;
    margin-right: 5%;
}
.article_pro .pro_fl img {width:100%;}
.article_pro .pro_fr {
    letter-spacing: 2px;
}
.article_pro .pro_fr h1 {
    text-align: center;
    color: #e60012;
    font-weight: 600;
    display: block;
    margin: 5% 0 7%;
}
.article_pro .pro_fr p {
    margin: 4% 0;
    display: flex;
}
.article_pro .pro_fr p b {
    display: block;
    width: 110px;
}
.article_pro .pro_fr p i {
    max-width: 665px;
    width: 88%;
}

.article .title_h5 {
    margin: 0 auto 2%;
    font-weight: 600;
    color: #e60012;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 0.4%;
}

@media screen and (max-width:1000px){
.article_pro .pro_fr h1 {
    margin: 4% 0 9%;
}
.article_pro .pro_fr p {
    margin: 4% 0;}
.article_pro .pro_fr p b {width:100px;}
}


@media screen and (max-width:900px){
.article {}
.article .art_top {
    margin: 6% auto;
}
.article .art_top h1 {
    color: #e60012;
    font-weight: 400;
    font-size: 17px;
}
.article .art_top span {}
.art_con {}
.art_con img {display:block;margin:2% auto;}

.art_bot {margin: 8% auto;}
.art_bot a {
    margin: 4% 0;
}
.art_bot a b {}

}


@media screen and (max-width:600px){
.article_pro {
    margin-bottom: 10%;
}
.article_pro .left_container{
    display: block;
}
.article_pro .pro_fl {
    width: auto;
    margin: 0 auto;
}
.article_pro .pro_fl img {}
.article_pro .pro_fr {}
.article_pro .pro_fr h1 {
    margin: 8% 0 9%;
    font-size: 20px;
}
.article_pro .pro_fr p {
    margin: 3% 0;
}
.article_pro .pro_fr p b {}
.article_pro .pro_fr p i {}
.article .title_h5 {}
.history-date ul li h3 {width:68px;}
.history-date ul li dl {width:64%;}
.history {
    background: url(../images/line04.gif) repeat-y 91px 0;}
.history-date ul li {
    background: url(../images/icon07.png) no-repeat 84px 0;}
.history-date h2 img {display:none;}
}
.ny_back {
    background: #f2f2f2;
}
.ny_nav {
    padding: 3% 0;
}
.ny_nav ul .active {
    background: #c6010b;
}
.ny_nav ul .active a {
    color: #fff;
}

.ny_nav ul {
    display: flex;
    text-align: center;
    justify-content: center;
}
.ny_nav ul li {
    padding: 7px 23px;
    background: #fff;
    margin: 0 10px;
}
.ny_nav ul li a {
    color: #333;
    font-size: 17px;
}

.ny_nav ul li:hover {
    background: #c6010b;
}
.ny_nav ul li:hover a {
    color: #fff;
}

.tuandui {
    padding-bottom: 5%;
}
.tuandui ul {
    overflow: hidden;
}
.tuandui ul li {
    border-radius: 4%;
    background: #fff;
    margin: 2%;
    display: block;
    float: left;
    width: 17%;
    padding: 2% 2%;
    box-shadow: 0 0 14px #0000002e;
}
.tuandui ul li i {
    overflow: hidden;
    display: block;
    margin: 2% auto;
    width: 100px;
    border-radius: 100%;
}
.tuandui ul li i img {}
.tuandui ul li p {
    font-weight: 600;
    font-size: 25px;
    text-align: center;
    margin: 10% 0 4%;
}
.tuandui ul li span {
    font-size: 15px;
    line-height: 27px;
    color: #979797;
    height: 74px;
    margin-bottom: 6%;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.tuandui ul li:hover p {color:#c6010b}
.tuandui ul li:hover span {color:#333}

.tuandui ul li:hover {box-shadow: 0 0 14px #0000008a;}

@media screen and (max-width:900px){
.ny_nav {}
.ny_nav ul .active {}
.ny_nav ul .active a {}

.ny_nav ul {}
.ny_nav ul li {
    margin: 0 5px;
    padding: 3px 8px;
}
.ny_nav ul li a {
    font-size: 11px;
}



.tuandui {}
.tuandui ul {}
.tuandui ul li {
    padding: 4% 2%;
    width: 42%;
}
.tuandui ul li i {
    width: 82px;
}
.tuandui ul li i img {}
.tuandui ul li p {
    font-weight: normal;
    font-size: 17px;
}
.tuandui ul li span {
    font-size: 11px;
    line-height: 17px;
    height: 52px;
}


}


.dizhi {
    overflow: hidden;
    border-bottom: 1px solid #efefef;
    padding: 7px 0;
    /* box-shadow: 0 0 7px #00000036; */
}
.dizhi i {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #c6010b;
    max-width: 500px;
    width: 63%;
}
.dizhi p {
    line-height: 27px;
    font-size: 14px;
    color: #8b8b8b;
    font-weight: 300;
}
.dizhi p a {
    font-size: 14px;
    color: #8b8b8b;
    margin: 0 4px;
}
.dizhi p i {
    display: initial;
    overflow: auto;
    font-size: 15px;
    font-weight: 100;
    color: #919191;
}
@media only screen and (max-width:1000px) {
.dizhi i {display:none;}
.dizhi p {float:none;font-size: 11px;}
.dizhi p a {font-size: 11px;}
}

/*product*/

.product {
    padding-bottom: 5%;
    overflow: hidden;
}
.product ul {}
.product ul li {
    background: #fff;
    transition: all 0.5s;
    -webkit-animation: all 0.5s;
    position: relative;
    display: block;
    float: left;
    width: 22%;
    padding: 0.5%;
    margin: 1%;
    z-index: 9;
    box-shadow: 0 0 15px #0000001c;
}
.product ul li .pro_img {
    margin-bottom: 5%;
    /* border: 1px solid #ebebeb; */
    position: relative;
    overflow: hidden;
}
.product ul li .pro_img .pro-img {
    position: absolute;
    top: 0;
    max-height: max-content;
    transition:0.5s all;
    -webkit-transition:0.5s all;
}
.product ul li:hover .pro_img .pro-img { transform:scale(1.08,1.08); -webkit-transform:scale(1.08,1.08); }

.product ul li p {
    text-align: center;
    height: 40px;
    color: #000;
}
.product ul li i {
    display: block;
    margin: 5% auto 5%;
    width: 22px;
    height: 3px;
    background: #e60012;
}
.product ul li span {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    color: #959595;
    margin-bottom: 56px;
    line-height: 24px;
    letter-spacing: 2px;
    font-size: 15px;
    height: 48px;
}

.product ul li .pro_bot {
    bottom: 3%;
    right: 5%;
    position: absolute;
    width: 27px;
    height: 20px;
    overflow: hidden;
}
.product ul li .pro_bot img {
    display: block;
    position: absolute;
    width: 27px;
    top: 0;
    left: 0;
    transition: all 0.5s;
    -webkit-animation: all 0.5s;
}
.product ul li .pro_bot .img_l {
    left: 0;
}
.product ul li .pro_bot .img_r {
    left: -100%;
}

.product ul li:hover {box-shadow: 0 0 15px #00000057;}
.product ul li:hover p {color: #c6010b;}
.product ul li:hover span {color:#000;}

.product ul li:hover .pro_bot .img_l {
    left:100%;
}
.product ul li:hover .pro_bot .img_r {
    left:0%;
}

@media screen and (max-width:1400px){
.product ul li span {font-size:13px;}
}

@media screen and (max-width:900px){

.product ul li {
    width: 46%;
    margin: 1%;
}

.product ul li span {
    height: 32px;
    line-height: 16px;
    font-size: 10px;
    margin-bottom: 25px;
}

.product ul li .pro_bot {
    width: 16px;
    height: 10px;
}

}

/*product*/



/*----------rczp --------*/

.join_zp{
    padding: 3% 0;
    max-width: 1600px;
    text-align: center;
    margin: 3% auto;
    width: 95%;
}
.join_zp .join_zp_t{
    font-size: 17px;
    color: #fff;
    background-color: #f8b62b;
    height: 50px;
    line-height: 50px;
    letter-spacing: 2px;
    font-weight: 600;
}
.join_zp .join_zp_c{
    font-size: 17px;
    color: #6a6a6a;
    cursor: pointer;
    height: 65px;
    border-bottom: 1px solid #e9e9e9;
}
.join_zp .join_zp_c:hover{
    color: #c6010b;
}
.join_zp .join_zp_n{
    text-align: left;
    background-color: #f2f6f9;
    font-size: 14px;
    display: none;
}
.join_zp .join_zp_n td{
    padding: 2%;
    border: 0.5px solid #f1f1f1;
    padding-bottom: 3%;
}
.join_zp_n .join_ms{
    color: #c6010b;
    font-size: 19px;
    width: auto;
    height: 60px;
    margin: 0 auto;
    line-height: 60px;
}
.join_zp_n .join_ms i{
    display: inline-block;
    width: 2px;
    height: 13px;
    background-color: #c6010b;
    margin-right: 10px;
}
.join_zp_n .join_cn{
    width: auto;
    margin: 0 auto;
    /* background-color: #fff; */
    padding-left: 35px;
    padding: 10px 35px;
}
.join_zp .join_active{
    transition: 0.5s all;
    display: table-row;
}

@media (max-width:700px){
.join_zp .join_zp_t {font-size:13px;font-weight:100; }
.join_zp .join_zp_c {font-size:13px;}
}


/*----------rczp --------*/



.News_list {
    overflow: hidden;
    padding-bottom: 3%;
    padding-top: 1%;
}
.News_list ul {padding-top: 1%;overflow: hidden;}
.News_list ul li {
    background: #fff;
    position: relative;
    display: block;
    padding: 0.5%;
    width: 23%;
    float: left;
    margin: 0% 0.5% 3%;
}
.News_list ul li .news_top {
    position: relative;
    overflow: hidden;
}
.News_list ul li .news_top .news_img {
    position: absolute;
    max-width: 100%;
    max-height: max-content;
    transition:0.5s all;
    -webkit-transition:0.5s all;
}

.News_list ul li:hover .news_top .news_img  { transform:scale(1.08,1.08); -webkit-transform:scale(1.08,1.08); }



.News_list ul li p {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    font-weight: 600;
    margin: 24px 1% 10px;
}
.News_list ul li span {
    color: #8b8b8b;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    font-size: 14px;
    margin: 0 1% 3%;
    height: 43px;
}

.News_list ul li .news_bot {
    display: block;
    /* position: relative; */
    width: 100%;
}
.News_list ul li .news_bot b {
    margin: 0 1%;
    font-size: 15px;
    color: #c6010b;
}
.News_list ul li .news_bot img {
    right: 4%;
    display: block;
    width: 21px;
    position: absolute;
    bottom: 2%;
}

.News_list ul li:hover p {color: #c6010b;}
.News_list ul li:hover {box-shadow: 0 0 19px #00000061;}

@media only screen and (max-width:1685px) {
.News_list ul li {padding:0.8%;}
}


@media only screen and (max-width:900px) {
.News_list {
    margin: 0% 0;
}
.News_list ul {}
.News_list ul li {
    width: 46%;
}
.News_list ul li .news_top {}
.News_list ul li .news_top .news_img {}
.News_list ul li p {
    margin: 12px 1% 5px;
}
.News_list ul li span {
    font-size: 10px;
    height: 54px;
}

.News_list ul li .news_bot {}
.News_list ul li .news_bot b {
    font-size: 15px;
}
.News_list ul li .news_bot img {
    width: 20px;
    bottom: 4%;
}


}

@media only screen and (max-width:600px) {

.News_list ul li {
    width: 47.2%;
    margin: 0.2%;
}

.News_list ul li p {
    height: 19px;
    font-weight: 400;
    -webkit-line-clamp: 1;
    font-size: 10px;
}
.News_list ul li span {
    /* height: 54px; */
    display: none;
}

.News_list ul li .news_bot b {
    font-size: 11px;
}
.News_list ul li .news_bot img {
    width: 15px;
    bottom: 3%;
}

}


.hxjs_list {
    padding: 3% 0 5%;
}
.hxjs_list .hxjs_con {
    width: 97%;
    max-width: 1500px;
    margin: 0 auto;
}
.hxjs_list ul {}
.hxjs_list ul li {background: #fff;overflow: hidden;padding: 2%;margin: 4% 0;}
.hxjs_list ul li .hxjs_con {}
.hxjs_list ul li .pro_img_l {
    position: relative;
    width: 100%;
}
.hxjs_list ul li .pro_img_l .pro-img {
    position: absolute;
}
.hxjs_list ul li .hxjs_fl {
    float: left;
    width: 37%;
}
.hxjs_list ul li .ckgd_r {
    float: right;
    margin-top: 2%;
    margin-left: 0;
    width: 55%;
}
.hxjs_list ul li .ckgd_r p {
    font-weight: 600;
    display: block;
    margin-bottom: 2%;
}

.hxjs_list ul li .ckgd_r span {
    -webkit-line-clamp: 4;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    color: #858585;
    line-height: 28px;
}

.hxjs_list ul li .ckgd_r .ckgd {
    margin: 7% 0 0%;
    width: 89px;
    display: block;
    font-size: 15px;
    padding: 1% 1%;
    background: #c6010b;
    color: #fff;
    text-align: center;
}

.hxjs_list ul li:hover {
    box-shadow: 0 0 14px #00000045;
    }

.hxjs_list ul li:hover p {color:#c6010b;}
.hxjs_list ul li:hover span {color:#333;}

@media screen and (max-width:1300px){
.hxjs_list ul li .ckgd_r span {font-size:12px;line-height: 20px;}
.hxjs_list ul li .ckgd_r .ckgd {
    margin: 5% 0 0%;
    width: 69px;
    font-size: 12px;
    padding: 1% 1%;}
}

@media screen and (max-width:600px){

.hxjs_list {}
.hxjs_list .hxjs_con {}
.hxjs_list ul {}
.hxjs_list ul li {
    padding: 1%;
}
.hxjs_list ul li .hxjs_con {}
.hxjs_list ul li .hxjs_fl {width: 44%;}
.hxjs_list ul li .ckgd_r {
    margin: 0;
    width: 53%;
}
.hxjs_list ul li .ckgd_r p {
    line-height: 15px;
    font-size: 14px;
    font-weight: 400;
}
.hxjs_list ul li .ckgd_r .ckgd {
    margin: 6% 0 0%;
    font-size: 10px;
    width: 64px;
}

.hxjs_list ul li .ckgd_r span {
    font-size: 11px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    line-height: 18px;
}

}

.page-wrap {overflow: hidden;margin-top:3%;}
.page-wrap .page {
    float:left;
    padding:15px 30px;
    background:#fff;
    border-radius:30px;
}
.page-wrap .page a {
    display:inline-block;
    width:30px;
    height:30px;
    margin:0 5px;
    font:14px/30px 'Gotham-Book';
    color:#666;
    text-align:center;
    border-radius:15px;
    transition:all .4s ease-in-out;
}
.page-wrap .page a.on,.page-wrap .page a:hover {color:#fff;background: #c6010b;}
.page-wrap .prev-next {float:right;}
.page-wrap .prev-next a {
    position:relative;
    display:inline-block;
    width:50px;
    height:50px;
    margin-left:20px;
    background:#fff;
    border-radius:25px;
}
.page-wrap .prev-next a:before,
.page-wrap .prev-next a:after,
.ourwork-prev-next-inner a i:before,
.ourwork-prev-next-inner a i:after{
    content:'';
    position:absolute;
    left:0;
    top:0;
    display:block;
    width:100%;
    height:100%;
    border-radius:100%;
    transition:all .4s ease-in-out;
}
.page-wrap .prev-next a:before,
.ourwork-prev-next-inner a i:before{z-index:1;}
.page-wrap .prev-next a.prev:before {background:#fff url(../images/more-icon3a.png) no-repeat center center;}
.page-wrap .prev-next a.next:before {background:#fff url(../images/more-icon.png) no-repeat center center;}
.page-wrap .prev-next a.prev:hover:before {background:transparent url(../images/more-icon3.png) no-repeat center center;}
.page-wrap .prev-next a.next:hover:before {background:transparent url(../images/more-icon1.png) no-repeat center center;}
.ourwork-prev-next-inner a i:after,
.page-wrap .prev-next a:after {transform:scale(0);}
.page-wrap .prev-next a:after {background: #c6010b;}
.page-wrap .prev-next a:hover:after,
.ourwork-prev-next-inner a i:hover:after{
    transform:scale(1);
}

@media screen and (max-width:900px){
.page-wrap .page {
    float: none;
    padding: 7px 14px;}
.page-wrap .prev-next {display:none;}
.page-wrap {
    overflow: hidden;
    margin: 6% 2%;
}
}

.contact-infomation {
    overflow:hidden;
    padding: 4% 1% 1%;
    background: #fff;
}
.contact-infomation .each-item dt {
    padding-bottom: 19px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #c6010b;
    border-bottom: 1px solid rgba(0,0,0,.15);
}

.contact-infomation .each-item .address-item .address {
    line-height: 22px;
    background: url(../images/contact-icon3.png) no-repeat left center;
}

.contact-infomation .each-item .address-item dd {
    margin: 0 0 20px 0;
    padding-left: 35px;
}

.contact-infomation .each-item .word {
    font-size: 16px;
    color: #666;
    transition: all .5s ease-in-out;
}

.contact-infomation .each-item .word a:hover {color:#c6010b;}
.contact-infomation .each-item {
    float: left;
    width: 20%;
    margin-right: 1%;
    margin-bottom: 3%;
    background: #f2f2f2;
    padding: 2%;
    box-shadow: 0 0 12px #00000045;
    height: 200px;
}

.contact-infomation .each-item .dt-title {
    padding-bottom: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #c6010b;
    border-bottom: 1px solid rgba(0,0,0,.15);
    text-transform: uppercase;
}

.contact-infomation .each-item .dd-content > span {
    font: 16px/1 'Gotham-Book','Microsoft Yahei';
    color: #666;
    font-weight: bold;
    line-height: 22px;
    padding-left: 35px;
    background: url(../images/contact-icon5.png) left center no-repeat;
}

.contact-infomation .each-item .address-item .phone-number {
    line-height: 24px;
    font-size: 16px;
    background: url(../images/contact-icon4.png) no-repeat left center;
}

.contact-infomation .each-item img {
    width: 126px;
}


@media screen and (max-width:900px){
.contact-infomation .each-item {
    float: none;
    width: 81%;
    margin: 3% auto;
    box-shadow: 0 0 0;
    padding:3%;
    min-height: auto;
    height: auto;
}
.contact-infomation .each-item dt {padding-bottom: 10px;
    margin-bottom: 10px;font-size: 13px;}
.contact-infomation .each-item .word {
    font-size: 11px;}
.contact-infomation .each-item .address-item dd {
    margin: 0 0 13px 0;
    padding-left:20px;
}
.contact-infomation .each-item .address-item .address {background-size: 12px;}
.contact-infomation .each-item .dt-title {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}
.contact-infomation .each-item .dd-content > span {
    font: 11px/1 'Gotham-Book','Microsoft Yahei';
    background-size: 13px;
    padding-left: 22px;
}
.contact-infomation .each-item .address-item .phone-number { background-size: 13px;}
.contact-infomation .each-item img {
    width: 100px;
}
}