body{
    background: rgb(249, 249, 249);
}
.fy_bann{
    width:100%;
    height:22vw;
    overflow: hidden;
}
.fy_bann img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.fy_bann_text{
    position: absolute;
    top:0;
    left:0;
    z-index: 2;
    width:100%;
    height:100%;
    padding-top: 10vw;
    box-sizing: border-box;
}
.fy_bann_cn{
    font-size: 1.8vw;
    color:#fff;
    font-weight: bold;
    line-height: 1.5;
}
.fy_bann_en{
    font-size: 0.9vw;
    color:#fff;
    font-weight: bold;
    line-height: 1.5;
    text-transform: capitalize;
}
.fy_main{
    width:85%;
    margin:50px auto 100px;
}
.fy_nav_box {
    float: left;
    width: 300px;
    border-radius: 8px;
    margin-right: 100px;
    /* 背景图路径建议使用绝对路径或确保相对路径正确，避免加载失败 */
    background: #F9F9F9 url(../images/fy_nav_bg1.png) no-repeat top right;
    padding: 30px 20px 150px 0; /* 简化内边距写法（上下左右顺序：上 左右 下） */
    box-sizing: border-box;
    position: relative;
    /* z-index: 100; */
    /* 恢复阴影并优化：轻微阴影更自然，避免厚重感 */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  }
  
  .fy_nav_box::after {
    content: "";
    /*兼容Safari浏览器*/-webkit-backdrop-filter: blur(10px);

    /*调整透明度：降低白色占比，避免与主背景冲突*/background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 15px;
    bottom: 15px;
    right: -5px;
    z-index: -1;
    width: 30px;
    /*移除height:;
    100%（与top/bottom冲突，冗余）*/
    box-shadow: 5px 5px 10px rgba(153, 153, 153, 0.1);
    /*降低阴影浓度，更协调*//*增加圆角，与主盒子风格统一*/border-radius: 4px;
    /*性能优化：告知浏览器提前准备渲染*/will-change: backdrop-filter;
    /* filter: blur(3px);
    /*应用5px的模糊效果*/
    -webkit-filter: blur(3px);
    backdrop-filter: blur(3px); 
}
.left_bg_b_box{
    margin-top: 20px;
}
.left_bg_b_box img{
    width:100%;
    height:auto;
}
.fy_nav{
    width:100%;
    margin-top: 30px;
}
.fy_nav_box .fy_nav_tit{
    font-size: 2.2vw;
    color:#1465ea;
    font-weight: bold;
    line-height: 1.5;
}
.fy_nav_box .fy_nav_subtit{
    font-size: 14px;
    color:#1465ea;
    text-transform: uppercase;
    line-height: 1.5;
}
.fy_content{
    float:left;
    width:calc(100% - 400px);
}
/* .fy_nav1:not(:last-child){
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
} */
.fy_nav1_link{
    font-size: 18px;
    color:#333;
    display: block;
    width:100%;
    height:50px;
    line-height: 50px;
    border-radius: 6px;
    padding:0 15px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.fy_nav1:not(:last-child){
    margin-bottom: 10px;
}
.fy_nav1_link::after{
    content:"";
    position: absolute;
    top:21px;
    right:15px;
    width:6px;
    height:6px;
    border-right: 1px solid #444;
    border-bottom: 1px solid #444;
    transform: rotate(-45deg);
}
.fy_nav1_link.active,
.fy_nav1_link:hover{
    background: #1465ea;
    color:#fff;
}
.fy_nav1_link.active::after,
.fy_nav1_link:hover::after{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.fy_nav_box .nav_contact{
    width:100%;
    margin-top: 5vw;
}
.fy_nav_box .nav_contact .tit{
    font-size: 18px;
    color:#39414D;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}
.fy_nav_box .nav_contact .subtit{
    font-size: 14px;
    color:#808080;
    line-height: 1.5;
}
.fy_nav_box .nav_contact .block{
    margin-top: 30px;
}
.fy_nav_box .nav_contact .block p{
    font-size: 16px;
    color:#39414D;
    font-weight: bold;
    line-height: 1.8;
}
.fy_nav_box .nav_contact .block .contact_info{
    height:24px;
}
.fy_nav_box .nav_contact .block .contact_info .icon{
    float:left;
    margin-right: 5px;
    height:24px;
}
.fy_nav_box .nav_contact .block .contact_info .icon img{
    width:16px;
    height:16px;
    vertical-align: middle;
}
.fy_nav_box .nav_contact .block .contact_info .text{
    float:left;
    font-size: 16px;
    line-height: 24px;
    color:#1465EA;
    font-weight: bold;
    vertical-align: middle;
}



/* .fy_nav1_open.active img,
.fy_nav1_link_box:hover .fy_nav1_open img{
    filter: brightness(0) invert(1);
} */

/* .fy_nav1_link.active::before{
    content:"";
    position: absolute;
    top:-12px;
    left:-12px;
    width:24px;
    height:24px;
    border-radius: 50%;
    background: rgb(20, 101, 239);
    z-index: 5;
} */
/* .fy_nav2_box{
    padding-left: 1vw;
    box-sizing: border-box;
    display: none;
}
.fy_nav2_box.openTwo{
    display: block;
}
.fy_nav2{} 
.fy_nav2_kink{
    font-size: 16px;
    color:#333;
    line-height: 45px;
    display: block;
}
.fy_nav3_box{
    display: none;
}
.fy_nav3_box.openThree{
    display: block;
}
.fy_nav3{
    padding-left: 1vw;
    box-sizing: border-box;
}
.fy_nav3_link{
    font-size: 16px;
    color:#333;
    line-height: 35px;
    display: block;
}
.fy_nav4_box{
    padding-left: 10px; 
    box-sizing: border-box;
    border-left: 1px solid #ddd;
    margin-top: 5px;
    margin-bottom: 5px;
    display: none;
}
.fy_nav4_box.openFour{
    display: block;
}
.fy_nav4{
    line-height: 1;
}
.fy_nav4_link{
    font-size: 16px;
    color:#333;
    line-height: 35px;
    display: block;
}
.fy_nav1_open{
    position: absolute;
    top:13px;
    right:10px;
    width:24px;
    height:24px;
}
.fy_nav1_open img,
.fy_nav2_open img{
    width:100%;
    height:100%;
}
.fy_nav2_open{
    position: absolute;
    top:15px;
    right:10px;
    width:16px;
    height:16px;
}
.fy_nav3_open{
    position: absolute;
    right:15px;
    top:15px;
    width:8px;
    height:2px;
    background: #666;
} */



.fy_top{
    width:100%;
    margin-bottom: 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.fy_top .fy_tit{
    font-size: 26px;
    font-weight: bold;
    color:#1465ea;
    line-height: 1;
}
.fy_top .fy_tit::before{
    content:"";
    position: absolute;
    left:0;
    bottom:-18px;
    width:6px;
    height:6px;
    border-radius: 50%;
    border:1px solid #1465ea;
}
.fy_top .fy_tit::after{
    content:"";
    position: absolute;
    left:6px;
    bottom:-15px;
    width:calc(100% - 6px);
    height:1px;
    background: #1465ea;
}
.fy_subtit{
    font-size: 1vw;
    color:#1465ea;
    font-weight: normal;
    line-height: 1.5;
    width:24vw;
    margin-top: -2vw;
}
.path_box{
    background: url(../images/path_bg.png) no-repeat left bottom / contain;
    position: absolute;
    bottom:-15px;
    right:0;
    height:50px;
}
.dqwz{
    line-height:50px;
    padding-left: 80px;
    box-sizing: border-box;
}
.dqwz li{
    float:left;
}
.dqwz li,
.dqwz li a{
    font-size: 14px;
    color:#aaa;
}
.dqwz li.active{
    color:#1465ea;
}


/* 关于 */
.fy_about{}
.fy_about p{
    font-size: 16px;
    color:#333;
    line-height: 1.8;
    margin-bottom: 1vw;
}
.fy_about img{
    max-width: 100% !important;
    height:auto !important;
    margin-bottom: 1vw;
}

/* 荣誉资质 */
/* .ryzz_list{
    width:100%;
    overflow: hidden;
    margin-bottom: 5vw;
    height:calc(34vw + 120px);
    padding-bottom: 90px;
    box-sizing: border-box;
}
.ryzz_list .swiper-pagination-bullet{}
.ryzz_list .swiper-pagination-bullet-active{
    background:#1465ea;
}
.ryzz_list .swiper-slide{
    width:100%;
    height:17vw;
}
.ryzz_list .pic_box{
    width:100%;
    height:15vw;
    overflow: hidden;
}
.ryzz_list .pic_box img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.ryzz_list p{
    font-size: 1vw;
    color:#333;
    height:2vw;
    line-height: 2vw;
}
.ryzz_list .swiper-slide:hover .pic_box img{
    transform: scale(1.1);
} */
.ryzz_list li{
    float:left;
    width:22%;
    background: #fff;
    border-radius: 6px;
    padding:15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.ryzz_list li:not(:nth-child(4n)){
    margin-right: 4%;
}
.ryzz_list li .pic_box{
    width:100%;
    height:20vw;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.ryzz_list li:hover p{
    color: #1465EA;
}
.ryzz_list li .pic_box img{
    width:100%;
    height:auto; 
    /* transform: scale(1); */
    transition: all 0.4s ease;
}
.ryzz_list li:hover .pic_box img{
    /* transform: scale(1.1); */
    color: #1465EA;
}
.ryzz_list li p{
    font-size: 16px;
    color:#39414D;
    text-align: center;
    line-height: 1.5;
    height:72px;
    transition: all 0.4s ease;
}

.qtry_list{
    padding-bottom: 50px;
    box-sizing: border-box;
}
.qtry_list li{
    float:left;
    width:30%;
    line-height: 3vw;
    position: relative;
}
.qtry_list li::before{
    content:"";
    position: absolute;
    top:calc(50% - 0.3vw);
    left:0;
    width:4px;
    height:0.6vw;
    border-radius: 2px;
    /* background: #333; */
    background: #1465EA;
    transition: all 0.2s ease;
}
.qtry_list li:not(:nth-child(3n)){
    margin-right: 5%;
}
.qtry_list li a{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 15px;
    box-sizing: border-box;
    font-size: 0.9vw;
    color:#444;
    transition: all 0.2s ease;
}
.qtry_list li:hover::before {
    background:#1465ea;
}
.qtry_list li:hover a{
    color:#1465ea;
}
.ryzz_more{
    /* width:5vw;
    height:2vw;
    line-height: 2vw;
    text-align: center;
    border-radius: 1vw;
    background: #1465ea;
    transition: all 0.4s ease; */
    position: absolute;
    right:0;
    bottom:0;
    padding-right: 15px;
    box-sizing: border-box;
    z-index: 15;
}
.ryzz_more::after{
    content:"";
    width:8px;
    height:8px;
    position: absolute;
    right:5px;
    top:5px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(-45deg);
    transition: all 0.4s ease;
}
.ryzz_more a{
    font-size:18px;
    color:#333;
    line-height: 1;
    transition: all 0.4s ease;
}
.ryzz_more:hover::after{
    right:3px;
    border-right: 1px solid #1465ea;
    border-bottom: 1px solid #1465ea;
}
.ryzz_more:hover a{
    color:#1465ea;
}

/* 技术服务 */
.fy_service{}
.fy_service .service_block{}
.fy_service .service_block:not(:last-child){
    margin-bottom: 80px;
}
.fy_service .service_block .tit{
    font-size: 1.3vw;
    color:rgb(20, 101, 239);
    margin-bottom: 25px;
}
.fy_service .table .tr.th_box{
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 15px;
    box-sizing: border-box;
}
.fy_service .table .tr.td_box{
    height:80px;
}
.fy_service .table .tr.td_box:last-child{
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.fy_service .table .tr{

}
.fy_service .table .tr li{
    float:left;
    font-size: 16px;
    color:#333;
    line-height: 1.5;
}
.fy_service .table .tr li:nth-child(1){
    width:25%;
    padding-right: 30px;
    box-sizing: border-box;
}
.fy_service .table .tr li:nth-child(2){
    width:10%;
}
.fy_service .table .tr li:nth-child(3){
    width:55%;
    padding-right: 50px;
    box-sizing: border-box;
}
.fy_service .table .tr li:nth-child(4){
    width:10%;
    text-align: center;
}
.fy_service .download{
    font-size: 16px;
    color:rgb(20, 101, 239);
    position: relative;
}
.fy_service .download::after{
    content:"";
    width:6px;
    height:6px;
    position: absolute;
    right:-10px;
    top:7.8px;
    border-right: 1px solid rgb(20, 101, 239);
    border-bottom: 1px solid rgb(20, 101, 239);
    transform: rotate(-45deg);
}
.fy_service .service_block .more{
    width:100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 16px;
    color:#333;
    position: relative;
}
.fy_service .service_block .more::after{
    content:"";
    width:6px;
    height:6px;
    position: absolute;
    right:0px;
    top:7.8px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
}

/* 联系 */
.contact_content{
    position: relative;
    padding:3vw;
    box-sizing: border-box;
    background:#fff url(../images/contact_bg.png) no-repeat bottom right / 24vw 14vw;
}
.contact_content .contact_block,
.contact_content .yxzx_content{
    margin-bottom: 5vw;
}
.contact_content .company_branch{
    font-size:1vw;
    font-weight: bold;
    color:#1465ea;
    line-height: 2;
}
.contact_content .company_name{
    font-size: 1.5vw;
    color:#333;
    font-weight: bold;
    line-height: 2;
}
.contact_content .ewm_list{
    position: absolute;
    top:2.5vw;
    right:2.5vw;
}
.contact_content .ewm_list li{
    float:left;
    margin-left: 1vw;
}
.contact_content .ewm_list li .pic_box{
    width:6vw;
    height:6vw;
}
.contact_content .ewm_list li .pic_box img{
    width:100%;
    height:100%;
}
.contact_content .ewm_list li p{
    font-size: 16px;
    color:#333;
    text-align: center;
    margin-top: 5px;
}
.contact_content .contact_text{
    font-size:0.9vw;
    color:#333;
    line-height: 1.8;
}
.contact_content .yxzx_tit{
    color:#39414D;
    font-size: 1.5vw;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact_content .yxzx_content{
    display: flex;
}
.contact_content .yxzx_content .contact_block{
    width:auto;
    margin-bottom: 0;
    box-sizing: border-box;
}
.contact_content .yxzx_content .contact_block:nth-child(1){
    padding-right: 6vw;
    border-right: 1px solid #eee;
}
.contact_content .yxzx_content .contact_block:nth-child(2){
    padding-left: 6vw;
}

/* 在线留言 */
.fy_online_message{}
.fy_online_message .tit{
    font-size: 1.8vw;
    color:#333;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0.8vw;
}
.fy_online_message .subtit{
    font-size: 0.8vw;
    color:#333;
    text-align: center;
    line-height: 1.5;
}
.message_content{
    margin-top: 50px;
}
.message_item{
    margin-bottom: 1.5vw;
    float:left;
}
.message_item label{
    font-size: 0.8vw;
    color:#333;
    line-height: 2.5;
}
.message_item label .required{
    font-weight: bold;
    color:rgb(20, 101, 239);
}
.message_item input{
    width:100%;
    height:60px;
    background: #f5f5f5;
    border-radius: 4px;
    padding:0 20px;
    box-sizing: border-box;
}
.message_item.input{
    width:46%;
}
.message_item.input.name,
.message_item.input.email{
    margin-right: 8%;
}
.message_item.textarea{
    width:100%;
}
.message_item textarea{
    width:100%;
    height:150px;
    background: #f5f5f5;
    border-radius: 4px;
    padding:20px;
    box-sizing: border-box;
}
.message_item.verification_code{
    width:100%;
    margin-bottom: 4vw;
}
.message_item.verification_code input{
    float:left;
    width:46%;
}
.message_item.verification_code .yzm{
    float:left;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
}
.message_item.verification_code .yzm img{
    cursor: pointer;
    height:60px;
}
.message_item.verification_code .refresh{
    float:left;
    width:30px;
    height:30px;
    border-radius: 50%;
    background: #b3b3b3;
    margin-top: 15px;
}
.message_item.verification_code .refresh img{
    width:16px;
    height:16px;
}
.fy_online_message .operate_btn{
    width:300px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}
.fy_online_message .operate_btn .btn{
    font-size: 16px;
    padding:8px 30px;
    border-radius: 4px;
    margin-top: 30px;
}
.fy_online_message .operate_btn .reset_btn{
    float:left;
    color:#333;
    background: #ddd;
}
.fy_online_message .operate_btn .submit_btn{
    float:right;
    color:#fff;
    background:rgb(20, 101, 239);
}

/* 新闻列表 */
.fy_news_list{
    width:100%;
}
.fy_news_list2{
    margin-top: 2.5vw;
}
.news_list{
    width:100%;
}
.news_list li{
    float:left;
    width:32%;
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: 1.5vw;
    padding-bottom: 0.5vw;
    box-sizing: border-box;
}
.news_list li:not(:nth-child(3n)){
    margin-right: 2%;
}
.news_list li .pic_box{
   width:100%;
   height:15vw;
   overflow: hidden;
}
.news_list li .pic_box img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.news_list li .pic_box img::before{
    display: block;
    width: 100%;
    height: 100%;
    content: "暂无图片";
    text-align: center;
    box-sizing: border-box;
    padding-top: 6vw;
    font-size:24px;
    color: #fff;
    font-weight: bold;
    background-color: rgba(20, 101, 239,0.5);
}
.news_list li .text_box{
    padding: 0 10px;
}
.news_list li .text_box .title{
   font-size: 1vw;
   font-weight: bold;
   color:#333;
   line-height: 1.5;
   margin-top: 0.5vw;
   transition: all 0.4s ease;
}
.news_list li .text_box .desc{
    font-size: 0.9vw;
    margin-top: 8px;
    color:#666;
    line-height: 1.5;
    height:1.5vw;
    position: relative;
    padding-right: 20px;
    box-sizing: border-box;
    transition: all 0.4s ease;
}
.news_list li .text_box .desc::after{
    content:"";
    position: absolute;
    top:calc(50% - 5px);
    right:3px;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    border-color: #999;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}
.news_list li:hover .pic_box img{
    transform: scale(1.1);
}
.news_list li:hover .title,
.news_list li:hover .desc{
    color:#1465ea;
}
.news_list li:hover .desc::after{
    border-color:#1465ea;
}

/* 视频中心 */
.fy_vedio_list{
    width:100%;
}
.vedio_list{
    width:100%;
}
.vedio_list li{
    float:left;
    width:calc(33.33% - 20px);
    margin-left: 20px;
    margin-bottom: 30px;
}
.vedio_list li .pic_box{
    width:100%;
    height:220px;
    overflow: hidden;
    position: relative;
}
.vedio_list li .pic_box::before{
    content:"";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    transition: all 0.4s ease;
}
.vedio_list li:hover .pic_box::before{
    background: rgba(0,0,0,0);
}
.vedio_list li .pic_box::after{
    content:"";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index: 3;
    background: url(../images/play_icon.png) no-repeat center center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.vedio_list li:hover .pic_box::after{
    transform: scale(1.05);
}
.vedio_list li .pic_box img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.vedio_list li p{
    font-size: 18px;
    color:#333;
    font-weight: bold;
    line-height: 1;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* 新闻详情 */
.fy_news_read{}
.fy_news_read .news_tit{
    font-size: 24px;
    font-weight: bold;
    color:#333;
    line-height: 1.5;
    margin-bottom: 10px;
}
.fy_news_read .news_info{
    font-size: 16px;
    color:#808080;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* 消息提醒 */
.page_call_message{
    margin-top:50px;
    margin-bottom: 50px;
}

/* 数字滚动 */
.numCount{ margin: 3.5vw -10px;}
.numCount ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.numCount li{ float: left; width: auto; text-align: center;}
.numCount li .item{ margin: 0 10px;}
.numCount li .numU{ line-height:1.3;font-weight: bold;border-bottom: 1px solid #1465ea;}
.numCount li .numCX{ font-size:54px; color:#1465ea;}
.numCount li .numU .unitC{font-size:100%; line-height: 1.3; margin-left: 0.3em;color:#1465ea;}
.numCount li .numU sup{vertical-align: top;}
.numCount li .numU sub{vertical-align:baseline;}
.numCount li .indc{
    font-size: 16px;
    color:#1465ea;
    line-height: 1.5;
}
.numCount li .numU.placeholder{
    opacity: 0;
    height:5px;
    overflow: hidden;
}

/* 集团概况 */
.fy_jtgk{}
.fy_jtgk .pic_list{
    width:100%;
}
.fy_jtgk .pic_list li{
    float:left;
    height:18vw;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
    /* box-shadow: 0 1px 5px rgba(230, 230, 230, 0.2); */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5vw;
}
.fy_jtgk .pic_list li:nth-child(6),
.fy_jtgk .pic_list li:nth-child(7){
    margin-bottom: 0;
}
.fy_jtgk .pic_list li:nth-child(1),
.fy_jtgk .pic_list li:nth-child(2),
.fy_jtgk .pic_list li:nth-child(3){
    width:30%;
}
.fy_jtgk .pic_list li:nth-child(1),
.fy_jtgk .pic_list li:nth-child(2){
    margin-right: 5%;
}
.fy_jtgk .pic_list li:nth-child(4),
.fy_jtgk .pic_list li:nth-child(5),
.fy_jtgk .pic_list li:nth-child(6),
.fy_jtgk .pic_list li:nth-child(7){
    width:47.5%;
}
.fy_jtgk .pic_list li:nth-child(4),
.fy_jtgk .pic_list li:nth-child(6){
    margin-right: 5%;
}
.fy_jtgk .pic_list li .pic_box{
    width:100%;
    height:15vw;
    overflow: hidden;
}
.fy_jtgk .pic_list li .pic_box img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.fy_jtgk .pic_list li:hover .pic_box img{
    transform: scale(1.1);
}
.fy_jtgk .pic_list li p{
    font-size: 1vw;
    color:#333;
    font-weight: bold;
    line-height: 3vw;
    text-align: center;
    transition: all 0.4s ease;
}
.fy_jtgk .pic_list li:hover p{
    color:#1465ea;
}
.fy_jtgk .video_box{
    width:100%;
    height:auto;
    margin-top: 3.5vw;
}
.fy_jtgk .video_box video{
    width:100% !important;
    height:auto !important;
}

/* 企业文化 */
.fy_qywh{}
.qywh_list{}
.qywh_list li{
    float:left;
    width:33.33%;
    height:20vw;
    border:1px solid #1465ea;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}
.qywh_list li .icon{
    position: absolute;
    top:2vw;
    right:2vw;
}
.qywh_list li .icon img{
    width:auto;
    height:84px;
    transition: all 0.4s ease;
}
.qywh_list li .text{
    position: absolute;
    left:2vw;
    bottom:2vw;
    transition: all 0.4s ease;
}
.qywh_list li .text .tit,
.qywh .text div{
    font-size: 1vw;
    font-weight: bold;
    color:#1465ea;
    line-height: 1.5;
    margin-bottom: 0.5vw;
    transition: all 0.4s ease;
}
.qywh_list li .text .desc,
.qywh_list li .text .desc p,
.qywh .text p{
    font-size: 1vw;
    color:#333;
    line-height: 1.5;
    height:3vw;
    transition: all 0.4s ease;
}
.qywh_list li:hover{
    background: #1465ea;
}
.qywh_list li:hover .icon img{
    transform: scale(1.05);
    filter: brightness(0) invert(1);
}
.qywh_list li:hover .text{
    left:2.1vw;
    bottom:2.1vw;
}
.qywh_list li:hover .text .tit,
.qywh_list li:hover .text .desc,
.qywh_list li:hover .text .desc p{
    color:#fff;
}
.fy_qywh .qywh{
    margin-top: 2.5vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1465ea;
}
.fy_qywh .qywh .text{}
.fy_qywh .qywh .icon{
    max-width: 25vw;
    cursor: pointer;
}
.fy_qywh .qywh .icon img{
    width:100%;
    height:auto;
}

/* 社会责任 */
.fy_shzr{}
.fy_shzr .slogan{
    width:100%;
    height:12vw;
    border-radius: 10px;
    overflow: hidden;
    background: url(../images/shzr_slogan.jpg) no-repeat 100% 100% / cover;
    margin-bottom: 2.5vw;
    padding:3vw 2vw;
    box-sizing: border-box;
}
.fy_shzr .slogan .slogan_tit{
    font-size: 2vw;
    color:#fff;
    font-weight: bold;
    line-height: 1.5;
}
.fy_shzr .slogan .slogan_subtit{
    font-size: 1.5vw;
    color:#fff;
    line-height: 1.5;
}
.fy_shzr .qywh_list li{
    float:left;
    width:48%;
    height:16vw;
    /* border:1px solid #1465ea; */
    border:none;
    box-sizing: border-box;
    border-radius: 6px;
    margin-bottom: 2vw;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 12vw 12vw;
}
.fy_shzr .qywh_list li:not(:nth-child(2n)){
    margin-right: 4%;
}
/* 背景图案 */
.fy_shzr .qywh_list li:nth-child(1){
    background-image: url(../images/shzr_index_bg1.png);
}
.fy_shzr .qywh_list li:nth-child(2){
    background-image: url(../images/shzr_index_bg2.png);
}
.fy_shzr .qywh_list li:nth-child(3){
    background-image: url(../images/shzr_index_bg3.png);
}
.fy_shzr .qywh_list li:nth-child(4){
    background-image: url(../images/shzr_index_bg4.png);
}
.fy_shzr .qywh_list li:hover{
    background-color: #1465ea;
}
.fy_shzr .qywh_list li:hover:nth-child(1){
    background-image: url(../images/shzr_index_active_bg1.png);
}
.fy_shzr .qywh_list li:hover:nth-child(2){
    background-image: url(../images/shzr_index_active_bg2.png);
}
.fy_shzr .qywh_list li:hover:nth-child(3){
    background-image: url(../images/shzr_index_active_bg3.png);
}
.fy_shzr .qywh_list li:hover:nth-child(4){
    background-image: url(../images/shzr_index_active_bg4.png);
}
/* 图标背景 */
.fy_shzr .qywh_list li::after{
    content: '';
    position: absolute;
    top:2vw;
    right:2vw;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100% 100%;
    z-index: 2;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}
.fy_shzr .qywh_list li:nth-child(1)::after{
    width:5.6vw;
    height:5.1vw;
    background-image: url(../images/shzr_bg1.png);
}
.fy_shzr .qywh_list li:nth-child(2)::after{
    width:5.2vw;
    height:4.6vw;
    background-image: url(../images/shzr_bg2.png);
}
.fy_shzr .qywh_list li:nth-child(3)::after{
    width:4.3vw;
    height:6vw;
    background-image: url(../images/shzr_bg3.png);
}
.fy_shzr .qywh_list li:nth-child(4)::after{
    width:5.4vw;
    height:5.6vw;
    background-image: url(../images/shzr_bg4.png);
}
.fy_shzr .qywh_list li:hover::after{
    filter:none;
}
/* 图标 */
.fy_shzr .qywh_list li .icon{
    z-index: 3;
}
.fy_shzr .qywh_list li .icon img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.fy_shzr .qywh_list li:nth-child(1) .icon{
    width:5.6vw;
    height:5.1vw;
}
.fy_shzr .qywh_list li:nth-child(2) .icon{
    width:5.2vw;
    height:4.6vw;
}
.fy_shzr .qywh_list li:nth-child(3) .icon{
    width:4.3vw;
    height:6vw;
}
.fy_shzr .qywh_list li:nth-child(4) .icon{
    width:5.4vw;
    height:5.6vw;
}
.fy_shzr .qywh_list li:nth-child(1) .icon img{
    width:4.8vw;
    height:4.3vw;
}
.fy_shzr .qywh_list li:nth-child(2) .icon img{
    width:4.3vw;
    height:3.8vw;
}
.fy_shzr .qywh_list li:nth-child(3) .icon img{
    width:3.4vw;
    height:5vw;
}
.fy_shzr .qywh_list li:nth-child(4) .icon img{
    width:4.5vw;
    height:4.6vw;
}
.fy_shzr .qywh_list li .text{
    bottom:8vw;
    padding-right: 8vw;
    box-sizing: border-box;
    height:5vw;
}
.fy_shzr .qywh_list li .desc p{
    height:auto;
    line-height: 1.8;
    font-size: 0.9vw;
    color:#808080;
}
.fy_shzr .qywh_list li .text .tit{
    font-size: 1.5vw;
}

/* 诚信经营 */
.fy_cxjy{}
.cxjy_list{
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}
.cxjy_list li{
    height:4vw;
    line-height: 4vw;
}
.cxjy_list li:not(:last-child){
    border-bottom: 1px solid #eee;
}
.cxjy_list li .title{
    float:left;
    width:40%;
    margin-right: 10%;
    font-size: 0.9vw;
    color:#333;
}
.cxjy_list li:hover .title{
    color:#1465ea;
    text-decoration: underline;
}
.cxjy_list li .time{
    float: left;
    width:20%;
    margin-right: 10%;
    font-size: 0.9vw;
    color:#333;
}
.cxjy_list li:hover .time{
    color:#1465ea;
}
.cxjy_list li .open{
    float: left;
    width:20%;
    font-size: 0.9vw;
    color:#1465ea;
    position: relative;
    text-align: right;
    padding-right: 50px;
    box-sizing: border-box;
}
.cxjy_list li .open::after{
    content: '';
    position: absolute;
    right: 36px;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    border-color: #1465ea;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}
.cxjy_list li:hover .open::after{
    right:34px;
}
.fy_cxjy .jiandu_email{
    margin-top: 2vw;
    text-align: center;
    font-size: 1.1vw;
    color:#333;
}

/* 人才培养 */
.fy_rcpy{}
.fy_title{
    font-size: 1vw;
    color:#1465ea;
    line-height: 1.5;
}
.rcpy_list{
    width:100%;
    margin-top: 2.5vw;
    margin-bottom: 2.5vw;
    position: relative;
}
.rcpy_list .center{
    position: absolute;
    left:35%;
    top:calc(50% - 5vw);
    width:30%;
    height:10vw;
    background: #1465ea;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
}
.rcpy_list .center:hover{
    background: rgba(20, 101, 234,0.9);
}
.rcpy_list .center span{
    font-size: 1vw;
    color:#fff;
    line-height: 2;
}
.rcpy_list li{
    float:left;
    width:45%;
    height:18vw;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 100% 100%;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}
.rcpy_list li:nth-child(1),
.rcpy_list li:nth-child(2){
    margin-bottom: 4vw;
}
.rcpy_list li:nth-child(2n+1){
    margin-right: 10%;
}
.rcpy_list li .text div{
    font-size: 1.4vw;
    font-weight: bold;
    color:#1465ea;
    line-height: 1.5;
    margin-bottom: 0.5vw;
}
.rcpy_list li .text p{
     font-size: 0.9vw;
     color:#666;
     line-height: 1.8;
}
.rcpy_list li:nth-child(1){
    background-image: url(../images/rcpy_bg1.png);
}
.rcpy_list li:nth-child(2){
    background-image: url(../images/rcpy_bg2.png);
}
.rcpy_list li:nth-child(3){
    background-image: url(../images/rcpy_bg3.png);
}
.rcpy_list li:nth-child(4){
    background-image: url(../images/rcpy_bg4.png);
}
.rcpy_list li:nth-child(1) .text{
    position: absolute;
    left:2vw;
    top:2vw;
}
.rcpy_list li:nth-child(1) .icon{
    position: absolute;
    right:2vw;
    top:2vw;
}
.rcpy_list li:nth-child(2) .text{
    position: absolute;
    right:2vw;
    top:2vw;
    text-align: right;
}
.rcpy_list li:nth-child(2) .icon{
    position: absolute;
    left:2vw;
    top:2vw;
}
.rcpy_list li:nth-child(3) .text{
    position: absolute;
    left:2vw;
    top:2vw;
}
.rcpy_list li:nth-child(3) .icon{
    position: absolute;
    right:2vw;
    bottom:2vw;
}
.rcpy_list li:nth-child(4) .text{
    position: absolute;
    right:2vw;
    top:2vw;
    text-align: right;
}
.rcpy_list li:nth-child(4) .icon{
    position: absolute;
    left:2vw;
    bottom:2vw;
}
.rcpy_list li:hover{
    transform: translateY(-3px);
}
.ygfl_list{}
.ygfl_list li{
    float:left;
    width:32%;
    height:22vw;
    border:1px solid #1465ea;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 2vw;
    cursor: pointer;
    transition: all 0.4s ease;
}
.ygfl_list li:not(:last-child){
    margin-right: 2%;
}
.ygfl_list li:hover{
    transform: translateY(-3px);
}
.ygfl_list li .tit_box{
    width:100%;
    height:6vw;
    background: #1465ea;
    border-radius: 8px;
    padding:1vw 2vw;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}
.ygfl_list li .tit_box p{
    font-size: 1.8vw;
    color:#fff;
    font-weight: 600;
}
.ygfl_list li .tit_box img{
    width:auto;
    height:100%;
}
.ygfl_list li .content_box{
    padding:2vw 1vw;
    box-sizing: border-box;
    text-align: center;
    font-size:1vw;
    color:#333;
    line-height: 2.5;
}
.fy_rcpy .news_list{
    margin-top: 2.5vw;
}
.fy_rcpy .btn{
    margin-top: 2.5vw;
    margin-left: auto;
    margin-right: auto;
    width:15vw;
    height:3vw;
    line-height: 3vw;
    text-align: center;
    box-sizing: border-box;
    background: #1465ea;
    border-radius: 2vw;
    transition: all 0.4s ease;
}
.fy_rcpy .btn a{
    font-size: 1vw;
    color:#fff;
}
.fy_rcpy .btn:hover{
    background: #2970e2;
}

/* 创新平台 */
.fy_cxpt{}
.cxpt_pic{
    margin-top: 2.5vw;
    cursor: pointer;
}
.cxpt_pic img{
    width:100%;
    height:auto;
}

/* 发明专利 */
.fy_fmzl{}
.fmzl_list{
    padding-bottom: 4vw;
    box-sizing: border-box;
    margin-top: 2.5vw;
    border-bottom: 2px solid rgba(20, 101, 234,0.5);
}
.fmzl_list li{
    float:left;
    width:22%;
    margin-bottom: 1.5vw;
}
.fmzl_list li:not(:nth-child(4n)){
    margin-right: 4%;
}
.fmzl_list li .fmzl_pic{
    width:100%;
    height:18vw;
    overflow: hidden;
}
.fmzl_list li .fmzl_pic img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.fmzl_list li p{
    font-size: 1vw;
    color:#333;
    line-height: 1.5;
    margin-top: 0.5vw;
}
.fmzl_list li:hover .fmzl_pic img{
    transform: scale(1.1);
}
.fmzl_list .ryzz_more{
    bottom:1.5vw;
}
.qtzl_list{
    margin-top: 1.5vw;
    padding-bottom: 2vw;
    box-sizing: border-box;
}
.qtzl_list li{
    float:left;
    width:48%;
    line-height: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding-left: 12px;
    box-sizing: border-box;
}
.qtzl_list li:nth-child(2n+1){
    margin-right: 4%;
}
.qtzl_list li::before{
    content: "";
    position: absolute;
    left:0;
    top:calc(50% - 3px);
    width:6px;
    height:6px;
    background: #333;
    border-radius: 50%;
}
.qtzl_list li a{
    font-size: 1vw;
    color:#333;
}
.qtzl_list li:hover a{
    color:#1465ea;
}
.qtzl_list li:hover::before{
    background: #1465ea;
}

/* XX产品制程解决方案 */
.fy_jjfa{}
.jjfa_list{}
.jjfa_list li{
    float: left;
    width:48%;
    height:22vw;
    border:1px solid #1465ea;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
    transition: all 0.4s ease;
}
.jjfa_list li:first-child{
    margin-right: 4%;
}
.jjfa_list li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.jjfa_list li .icon_box{}
.jjfa_list li .icon_box img{
    width: 5vw;
    height:5vw;
    transition: all 0.4s ease;
}
.jjfa_list li p{
    font-size: 1.3vw;
    font-weight: bold;
    color:#1465ea;
    line-height: 1.5;
    margin-top: 0.5vw;
    transition: all 0.4s ease;
}
.jjfa_list li:hover{
    background: #1465ea;
}
.jjfa_list li:hover p{
    color:#fff;
}
.jjfa_list li:hover .icon_box img{
    filter: brightness(0) invert(1);
}

/* 招聘 */
.fy_job_list{}
.job_list li{
    width:100%;
    height:auto;
    margin-bottom: 2vw;
}
.job_list li .tit_box{
    width:100%;
    height:6vw;
    padding:1vw 6vw 1vw 1vw;
    box-sizing: border-box;
    position: relative;
    background: #dedede75;
    /* border-radius: 2px; */
}
.job_list li .job_tit{
    font-size: 1.2vw;
    color:#333;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
}
.job_list li .job_info{
    font-size: 0.8vw;
    color:#666;
    line-height: 1;
}
.job_list li .job_info span{
    margin:0 10px;
}
.job_list li .tit_box .btn{
    position: absolute;
    width:2vw;
    height:2vw;
    top:2vw;
    right:2vw;
}
.job_list li .btn img{
    width:100%;
    height:100%;
}
.job_list li .content_box{
    width:100%;
    height:auto;
    padding:2vw;
    box-sizing: border-box;
    background: #efefef75;
    /* background: #fff; */
    display: none;
}
.job_list li .content_box.open{
    display: block;
}
.job_list li .content_box .item{
    width:100%;
    height:auto;
}
.job_list li .content_box .item:not(:last-child){
    margin-bottom: 20px;
}
.job_list li .content_box .item_tit{
    font-size: 16px;
    font-weight: bold;
    color:#333;
    line-height: 1.5;
    margin-bottom: 5px;
}
.job_list li .content_box .item_con{
    font-size: 16px;
    color:#333;
    line-height: 1.8;
}
.job_list li .email{
    margin-top: 30px;
    color:#1465ea;
    font-size: 16px;
}

/* 产品频道页 */
.fy_cp_index{}
.cp_index_list{}
.cp_index_list li{
    width:100%;
    height:18vw;
    border-radius: 10px;
    border: 1px solid #1465ea;
    box-sizing: border-box;
    position: relative;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}
.cp_index_list li .text{
    float:left;
    height:100%;
    width:70%;
    padding:2vw;
    box-sizing: border-box;
    position: relative;
}
.cp_index_list li .icon{
    float:left;
    height:100%;
    width:30%;
    padding:2vw;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cp_index_list li .icon img{
    width:6vw;
    height:6vw;
    transition: all 0.4s ease;
}
.cp_index_list li .tit{
    font-size: 1.3vw;
    font-weight: bold;
    color:#333;
    line-height: 1.5;
    margin-bottom: 1.5vw;
    transition: all 0.4s ease;
}
.cp_index_list li .desc{
    font-size: 0.9vw;
    color:#333;
    line-height: 1.5;
    transition: all 0.4s ease;
}
.cp_index_list li .more{
    position: absolute;
    left:2vw;
    bottom:2vw;
    width:8vw;
    height:2.5vw;
    line-height: 2.5vw;
    text-align: center;
    border-radius: 2vw;
    background: #1465ea;
    font-size: 0.9vw;
    color:#fff;
    font-weight: bold;
    transition: all 0.4s ease;
}
.cp_index_list li:hover{
    background: #1465ea;
}
.cp_index_list li:hover .icon img{
    filter: brightness(0) invert(1);
}
.cp_index_list li:hover .tit,
.cp_index_list li:hover .desc{
    color:#fff;
}
.cp_index_list li:hover .more{
    background: #fff;
    color:#1465ea;
}

/* 产品大分类1 */
.fy_product{}
.fy_product ul,
.cp_fenlei1{
    width:100%;
}
.fy_product ul li,
.cp_fenlei1 li{
    float:left;
    width:calc(33.33% - 20px);
    margin-left: 20px;
    margin-bottom: 20px;
}
.fy_product ul li .pic,
.cp_fenlei1 li .pic{
    width:100%;
    height:15vw;
    overflow: hidden;
}
.fy_product ul li .pic img,
.cp_fenlei1 li .pic img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.fy_product ul li .tit,
.cp_fenlei1 li .tit{
    width:100%;
    height:3vw;
    line-height: 3vw;
    text-align: center;
    background: #e6e6e6;
    font-size: 1.2vw;
    color:#333;
    transition: all 0.2s ease;
}
.fy_product ul li:hover .pic img,
.cp_fenlei1 li:hover .pic img{
    transform: scale(1.1);
}
.fy_product ul li:hover .tit,
.cp_fenlei1 li:hover .tit{
    color:#fff;
    background: rgb(20, 101, 239);
}

/* 产品大分类2 */
.cp_fenlei2{}
.cp_fenlei2 .cp_fenlei2_li{
    float:left;
    width:calc(33.33% - 20px);
    /* margin-left: 20px; */
    margin-right: 20px;
    margin-bottom: 20px;
    height:18vw;
    border-radius: 10px;
    border: 1px solid #1465ea;
    box-sizing: border-box;
    position: relative;
    transition: all 0.4s ease;
}
.cp_fenlei2 .cp_fenlei2_li .cp_fenlei2_li_a{
    position: relative;
    z-index: 2;
    padding:1.5vw;
    box-sizing: border-box;
}
.cp_fenlei2 .cp_fenlei2_li .icon{
    position: absolute;
    right:1.5vw;
    top:6vw;
    z-index: 1;
}
.cp_fenlei2 .cp_fenlei2_li .icon img{
    width:4vw;
    height:4vw;
    transition: all 0.4s ease;
}
.cp_fenlei2 .cp_fenlei2_li .tit{
    font-size: 1.3vw;
    font-weight: bold;
    color:#333;
    line-height: 1.5;
    transition: all 0.4s ease;
}
.cp_fenlei2 .cp_fenlei2_li .more{
    position: absolute;
    left:1.5vw;
    bottom:1.5vw;
    width:6vw;
    height:2vw;
    line-height: 2vw;
    text-align: center;
    border-radius: 2vw;
    background: #1465ea;
    font-size: 0.8vw;
    color:#fff;
    font-weight: bold;
    transition: all 0.4s ease;
    z-index: 1;
}
.cp_fenlei2 .cp_fenlei2_li:hover{
    background: #1465ea;
}
.cp_fenlei2 .cp_fenlei2_li:hover .icon img{
    filter: brightness(0) invert(1);
}
.cp_fenlei2 .cp_fenlei2_li:hover .tit{
    color:#fff;
}
.cp_fenlei2 .cp_fenlei2_li:hover .more{
    background: #fff;
    color:#1465ea;
}
.cp_fenlei2 .cp_fenlei2_li .cp_fenlei2_ul2{
    position: absolute;
    left:1.5vw;
    top:4.5vw;
    z-index: 3;
}
.cp_fenlei2 .cp_fenlei2_li2{
    padding-left: 20px;
    box-sizing: border-box;
    position: relative;
    height: 36px;
    line-height: 36px;
}
.cp_fenlei2 .cp_fenlei2_li2::before{
    content:"";
    position: absolute;
    left:0;
    top:12px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid #1465ea;
    transition: all 0.4s ease;
}
.cp_fenlei2 .cp_fenlei2_li2_a{
    font-size: 16px;
    color:#333;
    transition: all 0.4s ease;
}
.cp_fenlei2 .cp_fenlei2_li:hover .cp_fenlei2_li2_a{
    color:#fff;
}
.cp_fenlei2 .cp_fenlei2_li:hover .cp_fenlei2_li2::before{
    border-left: 12px solid #fff;
}
.cp_fenlei2 .cp_fenlei2_li:hover .cp_fenlei2_li2:hover{
}
.cp_fenlei2 .cp_fenlei2_li:hover .cp_fenlei2_li2:hover .cp_fenlei2_li2_a{
    color:rgba(255,255,255,0.6);
    font-size: 18px;
}
.cp_fenlei2 .cp_fenlei2_li:hover .cp_fenlei2_li2:hover::before{
    border-left: 12px solid rgba(255,255,255,0.6);
}

/* 产品大分类3 */
.cp_fenlei3{
    width:100%;
    height:14vw;
    border-radius: 10px;
    border: 1px solid #1465ea;
    box-sizing: border-box;
    position: relative;
    padding:2vw 2vw 2vw 6.5vw;
    transition: all 0.3s ease;
}
.cp_fenlei3:hover{
    background: rgb(242, 242, 242);
}
.cp_fenlei3 .icon{
    position: absolute;
    left:1.5vw;
    top:2vw;
}
.cp_fenlei3 .icon img{
    width:4vw;
    height:4vw;
    transition: all 0.4s ease;
}
.cp_fenlei3 .text{}
.cp_fenlei3 .text .tit{
    font-size: 1.3vw;
    color:#1465ea;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 0.5vw;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1vw;
}
.cp_fenlei3 .text ul{}
.cp_fenlei3 .text ul li{
    float:left;
    width:50%;
    line-height: 2.5vw;
}
.cp_fenlei3 .text ul li a{
    font-size: 1.3vw;
    color:#333;
    position: relative;
    transition: all 0.4s ease;
}
.cp_fenlei3 .text ul li a::after{
    content:"";
    position: absolute;
    top:calc(50% - 4px);
    right: -15px;
    width: 10px;
    height: 10px;
    border-top: 1px solid;
    border-right: 1px solid;
    border-color: #333;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}
.cp_fenlei3 .text ul li a:hover{
    color:#1465ea;
    text-decoration: underline;
}
.cp_fenlei3 .text ul li a:hover::after{
    border-color: #1465ea;
}

/* 发展历程 */
.fy_fzlc{}
.fy_fzlc .tab_box{
    width:100%;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    box-sizing: border-box;
    margin-bottom: 2vw;
}
.fy_fzlc .tab_box li{
    float:left;
    height:4vw;
    line-height: 4vw;
    margin:0 0.8vw;
    padding:0 0.8vw;
    box-sizing: border-box;
    position: relative;
    transition: all 0.4s ease;
}
.fy_fzlc .tab_box li a{
    font-size: 0.9vw;
    color:#333;
    transition: all 0.4s ease;
}
.fy_fzlc .tab_box li:hover::after{
    content:"";
    position: absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background: #1465ea;
    transition: all 0.4s ease;
}
.fy_fzlc .tab_box li:hover a{
    color:#1465ea;
}
.fy_fzlc .tab_content{
    margin-top: 4vw;
    width:100%;
}
.fy_fzlc .tab_content li{
    width:100%;
    height:auto;
    position: relative;
    cursor: pointer;
}
.fy_fzlc .tab_content li .tab_con_left{
    float:left;
    height:100%;
    min-height: 12.9vw;
    width:calc(50% - 1px);
    box-sizing: border-box;
}
.fy_fzlc .tab_content li .tab_con_right{
    float:left;
    height:100%;
    min-height: 12.9vw;
    width:calc(50% - 1px);
}
.fy_fzlc .tab_content li .line{
    position: absolute;
    left:calc(50% - 1px);
    top:0;
    width:2px;
    height:100%;
    background: #dfdfdf;
}
.fy_fzlc .tab_content li .line::before{
    content:"";
    position: absolute;
    left:-9px;
    top:calc(50% - 10px);
    width:20px;
    height:20px;
    border-radius: 50%;
    background: #fff;
    border:3px solid #1465ea;
    box-sizing: border-box;
}
.fy_fzlc .tab_content li .line::after{
    content: "";
    position: absolute;
    top:50%;
    width:30px;
    height:1px;
    background: #ddd;
}
.fy_fzlc .tab_content li:nth-child(2n) .line::after{
    right:-42px;
}
.fy_fzlc .tab_content li:nth-child(2n+1) .line::after{
    left:-42px;
}
.fy_fzlc .tab_item{
    width:calc(100% - 80px);
    height:auto;
    padding:2vw;
    box-sizing: border-box;
    transition: all 0.4s ease;
}
.fy_fzlc .tab_content li:nth-child(2n) .tab_item{
    margin:0 0 0 80px;
}
.fy_fzlc .tab_content li:nth-child(2n+1) .tab_item{
    margin:0 80px 0 0;
}
.fy_fzlc .tab_item div{
    font-size: 1.6vw;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 0.5vw;
    color:#333;
    transition: all 0.4s ease;
}
.fy_fzlc .tab_item p{
    font-size: 1vw;
    line-height: 1.5;
    color:#333;
    transition: all 0.4s ease;
}
.fy_fzlc .tab_item:hover{
    background: #1465ea;
}
.fy_fzlc .tab_item:hover div{
    color:#fff;
}
.fy_fzlc .tab_item:hover p{
    color:#fff;
}

/* 产品内容页 功能薄膜 */
.fy_product_read{}
.fy_product_read .pro_into{
    width:100%;
    height:24vw;
    background: #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    padding:2vw;
    box-sizing: border-box;
}
.fy_product_read .pro_into .pic_box{
    float:left;
    width:50%;
    height:100%;
    margin-right: 5%;
    background: #eee;
}
.fy_product_read .pro_into .pic_box img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.fy_product_read .pro_into .text_box{
    float:left;
    width:45%;
    height:100%;
    padding-left: 2vw;
    box-sizing: border-box;
}
.fy_product_read .text_box .pro_into_tit{
    font-size: 1.3vw;
    color:#333;
    line-height: 1;
    margin-bottom: 1vw;
    position: relative;
}
.fy_product_read .text_box .pro_into_tit::before{
    content:"";
    position: absolute;
    left:-2vw;
    top:0;
    width:1.3vw;
    height:1.3vw;
    background: #1465ea;
    border-radius: 2px;
}
.fy_product_read .text_box .pro_into_intr{
    font-size: 0.9vw;
    color:#333;
    line-height: 1.8;
    padding-right: 1vw;
    box-sizing: border-box;
}
.fy_product_read .pro_section{
    margin-top: 5vw;
}
.fy_product_read .pro_section .title_box{
    border-bottom: 1px solid #1465ea;
    margin-bottom: 2vw;
}
.fy_product_read .pro_section .title_box p{
    padding:8px 16px;
    box-sizing: border-box;
    background: #1465ea;
    font-size: 1.3vw;
    color:#fff;
    display: inline-block;
    border-radius: 3px 3px 0 0;
}
.fy_product_read .pro_section .content_box{}
.fy_product_read .pro_section .content_box p{
    padding-left: 1.5vw;
    box-sizing: border-box;
    position: relative;
    font-size: 1vw;
    color:#333;
    line-height: 2;
}
.fy_product_read .pro_section .content_box p::before{
    content:"";
    position: absolute;
    left:0;
    top:0.5vw;
    width:1vw;
    height:1vw;
    border-radius: 50%;
    background: #1465ea;
}
.fy_product_read .pro_section .content_box p.pic::before{
    background: transparent;
}
.fy_product_read .pro_section .content_box p.pic{
    margin-top: 1vw;
}
.fy_product_read .pro_section .pic_box{
    margin-top: 2vw;
}
.fy_product_read .pro_section .pic_box img,
.fy_product_read .pro_section .content_box img{
    max-width: 100% !important;
    height:auto !important;
}
.fy_product_read .pro_section .pic_box p{
    margin-bottom: 10px;
}


/* 暂无内容 */
.zwnr{
    font-size: 16px;
    color:#333;
}

/* 上一页 下一页 */
.piaoye_page_botton {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.btn-group {
    display: inline-block;
}

.btn-default {
    padding: 5px 10px;
    border: 1px solid #1465ea;
    margin: 0 5px;
    color: #333;
    font-size: 14px;
}

#page_center_botton>span {
    background-color: #1465ea;
    color: #fff;
}

/* 招聘页面 招聘链接 */
.job_link{
    padding-top: 5vw;
}
.job_link p{
    font-size: 24px;
    color:#1465ea;
    line-height: 1.3;
    margin-bottom: 15px;
}
.job_link .job_link_item{
    width:250px;
    height:50px;
    line-height: 48px;
    border:1px solid #ccc;
    border-radius: 2px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}
.job_link .job_link_item a{
    font-size: 16px;
    color:#1465ea;
    padding:0 1vw;
    box-sizing: border-box;
    transition: all 0.4s ease;
    position: relative;
}
.job_link .job_link_item a::after{
    content: "";
    position: absolute;
    top:16px;
    right:16px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #1465ea;
    transition: all 0.4s ease;
}
.job_link .job_link_item:hover{
    background: #1465ea;
    border:1px solid #1465ea;
}
.job_link .job_link_item:hover a{
    color:#fff;
}
.job_link .job_link_item:hover a::after{
    border-left: 10px solid #fff;
}


/* 搜索页面 */
.page_search{}
.page_search .search_keyword{
    font-size: 24px;
    color:#333;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 30px;
}
.page_search .fy_product ul li{
    margin-left: 0;
    margin-right: 20px;
}
.page_search .py_page_botton{
    margin-top: 80px;
}





@media (max-width: 1680px) {
     .fy_nav_box{
        width: 280px;
        margin-right: 80px;
    }
    .fy_content{
        width:calc(100% - 360px);
    }
    .fy_nav_box .nav_contact .block .contact_info .text.email{
        font-size: 14px;
    }
}
@media (max-width: 1600px){
}
@media (max-width: 1440px){
    /* .fy_main{
        width:90%;
    } */
   .fy_nav_box{
        width: 260px;
    }
    .fy_content{
        width:calc(100% - 340px);
    }
.fy_nav_box .nav_contact .block .contact_info{
    width:110%;
}
.fy_fzlc .tab_box li a{
    font-size: 1vw;
}
.job_link .job_link_item{
    width:220px;
}
    .fy_about p{
        font-size: 15px;
    }
    .fy_nav1_link{
        font-size: 17px;
    }
    /* .fy_nav2_kink,.fy_nav3_link,.fy_nav4_link {
        font-size: 15px;
    } */
    .fy_service .table .tr li{
        font-size: 15px;
    }
    .news_list li .text_box .desc{
        font-size: 15px;
    }
    .fy_online_message .subtit{
        font-size: 1vw;
    }
    .message_item label{
        font-size: 1vw;
    }
    .message_item input {
        height: 50px;
        padding: 0 15px;
    }
    .message_item.verification_code .yzm img{
        height:50px;
    }
    .message_item textarea{
        padding:15px;
    }
    .vedio_list li .pic_box{
        height:200px;
    }
    .cp_fenlei2 .cp_fenlei2_li{
        width:calc(50% - 20px);
        height:24vw;
    }
    .cp_fenlei2 .cp_fenlei2_li .tit{
        font-size: 1.5vw;
    }
    .cp_fenlei2 .cp_fenlei2_li .more {
        width: 8vw;
        height: 3vw;
        line-height: 3vw;
        font-size: 1vw;
        left:2vw;
        bottom:2vw;
    }
    .cp_fenlei2 .cp_fenlei2_li .text{
        left:2vw;
        top:2vw;
    }
    .cp_fenlei2 .cp_fenlei2_li .icon{
        right:2vw;
    }
    .cp_fenlei2 .cp_fenlei2_li .icon img{
        width:5vw;
        height:5vw;
    }
    .job_list li .job_info{
        font-size: 0.9vw;
    }
}

@media (max-width: 1366px){
    .numCount li .numCX{
        font-size: 40px;
    }
    .fy_jtgk .pic_list li .pic_box{
        height:13vw;
    }
    .qywh_list li .icon img{
        transform: scale(0.85);
    }
    .qywh_list li:hover .icon img{
        transform: scale(0.9);
    }
    .fy_top .fy_tit{
        font-size: 22px;
    }
    .cxjy_list li .title{
        font-size: 1vw;
    }
    .rcpy_list li .icon img{
        transform: scale(0.8);
    }
    .ygfl_list li .tit_box img{
        height:85%;
    }
}

@media (max-width: 1280px){
    .news_list li .pic_box{
        display: none;
    }
    .news_list li .text_box{
        width:100%;
    }
    .news_list li{
        height:auto;
        padding:15px 0;
    }
    .news_list li .text_box .desc{
        height:auto;
        margin-bottom: 10px;
    }
    .news_list li .text_box .title{
        font-size: 18px;
        margin-bottom: 5px;
    }
    .vedio_list li .pic_box{
        height:180px;
    }
    /* .ryzz_item{
        height:21vw;
    } */
}