/*头部样式*/
html.has-nav-open{
    overflow: hidden;
}
main{
    width: 100%;
    /*max-width: 1920px;*/
    /*margin:0 auto;*/
    position: relative;
    overflow: hidden;
}
main .wrap{
    max-width: 1920px;
    margin:0 auto;
}
header{
    position: fixed;
    top:0;
    left:0;
    background:#fff;
    z-index: 999999;
    width: 192px;
    height: 100vh;
    padding:32px 0 46px;
    /*border-right: 1px solid rgba(255, 255, 255, .3);*/
    background: #005581;
}
header:after {
    /*content: '';*/
    /*position: absolute;*/
    /*right: -2px;*/
    /*top: 0;*/
    /*width: 3px;*/
    /*height: 5px;*/
    /*background: rgba(0, 85, 129, 1); */
    /*-webkit-animation: down_scroll 3s linear infinite; */
    /*animation: down_scroll 3s linear infinite;*/
}

@-webkit-keyframes down_scroll {
    0% {
        top: -5px; /* 从容器外上方开始 */
    }
    100% {
        top: 100%; /* 滑动到容器底部外 */
    }
}

@keyframes down_scroll {
    0% {
        top: -5px; /* 从容器外上方开始，避免突然出现 */
    }
    100% {
        top: 100%; /* 滑动到容器底部外 */
    }
}
.head{
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.logo img{
    background: #fff;
    padding: 5px;    
    max-height: 150px;
}
.logo .img2{
    display: none;
}
.h_share{

}
.h_share li{
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
}
.h_share li:last-child{
    margin-bottom: 52px;             
}
.h_share li:hover .h_share_p,.h_share li:hover .h_share_img{
    display: block;
}
.h_share_p{
    position: absolute;
    left: 135px;
    top: 0;
    z-index: 99;
    width: 160px;
    height: 32px; 
    background:#fff;  
    box-shadow: 0 0 10px #ccc;
    font-size:16px;
    color: #000;
    padding:0 15px;
    display: none;
}
.h_share_img{
    position: absolute;
    left: 135px;
    top:0;
    z-index: 99;
    width: 100px;
    height: 100px;
    background:#fff;
    box-shadow: 0 0 10px #ccc;
    display: none;
}
.h_lang{
    position: relative; 
    cursor: pointer;
    width: 100px;
    margin:0 auto;
}
.h_lang a.a1{
    display: flex;
    align-items:center;
    justify-content: center;
    width: 100%;
    height: 32px;
    border:2px solid #005581;
}
.h_lang a.a1 i{

}
.h_lang a.a1 font{
    font-size:16px;
    color: #fff;
    margin:0 10px 0 6px;
}
.h_lang a.a1 em{

}
.h_lang_a{
    position: absolute;
    top:50%;
    left:100%;
    margin-top:-96px;
    width: 100%;
    background:#fff;
    box-shadow: 0 0 10px #eee;
    display: none;
    z-index: 9;
    box-shadow: 0 0 10px #ccc;
}
.h_lang:hover .h_lang_a{
    display: block;
}
.h_lang_a a{
    font-size: 14px;
    color: #666;
    display: block;
    text-align: center;
    line-height: 2em;
}
.h_lang_a a:hover,.nav li .b_nav a:hover{
    background:#005581;
    color: #fff;
}

.nav_content{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index: -9999;
    display: flex;
    height: 100vh;
    background:#fff;
    transform: translateX(-200%);
    opacity: 0;
    transition: transform .6s cubic-bezier(0.365, 0.305, 0, 1), opacity .3s cubic-bezier(0.365, 0.305, 0, 1);
}
.nav_content:::-webkit-scrollbar{
    width:6px;
    height:6px;
    background-color:#005581;
}

.nav_content::-webkit-scrollbar-track{
    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3);
    background-color:#eee;
}

