/*head*/
header{
    position: fixed;
    top:0;
    left:0;
    background:#fff;
    z-index: 999999;
    width: 100%;
    box-shadow: 0 0 10px #ccc;
    transition: all 0.4s ease-out;
}
header:hover{
    box-shadow: none;
}
#c-header.c-head-hide.c-head-move{
    top:-100px;
    /*z-index: -99;*/
    /*opacity: 0;*/
}
.head{
    position: relative;
}
.wrap{
    width: 92%;
    max-width: 1772px;
    margin: 0 auto;
}
.head .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
/*    width: 30%;*/
}
.logo .img2{
    display: none;
}
.head_r{
    max-width: 75%;
    display: flex;
    align-items:center;
    justify-content: space-between;
    align-items:center;
}
.head_r a.h_btn{
    display: flex;
}
a.h_btn {
    display: inline-block;
    position: relative;
    width: 99px;
    height: 35px;
    line-height: 35px;
    padding-left: 22px;
    background: #f0f0f0;
    font-size: 16px;
    color: #0000eb;
    font-family: "HarmonyOS_SansSC_Medium";
    margin-left: 22px;
    /* 新增1：限制伪元素超出部分隐藏 */
    /*overflow: hidden;*/
    /* 新增2：消除inline-block基线对齐的像素偏移 */
    /*vertical-align: top;*/
}
a.h_btn i.i1{
    content:'';
    position: absolute;
    left:-21px;
    top:0; 
    width:35px;
    height:35px;
}
a.h_btn i.i1 img{
    display: block;
}
a.h_btn:before{
    content:'';
    position: absolute;
    left:-21px;
    top:0;
    background:url(../images/h_btn.png) no-repeat center;
    background-size: 100%;
    width:35px;
    height:35px;
    z-index: 8;
    overflow: hidden;
    display: none;
}
a.h_btn:after{
    content:'';
    position: absolute;
    left:0;
    top:0;
    width:0;
    height: 100%;
    background:#0000eb;
    z-index: 7;
    transition: all 0.4s ease-out;
    overflow: hidden;
}


/* 桌面端 hover 效果（仅屏幕宽度 > 480px 生效） */
@media (min-width: 992px) {
    a.h_btn:hover{
        color: #fff;
    }
    a.h_btn:hover:after{
        width:100%;
    }
}

a.h_btn span{
    position: relative;
    z-index: 10;
}
.nav{
    display: flex;
}
.nav li{
/*    position: relative;*/
    margin-right: 60px;
    transition:0.5s;
}
.nav li:last-child{
    margin-right: 0;
}
.nav li a.a1{
    font-family: "HarmonyOS_SansSC_Medium";
}
.nav li.nav_more .a1{
    padding-right: 21px;
    background:url(../images/arrow.png) no-repeat right center;
}
.nav li.nav_more:hover .a1{
    background:url(../images/arrow_h.png) no-repeat right center;
}
.nav li a{
    display: block;
    color: #1a1a1a;
    text-align: center;
    line-height: 68px;
}
.nav li a.a1{
    font-size: 16px;  
    color: #47525e;
}
.nav li:hover a.a1{
    color: #0000eb;
}
.nav li .b_nav{
    display: none;
    position: absolute;
    top:68px;
    left:0%;
    z-index: 999;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 6px 10px #eee;
}
.b_nav_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items:center;
    height: 98px;
}
.nav li .b_nav a{
    font-size: 16px;
    color: #47525e;  
    line-height: 2em;  
    margin-right: 76px;
}
.nav li .b_nav a:last-child{
    margin-right: 0;
}
.nav li .b_nav a:hover{
    color: #0000eb;
    background-color: none;
}
.h_zw{
    height: 68px;
}
#index_banner{
    height: calc(100vh - 68px);
}
#index_banner .bg{
    display: block;
    width:100%;
    height: 100%;
    opacity: 0;
}
#index_banner #swiper-slide1 .bg{
    opacity: 1;
}
#index_banner #swiper-slide2 .banner_text .img1,#index_banner #swiper-slide3 .banner_text .img1,#index_banner #swiper-slide4 .banner_text .img1{
    height: 37px!important;
}
.m_video{
    display: none;
}
#index_banner .bg img{
    width:100%;
    opacity: 0;
}
#index_banner .bg2{
    display: none;
}
.banner_down{
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform:translateX(-50%);
    text-align: center;
    z-index: 9;
    /*animation: down 1.5s infinite ease-in-out;*/
    width: 24px;
    height: 53px;
}
.banner_down_line{
    width: 2px;
    height: 39px;
    background: #0000eb;
    margin:0 auto -9px;
    animation: height 2s infinite ease-in-out;
}
.banner_down img{
    position: relative;
    top:-9px;
}
@keyframes down {
  0% {
    bottom: 55px;
    opacity:1;
  }
  50% {
    bottom: 35px;
    opacity:0;
  }
  100% {
    bottom: 55px;
    opacity:1;
  }
}
@keyframes height {
  0% {
    height:20px;
  }
  50% {
    height: 39px;
  }
  100% {
    height: 20px;
  }
}
.banner_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    display: flex;
    flex-direction: column;
    justify-content: center;*/
    z-index: 99;
    padding:12% 172px 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
#index_banner .swiper-slide{
    position: relative;
    overflow: hidden;
}
/*.image_wrap{*/
/*    transform: translateX(-100%);*/
/*    transition: all 0.3s ease-out;*/
/*}*/
/*#index_banner .swiper-slide-active .image_wrap{*/
/*    transform: none;   */
/*    transform: translateX(0%);*/
/*}*/

/* ========== 核心：视频从左往右渐进样式 ========== */
/*.image_wrap {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -200%;*/
/*    width: 100%; */
/*    height: 100%;*/
/*    opacity: 0;*/
/*    z-index: 2;*/
/*    overflow: hidden;*/

/*    transition: all 0.8s linear;*/
/*    display: block !important;*/
/*    z-index: -9;*/
/*}*/
/*#index_banner .swiper-slide .bg{*/
/*    left: -200%;*/
/*    transition: all 0.8s linear;*/
/*}*/
/*#index_banner .swiper-slide-active .bg,#index_banner .swiper-slide-active .image_wrap{*/
/*    width: 100%;*/
/*    opacity: 1; */
/*    left:0;*/
/*    z-index: 9;*/
/*}*/

#index_banner .swiper-slide-active .banner_text{
    opacity: 1;
}
.banner_text .img1{
    height: 37px;
}
#index_banner .swiper-slide-active .banner_text .img1{
    height: 37px;
}
.banner_text .txt{
    font-size:53px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1.5;
    margin: 15px 0 75px;
}
/* 单行文字容器（核心） */
.banner_text .txt-line {
    display: block; /* 确保每行独立 */
    height: 0;       /* 初始隐藏 */
    overflow: hidden;
    transition: height 0.6s ease-out; /* 单行展开动画 */
    white-space: nowrap; /* 防止单行折行 */
}
/* 单行展开状态 */
.banner_text .txt-line.show {
    height: 43px; 
}
/* 按钮容器初始隐藏，同步展开 */
.banner_text .banner_btn-wrap {
    height: 0;
    overflow: hidden;
    transition: height 0.6s ease-out;
}
.banner_text .banner_btn-wrap.show,#index_banner .swiper-slide-active .banner_btn-wrap{
    /* 按钮高度，按需调整 */
    height: 61px!important; 
}
#index_banner .swiper-slide-active .banner_text .txt p{
    height: auto;
}
a.banner_btn{
    display: inline-block;
    position: relative;
    width:215px;
    height: 61px;
    line-height: 61px;
    padding-left: 45px;
    background:#ffffff;
    font-size:24px;
    color: #0000eb;
    font-family: "HarmonyOS_SansSC_Medium";
    margin-left: 37px;
}
a.banner_btn:before{
    content:'';
    position: absolute;
    left:-36px;
    top:0;
    background:url(../images/banner_btn.png) no-repeat left center;
    background-size: 61px;
    width:61px;
    height:61px;
    z-index: 8;
}
a.banner_btn:after{
    content:'';
    position: absolute;
    left:0;
    top:0;
    width:0;
    height: 100%;
    background:#0000eb;
    z-index: 7;
    transition: all 0.4s ease-out;
}

a.banner_btn span{
    position: relative;
    z-index: 10;
    font-family: "HarmonyOS_SansSC_Medium";
}
/* 桌面端 hover 效果（仅屏幕宽度 > 480px 生效） */
@media (min-width: 992px) {
    a.banner_btn:hover{
        color: #fff;
    }
    a.banner_btn:hover:after{
        width:100%;
    }
}
.banner_arrow{
    position: absolute;
    top: 0;
    left: calc(172px + 215px + 37px + 76px);
    height: 100%;
    padding-top: 12%;
}
.banner_arrow_zw{
    height: 284px;
}
.banner_arrow .cont{
    height: 61px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner_arrow_top{
    position: relative;
    display: flex;
    align-items:center;    
}
.banner_arrow .cont .swiper-button-prev,.banner_arrow .cont .swiper-button-next{
    position: relative;
    width:19px;
    height: 31px;   
    margin-top:0px; 
    top:0;
}
.banner_arrow .cont .swiper-button-prev{
    background:url(../images/left1.png) no-repeat center;
    left:0;
}
.banner_arrow .cont .swiper-button-prev:hover{
    background:url(../images/right1_h.png) no-repeat center;
    transform: rotate(180deg);    
}
.banner_arrow .cont .swiper-button-next{
    background:url(../images/left1.png) no-repeat center;
    transform: rotate(180deg);
    left:45px;  
}
.banner_arrow .cont .swiper-button-next:hover{
    background:url(../images/right1_h.png) no-repeat center;
    transform: rotate(0deg);    
}
.banner_arrow .cont .swiper-pagination{
    position: relative;
    bottom:-10px;
}
.banner_arrow .cont .swiper-pagination .swiper-pagination-bullet{
    width:69px;
    height: 4px;
    border-radius: 0;
    background:#fff;
    opacity: 1;
    position: relative;
    margin-right: 12px;
    line-height: 1;
}
.banner_arrow .cont .swiper-pagination .swiper-pagination-bullet:after{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:0;
    height: 100%;
    background:#0000eb;
/*    transition: all 4s ease-out 0;*/
}
.banner_arrow .cont .swiper-pagination .swiper-pagination-bullet-active:after{
  animation: width 5.01s ease-in-out;
}
.banner_arrow .cont .swiper-pagination .swiper-pagination-bullet:nth-child(3).swiper-pagination-bullet-active:after{
  animation: width 6.01s ease-in-out;
}
.banner_arrow .cont .swiper-pagination .swiper-pagination-bullet:nth-child(4).swiper-pagination-bullet-active:after{
  animation: width 7.01s ease-in-out;
}
@keyframes width {
  0% {
    width:0%;
  }
  100% {
    width:100%;
  }
}
/*搜索*/
.show{
    display: block!important;
}
.search{
    height: 100%;
    margin-left: 36px;
}
.ss{
    cursor: pointer;
    width: 20px;
    height: 21px;
    background: url(../images/search3.svg) no-repeat center;
    background-size: 20px;
}
.search:hover .ss,.isshow .ss{
   background: url(../images/search3_h.svg) no-repeat center; 
   background-size: 20px;
}
.ss img{
    display: none;
}
.h_search{
    position: fixed;
    left: 0;
    top: 68px;
    width: 100%;
    height: 196px;
    border-top: 1px solid #dfdede;
    z-index: 99;
    background: #fff;
    display: none;
    transition: top 0.36s;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
/*        box-shadow: 0px 6px 10px #eee;*/
}
.h_search_c{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1213px;
    width: 100%;
}
.s_close{
    position: absolute;
    top: -42px;
    right: -42px;  
    cursor: pointer;
}
.s_close .img2{
    display: none;
}
.s_close:hover .img1{
    display: none;
}
.s_close:hover .img2{
    display: inline-block;
}
#formsearch{
    width: 100%;
    /*max-width: 1213px;*/

    border: 1px solid #9fa0a0;
    display: flex;
    align-items: center;
}
#keyword{
    outline: none;
    border:none;
    width: calc(100% - 60px);
    height: 60px;
    font-size: 16px;
    color: #727171;
    line-height: 36px;
    padding: 12px 22px;
    font-family: "HarmonyOS_SansSC_Light";
}
#s_btn{
    width: 60px;
    height: 60px;
    background: url(../images/search3.svg) no-repeat center #fff;
    font-size:0;
    color: #0000eb;
    line-height: 40px;
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    background-size: 20px;
}
#s_btn:hover{
    background: url(../images/search3_h.svg) no-repeat center #fff; 
    background-size: 20px;
}
.formsearch2 #s_btn:hover{
    background: url(../images/search3.svg) no-repeat center #fff; 
    background-size: 20px;    
}
.search:hover #formsearch{
    display: flex;
}
.search_ts{
    position: absolute;
    top:42px;
    left:0;
    width: 100%;
    background: #0000eb;
    border: 1px solid #dbdbdb;
    display: none;
    z-index: 999;
}
.search_ts ul{
    color: #333333;
    display: block;
    outline: none;
    cursor: default;
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #0000eb;    
}
.search_ts ul li a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding:0 10px;
    line-height: 1.2;
    height: 30px;
    font-size:12px;
    color: #333;
    cursor: pointer;
}
.search_ts ul li a:hover{
    background: #fafafa;
}
.tag_total{
    font-size: 20px;
    color: #333;
}
.search_intro{
    
}
.search_intro h2{
    font-size: 53px;
    color: #000000;
    line-height: 1;
    margin-bottom: 15px;
}
.search_intro p{
    font-size: 24px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
    line-height: 1.8;
}
@media(max-width:1600px){
    /*.nav li a.a1{*/
    /*    font-size: 18px;    */
    /*}*/
    .h_search{
        top:80px;
    }  
    .banner_text{
        padding: 10% 100px 0;
    }
    .banner_arrow {
        left: calc(100px + 215px + 37px + 76px);
        padding-top: 10%;
    }
    a.banner_btn{
        width:185px;
        font-size:20px;
    }
}
@media(max-width:1280px){
    .nav li{
        margin-right:35px;
    }
    .nav li a.a1{
        font-size: 16px;    
    }
    #keyword{
        font-size:14px;
    }
    #s_btn{
        font-size:12px;
    }
    .banner_text {
        padding: 10% 4% 0;
    }
    .banner_text .txt{
        font-size:42px;
    }
    .banner_arrow_zw {
        height: 253px;
    }
    .banner_arrow {
        left: calc(4% + 185px + 37px + 76px);
    }
}
@media(max-width:1199px){
    .banner_text .txt{
        font-size: 32px;
    }

    .banner_arrow_zw{
        height:223px;
    }

}
@media(max-width:1130px){
    /*.search{*/
    /*    margin-right:10px;*/
    /*}*/
    #formsearch{
        padding:3px 8px;
    }
    .ss img{
        width:16px;
    }
}
@media(max-width:1080px){
    .wrap{
        width: 94%;
    }
    .banner_down{
    /*    display:none;*/
    bottom:55px;
    }
}
@media(max-width:991px){
    header{
        box-shadow:none;
    }
    /*.search{*/
    /*    margin-right:10px;*/
    /*}*/
    .head .wrap{
        height:68px;
    }
    .logo .img1{
        display:none;
    }
    .logo .img2{
        display:inline-block;
        max-height:48px;
    }
    .h_search{
        top:68px;
    }
    #keyword{
        line-height: 36px;
        padding: 7px 12px;        
    }
    #s_btn {
        width: 50px;
        height: 50px;
    }
    .ss{
        margin-right:15px;
    }
    .nav{
        display:none;
    }
    #s_btn{
        font-size:12px;
    }
    #index_banner{
        height:auto;
    }
    #index_banner .bg img{
        opacity: 1;
    }
    #index_banner .bg1{
        display: none;
    }
    #index_banner .bg2{
        display: block;
    }
    .banner_text{
        /*display: flex;*/
        /*flex-direction: column;*/
        /*justify-content: center;  */
        padding:15% 3% 0;
    }
    .banner_arrow_zw{
        display:none;
    }
    .banner_arrow_top{
        display:none;
    }
    .banner_arrow .cont{
        width:100%;
    }
    .banner_arrow{
        width:100%;
        left: 0%;
        padding:0;
    }
    .banner_arrow .cont{
        height:auto;
    }
    .banner_arrow .cont .swiper-pagination{
        position:absolute;
        bottom:20px;
        width:100%;
    }
    .banner_arrow .cont .swiper-pagination .swiper-pagination-bullet{
        width:50px;
    } 
    /* 移除移动端浏览器默认的点击高亮（可选） */
    a.h_btn {
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
    }
    a.h_btn:active{
        color: #fff;
    }
    a.h_btn:active:after{
        width:100%;
    }
}
@media(max-width:820px){
    .banner_text .txt{
        font-size: 28px;
    }
    .search{
        display:none;
    }
    a.h_btn{
        margin-right:20px;
    }
    .banner_text .img1{
        height:auto;
    }
    a.banner_btn {
        width: 175px;
        font-size: 18px;
    }
    .banner_down{
        display:none;
    }
    .search_intro h2{
        font-size:42px;
    }
    .search_intro p{
        font-size:20px;
    }
}
@media(max-width:767px){
    .logo .img2{
        max-height:38px;
    }
    #index_banner #swiper-slide2 .banner_text .img1,#index_banner #swiper-slide3 .banner_text .img1,#index_banner #swiper-slide4 .banner_text .img1{
        height: 24px!important;
    }
    .banner_text .img1{
        height:24px;
    }
    .banner_text .img1 img{
        max-height:24px;
    }
    .banner_text .txt{
        font-size: 24px;
        margin: 15px 0 45px;
    }
    .h_search{
        height: auto;
        padding:15px 0;
    }
    .h_search_c {
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
        width: 100%;
    }
    #formsearch {
        width: 88%;
        margin: 0 auto;
    }
    #s_btn{
        line-height: 32px;
        height: 32px;
    }
    a.h_btn{
        font-size:15px;
        margin-right:12px;
    }
    .pc_video{
        display: none;
    }
    .m_video{
        display: block;
    }
    .search_intro h2{
        font-size:36px;
    }
    .search_intro p{
        font-size:18px;
    }
}
@media(max-width:640px){
    .h_search{
        top:60px;
    }
    .banner_text{
        padding:12% 3% 0;
    }
    /*.banner_text .img1 img{*/
    /*    max-height:22px;*/
    /*}*/
    .banner_text .txt {
        margin: 15px 0 30px;
        font-size:22px;
    }
    a.banner_btn {
        width: 150px;
        font-size: 16px;
        height: 50px;
        line-height: 50px;
        padding-left: 35px;
        margin-left: 31px;
    }
    a.banner_btn:before{
        width:50px;
        height:50px;
        left:-30px;
        background:url(../images/banner_btn.png) no-repeat left center;
        background-size: 50px;
    }
    .banner_text .banner_btn-wrap.show {
        height: 50px!important; 
    }
}


