.pt10 {
    padding-top: .625rem
}

.pt15 {
    padding-top: .9375rem
}

.pt20 {
    padding-top: 1.25rem
}

.pt25 {
    padding-top: 1.5625rem
}

.pt30 {
    padding-top: 1.875rem
}

.pt35 {
    padding-top: 2.1875rem
}

.pt40 {
    padding-top: 2.5rem
}

.pt45 {
    padding-top: 2.8125rem
}

.pt50 {
    padding-top: 3.125rem
}

.pt55 {
    padding-top: 3.4375rem
}

.pt60 {
    padding-top: 3.75rem
}

.pt65 {
    padding-top: 4.0625rem
}

.pt70 {
    padding-top: 4.375rem
}

.pt75 {
    padding-top: 4.6875rem
}

.pt80 {
    padding-top: 5rem
}

.pt85 {
    padding-top: 5.3125rem
}

.pt90 {
    padding-top: 5.625rem
}

.pt95 {
    padding-top: 5.9375rem
}

.pt100 {
    padding-top: 6.25rem
}

.pb5 {
    padding-bottom: .3125rem
}

.pb10 {
    padding-bottom: .625rem
}

.pb15 {
    padding-bottom: .9375rem
}

.pb20 {
    padding-bottom: 1.25rem
}

.pb25 {
    padding-bottom: 1.5625rem
}

.pb30 {
    padding-bottom: 1.875rem
}

.pb35 {
    padding-bottom: 2.1875rem
}

.pb40 {
    padding-bottom: 2.5rem
}

.pb45 {
    padding-bottom: 2.8125rem
}

.pb50 {
    padding-bottom: 3.125rem
}

.pb55 {
    padding-bottom: 3.4375rem
}

.pb60 {
    padding-bottom: 3.75rem
}

.pb65 {
    padding-bottom: 4.0625rem
}

.pb70 {
    padding-bottom: 4.375rem
}

.pb75 {
    padding-bottom: 4.6875rem
}

.pb80 {
    padding-bottom: 5rem
}

.pb85 {
    padding-bottom: 5.3125rem
}

.pb90 {
    padding-bottom: 5.625rem
}

.pb95 {
    padding-bottom: 5.9375rem
}

.pb110 {
    padding-bottom: 6.875rem
}
/*头部样式*/
.h180{
    width: 100%;
    height: 200px;
}
#c-header{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index: 99999999;
    background: #fff;
}
.head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 140px;
}
.logo{
    display: flex;
    float: left;
}
.logo a {
    padding-right: 22px;
    position: relative;
}
.logo a:after {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 4px);
    background: rgba(215, 0, 16, 1);
    top: 2px;
    right: 0;
}
.logo_text{
    margin-left: 18px;
    font-size: 27px;
    color: #2462AE;
    font-weight: normal;
    /*letter-spacing: 1.5px;    */
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo_text p{
    color: rgb(26, 25, 25);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    /* background-image: -webkit-linear-gradient(right, rgba(69, 69, 69, 1), #2a86cf, rgba(69, 69, 69, 1)); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  */
        width: 100%;
}
.logo_text span{
    display: block;
    color: rgba(69, 69, 69, 1);
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    background-image: -webkit-linear-gradient(right, #d7342f, #2a86cf, #d7342f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        width: 100%;
}
.logo_text em{
    display: block;
    font-size: 14px;
    font-style: normal;
    color: #666;
    /*margin-top: 5px;*/
}
.h_tel{
    float: right;
    /* margin-top: 34px; */
    color: #333;
    background: url(../image/h_tel.png) no-repeat left top;
    padding-left: 2.25rem;
    font-size: 16px;
    /* line-height: 20px; */
    background-size: contain;
    display: flex;
    align-items: center;
    height: 2.75rem;
}
.h_tel strong {
    font-size: 18px;
    line-height: 100%;
    color: rgb(26, 25, 25);
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
}
nav{
    display: block;
    width: 100%;
    background:#ea1e29;
    border-top:1px solid #eee;
}

.nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.nav li{
    /* float: left; */
    /* width: 14.28%; */
    position: relative;
}
/* .nav li:nth-child(4),
.nav li:nth-child(5),
.nav li:nth-child(6){
    display: none;
} */
.nav li:last-child:after{
    display: none;
}
/*.nav li:before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 0;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    transition: height .3s;*/
/*    -moz-transition: height .3s;*/
/*    -webkit-transition: height .3s;*/
/*    -o-transition: height .3s;*/
/*}*/
/* .nav li:after{
    content: '';
    width: 0;
    height: 0;
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent rgba(215, 0, 16, 1);
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -5px;
    display: none;
    z-index: 9999;
} */
.nav li:hover{
    border-bottom: 3px solid #FFF;
}
.nav li:hover:after,.nav li.cur:after{
    display: block;
}
/*.nav li:after {*/
/*    position: absolute; */
/*    content: ""; */
/*    width: 1px; */
/*    height: 15px; */
/*    top: 23px; */
/*    right: -1px; */
/*    background: rgba(255, 255, 255, .2); */
/*}*/
/*.nav li:hover>a,.nav li.cur>a { font-weight: bold; }*/
/*.nav li:hover:before,.nav li.cur:before{*/
/*    height: 60px;*/
/*    background: rgba(215, 0, 16, 1);*/
/*}*/
.nav li a{
    display: block;
    padding: 0 20px;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    line-height: 60px;
    position: relative;
    z-index: 2;
    font-weight: normal;
}
/*.nav li.cur a,.nav li:hover a{*/
/*    color: #fff;*/
/*}*/
.nav li .b_nav{
    display: none;
    position: absolute;
    top:60px;
    left:0px;
    z-index: 999;
    background-color: #fff;
    width: 200px;
    border-top:3px solid rgba(215, 0, 16, 1);
}
.nav li .b_nav a{
    font-size: 16px;
    color: #666;  
    line-height: 1.5;  
    padding:10px 20px;
    font-weight: normal;
    border-bottom: 1px solid #dbdbdb;
    text-align: left;
}
.nav li .b_nav a:last-child{
    border:none;
}
.nav li .b_nav a:hover,.nav li .b_nav a.on{
    background:#f5f5f5;
}

.menu-button{
    display: none;
    position: absolute;
    top: 20px;
    right: 10px;
/*    padding: 7px;*/
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
/*    background-color: #c52b31;*/
    z-index: 99999;
}
.menu-button .bar {
    display: block;
    height: 2px;
    background: #ccc;
    margin: 9px 0;
    opacity: 1;
    transition: all .5s ease;
    width: 35px;
    transform-origin: left center;
}

.mnav .bar:nth-child(1){
    transform:rotate(45deg);
    /*width: 40px;*/
}
.mnav .bar:nth-child(2){
    opacity: 0;
}
.mnav .bar:nth-child(3){
    transform:rotate(-45deg);
    position: relative;
    top: 2px;
    /*width: 40px;*/
}

.mobileNav{
    display: none;
    background-color: #c52b31;
    text-align: center;
    position: absolute;
    left:0;
    top:72px;
    z-index: 99999;
    width: 100%;
/*    height: 100vh;*/
}
.mobileNav li {
    line-height: 2em;
    padding:1em 0;
}
.mobileNav li a{
    font-size: 1rem;
    color: #fff;
}
/*#c-banner1{*/
/*    height: calc(100vh - 210px)*/
/*}*/
/*#c-banner1 .swiper-slide img{*/
/*    width: 100%;*/
/*    height:100vh;*/
/*}*/
.banner_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    padding:0 3%;
}
.banner_text .img1 img{
    max-width: 50%;
}
.cf{
    color: #FFF !important;
}
.more_f{
    display: flex;
    justify-content: center;
}
.more_f a{
    background: rgba(215, 0, 16, 1);
    padding: .625rem 3.125rem;
}
#c-banner1 .sw1 .banner_text{
    text-align: right;   

}
#c-banner1 .swiper-pagination{
    text-align: center;
    padding:0 5%;
    bottom:20px;
}
#c-banner1 .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background:rgba(215, 0, 16, 1);
    opacity: 1;
    margin:0 10px;
} 
#c-banner1 .swiper-pagination .swiper-pagination-bullet-active{
    width: 40px;
    background: rgba(215, 0, 16, 1);
}
#c-banner1 .swiper-button-prev{
    width: 35px;
    height:78px;
    margin-top:-39px;
    left:3%;
    background:url(../image/b_prev.png) no-repeat center;
    opacity: 0;
}

#c-banner1 .swiper-button-next{
    width: 35px;
    height:78px;
    margin-top:-39px;
    right:3%;
    background:url(../image/b_next.png) no-repeat center;
    opacity: 0;
}
a.more2{
    display: block;
    width: 100%;
    max-width: 300px;
    line-height: 50px;
    border:1px solid rgba(215, 0, 16, 1);
    /* border-radius: 35px; */
    margin:50px auto 0;
    background: rgba(215, 0, 16, 1);
    font-size: 18px;
    color: #fff;
    text-align: center;
    transition: all .6s;
}
a.more2:hover{
    transition: all .6s;
    border:1px solid rgba(215, 0, 16, 1);
    background: none;
    color: rgba(215, 0, 16, 1);
}
.m_nav2{
    display: none;
    margin-right: 45px;
}
.m_nav2 a{
    display: block;
    font-size: 16px;
    color: #333;
    margin:0 10px;
}
@media(max-width: 1600px){
    .h180{
        height: 181px;
    }
    /*#c-banner1{*/
    /*    height: calc(100vh - 161px)*/
    /*}*/
    .head{
        height:120px;
    }
    /*.head{*/
    /*    height: 100px;*/
    /*}*/
    .logo_text p{
        font-size: 30px;
    }
    .logo_text span{
        font-size: 22px;
    }
    .logo_text em{
        font-size: 12px;
    }
    .nav li a{
        font-size:16px;
        padding: 0 10px;
    }
    .nav li .b_nav a{
        font-size:15px;
        padding:10px 10px;
    }
    a.more2{
        font-size:16px;
        line-height:42px;
        max-width:240px;
        margin:30px auto 0;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1260px){
    .head{
        height: 100px;
    }
    .logo_text p{
        font-size: 20px;
    }
    .logo_text span{
        font-size: 20px;
    }
    .logo_text em{
        display:none;
    }
    .nav.container{
        width: 100%;
    }

}
@media(max-width: 1024px){
    /*.logo a{*/
    /*    padding-right: 0;*/
    /*}*/
    /*.logo a:after{*/
    /*    display: none;*/
    /*}*/
    .logo_text{

    }
    /*.logo_text em{*/
    /*    display: none;*/
    /*}   */
    /*.nav li a{*/
    /*    padding:0 15px;*/
    /*}*/
}

@media(max-width: 820px){
    .h180{
        height: 80px;
    }
    .head{
        height: 80px;
        /*justify-content:flex-start;*/
    }
    .logo a{
        padding-right: 0;
    }
    .logo a img{
        max-height:50px;
    }
    .logo a:after{
        display: none;
        width:2px;
    }
    .logo_text{
        display: none;
        margin-left: 12px;
    }
    .logo_text p {
        font-size: 15px;
    }
    .logo_text span {
        font-size: 15px;
    }
    .h_tel{
        margin-right: 30px;
        font-size: 14px;
    }
    .menu-button{
        display: block;
    }
    .nav{
        display: none;
    }
    #c-banner1 .swiper-pagination{
        bottom:12px;
    }

}
@media(max-width: 640px){
    .h180{
        height: 70px;
    }
    .head {
        height: 70px;
    }
    .menu-button{
        top:25px;
    }
    .logo_text p {
        font-size: 14px;
    }
    .logo_text span {
        font-size: 14px;
    }
    .h_tel{
        margin-right: 35px;
        padding-left:50px;
        display:none;
    }
    .h_tel strong{
        font-size: 18px;
    }
    .m_nav2{
        display: flex;
    }
    #c-banner1 .banner_text{
        display:none;
    }
}
@media(max-width: 460px){
    .h_tel strong{
        font-size: 16px;
    }
    /*.m_nav2 a{*/
    /*    margin:0 5px;*/
    /*}*/
}