.nav_content::-webkit-scrollbar-thumb{
    border-radius:10px;
    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);
    background-color:#005581;
}
.has-nav-open .nav_content{
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
    z-index: 9999;    
}
.nav_content_l{
    width: 37%;
    padding-left: 192px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.c-nav_main {
    position: relative;
    padding-left: 40px;
}
.nav_list{

}
.nav_list p{
    margin-bottom: 10px;
}
.nav_list p:last-child{
    margin-bottom: 0;
}
.nav_list a{
    font-size:28px;
    /*color: #b2b2b2;*/
    color: #005581;
}
.nav_list a:hover{
    /*color: #005581;*/
    text-decoration: underline;
}


.has-nav-open .c-nav_main {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.nav_content_r{
    width: 63%; 
}
.nav_p_li{
    display: flex;
    flex-wrap: wrap;
    margin:55px 0 40px;
}
.nav_p_li p{
    font-size:18px;
    color: #808080;
    position: relative;
    margin-right: 52px;
    line-height: 1;
    padding-bottom: 15px;
    cursor: pointer;
}
.nav_p_li p:after{
    content:'';
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    height: 2px;
    background:#005581;
    opacity: 0;
}
.nav_p_li p:last-child{
    margin-right: 0;
}
.nav_p_li p.cur,.nav_p_li p:hover{
    color: #005581;
}
.nav_p_li p.cur:after,.nav_p_li p:hover:after{
    opacity: 1;
}
.nav_p_cont{
    position: relative;
}
.nav_p_tab{
    position: absolute;
    opacity: 0;
    z-index: -999;
    width:100%;
/*    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;*/
}
.nav_p_tab.cur{
    opacity: 1;
    z-index: 99;
}
.swiper-container.h_nav_p_scroll{
    padding-right: 235px;
    padding-bottom: 20px;
}
.h_nav_p_scroll .img{
    position: relative;
}
.h_nav_p_scroll .img:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    background: rgba(0,85,127,.6);
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.h_nav_p_scroll .img:hover img{
    transform: scale(1.1);
}
.h_nav_p_scroll h3{
    font-size:70px;
    color: #1a1a1a;
    line-height: 1.2;
    padding:0 35px;
    margin-top:-50px;
    position: relative;
    z-index: 9;
}
.h_nav_p_scroll .img:hover:before{
    opacity: 1;
}
.nav_p_tab .h_nav_p_scroll_btn{
    width: 100px;
    height: 100px;
    background:url(../images/nav_arrow.png) no-repeat center #005581;
    top:100%;
    margin-top:-100px;
}
#h_nav_p_scroll_new1 h3{
    font-size: 32px;
}
#h_nav_p_scroll_new1 .swiper-slide:hover h3{
    color: #fff;
}
.main_r{
    width: calc(100% - 192px);
    margin-left: 192px;
}
.index_banner{
    /*padding-left: 148px;*/
    width: 100%;
    padding-left: 192px;
}
#index_banner{
    /*margin-top:145px;*/
}
#index_banner .swiper-slide{
    /*padding-top:145px;*/
}
.index_banner_text{
    position: absolute;
    top:0;
    left:0;
    z-index: 9;
}
.index_banner_title{
    transform: translate3d(100%, 0px, 0px);
    transition: 1.3s 0.2s;
    animation-delay: 0.1s;
    opacity: 0;
}
#index_banner .swiper-slide-active .index_banner_title{
    transform: translate3d(0px, 0px, 0px);  
    opacity: 1;  
}
.index_banner_title h2{
    line-height: 1.3;
    font-size:110px;
    color: #005581;    
}
#index_banner a{
    display: flex;
    align-items:center;
    justify-content: center;
    width: 318px;
    height: 64px;
    font-size:16px;
    color: #fff;
    background:#005581;
    margin-top:340px;
    transform: translate3d(100%, 0px, 0px);
    transition: 1.5s 0.3s;
    animation-delay: 0.2s;
    opacity: 0;
}
#index_banner .swiper-slide-active a{
    transform: translate3d(0px, 0px, 0px);    
    opacity: 1;
}
.index_banner_img{
    text-align: right;
    padding-left:220px;
}
.index_banner_arrow{
    position: absolute;
    z-index: 9;
    right:120px;
    top:0;
    width: 37%;
    display: none;
}
.flex{
    display: flex;
}
.index_public_pagination_box{
    align-items: flex-end;
    line-height: 1;   
}
.index_public_pagination_read{
    align-items: flex-end;
    line-height: 1; 
    width: 92px;  
}
.index_public_pagination_text{
    font-size:18px;
    color: #999999;
    font-family: "puhui65"; 
}
.index_banner_pagination_current{
    font-size:40px;
    color: #1a1a1a;
}
.index_public_pagination_line {
    width: calc(100% - 92px);
    height: 1px;
    background: #e0e0e0;
}
.index_public_pagination_label {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}
.index_strength_pagination_animate {
    -webkit-animation: strengthLineWidth 8s forwards linear normal;
    animation: strengthLineWidth 8s forwards linear normal;
}
@-webkit-keyframes strengthLineWidth {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@keyframes strengthLineWidth {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.index_public_swiper_button{

}
.index_public_pagination_btn{
    width: 24px;
    height: 17px;
    position: absolute;
    bottom:12px;
    cursor: pointer;
}
.index_banner_pagination_prev{
    right:80px;
    background:url(../images/left1.png) no-repeat center;    
}
.index_banner_pagination_prev:hover{
    background:url(../images/right1.png) no-repeat center;   
    transform: rotate(-180deg);     
}
.index_banner_pagination_next{
    right:0;
    background:url(../images/left1.png) no-repeat center;   
    transform: rotate(-180deg); 
}
.index_banner_pagination_next:hover{
    background:url(../images/right1.png) no-repeat center;   
    transform: rotate(-0deg);     
}
.nav_list p:last-child{
    display: none;
}
.all_xl{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.all_xl li{
    width: calc(13.5% - 6px);
    margin-right: 7px;
    /*transition: all 0.4s ease-out;*/
}
.all_xl li:last-child{
    margin-right: 0;
}
.all_xl li a{
    display: block;
    position: relative;
}
.all_xl li a .img:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 85, 127, .6);
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease-out;
}
.all_xl li a h3{
    font-size: 18px;
    position: absolute;
    bottom:10px;
    margin-top:0;
    padding:0 5px;
    text-align: center;
    width: 100%;
    color: #1a1a1a;
    z-index: 99;
    transition: all 0.4s ease-out;
}
.all_xl li.cur,.all_xl:hover li.cur{
    width: calc(19% - 6px);
}
.all_xl li:hover a .img:before,.all_xl li.cur a .img:before{
    opacity: 1;
}
.all_xl li:hover a h3,.all_xl li.cur a h3{
    color: #fff;
}
#index_banner .swiper-pagination{
    bottom:20px;
}
#index_banner .swiper-pagination .swiper-pagination-bullet-active{
    background: #005581;
}
@media(max-width: 1760px){
    .h_nav_p_scroll h3{
        font-size:52px;
    }
}
@media(max-width: 1600px){
    header{
        width:160px;
    }
    .index_banner{
        padding-left:160px;
    }
    header{
        padding:32px 30px;
    }
    .h_lang,.h_lang a.a1{
        width:90px;
    }
    .h_lang a.a1 i img{
        max-width:15px;
    }
    .h_lang a.a1 font{
        font-size:15px;
    }
    .h_share_p,.h_share_img{
        left:95px;
    }
    .nav_list a{
        font-size:24px;
    }
    .h_nav_p_scroll h3{
        font-size: 42px;
        padding: 0 25px;
        margin-top: -26px;
    }
    .nav_p_tab .h_nav_p_scroll_btn {
        width: 70px;
        height: 70px;
        margin-top: -80px;
    }
    .main_r {
        width: calc(100% - 160px);
        margin-left: 160px;
    }
    .swiper-container.h_nav_p_scroll{
        padding-right:200px;
    }
    #index_banner{
        /*margin-top: 90px;*/
    }
    .index_banner_title h2{
        font-size:82px;
    }
    #index_banner .swiper-slide {
        /*padding-top: 110px;*/
    }
    #index_banner a{
        margin-top:240px;
    }
    .index_banner_arrow{
        right:90px;
    }
}
@media(max-width: 1280px){
    .h_share li:last-child {
        margin-bottom: 40px;
    }
    .logo img{
        max-height:120px;
    }
    .swiper-container.h_nav_p_scroll{
        padding-right:180px;
    }
    .index_banner{
        /*padding-left: 75px;*/
    }
    #index_banner{
        /*margin-top: 75px;*/
    }
    #index_banner .swiper-slide {
        /*padding-top: 85px;*/
    }
    .index_banner_title h2{
        font-size:62px;
    }
    #index_banner a{
        margin-top: 200px;
        width:270px;
    }
    .index_banner_img{
        padding-left: 132px;
    }
    .index_banner_arrow{
        right:75px;
    }
    #h_nav_p_scroll_new1 h3{
        font-size: 28px;
    }
}
@media(max-width: 1199px){
    .logo img{
        max-height:100px;
    }
    .h_share li{
        margin-bottom: 12px;
    }
    .main_r{
        width: calc(100% - 160px);
        margin-left: 160px;
    }
    .index_banner{
        /*padding-left: 60px;*/
    }
    .index_banner_pagination_prev{
        right:50px;
    }
}
@media(max-width: 1099px){
    #index_banner .swiper-slide {
        /*padding-top: 75px;*/
    }
    .index_banner_img {
        padding-left: 80px;
    }
    #index_banner a {
        width: 160px;
    }
    .swiper-container.h_nav_p_scroll{
        padding-right:100px;
    }
}
@media(max-width: 1024px){
    .swiper-container.h_nav_p_scroll{
        padding-right:160px;
    }
    #index_banner .swiper-slide {
        /*padding-top: 60px;*/
    }
    .index_banner_title h2{
        font-size:42px;
    }   
    #index_banner a{
        margin-top:100px;
    }
    #h_nav_p_scroll_new1 h3{
        font-size: 24px;
    }
}
@media(max-width: 991px){
    header{
        width:100%;
        padding:10px 20px;
        height:auto;
        box-shadow: 0 0 6px #ddd;
        border-right:none;
    }
    header:after{
        display:none;
    }
    .head{
        flex-direction:row;
        height:auto;
    }
    .head_top{
        display:flex;
        justify-content:space-between;
        align-items:center;
        width:100%;
    }
    .logo img{
        /*80px*/
        max-height:70px;
    }
    /*.logo .img1{*/
    /*    display: none;*/
    /*}*/
    /*.logo .img2{*/
    /*    display: block;*/
    /*}*/
    .head_bottom{
        display:none;
    }
    .main_r{
        width:100%;
        margin-left:0;
        /*padding-top:100px;*/
    }
    .index_banner{
        /*padding-left:20px;*/
    }
    #index_banner {
        /*margin-top: 55px;*/

    }
    .index_banner{
        width:100%;
        padding-left:0;   
        padding-top: 89px;
    }
    .index_banner_arrow{
        right:20px;
    }
    .nav_content{
        display:block;
    }
    .nav_content_l{
        display:block;
        width:100%;
        padding:80px 20px 0;
    }
    .c-nav_main{
        padding-left:0;
        overflow:hidden;
    }
    .nav_list p {
        margin-bottom: 0px;
    }
    .nav_list p:last-child{
        display: flex;
    }
    .nav_list p:last-child a{
        margin-right:15px;
    }
    .m_language_a a:last-child{
        margin-right:0;
    }
    .nav_list a{
        font-size:20px;
    }
    .nav_content_r{
        width:100%;
    }
    .nav_p_li{
        margin:55px 0 30px;
        padding:0 20px;
    }
    .nav_p_li p{
        margin-right:40px;
    }
    .h_nav_p_scroll h3 {
        font-size: 32px;
        padding: 0 20px;
        margin-top: -18px;
    }
    .nav_p_tab .h_nav_p_scroll_btn {
        width: 50px;
        height: 50px;
        margin-top: 0px;
        top: 0;
        right:0;
    }
    #index_banner .swiper-pagination{
        bottom:10px;
    }
}
@media(max-width: 820px){
    #index_banner{
        /*margin-top: 55px;*/
    }
    .index_banner_title h2{
        font-size:32px;
    }
    .nav_list a {
        font-size: 18px;
    }
    .nav_p_li p{
        margin-right:30px;
        font-size: 16px;
    }
    .swiper-container.h_nav_p_scroll{
        padding-right:0px;
    }
    .index_banner_pagination_current{
        font-size:32px;
    }
    .index_banner_img {
        padding-left: 60px;
    }
    #index_banner a{
        width: 120px;
        margin-top:80px;
        height:50px;
    }
    /*.nav_content{*/
    /*    padding-right:15px;*/
    /*}*/
    /*.nav_content:::-webkit-scrollbar{*/
    /*    width:6px;*/
    /*    height:6px;*/
    /*    background-color:#005581;*/
    /*}*/
    /*.nav_content::-webkit-scrollbar-track{*/
    /*    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3);*/
    /*    background-color:#eee;*/
    /*}*/
    /*.nav_content::-webkit-scrollbar-thumb{*/
    /*    border-radius:10px;*/
    /*    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);*/
    /*    background-color:#005581;*/
    /*}*/
}
@media(max-width: 640px){
    header{
        padding:8px 20px;
    }
    .index_banner{
        padding-top: 80px;
    }
    #index_banner{
        /*margin-top: 40px;*/
    }
    .index_banner_title h2{
        font-size:24px;
    }
    .nav_list a {
        font-size: 16px;
    }
    .nav_p_li{
        margin:30px 0 15px;
    }
    .nav_p_li p{
        margin-right:12px;
        font-size:14px;
        padding-bottom:12px;
    }
    .h_nav_p_scroll h3 {
        font-size: 24px;
        padding: 0 15px;
        margin-top: -15px;
    }
    #index_banner .swiper-slide {
        /*padding-top: 45px;*/
    }
    .index_banner_arrow{
        width:50%;
    }
    .index_public_pagination_read{
        width:70px;
    }
    .index_public_pagination_text{
        font-size:16px;
    }
    .index_banner_pagination_current {
        font-size: 28px;
    }
    .index_banner_pagination_prev,.index_banner_pagination_next{
        display:none;
    }
    .index_public_pagination_line {
        width: calc(100% - 70px);
    }
    .index_banner_text{
        top:12px;
    }
    .index_banner_img {
        padding-left: 45px;
    }
    #index_banner a{
        width: 90px;
        height:36px;
        margin-top:50px;
        font-size:14px;
    }
    /*#index_banner .swiper-pagination{*/
    /*    bottom:5px;*/
    /*}*/
}

.c-header_burger{
    position: relative;
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    background-color: #fff;
    transition: background-color .5s ease, opacity .5s ease;
    margin-top:66px;
}

.has-footer-inview .c-header_burger {
    background-color: transparent
}

.c-header_burger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    box-sizing: content-box;
    /*border: 1px solid #969696;*/
    border: 1px solid #fff;
    border-radius: 50%;
    transition: transform .3s cubic-bezier(0.365, 0.305, 0, 1);
    transform: translateZ(0)
}

html[data-theme="dark"] .c-header_burger {
    background-color: transparent
}

@media (min-width: 1000px) {
    .c-header_burger:hover::before {
        transform:scale(1.2)
    }
}

.c-header_burger_icon {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 1.13333rem;
    height: 2px;
    background-color: #005581;
    /*background-color: #969696;*/
    transition: background-color .3s cubic-bezier(0.365, 0.305, 0, 1),transform .3s cubic-bezier(0.365, 0.305, 0, 1)
}

.c-header_burger_icon::before,.c-header_burger_icon::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    background-color: #005581;
    transition: transform .3s cubic-bezier(0.365, 0.305, 0, 1);
    transform: translateZ(0);
    transform-origin: center left
}

.c-header_burger_icon::before {
    top: -.33333rem
}

.has-nav-open .c-header_burger_icon::before {
    transform: rotate(42deg) translateY(-1px)
}

.c-header_burger_icon::after {
    bottom: -.33333rem
}

.has-nav-open .c-header_burger_icon::after {
    transform: rotate(-42deg) translateY(1px)
}

@media (min-width: 1000px) {
    .c-header_burger:hover .c-header_burger_icon::before {
        transform:translateY(-.13333rem)
    }

    .has-nav-open .c-header_burger:hover .c-header_burger_icon::before {
        transform: rotate(42deg) translateY(-1px)
    }

    .c-header_burger:hover .c-header_burger_icon::after {
        transform: translateY(.13333rem)
    }

    .has-nav-open .c-header_burger:hover .c-header_burger_icon::after {
        transform: rotate(-42deg) translateY(1px)
    }
}

.has-nav-open .c-header_burger_icon {
    background-color: transparent;
    transform: translateX(.13333rem)
}

.c-header_burger_label {
    position: absolute;
    font-size: 80%;
    color: #969696;
    z-index: -1;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color .5s ease;
    font-size:14px;
    display: none;
}

html[data-template="home"] .c-header_burger_label {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #fff
}