.index1{
    padding:97px 0 140px;
}
.index_t1{
    font-size:40px;
    color: #000000;
    line-height: 1;
    font-family: "HarmonyOS_SansSC_Regular";
}
.index_t1 span{
    font-weight: bold;
    margin-right: 38px;
    font-family: "HarmonyOS_SansSC_Bold";
}
.index1_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top:68px;
}
.index1_c .text{
    width:46.8%;
}
.index1_c .text dl{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    margin-bottom: 67px;
}
.index1_c .text dl:last-child{
    margin-bottom: 0;
}
.index1_c .text dl dt{
    width:200px;
    padding-right: 15px;
    line-height: 1;
    font-size: 27px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
}
.index1_c .text dl dd{
    width:calc(100% - 200px);
    line-height: 2;
    font-size:18px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
}
.index1_c .text2{
    width:43.6%;
}
.num_list1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.num_list1 li{
    text-align: center;
    margin-right: 80px;
}
.num_list1 li:last-child{
    margin-right: 0;
}
.num_list1 li .p1{
    color: #002fdb;
    font-family: "Airal";
    font-weight: bold;
    line-height: 1;
}
.num_list1 li .p1 span{
    font-size:74px;
    display: none;
}
.num_list1 li .p1 sub{
    font-size:26px;
    margin-left:16px;
    display: none;
}
.num_list1 li .p1 img{
    max-width: 150px;
}
.num_list1 li .p2{
    margin-top:5px;
    font-size:16px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
}
.index_btn1 a{
    display: inline-block;
    position: relative;
    width:184px;
    height: 52px;
    line-height: 52px;
    padding-left: 38px;
    background:#ffffff;
    font-size:20px;
    color: #0000eb;
    font-family: "HarmonyOS_SansSC_Medium";
    margin-left: 32px;
  /* 新增：清除移动端点击高亮 */
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  /* 新增：确保可聚焦 */
  outline: none;
}
.index_btn1 a:before{
    content:'';
    position: absolute;
    left:-32px;
    top:0;
    background:url(../images/index_btn1.png) no-repeat center;
    background-size: 52px;
    width:52px;
    height:52px;
    z-index: 8;
}
.index_btn1 a:after{
    content:'';
    position: absolute;
    left:0;
    top:0;
    width:0;
    height: 100%;
    background:#0000eb;
    z-index: 7;
    transition: all 0.4s ease-out;

}
/*.index_btn1 a:hover{*/
/*    color: #fff;*/
/*}*/
/*.index_btn1 a:hover:after{*/
/*    width:100%;*/
/*}*/
/* 桌面端 hover 保留 */
@media (hover: hover) and (pointer: fine) {
  .index_btn1 a:hover {
    color: #fff;
  }
  .index_btn1 a:hover:after {
    width: 100%;
  }
}

/* 移动端 触摸/点击 状态 */
@media (hover: none) and (pointer: coarse) {
  /* 触摸按下时触发 */
  .index_btn1 a:active,
  .index_btn1 a:focus {
    color: #fff;
  }
  .index_btn1 a:active:after,
  .index_btn1 a:focus:after {
    width: 100%;
  }
  /* 防止触摸后焦点残留导致状态卡住 */
  .index_btn1 a:not(:active):not(:focus):after {
    width: 0;
  }
  .index_btn1 a:not(:active):not(:focus) {
    color: #0000eb;
  }
}
.index_btn1 a span{
    position: relative;
    z-index: 10;
}
.index1_btn{
    margin-top:106px;
}
.index1_btn a{
    background:#f0f0f0;    
}
@media(max-width: 1600px){
    /*.index_t1{*/
    /*    font-size:32px;*/
    /*}*/
    .index1_c .text dl dt{
        font-size:24px;
    }
    .index1_c .text dl dd{
        font-size:16px;
    }
    .num_list1 li{
        margin-right:55px;
    }
}
@media(max-width: 1280px){
    .index1 {
        padding: 90px 0 100px;
    }
    .index_t1{
        font-size: 32px;
    }
    .index_t1 span{
        margin-right:30px;
    }
    .index1_c .text dl dt{
        font-size:20px;
        width:165px;
    }
    .index1_c .text dl dd{
        font-size:15px;
        width: calc(100% - 165px);
    }
    .index1_c .text2{
        width:48%;
    }
    .num_list1 li{
        margin-right:30px;
    }
    .num_list1 li img{
        max-width:120px;
    }
    .num_list1 li .p2{
        font-size:14px;
    }
    .index_btn1 a{
        width:165px;
        font-size:18px;
    }
}
@media(max-width: 1199px){
    .index_t1{
        font-size: 28px;
    }
    .index1_c .text dl{
        margin-bottom:40px;
    }
    .index1_c .text dl dt {
        font-size: 18px;
        width: 125px;
    }
    .index1_c .text dl dd{
        font-size:14px;
        width: calc(100% - 125px);
    }
    .num_list1 li .p1 img {
        max-width: 120px;
    }
    .index1_btn {
        margin-top: 85px;
    }
}
@media(max-width: 991px){
    .index_t1{
        font-size: 26px;
    }
    .index1_c .text,.index1_c .text2{
        width:100%;
    }
    .index1_c .text dl{
        margin-bottom:25px;
    }
    .index1_c .text2{
        margin-top:30px;
    }
    .index1_btn{
        display:flex;
        justify-content:center;
        margin-top:50px;
    }
}
@media(max-width: 820px){
    .index1 {
        padding: 75px 0;
    }
    .index_t1 span{
        margin-right:25px;
    }
    .index_btn1 a{
        font-size:16px;
    }
    .index1_c{
        margin-top:50px;
    }
}
@media(max-width: 767px){
    .index_t1{
        font-weight: bold;
    }
}
@media(max-width: 640px){
    .index1 {
        padding: 50px 0;
    }
    .index_t1 {
        font-size: 24px;
    }
    .index_t1 span{
        margin-right:20px;
    }
    .index1_c{
        margin-top:35px;
    }
    .index1_c .text dl dt,.index1_c .text dl dd{
        width:100%;
    }
    .index1_c .text dl dd{
        margin-top:10px;
    }
    .num_list1 li{
        margin-right:20px;
    }
    .num_list1 li .p1 img {
        max-width: 100px;
    }
    .num_list1 li .p2 {
        font-size: 12px;
    }
    .index_btn1 a{
        width: 150px;
        font-size: 16px;
        height: 50px;
        line-height: 50px;
        padding-left: 35px;
        margin-left: 31px;
    }
    .index_btn1 a:before{
        width:50px;
        height:50px;
        left:-30px;
        background:url(../images/index_btn1.png) no-repeat center;
        background-size: 50px;
    }
}
@media(max-width: 460px){
    /*.index_t1 {*/
    /*    font-size: 22px;*/
    /*}*/
    .index_t1 span{
        margin-right:12px;
    }
    .num_list1 li{
        margin-right:12px;
    }
    /*.num_list1 li .p1 img {*/
    /*    max-width: 70px;*/
    /*}*/
    .num_list1 li .p2 {
        font-size: 10px;
    }
}


.index2{
    padding:90px 0 96px;
    background:#f6f6f6;
}
.service_list{

}
.service_list .service_list1{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 71px;
}
.service_list .service_list2{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 76px;
}
.service_list dl{
    padding:56px 0;
    border-bottom: 1px solid #c2c2c2;
}
.service_list dl:last-child{
    border:none;
    padding-bottom: 0;
}
.service_list dl dt{
    font-size:27px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
}
.service_list dl dd{
    margin-top:40px;


}
.service_list dl dd a,.service_list li{
    box-shadow: 0 0 5px #eee;
    border-radius: 30px;
    background:#fff;
    overflow: hidden;
}
.service_list dl dd a .img,.service_list li .img{
    border-radius: 15px 15px 0 0;
}
.service_list dl dd a .img img{
    width: 100%;height: 100%;
}
.service_list dl dd a:hover .img img,.service_list li:hover .img img{
    transform: scale(1.1);
}
.service_list dl dd a .text{

    border-radius: 0 0 15px 15px;
    padding:27px 20px 27px 45px;
}
.service_list dl dd a .text h3{
    font-size:27px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1.2;
    margin-bottom: 15px;
}
.service_list dl dd a:hover .text h3{
    color: #0000eb;
}
.service_list dl dd a .text .txt{

}
.service_list dl dd a .text .txt p{
    padding-left: 22px;
    position: relative;
    font-size:16px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
}
.service_list dl dd a .text .txt p:before{
    content:'';
    position: absolute;
    left:0;
    top:12px;
    margin-top:0px;
    width:6px;
    height: 6px;
    background:#0000eb;
}
.service_list dl dd.service_list2 a{
    display: flex;
    flex-wrap: wrap;
}
.service_list dl dd.service_list2 a .img{
    border-radius: 15px 0 0 15px;
    width:50%;
}
.service_list dl dd.service_list2 a .img img{
    opacity: 0;
}
.service_list dl dd.service_list2 a .img .img2{
    display: none;
}
.service_list dl dd.service_list2 a .text{
    width:50%;
    border-radius: 0 15px 15px 0;
    padding:40px 45px;
}
.index2_btn{
    display: flex;
    justify-content: center;
    margin: 56px auto 0;
}
.service_list dl dd.service_list2 a .img img.img2{
    display: none;
}