.index_intro{
    padding:40px 0 50px;
}
.index_intro{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index_intro .text{
    font-size: 18px;
    color: #7a7a7a;
    width: 80%;
}
.text_top h1{
    color: rgba(84, 84, 84, 1);
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.text_top h1 span{
letter-spacing: 0px;
color: rgba(128, 128, 128, 1);
vertical-align: top;
}
.index_intro .text p{
    font-size: 1rem;
    color: rgb(49, 49, 49);
    font-weight: bold;
    line-height: 1.875rem;
    text-align: justify;
}
/* .index_intro .text p::first-letter{
    font-size: 1.75rem;
    letter-spacing: .125rem;
} */
.index_intro .text img{
    padding-top: 80px;
    padding-right: 100px;
}
.index_intro .text strong{
    color: #d61919;
    font-weight: normal;
}

.index_intro .img{
    max-width: 15%;
}
.index_intro .img .background h3{
    writing-mode: vertical-rl; 
    letter-spacing: 10px;
    font-size: 28px;
    font-weight: 400;
    color: rgba(215, 0, 16, 1);
    position: absolute;
    top: 10%;
    left: 55%;
}
.index_intro .img .txt{
    width: 90%;
}
.index_intro .img .txt h1{
    font-size: 18px;
}
.index1{
    padding: 1.875rem 0;
    background-color: rgba(242, 242, 242, 1);
}
.container{
    width: 100%;
    padding: 0 10.75rem;
    margin: 0 auto;
}
.index_top{
    margin-bottom: 25px;
}  
.line1{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1
}
.line2{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}
.index3 .more{
    border: 1px solid rgba(230, 233, 236, 1);
    border-top: none;
    text-align: center;
    line-height: 3.5rem;
}
.index_top h2{
    font-size: 46px;
    color: #000;
    line-height: 40px;
    max-width: 25%;
    font-weight: 400;
}
.index_top_r{
    width: 75%;
}
.sort2{
    float: right;
}
.sort2 li{
    float: left;
    display: block;
    font-size: 16px;
    line-height: 40px;
    margin-right: 20px;
}
.sort2 li:last-child{
    margin-right: 0;
}
.case_list1{
    display: flex;
    flex-wrap: wrap;
}
.case_list1 li{
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 15px;
}
.case_list1 li:nth-child(4n){
    margin-right: 0;
}
.case_list1 li a{
    display: block;
    text-align: center;
}
.case_list1 li a h3{
    font-weight: normal;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 42px;
    height: 41px;
    overflow: hidden;
    background-color: rgba(215, 0, 16, 1);
    width: 100%;
    padding:0 5px;
white-space: nowrap; 
text-overflow: ellipsis;
overflow: hidden;
}
/*.case_list1 li a:hover{
    border:1px solid rgba(215, 0, 16, 1);
}*/
.s_foot{
    display: none;
}
.case_list1 li a:hover .img img{
    transform: scale(1.1);
}
.case_list2{
    display: flex;
    flex-wrap: wrap;
}
.case_list2{
    overflow: hidden;
    margin: 0 -0.9375rem;
}
.index1 .more_f{
    margin: 3.5rem 0;
}
.case_list2 li{
    width: 25%;
    padding: .9375rem;
}
.case_list2 li a{
    display: block;
    text-align: center;
}
.case_list2 li a .img{
    position: relative;
}

.case_list2 li a .text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(215, 0, 16, 0.7);
    z-index: 8;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;  
}
.case_list2 li a .text .img2{
    display: none;
}
.case_list2 li a .text p{
    font-size: 18px;
    margin:10px 0 0px;
    color: #fff;
}
.case_list2 li a .text i{
    font-style: normal;
    margin-top: 1rem;
    color: #FFF;
    margin-right: .25rem;
}
.case_list2 li a .img:before{
    content:'';
    position: absolute;
    left:20px;
    top:20px;
    width: 0;
    height: 1px;
    background:#fff;
    z-index:9;
    transition: all 0.4s ease-out;
    opacity: .3;
}
.case_list2 li a .img:after{
    content:'';
    position: absolute;
    left:20px;
    bottom:20px;
    width: 0;
    height: 1px;
    background:#fff;
    z-index:9;
    transition: all 0.4s ease-out;
    opacity: .3;
}
.case_list2 li a .img .text:before{
    content:'';
    position: absolute;
    left:20px;
    top:20px;
    width: 1px;
    height: 0;
    background:#fff;
    z-index:9;
    transition: all 0.4s ease-out;
    opacity: .3;
}
.case_list2 li a .img .text:after{
    content:'';
    position: absolute;
    right:20px;
    top:20px;
    width: 1px;
    height: 0;
    background:#fff;
    z-index:9;
    transition: all 0.4s ease-out;
    opacity: .3;
}
.case_list2 li a:hover .text{
    opacity: 1;
}
.case_list2 li a:hover .img:before,.case_list2 li a:hover .img:after{
    width: calc(100% - 40px);
}
.case_list2 li a:hover .img .text:before,.case_list2 li a:hover .img .text:after{
    height: calc(100% - 40px);
}

.case_list2 li a .txt{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:10px;
}
.case_list2 li a .txt h3{
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    color: #333;
}
.case_list2 li a .txt p{
    font-size:16px;
    color: #333;
    display: none;
}
.case_list2 li a:hover .img .img1{
    transform: scale(1.1);
}
@media(max-width: 1600px){
    .index_intro{
        padding:30px 0 50px;
    }
    .text_top{
        font-size: 16px;
    }
    .index_top h2{
        font-size:36px;
    }
    .sort2 li a{
        font-size: 15px;
    }
    .case_list1 li a h3{
        font-size: 14px;
        line-height: 38px;
        height: 38px;
    }
    .case_list2 li a .text img{
        transform: scale(0.8);
    }    
    .case_list2 li a .text p{
        font-size:16px;
    }
    .case_list2 li a .txt h3,.case_list2 li a .txt p{
        font-size:15px;
    }
}
@media(max-width: 1260px){
    .index_top h2{
        font-size:28px;
    }
    .index_intro {
        padding: 30px 0 50px;
    }
    .container{
        padding: 0;
        width: 94%;
    }
    .text_top h1{
        font-size: 18px;
    }
    .index_intro .text{
        font-size: 15px;
    }
    .case_list2 li{
        width:32%;
    }
    .case_list2 li:nth-child(4n) {
        margin-right: 2%;
    }
    .case_list2 li:nth-child(3n) {
        margin-right: 0;
    }
    .case_list2 li a .text p{
        font-size:15px;
    }
    .case_list2 li a .txt{
        padding-top:5px;
    }
    .case_list2 li a .txt h3,.case_list2 li a .txt p{
        font-size:14px;
    }
}
@media(max-width: 1024px){
    .index_top h2{
        max-width: 20%;
    }
    .index_top_r{
        width: 80%;
    }
    .case_list1 li{
        width: 32%;
    }
    .case_list1 li:nth-child(4n) {
        margin-right: 2%;
    }
    .case_list1 li:nth-child(3n) {
        margin-right: 0;
    }

}
@media(max-width: 820px){
    .index_intro {
        padding: 50px 0 ;
    }
    .index_intro .text{
        font-size: 14px;
        width: 100%;
        color:#666;
    }
    .index_intro .img{
        width: 100%;
        text-align: center;
        margin-top:20px;
        max-width: 100%;
    }
    .index_intro .img img{
        max-width: 50%;
    }
    .index_intro .text .txt{
        padding-left: unset;
        padding: 0 30px;
    }
    .index_intro .text img{
        padding-top: 20px;
        padding-right: unset;
    }
    .index1 {
        padding: 50px 0;
    }
    .index_top h2{
        font-size: 24px;
    }
    .case_list1 li,.case_list2 li{
        width: 49%;
    }
    .case_list1 li:nth-child(3n),.case_list2 li:nth-child(3n) {
        margin-right: 2%;
    }
    .case_list1 li:nth-child(2n),.case_list2 li:nth-child(2n) {
        margin-right: 0;
    }
}
@media(max-width: 640px){
    .index_intro {
        padding: 30px 0 10px;
    }
    .index1 {
        padding: 30px 0;
    }
    .index_top h2{
        width: 100%;
        max-width: 100%;
        font-size:22px;
        text-align: center;
    }
    .index_top_r{
        width: 100%;
        margin-top:10px;
    }
    .sort2 li{
        line-height: 34px;
        margin-right: 12px;
    }
    .index_intro .img{
        display:none;
    }
    .case_list2 li a .text{
        display:none!important;
    }
}
@media(max-width: 460px){
    .case_list1 li,.case_list2 li{
        width: 100%;
        margin-right: 0!important;
    }
}
.index2_bg{
    padding: 3.125rem 0;
    position: relative;
}
.index2_bg::after{
    position: absolute;
    content: "";
    background: url(../image/fwlc.jpg) no-repeat center;
    background-size: cover;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
}
.index2_bg::before{
    position: absolute;
    content: "";
    background-color: rgba(250, 0, 12, 0.8);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.index2 h2{
    font-size: 3rem;
    font-weight: 500;
    color: rgba(215, 0, 16, 1);
    line-height: 3.375rem;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
}
.index2 .txt{
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 26px;
    padding-bottom: 36px;    
}
.index2_bg .font18{
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.875rem;
}
.index2_bg .font18 p{
    line-height: 3.75rem;
    background-color: #FFF;
    color: rgb(27 27 27);
}
.index2_list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.index2_list li{
    width: 16.6666666667%;
    padding: 0;
    border-left: 1px solid #f3f3f3;
    flex: 0 0 auto;
    text-align: center;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
}
.index2_list li h3{
    font-family: sans-serif;
    color: #242629;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 26px; 
    font-size: 20px;
    font-weight: normal;   
}
.index2_list li p{
    margin: 0 auto;
    width: 80%;
    color: #888;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 22px;
    font-size: 12px;
}
.index2_list li:hover{
    background: #f3f3f3;
}
.fwlc_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8.125rem;
    position: relative;
    padding-bottom: 1.25rem;
}
.fwlc_list::before{
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: -1.5rem;
    left: 0;
}
.fwlc_list li{
    width: 10%;
    text-align: center;
    color: #fff;
    position: relative;
}
.fwlc_list li i{
    display: block;
    font-style:normal;
    position: relative;
    width: 120px;
    height: 120px;
    text-align: center;
    font-size: 50px;
    line-height: 118px;
    color: #ffffff;
    border-radius: 100%;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    /* border: 1px solid; */
    border-color: #ffffff;  
    margin: 0 auto;
}
.fwlc_list li i span{
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 100%;
    border: 1px solid;
    border-color: #ffffff;
    position: absolute;
    left: 50%;
    top: -20%;
    transform: translate(-50%,-50%);
    color: rgba(215, 0, 16, 1);
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    line-height: 35px;
    font-weight: 100;
    font-family: arial;
    z-index: 9;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out
}
.fwlc_list li p{
    font-size: 18px;
    margin-top:10px;
}
/* .fwlc_list li:not(:last-child) p::after{
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 15px;
    right: 10px;
}
.fwlc_list li:not(:first-child) p::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 15px;
    left: 10px;
} */
.fwlc_list li:not(:last-child)::after{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: 25%;
    right: -3px;
}

.index2 a.more2:hover{
    border:1px solid #fff;  
    color: #fff;
    background:rgba(215, 0, 16, 1);
    transition: all .6s;
}
.index2 a.more2{
    border:1px solid rgba(215, 0, 16, 1);
    background: #fff;
    color: rgba(215, 0, 16, 1);
    transition: all .6s;
}
@media(max-width: 1600px){
    .index2 h2{
        font-size: 36px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .index2 .txt{
        font-size:14px;
    }
    .index2_list{
        margin-top:10px;
    }
    .index2_list li{
        padding:20px 15px;
    }
    .index2_list li h3{
        font-size: 16px;
        margin-bottom: 0px;
    }
    .index2_list li p {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 0px;
    }
}
@media(max-width: 1260px){
    .index2 h2{
        font-size: 28px;
        padding-bottom: 5px;
        margin-bottom: 5px;
        line-height: 40px;
    }
    .index2_list li h3{
        font-size: 15px;
    }
    .fwlc_list li i{
        width:100px;
        height:100px;
        line-height:98px;
    }
    .fwlc_list li i img{
        max-height:60px;
    }
    .fwlc_list li p{
        font-size:16px;
    }
}
@media(max-width: 1024px){
    .fwlc_list li{
        width:120px;
        margin-top:10px;
    }
    .fwlc_list li p{
        font-size:15px;
    }
}
@media(max-width: 820px){
    .index2 h2{
        font-size: 24px;
    }
    .index2 .txt{
        padding:0 0 15px;
    }
    .index2_list li{
        width: 33.333%;
        padding: 15px 12px;
    }
}
@media(max-width: 640px){
    .index2{
        padding: 35px 0;
        display:none;
    }
    .index2 h2{
        font-size: 22px;
    }
}
@media(max-width: 460px){
    .index2_list li{
        width: 50%;
        padding: 10px 12px;
    }
    .index2_list li h3 {
        font-size: 14px;
    }
}


.index3{
    padding:30px 0;
    background:#ffffff;
}
.index3 .all{
padding: 3.5rem  1.25rem .75rem;
text-align: center;
border: 1px solid rgba(230, 233, 236, 1);
}
.index3 .all_ul{
    transition: all .6s;
}
.index3 .all_ul:hover{
    background: rgba(215, 0, 16, 1);
border: 1px solid rgba(215, 0, 16, 1);
transition: all .6s;
}
.index3 .all_ul:hover .font18,
.index3 .all_ul:hover .font14
{
    color: #FFF;
    transition: all .6s;
}
.index3 .all_ul:hover .more{
    transition: all .6s;
    border-top: none;
    border: 1px solid rgb(255, 255, 255);
}
.index3 .all_ul:hover .more .a{
    opacity: 0;
}
.index3 .swiper-pagination-bullet {
    background: rgba(215, 0, 16, 1);
    opacity: 1;
}
.index3 .swiper-pagination-bullet-active{
    border: 2px solid rgba(215, 0, 16, 1);
    background: none;
    width: 10px;
    height: 10px;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    display: flex;
    justify-content: center;
    align-items: center;
}
.index_t1{
    font-size: 46px;
    color: #000;
    line-height: 40px;
    font-weight: normal;
    text-align: center;
}
.hzhb_list{
    margin-top:20px;
}
.hzhb_list li{
    margin: 10px 0.5% 10px 0;
/*    padding: 10px;*/
    width: 24%;
    height: auto;
    float: left;
    background: #f9f9f9;
    text-align: center;
}
.index4{
    padding:60px 0;
    background: rgba(250, 250, 250, 1);
}
.index4 .news-tab-tit ul{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.index4 .news-tab-tit ul::before{
    position: absolute;
    content: "";
    background: rgba(215, 0, 16, 1);
    height: 1px;
    left: 50%;
    bottom: 0;
    width: 100%;
    transform: translate(-50%,-50%);
}
.index4 .news-tab-tit ul>li{
    float: left;
    position: relative;
    height: .25rem;
    padding: .25rem 3.75rem;
    display: inline-table;
}
.index4 .news-tab-tit ul>li::before{
    position: absolute;
    content: "";
    background: rgba(215, 0, 16, 1);
    height: .25rem;
    left: 50%;
    bottom: 0;
    width: 0;
    transform: translate(-50%,-50%);
    transition: all .6s;
}
.index4 .news-tab-tit ul>li:hover::before{
    width: 100%;
    transition: all .6s;
}
.index4 .news_list1 i{
    color: #596372;
}
.news_list1{
    display: none;
    flex-wrap: wrap;  
    padding: 45px 0 50px;
}
.news_list1.active{
    display: flex;
}
.news_list1 ul{
    overflow: hidden;
    margin: 0 -.9375rem;
}
.news_list1 li{
    float: left;
    width: 33.33%;
    padding: .9375rem;
}
.news_list1 li .all{
    background-color: #FFF;
    box-shadow: 0px 2px 4px  rgba(0, 0, 0, 0.1);
}
.news_list1 li .all .text {
    padding: 0 1rem;
}
.news_list1 li .img{
    display: block;
    border-radius: 25px 0 25px 0;
    position: relative;  
    height: 320px;  
}
.news_list1 li .img .img1{
    width: 100%;
}
.news_list1 li .text{
    padding:10px 0;
}
.news_list1 li .text .p1{
    font-size: 17px;
    color: rgba(51, 51, 51, 1);
}
.news_list1 li:hover .text .p1,
.news_list1 li:hover .text i{
    color: rgba(215, 0, 16, 1);
}
.news_list1 li .text h3 a{
    display: block;
    font-size: 22px;
    color: #000;
    white-space: nowrap; 
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: normal;
    line-height: 1.6;
    padding:5px 0 0;
}
.news_list1 li .text .p2{
    white-space: nowrap; 
    text-overflow: ellipsis;
    overflow: hidden; 
    font-size: 20px;
    color: #727171;
}
.news_list1 li:hover a.img img.img1{
    transform: scale(1.1);
}
.news_list1 li:hover h3 a{
    color: rgba(215, 0, 16, 1);
}
@media(max-width: 1600px){
    .index_t1{
        font-size:36px;
    }
    .news_list1{
        padding: 30px 0;
    }
    .news_list1 li .img{
        height: 260px;
    }
    .news_list1 li .text .p1{
        font-size: 14px;
    }
    .news_list1 li .text h3 a{
        font-size: 17px;
        padding: 0px 0 0;
    }
    .news_list1 li .text .p2{
        font-size: 15px;
    }
}
@media(max-width: 1260px){
    .index_t1{
        font-size:28px;
        line-height: 1;
    }
    
    .index4 .news-tab-tit ul>li{
        padding: .25rem 10px;
    }
    .news_list1 li .img {
        height: 220px;
    }
    .hzhb_list li{
        width:18.4%;
        margin: 5px 2% 5px 0;
    }
    .hzhb_list li:nth-child(5n){
        margin-right: 0;
    }
}
@media(max-width: 1024px){

}
@media(max-width: 820px){
    .index_t1{
        font-size:24px;
    }
    .hzhb_list li{
        width:23.5%;
        margin: 3px 2% 3px 0;
    }
    .hzhb_list li:nth-child(5n){
        margin-right: 2%;
    }
    .hzhb_list li:nth-child(4n){
        margin-right: 0;
    }
    .index4{
        padding:45px 0;
    }
    .news_list1 {
        padding: 20px 0;
    }
    .news_list1 li{
        width: 49%;
        margin-bottom: 15px;
    }
    .news_list1 li:nth-child(3n) {
        margin-right: 2%;
    }
    .news_list1 li:nth-child(2n) {
        margin-right: 0%;
    }
    .news_list1 li .text h3 a{
        font-size: 16px;
    }
    .news_list1 li .text .p2 {
        font-size: 14px;
    }
}
@media(max-width: 640px){
    .index_t1{
        font-size:22px;
    }
    .index4{
        padding:30px 0;
    }
    .news_list1 li{
        width: 49%;
    }
}
@media(max-width: 460px){
    .hzhb_list li{
        width:32%;
        margin: 3px 2% 3px 0;
    }
    .hzhb_list li:nth-child(4n){
        margin-right: 2%;
    }
    .hzhb_list li:nth-child(3n){
        margin-right: 0;
    }
    .news_list1 {
        padding: 20px 0 0;
    }
    .news_list1 li{
        width: 100%;
        margin-right: 0!important;
    }
    .news_list1 li .text{
        padding:10px 0 0;
    }
}



.footer .foot01 {
    margin: 0 -1.5rem;
    padding: 2rem 0 1rem;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer .foot01 .f_code{
    text-align: center;
    font-size: 15px;
    color: #000;
}
.footer .foot01 .f_code img{
    max-width: 190px;
}
.footer .foot01 .ft_slogn {
    font-size: 16px;
    line-height: 30px;
    color: #6b6b6b;
}
.footer .foot01 .ft_slogn a {
    color: #6b6b6b;
    transition: all .5s;
}
.footer a:hover{
    color: rgba(215, 0, 16, 1)!important;
}
.footer .foot01 .ft_slogn .txt {
    margin: 0.5rem 0;
    color: #000;
}

.footer .foot01 .ft_slogn .txt1 .line1{
  display: block;
  width: 270px;
  height: 1px;
  border: .5px solid rgba(215, 0, 16, 1);;
  margin: 5px 0;
}
.footer .foot01 .ft_slogn .link a {
    display: inline-block;
    line-height: 20px;
    color: #000;
    margin-right: 20px;
    white-space: nowrap;
}
.footer .foot01 h3.t {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #333;
    font-weight: normal;
    margin: 0 0 2rem;
}
.footer .foot01 .ft_contact .phone {
    margin: 0 0 1rem;
    display: block;
    font-size: 36px;
    line-height: 36px;
    color: #ef3e4a!important;
    font-weight: bolder;
}
.footer .foot01 .ft_contact .txt {
    margin-top: 20px;
    font-size: 14px;
    line-height: 28px;
    color: #000;
}
.footer .foot01 .ft_contact .txt p{
    line-height: 30px;
}
.footer .foot01 .ft_contact .txt b {
    font-size: 18px;
    color: #000;
}

.footer .foot01 .ft_area{
    display: none;
}
.footer .foot01 .ft_area .am-g {
    margin: 0 -1.5rem;
    width: 100%;
}
.footer .foot01 .ft_area .am-g div{
    width: 50%;
    float: left;
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.footer .foot01 .ft_area a {
    white-space: nowrap;
    color: #6b6b6b;
    transition: all .5s;
}
.footer .ft_link{
    width: 100%;
    padding-top:10px;
    display: flex;
    flex-wrap: wrap;
}
.footer .ft_link ul {
    margin: 0;
    padding: 0;
}
.footer .ft_link ul a {
    display: inline;
    color: #6b6b6b;
}
.footer .foot02 {
    padding: 10px 0;
    font-size: 12px;
    line-height: 30px;
    color: #929292;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .foot02 a {
    margin: 0 5px;
    color: #929292;
    transition: all .5s;
}
@media (max-width: 1600px){
    .footer .foot01{
        padding: 2rem 0;
        margin:0;
    }
    .footer .foot01 .ft_slogn {
        font-size: 14px;
        line-height: 26px;
    }
    .footer .foot01 .ft_contact .txt {
        font-size: 12px;
        line-height: 22px;
    }
    .footer .foot01 .ft_contact .txt b {
        font-size: 16px;
    }  
    .footer .foot01 h3.t{
        margin-bottom: 1.5rem;
    } 
    .footer .foot02{
        padding:12px 0;
    }
}
@media (max-width: 1260px){
    .footer .foot01 .ft_slogn .txt {
        margin: 1rem 0;
    }
}
@media (max-width: 1180px){
    .footer .foot01>*{
        padding:0 15px;
    }
    .footer .foot01 h3.t {
        font-size: 20px;
    }
    .footer .foot01 .ft_contact .phone {
        font-size: 24px;
        line-height: 30px;
    }    
}
@media (max-width: 1024px){
    /*.footer .foot01>*{*/
    /*    width: 33.33333%;*/
    /*}*/
    .ft_link{
        display: none;
    }
}
@media (max-width: 820px){
    .footer .foot01>* {
        width: 50%;
    }
    .footer .foot01 .ft_area {
        display: none;
    }
    .footer .foot02{
        padding:6px 0;
    }
    .footer .foot01 .f_code img{
        max-width: 150px;
    }
}
@media (max-width: 668px){
    .footer .foot01 {
        margin: 0;
        padding: 1rem 0;
        flex-wrap: wrap;
    }
    .footer .foot01>* {
        padding: 0;
        width: 100%;
    }
    .footer .foot01 .f_code{
        width:100%;
    }
    .footer .foot01 .ft_contact{
        width: 100%;
    }
    .footer .foot01 .ft_slogn {
        text-align: center;
        padding: 20px 0;
        display:none;
    }
    .footer .foot01 .ft_slogn .footlogo {
        max-width: 160px;
    }
    .footer .foot01 .ft_slogn .txt {
        margin: 10px 0;
    }
    .footer .foot01 .ft_slogn .link a {
        margin: 0 5px;
    }
    .footer .foot01 .ft_contact {
        padding: 15px 0;
        /*border-top: 1px solid #eaeaea;*/
    }
    .footer .foot01 h3.t {
        font-size: 22px;
    }
    .footer .foot01 .ft_contact .phone {
        font-size: 28px;
        line-height: 28px;
    }
    .footer .foot02{
        padding:8px 0;
        flex-wrap: wrap;
        text-align: center;
        line-height: 1.6;
    }
    .foot02_1{
        width: 100%;
    }
    .foot02_2{
        width: 100%;
    }
}

/*----- Common css ------*/

.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}
.f_none{
    display: none;
}



/*------------内页-------------------*/
.n_banner {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.n_banner img {
    width: 100%;
    margin: 0 auto
}
.n_banner_text{
    position: absolute;
    z-index: 2;
    top:50%;
    left:15%;
}
.n_banner_text h3{
    font-size: 24px;
    color: #333;
    line-height: 1.6em;
    font-weight: normal;
}
.n_banner_text p{
    font-size: 16px;
    color: #000;
}
.sitemp {
    line-height: 46px;
    margin: 0 0 20px;
}   
.sitemp .container {
    font-size: 14px;
    border-bottom: 1px dashed #dcdcdc;
}
.sitemp .site b{
    border-left: 10px solid #d7342f;
    font-weight: normal;
    padding-left: 8px;    
}
.left1 {
    width: 240px;
    float: left;
    position: sticky;
    top: 200px;
    margin-bottom: 50px;
}
.sort_menu{
    margin-bottom: 20px;
}
.sort_menu h3 {
    background:#d7342f;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1.4;

    font-size: 24px;
    font-weight: normal;
    color: #fff;
    border-bottom: 1px solid #fff;
}
.sort li a.list_item1{
    height: 50px;
    line-height: 50px;
    background: url(../image/p14-icon5.png) no-repeat right center #ececeb;
    margin-bottom: 2px;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 17px;
    padding-right: 30px;
    padding-left: 20px;
    color: #666;
}
.sort li.cur a.list_item1,.sort li a.list_item1:hover {
    background: url(../image/p14-icon2.png) no-repeat right center #d7342f;
    color: #fff;
}
.sort li a.list_item2{

}
.contact-z1 {
    height: 140px;
    background: url("../image/contact-z1.jpg") no-repeat;
    color: #333;
    margin-bottom: 30px;
}
.contact-z1 p {
    font-size: 20px;
    line-height: 30px;
    padding: 37px 0 0 95px; 
    background: url(../image/contact-z1_tel.png) no-repeat 74px 44px;
}

.contact-z1 span {
    display: block;
    height: 30px;
    font-weight: bold;
    font-size: 18px;
    line-height: 30px; 
    padding-left: 73px;
}
.message select {
    width: 100%;
    padding: 0 1.625rem;
    line-height: 3.625rem;
    height: 3.625rem;
    border: 1px solid #d9d9d9;
  }
  
  .message .w30 {
    padding-left: .9375rem;
    padding-right: .9375rem;
  }
  
  .message input {
    line-height: 3.625rem;
    width: 100%;
    padding: 0 1.625rem;
    color: #5e5e5e;
  }
  
  .message .w10 {
    margin-left: 1.5rem;
    border-radius: .375rem;
    width: 4.0625rem;
    background-color: #e18e25;
    line-height: 3.75rem;
    transition: all .6s;
  }
  
  .message .w10:hover {
    background-color: #008687;
    transition: all .6s;
    cursor: pointer;
  }
  
  .message .w10 i {
    font-size: 1.25rem;
    display: block;
    text-align: center;
  }
  
  input::-webkit-input-placeholder {
    /*WebKit browsers*/
  
    color: #5e5e5e;
  
  }
  
  input::-moz-input-placeholder {
    /*Mozilla Firefox*/
  
    color: #5e5e5e;
  
  }
  
  input::-ms-input-placeholder {
    /*Internet Explorer*/
  
    color: #5e5e5e;
  
  }
  
  .message_peo {
    position: absolute;
    font-size: 1.5rem;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    color: #ca0000;
  }
  
  .message .col-md-6 {
    margin-top: 1.4375rem;
  }
  
  .message .col-md-6 select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    /*在选择框的最右侧中间显示小箭头图片*/
    background-image: url("../img/jt.png");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position-x: 96%;
    background-position-y: center;
    color: #5e5e5e;
  }
  
  .message input {
    border: 1px solid #d9d9d9;
  }
  
  .message textarea {
    width: 100%;
    height: 12.5rem;
    border: 1px solid #d9d9d9;
    padding: .9375rem 1.25rem;
    line-height: 1.875rem;
    display: block;
  }
  
  .message .ma_input {
    margin: 1.4375rem 0 1.125rem 0;
  }
  
  .message .PIN_bottom .PIN_img img {
    height: 3.125rem;
    margin-top: .25rem;
  }
  
  .message .PIN_bottom .PIN_img {
    margin: 0 1.25rem;
  }
  
  .message .PIN_bottom button {
    background-color: #ea1e29;
    font-size: 1rem;
    line-height: 1.875rem;
    border: none;
    color: #FFF;
    border-radius: 1.75rem;
    height: 3.625rem;
    padding: 0 2.625rem;
    transition: all .6s;
  }
  .row{
    margin: 0 -15px;
  }
  .pr{
    position: relative;
  }
  .col-md-12{
    width: 100%;
    padding: 15px;
  }
  .col-sm-4 {
    width: 33.33333333%;
    float: left;
    padding: 15px;
}
.right1 {
    width: calc(100% - 240px);
    float: right;
    padding-bottom: 10px;
    padding-left: 30px;
}
@media(max-width: 1600px){
    .sort li a.list_item1{
        font-size: 16px;
    }
    .sort_menu h3{
        height: 70px;
        font-size: 22px;
    }
}
@media(max-width: 1260px){

}
@media(max-width: 1024px){
    .right1{
        padding-left: 20px;
    }
}
@media(max-width: 820px){
    .sort li a.list_item1 {
        font-size: 15px;
        padding-left: 15px;
    }
    .sitemp{
        margin-bottom: 10px;
    }
    .sitemp .site{
        width: 100%;
    }
    .sort2{
        float: none;
        width: 100%;
    }
}
@media(max-width: 640px){
    .right1 {
        width: 100%;
        float: none;
        padding-bottom: 10px;
        padding-left: 0px;
    }
    .left1{
        float: none;
        width: 100%;
    }
    .contact-z1{
        display: none;
    }
}
@media(max-width: 460px){

}

.n_top{
    background: #f2f2f2;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    font-size: 14px;
}
.n_top .container{
    display: flex;
    align-content: center;
    justify-content: space-between;
    max-width: 1200px;
    height: 82px;
}
.keywords{
    color: #444;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.keywords a{
    color: #444;
    display: inline-block;
    margin-right: 15px;      
}
#formsearch{
    width: 270px;
    height: 30px;
    border-radius: 20px;
    background: #fff;
    padding-left: 10px;
    margin-top: 28px;    
}
#keyword{
    width: 224px;
    height: 30px;
    line-height: 30px;
    color: #a9a9a9;
    float: left;
    border:none;
    outline: none;
}
#s_btn{
    width: 30px;
    height: 30px;
    background: url(../image/VISkins-p1.png) no-repeat -258px -936px;
    float: right;
    cursor: pointer;
    border:none;
    outline: none;
}
.case_list.case_list2 li{
    width: 32%;
    margin-right: 2%;
}
.case_list.case_list2 li:nth-child(4n){
    margin-right: 2%;
}
.case_list.case_list2 li:nth-child(3n){
    margin-right: 0%;
}
.case_list.case_list2 li a .img .text img{
    transform: scale(0.8);
}
.case_list.case_list2 li a .text p{
    font-size: 16px;
}
.case_list.case_list2 li a .txt{
    padding-top:5px;
    justify-content: center;
}
.case_list.case_list2 li a .txt h3{
    font-size: 14px;
}
.case_list.case_list2 li a .txt p{
    display: none;
}
.case_detail .text p{
    margin: 0 -10px;
}
.case_detail .text img{
    width: 50%;
    padding: 10px;
    float: left;
}
.case_detail h1 {
    font-size: 24px;
    font-weight: normal;
    line-height: 38px;
    color: #000;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
    margin-bottom: 35px;
}
.case_detail .text {
    margin: 15px 0;
    /*text-indent: 2em;*/
    font-size: 15px;
}
.case_detail .text p{
    text-indent: 0em!important;
}
.case_detail .text table{
    text-align: center;
    width: 100%;
}
.case_detail .text table tr td{
    padding: 0 5px;
}
.case_more1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}
.c_tel{
    color: #666;
    background: url(../image/h_tel.png) no-repeat left center;
    padding-left: 30px;
    font-size: 16px;
    line-height: 25px;
    background-size: 22px;
}
.c_tel p:nth-child(2){
    font-size: 20px;
    line-height: 30px;
    color: #333;
}
a.case_more1_a{
    display: flex;
    align-items: center;
    padding:5px 20px;
    font-size: 16px;
    color: #fff;
    border-radius: 25px;
    background: rgba(215, 0, 16, 1);
}
.img-block {
    text-indent: 0px;
    padding-top: 14px;
    margin: 0px;
    text-align: center;
}
.dhht {
    text-align: center;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    background: url(../image/case_detail1.jpg) no-repeat 0 0;
    margin: 20px auto;
    line-height: 45px;
    border-radius: 30px 0 50px 0;
    padding: 10px 0;
    height: 190px;
}
.fwrx2 {
    margin-top: 50px;
    display: inline-block;
    border-bottom: 5px solid #f4f4f4;
    line-height: 25px;
    font-size: 20px;
}
.fwrx3 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
}