html.has-footer-inview .c-header_burger_label {
    background-color: transparent
}

@media (min-width: 1000px) {
    .c-header_burger_label {
        top:100%;
        left: 50%;
        transform-origin: top left;
        /*padding: 0 2.66667rem 0 1.33333rem;*/
        transform: rotate(-90deg) translateX(-100%) translateX(-13px) translateY(-50%);
    }
}

@media (max-width: 999px) {
    .c-header_burger_label {
        top:50%;
        right: 100%;
        padding: 0 1.33333rem;
        transform: translate(0, -50%)
    }
}
@media (max-width: 640px){
    .c-header_burger_label{
        padding:0 10px;
        line-height:1.2;
    }
}

html.has-nav-open .c-header_burger_label.-closed {
    display: none
}

html:not(.has-nav-open) .c-header_burger_label.-opened {
    display: none
}


@media(max-width: 1600px){
    .c-header_burger{
        margin-top:40px;
    }
}
@media(max-width: 1280px){
    .c-header_burger{
        margin-top:25px;
    }
}
@media(max-width: 991px){
    .c-header_burger{
        margin-top:0px;
        width:42px;
        height:42px;
    }
}


.index_product{
    padding:75px 290px 95px 98px;
}
.index_product_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.index_product_top .index_t1{
    
}
.index_product_li{
    display: flex;
    flex-wrap: wrap;
}
.index_product_li li{
    margin-right: 25px;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}
.index_product_li li:last-child{
    margin-right: 0;
}
.index_product_li li.cur{
    color: #005581;
    text-decoration: underline;
}
.index_product_tabs{
    margin-top:50px;
}
.index_product_tab{
    display: none;
}
.index_product_list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}
.index_product_list li{
    
}
.index_product_list li a{
    display: block;
    text-align: center;
    position: relative;
}
.index_product_list li a:after{
    content:'';
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background: rgba(0, 85, 127, .6);
    z-index: 8;   
    opacity: 0;
}
.index_product_list li a h3{
    position: absolute;
    bottom:0;
    left:0;
    z-index: 9;
    font-size: 24px;
    color: #000; 
    text-align: center;
    padding:5px 10px;
    width: 100%;
}
.index_product_list li a .img{
    
}
.index_product_list li:hover a:after{
    opacity: 1;
}
.index_product_list li:hover a .img img{
    transform: scale(1.1);
}
.index_product_list li:hover a h3{
    color: #fff;
}
@media(max-width:1600px){
    .index_product{
        padding:75px 200px 95px 98px;
    }  
    .index_product_li li{
        font-size:18px;
    }
}
@media(max-width:1280px){
    .index_product {
        padding: 75px 75px;
    }  
    .index_product_li li{
        font-size:16px;
    }
}
@media(max-width:1199px){
    .index_product {
        padding: 75px 60px;
    } 
    .index_product_list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }
}
@media(max-width:991px){
    .index_product {
        padding: 55px 20px;
    }  
    .index_product_li li{
        margin-right:20px;
    }
}
@media(max-width:820px){
    .index_product_tabs{
        margin-top:35px;
    }
}
@media(max-width:640px){
    .index_product_li{
        width:100%;
        margin-top:15px;
    }
    .index_product_li li{
        font-size:15px;
    }
    .index_product_tabs{
        margin-top:25px;
    }
    .index_product_list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
}
@media(max-width:420px){
    .index_product_li li{
        margin-right:15px;
    }
    .index_product_list {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 15px;
    }    
}

.index_bg1{
    background: url(../images/index_about_bg.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 100px;
}
.index_about{
    padding:75px 290px 95px 98px;
    margin-top:85px;
}
.index_about .wrap{
    justify-content: space-between;
}
.index_about .index_t1{
    width: 44%;
}
.index_t1 h2{
    font-size:62px;
    /*color: #010101;*/
    color: #005581;
    line-height: 1;
}
.index_about .text{
    width: 56%;
}
.index_about .text .txt{
    font-size:18px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 38px;
}
a.more1,.more1{
    display: flex;
    align-items:center;
    justify-content: center;
    width: 117px;
    height: 32px;
    background:#005581;
    font-size:16px;
    color: #fff;
    font-family: "puhui65";
}
.index_video{
    width: calc(100% - 98px);
    margin-left: 98px;
    position: relative;
}
.index_video .img img{
    width: 100%;
}
a.player1{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    z-index: 9;
    color: #fff;
    text-align: center;
}
.index_video .img2{
    width: 85px;
    height: 85px;
    background:url(../images/play1.png) no-repeat center #005581;
    transition: all 0.4s ease-out;
    margin: 0 auto;
}
.index_video .img:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 85, 127, .6);
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 1;
}
/*.index_video .img:hover:after{*/
/*    opacity: 1;*/
/*}*/
a.player1:hover .img2{
    transform: scale(1.1);
}
a.player1 p{
    font-size:16px;
    margin-top:12px;
    line-height: 1.6;
}
.index_case{
    padding:85px 0 145px;
}
.index_case .index_t1{
    margin-left: 98px;
}
.index_case_scroll{
    margin-top:42px;
}
#index_case_scroll .swiper-wrapper{
    display: flex;
    align-items:flex-end;
}
#index_case_scroll .img{
    position: relative;
}
#index_case_scroll .img:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 85, 127, .6);
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0;
}
#index_case_scroll .img img{
    width: 100%;
}
#index_case_scroll .swiper-slide:hover .img:after{
    opacity: 1;
}
#index_case_scroll:hover .swiper-slide{
        transform: scale(1)!important;
}
#index_case_scroll .swiper-slide:hover .img img{
    transform: scale(1.1);
}
#index_case_scroll h3 a{
    display: block;
    font-size:26px;
    color: #000000;
    line-height: 1.4em;
    height:2.8em;
    font-family: "puhui65";
    margin-top:20px;
}
.index_case_scroll .index_case_pagination_prev{
    width: 40px;
    height: 40px;
    background: url(../images/left1.png) no-repeat center #fff;
    left:5%;
}
.index_case_scroll .index_case_pagination_next{
    width: 40px;
    height: 40px;
    background: url(../images/right1.png) no-repeat center #fff;    
    right:5%;
}
@media(max-width: 1600px){
    .index_bg1{
        padding-bottom:75px;
    }
    .index_about{
        padding:75px 200px 95px 98px;
        margin-top:65px;
    }
    .index_t1 h2{
        font-size:42px;
    }
    .index_about .text .txt{
        font-size:15px;
    }
    .index_video .img2{
        width:65px;
        height: 65px;
    }
    .index_case {
        padding: 85px 0 95px;
    }
    #index_case_scroll h3 a{
        font-size:22px;
        margin-top:15px;
    }
    a.more1, .more1{
        width:100px;
        font-size:14px;
    }
}
@media(max-width: 1280px){
    /*.index_bg1{*/
    /*    padding-bottom:60px;*/
    /*}*/
    .index_about {
        padding: 75px 75px;
        margin-top:55px;
    }
    .index_t1 h2{
        font-size:32px;
    }
    .index_about .text .txt {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .index_video {
        width: calc(100% - 75px);
        margin-left: 75px;
    }
    .index_case {
        padding: 75px 0;
    }
    .index_case .index_t1{
        margin-left: 75px;
    }
    #index_case_scroll h3 a{
        font-size:18px;
        margin-top:12px;
    }
    a.more1, .more1{
        width:85px;
    }
}
@media(max-width: 1199px){
    .index_about {
        padding: 75px 60px;
    }
    .index_about .index_t1{
        width:35%;
    }
    .index_about .text{
        width:60%;
    }
    .index_video {
        width: calc(100% - 60px);
        margin-left: 20px;
    }
    .index_video .img2 {
        width: 55px;
        height: 55px;
    }
    .index_case .index_t1 {
        margin-left: 50px;
    }
}
@media(max-width: 991px){
    .index_about {
        padding: 55px 20px;
    }
    .index_video {
        width: calc(100% - 40px);
        margin-left: 20px;
    }
    .index_case {
        padding: 55px 0;
    }
    .index_case .index_t1{
        margin-left: 20px;
    }
    #index_case_scroll h3 a{
        padding:0 10px;
        font-size:16px;
    }
    #index_case_scroll a.more1{
        margin-left:10px;
    }
}
@media(max-width: 820px){

}
@media(max-width: 640px){
    .index_bg1{
        padding-bottom:40px;
    }
    .index_about {
        padding: 40px 20px;
        margin-top:40px;
    }  
    .index_about .wrap{
        flex-wrap:wrap;
    }
    .index_about .index_t1{
        width:100%;
    }
    .index_t1 h2 {
        font-size: 24px;
    }
    .index_about .text{
        width:100%;
        margin-top:20px;
    }
    .index_video .img2 {
        width: 40px;
        height: 40px;
        background: url(../images/play1.png) no-repeat center #005581;
        background-size:12px;
    }
    a.player1 p {
        font-size: 14px;
        margin-top: 8px;
    }
    .index_case {
        padding: 40px 0;
    }
    .index_case_scroll {
        margin-top: 20px;
    }
    #index_case_scroll h3 a{
        font-size:14px;
        margin-bottom:10px;
    }
}