@media(max-width: 1600px){
    .service_list .service_list1,.service_list .service_list2{
        gap:50px;
    }
    .service_list dl dt,.service_list dl dd a .text h3{
        font-size:24px;
    }
    .service_list dl dd a .text .txt p{
        font-size:15px;
    }
}
@media(max-width: 1280px){
    .service_list .service_list1,.service_list .service_list2{
        gap:30px;
    }
    .service_list dl dd a .text {
        padding: 22px 25px;
    }
    .service_list dl dt,.service_list dl dd a .text h3{
        font-size:20px;
    }
    .service_list dl dd a .text .txt p {
        font-size: 14px;
        padding-left:15px;
    }
}
@media(max-width: 1199px){

}
@media(max-width: 991px){
    .service_list .service_list1 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service_list .service_list2{
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
@media(max-width: 820px){
    .index2{
        padding:75px 0;
    }
    .service_list dl dd {
        margin-top: 30px;
    }
    .index2_btn {
        margin: 45px auto 0;
    }
    .service_list dl dd.service_list2 a .img img.img1{
        display: none;
    }
    .service_list dl dd.service_list2 a .img img.img2{
        display: block;
    }
}
@media(max-width: 640px){
    .index2{
        /*padding:55px 0;*/
    }
    .service_list dl {
        padding: 45px 0;
    }
    .service_list dl dd {
        margin-top: 20px;
    }
    .service_list .service_list1, .service_list .service_list2 {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }
    .service_list dl dt, .service_list dl dd a .text h3 {
        font-size: 18px;
    }
    .index2_btn {
        margin: 35px auto 0;
    }
    .service_list dl dd.service_list2 a .img{
        width:100%;
            border-radius: 15px 15px 0 0 ;
    }
    .service_list dl dd.service_list2 a .text{
        width:100%;
        padding: 22px 25px;
    }
    .service_list dl dd.service_list2 a .img .img1{
        display: none;
    }
    .service_list dl dd.service_list2 a .img .img2{
        display: inline-block;
    }
}


.index3{
    padding:100px 0 0;
}
.case_list1{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 66px; 
    margin-top:78px;   
}
.case_list1 li{

}
.case_list1 li .img img{
    width: 100%;
}
.case_list1 li:hover .img img{
    transform: scale(1.1);
}
.case_list1 li p{
    font-size:18px;
    color: #000000;
    display: flex;
    margin-top:12px;
    line-height: 1.5;
}
.case_list1 li p span{
    font-family: "HarmonyOS_SansSC_Medium";
}
.case_list1 li p font{
    font-family: "HarmonyOS_SansSC_Light";
    margin-left: 18px;
}
.case_list1 li:hover p{
    color: #0000eb;
}
.index3_btn{
    margin-top:72px;
    display: flex;
    justify-content: center;
}
.index3_btn a{
    background:#f0f0f0;    
}
.index4{
    padding:165px 0 207px;
}
.index4_c{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-top:78px;
}
.index4_l{
    width:27.7%;
    padding-right: 35px;
}
.index4_l{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.index4_l h3{
    font-size:40px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Regular";
    line-height: 1;
}
.index4_btn{
    margin-top:25px;
}
.index4_btn a{
    background:#f0f0f0;    
}
.index4_r{
    width:72.3%;
}
#index_hzh,#index_hzhb2 {
    width: 100%;
    overflow: hidden !important;
    position: relative;
    transform: translateZ(0); /* 硬件加速 */
    pointer-events: auto !important;
}
#index_hzhb .swiper-wrapper,#index_hzhb2 .swiper-wrapper {
    transition: none !important; /* 禁用所有过渡，保证冻结无延迟 */
    width: auto !important;
    
    display: flex; /* 确保slide横向排列 */
    will-change: transform; /* 告诉浏览器提前优化渲染 */
    backface-visibility: hidden; /* 减少重绘开销 */
    transform: translateZ(0); /* 硬件加速 */
}
#index_hzhb .swiper-slide,#index_hzhb2 .swiper-slide {
    flex-shrink: 0 !important;
    pointer-events: auto !important;
}
#index_hzhb .img .img2,#index_hzhb2 .img .img2{
    display: none;
}
#index_hzhb .img:hover .img1,#index_hzhb2 .img:hover .img1{
    display: none;
}
#index_hzhb .img:hover .img2,#index_hzhb2 .img:hover .img2{
    display: block;
}
/*#index_hzhb img{*/
/*    filter: grayscale(1);*/
/*    -webkit-filter: grayscale(1);*/
/*    -moz-filter: grayscale(1);*/
/*    -o-filter: grayscale(1);*/
/*    -ms-filter: grayscale(1);  */
/*    transition: all 0.4s ease-out;*/
/*    cursor: pointer;  */
/*    border-radius: 10px;*/
/*}*/
/*#index_hzhb img:hover{*/
/*    filter: grayscale(0);*/
/*    -webkit-filter: grayscale(0);*/
/*    -moz-filter: grayscale(0);*/
/*    -o-filter: grayscale(0);*/
/*    -ms-filter: grayscale(0);      */
/*}*/
@media(max-width: 1600px){
    .index4 {
        padding: 120px 0 150px;
    }
    .index4_l h3{
        font-size:32px;
    }
    .index4_c{
        margin-top:60px;
    }
    .case_list1 {
        gap: 50px;
        margin-top: 60px;
    }
}
@media(max-width: 1280px){
    .index4 {
        padding: 100px 0;
    }
    .index4_l h3{
        font-size:28px;
    }
    .index4_c{
        margin-top:50px;
    }
    .case_list1 {
        gap: 40px;
        margin-top: 50px;
    }
    .case_list1 li p{
        font-size:16px;
    }
    .case_list1 li p span{
        width:92px;
    }
    .case_list1 li p font{
        width:calc(100% - 92px - 18px);
    }
}
@media(max-width: 1199px){
    .index4_l h3 {
        font-size: 24px;
    }
}
@media(max-width: 991px){
    .case_list1 {
        gap: 30px;
    }
    .index4_r,.index4_l{
        width:100%;
    }
    .index4_l{
        text-align:center;
        margin-top:30px;
    }
    .index4_btn {
        margin-top: 40px;
    }
    .index4_l{
        padding-right:0;
    }
}
@media(max-width: 820px){
    .index3 {
        padding: 75px 0 0;
    }
    .index3_btn{
        margin-top:50px;
    }
    .index4 {
        padding: 75px 0;
    }
    .case_list1 li p{
        font-size:15px;
    }
}
@media(max-width: 767px){
    .index3 {
        /*padding: 55px 0 0;*/
    }
    .index3_btn{
        margin-top:35px;
    }
    .index4 {
        padding: 75px 0 55px;
    } 
    .index4_c {
        margin-top: 30px;
    }
    .case_list1 {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
    .case_list1 li p{
        margin-top:10px;
    }
    /*.case_list1 li p font{*/
    /*    font-size:13px;*/
    /*}*/
    .index4_btn a{
        padding-left:22px;
    }
}


.index5{
    padding:93px 0 81px;
    background:#f6f6f6;
}
.index5_c{
    margin-top:75px;
}
.index_news{

}
.news_list1{

}
.news_list1 li{
    box-shadow: 0 0 10px #eee;
    background:#fff;
        height: auto;
/*    width:calc(25% - 68px);
}
.news_list1 li.swiper-slide-active{
    width:calc(50% - 50.5px);*/
}
.news_list1 li .text{
    padding:18px 34px 20px;
    background:#fff;
}
.news_list_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items:center;
}
.news_list_top .news_list_date{
    font-size:35px;
    color: #727171;
    font-family: "HarmonyOS_SansSC_Light";
    line-height: 1;
}
.news_list_top .news_list_date span{
    font-size:16px;
    color: #727171;
    font-family: "HarmonyOS_SansSC_Regular";
    margin-left: 15px;
}
.news_list_top i{

}
.news_list1 li .text h3{
    font-size:20px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1.8;
    margin-top:15px;
}
.news_list1 li:hover .img img{
    transform: scale(1.1);
}
.news_list1 li:hover .text h3{
    color:#0000eb;
}

.index5_c_bottom{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top:55px;
}
.index5_btn{

}
.index5_arrow{
    position: relative;
    display: flex;
    align-items:center;
    width: calc(50% - 34px);
}
#index_news .swiper-button-prev,#index_news .swiper-button-next{
    width:52px;
    height: 52px;
    position: relative;
    margin-top:0;
    top:0;

}
#index_news .swiper-button-prev{
    background:url(../images/left1_h.png) no-repeat center #fff;
    left:0;
    /*margin-right:9px;*/
    /*margin-left: 32px;*/
}
#index_news .swiper-button-prev:hover{
    background:url(../images/left1.png) no-repeat center #0000eb;
}
#index_news .swiper-button-next{
    background:url(../images/right1_h.png) no-repeat center #fff;
    right:0;
}
#index_news .swiper-button-next:hover{
    background:url(../images/right1.png) no-repeat center #0000eb;
}
#index_news .swiper-pagination{
    position: relative;
    background: #fff;
    width: calc(100% - 104px - 70px);
    height: 4px;
    margin:0 35px;
}
.index5_arrow .swiper-pagination .swiper-pagination-progressbar-fill{
    background: #0000eb;
}
#index_news .swiper-pagination .swiper-pagination-bullet{
    width:69px;
    height: 4px;
    border-radius: 0;
    background:#fff;
    opacity: 1;
    position: relative;
    margin-right: 13px;
    line-height: 1;
}
#index_news .swiper-pagination .swiper-pagination-bullet:after{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:0;
    height: 100%;
    background:#0000eb;
}
#index_news .swiper-pagination .swiper-pagination-bullet-active:after{
  animation: width 4.05s infinite ease-in-out;
}
@media(max-width: 1600px){
    .index5_c {
        margin-top: 50px;
    }
    .news_list_top .news_list_date{
        font-size:28px;
    }
    .news_list_top .news_list_date span{
        font-size:15px;
        margin-left: 12px;
    }
    .news_list1 li .text {
        padding: 18px 30px 20px;
    }
    /*.news_list1 li .text h3{*/
    /*    font-size:18px;*/
    /*}*/
    .index5_arrow{
        width: calc(50% - 25px);
    }
}
@media(max-width: 1280px){
    .news_list1 li .text {
        padding: 18px 20px 20px;
    }
    .news_list_top i{
        max-width:30px;
    }
    .news_list_top .news_list_date {
        font-size: 24px;
    }
    #index_news .swiper-pagination .swiper-pagination-bullet{
        width:50px;
    }
    .news_list1 li .text h3{
        font-size:18px;
    }
    .index5_arrow{
        width: calc(50% - 20px);
    }
}
@media(max-width: 1024px){
    .index5_arrow{
        width: calc(50% - 15px);
    }
}
@media(max-width: 991px){
    .news_list_top .news_list_date {
        font-size: 20px;
    }
    .news_list_top .news_list_date span{
        font-size:14px;
    }
    #index_news .swiper-pagination .swiper-pagination-bullet{
        width:40px;
    }
}
@media(max-width: 820px){
    .index5{
        padding:75px 0;
    }
    /*.news_list1 li .text h3{*/
    /*    font-size: 16px;*/
    /*}*/
}
@media(max-width: 640px){
    .index5{
        /*padding:55px 0;*/
    }
    .index5_c {
        margin-top: 30px;
    }
    .news_list1 li .text h3{
        font-size: 18px;
    }
    #index_news .swiper-pagination .swiper-pagination-bullet{
        width:30px;
    }   
    .index5_c_bottom{
        margin-top:35px;
    }
    .index5_arrow{
        width: calc(50% - 10px);
    }
}
@media(max-width: 460px){
    #index_news .swiper-wrapper{
        flex-wrap:wrap;
    }
    #index_news .swiper-wrapper li{
        margin-bottom:40px;
    }
    #index_news .swiper-wrapper li:last-child{
        margin-bottom:0;
    }
    .index5_c_bottom{
        justify-content:center;
    }
    .index5_arrow{
        display:none;
        width: 100%;
    }
}

.index_bottom{
    padding:204px 0 216px;
    background:#0000eb;
    position: relative;
}
#m_dw{
    position: absolute;
    top:0;
    left:0;
}
.index_bottom .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index_bottom_l{
    width:40%;
}
.index_bottom .index_t1{
    color: #fff;
}
.index_bottom_l .txt{
    font-size:27px;
    color: #ffffff;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1.8;
    margin-top:65px;
}

.index_bottom_r{
    width: 54.5%;
}
.message2{
    position: relative;
}
.dw{
    position: absolute;
    top:-100px;
}
.message2 ul{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 38px;
}
.message2 ul li{

}
.message2 ul li label{
    font-size:18px;
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 21px;
}
.message2 ul li input{
    display: block;
    width:100%;
    border-radius: 5px;
    background:#fff;
    line-height: 47px;
    height: 47px;
    font-size:16px;
    padding:0 15px;
    border:1px solid #7f7f7f;
    outline: none;
}
.message2 ul li textarea{
    display: block;
    width:100%;
    border-radius: 5px;
    background:#fff;
    line-height: 47px;
    height: 175px;
    font-size:16px;
    padding:0 15px;
    border:1px solid #7f7f7f;
    outline: none;
    font-family: "HarmonyOS_SansSC_Regular";
}

.mess_btn button{
    display: inline-block;
    position: relative;
    width:149px;
    height: 52px;
    line-height: 52px;
    padding-left: 38px;
    background:#ffffff;
    font-size:20px;
    color: #0000eb;
    font-family: "HarmonyOS_SansSC_Medium";
    margin-left: 32px;
    border:none;
    outline: none;
    text-align: left;
    cursor: pointer;
}
.mess_btn button:before{
    content:'';
    position: absolute;
    left:-31px;
    top:0;
    background:url(../images/mess_btn1.png) no-repeat left center;
    background-size: 52px;
    width:52px;
    height:52px;
    z-index: 8;
}
.mess_btn button:after{
    content:'';
    position: absolute;
    left:0;
    top:0;
    width:0;
    height: 100%;
    background:#fff;
    z-index: 7;
    transition: all 0.4s ease-out;
}
.mess_btn button:hover{
/*    color: #fff;*/
}
.mess_btn button:hover:after{
    width:100%;
}
.mess_btn button span{
    position: relative;
    z-index: 10;
}
.mess_btn1{
    margin-top:-52px;
}
.mess_btn button{
    background:#bcbcfc;    
}
.message_intro{
    color: #fff;
    font-size:27px;
    line-height: 1.8;
    display: none;
    
}
.mess_btn2{
    margin-top:200px;
}

@media(max-width: 1600px){
    .index_bottom{
        padding: 120px 0;
    }
    .index_bottom_l .txt{
        font-size:24px;
    }
}
@media(max-width: 1280px){
    .index_bottom{
        padding: 90px 0;
    }
    .index_bottom_l .txt{
        font-size:20px;
    }
}
@media(max-width: 1199px){

}
@media(max-width: 991px){
    .index_bottom_l,.index_bottom_r{
        width:100%;
    }
    .index_bottom_l .txt{
        margin-top:40px;
    }
    .index_bottom_r{
        margin-top:50px;
    }
}
@media(max-width: 820px){
    .index_bottom{
        padding: 75px 0;
    }
    .index_bottom_l .txt {
        font-size: 18px;
    }
    .message2 ul li input {
        line-height: 40px;
        height: 40px;
        font-size: 15px;
    }
    .message2 ul li textarea{
        line-height: 40px;
        height: 120px;
        font-size: 15px;        
    }
    .mess_btn button {
        font-size: 18px;
    }
}
@media(max-width: 640px){
    .index_bottom{
        /*padding: 55px 0;*/
    }  
    .index_bottom_l .txt {
        margin-top: 30px;
        font-size: 16px;
    }
    .message2 ul {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 25px;
    }
    .message2 ul li label {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .mess_btn1 {
        margin-top: 35px;
        display:flex;
        justify-content:center;
    }
    .mess_btn button:hover:after{
        width:0%;
    }
}



/*foot*/
footer{
    background:#e6e6fe;
}
.footer{
    padding:116px 0 146px;
}
.f_contact{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.f_contact .txt{
    font-size:27px;
    color: #0000eb;
    line-height: 1;
    padding-right: 73px;
    margin-right: 74px;
    position: relative;
}
.f_contact .txt:after{
    content:'';
    position: absolute;
    top:0;
    right:-1px;
    width:1px;
    height: 89px;
    background:#0000eb;
}
.f_contact .txt p:nth-child(2){
    margin-top:20px;
    font-weight: bold;
    font-size:40px;
}
.f_contact .img1{
    display: flex;
    align-items:center;
    font-size:27px;
    color: #0000eb;
}
.f_contact .img1 p:nth-child(2){
    margin-left: 20px;
}
.foot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*margin-top:110px;*/
    max-width: 1180px;
    margin: 110px auto 0;
}
.foot_l{
    width: 35%;
}
.f_logo{

}
.f_logo .img img{
    max-width: 230px;
}
.f_logo p{
    font-size:15px;
    color: #010101;
    font-family: "HarmonyOS_SansSC_Medium";
    display: flex;
    align-items:center; 
    margin-top:10px;
}
.f_logo p .s1{
    margin:-2px 12px 0 11px;
}
.f_logo p .s2{
    margin:-2px 9px 0 8px;
}
.foot_l .text{
    color: #010101;
    margin-top:30px;
}
.foot_l .text p:nth-child(1){
    font-size:16px;
}
.foot_l .text p:nth-child(2){
    font-size:12px;
    font-family: "HarmonyOS_SansSC_Medium";
}
.foot_l .text p:nth-child(3){
    font-size:15px;
    font-family: "HarmonyOS_SansSC_Medium";
}

.f_nav{
    display: flex;
    justify-content: space-between;
    width: 60%;
}
.f_nav dl{

}
.f_nav dl dt{
    margin-bottom: 20px;  
    font-size:16px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
}
.f_nav dl dt a{
    display: block;
    font-size:16px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";

}
.f_nav dl dd{

}
.f_nav dl dd a{
    display: block;
    font-size:14px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
}
.f_nav dl dt a:hover,.f_nav dl dd a:hover{
    color: #0000eb;
}
.copyright {
    padding:15px 0;
    color: #fff;
    background:#0000eb;
}
.copyright .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items:center;
}
.copyright p{
    margin-right: 22px;
}
.copyright p:last-child{
    margin-right: 0;
}
.copyright p:nth-child(1) span,.copyright p:last-child span{
    margin:0 20px;
}
.copyright a{
    color: #fff;   
}
.copyright a:hover{
    text-decoration: underline;
}
.m_bottom ul{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
}
.m_bottom ul li{
    /*width: 20%;*/
    border-right: 2px solid #fff;
    position: relative;
    height: 100%;
}
.m_bottom ul li:last-child{
    border-right: none;
}
.m_bottom ul li a{
    display: block;
    background: #f0f0f0;
    height: 100%;
}
.m_bottom ul li a .img img{
    max-width: 20px;
    max-height: 20px;
}
.m_bottom ul li a .img img.img1{
    display: inline-block!important;
}
.m_bottom ul li a .img img.img2{
    display: none!important;
}
.m_bottom ul li a p{
    margin-top:5px;
}
.right_fixed2_code2{
    position: absolute;
    top: -80px;
    left:0;
    display: none;
}
.m_bottom ul li a:hover .right_fixed2_code2{
    display: block;
}
.m_f_nav,.m_bottom{
    display: none;
}