.fwrx4 {
    margin-top: -5px;
    float: left;
    width: 410px;
    margin-left: 90px;
    font-size: 22px;
    font-weight: normal;
}
.slldh {
    background:url(../image/tel1.png) no-repeat 0 0;
    padding-left: 35px;
    height: 35px;
    display: block;
    line-height: 29px;
    margin-left: 0px;
    float: left;
}
.slldh b{
    display: block;
    padding-left: 0;
}
.hou {
    background: #fbfbfb;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.houl {
    width: 390px;
    float: right;
    padding: 40px 20px 20px 20px;
}
.houl li {
    border-bottom: 1px dashed #eee;
    padding-bottom: 7px;
    margin-bottom: 20px;
}
.houl li:last-child{
    margin-bottom: 0;
}
.xmmc3 {
    color: #333;
    width: 83px;
    float: left;
    font-weight: bold;
    line-height: 1.6;
}
.xmnr {
    width: calc(100% - 83px);
    float: left;
    line-height: 1.6;
}
.xmnr a{
    font-weight: bold;
    color: #f00;
}
.hour{
    width: calc(100% - 390px);
    float: left;
    text-align: center;
    max-height: 370px;
    overflow: hidden;
}
.hour img{
    margin-top:-30px;
}
.int {
    border-left: 7px solid #d7342f;
    padding-left: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #eee;
    margin: 45px 0px 15px;
    letter-spacing: 1px;
}
/*我们公司的核心优势*/
.ser_con {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.ser_con ul {
    padding: 36px 22px 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}
.ser_con ul:after {
    position: absolute;
    width: 1092px;
    height: 1px;
    background: #dddddd;
    content: "";
    left: 54px;
    top: 256px;
}
.ser_con li {
    float: left;
    width: 50%;
    height: 200px;
    margin-bottom: 56px;
    padding-left: 34px;
    box-sizing: border-box;
    background:url(../image/line1.png) no-repeat;
    position: relative;
}
.ser_con li:nth-child(3n) {
    width: 310px;
}
.ser_con li:nth-child(3n) img {
    right: 0;
}
.ser_con li img {
    position: absolute;
    right: 48px;
    top: 0;
    transition: all 0.5s;
}
.ser_con li h3 {
    font-size: 22px;
    color: #333;
    line-height: 24px;
    margin-bottom: 40px;
}
.ser_con li h3 i {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 24px;
    font-family: Arial;
    font-weight: normal;
}
.ser_con li p {
    font-size: 14px;
    color: #666;
    line-height: 22px;
    max-width: 300px;
}
.ser_con li:hover img {
    transform: rotateY(180deg);
}
.ser_con li h3:hover,
.ser_con li h3:hover i {
    color: #d7342f;
}
.ser_con .way {
    height: 140px;
    background: #d7342f;
    padding-top: 50px;
}
.ser_con .way h3 {
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-weight: normal;
    letter-spacing: 2px;
    font-size: 30px;
    color: #fff;
    background:url(../image/df13e28a8cb54f6596fc0b3382389452_72.png) no-repeat center;
    margin-bottom: 24px;
}
.ser_con .way h3 i {
    display: inline-block;
    font-size: 20px;
    vertical-align: top;
    margin-left: 20px;
    position: relative;
    z-index: 1;
    font-style: normal;
}
.ser_con .way h3 i:after {
    position: absolute;
    width: 92px;
    height: 7px;
    background: #e31e25;
    content: "";
    left: -4px;
    bottom: 4px;
    z-index: -1;
}
.ser_con .tel {
    text-align: center;
    height: 34px;
}
.ser_con .tel b {
    display: inline-block;
    padding-left: 42px;
    height: 34px;
    line-height: 34px;
    font-size: 30px;
    color: #fff;
    font-family: Arial;
    margin: 0 50px;
    vertical-align: top;
    background:url(../image/df13e28a8cb54f6596fc0b3382389452_66.png) no-repeat left center;
}
.ser_con .tel .dh {
    background:url(../image/df13e28a8cb54f6596fc0b3382389452_68.png) no-repeat left center;
}
.sldfw {
    font-size: 26px;
    color: #fff;
    padding-top: 40px;
    margin-left: 170px;
    border-bottom: 1px dashed #9b9b9b;
    letter-spacing: 2px;
    font-weight: bold;
    width: 270px;
}
.khfw p {
    margin-left: 220px;
    color: #fff;
    padding: 12px 30px;
    line-height: 30px;
    font-size: 16px;
}
.yxfw {
    font-size: 16px;
    color: #d7342f;
    margin-left: 15px;
    font-style: italic;
    font-weight: normal;
    text-transform: uppercase;
}

.gaak {
    background:url(../image/case_detail2.jpg) no-repeat -160px 0;
    height: 200px;
    margin-top: 30px;
}
.gaak .gaakl {
    float: left;
    margin-top: 20px;
    margin-left: 40px;
    border: 5px solid #e8e8e8;
    width: 513px;
}
.gaak .gaakr {
    width: 902px;
    float: right;
    color: #333;
    margin-top: 20px;
    border: 5px solid #fdfdfd;
    border-left-color: rgb(253, 253, 253);
    border-left-style: solid;
    border-left-width: 5px;
    border-left: none;
    height: 240px;
    font-size: 15px;
    padding: 49px 10px 0 20px;
    background: #fdfdfd;
}
.gssm1 {
    background:url(../image/shim1.png) no-repeat 0 0;
    padding-left: 50px;
}
.gssm2 {
    background:url(../image/shim2.png) no-repeat 0 0;
    padding-left: 50px;
}
.gssm3 {
    background:url(../image/shim3.png) no-repeat 0 0;
    padding-left: 50px;
}
.qysm {
    margin-left: 30px
}
.qysm li {
    color: #333;
    font-size: 22px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 6px;
    margin-bottom: 10px;
    line-height: 40px;
}
.qysm li .smbt {
    color: #d7342f;
    font-weight: bold
}
.blk {
    margin-bottom: 20px;
}
.xgzx-pagin-01 dl {
    margin-bottom: 24px;
    padding-right: 40px;
}
.xgzx-pagin-01 dd {
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.xgzx-pagin-01 dd b {
    float: right;
    font-weight: normal;
}
.xgzx-pagin-01 dd span {
    width: 60px;
    height: 32px;
    background: #a2a2a2;
    color: #fff;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}
.xgzx-pagin-01 dt {
    height: 1px;
    border-bottom: 1px dashed #b5b5b5;
    margin-left: 60px;
    padding-top: 2px;
    margin-bottom: 2px;
}
.xgzx-pagin-01 dd em {
    float: right;
    font-style: normal;
    padding-left: 20px;
    font-weight: normal;
}
.xgzx-pagin-01 dl a {
    color: #4b4a4a;
}
.xgzx-pagin-01-href {
    float: right;
    font-size: 18px;
    line-height: 32px;
}
.xgzx-pagin-01-href span {
    display: inline-block;
    padding: 0 6px;
    margin-left: 4px;
    background: #d7342f;
}
.xgzx-pagin-01-href a {
    display: block;
    color: #fff;
}
.xgzx-pagin-01-key {
    min-height: 40px;
    border-top: 1px solid  #d7342f;
    font-size: 14px;
    line-height: 40px;
    color:  #575556;
}
.xgzx-pagin-01-key a {
    color:  #575556;
}
.xgzx-pagin-01-key span {
    display: inline-block;
    margin: 0 4px;
}
.hxys{
    padding:30px;
}

.xgzx-01 {
            background: #f5f5f5;
            padding: 8px 20px;
        }
        
        .xgzx-01-tit {
            height: 55px;
            font-size: 24px;
            font-weight: normal;
            line-height: 55px;
            color: #4b4a4a;
        }
        
        .xgzx-01-list li h4{
            height: 46px;
            font-size: 14px;
            font-weight: normal;
            line-height: 46px;
            color: #4b4a4a;
            border-top: 1px dashed #dbdbdb;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .xgzx-01-list li h4 a {
            color: #4b4a4a;
        }
        
        .xgzx-01-list li h4 span {
            float: right;
        }
    

        .xgzx-pagin-01 dl {
            margin-bottom: 24px;
            padding-right: 40px;
        }
        
        .xgzx-pagin-01 dd {
            height: 32px;
            font-size: 14px;
            line-height: 32px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .xgzx-pagin-01 dd b {
            float: right;
            font-weight: normal;
        }
        
        .xgzx-pagin-01 dd span {
            width: 60px;
            height: 32px;
            background: #a2a2a2;
            color: #fff;
            text-align: center;
            display: inline-block;
            margin-right: 10px;
        }
        
        .xgzx-pagin-01 dt {
            height: 1px;
            border-bottom: 1px dashed #b5b5b5;
            margin-left: 60px;
            padding-top: 2px;
            margin-bottom: 2px;
        }
        
        .xgzx-pagin-01 dd em {
            float: right;
            font-style: normal;
            padding-left: 20px;
            font-weight: normal;
        }
        
        .xgzx-pagin-01 dl a {
            color: #4b4a4a;
        }
        
        .xgzx-pagin-01-href {
            float: right;
            font-size: 18px;
            line-height: 32px;
        }
        
        .xgzx-pagin-01-href span {
            display: inline-block;
            padding: 0 6px;
            margin-left: 4px;
            background: #d7342f;
        }
        
        .xgzx-pagin-01-href a {
            display: block;
            color: #fff;
        }
        
        .xgzx-pagin-01-key {
            min-height: 40px;
            border-top: 1px solid  #d7342f;
            font-size: 14px;
            line-height: 40px;
            color:  #575556;
        }
        
        .xgzx-pagin-01-key a {
            color:  #575556;
        }
        
        .xgzx-pagin-01-key span {
            display: inline-block;
            margin: 0 4px;
        }
@media(max-width: 1600px){
    .case_detail h1{
        margin-bottom: 20px;
    }
    .xgzx-pagin-01-href{
        font-size: 16px;
    }
    .qysm li{
        font-size: 20px;
    }
    .c_tel{
        font-size:14px;
    }
}
@media(max-width: 1260px){
    .houl {
        padding: 30px 20px 20px 20px;
    }
    .houl li {
        padding-bottom: 6px;
        margin-bottom: 10px;
    }
    .c_tel p:nth-child(2){
        font-size:16px;
        line-height:26px;
    }
    .case_more1{
        margin-top:15px;
    }
    a.case_more1_a{
        font-size:14px;
    }
    .fwrx4 {
        width: 336px;
        margin-left: 60px;
        font-size: 18px;
    }
    .ser_con li img{
        right: 15px;
    }
    .ser_con li h3{
        margin-bottom: 20px;
    }
    .n_top{
        display:none;
    }
}
@media(max-width: 1024px){
    .hour{
        max-height: 100%;
        overflow: hidden;
        width:100%;
    }
    .hour img{
        margin-top:0px;
    }
    .houl{
        padding: 20px 15px;
        width:100%;
    }
    .houl li {
        padding-bottom: 6px;
        margin-bottom: 10px;
    }
    .xmnr{
        line-height: 1.6;
    }
    .fwrx4 {
        width: 288px;
        margin-left: 20px;
        font-size: 14px;
    }
    /*.slldh{*/
    /*    padding-left: 14px;*/
    /*}*/
    .fwrx3 {
        font-size: 17px;
    }
    .fwrx2 {
        margin-top: 30px;
        border-bottom: 3px solid #f4f4f4;
        line-height: 30px;
        font-size: 16px;
    }
    .ser_con li{
        width: 100%;
    }
    .ser_con li img{
        right: 0;
    }
    .case_list.case_list2 li {
        width: 49%;
    }
    .case_list.case_list2 li:nth-child(3n) {
        margin-right: 2%;
    }
    .case_list.case_list2 li:nth-child(2n) {
        margin-right: 0%;
    }
}
@media(max-width: 820px){
    .case_detail h1 {
        font-size: 20px;
        line-height: 1;
        padding-bottom: 6px;
        margin-bottom: 15px;
    }
    .hour{
        width: 100%;
    }
    .houl{
        width: 100%;
        padding:15px 12px;
    }
    .int {
        margin: 30px 0px 15px;
        font-size: 16px;
    }
    .case_detail .text{
        font-size: 14px;
        margin:12px 0;
    }
    .hxys{
        padding:20px;
    }
    .ser_con li h3{
        margin-bottom: 10px;
    }
    .slldh{
        margin-left: 20px;
    }
    .fwrx4{
        text-align: left;
    }
    .ser_con li{
        padding-left: 25px;
        margin-bottom: 20px;
        height: auto;
    }
    .ser_con li h3{
        font-size: 18px;
    }
    .ser_con ul {
        padding: 20px 22px 0;
    }
    .qysm{
        margin-left: 0;
    }
    .xgzx-pagin-01-href{
        font-size: 15px;
    }
}
@media(max-width: 640px){
    .case_detail h1{
        font-size: 16px;
    }
    .dhht{
        letter-spacing: 1;
        background-size:cover;
            background: url(../image/case_detail1.jpg) no-repeat center;
    }
    .fwrx3{
        margin-top: 15px;
        font-size: 16px;
    }
    .fwrx3 .slldh{
        padding-left:30px;
    }
    .fwrx4 {
        width: 100%;
        margin-left: 0px;
        font-size: 13px;
        text-align: left;
        padding-left:12px;
    }
    .slldh {
        padding-left: 10px;
        margin-left: 15px;
        line-height: 24px;
    }
    .fwrx2{
        /*display: none;*/
        margin-top:25px;
        font-size: 14px;
        line-height: 24px;
    }
    .hxys{
        padding:15px;
    }
    .ser_con li h3{
        font-size: 16px;
    }
    .gaak{
        display: none;
    }
    .xgzx-pagin-01 dl{
        margin-bottom: 15px;
    }
    .qysm li{
        line-height: 1.6;
        font-size:16px;
    }
}
@media(max-width: 460px){
    .case_list.case_list2 li {
        width: 100%;
        margin-right: 0%!important;
    }
}


#about1{
    text-align: center;
    background-color: #f9f9fc;
    padding:110px 0;
}
#about1 h2{
    font-size: 40px;
    color: #333333;
    font-family: "微软雅黑";
}
#about1 .text{
    font-size: 16px;
    color: #666666;

    max-width: 1200px;
    margin:0 auto;
    line-height: 1.8;
    padding:10px 0 75px;
    font-weight: 100;
}
#about1 .num_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.num_list li{
    width: 201px;
    height: 201px;
    background:url(../image/yq2.png) no-repeat center;
    background-size: contain;
    position: relative;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    margin-right: 33.5px;
}
.num_list li:last-child{
    margin-right: 0;
}
.num_list li:before{
    content:'';
    position: absolute;
    top: -3px;
    left: 3px;
    width: 195px;
    height: 195px;
    background:url(../image/yq1.png) no-repeat center;
    background-size: contain;
    -webkit-animation: spin 3s linear infinite;
/*    margin:-87.5px 0 0 -87.5px;*/

}
.num_list li p.p1{
    font-size: 25px;
    color: #333333;
    line-height: 1;
}
.num_list li p.p1 span{
    font-size: 42px;
}
.num_list li p.p2{
    font-size: 18px;
    color: #808080;
    font-weight: 300;
}
@-webkit-keyframes spin{
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*#about2{*/
/*    padding:110px 0 90px;*/
/*}*/
/*#about2 .container{*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/
/*#about2 .container .img{*/
/*    width: 50%;*/
/*}*/
/*#about2 .container .text{*/
/*    width: 50%;    */
/*    background-color: #f5f6fa;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    padding:30px 5% 30px 6%;*/
/*}*/
/*#about2 .container .text h3{*/
/*    font-size: 40px;*/
/*    color: #333333;*/
/*    font-family: "微软雅黑";*/
/*    line-height: 1.2;*/
/*}*/
/*#about2 .container .text h3 span{*/
/*    color: #2fa1ee;*/
/*}*/
/*#about2 .container .text .txt{*/
/*    font-size: 16px;*/
/*    color: #808080;*/
/*    line-height: 1.8;*/
/*    margin-top:45px;*/
/*    font-weight: 100;*/
/*}*/
.w100{
    width: 100%;
}
#about2{
    /* padding:90px 0 150px;
    background:url(../image/qywh_bg.jpg) no-repeat center; */
    background-size: cover;
    background-attachment: fixed;
}
#about2 ul{
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
}
#about2 ul li{
    width: 50%;
    padding:0 15px;
    text-align: center;
}
#about2 ul li .img{
    display: none;
}
#about2 ul li p{
    font-size: 50px;
    color: #d7342f;
    line-height: 1;
    margin-top:20px;
}
#certify {
    position: relative;
    width: 100%;
    margin: 0 auto
  }
  #certify .swiper-container {
    padding: 0 3.75rem 3.75rem;
  }
  #certify .swiper-slide {
    width: 50%;
    background: #fff;
    box-shadow: 0 8px 1.875rem #ddd;
  }
  #certify .swiper-slide img {
    display: block;
    object-fit: cover;
  }
  #certify .swiper-slide {
    line-height: 0;
    background-color: #FFF;
    padding: .625rem;
    text-align: center;
    color: #636363;
    font-size: 1.1em;
    margin: 0;
  }
  #certify .swiper-slide p{
    display: none;
  }
  #certify .swiper-slide.swiper-slide-active p{
    background-color: rgba(215, 0, 16, 1);
    display: block;
    line-height: 3.75rem;
  }
  #certify .swiper-slide.swiper-slide-active{
    color: #FFF;
  }
  #certify .swiper-pagination {
    width: 100%;
    bottom: 1.25rem;
  }
  #certify .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    border: 3px solid #fff;
    background-color: #d5d5d5;
    width: .625rem;
    height: .625rem;
    opacity: 1;
  }
  #certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
    border: 3px solid #eee;
    background-color: #fff;
  }