.index_service{
    /*margin-top:145px;*/
    padding:60px 290px 88px 98px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items:center;
    background: url(../images/index_service_bg.jpg) no-repeat center;
    background-size: cover;
}
.index_service .img{
    width: 57%;
    position: relative;
    cursor: pointer;
}
.index_service .img img{
    width: 100%;
}
.index_service .img:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 85, 127, .6);
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.index_service .img:hover:after{
    opacity: 1;
}
.index_service .img:hover img{
    transform: scale(1.1);
}
.index_service .text{
    width: 34%;    
}
.index_t1 h2 span{
    font-family: "puhui85";
    display: block;
    margin-top:10px;
}
.index_service .text .txt{
    font-size:18px;
    color: #333333;
    margin:50px 0 55px;
}
.index_shuju{
    padding:75px 0 75px 98px;
}
.index_shuju_p{
    font-size:16px;
    color: #666666;
    line-height: 1.6;
}
.index_num{
    padding:64px 108px 140px 190px;
    justify-content: space-between;
}
.index_num li{
    line-height: 1;
    display: flex;
}
.index_num li .p1{
    font-size:160px;
    color: #010101;
    font-family: "puhui85";
    padding-right: 40px;
    border-right: 3px solid #005581;
    line-height: 115px;
}
.index_num li .p2{
    font-size:15px;
    color: #333333;
    width: 15px;
    margin-left: 8px;
}
.index_sh_img{
    text-align: center;
}
.index_hz{
    padding:120px 85px 120px 98px;
    flex-wrap: wrap;
    justify-content: space-between;
    background: url(../images/index_about_bg.jpg) no-repeat center;
    background-size: cover;
}
.index_hz_scroll{
    width: 59.5%;
}
#index_hz_scroll{
    padding-bottom: 60px;
}
#index_hz_scroll .swiper-slide{
    border:1px solid #e5e5e5;
    text-align: center;  
    padding:40px;  
    text-align: center;
    background: #fff;
}
#index_hz_scroll .swiper-slide .img{
    height: 98px;
    line-height: 98px;
}
#index_hz_scroll .swiper-slide img{
    max-height: 98px;
}
#index_hz_scroll .swiper-pagination{
    bottom:0;

}
#index_hz_scroll .swiper-pagination .swiper-pagination-bullet{
    width: 70px;
    height: 4px;
    border-radius: 0;
    opacity: 1;
    background:#e3e3e3;
    margin:0 5px;
}
#index_hz_scroll .swiper-pagination .swiper-pagination-bullet-active{
    background:#005581;
}
.index_hz .text{
    width: 32%;
/*    padding-right: 84px;*/
}
/*.index_hz .text .index_t1 h2{*/
/*    color: #fff;*/
/*}*/
.index_hz .text .txt{
    margin:52px 0 60px;
    font-size:18px;
    color: #333;
    line-height: 1.8;
}
@media(max-width: 1760px){
    .index_num li .p1{
        font-size:120px;
        line-height:100px;
    }
}
@media(max-width: 1600px){
    .index_service{
        /*margin-top:95px;*/
        padding: 60px 200px 75px 98px;
    }
    .index_service .text .txt{
        font-size: 15px;
        margin: 40px 0 45px;
    }
    .index_shuju{
        padding: 100px 0 0 98px;
    }
    .index_num{
        padding: 55px 100px 100px 100px;
    }
    .index_num li .p1{
        padding-right: 25px;
        font-size:110px;
        line-height:90px;
    }
    .index_num li .p2{
        font-size:14px;
    }
    .index_hz{
        padding: 100px 85px 100px 98px;
    }
    .index_hz_scroll{
        width:63%;
    }
    #index_hz_scroll .swiper-slide{
        padding:20px 40px;
    }
    .index_hz .text .txt {
        margin: 40px 0 50px;
        font-size: 15px;
    }
    #index_hz_scroll .swiper-pagination .swiper-pagination-bullet{
        width:50px;
    }
}
@media(max-width: 1280px){
    .index_service {
        /*margin-top:75px;*/
        padding: 60px 75px;
    }
    .index_service .text .txt {
        font-size: 14px;
        margin: 30px 0 35px;
    }
    .index_num {
        padding: 55px 75px 75px 75px;
    }
    .index_num li .p1{
        font-size:90px;
        line-height:70px;
        padding-right:15px;
    }
    .index_num li .p2{
        font-size:13px;
    }
    .index_shuju {
        padding: 75px 0 0 75px;
    }
    .index_hz {
        padding: 75px 75px 75px 75px;
    }
    #index_hz_scroll .swiper-slide{
        padding:15px 25px;
    }
    .index_hz .text .txt {
        margin: 25px 0 35px;
        font-size: 14px;
    }
}
@media(max-width: 1199px){
    .index_service {
        /*margin-top:60px;*/
        padding: 60px 50px;
    }
    .index_shuju {
        padding: 75px 0 0 50px;
    }
    .index_num li .p1{
        font-size:62px;
    }
    .index_hz {
        padding: 75px 50px;
    }
    #index_hz_scroll .swiper-slide {
        padding: 10px 20px;
    }
    #index_hz_scroll .swiper-slide .img {
        height: 70px;
        line-height: 70px;
    }
    #index_hz_scroll .swiper-slide img{
        max-height:70px;
    }
    .index_hz .text .txt {
        margin: 15px 0 20px;
    }
}
@media(max-width: 991px){
    .index_service{
        padding: 60px 20px;
    }
    .index_shuju {
        padding: 75px 0 0 20px;
    }
    .index_num li .p1 {
        font-size: 52px;
        line-height: 60px;
        padding-right: 10px;
    }
    .index_num li .p2 {
        font-size: 12px;
        margin-left: 6px;
    }
    .index_hz {
        padding: 75px 20px;
    }    
}
@media(max-width: 820px){
    .index_service {
        /*padding: 55px 20px 0;*/
    }
    .index_shuju {
        padding: 55px 0 0 20px;
    }
    .index_num {
        padding: 40px 20px 55px 20px;
    }
    .index_hz {
        padding: 55px 20px;
    }
    #index_hz_scroll{
        padding-bottom:40px;
    }
    #index_hz_scroll .swiper-pagination .swiper-pagination-bullet{
        width:35px;
    }
}
@media(max-width: 640px){
    .index_service {
        /*margin-top:40px;*/
        padding: 40px 20px;
    }
   .index_service .img{
       width:100%;
   }
   .index_service .text{
       width:100%;
       margin-top:20px;
   }
    .index_service .text .txt {
        margin: 15px 0 20px;
    }
    .index_shuju {
        padding: 40px 0 0 20px;
    }
    .index_num{
        padding:20px 0 40px;
    }
    .index_num li{
        flex-wrap:wrap;
    }
    .index_num li .p1{
        font-size:36px;
        padding-right:0;
        line-height:1;
        border-right:none;
    }
    .index_num li .p2{
        width:100%;
        margin-top:10px;
    }
    .index_hz {
        padding: 40px 20px;
    }
    .index_hz_scroll{
        width:100%;
    }
    #index_hz_scroll .swiper-slide{
        padding: 6px 15px;
    }
    #index_hz_scroll .swiper-slide .img{
        height: 50px;
        line-height: 50px;
    }
    #index_hz_scroll .swiper-slide img{
        max-height: 50px;
    }
    .index_hz .text{
        width:100%;
        margin-top:30px;
    }
    #index_hz_scroll{
        padding-bottom:30px;
    }
}


/*页面底部*/
footer{
    background:#005581;
    padding:135px 290px 40px 288px;
    border-left: 1px solid rgba(255, 255, 255, .3);
}
.foot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.f_nav{
    width: 35%;
}
.f_nav p{
    margin-bottom: 5px;
}
.f_nav p:last-child{
    margin-bottom: 0;
}
.f_nav a{
    font-size:26px;
    color: #8aa7b6;
    font-family: "puhui85";
}
.f_nav a:hover{
    color: #fff;
}
.foot_r{
    width: 56%;
}
.message2{

}
.message2 h2{
    font-size:30px;
    color: #ffffff;
    line-height: 1.6;
}
.message2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top:15px;
}
.message2 ul li{
    margin-bottom: 18px;
    width:calc(50% - 12px);
}
.message2 ul li input{
    display: block;
    width: 100%;
    font-size:16px;
    color: #808080;
    line-height: 48px;
    padding:0 21px;
    border:none;
    outline: none;
}
.message2 button{
    display: flex;
    justify-content: space-between;
    align-items:center;
    width: 100%;
    height: 52px;
    background:#fff;
    font-size:26px;
    color: #005581;
    font-family: "puhui65";
    padding:0 21px;
    border:1px solid #005581;
    outline: none;    
}
.message2 button i{
    display: block;
    width: 13px;
    height: 23px;
    background:url(../images/mess_btn.png) no-repeat center;
}
.message2 button:hover{
    background:#005581;
    color: #fff;
    border:1px solid #fff;
}
.message2 button:hover i{
    background:url(../images/mess_btn_h.png) no-repeat center;
}
.f_contact{
    font-size:20px;
    color:#ffffff;
    opacity: .6;
    margin-top:45px;
    line-height: 1.7;
}
.copyright {
    padding:130px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size:16px;
    color:rgba(255,255,255,.6);
}
.copyright a{
    font-size:16px;
    color:rgba(255,255,255,.6);  
}
.copyright a:hover{
    color:rgba(255,255,255,1);
}
@media(max-width: 1600px){
    footer {
        padding: 100px 200px 40px 98px;
    }
    .f_nav a{
        font-size:22px;
    }
    .message2 h2{
        font-size:24px;
    }
    .message2 ul li input{
        font-size:15px;
        padding:0 16px;
    }
    .message2 button {
        font-size: 22px;
        padding: 0 16px;
    }
    .f_contact{
        font-size:17px;
    }
    .copyright{
        padding: 80px 0 0;
        font-size:14px;
    }
    .copyright a{
        font-size:14px;
    }
}
@media(max-width: 1280px){
    footer {
        padding: 75px 75px 40px 75px;
    }
    .foot_r {
        width: 60%;
    }
    .message2 button{
        font-size:20px;
    }
}
@media(max-width: 1199px){
    footer {
        padding: 50px 50px 40px 50px;
    }
    .f_nav {
        width: 30%;
    }
    .foot_r {
        width: 65%;
    }
    .message2 button{
        font-size:18px;
    } 
    .copyright {
        padding: 55px 0 0;
    }
}
@media(max-width: 991px){
    footer{
        padding: 40px 20px 20px;
        border-left:none;
    }
    .f_contact {
        font-size: 16px;
        margin-top:35px;
    }
    .copyright {
        padding: 35px 0 0;
    }
}
@media(max-width: 820px){
    /*footer {*/
    /*    padding: 40px 55px 40px 75px;*/
    /*}*/
}
@media(max-width: 640px){
    footer{
        padding: 30px 20px 15px;
    } 
    .f_nav{
        display:none;
    }
    .foot_r{
        width:100%;
    }
    .message2 h2{
        font-size:20px;
    }
    .message2 ul li{
        width:100%;
        margin-bottom:12px;
    }
    .message2 ul li input {
        font-size: 14px;
        padding: 0 16px;
        line-height:40px;
    }
    .message2 button {
        font-size: 16px;
        padding: 0 12px;
        height: 45px;
    }
    .f_contact {
        margin-top: 25px;
    }
    .copyright {
        padding: 15px 0 0;
    }
}