@media(max-width: 1600px){
    .footer {
        padding: 100px 0 80px;
    }
    .foot{
        margin:75px auto 0;
    }
}
@media(max-width: 1280px){
    .footer {
        padding: 90px 0 80px;
    }
}
@media(max-width: 1199px){
    .copyright p:nth-child(1) span,.copyright p:last-child span{
        margin:0 15px;
    }
}
@media(max-width: 991px){

}
@media(max-width: 820px){
    .footer {
        padding: 75px 0;
    }
    .foot{
        margin-top:50px;
    }
    .foot_l,.f_nav{
        width:100%;
    }
    .foot_l .text{
        margin-top:25px;
    }
    .f_nav{
        margin-top:40px;
    }
    .f_contact .txt,.f_contact .img1{
        font-size:22px;
    }
    .f_contact .txt p:nth-child(2){
        font-size:32px;
    }
    .f_contact .txt:after{
        height:75px;
    }
}
@media(max-width: 640px){
    .footer {
        padding: 55px 0;
    }
    /*.m_bottom{*/
    /*    display: block;*/
    /*}*/
    .f_contact .txt{
        padding-right: 50px;
        margin-right: 51px;        
    }
    .f_contact .txt,.f_contact .img1{
        font-size:20px;
    }
    .f_contact .txt p:nth-child(2){
        font-size:26px;
    } 
    .f_logo .img img{
        max-height:20px;
    }
    .copyright p:nth-child(1) span,.copyright p:last-child span{
        margin:0 10px;
    }
    .copyright p{
        width:100%;
        margin-right:0;
        text-align:center;
    }
    .copyright,.copyright a{
        font-size:12px;
    }
}
@media(max-width: 460px){
    .f_contact .txt{
        padding-right: 15px;
        margin-right: 16px;        
    }
    .f_contact .txt{
        font-size:15px;
    }
    .f_contact .txt p:nth-child(2){
        font-size:22px;
    } 
    .f_contact .txt:after{
        height:68px;
    }
    .f_contact .img1{
        font-size:14px;
    }
    .f_contact .img1 img{
        max-height:68px;
    }
    .f_contact .img1 p:nth-child(2) {
        margin-left: 15px;
    }
    .f_logo .img img{
        max-height:18px;
    }
    .foot_l .text p:nth-child(1) {
        font-size: 15px;
    }
    .foot_l .text p:nth-child(2){
        font-size:11px;
    }
    .foot_l .text p:nth-child(3){
        font-size:14px;
    }
    .pc_f_nav{
        display: none;
    }
    .m_f_nav{
        display: flex;
        width:auto;
        max-width:70%;
        justify-content:center;
        padding-top:30px;
        margin:0 auto;
    }
    .m_f_nav_l{
        width:110px;
        margin-right:25px;
    }
    .m_f_nav_r{
        width:70px;
    }
    .m_f_nav_r dl.on dt a{
        color: #0000eb;
    }
    .f_nav dl{
        margin-bottom:20px;
    }
    .f_nav dl dt{
        margin-bottom:5px;
    }
    .copyright,.copyright a{
        font-size:11px;
    }
}

/*right_fixed2*/
.right_fixed2{
    position: fixed;
    right: 0px;
    bottom: 200px;
    width: 54px;
    z-index: 999; /* 确保父容器层级最高 */
    transform: translateZ(0);
    will-change: transform;
}
.right_fixed2_c{
    background: #f0f0f0;
    padding-bottom: 20px;
    overflow: hidden !important; 
    transition: height 0.4s linear, opacity 0.4s linear;
    height: 465px;
    /*opacity: 1;*/
}
.right_fixed2_c.hidden {
    padding:0;
    height: 0 !important;
    /*opacity: 0 !important;*/
}
.right_fixed2_c.hidden .line1{
    display: none;
}
.right_fixed2_c:hover{
    overflow: visible !important;     
}
.line1{
    width: 100%;
    height: 5px;
    background: #0000eb;
}
.right_fixed2_c li{
    display: block;
    cursor: pointer;
    position: relative;
}
.right_fixed2_btn{
    position: relative;
    padding: 18px 5px;
    text-align: center;
    z-index: 100;
    background: #f0f0f0;
}
.right_fixed2_btn .img img.img2{
    display: none;   
}
.right_fixed2_btn p{
    font-size: 15px;
    color: #727171;
    font-family: "HarmonyOS_SansSC_Light";
    line-height: 1;
    margin-top: 9px;
}
.right_fixed2_c li .right_fixed2_box{
    position: absolute;
}
.right_fixed2_box{
    position: absolute;
    z-index: -99;
}
.right_fixed2_tel{
    width: 200px;
    background: #f0f0f0;
    top: 0;
    right: -200px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0000eb;
    font-weight: bold;
    transition: all 0.4s ease-out;
    z-index: 8;
}
.right_fixed2_tel a{
    font-size: 24px;
    color: #0000eb;    
}
.right_fixed2 li:hover .right_fixed2_tel{
    right: 54px;
    opacity: 1;
    z-index: 99;
}
.right_fixed2_code{
    top: 0;
    right: -90px;
    width: 90px;
    height: 90px;
    z-index: 8; 
    transition: all 0.4s ease-out;
    background: #f0f0f0;
    opacity: 0;
}
.right_fixed2 li:hover .right_fixed2_code{
    top: 0;
    right: 54px;
    opacity: 1;
    z-index: 99;
}
.right_fixed2_code p{
    font-size: 14px;
    line-height: 1.4;
    margin-top: 5px;
    display: none;
}
.right_fixed2_btn{
    cursor: pointer;
}
@media(min-width:481px){
    .right_fixed2_btn:hover .img img.img1{
        display: none;   
    }
    .right_fixed2_btn:hover .img img.img2{
        display: inline-block;   
    }
}
.right_fixed2_btn:hover p{
    color: #0000eb;
}
/* ========== 按钮核心修复样式 ========== */
.right_fixed2_add{
    position: fixed;
    right: 0;
    bottom: -34px; /* 下调位置，避免超出可视区域 */
    z-index: 1000; /* 层级高于父容器，确保不被遮挡 */
    cursor: pointer;
    transform: translateZ(0);
    will-change: transform;
    width: 54px; /* 固定宽度，和侧边栏一致 */
    height: auto; /* 自适应高度 */
    display: block !important; /* 强制显示，避免被隐藏 */
}
/* 按钮图片样式，确保填充容器 */
.right_fixed2_add img{
    width: 100%;
    height: auto;
    display: block; /* 去除图片默认间隙 */
}
@media(max-width: 1600px){
    .right_fixed2_btn{
        padding:15px 5px;
    }
    .right_fixed2_btn p{
        font-size:14px;
    }
    .right_fixed2_tel a{
        font-size:20px;
    }
}
@media(max-width: 1280px){
    .right_fixed2_btn{
        padding:12px 5px;
    }
}
@media(max-width: 1199px){
    .right_fixed2{
        /*display:none;*/
    }
}
@media(max-width: 991px){
    .right_fixed2_tel a{
        font-size:16px;
    }
}
@media(max-width: 820px){

}
@media(max-width: 767px){
    .right_fixed2_btn{
      overflow:hidden;
    }
    .right_fixed2_code{
        display:none;
    }
    .right_fixed2_c li:hover .right_fixed2_code{
        display:block;
    }
}
@media(max-width: 480px){
    footer{
        margin-bottom:61px;
    }
    /*.right_fixed2{*/
    /*    display:none;*/
    /*}*/
    .right_fixed2 {
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        transform: translateY(0%);
        bottom: 0;
        width: 100%;
        height: 61px;
    }
    .right_fixed2_add{
      position:fixed;
      bottom:70px;
      right:10px;
      display:none!important;
    }
    .right_fixed2_c{
      padding-bottom:0;
    }
    .right_fixed2_c .line1{
      display:none;
    }
    .right_fixed2_c ul{
        display:flex;
        flex-wrap:wrap;
        width:100%;
        position:relative;
    }
    .right_fixed2_c li{
        width:25%;
        position:unset;
    }
    .right_fixed2_c li:after{
        content:'';
        position:absolute;
        right:0;
        top:0;
        width:2px;
        height:100%;
        background:#fff;
    }
    .right_fixed2_c li:nth-child(4):after{
        display:none;
    }
    .right_fixed2_btn {
        padding: 8px 5px;
    }
    .right_fixed2_btn img{
        max-height:20px;
    }
    .right_fixed2_btn p{
        font-size:12px;
        margin-top: 5px;
    }
    .right_fixed2 li .right_fixed2_box.right_fixed2_tel,.right_fixed2 li .right_fixed2_box.right_fixed2_code{
        /*padding: 20px !important;*/
        left: 0;
        right: 0;
        bottom: calc(100% + 20px);
        top: auto;
        transform-origin: bottom center;
        transform: scale(1) !important;
    }
    .right_fixed2_tel {
        padding: 16px 30px !important;
        width: 300px !important;
        max-width: 100%;
        margin: 0 auto !important;
        box-shadow: 0 2px 19px 10px rgba(22, 44, 112, .05);
        border-radius: 8px;
        line-height:1.2;
        height:auto;
    }
    .right_fixed2_tel a{
        font-size:16px;
    }
    .right_fixed2_code{
        width: 300px !important;
        max-width: 100%;
        margin: 0 auto !important;
        box-shadow: 0 2px 19px 10px rgba(22, 44, 112, .05);
        border-radius: 8px;
        text-align:center;
        padding:20px;
        height:auto;
    }
    .right_fixed2_code img{
        width:100px;
    }
    .right_fixed2_code p{
        display:block;
        
    }
    #gotop2{
        position: fixed;
        bottom: calc(100% + 20px);
        right: 15px;        
    }
    #gotop2 .right_fixed2_btn{
        padding:0;
        width:45px;
        height:45px;
        text-align:center;
        line-height:45px;
        border-radius:100%;
    }
    #gotop2 img{
        max-width:20px;
        max-height:20px;
    }
    #gotop2 .right_fixed2_btn p{
        font-size:12px;
        margin-top:5px;
        display:none;
    }
    .right_fixed2_c li .right_fixed2_box{
        opacity:0;
        z-index:-99;
    }
    .right_fixed2_c li.on .right_fixed2_box{
        opacity:1;
        z-index:999;
    }
}

/*----- 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;
}
.n_banner_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;    
}
.n_banner_text h2{
    font-size:60px;
    color: #fff;
    font-family: "puhui65";
    padding-top:50px;
}

.sitemp{

}
.sitemp .site{
    margin-bottom: 45px;
    padding-left: 34px;
    background: url(../images/site_ico.png) no-repeat left center;
    line-height: 2em;
}
.sitemp .site,.sitemp .site a{
    font-size:16px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
}
.sitemp .site a:last-child{
    font-family: "HarmonyOS_SansSC_Medium";
}
.sitemp .site a:hover{
    color: #0000eb;
}
.site_ico{
    margin:0 12px;
}
.site_ico img{
    width: 7px;
}
@media(max-width: 1600px){
    .n_banner_text h2{
        font-size:52px;
    }
    .sitemp .site, .sitemp .site a{
        font-size:15px;
    }
}
@media(max-width: 1280px){
    .n_banner_text h2{
        font-size:46px;
    }
}
@media(max-width: 1024px){
    .n_banner_text h2{
        font-size:42px;
    }    
}
@media(max-width: 991px){

}
@media(max-width: 820px){
    .n_banner_text h2{
        font-size:36px;
        padding-top:0;
    }    
}
@media(max-width: 767px){
    .n_banner_text h2{
        font-size:26px;
    }   
    .sitemp .site{
        margin-bottom:35px;
    }
    .sitemp .site, .sitemp .site a{
        font-size:14px;
    }
}


/*solution*/
.solution1{
    padding:102px 0 85px;
    background: #f6f6f6;
}
.solution1_list{
    
}
.solution1_list dl{
    padding:0;
}
.service_list.solution1_list .service_list1{
    margin-top:54px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
}
.service_list.solution1_list dl dd li .text {
    padding: 30px 20px 35px 45px;
}
.service_list.solution1_list dl dd li .text .txt p{
    font-size: 15px;
}
.service_list dl dd a .text .txt p:before{
    top:12px;
}
.solution1-2{
    padding:125px 0 150px;
}
.solution1_list2 dl{
    text-align: center;    
    margin-bottom: 150px;
}
.solution1_list2 dl:last-child{
    margin-bottom: 0;
}
.solution1_list2 .txt{
    font-size: 20px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
    margin:25px 0 25px;
}
.solution2{
    padding:100px 0;
    background: #f6f6f6;
}
.service1_list.solution2_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:60px 43px ;
}
.service1_list.solution2_list li{
    width: calc(25% - 32.25px);
}
.service1_list.solution2_list li .text{
    height: 95px;
}
.solution2-2{
    padding:158px 0;
}
.solution2-2 .wrap{

}
.solution2-2 .text{
    width: 46.2%;
    font-size: 27px;
    color: #000000;
    line-height: 1.8;
    padding:55px 0px  50px 0;
    position: relative;
    float: left;
}
.solution2-2 .text:before,.solution2-2 .text:after{
    content:'';
    position: absolute;
    width: 43px;
    height: 43px;
}
.solution2-2 .text:before{
    top:0;
    left:0;
    background: url(../images/hr_top2.svg) no-repeat center;
    background-size: 43px;
}
.solution2-2 .text:after{
    right:0;
    bottom:0;
    background: url(../images/hr_bottom2.svg) no-repeat center;
    background-size: 43px;
}
/*:nth-child(1)*/
.solution1-2_c dl dd .img{
    text-align: center;
}
.solution1-2_c dl dd .img img{
    max-width: 84%;
}
.solution2_list1{
    width: 49%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;  
    float: right;
}
.solution2_list1 li{
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.solution2_list1 li .txt{
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    background: #0000eb;
    text-align: center;
    padding:12px 0;
}
.solution2_list1 li .txt h3{
    font-size: 22px;
    color: #fff;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1;
}
.solution2_list1 li .txt p{
    font-size: 16px;
    color: #ffffff;
    font-family: "HarmonyOS_SansSC_Light";
    line-height: 1;
    margin-top:10px;
}
.solution2_list1 li:hover .img img{
    transform: scale(1.1);
}
.solution2-3{
    background: url(../images/Building.png) no-repeat center bottom #f6f6f6;
    background-size: 100%;
    padding:91px 0 146px;
}
.solution2-3_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:68px 0 100px;
}
.solution2-3_c .text{
    width: 46%;
}
.solution2-3_c .text h3{
    font-size: 28px;
    color: #0000eb;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1;
    margin-bottom: 28px;
}
.solution2-3_c .text .txt{
    font-size: 20px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
    opacity: .85;
}