#about3{
    padding:90px 0 ;
    display: none;
}
.ab_t1{
    text-align: center;
}
.ab_t1 h2{
    font-size: 40px;
    color: #333333;
    font-family: "微软雅黑";
    line-height: 1.6;
}
.ab_t1 p{
    font-size: 24px;
    color: #666666;
    line-height: 1.6;
}
.parnter_list{
    margin-top:60px;
    display: flex;
    flex-wrap: wrap;
}
.parnter_list li{
    width: 11.1875%;
    margin-right: 1.5%;
    margin-bottom: 15px;
}
.parnter_list li:nth-child(8n){
    margin-right: 0;
}
#about4{
    padding:60px 0;
}
.n_ryzz{
    display: flex;
    flex-wrap: wrap;
}
.n_ryzz li{
    width: 30%;
    margin:1.65%;
    border: 1px solid #999;
    box-sizing: border-box;
}
.n_ryzz li h3{
    padding:10px 0;
    font-weight: normal;
    font-size: 16px;
}
.n_ryzz li:hover h3{
    color: rgba(215, 0, 16, 1)
}
.n_ryzz li .xs{
    position: fixed;
    width: 100%;
    height: 100vh;
    
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    background-color: rgba(0,0,0,.6);
    top: 0;
    left: 0;
    display: none;
}
.n_ryzz li .xs img{
    max-height: 100%;
}
.n_ryzz li .xs.on{
    display: flex;
}
@media(max-width: 1600px){
    #about1{
        padding:90px 0;
    }
    #about1 h2{
        font-size: 32px;
    }
    #about1 .text{
        font-size: 15px;
    }
    .num_list li{
        width: 170px;
    }
    .num_list li:before{
        width: 170px;
        height: 170px;
        top: 10px;
        left: 0px;
    }
    .num_list li p.p1{
        font-size: 20px;
    }
    .num_list li p.p1 span{
        font-size: 36px;
    }
    .num_list li p.p2{
        font-size: 16px;
    }
    /*#about2 .container .text h3{*/
    /*    font-size: 36px;*/
    /*}*/
    /*#about2 .container .text .txt{*/
    /*    font-size:15px;*/
    /*}*/
    
    /* #about2 h2{
        margin-bottom:50px;
    } */
    #about2 ul li p{
        font-size: 32px;
    }
    .ab_t1 h2{
        font-size: 36px;
    }
    .ab_t1 p {
        font-size: 16px;
    }
    .parnter_list {
        margin-top: 40px;
    }
    #about3 {
        padding: 70px 0 40px;
    }
}
@media(max-width: 1260px){
    #about1{
        padding:70px 0;
    }
    /*,#about2*/
    /*#about2 .container .text h3{*/
    /*    font-size:26px;*/
    /*}*/
    /* #about2 h2 {
        margin-bottom: 40px;
    } */
    #about2 ul li .img img{
        max-width: 60px;
    }
    #about2 ul li p {
        font-size: 24px;
    }
    .ab_t1 h2{
        font-size: 26px;
    }
    .ab_t1 p {
        font-size: 15px;
    }
    .parnter_list li{
        width:15%;
        margin-right:2%;
    }
    .parnter_list li:nth-child(8n){
        margin-right: 2%;
    }
    .parnter_list li:nth-child(6n){
        margin-right: 0;
    }
    #about3 {
        padding: 50px 0 30px;
    }
}
@media(max-width: 1024px){
    #about1 .text{
        padding: 10px 0 50px;
    }
    #about1 .num_list {
        display: none;
    }
}
@media(max-width: 820px){
    #about1{
        padding:50px 0;
    }
    #about1 h2{
        font-size: 26px;
    }
    #about1 .text{
        font-weight:500;
    }
    /*,#about2*/
    /*#about2 .container .img{*/
    /*    width:100%;*/
    /*}*/
    /*#about2 .container .text{*/
    /*    width:100%;*/
    /*}*/
    /*#about2 .container .text h3{*/
    /*    font-size:24px;*/
    /*    text-align: center;*/
    /*}*/
    /*#about2 .container .text .txt{*/
    /*    margin-top:20px;*/
    /*}*/
    /* #about2{
        padding:70px 0;
    } */
    #about2{
        background-attachment:local;
    }
    #about2 ul li .img img {
        max-width: 45px;
    }
    #about2 ul li p{
        font-size: 22px;
        /*margin-top: 15px;*/
    }
    .ab_t1 h2{
        font-size: 24px;
    }
    .ab_t1 p {
        font-size: 14px;
    }
    #certify .swiper-slide {
        width: 100%;
    }
    .pb30{
        padding-bottom: 10px;
    }
    .pt30{
        padding-top: 10px;
    }
    .parnter_list{
        margin-top:25px;
    }
    .parnter_list li{
        width:23.5%;
    }
    .parnter_list li:nth-child(6n){
        margin-right: 2%;
    }
    .parnter_list li:nth-child(4n){
        margin-right: 0;
    }
    #about3 {
        padding: 30px 0 20px;
    }
    #about4 {
        padding: 40px 0;
    }
}
@media(max-width: 640px){
    #about1{
        padding:30px 0;
    } 
    #about1 h2{
        font-size: 22px;
    }
    #about1 .text{
        font-size: 14px;
        padding: 10px 0 30px;
    }
    /*,#about2*/
    /*#about2 .container .text{*/
    /*    padding:20px 15px;*/
    /*}*/
    /*#about2 .container .text h3{*/
    /*    font-size:22px;*/
    /*}*/
    /*#about2 .container .text .txt{*/
    /*    font-size:14px;*/
    /*    margin-top: 10px;*/
    /*}*/
    /* #about2{
        padding:70px 0;
    } */
    #about2 .container{
        display: none;
    }
    #about2 ul li .img img{
        max-height:38px;
        max-width:100%;
    }
    #about2 ul li p {
        font-size: 18px;
        /*margin-top: 12px;*/
    }
    .ab_t1 h2{
        font-size: 22px;
    }
    .parnter_list li{
        width:32%;
        margin-bottom: 10px;
    }
    .parnter_list li:nth-child(4n){
        margin-right: 2%;
    }
    .parnter_list li:nth-child(3n){
        margin-right: 0;
    }
    .parnter_list li:nth-child(31),.parnter_list li:nth-child(32),.parnter_list li:nth-child(33),.parnter_list li:nth-child(34),.parnter_list li:nth-child(35),.parnter_list li:nth-child(36),.parnter_list li:nth-child(37),.parnter_list li:nth-child(38),.parnter_list li:nth-child(39),.parnter_list li:nth-child(40),.parnter_list li:nth-child(41){
        display:none;
    }
    #about3 {
        padding: 30px 0 10px;
    }
    #about4 {
        padding: 30px 0;
    }
}
@media(max-width: 460px){
    #about1 .text{
        padding: 10px 0 15px;
    }
}