/*----- 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;
    overflow: hidden;
}
.n_banner img {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: block;
    transition: 5s;
    animation: mymove4 5s
}
@keyframes mymove4 {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.03)
    }

    100% {
        transform: scale(1)
    }
}

@-webkit-keyframes mymove4 {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.03)
    }

    100% {
        transform: scale(1)
    }
}
.n_banner video{
    display: block;
    width: 100%;
    height: auto;
}

.sitemp{
    margin:50px 0 30px;
    display: none;
}
.sitemp .site{
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 10px;
}
.sitemp .site,.sitemp .site a{
    font-size:16px;
    color: #333;
}
@media(max-width: 1600px){

}
@media(max-width: 1280px){

}
@media(max-width: 1024px){
   
}
@media(max-width: 991px){

}
@media(max-width: 820px){
   
}
@media(max-width: 767px){
  
}



/*产品*/
.pd1,.pd2,.pd3,.n_case,.n_about{
    max-width: 1920px;
    margin:0 auto;
}
.pd1{
    display: flex;
    flex-wrap:wrap;
    padding:72px 0 0;
}
.pd1_l{
    padding:0 98px;
    width: 28%;
}
.pd1_l .p1{
    font-size:26px;
    color: #005581;
    font-family: "puhui65";
    line-height: 1;
}
.pd1_l .index_t1 h2{
    margin:35px 0 98px;
}
a.download_a{
    display: flex;
    align-items:center;
    justify-content: center;
    width: 150px;
    height: 32px;
    background:#005581;
    color: #fff;
    font-size:16px;
}
a.download_a i{
    margin-right: 12px;
}
.pd1_r{
    width: 72%;
    padding-top:68px;
}
.pd1_r .txt{
    padding-right: 98px;
    font-size:18px;
    color: #333333;
    line-height: 1.8;
}
.pd1_r .img1{
    margin-top:55px;
}

.pd2{
    padding-left: 28%;
    margin-top:88px;
    padding-bottom: 55px;
}
.p_table{
    margin-top:35px;
}
.p_table tr{
    border-bottom: 1px solid #e0e0e0;
}
.p_table tr td{
    padding:18px 0 8px;
}
.p_table tr td,.p_table tr td p{
    font-size:18px;
    font-family: "puhui65";
    color: #333;
    line-height: 1.4;
}
.p_table tr td:nth-child(1){
    width: 40%;    
}
.p_table tr td:nth-child(2){
    width: 60%;
}
.p_table tr td:last-child,.p_table tr td:last-child p{
    font-family: "puhui45";    
}
.p_scroll{
    position: relative;
    margin-top:125px;
    padding-right: 120px;
}
.p_scroll p{
    font-size:26px;
    color: #000000;
    font-family: "puhui65";
    line-height: 1.6;
    margin-top:30px;
}
.p_scroll a{
    position: absolute;
    left:20px;
    top:18px;
    z-index: 99;
    display: none;
}
#p_scroll1 .swiper-slide img{
    width: 100%;
}
#p_scroll1 .swiper-button-prev,#p_scroll1 .swiper-button-next{
    width: 115px;
    height: 78px;
    top:0;
    margin-top:0;
}
#p_scroll1 .swiper-button-prev{
    background:url(../images/left2.png) no-repeat center #e5e5e5;
    left:calc(100% - 230px);
}
/*#p_scroll1 .swiper-button-prev:hover{*/
/*    background:url(../images/left2.png) no-repeat center #e5e5e5;    */
/*}*/
#p_scroll1 .swiper-button-next{
    background:url(../images/right2.png) no-repeat center #fff;
    right:0; 
}
/*#p_scroll1 .swiper-button-next:hover{*/
/*    background:url(../images/right2.png) no-repeat center #e5e5e5;    */
/*}*/
.pd3{
    padding:140px 120px 180px 28%;
}
.pd3_c{

}
.pd3_list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 98px;
    margin-top:62px;
}
.pd3_list li{
    text-align: center;
    font-size:18px;
    color: #333333;
    line-height: 1.4;
}
.pd3_list li .img{
}
.pd3_list li .img img{
    border-radius: 100%;
}
.pd3_list li p.p1{
    margin:30px 0 5px;
}
.pd3_list li p.p2{
    font-family: "puhui85";    
}
@media(max-width: 1600px){
    .pd1_l{
        padding:0 60px 0 98px;
        width: 28%;
    }
    a.download_a{
        width:120px;
        font-size:15px;
    }
    a.download_a i {
        margin-right: 8px;
    }
    .pd1_r {
        padding-top: 50px;
    }
    .pd1_r .txt{
        font-size:15px;
    }
    .pd1_r .img1 {
        margin-top: 30px;
    }
    .p_table tr td, .p_table tr td p{
        font-size:16px;
    }
    .p_scroll{
        margin-top:90px;
        padding-right:90px;
    }
    #p_scroll1 .swiper-button-prev, #p_scroll1 .swiper-button-next {
        width: 90px;
        height: 60px;
    }
    #p_scroll1 .swiper-button-prev {
        left: calc(100% - 180px);
    }
    .p_scroll a{
        width:50px;
        left: 12px;
        top: 12px;
    }
    .p_scroll p {
        font-size: 22px;
        margin-top: 15px;
    }
    .pd3 {
        padding: 90px 90px 90px 28%;
    }
}
@media(max-width: 1280px){
    .pd1_l{
        padding:0 50px 0 75px;
    }
    .pd1_r .txt,.p_scroll{
        padding-right: 75px;
    }
    .pd3 {
        padding: 55px 75px 75px 28%;
    } 
    .pd3_list {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 50px;
        margin-top: 65px;
    }
}
@media(max-width: 1199px){
    .pd1_l{
        width: 100%;
        padding: 0 50px 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items:center;
    } 
    .pd1_l .p1{
        width:100%;
        margin-bottom:25px;
    }
    .pd1_l .index_t1 h2 {
        margin: 0px 0 0px;
    }
    .pd1_r{
        width:100%;
    }
    .pd1_r .txt {
        padding-right: 50px;
    }
    .pd2 {
        padding-left: 50px;
        margin-top: 55px;
    }
    .p_scroll {
        margin-top: 55px;
        padding-right:50px;
    }
    .pd3 {
        padding: 55px 50px;
    }
    .pd3_list{
        margin-top:50px;
    }
    .pd3_list li{
        font-size:16px;
    }
    .pd3_list li p.p1 {
        margin: 15px 0 5px;
    }
}
@media(max-width: 1024px){
   
}
@media(max-width: 991px){
    .pd1{
        padding:55px 50px 0;
    }
    .pd1_l,.pd1_r .txt{
        padding-right:0;
    }
    .pd2 {
        padding-left: 50px;
        padding-right: 50px;
        margin-top: 55px;
    }
    .pd3 {
        padding: 55px 50px;
    }
    .p_scroll{
        padding-right:0;
    }
}
@media(max-width: 820px){
   
}
@media(max-width: 640px){
    .pd1 {
        padding: 40px 20px 0;
    }  
    .pd1_l .p1{
        font-size:24px;
    }
    .pd1_r {
        padding-top: 25px;
    }
    .pd1_r .img1 {
        margin-top: 15px;
    }
    .pd2 {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 40px;
    }
    .p_table {
        margin-top: 20px;
    }
    .p_table tr td, .p_table tr td p {
        font-size: 14px;
    }
    .p_table tr td {
        padding: 12px 0 6px;
    }
    .p_scroll {
        margin-top: 35px;
    }
    #p_scroll1 .swiper-button-prev, #p_scroll1 .swiper-button-next {
        width: 60px;
        height: 40px;
    }
    #p_scroll1 .swiper-button-prev{
        background:url(../images/left2.png) no-repeat center #fff;
        left:calc(100% - 120px);
        background-size:15px;
    }
    #p_scroll1 .swiper-button-prev:hover{
        background:url(../images/left2.png) no-repeat center #e5e5e5; 
        background-size:15px;
    }
    #p_scroll1 .swiper-button-next{
        background:url(../images/right2.png) no-repeat center #fff;
        background-size:15px;
    }
    #p_scroll1 .swiper-button-next:hover{
        background:url(../images/right2.png) no-repeat center #e5e5e5;   
        background-size:15px;
    }
    .p_scroll a {
        width: 40px;
        left: 10px;
        top: 10px;
    }
    .p_scroll p {
        font-size: 20px;
        margin-top: 12px;
    }
    .pd3 {
        padding: 40px 20px;
    }
    .pd3_list {
        margin-top: 35px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    .pd3_list li .img{
        padding:0 25px;
    }
}