.solution2-3_c2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top:140px;
    border-top:1px solid #c5c5c5;
}
.solution2-3_c2 .text1{
    width: 48.4%;
}
.solution2_lc1{
    
}
.solution2_lc dt{
    font-size: 34px;color: #000000;
    font-family: "HarmonyOS_SansSC_Bold";
    line-height: 1;
}
.solution2_lc dt span{
    color: #0000eb;
    margin-right: 28px;
    font-family: "HarmonyOS_SansSC_Bold";
}
.solution2_lc1 dd{
    margin-top:75px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px;
}
.solution2_lc1 dd li{
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding:23px 12px 23px 22px;
    display: flex;
}
.solution2_lc1 dd li font{
    font-size: 25px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1;
    width: 30px;
}
.solution2_lc1 dd li .txt2{
    width: calc(100% - 30px);    
}
.solution2_lc1 dd li .txt2 .p1{
    font-size: 25px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";  
    line-height: 1;
}
.solution2_lc1 dd li .txt2 .p2{
    font-size: 16px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
    line-height: 1.4;
    margin-top:12px;
}
.solution2_lc2 .m_img{
    position: relative;
}
.solution2-3_c2 .img{
    width: 48.4%;
    text-align: center;
    text-align: center;
}
.solution2-4{
    padding:128px 0 0px;
}
.solution2-4 .wrap{
    border-bottom:1px solid #cccccc;
}
.solution2-4 dl dd{
    margin-top:30px;
    padding-bottom: 110px;
    text-align: center;
}

.solution2-5{
    padding:85px 0 66px;
}
.step3_txt{
    color: #000000;
    font-size: 16px;
    font-family: "HarmonyOS_SansSC_Medium";
    margin-top:30px;
    position: relative;
    z-index: 9;
}
.step3_txt span{
    font-size: 24px;
    font-family: "HarmonyOS_SansSC_Medium";
    margin-right: 15px;
}
.solution2-5 dl dd{
    /*margin-top:46px;*/
    text-align: center;
    margin-top: 35px;
}
.solution2-5 dl dd .pc_img{
    display: flex;
    flex-wrap: wrap;    
}
.solution2-5 dl dd .pc_img .img1{
    width: 48.2%;
}
.solution2-5 dl dd .pc_img .img2{
    width: 48.2%;
    margin-left: 3.6%;
    margin-top:-145px;
    position: relative;
    z-index: 1;
}
.solution2-6{
    padding:118px 0 138px;
    background: #f6f6f6;
}
.solution2-6 dd{
    margin-top:48px;
}
.solution2_arrow{
    margin-top:48px;
}
.solution2_arrow .cont{
    display: flex;
    justify-content: center;
    align-items: center;
}
#solution2_scroll1 .swiper-button-prev,#solution2_scroll1 .swiper-button-next{
    position: relative;
    left:0;
    right:0;
    width: 52px;
    height: 52px;
    margin-top:0;
}
#solution2_scroll1 .swiper-button-prev{
    background: url(../images/left1_h.png) no-repeat center #fff;
}
#solution2_scroll1 .swiper-button-prev:hover{
    background: url(../images/left1.png) no-repeat center #0000eb;    
}
#solution2_scroll1 .swiper-button-next{
    background: url(../images/right1_h.png) no-repeat center #fff;    
}
#solution2_scroll1 .swiper-button-next:hover{
    background: url(../images/right1.png) no-repeat center #0000eb;    
}
#solution2_scroll1 .swiper-pagination{
    background: #fff;
    width: 100%;
    height: 4px;
    max-width: 253px;
    position: relative;
    margin:0 32px;
}
#solution2_scroll1 .swiper-pagination-progressbar-fill{
    background: #0000eb;
}


.solution2-7{


}
.solution2-7 .wrap{
    padding:128px 0 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom:1px solid #c5c5c5;
}
.solution2-7 dl dd{
    margin-top:50px;
    padding-bottom: 140px;
}
.step5_list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;    
}
.step5_list li{
    border-radius: 50px;
    overflow: hidden;
}
.step5_list li:hover img{
    transform: scale(1.1);
}
.solution2-8{
    padding:160px 0 0;
}
.solution2-8_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.solution2-8_c dl{
    width: 48.2%;
}
.solution2-8 dd{
    text-align: center;
}
.solution2_lc6 dd,.solution2_lc7 dd{
    text-align: center;
}
.solution2_lc6 dd{
    margin-top:35px;
}
.solution2_lc7 dd{
    margin-top:5px;
}
.solution2-8 .img3{
    margin-top:85px;
}
.solution2-8 .img3 .pc_img{
    border-radius: 35px;
    overflow: hidden;    
}
.solution2-9{
    padding-top:160px;
}
.solution2-9 dl dd,.solution2-10 dl dd{
    margin-top:72px;
    text-align: center;
}
.solution2-10{
    padding:115px 0 152px;    
}
.solution2-5 a,.solution2-8 a{
    position: relative;
}
.solution2-5 .s_big_ico,.solution2-8 .s_big_ico{
    display: none;
}
.s_big_ico img{
    transition: all 0.4s ease-out;
}
#service2_scroll .swiper-slide:hover .s_big_ico img{
    transform: scale(1.35);
}
#service2_scroll .s_big_ico{
    right:20px;
    /*bottom:0;*/
}
@media(max-width:1600px){
    .solution2-2 .text{
        font-size:24px;
    }
    .solution2_list1 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }
    .solution2_list1 li .txt h3{
        font-size:18px;
    }
    .solution2_list1 li .txt p{
        font-size:14px;
    }
    .solution2-2{
        padding:100px 0;
    }
    .solution2_lc1 dd {
        margin-top: 60px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px;
    }
    .solution2-3_c2,.solution2-9{
        padding-top:100px;
    }
    .solution2-7 dl dd{
        padding-bottom:100px;
    }
    .solution2-3{
        padding:91px 0 100px;
    }
    .solution2-4,.solution2-8{
        padding:100px 0 0;
    }
    .solution2-6,.solution2-10{
        padding:100px 0;
    }
}
@media(max-width:1360px){
    .solution2_list1 li .txt p{
        font-size: 12px;
    }
}
@media(max-width:1280px){

    .solution2-2 .text{
        font-size:20px;
    } 
    .solution2_list1 li .txt h3{
        font-size:16px;
    }
    .solution2_list1 li .txt p{
        font-size:12px;
    }
    .solution2_lc1 dd {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
.solution2-5 dl dd .pc_img .img2{
    margin-top:-100px;
}
.solution1-2_c dl dd .img img{
    max-width: 100%;
}
}
@media(max-width:1024px){
    .solution2-2 .text {
        font-size: 18px;
    }  
    .solution2-3_c2 .text1,.solution2-2 .text{
        width:100%;
    }
    .solution2-3_c2 .img,.solution2_list1{
        width:100%;
        margin-top:55px;
    }
    .solution2-3_c2 .img img{
        max-width:50%;
    }
    .solution2_list1 li .txt{
        padding: 15px 0;
    }
    .solution2_list1 li .txt h3 {
        font-size: 18px;
    }
    .solution2_list1 li .txt p{
        font-size: 14px;
    }
    
}
@media(max-width:820px){
    .solution2,.solution2-2,.solution2-3{
        padding:75px 0;
    } 
    .solution2_lc1 dd {
        margin-top:55px;
    }
    .solution2-3_c2{
        padding-top:75px;
    }
    .solution2-3_c{
        padding:68px 0 75px;
    }
    .solution2-3_c .text{
        width:100%;
    }
    .solution2-3_c .text:nth-child(2){
        margin-top:55px;
    }
    .solution2-3_c .text h3{
        margin-bottom:22px;
    }
    .solution2_lc7 dd{
        margin-top:30px;
    }
    .solution2-5 dl dd .pc_img .img2 {
        margin-top: -70px;
    }
}
@media(max-width:767px){
    .solution2,.solution2-2,.solution2-3{
        padding:60px 0;
    } 
    .solution2-3_c2{
        padding-top:60px;
    }
    .solution2-3_c2,.solution2-9{
        padding-top:60px;
    }
    .solution2-7 dl dd{
        padding-bottom:60px;
    }
    .solution2-3{
        padding:60px 0 60px;
    }
    .solution2-4,.solution2-8{
        padding:60px 0 0;
    }
    .solution2-3_c,.solution2-6,.solution2-10{
        padding:60px 0;
    }
    .solution2-2 .text{
        padding:55px 0px 50px;
    }
    .solution2-5 a,.solution2-8 a{
        display: block;
    }
    .solution2-5 .s_big_ico,.solution2-8 .s_big_ico{
        display: block;
    }
    .solution2_lc6 .m_img{
        padding-bottom:40px;
    }
    .solution2_lc3_img2{
        margin-top:40px;
    }
    .solution2-5 dl dd .pc_img{
        display:none!important;
    }

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


/*service*/
.n_service_total1{
    background: #f6f6f6;
    padding:60px 0 102px;
    text-align: center;
}
.n_service_total1 h2{
    font-size: 22px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    margin-bottom: 15px;
    display: none;
}
.n_service_total1 .text{
    margin-bottom: 70px;
    font-size: 20px;
    color: #000000;
    text-align: center;
    line-height: 1.8;
}
.img1{
    
}
.s_big{
    position: relative;
}
.s_big_ico{
    position: absolute;
    right: 0;
    bottom: -20px;
    z-index: 9;
    width: 40px;
    display: none;
}

.n_service .index2{
    background: none;
    padding:64px 0 188px;
}
.n_service .index2 .index_t1{
    display: none;
}
.n_service .index2 .service_list dl{
    padding-bottom: 96px;
}
.n_service .index2 .service_list dl:last-child{
    padding-bottom: 0;
}
.n_service .service_list dl dd a,.n_service .service_list dl dd a .text{
    background: #f6f6f6;
}
.n_service .index_btn1{
    display: none;
}

.service1{
    padding:102px 0 110px;
    background: #f6f6f6;
}
h2.index_t1{
    text-align: center;
    font-size: 30px;
    color: #000000;
    line-height: 1;
    font-family: "HarmonyOS_SansSC_Bold";
}
.service1_list{
    display: grid;
    margin-top:54px;
}
.service1_list li{
    border-radius: 30px;
    box-shadow: 0 0 10px #eee;
    background: #fff;
    overflow: hidden;
}
.service1_list li .img{
    border-radius: 15px 15px 0 0;
}
.service1_list li:hover .img img{
    transform: scale(1.1);
}
.service1_list li .text{
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    height: 81px;
}
.service1_list li .text h3{
    font-size: 22px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1.2;
}
.service1_list li .text p{
    margin-top:5px;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
}
.service1_list li:hover .text h3,.service1_list li:hover .text p{
    color: #0000eb;
}
.service1_list_05{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 43px;      
}
.service1_list_06{
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 43px;      
}
.service1_list_04{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 43px;      
}

.service2{
    padding:78px 0 100px;
}
.service2_scroll{
    margin-top:60px;
}
.service2_arrow{
    margin-top:42px;
}
.service2_arrow .cont{
    display: flex;
    justify-content: center;
    align-items: center;
}
#service2_scroll .swiper-button-prev,#service2_scroll .swiper-button-next,#solution2_scroll2 .swiper-button-prev,#solution2_scroll2 .swiper-button-next{
    position: relative;
    left:0;
    right:0;
    width: 52px;
    height: 52px;
    margin-top:0;
}
#service2_scroll .swiper-button-prev,#solution2_scroll2 .swiper-button-prev{
    background: url(../images/left1_h.png) no-repeat center #f0f0f0;
}
#service2_scroll .swiper-button-prev:hover,#solution2_scroll2 .swiper-button-prev:hover{
    background: url(../images/left1.png) no-repeat center #0000eb;    
}
#service2_scroll .swiper-button-next,#solution2_scroll2 .swiper-button-next{
    background: url(../images/right1_h.png) no-repeat center #f0f0f0;    
}
#service2_scroll .swiper-button-next:hover,#solution2_scroll2 .swiper-button-next:hover{
    background: url(../images/right1.png) no-repeat center #0000eb;    
}
#service2_scroll .swiper-pagination,#solution2_scroll2 .swiper-pagination{
    background: #f0f0f0;
    width: 100%;
    height: 4px;
    max-width: 253px;
    position: relative;
    margin:0 32px;
}
#service2_scroll .swiper-pagination-progressbar-fill,#service2_scroll2 .swiper-pagination-progressbar-fill{
    background: #0000eb;
}
#service2_scroll .s_big{
    cursor: pointer;
}
#service2_scroll .s_big_ico{
    display: block;
    width: 28px;
    bottom:10px;
}
.simple-lightbox{
    display: none!important;
}
.m_solution2_scroll2{
    visibility: hidden;
    height: 0;
    position: relative;
    z-index: -99;
}
.solution2-9 dl dd .m_img, .solution2-10 dl dd .m_img{
    position: relative;
}
.solution2-10 dl dd .m_img .s_big_ico{
    bottom:0;
    right:0;
}
@media(max-width: 1600px){
    .n_service_total1{
        padding:60px 0 90px;
    }
    .n_service .index2 {
        background: none;
        padding: 50px 0 120px;
    }
    .n_service_total1 .text{
        font-size:18px;
    }
    .service1{
        padding:90px 0;
    }
    .service1_list_05{
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 35px;      
    }
    .service1_list_06{
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 35px;      
    }
    .service1_list_04{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 35px;      
    }
    .service1_list li .text h3{
        font-size:20px;
    }
    .solution1_list2 dl{
        margin-bottom:100px;
    }
    .solution1_list2 .txt{
        font-size:18px;
    }
    .service_list.solution1_list .service_list1{
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap:35px;
    }
    .service_list.solution1_list dl dd li .text {
        padding: 30px 20px 30px 30px;
    }
    .service1_list.solution2_list{
        gap: 50px 35px;
    }
    .service1_list.solution2_list li {
        width: calc(25% - 26.25px);
    }
    .solution2-3_c .text h3{
        font-size:24px;
    }
    .solution2-3_c .text .txt{
        font-size:16px;
    }
    .solution2_lc1 dd li .txt2 .p1{
        font-size:20px;
    }
    .solution2_lc1 dd li .txt2 .p2{
        font-size:14px;
    }
    .solution2-7 .wrap{
        padding:100px 0 0;
    }
    .solution1-2{
        padding:100px 0;
    }
}
@media(max-width: 1280px){
    .n_service .index2 {
        background: none;
        padding: 40px 0 90px;
    }    
    h2.index_t1{
        font-size:26px;
    }
    .service1_list_05{
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 25px;      
    }
    .service1_list_06{
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 25px;      
    }
    .service1_list_04{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 25px;      
    }
    /*.service1_list li .text h3{*/
    /*    font-size:18px;*/
    /*}*/
    .service_list.solution1_list .service_list1{
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap:25px;
    }
    .service_list.solution1_list dl dd li .text {
        padding: 25px 15px 25px 25px;
    }
    .service1_list.solution2_list{
        gap: 40px 25px;
    }
    .service1_list.solution2_list li {
        width: calc(25% - 18.75px);
    }
}
@media(max-width: 1099px){
    .service1_list li .text h3{
        font-size:17px;
    }
    .service1_list li .text p{
        font-size:14px;
    }    
}
@media(max-width: 1024px){
    .service_list.solution1_list .service_list1{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap:25px;
    } 
    .solution1_top p br{
        display:none;
    }
}
@media(max-width: 820px){
    .n_service .index2 {
        background: none;
        padding: 35px 0 75px;
    }  
    .n_service_total1 .text{
        font-size:16px;
    }    
    .n_service_total1 .text{
        margin-bottom:50px;
    }
    .n_service .index2 .service_list dl{
        padding-bottom:55px;
    }
    .n_service_total1{
        padding:60px 0 75px;
    }
    .service1,.solution2,.solution1,.solution1-2{
        padding:75px 0;
    }
    .service_list.solution1_list .service_list1{
        margin-top:40px;
    }
    .service1_list{
        margin-top:40px;
    }
    .service1_list_05{
        display:flex;
        flex-wrap:wrap;
        /*grid-template-columns: repeat(3, minmax(0, 1fr)); */
        gap: 25px; 
        justify-content: center; 
    }
    .service1_list_05 li{
        width:calc(100% / 3 - 16.666px);
    }
    .service1_list_06{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;   
        place-items: center;
    }
    .service1_list_04{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 25px;      
    }
    .solution1_list2 dl{
        margin-bottom:75px;
    }
    .solution1_list2 .txt{
        font-size:16px;
    }
    .service1_list.solution2_list{
        gap: 35px 25px;
    }
    .service1_list.solution2_list li {
        width: calc(50% - 12.5px);
    }
    .solution2_lc dt{
        font-size:28px;
    }
    .solution2-4 dl dd{
        padding-bottom:75px;
    }
    .solution2-7 .wrap{
        padding:75px 0 0;
    }
    .step5_list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }
    .solution2-8_c dl{
        width:100%;
    }
    .solution2_lc7{
        margin-top:55px;
    }
    .solution2-8_c dl:nth-child(2){
        margin-bottom:55px;
    }
    .solution2-8_c dl:last-child{
        margin-bottom:0;
    }
    .solution2-8 .img3{
        margin-top:55px;
    }
    .service1_list li .text h3{
        font-size:20px;
    }
    .service1_list li .text p{
        font-size:16px;
    }
}
@media(max-width: 767px){
    .service_t1 span{
        display:block;
        margin-right:0;
        margin-bottom:15px;
    }
    .solution1_top p{
        font-size:14px;
    }
    .n_service .index2 {
        background: none;
        padding:15px 0 55px;
    } 
    .n_service_total1 .text {
        margin-bottom: 40px;
        font-size:15px;
    }
    .n_service_total1 .text br{
        display: none;
    }
    .n_service_total1,.solution2,.service1,.solution1,.solution1-2{
        padding:60px 0;
    }
    .n_service_total1 h2,.n_service_total1 .text{
        text-align:left;
    }
    .n_service_total1 h2,.s_big_ico{
        display:block;
    }
    .s_big_ico{
        width:30px;
        /*-18px*/
        bottom: -10px;
        right:10px;
    }
    h2.index_t1{
        font-size:22px;
    }
    .service1_list{
        display:flex!important;
        flex-wrap:wrap!important;
    }
    .service1_list li{
        width:calc(50% - 12.5px)!important;
    }
    .service2_scroll{
        margin-top:40px;
    }
    .service2_scroll .swiper-wrapper{
        flex-wrap:wrap;
    }
    .service2_scroll .swiper-wrapper .swiper-slide{
        margin-bottom:20px;
    }
    .service2_scroll .swiper-wrapper .swiper-slide:last-child{
        margin-bottom:0;
    }
    #service2_scroll .s_big_ico{
        right:5%;
    }
    #solution2_scroll1 .swiper-pagination,#solution2_scroll2 .swiper-pagination{
        width:calc(100% - 134px);
    }
    #service2_scroll .swiper-button-prev, #service2_scroll .swiper-button-next, #solution2_scroll2 .swiper-button-prev, #solution2_scroll2 .swiper-button-next,#solution2_scroll1 .swiper-button-prev, #solution2_scroll1 .swiper-button-next{
        width:35px;
        height:35px;
    }