.jzxs_img{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.jzxs_img p{
    width: 30%;
    margin:1.65%;
}

.fuwu_sort{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.fuwu_sort li{
    width: 49%;
    margin-right: 2%;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.fuwu_sort li:nth-child(2n){
    margin-right: 0%;
}

.fuwu_sort li a{
    display: block;
    overflow: hidden;
}
.fuwu_sort li:after{
    content: '';
    position: absolute;
    z-index: 2;
    border: 1px solid #fff;
    top:10%;
    left:10%;
    width: 80%;
    height: 80%;
    opacity: 0;    
    transition: all 0.4s ease-out;
}
.fuwu_sort li .text{
    position: absolute;
    z-index: 3;
    top:10%;
    left:10%;
    width: 80%;
    height: 80%;
    cursor: pointer;
    text-align: center;
}
.fuwu_sort li .text h3{
    font-size: 40px;
    color: #fff;
    font-weight: normal;
    padding-top:10%;
}
.fuwu_sort li .text p{
    font-size: 16px;
    color: #fff;
}
.fuwu_sort li .text span{
    display: block;
    width: 158px;
    line-height: 38px;
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    border-radius: 30px;
    margin:20px auto 0;
}
.fuwu_sort li .bg1{
    position: absolute;
    top:0;
    left:0;
    background: rgba(0,0,0,.54);
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-out;
}
.fuwu_sort li:nth-child(4) .text{
    opacity: 0;
    transition: all 0.4s ease-out;
}
.fuwu_sort li:nth-child(4):hover .text{
    opacity: 1;
    transition: all 0.4s;
}
.fuwu_sort li:hover:after{
    opacity: 1;
    transition: all 0.4s;
}
.fuwu_sort li:hover .bg1{
    opacity: 1;
    transition: all 0.4s;
}
.fuwu_sort li:hover .text span{
    background: #fff;
    color: #333;
}
.fuwu_sort li.on:after{
    opacity: 1
}
.fuwu_sort li.on .bg1{
    opacity: 1;
}
.fuwu_sort li.on .text span{
    background: #fff;
    color: #333;
}

.yewu1{
    background: #fafafa;
    padding:30px 0;
}
.n_fuwu_title1 h2{
    background: url(../image/title2.png) no-repeat center;
}
.sx_list{
    display: flex;
    flex-wrap: wrap;
    margin-top:30px;
}
.sx_list li{
    width: 24%;
    margin:0.5%;
    position: relative;
}
.sx_list li a{
    display: block;
    overflow: hidden;
}
.sx_list li img{
    transition: all 0.6s ease-out;
}
.sx_list li h3{
    position: absolute;
    width: 100%;
    line-height: 40px;
    background: rgba(0,0,0,.6);
    font-size: 16px;
    color: #fff;
    left:0;
    bottom:0;
    font-weight: normal;
    text-align: center;
}
.sx_list li:hover img{
    transition: all 0.6s;
    transform: scale(1.2);
}
.fwjg{
    padding:100px 0 0 0;
}
.n_title2{
   text-align: center; 
   margin-bottom: 30px;
}
.n_title2 h3{
    font-size: 38px;
    color: rgba(215, 0, 16, 1);
    font-weight: normal;
    line-height: 1em;
}
.n_title2 p{
    font-size: 26px;
    color: rgba(215, 0, 16, 1);
}
.fwjg_list{
    display: flex;
    flex-wrap: wrap;
    margin-top:30px;
}
.fwjg_list li{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 30px;
}
.fwjg_list li:nth-child(3n){
    margin-right: 0;
}
.gc_list{
    display: flex;
    flex-wrap: wrap;
    margin-top:30px;
}
.gc_list li{
    width: 28%;
    margin:15px 2.65%;
    position: relative;
}
.gc_list li a{
    display: block;
    overflow: hidden;
}
.gc_list li img{
    transition: all 0.6s ease-out;
}
.gc_list li h3{
    position: absolute;
    width: 100%;
    line-height: 40px;
    background: rgba(0,0,0,.6);
    font-size: 16px;
    color: #fff;
    left:0;
    bottom:0;
    font-weight: normal;
    text-align: center;
}
.gc_list li:hover img{
    transition: all 0.6s;
    transform: scale(1.2);
}
.n_banner_text{
    left:25%;
}

@media(max-width: 1440px){
    .fuwu_sort li .text h3{
        padding-top: 8%;
        font-size: 36px;
    }
}
@media(max-width: 1024px){
    .fuwu_sort li .text h3{
        padding-top: 6%;
        font-size: 32px;
    }
    .sx_list li{
        width: 30%;
        margin: 1.65%;
    }
    .fwjg{
        padding-top: 50px;
    }
    .gc_list li{
        width: 30%;
        margin:1.65%;
    }
}
@media(max-width: 768px){
    .n_fuwu_title1 h2{
        background: none;
    }
    .sx_list,.gc_list{
        margin-top:15px;
    }
    .sx_list li{
        width: 48%;
        margin: 1%;
    }
    .fwjg{
        padding-top: 50px;
    }
    .n_title2{
        margin-bottom: 20px;
    }
    .n_title2 h3{
        font-size: 32px;
    }
    .n_title2 p {
        font-size: 18px;
    }
    .fwjg_list li{
        width: 48%;
        margin:1%;
    }
    .fwjg_list li:nth-child(3n) {
        margin-right: 1%;
    }
    .gc_list li{
        width: 48%;
        margin:1%;
    }
    .jzxs_img p{
        width: 48%;
        margin:1%;
    }
   .n_banner_text {
        left: 0%;
        text-align: center;
        margin-top:-18px;
        width: 100%;
    }
    .n_banner_text h3 {
        font-size: 18px;
    }
    .n_banner_text p{
        font-size: 14px;
        display: none;
    }
}
@media(max-width: 640px){
    .sx_list li h3,.gc_list li h3{
        font-size: 15px;
        line-height: 36px;
    }
    .fuwu_sort li{
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .fuwu_sort li .text h3{
        font-size: 24px;
    }
    .fuwu_sort li .text span{
        width: 120px;
    }
    .fwjg{
        padding-top: 30px;
    }
    .n_title2{
        margin-bottom: 10px;
    }
    .n_title2 h3{
        font-size: 22px;
    }
    .n_title2 p {
        font-size: 16px;
    }
}

.right {
    padding: 40px 0;
}
.product_list{
    display: flex;
    flex-wrap: wrap;
}
.product_list li{
    width: 30.5%;
    margin-right: 2%;
    box-shadow: 2px 6px 15px -13px #333;
    margin-bottom: 20px;
}
.product_list li:nth-child(4n){
    margin-right: 0;
}
.product_list li a{
    display: block;
    padding:20px;
}
.product_list li a .img{
    text-align: center;
}
.product_list li a .text{
    margin-top:20px;
}
.product_list li a .text h3{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_list li a .text h3 span{
/*    padding-left: 10px;*/
    font-weight: bold;
    color: #101555;

    line-height: 30px;
    text-align: center;
    font-size: 24px;
    display: block;
    width: 100%;
    /*width: calc(100% - 105px);*/
}
.product_list li a .text h3 em{
    font-style: normal;
    width: 105px;
    display: none;
}
.product_list li a .text .txt{
    padding-top: 18px;
    font-size: 16px;
    color: #101555;
    line-height: 24px;
    display: none;
}
.product_detail{
    box-sizing: border-box;
    padding:50px 50px;
    box-shadow: 0px 0px 20px #ccc;
    max-width: 1100px;
    margin:0 auto;
}
.product_detail .content{
    width: 100%;
}
.p_detail{
    display: flex;
    flex-wrap: wrap;
/*    justify-content: center;*/

}
.p_detail .img{
    width: 30%;
    text-align: center;
    border:1px solid #999;
    padding:30px 0;
    margin:0 5% 0 0;
    box-sizing: border-box;
}
.p_detail .text{
    width: 65%;
}
.p_detail .text h3{
    font-size: 18px;
}
.p_detail .title{
    background-color: #d5010f;
    text-align: center;
    width: 140px;
    color: #fff;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    display: block;
    margin-top: 30px;
}
@media(max-width: 1600px){
    .product_list li a .text h3 span{
        font-size: 22px;
    }
    .product_list li a .text .txt{
        font-size: 15px;
        padding-top: 15px;
    }
}
@media(max-width: 1260px){
    .product_list li a{
        padding:15px;
    }
    .product_list li{
        width:32%;
    }
    .product_list li:nth-child(4n) {
        margin-right: 2%;
    }
    .product_list li:nth-child(3n) {
        margin-right: 0%;
    }
}
@media(max-width: 1024px){
    .right {
        padding: 30px 0;
    }
    .product_detail{
        padding:50px 30px;
    }

}
@media(max-width: 820px){
    .right {
        padding: 20px 0;
    }
    .product_list li{
        width: 49%;
    }
    .product_list li:nth-child(3n) {
        margin-right: 2%;
    }
    .product_list li:nth-child(2n) {
        margin-right: 0;
    }
    .product_list li a{
        padding:15px 12px;
    }
    .product_list li a .text {
        margin-top: 15px;
    }
    .product_list li a .text h3 span {
        font-size: 18px;
    }
    .product_list li a .text .txt {
        font-size: 14px;
        padding-top: 10px;
    }
    .product_detail{
        padding:30px 20px;
    }
}
@media(max-width: 640px){

    .product_detail{
        padding:20px 10px;
    }
    .p_detail .img{
        width: 100%;
        margin:0 0 10px 0;
    }
    .p_detail .text{
        width: 100%;
    }
    .p_detail .title{
        width: 120px;
        margin:10px 0;
    }
}
@media(max-width: 460px){
    .product_list li{
        width: 100%;
        margin-right: 0!important;
        margin-bottom: 15px;
    }
    .product_list li a .text h3 span{
        font-size: 16px;
    }
}

/*.container2{*/
/*    max-width: 1200px;*/
/*}*/
.jszc_container{
    padding: 50px 0;
    background: #f7f7f7;
}
.fuwuzx_list{
    margin-top:30px;
}
.fuwuzx_list li{
    display: flex;
    flex-wrap: wrap;
}
.fuwuzx_list li:nth-child(2){
    flex-direction: row-reverse;
}
.fuwuzx_list li a.img{
    width: 50%;
}
.fuwuzx_list li .text{
    width: 50%;
    background-color: #fff;
    padding:60px 7%;
}
.fuwuzx_list li .text h3{
    font-size: 24px;
    color: #454545;
    margin-bottom: 40px;
}
.fuwuzx_list li .text p{
    font-size: 14px;
    color: #454545;
}
.job_list{
    padding: 50px 0;
}
.job_t{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 80px;
    background: #0084b9;
}
.job_t li {
    overflow: hidden;
    float: left;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    width: 20%;
}
.rctxt{
    border-bottom: 1px solid #cccccc;
    margin-top: 15px;    
}
.rctxt ul{
    height: 80px; 
    overflow: hidden;
    display: flex;
    align-items: center;
}
.rctxt ul li{
    overflow:hidden;
    float: left; 
    font-size: 14px; 
    text-align: center;
    line-height:1.5;
    color:#333;
    width:20%;
}
.rctxt a{
    width: 134px; 
    height: 36px; 
    display: block; 
    border: 1px solid #999; 
    color:#333; 
    text-align: center;
    line-height: 36px; 
    margin: 0 auto; 
}
.rctxt a:hover{
    background:#0084b9; 
    border-color:#0084b9; 
    color: #fff;
}
.rczpinput{width:600px; height: 600px; position: fixed; left: 50%; top:50%; margin-left: -300px; margin-top: -300px; background:#800000; z-index: 99999999; display: none;}
.input{width: 100%; height: 100%; padding:2.5%; padding-top: 10%; }
.message .text{width: 100%; height: 200px;background: white;}
.message .text textarea{
    width: 100%; height: 100%; padding:2.5%; font-size: 18px; color:#007ec3; resize: none;
    border:none;
    outline: none;
    font-family: "微软雅黑";
}
.rczpinput>div>form>input{
    border:none;
    outline: none;
    width: 100%; height: 50px;display: block; outline: none; font-size: 18px;text-indent: 20px;margin-bottom: 10px; color: #007ec3;}
.rczpinput input::-webkit-input-placeholder {
    color:    #800000;
}  
.rczpinput textarea::-webkit-input-placeholder {
    color:    #800000;
}
.rczpinput input:-moz-placeholder {
    color:    #800000;
}
.rczpinput textarea:-moz-placeholder {
    color:    #800000;
}
.form input::-webkit-input-placeholder {
    color:    white;
}  
.form textarea::-webkit-input-placeholder {
    color:    white;
}
.form input:-moz-placeholder {
    color:    white;
}
.form textarea:-moz-placeholder {
    color:    white;
}
.inp{width:100px; height: 30px; margin: 0 auto; margin-top: 40px;}
.inp>input{width:100px; height: 30px;display: block; outline: none;text-align: center; line-height: 30px; cursor: pointer; color:#800000;}
.rczpinput>a{width:30px; height: 30px; display: block; position: absolute;right: 0px; top: 0px; font-size: 25px; color: white; text-align: center; line-height:30px;}

@media(max-width: 1600px){
    .job_t{
        height: 60px;
    }
    .job_t li {
        font-size: 20px;
    }
    .rctxt ul{
        height: 60px;
    }
    .fuwuzx_list li .text{
        width: 50%;
        padding:40px 6%;
    }
    .fuwuzx_list li .text h3{
        margin-bottom: 30px;
    }
    .rczpinput>div>form>input,.message .text textarea{
        font-size: 15px;
    }
}
@media(max-width: 1024px){
    .fuwuzx_list li .text{
        width: 50%;
        padding:30px 4%;
    }
    .fuwuzx_list li .text h3{
        margin-bottom: 20px;
    }
}
@media(max-width: 768px){
    .job_t{
        height: 50px;
    }
    .job_t li {
        font-size: 18px;
    }
    .rctxt ul{
        height: 50px;
    }
    .jszc_container{
        padding:30px 0;
    }
    .fuwuzx_list li .text h3{
        margin-bottom: 10px;
        font-size: 18px;
    }
    .fuwuzx_list li .text{
        width: 50%;
        padding:15px 2%;
    }
    .fuwuzx_list li .text p{
        font-size: 12px;
    }

}
@media(max-width: 640px){
    .job_t{
        height: 40px;
    }
    .job_t li {
        font-size: 16px;
    }
    .rctxt ul{
        height: 40px;
    }
    .jszc_container{
        padding:20px 0;
    }
    .fuwuzx_list li a.img{
        width: 100%;
    }
    .fuwuzx_list li .text{
        width: 100%;
    }
    .fuwuzx_list li .text p{
        font-size: 14px;
    }
    .rctxt a{
        width: 90%;
    }
    .rczpinput{
        width: 100%;
        left:0;
        margin-left: -0px;

    }
}
@media(max-width: 460px){
    .job_t li,.rctxt ul li{
        width: 25%;
    }
    .job_t li:nth-child(2),.rctxt ul li:nth-child(2){
        display: none;
    }
}


/* #container{
    max-width: 1200px;
} */
.p14-infolist-1-list dl {
    border: 1px solid #dedede;
    margin-bottom: 15px;
    padding: 22px 50px 22px 22px;
    background: #fff;
    overflow: hidden;
}

.p14-infolist-1-list dt {
    width: 45.5%;
    float: left;
    margin-right: 5.8%;
}

.p14-infolist-1-list dt img {
    width:100%; 
    display: block;
}

.p14-infolist-1-list dd h4 {
    height: 40px;
    font-weight: normal;
    font-size:18px;
    color: #154c64;
    line-height: 40px;
    margin-bottom: 5px;
    overflow: hidden;
}

.p14-infolist-1-list h4 a {
    display: block;
    height: 40px;
    color: #4b4a4a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.p14-infolist-1-list dl:hover{border:1px solid #d7342f;}
.p14-infolist-1-list dl:hover h4 a {
    color: #d7342f;
}

.p14-infolist-1-list-desc {
    max-height: 72px;
    font-size: 14px;
    line-height: 24px;
    color: #797979;
    margin-bottom: 28px;
    overflow: hidden;
}

.p14-infolist-1-list-deta {
    width: 90px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    float: right;
    background: #b6b6b6;
    color: #fff;
}
.p14-infolist-1-list-deta a{color:#fff;}

.p14-infolist-1-list dl:hover .p14-infolist-1-list-deta {
    background: #d7342f;
    border-color: #d7342f;
}

.p14-infolist-1-list dl:hover .p14-infolist-1-list-deta a {
    color: #fff;
}
.news_detail{

}
.news_detail iframe{
    width:100%!important;
    height: 450px!important;
}
.news_detail h1{
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}
.p14-info-3 {
    background: #f5f5f5;
    padding: 8px 20px;
}
.p14-info-3-tit {
    height: 55px;
    font-size: 24px;
    font-weight: normal;
    line-height: 55px;
    color: #4b4a4a;
}
.p14-info-3-list li h4 {
    height: 46px;
    font-size: 14px;
    font-weight: normal;
    line-height: 46px;
    color: #4b4a4a;
    border-top: 1px dashed #dbdbdb;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.p14-info-3-list li h4 a {
    color: #4b4a4a;
}
.p14-info-3-list li h4 span {
    float: right;
}
@media(max-width: 1600px){
    .p14-infolist-1-list dl{
        padding: 15px;
    }
    .p14-infolist-1-list dt{
        margin-right: 3.5%;
    }
}
@media(max-width: 1260px){

}
@media(max-width: 1024px){
    .news_detail h1{
        font-size: 20px;
        line-height: 1.6em;
    }
}
@media(max-width: 820px){
    .p14-infolist-1-list dl {
        padding: 10px;
    }
    .p14-infolist-1-list dd h4{
        font-size: 16px;
        height: auto;
        line-height: 1;
        margin-bottom: 10px;
    }
    .p14-infolist-1-list h4 a{
        height: auto;
    }
    .p14-infolist-1-list-desc{
        margin-bottom: 15px;
    }
    .news_detail iframe{
        width:100%!important;
        height: 250px!important;
    }
}
@media(max-width: 640px){

    .news_detail h1{
        font-size: 17px;
    }
    .p14-info-3-tit{
        font-size:22px;
    }
}
@media(max-width: 460px){
    .p14-infolist-1-list dt{
        width: 100%;
        margin-right: 0;
        float: none;
    }
    .p14-infolist-1-list dl dd{
        width: 100%;
        margin-top: 15px;
    }
}   



.contact_title{
    text-align: center;
}
.contact_title p{
    font-size: 16px;
    color: #737373;
    padding-top: 20px;
    margin-bottom: 35px;
}
.contact_title p span{
    font-size: 18px;
    font-weight: bold;
    color: rgba(215, 0, 16, 1);
}
.n_contact{
    padding:50px 0;

    display: flex;
    flex-wrap: wrap;
}
.n_contact .container2{
    display: flex;
    flex-wrap: wrap;
}
.n_contact_text{
    width: 50%;
}
.n_contact_text h2{
    font-size: 30px;
    color: rgba(215, 0, 16, 1);
    padding-left: 25px;
    position: relative;
    line-height: 1em;
    margin-bottom: 30px;
}
.n_contact_text h2:before{
    content: '';
    width: 12px;
    height: 35px;
    background: rgba(215, 0, 16, 1);
    position: absolute;
    top:0;
    left:0;
}
.c_address{
    margin-bottom: 30px;
}
.c_address h3{
    font-size: 26px;
    color: #737373;
    font-weight: normal;
}
.c_address p{
    font-size: 16px;
    color: #737373;
}
/* .n_contact_text .text{
    display: flex;
    flex-wrap: wrap;
} */
.n_contact_text .text p{
    width: 50%;
    font-size: 16px;
    color: #737373;
}
.n_contact_map{
    width: 50%;
}

@media(max-width: 1600px){
    .c_address h3{
        font-size: 24px;
    }
}
@media(max-width: 1260px){

}
@media(max-width: 1024px){
    .n_contact{
        padding:30px 0;
    }
    .n_contact_text h2{
        font-size: 24px;
        overflow: hidden;
    }
    .c_address{
        margin-bottom: 15px;
    }
    .c_address h3{
        font-size: 20px;
    }
}
@media(max-width: 820px){
    .n_contact{
        padding:0px 0;
    }
    .n_contact_text{
        width: 100%;
        padding:20px 0;
    }
    .n_contact_text h2{
        margin-bottom: 15px;
    }
    .n_contact_map{
        width: 100%;
        height: 300px;
        overflow: hidden;
    }
}
@media(max-width: 640px){
    .n_contact_text h2{
        font-size: 20px;
    }
    .contact_title img{
        width: 80px;
    }
    .contact_title p{
        line-height: 1.6em;
        padding-top: 10px;
        margin-bottom: 20px;
    }
    .c_address{
        margin-bottom: 10px;
    }
    .c_address h3{
        font-size: 16px;
    }
    .c_address p{
        font-size: 14px;
    }
    .n_contact_text .text p{
        font-size: 14px;
        width: 100%;
    }
    .n_contact_map{
        height: 260px;
    }
}
@media(max-width: 460px){

}



h1.title{
    font-size: 22px;
    color: #333;
    text-align: center;
    padding:2em 0 0.5em 0;
    font-weight: normal;
}
.info_title{
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-bottom: 1em;
    border-bottom:1px dashed #dcdcdc;
    margin-bottom: 2em;
}
h3.tag{
    font-size: 14px;
    color: #666;
    font-weight: normal;
}
.page{
    font-size: 14px;
    color: #666;  
    margin-top: 20px;  
}
.page a{
    font-size: 14px;
    color: #666;    
}

@media(max-width: 768px){
    h1.title{
        font-size: 18px;
    }
}

.pageController{
    text-align: center;
    color:#505050;margin:0 auto;
    margin:2em 0;
    line-height:24px;
}
.pageController a{background-color:#FFF;vertical-align:middle; border:#efefef 1px solid; 
    color:#505050;padding:5px 8px; margin-right:3px;margin-left:3px;
}
.pageController a:hover{background-color:rgba(215, 0, 16, 1);color:#fff; text-decoration:none;border:#efefef 1px solid;}
.pageController .currPage {background-color: rgba(215, 0, 16, 1);color:#ff0000;border:#efefef 1px solid;}
.pageController .t1{
    float:left;margin-right:5px;height:24px;line-height:22px;white-space:nowrap;
    display: none;
}
.pageController .t2{vertical-align:middle;line-height:39px;}
.pageController .t2 #current{
    line-height: 39px;
    background-color: rgba(215, 0, 16, 1);
    vertical-align: middle;
    border: 1px solid rgba(215, 0, 16, 1); 
    color: #fff;padding: 5px 8px;
    margin-right: 3px;
    margin-left: 3px;
    width: 39px;
}
.pageController .t1 span{
    /*padding-left:4px;
    padding-right:4px;*/
    width: 39px;
}
.pageController select{height:24px;vertical-align:middle;text-align:center;line-height:24px;
    display: none;
}
.pageController select option{vertical-align:middle;}


.m_f_fixed{
    position: fixed;
    bottom:0;
    left:0;
    color: #fff;
    z-index:9999;
    justify-content: center;
    width: 100%;
    display:none;

}
.m_f_fixed a{
    flex:1;
    font-size: 14px;
    color: #fff;
    display: block;
    text-align: center;
    padding:8px 0 0;
    background: rgba(215, 0, 16, 1);
}
.m_f_fixed a:nth-child(1),.m_f_fixed a:nth-child(2){
    background: #075c9f; 
}
.m_f_fixed a img{
    width: 22px;
    display: block;
    margin:0 auto 0px;
}
#gotop{
    position: fixed;
    right: 0;
    bottom: 30px;
    cursor: pointer;
}
@media(max-width: 1199px){
    #gotop{
        display: none;
    }
    .pageController{
        margin: 15px 0 20px;
    }
}
@media(max-width:640px){
    .pageController{
        margin: 10px 0 15px;
    }
    .m_f_fixed{
        display: flex;
    }
    footer{
        margin-bottom:60px;
    }
    .s_foot{
        display: block;
    }
}


/*客服1*/
.client-2 {
    position: fixed;
    right: -170px;
    top: 50%;
    z-index: 900;
}

.client-2 li a {
    text-decoration: none;
}
.client-2 li {
    margin-top: 1px;
    clear: both;
    height: 71px;
    position: relative;
    background: #222;
}

.client-2 li i {
    background: url(../image/fx.png) no-repeat;
    display: block;
    width: 30px;
    height: 27px;
    margin: 0px auto;
    text-align: center;
}

.client-2 li p {
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.client-2 .my-kefu-qq i {
    background-position: 4px 5px;
}

.client-2 .my-kefu-tel i {
    background-position: 0 -21px;
}

.client-2 .my-kefu-liuyan i {
    background-position: 4px -53px;
}

.client-2 .my-kefu-weixin i {
    background-position: -34px 4px;
}

.client-2 .my-kefu-weibo i {
    background-position: -30px -22px;
}

.client-2 .my-kefu-ftop {
    display: none;
}

.client-2 .my-kefu-ftop i {
    width: 33px;
    height: 35px;
    background-position: -27px -51px;
}

.client-2 .my-kefu-left {
    float: left;
    width: 77px;
    height: 47px;
    position: relative;
}

.client-2 .my-kefu-tel-right {
    font-size: 16px;
    color: #fff;
    float: left;
    height: 24px;
    line-height: 22px;
    padding: 0 15px;
    border-left: 1px solid #fff;
    margin-top: 14px;
}

.client-2 .my-kefu-right {
    width: 20px;
}

.client-2 .my-kefu-tel-main {
    background: #222;
    color: #fff;
    height: 56px;
    width: 247px;
    padding:9px 0 6px;
    float: left;
}

.client-2 .my-kefu-main {
    background: #222;
    width: 97px;
    height: 56px;
    position: relative;
    padding:9px 0 6px;
    float: left;
}

.client-2 .my-kefu-weixin-pic {
    position: absolute;
    left: -140px;
    top: -24px;
    display: none;
    z-index: 333;
}

.my-kefu-weixin-pic img {
    width: 140px;
    height: 140px;
}

@media(max-width: 1199px){
    .client-2{
        display: none;
    }
}


/* 右侧浮窗 客服2 */

#c-right-fixed,.s_foot {
/*    display: none;*/
    position: fixed;
    top: 50%;
    right: 5px;
    z-index: 999999999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.s_foot ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.s_foot ul p{
    color: #FFF;
}

.s_foot ul li{
    text-align: center;
}
.s_foot ul li img{
    padding-top: 10px;
    width: 35px;
}
.s_foot {
    width: 100%;
    background: #d71a22;
    top: 96%;
    right: 0;
}
#c-right-fixed a {
    position: relative;
    right: 0;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    width: 70px;
    height: 70px;
    text-align: center;
    color: #777;
    background: #fff;
}

#c-right-fixed a:last-child {
    margin-bottom: 0;
}

#c-right-fixed a:nth-child(3) {
    z-index: 9;
}

#c-right-fixed .c-wrap {
    border: 1px solid #fff;
    padding: 11px 0;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    transition: all .5s;
    position: relative;
    z-index:9;
}

#c-right-fixed .c-wrap img {
    height: 28px;
}

#c-right-fixed .c-wrap img:nth-child(2),
#c-right-fixed a:hover .c-wrap img:nth-child(1) {
    display: none;
}

#c-right-fixed a:hover .c-wrap img:nth-child(2) {
    display: inline-block;
}

#c-right-fixed .c-title {
    padding-top: 5px;
    font-size: 12px;
    line-height: 1;
}

#c-right-fixed a:last-child .c-title {
    font-family: "Arial";
    font-weight: bold;
}

#c-right-fixed .c-text {
    flex: 0 0 auto;
    width: 170px;
    font-weight: bold;
    font-size: 20px;
    line-height: 40px;
    border-left: 1px solid #fff;
    color: #fff;
    transition: all .5s;
}