/*项目案例*/
.n_case{
    padding-left: 98px;
    padding-top:90px;
    padding-bottom: 90px;
}
.n_top{
    display: flex;
    flex-wrap: wrap;
    align-items:flex-end;
    padding-bottom: 115px;
}
.sort{
    display: flex;
    flex-wrap: wrap;
    margin-left: 16%;
    padding-bottom: 8px;
}
.sort li{
    margin-right: 56px;
}
.sort li:last-child{
    margin-right: 0px;
}
.sort li a{
    display: block;
    padding:0 6px;
    position: relative;
    font-size: 18px;
    color: #808080;
    line-height: 1;
    padding-bottom: 15px;
}
.sort li a:after{
    content:'';
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    height: 2px;
    background:#005581;
    opacity: 0;
}
.sort li.cur a,.sort li a:hover{
    color: #005581;
}
.sort li.cur a:after,.sort li a:hover:after{
    opacity: 1;
}
.wall {
  display: block;
  position: relative;
}
.wall-column{
  display: block;
  position: relative;
  width: calc(33.33% - 34px);
  float: left;
  /*padding: 0 12px;*/
  box-sizing: border-box;
  margin-right: 51px;
}
.wall-column:last-child{
    margin-right: 0;
}
.case_list{
  /*display: grid;*/
  /*grid-template-columns: repeat(3, 1fr);*/
  /*grid-gap: 51px;*/
  /*grid-auto-rows: 51px; */
  width: 100%;
  /*min-height: 1500px;*/
}
.case_list .item{
  
  display: block;
  margin: 0 0 70px 0;
  transition: all 220ms;
}
.case_list .item .img{
    position: relative;
}
.case_list .item .img img{
    width: 100%;
}
.case_list .item .img:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    background: rgba(0,85,127,.6);
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.case_list .item h3 a{
    display: block;
    font-size:26px;
    color: #000000;
    font-family: "puhui65";
    line-height: 1.4;
    margin:16px 0 35px;
}
.case_list .item:hover .img img{
    transform: scale(1.1);
}
.case_list .item:hover .img:before{
    opacity: 1;
}
.case_list .item:hover h3 a{
    color: #005581;
}
.case_detail{
    padding-left:98px;
}
.sitemap{
    padding-top:50px;
}
.site{
    font-size:26px;
    color: #005581;
    line-height: 1.6;
}
.site a{
    font-size:26px;
    color: #005581;
    font-family: "puhui65";
}
.n_arrow{
    margin:0 15px;
}
.case_detail1{
    padding:110px 98px 0 190px;
}
/*.c_table tr td,.c_table tr td p{
    line-height: 1;
}*/
.p_table table{
    width:100%;
}
.c_table table{
    width:100%;
}
.c_table tr td:nth-child(1){
    align-content: end;
    width:17%;
}
.c_table tr td:nth-child(2){
    width:83%;
}
.c_table p{
    font-size: 18px;
    color: #333;
}
.case_detail_imgs{
    padding:136px 98px 184px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.case_detail_imgs li{
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.case_detail_imgs li:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    background: rgba(0,85,127,.6);
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.case_detail_imgs li a{
    position: relative;
}
.case_detail_imgs li img{
    width:100%;
    transition: all 0.6s ease-out;
}
.case_detail_imgs li:hover:before{
    opacity: 1;
}
.case_detail_imgs li:hover img{
    transform: scale(1.1);
}
@media(max-width: 1760px){
    .site,.site a{
        font-size:20px;
    }
    .n_arrow {
        margin: 0 10px;
    }
    .sort{
        margin-left:12%;
    }
    .sort li {
        margin-right: 45px;
    }
}
@media(max-width: 1600px){
    .n_top {
        padding-bottom: 90px;
    }
    .sort{
        margin-left:10%;
    }
    .sort li {
        margin-right: 35px;
    }
    .case_list {
        gap: 30px;
    }
    .wall-column{
      width: calc(33.33% - 20px);
      margin-right: 30px;
    }
    .case_list .item{
        margin-bottom:50px;
    }
    .case_list .item h3 a{
        font-size:20px;
        margin: 10px 0 20px;
    }
    .site,.site a{
        font-size:16px;
    }
    .case_detail1 {
        padding: 90px 98px 0 100px;
    }
    .case_detail_imgs {
        padding: 90px 98px 90px 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
    .c_table p{
        font-size:16px;
    }
}
@media(max-width: 1280px){
    .n_case{
        padding-left: 75px;
        padding-top:75px;
        padding-bottom: 75px;
    }
    .n_top {
        padding-bottom: 60px;
    }
    .sort{
        padding-bottom:0;
    }
    .sort li {
        margin-right: 25px;
    }
    .sort li a{
        font-size:18px;
    }
    .case_list .item h3 a{
        font-size:18px;
    }
    .case_detail{
        padding-left:75px;
    }
    .site,.site a{
        font-size:15px;
    }
    .case_detail1 {
        padding: 75px 75px 0 75px;
    }
    .case_detail_imgs {
        padding: 75px 75px 75px 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
    }
    .c_table p{
        font-size:15px;
    }
}
@media(max-width: 1199px){
    .n_case{
        padding-left: 50px;
        padding-top:55px;
        padding-bottom: 55px;
    }
    .n_top {
        padding-bottom: 40px;
    }
    .sort li {
        margin-right: 15px;
    }
    .sort li a{
        font-size:16px;
        padding-bottom:12px;
    }
    .wall-column{
      width: calc(33.33% - 14px);
      margin-right: 21px;
    }
    .case_list .item{
        margin-bottom:35px;
    }
    .case_list .item h3 a{
        font-size:16px;
    }
}
@media(max-width: 1024px){
    .case_detail{
        padding-left:55px;
    }
    .site,.site a{
        font-size:14px;
    }
    .case_detail1 {
        padding: 55px 55px 0 55px;
    }
    .case_detail_imgs {
        padding: 55px 55px 55px 0;
    }
}
@media(max-width: 991px){
    .n_case {
        padding: 55px 20px;
    }
    .sort{
        width:100%;
        margin-top:30px;
        margin-left:0;
    }
    .case_detail{
        padding:0px 20px;
    }
    .case_detail1 {
        padding: 55px 0px 0 0px;
    }
    .case_detail_imgs {
        padding: 55px 0px 55px 0;
    }
}
@media(max-width: 820px){
    .n_top {
        padding-bottom: 30px;
    }
   .sort li{
       margin-bottom:5px;
       margin-right:12px;
   }
    .sort li a{
        padding:0 0 10px;
    }
}
@media(max-width: 767px){
    /*.case_list{*/
    /*    column-count: 2;*/
    /*    column-gap: 15px;*/
    /*    margin-bottom: 30px;*/
    /*    min-height: 1500px;*/
    /*}*/
    /*.case_list .item{*/
    /*    cursor: pointer;*/
        /* 避免子元素被分割 */
    /*    page-break-inside: avoid;*/
        /*避免子元素被分割 方式2*/
        /*-webkit-column-break-inside: avoid;*/
    /*    display: flex;*/
        /*display: flex!important;*/
    /*    margin-bottom: 30px;*/
    /*    height:100%;*/
    
        /*align-items: center;*/
    /*    box-sizing: border-box;*/
    /*    flex-wrap: wrap;*/
    /*    max-width: 266px;*/
    /*    align-items: center;*/
    /*    cursor: default;*/
    /*}  */
}
@media (max-width: 640px) {
    .n_top {
        padding-bottom: 15px;
    }
    .sort li{
        margin-bottom:10px;
    }
    .wall-column{
      width: calc(50% - 10px);
      margin-right: 20px;
    }
    .case_list .item{
        margin-bottom:30px;
    }
    .case_detail1 {
        padding: 40px 0px 0 0px;
    }
    .case_detail_imgs {
        padding: 30px 0px 40px 0;
    }
}
@media (max-width: 480px) {
    .wall-column {
        width: 100%;
        float: none;
        margin-right:0;
    }
    .case_list .item{
        margin-bottom:20px;
    }
    .case_detail_imgs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    .c_table p{
        font-size:14px;
    }
}

/*关于我们*/
.n_about{
    padding-left: 204px;
}
.about1{
    padding: 160px 120px 0 0;
}
.about1_c{
    margin-top:48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about1_c .text{
    font-size:18px;
    color: #333333;
    width:42%;
}
.about1_c .text2{
    line-height: 1.8;
}
.about1_c .text p{
    margin-bottom: 25px;
}
.about1_c .text p:last-child{
    margin-bottom: 0;
}
.about2{
    padding: 180px 120px 0 0;
    position: relative;
}
.about2 .index_t1{
    position: absolute;
    top:190px;
    left:0px;
    z-index: 999;
}
.about2_c{
    width:100%;
    max-width: 1219px;
    padding:0 15px 0 170px;
}
.about2_c_list{
    position: relative;
}
.about2_list{

}
.about2_list dl{
    display: flex;
/*    align-items:center;*/
    position: absolute;
    z-index: 9;
}
.about2_list dl dt{
    position: relative;
    z-index: 8;
    cursor: pointer;
}
.about2_list dl dd{
    width:111px;
    height: 25px;
    background:url(../images/maodian_p.png) no-repeat center;
    font-size:16px;
    color: #ffffff;
    line-height: 25px;
    text-align: center;
    padding-left: 12px;
    margin-left: -3px;
    position: relative;
    z-index: 9;
    display: none;
}
.about2_list dl:hover dd{
    display: block;
}
.about2_list dl:nth-child(1){
    top: 25.8%;
    left: 62.7%;
}
.about2_list dl:nth-child(2){
    top: 34.8%;
    left: 81%;
}
.about2_list dl:nth-child(3){
    top: 47.8%;
    left: 79.8%;
}
.about2_list dl:nth-child(4){
    top: 31.5%;
    left: 64.8%;
}
.about2_list dl:nth-child(5){
    top: 18.8%;
    left: 53.8%;
}
.about2_list dl:nth-child(6){
    top: 14.8%;
    left: 50.8%;
}
.about2_list dl:nth-child(7){
    top: 12%;
    left: 49%;
}
.about2_list dl:nth-child(8){
    top: 18%;
    left: 48.4%;
}
.about2_list dl:nth-child(9){
    top: 12%;
    left: 45.5%;
}
.about2_list dl:nth-child(10){
    top: 13%;
    left: 47%;
}
.about2_list dl:nth-child(11){
    top: 20%;
    left: 47%;
}
.about3{
    padding: 108px 0px 202px;
}
.about3_list{
    margin-top:55px;
}
.about3_list li{
    height: 97px;
    border-bottom:2px solid #005581;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items:center;
    padding:30px 120px 27px 40px;
    transition: all 0.4s ease-out;
    cursor: pointer;
    overflow: hidden;
}
.about3_list li .text{
    width:47%;
}
.about3_list li .text h3{
    font-size:32px;
    color: #1a1a1a;
    font-family: "puhui65";
    line-height: 1.4;
}
.about3_list li .text .txt{
    font-size:18px;
    color: #1a1a1a;
/*    line-height: 1.8;*/
    visibility: hidden;
    height: 0;
    overflow: hidden;
}
.about3_list li .img{
    display: none;
    width:53%;
    max-width: 710px;
}
.about3_btn{
    width: 21px;
    height: 21px;
    background:url(../images/add.png) no-repeat center;
    background-size: contain;
}
.about3_list li.on{
    background:#005581;
    height: auto;
}
.about3_list li.on .text h3{
    color: #fff;
}
.about3_list li.on .text .txt{
    color: #fff;
    visibility: visible;
    height: auto;
    margin-top:184px;
}
.about3_list li.on .img{
    display: block;    
}
.about3_list li.on  .about3_btn{
    display: none;
}
@media(max-width: 1600px){
    .n_about{
        padding-left: 98px;
    }
    .about1{
        padding: 90px 90px 0 0;
    }
    .about1_c .text{
        font-size:15px;
        width:45%;
    }
    .about2 {
        padding: 90px 90px 0 0;
    }   
    .about2 .index_t1{
        top:90px;
    }
    .about2_list dl dd{
        font-size:15px;
    }
    .about3 {
        padding: 90px 0px 120px;
    }
    .about3_list li{
        padding: 20px 90px 20px 20px;
    }
    .about3_list li .text h3{
        font-size:24px;
    }
    .about3_list li .text .txt{
        font-size:15px;
    }
    .about3_list li.on .text .txt{
        margin-top:100px;
    }
}
@media(max-width: 1280px){
    .n_about{
        padding-left: 75px;
    }
    .about1,.about2{
        padding: 75px 75px 0 0;
    }
    .about1_c{
        margin-top:30px;
    }
    .about1_c .text{
        font-size:14px;
        width:47%;
    }
    .about2 .index_t1{
        top:75px;
    }
    .about3{
        padding: 75px 0px;
    }
    .about3_list{
        margin-top: 40px;
    }
    .about3_list li{
        padding: 15px 75px 15px 15px;
    }
    .about3_list li .text h3{
        font-size: 20px;
    }
    .about3_btn{
        width:15px;
        height:15px;
    }
}
@media(max-width: 1024px){
    .n_about{
        padding-left: 55px;
    }
    .about1,.about2{
        padding: 55px 55px 0 0;
    } 
    .about2 .index_t1{
        top:55px;
    }
    .about2_list dl dt{
        width:15px;
    }
    .about2_list dl dd{
        display:none!important;
        opacity:0;
    }
    .about3 {
        padding: 55px 0px;
    }
    .about3_list li {
        padding: 15px 55px 15px 15px;
    }
}
@media(max-width: 991px){
    .n_about{
        padding: 0 20px;
    }
    .about1,.about2{
        padding: 55px 0px 0 0;
    }
    .about2_c {
        width: 100%;
        max-width: 1219px;
        padding: 0 0px;
    }
    .about3_list li {
        padding: 15px 15px;
    }
    .about3_list li .text h3 {
        font-size: 18px;
    }
}
@media(max-width: 820px){
   
}
@media(max-width: 640px){
    .about1,.about2{
        padding: 40px 0px 0 0;
    } 
    .about1_c{
        margin-top: 20px;
    }
    .about1_c .text{
        width:100%;
    }
    .about1_c .text p{
        margin-bottom:0;
    }
    .about2 .index_t1{
        top:40px;
    }
    .about2_list dl dt {
        width: 12px;
    }
    .about3 {
        padding: 40px 0px;
    }
    .about3_list {
        margin-top: 20px;
    }
    .about3_list li {
        padding: 15px 12px;
        height:auto;
    }
    .about3_list li .text h3 {
        font-size: 16px;
    }
    .about3_list li .text{
        width:calc(100% - 30px);
    }
    .about3_list li.on .text .txt{
        margin-top:20px;
    }
    .about3_list li .img{
        width:100%;
        margin-top:25px;
    }

}


/*技术与服务*/
.n_jsfw{
    padding-left: 98px;
}
.zs1{
    padding:122px 0 0;
    position: relative;
}
.dw{
    position: absolute;
    top:-60px;
    left:0;
}
.n_jsfw .index_t1{
    padding:0 0 60px 106px;
}
.zs_list{

}
.zs_list li{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    background:#f5f5f5;
    padding:63px 240px 73px 106px;
    margin-bottom: 45px;
}
.zs_list li:last-child{
    margin-bottom: 0;
}
.zs_list li .img{
    width:24%;
}
.zs_list li .text{
    width:76%;
    padding-left: 30px;
}
.zs_list li .text h3{
    font-size:36px;
    color: #005581;
    line-height: 1.4;
    margin-bottom: 15px;
}
.zs_list li .text .txt{
    font-size:18px;
    color: #333333;
    line-height: 1.8;
}
.zs_list li .text .txt strong{
    font-size:24px;
    color: #1a1a1a;
    font-family: "puhui85";
    display: block;
    margin-top:15px;
}
.zs2{
    padding:178px 0 190px;
    position: relative;
}
@media(max-width: 1600px){
    .zs1 {
        padding: 90px 0 0;
    }
    .n_jsfw .index_t1 {
        padding: 0 0 50px 98px;
    }
    .zs_list li {
        padding: 60px 90px;
        margin-bottom: 30px;
    }
    .zs_list li .text h3{
        font-size:26px;
    }
    .zs_list li .text .txt{
        font-size:15px;
    }
    .zs_list li .text .txt strong{
        font-size:18px;
    }
    .zs2 {
        padding: 90px 0 ;
    }
}
@media(max-width: 1280px){
    .n_jsfw{
        padding-left:75px;
    }
    .zs1 {
        padding: 75px 0 0;
    }
    .n_jsfw .index_t1 {
        padding: 0 0 40px 75px;
    }
    .zs_list li {
        padding: 40px 75px;
        margin-bottom: 25px;
    }
    .zs_list li .text h3{
        font-size:22px;
    }
    .zs_list li .text .txt{
        font-size:14px;
    }
    .zs_list li .text .txt strong{
        font-size:16px;
    }
    .zs2 {
        padding: 75px 0;
    }
}
@media(max-width: 1024px){
    .n_jsfw{
        padding-left:55px;
    }
    .n_jsfw .index_t1 {
        padding: 0 0 30px 55px;
    }
    .zs_list li {
        padding: 35px 55px;
    }   
}
@media(max-width: 991px){
    .n_jsfw{
        padding:0 20px;
    }
}
@media(max-width: 820px){
    .zs1 {
        padding: 55px 0 0;
    }
    .zs_list li {
        padding: 30px 55px;
    } 
    .zs_list li .text h3{
        font-size:20px;
        margin-bottom:10px;
    }
    .zs2 {
        padding: 55px 0 ;
    }
}
@media(max-width: 640px){
    .zs1 {
        padding: 40px 0 0;
    }
    .n_jsfw .index_t1 {
        padding: 0 0 20px 20px;
    }
    .zs_list li {
        padding: 20px 15px;
        margin-bottom:15px;
        align-items:flex-start;
    } 
    .zs_list li .text{
        padding-left:16px;
    }
    .zs_list li .text h3{
        font-size:17px;
        margin-bottom:6px;
    }
    .zs_list li .text .txt{
        font-size:13px;
    }
    .zs_list li .text .txt strong{
        font-size:15px;
        margin-top:8px;
    }
    .zs2 {
        padding: 40px 0 ;
    }  
}
@media(max-width: 460px){
    .zs_list li .img{
        width:100%;
    }
    .zs_list li .img img{
        max-width:82px;
    }
    .zs_list li .text{
        width:100%;
        padding-top:15px;
        padding-left:0;
    }
}

/*新闻*/
.n_news{
    padding:154px 120px 120px 98px;
}
.n_news .index_t1{
    padding-bottom: 38px;
    margin-bottom: 50px;
    border-bottom: 1px solid #cccccc;
}
.news_list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 62px 25px;
}
.news_list li{

}
.news_list li a{
    display: block;
}
.news_list li .img{
    position: relative;
}
.news_list li .img:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    background: rgba(0,85,127,.6);
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.news_list li .text{

}
.news_list li .text h3{
    font-size:30px;
    color: #1a1a1a;
    line-height: 1.4;
    padding:25px 0 5px;
}
.news_list li .text .date{
    font-size:16px;
    color: #333333;
}
.news_list li .info{
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;    
    font-size:18px;
    color: #333333;
    margin:20px 0 25px;
    line-height: 1.8;
}
.news_list li:hover .img:before{
    opacity: 1;
}
.news_list li:hover .img img{
    transform: scale(1.1);
}
.news_list li:hover .text h3{
    color: #005581;
}

.news_detail{
    padding: 0 0 70px;
    max-width: 1200px;
    margin:0 auto;
}
h1.title{
    font-size: 28px;
    color: #333;
    text-align: center;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 5px;
}
.info_title{
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-bottom: 1em;
    border-bottom:1px dashed #dcdcdc;
    margin-bottom: 30px;
    font-weight: normal;
}
.news_detail .content{
    font-size: 16px;
    margin-bottom: 25px;
}
@media(max-width: 1600px){
    .n_news {
        padding: 90px 90px 90px 90px;
    }
    .n_news .index_t1 {
        padding-bottom: 20px;
        margin-bottom: 35px;
    }
    .news_list {
        gap: 50px 20px;
    }
    .news_list li .text h3 {
        font-size: 22px;
        padding: 15px 0 5px;
    }
    .news_list li .text .date{
        font-size:14px;
    }
    .news_list li .info {
        font-size: 15px;
        margin: 10px 0 20px;
    }
    h1.title{
        font-size:24px;
    }
    .info_title {
        margin-bottom: 20px;
    }
    .news_detail .content{
        font-size: 15px;
    }
}
@media(max-width: 1280px){
    .n_news {
        padding: 75px;
    }
    .n_news .index_t1 {
        padding-bottom: 12px;
        margin-bottom: 25px;
    }
    .news_list li .text h3 {
        font-size: 18px;
    }
    .news_list li .info {
        font-size: 14px;
        margin: 5px 0 15px;
    }
    .news_detail{
        padding:0 0 0px;
    }
}
@media(max-width: 1099px){
    .n_news {
        padding: 75px 55px;
    }
    .info_title{
        padding-bottom: 10px;
        margin-bottom:15px;
    }
}
@media(max-width: 991px){
    .n_news {
        padding: 75px 20px;
    } 
}
@media(max-width: 820px){
    .n_news {
        padding: 55px 20px;
    }
    .n_news .index_t1 {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .news_list{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 15px;
    }
    h1.title{
        font-size: 22px;
    }
}
@media(max-width: 640px){
    .n_news {
        padding: 40px 20px;
    }
    h1.title{
        font-size:18px;
    }
    .info_title {
        padding-bottom: 5px;
        margin-bottom: 10px;
    }     
}
@media(max-width: 460px){
    .news_list{
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 25px 0px;
    }
    .news_list li .info{
        font-size:13px;
    }
}

/*联系我们*/
.n_contact{
    /*padding:0 0 0 98px;*/
}
.contact1{
    padding:126px 190px 95px;
    background:#f5f5f5;
}
.contact1_list{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    /*margin:70px 0 140px;*/
    margin-top:70px;
}
.contact1_list dl{

}
.contact1_list dt{
    font-size:20px;
    color: #808080;
}
.contact1_list dd{
    font-size:30px;
    color: #1a1a1a;
    font-family: "puhui65";
    line-height: 1.2;
    margin-top:5px;
}
.contact_share{
    display:flex;
    align-items:center;
    display: none;
}
.contact_share p{
    font-size:20px;
    color: #1a1a1a;
    font-family: "puhui85";
}
.contact_share li{
    margin-left: 26px;
    position: relative;
    cursor: pointer;
}
.share_code{
    position: absolute;
    top:35px;
    left:50%;
    margin-left: -50px;
    width:100px;
    background:#fff;
    text-align: center;
}
.job1{
    padding: 120px 190px 126px;
}
.job_list{
    margin-top:32px;
    border-bottom: 2px solid #005581;
}
.job_list li{

}
.job_t{
    display: flex;
    align-items:center;
    justify-content: space-between;
    line-height: 1;
    padding:0 30px 0 20px;
    height: 76px;
    position: relative;
    cursor: pointer;
}
.job_t:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 2px;
    background:#005581;
    z-index: 1;
}
.job_t p{
    font-size:20px;
    color: #010101;
    font-family: "puhui85";
    width:calc(56% - 16px);
    position: relative;
    z-index: 9;
}
.job_t p:nth-child(1){
    font-size:30px;
    width:44%;
}
.job_btn{
    width:16px;
    height:16px;
    background:url(../images/jia1.png) no-repeat center;
    background-size: contain;
    position: relative;
    z-index: 9;
    transition: all 0.4s ease-out;
}
.job_cont{
    padding:10px 48px 28px 185px;
    display: none;
}
.job_cont .text{

}
.job_cont .text h3{
    font-size:20px;
    color:#333333;
}
.job_cont .text .txt{
    font-size:14px;
    color: #333333;
    margin-top:8px;
}
.job_cont .text:nth-child(2){
    margin-top:30px;
}
.job_contact{
    display: flex;
    justify-content: flex-end;
    align-items:center;
    margin-top:60px;
}
.job_contact p{
    font-size:20px;
    color: #333333;
    font-family: "puhui85";
    margin-right: 65px;
}
.job_list li .job_t:hover:before{
    height: 100%;
}
.job_list li .job_t:hover p{
    color: #fff
}
.job_list li .job_t:hover .job_btn{
    background:url(../images/jia1_h.png) no-repeat center;
}
.job_list li.on .job_btn{
    transform: rotate(45deg);
}
.job_list li.on .job_cont{
    display: block;
}
@media(max-width: 1820px){
    .contact1_list dd{
        font-size: 26px;
    }
}
@media(max-width: 1600px){
    .contact1,.job1{
        padding: 90px 90px;
    }
    .contact1_list {
        /*margin: 50px 0 100px;*/
        margin-top:50px;
    }
    .contact1_list dt,.contact_share p{
        font-size:16px;
    }
    .contact1_list dd{
        font-size:20px;
    }
    .job_t p:nth-child(1){
        font-size:22px;
    }
    .job_t p,.job_cont .text h3,.job_contact p{
        font-size:17px;
    }
    .job_cont {
        padding: 10px 25px 28px 140px;
    }
    .job_contact{
        margin-top:40px;
    }
    .job_contact p{
        margin-right:50px;
    }
}
@media(max-width: 1280px){
    .n_contact{
        /*padding: 0 0 0 75px;*/
    }
    .contact1,.job1{
        padding: 75px;
    }
    .contact1_list dd{
        font-size:18px;
    }
    .contact_share li{
        margin-left:20px;
    }
    .contact_share li img{
        max-width:20px;
        max-height:20px;
    }
    .job_cont {
        padding: 10px 25px 28px 25px;
    }
}
@media(max-width: 1024px){
    .n_contact{
        /*padding: 0 0 0 55px;*/
    }
    .contact1,.job1{
        padding: 75px 50px;
    }   
}
@media(max-width: 991px){
    .n_contact {
        padding: 0 0px;
    }
    .contact1,.job1{
        padding: 75px 20px;
    } 
}
@media(max-width: 820px){
    .contact1,.job1{
        padding: 55px 20px;
    } 
    .contact1_list {
        /*margin: 40px 0 80px;*/
        margin-top:40px;
    }
    .job_t p:nth-child(1) {
        font-size: 20px;
    }
}
@media(max-width: 640px){
    .contact1,.job1{
        padding: 40px 20px;
    } 
    .contact1_list {
        /*margin: 30px 0 0px;*/
        margin-top:30px;
    }
    .contact1_list dl{
        width:100%;
        margin-bottom:15px;
    }
    .contact1_list dl:last-child{
        margin-bottom:0;
    }
    .contact1_list dt, .contact_share p {
        font-size: 15px;
    }
    .contact1_list dd {
        font-size: 17px;
    }
    .contact_share{
        display:none;
    }
    .job_t{
        height:auto;
        padding:15px 10px;
    }
    .job_t p{
        width:calc(100% - 30px);
    }
    .job_t p:nth-child(2){
        display:none;
    }
    .job_t p:nth-child(1) {
        font-size: 17px;
    }
    .job_btn{
        width:12px;
        height:12px;
    }
    .job_t p, .job_cont .text h3, .job_contact p {
        font-size: 15px;
    }
    .job_cont .text .txt{
        font-size:13px;
    }
    .job_cont {
        padding: 10px 10px;
    }
    .job_cont .text:nth-child(2) {
        margin-top: 20px;
    }
    .job_contact {
        margin-top: 25px;
    }
    .job_contact p {
        margin-right: 30px;
    }
}

/*留言*/
.message{
    padding:105px 0 110px;
    background:#f0f3f7;
}
.message h2{
    font-size:40px;
    color: #1a1a1a;
    line-height: 1.3;
    font-family: "puhui65";
    margin-bottom: 40px;
}
.message ul{
    display: flex;
    flex-wrap: wrap;
}
.message ul li{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 25px;
}
.message ul li:nth-child(2n){
    margin-right: 0;
}
.message ul li:last-child{
    margin-right: 0;
    width: 100%;
    margin-bottom:0;
}
.message ul li input{
    width: 100%;
    background:#fff;
    padding:0 25px;
    font-size:18px;
    color: #808080;
    line-height: 60px;
    height: 60px;
    border:none;
    outline: none;
    border-radius: 4px;
    display: block;
}
.message ul li textarea{
    width: 100%;
    background:#fff;
    padding:0 25px;
    font-size:18px;
    color: #808080;
    line-height: 60px;
    height: 180px;
    border:none;
    outline: none;
    border-radius: 4px;
    display: block;
    font-family: "puhui55";
}
.msgbtn{
    width: 160px;
    height: 60px;
    font-size:18px;
    color: #fff;
    background:#009fe8;
    border-radius: 6px;
    display: flex;
    align-items:center;
    justify-content: center;
    margin:50px auto 0;
    border:none;
    outline: none;
    cursor: pointer;
}
@media(max-width: 1600px){
    .message h2{
        font-size:32px;
    }
    .message ul li{
        margin-bottom: 15px;
    }
    .message ul li input {
        padding: 0px 20px;
        font-size: 16px;
        line-height: 50px;
        height: 50px;
    }
    .message ul li textarea{
        padding: 0px 20px;
        font-size: 16px;
        line-height: 50px;
        height: 200px;        
    }
}
@media(max-width: 1280px){
    .message{
        padding:75px 0;
    }
}
@media(max-width: 1099px){   
    .message h2{
        font-size:28px;
    }
}
@media(max-width: 991px){
    .message ul li input {
        padding: 0px 15px;
        font-size: 14px;
        line-height: 40px;
        height: 40px;
    }
    .message ul li textarea{
        padding: 0px 15px;
        font-size: 14px;
        line-height: 40px;
        height: 160px;        
    }   
}
@media(max-width: 820px){
    .message{
        padding:50px 0;
    } 
}
@media(max-width: 640px){
    .message{
        padding:35px 0;
    }
    .message h2{
        font-size:24px;
        margin-bottom: 25px;
    }
    .message ul li{
        margin-bottom: 10px;
    }
    .message ul li textarea{
        height: 120px;
    }
    .msgbtn {
        width: 120px;
        height: 50px;
        font-size: 17px;
        margin: 30px auto 0;
    }
}
@media(max-width: 460px){
    .message ul li{
        width: 100%;
        margin-right: 0;
    }
}







h3.tag{
    font-size: 14px;
    color: #666;
    font-weight: normal;
}
.page{
    font-size: 14px;
    color: #666;    
}
.page a{
    font-size: 14px;
    color: #666;    
}
.online-server{
    position: fixed;
    right: 18px;
    bottom: 10%;
    width: 48px;
    background-color: #ffffff;
    border-radius: 24px;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 999;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 13%);
}
.online-server a{
    display: block;
    width: 100%;
    height: 48px;
    border-radius: 50%;
    color: #000;
    position: relative;
    cursor: pointer;
}
.online-server a p{
    position: absolute;
    width: 200px;
    left:-205px;
    top:4px;
    line-height: 40px;
    padding:0 10px 0 40px;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    border-radius: 6px;
    background: url(../images/r_i1_h2.png) no-repeat 10px center #00a2e7;
    display: none;
}
.online-server a:hover p{
    opacity: 1;
    display: block;
}
.online-server a:nth-child(1){
    background: url(../images/r_i1.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(1):hover{
    background: url(../images/r_i1_h.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(2){
    background: url(../images/r_i2.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(2):hover{
    background: url(../images/r_i2_h.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(3){
    background: url(../images/r_i3.png) no-repeat center;
    background-size: 27px;
}
.online-server a:nth-child(3):hover{
    background: url(../images/r_i3_h.png) no-repeat center;
    background-size: 27px;
}
@media(max-width: 1600px){
    .online-server{
        right:5px;
    }
}
@media(max-width: 991px){
    .online-server{
        display: none!important;
    }
}
@media(max-width: 768px){

}

.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:#2b70bb;color:#fff; text-decoration:none;border:#efefef 1px solid;}
.pageController .currPage {background-color: #2b70bb;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: #005581;
    vertical-align: middle;
    border: 1px solid #005581; 
    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;
    background: #0067ac;
    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;
}
.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;
    }
}
@media(max-width:640px){
    .m_f_fixed{
        display: flex;
    }
}


/*客服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(../images/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 {
    display: none;
    position: fixed;
    top: 50%;
    right: 5px;
    z-index: 905;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#c-right-fixed a {
    position: relative;
    right: 0;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    width: 60px;
    height: 60px;
    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: 60px;
    height: 60px;
    flex: 0 0 60px;
    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: #ffaf04;
    background: #ffaf04;
}

#c-right-fixed a:last-child .c-wrap {
    color: #fff;
    border-color: #ffaf04;
    background: #ffaf04;
}

#c-right-fixed a:first-child:hover .c-box {
    width: 250px;
    height: 60px;
    -webkit-transform: translateX(-180px);
    transform: translateX(-180px);
    overflow: none;
    background: #ffaf04;
}

#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("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.onlineService_form {
    background-image: url("../images/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("../images/fastPhone.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.onlineService_whatsApp {
    background-image: url("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -139px;
}

.onlineService_email {
    background-image: url("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -111px;
}

.onlineService_skype {
    background-image: url("../images/Fast.png");
    background-repeat: no-repeat;
    background-position: 0 -28px;
}

.onlineService_wechat {
    background-image: url("../images/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;
    }
}