#service2_scroll .swiper-button-prev,#solution2_scroll1 .swiper-button-prev,#solution2_scroll2 .swiper-button-prev{
    background: url(../images/left1_h.png) no-repeat center #f0f0f0;
    background-size:12px;
}
#service2_scroll .swiper-button-prev:hover,#solution2_scroll1 .swiper-button-prev:hover,#solution2_scroll2 .swiper-button-prev:hover{
    background: url(../images/left1.png) no-repeat center #0000eb;    
    background-size:12px;
}
#service2_scroll .swiper-button-next,#solution2_scroll1 .swiper-button-next,#solution2_scroll2 .swiper-button-next{
    background: url(../images/right1_h.png) no-repeat center #f0f0f0;  
    background-size:12px;
}
#service2_scroll .swiper-button-next:hover,#solution2_scroll1 .swiper-button-next:hover,#solution2_scroll2 .swiper-button-next:hover{
    background: url(../images/right1.png) no-repeat center #0000eb;  
    background-size:12px;
}
    .service2_arrow{
        display:none;
    }
    .solution1_list2 dl{
        margin-bottom:55px;
    }
    .solution1_list2 .txt{
        font-size:14px;
        line-height:1.6;
    }
    .solution1_list2 .txt br{
        display:none;
    }
    .service_list.solution1_list .service_list1{
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap:25px;
    }  
    .service1_list.solution2_list{
        gap: 25px 25px;
    }
    .service1_list.solution2_list li {
        width: 100%;
    }
    .service1_list.solution2_list li .text{
        height:75px;
    }
    .n_top2 span{
        display:block;
        margin-right:0;
        margin-bottom:10px;
    }
    .solution2_list1 {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 25px;
    }
    .solution2-3_c{
        padding: 50px 0 60px;
    }
    .solution2-3_c .text h3 {
        font-size: 20px;
    }
    .solution2_lc dt{
        font-size:24px;
    }
    .solution2_lc1 dd {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 25px;
    }
    .solution2_lc1 dd li .txt2 .p1 {
        font-size: 18px;
    }
    .solution2-4 dl dd{
        padding-bottom:60px;
    }
    .solution2-5{
        padding:60px 0;
    }
    .solution2_lc7{
        margin-top:40px;
    }
    .solution2-7 .wrap{
        padding:60px 0 0;
        display:block;
    }
    .step5_list {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 25px;
        display:none;
    }
    .m_solution2_scroll2{
        visibility: visible;
        height: auto;
        position: relative;
        z-index: 99;
    }
    #solution2_scroll2 .img{
        border-radius:35px;
    }
    .solution2-9 dl dd, .solution2-10 dl dd {
        margin-top: 50px;
        position:relative;
    }
    .step3_txt{
        line-height:1.6;
        margin-bottom:30px;
        font-size:15px;
    }
    .step3_txt span{
        display:block;
        margin-right:0;
        font-size:20px;
    }
    .solution2_lc7{
        margin-top:25px;
    }
    .n_top.solution1_top .index_t1 span{
        font-size:21px;
    }
    /*.service_list.solution1_list .service_list1{*/
    /*    margin-top:35px;*/
    /*}*/
}
@media(max-width: 460px){
    .service1_list li{
        width:100%!important;
    }
    .solution2_lc dt{
        font-size:22px;
    }
    .solution2_lc dt span{
        margin-right:20px;
    }
    .solution2-9 dl dd, .solution2-10 dl dd {
        margin-top: 40px;
    }
    .step3_txt{
        font-size:14px;
    }
    .step3_txt span{
        font-size:18px;
    }
    .solution1_list2 .txt{
        font-size:12px;
    }
}