#c-right-fixed .c-img {
    position: absolute;
    right: -300px;
    top: -1px;
    z-index: -1;
    padding: 5px;
    width: 148px;
    border: 1px solid #eff1f5;
    background: #fff;
    transition: .5s;
    box-shadow: 0 0 50px rgba(0, 0, 0, .1);
    z-index:8;
}

#c-right-fixed .c-img::before {
    content: "";
    position: absolute;
    top: 34px;
    right: -8px;
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

#c-right-fixed .c-img img {
    width: 100%;
}

#c-right-fixed .c-img .c-text2 {
    padding: 5px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #777;
}

#c-right-fixed a .c-box {
    position: absolute;
    top: 0;
    left: 0;
    padding: 11px 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    transition: all .5s;
    overflow: hidden;
}

#c-right-fixed a:hover .c-wrap {
    color: #fff;
    border-color: rgba(215, 0, 16, 1);
    background: rgba(215, 0, 16, 1);
}

#c-right-fixed a:last-child .c-wrap {
    color: #fff;
    border-color: rgba(215, 0, 16, 1);
    background: rgba(215, 0, 16, 1);
}

#c-right-fixed a:first-child:hover .c-box {
    width: 250px;
    height: 70px;
    -webkit-transform: translateX(-180px);
    transform: translateX(-180px);
    overflow: none;
    background: rgba(215, 0, 16, 1);
}

#c-right-fixed a:hover .c-img {
    right: 84px;
}


@media(max-width: 1259px){
    #c-right-fixed{
        display: none;
    }
}


/*客服3*/
.Fast_contact {
    height: 265px;
    position: fixed;
    right: 0;
    top: 50%;
    margin-top: -132.5px;
    z-index: 97
}

.Fast_contact ul li.onlineservice_li {
    width: 48px;
    height: 48px;
    position: relative;
    text-align: center;
    margin-bottom: 5px;
    background-color: #d9d9d9;
}

.Fast_contact ul > li.onlineservice_li > a {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-top: 10px;
}

.Fast_contact ul > li:hover .onlineservice_tips {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}

.onlineService_qq {
    background-image: url("../image/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.onlineService_form {
    background-image: url("../image/fastForm.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.Fast_contact ul > li.onlineservice_li > a.onlineService_tel {
    width: 30px;
    height: 30px;
    background-image: url("../image/fastPhone.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.onlineService_whatsApp {
    background-image: url("../image/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -139px;
}

.onlineService_email {
    background-image: url("../image/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -111px;
}

.onlineService_skype {
    background-image: url("../image/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -28px;
}

.onlineService_wechat {
    background-image: url("../image/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -266px;
}

.for_wechat span {
    display: block;
    text-align: center;
}

.onlineservice_tips {
    padding: 5px 8px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: absolute;
    right: 58px;
    top: 6px;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transition: all .4s;
    transition: all .4s;
}

.onlineservice_tips li {
    width: auto;
    height: auto;
    white-space: nowrap;
}

.onlineservice_tips li a {
    display: block;
    min-height: 22px;
    text-align: center;
    line-height: 22px;
    color: #737578;
    font-size: 15px;
}

.onlineservice_tips li a.for_wechat {
    height: auto;
}

.onlineservice_tips li a.for_wechat img {
    max-width: 240px;
}

.onlineservice_tips li a:hover {
    text-decoration: underline;
}

.onlineservice_tips:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #ccc;
    border-color: transparent #ccc #ccc transparent;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: -6px;
    top: 10px;
    background-color: #fff;
}
@media(max-width:1220px){
    .Fast_contact{
        display:none;
}