/*case*/
.n_case{
    
}
.n_case_logo{
    padding-top:100px;
    padding-bottom: 145px;
}
.n_case_logo_t{
    font-size: 20px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    text-align: center;
    line-height: 1.6;
    margin-bottom: 45px;
}
.case_detail_text{
    padding:65px 0 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.case_detail_text .text{
    width: calc(50% - 32px);
}
.case_detail_text .text .index_t1 span{
    margin-right: 28px;
}
.case_detail_text .text .txt{
    font-size: 20px;
    color: #000000;
}
.case_detail_text .text .txt{
    margin-top:50px;
}
.case_detail_text .text .txt p{
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: "HarmonyOS_SansSC_Light";
}
.case_detail_text .text .txt p:last-child{
    margin-bottom: 0;
}
.case_content{

}
.case_content .content p{
    margin-bottom: 65px;
}
.case_content p:last-child{
    margin-bottom: 0;
}
.n_term{
    font-size: 15px;
    color: #000000;
    padding-bottom: 140px;
}
.n_term .txt1{
    margin-top: 35px;
}
.n_term p{
    font-family: "HarmonyOS_SansSC_Light";
}
.n_term p strong{
    font-family: "HarmonyOS_SansSC_Light";
}
.n_privacy{
    font-size: 15px;
    color: #000000;
    padding-bottom: 140px;    
}
.n_privacy .txt1{
    margin-bottom: 56px;
}
.n_privacy .txt1:last-child{
    margin-bottom: 0px;
}
.n_privacy p{
    font-family: "HarmonyOS_SansSC_Light";   
    margin-bottom: 25px;
}
.n_privacy .txt1 p:last-child,.n_privacy p.n_privacy_t2{
    margin-bottom: 0px;
}
.n_privacy p.n_privacy_t{
    margin-bottom: 25px;
}
.n_privacy p strong{
    font-family: "HarmonyOS_SansSC_Light"; 
}
.n_privacy .txt1-2{
    margin-bottom: 25px;
}
.n_privacy .txt1-2 p{
    margin-bottom: 0;
}
.s_keyword{
    font-weight: bold;
}
@media(max-width:1600px){
    .n_case_logo{
        padding-top: 90px;
        padding-bottom: 100px;
    } 
    .case_detail_text{
        padding: 65px 0 100px;
    }
    .case_detail_text .text .txt{
        font-size:17px;
        margin-top: 40px;
    }
    .case_content .content p{
        margin-bottom: 50px;
    }
    .n_term{
        padding-bottom:100px;
    }
}
@media(max-width:1280px){
    
}
@media(max-width:991px){
    
}
@media(max-width:820px){
    .n_case_logo_t{
        font-size:18px;
    }
    .n_case_logo{
        padding-top: 75px;
        padding-bottom: 75px;
    } 
    .case_detail_text {
        padding: 65px 0 75px;
    }
    .case_detail_text .text{
        width:100%;
    }
    .case_detail_text .text:nth-child(2){
        margin-top:65px;
    }
    .case_detail_text .text .txt{
        font-size:16px;
        margin-top: 30px;
    }
    .case_detail_text .text .txt p {
        margin-bottom: 30px;
    }
    .case_content .content p {
        margin-bottom: 40px;
    }
    .n_term{
        padding-bottom:75px;
    }
    .n_term .txt1{
        margin-top: 55px;
    }
}
@media(max-width:767px){
    /*.n_case_logo{*/
    /*    padding-top:55px;*/
    /*}*/
    .n_case_logo_t{
        font-size:16px;
        margin-bottom: 40px;
    } 
    /*.n_case_logo {*/
    /*    padding-top: 75px;*/
    /*    padding-bottom: 75px;*/
    /*} */
    .case_detail_text {
        padding: 65px 0;
    }
    .case_content .content p {
        margin-bottom: 30px;
    }
    .case_content .content p:last-child{
        margin-bottom:0;
    }
    .m_index_t1 span{
        display:block;
        margin-right:0!important;
        margin-bottom:15px;
        font-size:22px;
    }
    .n_case_logo2{
        padding-top:45px;
    }
}
@media(max-width:520px){
    .n_case_logo_t{
        font-size:15px;
    }
}

/*about*/
.about1{
    display: flex;
    flex-wrap: wrap;
}
.about1 .index_t1{
    font-size: 53px;
}
.about1 .text dl dt .index_t1,.about2 .index_t1,.index_bottom2 .index_t1{
    font-size: 35px;
}
.about1 .text dl dt .index_t1 font{
    font-family: "HarmonyOS_SansSC_Regular";
}
.about1 .img{
    width: 48%;
}
.about1 .img img{
    width: 100%;
    opacity: 0;
    /*height: 100%;*/
}
.about1 .text{
    width: 52%;
    background: #f6f6f6;
    padding:80px 81px 80px 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about1 .text dl{
    padding:75px 0 68px;
    border-bottom: 1px solid #c5c5c5;
}
.about1 .text dl:last-child{
    border-bottom: none;
}
.about1 .text dl dt{
    margin-bottom: 45px;
}
.about1 .text dl dd{
    font-size: 18px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
}
.about1 .text dl dd p{
    font-family: "HarmonyOS_SansSC_Light";    
}
.about1 .text dl dd strong{
    font-size: 18px;
    color: #0000eb;
}
.about2{
    padding:145px 0;
}
.about2 .index_t1{
    text-align: center;
}
.ys_list{
    margin-top:74px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 67px;
}
.ys_list dl{
    border:1px solid #d2d2d2;
    border-radius: 25px;
    overflow: hidden;
}
.ys_list dl dt{
    position: relative;
    background: #e6e6fe;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding:0 5px;
    height: 154px;
}
.ys_list dl dt:after{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 179px;
    background: url(../images/ys_jia.png) no-repeat left center;
    /*background-size: contain;*/
}
.ys_list dl dt font{
    font-size: 100px;
    color: #000000;
    line-height: 1;
    font-family: "HarmonyOS_SansSC_Light";
    width: 112px;
    text-align: center;
}
.ys_list_t{
    line-height: 1;
    width: calc(100% - 112px);
    padding-left: 38px;
}
.ys_list_t .p1{
    font-size: 24px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    margin-bottom: 15px;
}
.ys_list_t .p2{
    font-size: 30px;
    color: #0000eb;
    font-family: "HarmonyOS_SansSC_Bold";
}

.ys_list dl dd{
    padding:62px 64px;
}
.ys_list dl dd p{
    font-size: 18px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";    
    margin-bottom: 10px;
}
.ys_list dl dd p:last-child{
    margin-bottom: 0;
}
.ab_email{
    font-size: 22px;
    color: #ffffff;
    padding-left: 50px;
    background: url(../images/email_ico.png) no-repeat left center;
    margin-top:62px;
    line-height: 1.4;
}
.f_contact2{
    justify-content: flex-start;
    margin-top: 142px;
}
.f_contact2 .txt{
    margin-top:0;
}
.f_contact2 .txt,.f_contact2 .img1{
    color: #fff;
}
.f_contact2 .txt:after{
    background: #fff;
}
.about4{
    padding:152px 0 204px;
}
.about4 .wrap{
    /*display: flex;*/
    /*flex-wrap: wrap;   */
    /*justify-content: space-between;*/
}
.about4 ul{
    display: flex;
    /*flex-wrap: wrap;*/
    width: 65.5%;
    border-radius: 20px;
    overflow: hidden;
    float: left;
}
.about4 ul li{
    position: relative;
    width: calc(100% / 3);
}
.about4 ul li:after{
    content:'';
    position: absolute;
    bottom:0%;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,235,.6);
    transition: all 0.3s ease-out 0.1s; 
    z-index: 9;
    /* 初始状态：从底部滑出隐藏（transform 向下） */
    transform: translateY(100%);
    /* 色块过渡：0.3s 向上滑出，无显示延迟 | 隐藏时延迟 0.1s（等文字先隐藏） */
    transition: transform 0.3s ease-out,
                opacity 0.3s ease-out;
}
.about4 ul li img{
    width: 100%;
}
/*.about4 ul li:hover .img img{*/
/*    transform: scale(1.1);*/
/*}*/
.about4 ul li:hover:after{
    transform: translateY(0);
    opacity: 1;
    /* 色块显示无延迟，优先滑出 */
    transition-delay: 0s;
}
.about4 ul li:not(:hover):after {
    transition-delay: 0.1s;
}
.about4 ul li p{
    font-size: 30px;
    color: #ffffff;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1;
    position: absolute;
    top:25px;
    left:30px;
    z-index: 11;
}
.about4 ul li h4{
    /*display: none;*/
    width: 100%;
    color: #fff;
    padding:20px 5px;
    line-height: 1.4;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
    transition-delay: 0s;
}
.about4 ul li:hover h4{
    opacity: 1;
    transition-delay: 0.3s;
}
.about4 .text{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30.8%;
    padding:30px 95px;
    float: right;
}
.about4 .text:before,.about4 .text:after{
    content:'';
    position: absolute;
    width: 43px;
    height: 43px;
}

.about4 .text:before{
    top:0;
    left:0;
    background: url(../images/hr_top2.svg) no-repeat center;
    background-size: 43px;
}
.about4 .text:after{
    right:0;
    bottom:0;
    background: url(../images/hr_bottom2.svg) no-repeat center;
    background-size: 43px;
}
.about4 .text dl{
    margin-bottom: 35px;
}
.about4 .text dl:last-child{
    margin-bottom: 0;
}
.about4 .text dl dt{
    font-size: 30px;
    color: #000000;  
    line-height: 1;
    margin-bottom: 16px;
}
.about4 .text dl dd{
    font-size: 18px;
    color: #000000;  
    font-family: "HarmonyOS_SansSC_Medium";
    background: #f5f5f5;
    border-radius: 25px;
    padding:18px 24px;
    line-height: 1.6;
}
.about4 .text dl dd p{
    margin-bottom: 5px;
}
.about4 .text dl dd p:last-child{
    margin-bottom: 0;
}
@media(max-width: 1920px){
    .about1 .text {
        padding: 55px 65px;
    } 
    .about1 .text dl{
        padding:50px 0;
    }
    .about1 .text dl dt{
        margin-bottom:30px;
    }
    .f_contact2{
        flex-wrap: nowrap;
    }
}
@media(max-width: 1760px){
    .f_contact .txt{
        padding-right: 49px;
        margin-right: 50px;        
    }
    .f_contact2 .txt,.f_contact .img1{
        font-size:22px;
    }
    .f_contact2 .txt p:nth-child(2){
        font-size:32px;
    }
}
@media(max-width: 1600px){
    .about1 .text {
        padding: 25px 65px;
    }
    .about1 .text dl{
        padding:40px 0;
    }
    .about1 .text dl dt{
        /*margin-bottom:20px;*/
    }
    .about1 .text dl dt .index_t1,.about2 .index_t1,.index_bottom2 .index_t1{
        font-size:30px;
    }
    .about1 .text dl dd,.about1 .text dl dd strong{
        font-size:16px;
    }
    .about2{
        padding:100px 0;
    }
    .ys_list{
        margin-top: 60px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 45px;
    }
    .ys_list dl dt font{
        font-size:80px;
    }
    .ys_list_t .p1{
        font-size:20px;
    }
    .ys_list_t .p2{
        font-size:24px;
    }
    .ys_list dl dd {
        padding: 62px 40px;
    }
    .ys_list dl dd p{
        font-size:16px;
    }
    .about4{
        padding:120px 0;
    }
    .about4 .text{
        padding:20px 55px;
    }
    .about4 .text dl dt{
        font-size:26px;
    }
    .about4 .text dl dd{
        font-size:16px;
        border-radius: 15px;
    }
}
@media(max-width: 1440px){
    .ys_list{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 35px;
    }   
    .ys_list_t{
        padding-left: 22px;
    }
    .ys_list_t .p1{
        font-size: 18px;
    }
    .ys_list_t .p2{
        font-size: 22px;
    }
    .ys_list dl dd{
        padding: 50px 30px 30px;
    }
    .f_contact .txt{
        padding-right: 25px;
        margin-right: 26px;        
    }
    .f_contact2 .txt,.f_contact .img1{
        font-size:18px;
    }
    .f_contact2 .txt p:nth-child(2){
        font-size:28px;
    }
    .about4{
        padding:100px 0;
    }
}
@media(max-width: 1280px){
    .about1 .text dl dt .index_t1,.about2 .index_t1,.index_bottom2 .index_t1{
        font-size:26px;
    }
    .about1 .text dl dd,.about1 .text dl dd strong{
        font-size:14px;
    } 
    .ys_list dl dd {
        padding: 52px 25px;
    }
    .ys_list dl dd p{
        font-size:14px;
    }

    .about4 .text {
        padding: 20px 40px;
    }
    .about4 .text dl dt {
        font-size: 24px;
    }
    .about4 ul li h4{
        font-size:16px;
    }
}
@media (max-width: 1199px) {
    .about1 .text {
        padding: 25px 30px 25px 40px;
    }
    /*.about1 .text dl{*/
    /*    padding:25px 0;*/
    /*}*/
    .ys_list{
        margin-top:50px;
    }
    .ys_list dl dt{
        height: 120px;
    }
    .ys_list dl dt:after{
        height: 138px;
        background: url(../images/ys_jia.png) no-repeat left top;
        background-size: 420px;
    }
    .ys_list dl dt font {
        font-size: 60px;
        width: 80px;
    }
    .ys_list_t{
        width: calc(100% - 80px);
    }
    .ys_list dl dd {
        padding: 40px 20px 25px;
    }

    .f_contact2{
        margin-top:100px;
    }
    .index_bottom_l,.index_bottom_r{
        width:100%;
    }
    .index_bottom_r{
        margin-top:55px;
    }
    .about4 ul{
        width:100%;
        border-radius:15px;
    }
    .about4 .text{
        width:100%;
        margin-top:55px;
        padding:40px 40px;
    }
}
@media(max-width: 1024px){
    .ys_list{
        display: flex;
        flex-wrap:wrap;
        gap: 35px;
        justify-content:center;
    }  
    .ys_list dl{
        width:calc(50% - 17.5px);
        /*margin-right:35px;*/
    } 
    /*.ys_list dl:nth-child(2),.ys_list dl:nth-child(3){*/
    /*    margin-right:0;*/
    /*}*/
    .ys_list dl dt {
        height: 130px;
    }
    .ys_list dl dt:after {
        height: 151px;
        background: url(../images/ys_jia.png) no-repeat left top;
        background-size: 460px;
    }

}
@media(max-width: 820px){
    .about1 .img,.about1 .text{
        width:100%;
    }
    .about1 .text {
        padding: 10px 3%;
    }
    .about1 .text dl dt .index_t1,.about2 .index_t1,.index_bottom2 .index_t1{
        font-size:24px;
    }
    .about2{
        padding:75px 0;
    }
    .ys_list{
        /*display: grid;*/
        /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
        /*gap: 25px;*/
    }
    .ys_list dl{
        width:calc(50% - 12.5px);
        /*margin-right:35px;*/
    } 
    .f_contact2{
        margin-top:75px;
    }
    .about4{
        padding:75px 0;
    }
}
@media(max-width: 767px){
    /*.about1 .text dl dd{*/
    /*    font-size:14px;*/
    /*}    */
    .about1 .text dl dt .index_t1,.about2 .index_t1,.index_bottom2 .index_t1{
        font-size:22px;
    }
    .about2{
        /*padding:55px 0;*/
    }
    .f_contact2{
        margin-top:55px;
    }
    .f_contact2 .txt p:nth-child(2){
        font-size:26px;
    }
    .ab_email{
        font-size:18px;
        margin-top:45px;
        padding-left:45px;
    }
    .about2 .index_t1{
        text-align:left;
    }
    .about4 ul li:after{
        display:none;
    }
    /*.index_bottom .index_t1{*/
    /*    font-size:22px;*/
    /*}*/
}
@media(max-width: 640px){
    .ys_list{
        /*margin-top: 30px;*/
        /*display: grid;*/
        /*grid-template-columns: repeat(1, minmax(0, 1fr));*/
        /*gap: 25px;*/
    }
    .ys_list dl{
        max-width:462px;
        margin: 0 auto;
        width:100%;
    }
    .ys_list dl dt font {
        font-size: 60px;
        width: 90px;
    }
    .ys_list_t {
        width: calc(100% - 90px);
    }
    .ys_list_t .p1 {
        font-size: 16px;
    }
    .ys_list_t .p2 {
        font-size: 20px;
    }
    .f_contact2 .txt p:nth-child(2){
        font-size:22px;
    }
    .f_contact2 .txt, .f_contact .img1 {
        font-size: 14px;
    }
    .about4{
        /*padding:55px 0;*/
    }
    .about4 ul li p{
        font-size:26px;
    }
    .index_bottom .index_t1{
        font-size:22px;
    }
}
@media(max-width: 520px){
    /*.about1 .text dl dt .index_t1,.about2 .index_t1{*/
    /*    font-size:18px;*/
    /*}*/
    .about4 ul{
        flex-wrap:wrap;
    }
    .about4 ul li{
        width:100%;
        margin-bottom:30px;
        border-radius:20px;
        overflow:hidden;
    }
    .about4 ul li:last-child{
        margin-bottom:0;
    }
    .about4 ul li h4{
        opacity:1;
        background: #0000eb;
        width:100%;
       position: relative;
        top: 0%;
        left:0%;
        transform:translate(0%,0%);
    }
    .index_bottom .index_t1{
        font-size:20px;
    }
}


/*²úÆ·*/
.n_product{

}


@media(max-width: 1600px){

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



/*°¸Àý*/
.n_case{

}


@media(max-width: 1600px){

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



/*news*/
.n_news{

}
.n_top{
    padding:130px 0 100px;
}
.n_top .index_t1{
    font-size: 53px;
}
.n_top p{
    margin-top:36px;    
}
.n_top p,.n_top p font{
    line-height: 1.4;
    font-size: 24px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
}

.n_news_cont{
    padding:0 0 145px;
}
.news_list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 78px 68px ;    
}
.news_list li{
    background: #f6f6f6;
    box-shadow: none;
}
.news_list li .text{
    background: none;
}

.news_detail{
    padding:150px 0 0px;
}
.social-share .social-share-icon{
    border:none!important;
    border-radius: 5px!important;
}
.m_news_banner{
    display: none;
}
.news_detail h1{
    font-size: 53px;
    color: #000000;
    /*font-family: "HarmonyOS_SansSC_Bold";*/
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 135px;
    /*font-family: "HarmonyOS_SansSC_Medium";*/
    font-family: "HarmonyOS_SansSC_Regular";
}
.news_detail_cont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news_detail_l{
    width: 74%;
}

.news_detail_top{
    margin:30px 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.news_detail_date{
    font-size: 44px;
    color: #727171;
    font-family: "HarmonyOS_SansSC_Light";
    line-height: 1;
}
.news_detail_date span{
    font-family: "HarmonyOS_SansSC_Light";    
}
.news_detail_date font{
    font-size: 20px;
    margin-left: 20px;
}
.news_share{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.news_share_t{
    font-size: 18px;
    color: #727171;
    font-family: "HarmonyOS_SansSC_Medium";
}
.social-share{
    
}
.news_detail .content{
    font-size: 20px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Light";
}
.news_detail .content h2{
    font-size: 40px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
}
.news_detail_bottom{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:58px 0 150px;
    border-top:2px solid #0000eb;
    margin-top:145px;
}
.news_detail_bottom .page{
    
}
.page p{
    font-size: 18px;
    color: #000000; 
    line-height: 1.8;
    margin-bottom: 18px;
    display: flex;
}
.page p:last-child{
    margin-bottom: 0;
}
.page p font{
    font-family: "HarmonyOS_SansSC_Medium";
    width: 75px;
}
.page p span{
    width: calc(100% - 75px);
}
.page p span,.page p span a{
    font-family: "HarmonyOS_SansSC_Light";
    font-size: 18px;
    color: #000000; 
}
.case_back{
    
}
a.back{
    width: 150px;
    height: 52px;
    line-height: 52px;
    background: #f0f0f0;
    font-size: 20px;
    color: #0000eb;
    font-family: "HarmonyOS_SansSC_Medium";

    display: flex;
    align-items: center;
    position: relative;
    padding-left: 38px;
    margin-left: 32px;
}
a.back:before{
    content:'';
    position: absolute;
    left:-31px;
    top:0;
    background:url(../images/index_btn1.png) no-repeat left center;
    background-size: contain;
    width:52px;
    height:52px;
    z-index: 8;
}
a.back:after{
    content:'';
    position: absolute;
    left:0;
    top:0;
    width:0;
    height: 100%;
    background:#0000eb;
    z-index: 7;
    transition: all 0.4s ease-out;
}
a.back font {
    position: relative;
    z-index: 99;
}

/* 桌面端 hover 效果（仅屏幕宽度 > 480px 生效） */
@media (min-width: 992px) {
    a.back:hover{
        color: #fff;
    }
    a.back:hover:after{
        width:100%;
    }
}
.news_detail_r{
    width: 22.2%;

}
.news_detail_r h2{
    font-size: 27px;
    color: #000000;
    font-family: "HarmonyOS_SansSC_Medium";
    line-height: 1;
    margin-bottom: 30px;
}
.tj_news{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr))!important;
    gap: 30px;    
}
.tj_news li{
    box-shadow: none;
}
.tj_news li,.tj_news li .text{
    background: #f6f6f6;
}
@media(max-width: 1600px){
    .n_news_cont{
        padding:0 0 100px;
    }
    .n_top {
        padding: 100px 0 75px;
    }
    .n_top .index_t1{
        font-size: 42px;
    }
    .n_top p{
        margin-top: 25px;
    }
    .n_top p,.n_top p font{
        font-size:20px;
    }
    .news_list{
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 50px 40px ;     
    }
    .news_detail{
        padding: 100px 0 0;
    }
    .news_detail h1{
        font-size:36px;
        margin-bottom:100px;
    }
    .news_detail_date{
        font-size:36px;
    }
    .news_share_t{
        font-size:16px;
    }
    .news_detail .content{
        font-size: 16px;
    }
    .news_detail_bottom{
        padding: 40px 0 100px;
        margin-top: 100px;
    }
    .page p,.page p span, .page p span a{
        font-size:16px;
    }
    .page p font{
        width: 65px;
    }
    .page p span{
        width: calc(100% - 65px);
    }
    a.back{
        width:140px;
        font-size:17px;
    }
    .news_detail .content h2{
        font-size:32px;
    }
}
@media(max-width: 1280px){
    .n_top {
        padding: 75px 0 55px;
    }
    .n_top .index_t1{
        font-size: 36px;
    }
    .n_top p,.n_top p span{
        font-size:17px;
    }
    .news_list{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px 30px;     
    }
    .news_detail h1{
        font-size:32px;
        margin-bottom:75px;
        font-weight:500;
    }
    .news_detail .content{
        font-size:15px;
    }
    .news_detail_top {
        margin: 30px 0 50px;
    }
}
@media(max-width: 1199px){
    .n_news{

    }

    h1.title{
        font-size:20px;
    } 
    .info_title{
        padding-bottom: 10px;
        margin-bottom:15px;
    }
    .news_detail{
        padding:50px 0 0;
    }
    .news_detail h1{
        font-size:28px;
    }
    .news_detail_date{
        font-size:32px;
    }
    .news_detail_date font{
        font-size:18px;
    }
}
@media(max-width: 992px){
    .n_top .index_t1{
        font-size: 32px;
    }
    .n_news_cont{
        /*padding:0 0 75px;*/
    } 
    .page,.case_back{
        width:100%;
    }
    .case_back{
        display: flex;
        justify-content: center;
        margin-top: 35px;        
    }
    /*a.back{*/
    /*    margin:35px auto 0;*/
    /*}*/
    .news_detail_l{
        width: 68%;
    }
    .news_detail_r{
        width: 28.2%;
    }
    .news_detail_r h2{
        font-size:24px;
    }
    .news_detail .content h2{
        font-size:28px;
    }
}
@media(max-width: 820px){
    .n_news{

    }
    .n_top {
        padding: 55px 0 55px;
    }
    .n_top .index_t1{
        font-size: 28px;
    }
    .n_top p{
        margin-top: 20px;
    }
    .n_top p,.n_top p font{
        font-size:16px;
    }

    .news_list{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px 30px;     
    }
    .news_detail h1{
        font-size:26px;
        margin-bottom: 55px;
    }
    .news_detail_top {
        margin: 25px 0 40px;
    }
    .news_detail_bottom{
        padding: 30px 0 60px;
        margin-top: 40px;
    }
    .news_detail .content h2{
        font-size:24px;
    }
}
@media(max-width: 767px){
    .n_news_cont{
        /*padding:0 0 55px;*/
    }
    .n_top {
        padding: 40px 0 40px;
    }
    .n_top .index_t1{
        font-size: 24px;
    }
    .n_top p{
        margin-top: 20px;
    }
    .n_top p,.n_top p font{
        font-size:15px;
        line-height:1.6;
    }   
    .n_top p span{
        display:none;
    }
    .n_top p font{
        display:block;
    }
    .news_list{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;     
    }  
    .news_detail h1{
        margin-bottom:45px;
        font-size:24px;
    } 
    .news_detail_l,.news_detail_r{
        width:100%;
    }
    .news_share,.news_detail_date{
        width:100%;
    }
    .news_share{
        justify-content:flex-start;
    }
    .news_detail_date{
        margin-top:25px;
    }
    .news_detail_r{
        margin-top:25px;
        margin-bottom:75px;
    }
    .tj_news li .img img{
        width:100%;
    }
    .pc_news_banner{
        display: none;
    }
    .m_news_banner{
        display: block;
    }
    .news_detail .content h2{
        font-size:20px;
    }
    .news_detail_r h2{
        font-size:20px;
    }
    .page p,.page p span, .page p span a{
        font-size:14px;
        line-height:1.8;
    }
    .page p font{
        width: 58px;
    }
    .page p span{
        width: calc(100% - 58px);
    }
}
@media(max-width: 640px){
    .n_news{

    }
 
}
@media(max-width: 500px){
    .news_list{
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 40px;     
    } 
    .news_list li a .img img{
        width:100%;
    }
}


/*ÁªÏµ*/
.n_contact{

}


@media(max-width: 1600px){

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

/*ÁôÑÔ*/
.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;
    }
}


#job3{
    background:#f1f1f1;
    padding:100px 0 130px;
}
#job3 h2{
    text-align: center;
    font-size:44px;
    color: #333333;
    line-height: 1;
    margin-bottom: 42px;
}
.job_list{

}
.job_list li{
    background:#ffffff;
    margin-bottom: 10px;
}
.job_top{
    padding:0 60px;    
}
.job_t{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    cursor: pointer;
}
.job_list li.on .job_t{
    border-bottom:1px solid #e0e0e0;
}
.j1{
   width: 31%;    
}
.j_name{
    font-size:20px;
    color: #333333;
    font-weight: bold;
}
.j_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 32px 0;
    width: 45%;
}
.j_c p{
    font-size:16px;
    color: #999999;
    padding-left: 24px;
}
.j_c p:nth-child(1){
    background:url(../images/job_ico1.png) no-repeat left center;
}
.j_c p:nth-child(2){
    background:url(../images/job_ico2.png) no-repeat left center;
}
.j_c p:nth-child(3){
    background:url(../images/job_ico3.png) no-repeat left center;
}
.j_c p:nth-child(4){
    background:url(../images/job_ico4.png) no-repeat left center;
}
.j_date{
    width: 24%;
    float: right;
    font-size:16px;
    color: #999999;
    text-align: right;
}
.j_date span{
    display: inline-block;
}
.job_t i{
    display: block;
    width: 14px;
    height: 30px;
    background:url(../images/j_down.png) no-repeat center;
}

.job_list li .j_cont{
    display: none;
    padding:70px 60px;
    transition: all 0.6s ease-out;
}
.j_cont1{
    display: flex;
    flex-wrap: wrap;
}
.j_cont1 h3{
    font-size:16px;
    color: #333;
    width: 95px;
}
.j_cont1_c{
    font-size:15px;
    color: #666666;
    width: calc(100% - 95px);
}
.j_cont2{
    margin:40px 0 110px;
}
.j_contact{
    background: #f2f2f2;
    color: #5b5b5b;
    border-radius: 6px;
}
.j_contact p{
    padding:0 40px;
    line-height: 64px;
    float: left;
    font-size:14px;
    color: #5b5b5b;
    font-family: "Î¢ÈíÑÅºÚ";
}
.j_contact a{
    display: block;
    float: right;
    width: 205px;
    line-height: 64px;
    background:#4d4d4d;
    font-size:18px;
    color: #fff;
    font-family: "puhui85";
    text-align:center;
    border-radius: 6px;
}
.job_list li.on .j_cont{
    display: block;
}
.job_list li.on .j_date img{
    transform:rotate(-180deg);
}


@media(max-width: 1600px){
    #job3 h2{
        font-size:36px;
    }

    .job_top{
        padding:0 40px;
    }
    .j_c{
        padding:25px 0;
    }
    .job_list li .j_cont{
        padding:50px 40px;
    }
    .j_cont2 {
        margin: 30px 0 70px;
    }
    .j_contact p{
        line-height: 50px;
        padding: 0 30px;
    }
    .j_contact a{
        line-height: 50px;
        width: 180px;
    }
}
@media(max-width: 1280px){
    #job3 h2{
        font-size:32px;
    }
    .job_top{
        padding:0 30px;
    }
    .j_c{
        padding:15px 0;
    }
    .job_list li .j_cont{
        padding:40px 30px;
    }
    .j_cont2 {
        margin: 20px 0 40px;
    }
    .j_contact p{
        padding: 0 20px;
    }    
}
@media(max-width: 1024px){
    #job3 h2{
        font-size:28px;
    }

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

    #job3{
        padding:75px 0;
    }
    .job_top {
        padding: 0 20px;
    }
    .j_name{
        font-size:16px;
    }
    .j_c p,.j_date{
        font-size:14px;
    }  
    .j_c p{
        padding: 0 20px;
    }  
    .job_list li .j_cont {
        padding: 30px 20px;
    }    
}
@media(max-width: 767px){
    #job3{
        padding:50px 0;
    }
    #job3 h2{
        margin-bottom: 25px;
        font-size: 22px;
    }
    .job_list li{
        margin-bottom: 12px;
    }
    .job_top {
        padding: 0 10px;
    }
    .j_name{
        padding:5px 0;
        width: 76%;
    }
    .j_c,.j_c p{
        display: none;
    }
    .j_cont1 h3{
        width: 100%;
        font-size:15px;
    }
    .j_cont1_c{
        width: 100%;
        font-size:14px;
    }
    .job_list li .j_cont {
        padding: 20px 10px;
    }
    .j_contact{
        padding:15px 0 0;
    }
    .j_contact p{
        width: 100%;
        line-height: 2em;
        float: none;
    }
    .j_contact a{
        float: none;
        margin:15px auto 0;
        line-height: 42px;
        width: 120px;
        font-size:15px;
    }    
}


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;
}
/*2025ÓÒ²à¸¡¶¯À¸*/
.right_fixed{
    position: fixed;
    top: calc(45%);
    transform:translateY(-50%);
    right: 20px;
    margin: auto 0;
    max-width: 100% !important;
    width:54px;
    background:#ECE8DD;
    border-radius: 50px;
    z-index: 9999;
}
.right_fixed dl{
    width:100%;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    position: relative;
}
.right_fixed dl dt{
    padding:14px 12px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}
.right_fixed dl:first-child dt{
    border-radius: 50px 50px 8px 8px;
}
.right_fixed dl:last-child dt{
    border-radius: 8px 8px 50px 50px;    
}
.right_fixed dl dt:hover{
    background:#fff;
}
/*.right_fixed dl:last-child dt:hover{
    background:none;
}*/
.right_fixed dl dt img{
    max-width: 30px;
    max-height: 30px;
}
.right_fixed dl dt p{
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    width: 100%;
    text-align: center;
    cursor: default;
}
.right_fixed dl dd{
    position: absolute;
    top: 50%;
    right: 100%;
    padding-right: 18px;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px) translateY(-50%);
    opacity: 0;
    transition: all .5s;
    z-index: 99999;
}
.right_fixed dl:hover dd{
    visibility: visible;
    pointer-events: all;
    transform: translateX(0) translateY(-50%);
    opacity: 1;    
}
.right_fixed_box{
    position: relative;
    z-index: 1;
    width: 220px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 19px 10px rgba(22, 44, 112, .05);
    border-radius: 8px;
    padding: 12px 15px ;
}
.right_fixed_box:after{
    content: "";
    position: absolute;
    right: calc(-16px / 1.414 / 2);
    top: 50%;
    z-index: -1;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(45deg);
    background: #fff;
}
.right_fixed_box2{
    width: 156px;
    padding:15px;
}
.right_fixed_tel a{
    font-size:18px;
    color: #333;
    font-weight: 700;
}
.right_fixed_code{

}
.right_fixed_code img{
    max-width: 106px;
}
@media(max-width: 1600px){
    .online-server{
        right:5px;
    }
}
@media(max-width: 991px){
    .online-server{
        display: none!important;
    }
}
@media(max-width: 768px){
    h1.title{
        font-size: 18px;
    }
}

.pageController{
    text-align: center;
    font-size: 16px;
    color:#000000;
    margin:0 auto;
    margin-top:90px;
}
.pageController a{
    display: inline-block;
    text-align: center;
    vertical-align:middle; 
    font-size:16px;
    color:#000;
    margin-right:3px;
    width:36px;
    height: 36px;
    line-height: 36px;
    cursor:pointer;
    margin:0 6px;
}
.pageController a:hover{
    color:#fff; 
    background:#0000eb;
    text-decoration:none; 
}
.pageController .currPage {background-color: #0000eb;color:#fff;}
.pageController .t1{
/*    float:left;
    margin-right:10px;
    height:24px;
    line-height:22px;*/
/*    white-space:nowrap;*/
    display: none;
}
.pageController .t2{
    vertical-align:middle;
    line-height:1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.pageController .t2 #current{
    background-color: #0000eb;
    color:#fff;
    display: inline-block;
    text-align: center;
    vertical-align:middle; 
    font-size:16px;
    margin:0 6px;
    width:36px;
    height: 36px;
    line-height: 36px;
    cursor:pointer;
}
.pageController .t1 span{
    /*padding-left:4px;
    padding-right:4px;*/
    width: 36px;
}
.pageController select{height:24px;vertical-align:middle;text-align:center;line-height:24px;
    display: none;
}
.pageController select option{vertical-align:middle;}
.pageController .t2 a.cur1{
    font-size:0;
    background:url(../images/page_left.png) no-repeat center;
    display: none;
}
.pageController .t2 a.cur2{
    font-size:0;
    background:url(../images/page_right.png) no-repeat center;
    display: none;
}
.pageController a:nth-child(1){
    margin-left: 0;
}
.pageController a:last-child{
    margin-right: 0;
}
.pageController .t2 a.cur3{
    /*background: none!important;*/
}
.pageController .t2 .page_prev,.pageController .t2 .page_next{
    display: inline-block;
    width: 36px;
    height: 36px;
}
.pageController .t2 .page_prev img,.pageController .t2 .page_next img{
    display: none;
}
.pageController .t2 .page_prev{
    background:url(../images/page_l.png) no-repeat center;
    margin-right:0px;
    margin-left: 0;
}
.pageController .t2 .page_prev:hover{
    background:url(../images/page_l_h.png) no-repeat center;
}
.pageController .t2 .page_next{
    background:url(../images/page_r.png) no-repeat center;
    margin-left:0px;
    margin-right: 0;
}
.pageController .t2 .page_next:hover{
    background:url(../images/page_r_h.png) no-repeat center;
}
/* 前台分页禁用样式 */
.page_prev.disabled, .page_next.disabled{
    opacity: 0.5;
    cursor: not-allowed; /* 禁用光标 */
    text-decoration: none; /* 移除下划线 */
    pointer-events: none; /* 阻止点击 */
}

.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;
    }
    .pageController{
        margin-top:55px;
    }
}
@media(max-width:767px){
    /*.m_f_fixed{*/
    /*    display: flex;*/
    /*}*/
    .pageController{
        margin-top:35px;
    }
}


/*¿Í·þ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;
}