*, html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family: "Microsoft YaHei";
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 100%;
	font-family: Arial;
	
    min-height: none;
    min-width: none;
}
body {
    font: 14px "Microsoft YaHei","Arial Narrow",HELVETICA;
    overflow-x: hidden;
    color: #313235;
	background: #f1f1f1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img{
	display: block;
}
a{
	color:#666;
	text-decoration: none;
}
a:hover{ cursor:pointer;}

input:focus{
    outline: none;
}
.w1600{
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
}
.w1400{
    max-width: 1500px;
	width: 100%;
	margin: 0 auto;
}
.f24 {
    font-size: 24px;
}
@media (max-width: 1778px){
	.w1600{
		width: 90%;
	}
	
}


/*header*/
.header{
	width: 100%;
	background-color: #fff;
}
.header .w1600{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo 样式 */
.header .logo{
	padding: 20px 0;
}
.header .logo img {
    height: 81px;
}

/* 导航菜单样式 */
.header .box{
	height: 115px;
	list-style: none;
    display: flex;
    align-items: center;
    gap: 2%;
    flex:1;
    margin-left: 16.25%;
}
.header .nav{
	height: 100%;
	flex: 1;
	    
}
.header .nav>ul {
	height: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .nav>ul>li {
	height: 100%;
    position: relative;
}
.header .nav>ul>li>a {
	line-height: 115px;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    color: #666;
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.header .nav ul li.selected a,
.header .nav ul li a:hover {
    font-weight: bold;
	color: #8bc027;
}

/* 下拉菜单样式 */
.header .nav .drop {
    width: 150px;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform-origin: top;
    transform: rotateX(90deg) translateX(-50%);
    transition: all 0.3s;
}

.header .nav>ul>li:hover .drop{
    transform: rotateX(0deg) translateX(-50%);
}

.header .nav .drop ul {
    list-style: none;
    padding: 10px 0;
}
.header .nav .drop ul li{
    padding: 0 15px;
}
.header .nav .drop ul li a {
    font-size: 16px;
    line-height: 30px;
    display: block;
    white-space: nowrap;
    color: #666;
}
.header .nav .nav ul li:hover .drop ul li a{
    font-weight: normal;
    color: #333;
}


/* 搜索框样式 */
.header .box .search {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.header .butt-search{
	border: none;background: none;
	float: left;
	width:180px;
	line-height: 36px;
	margin-top:0px;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	-webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 10;
}
.header .inSub {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: transparent;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    cursor: pointer;
    background:url(/uploadfile/202407/icon-search.png) no-repeat center transparent;
}
.header .incla {
    display: block;
    margin-left: 26px;
    line-height: 36px;
    color: #909090;
    font-weight: lighter;
    background: transparent;
    border: none;
    padding: 0 30px 0 0px;
    box-sizing: border-box;
    width: 130px;
    font-size: 0;
}
.header .butt-search:hover {
    background: #efefef;
    border-radius: 20px;
    width: 180px;
}
.header .butt-search:hover .incla{font-size: 12px;} 
.header .dropdown-menu{
    position: absolute;
    top: 100%;
    z-index: 1100;
    background-color: #fff;
    border-top: 1px solid #cdcdcd;
    transition: none;
    height: auto;
    display: none;
    overflow: hidden;
    width: 100%;
    min-width: 1200px;
    left: 0;
    margin-top: 0;
    -ms-box-shadow: 0 2px 2px 0 rgba(0,0,0,.05);
    -o-box-shadow: 0 2px 2px 0 rgba(0,0,0,.05);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.05);
}

.language{float: left;border-left: 1px solid #e2e2e2;padding-left: 23px;margin-left: 20px;}
.language a{display:block;float: left;width:43px;height: 22px;font-size:14px;text-align: center;line-height: 22px;color: #999;border-radius: 10px;background: transparent;font-family: arial;}
.language a.on{color: #fffefe;background: #8bc027;}

@media (max-width: 1500px) {
    .header .box{
        gap: 4%;
        margin-left: 5%;
    }
}
@media (max-width: 1200px) {
    .header .box{
        gap: 1%;
        margin-left: 5%;
    }
	a.english{    padding-right: 20px;}
	.header .nav>ul>li>a{font-size: 14px;}
}
@media (max-width: 1024px) {
    .header{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999999;
    }
    .header .logo{
        padding: 15px 0;
    }
    .header .logo img{
        height: 40px;
    }
    .header .box .search{
        display: none;
    }
    .header .box{
        height: 70px;
        position: relative;
    }
    .header .box .menu{
        width: 30px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
        transition: all 0.3s;
    }
    .header .box.active .menu{
        top: 30px;
        transform: translateY(0);
        right: -25px;
    }
    .header .box .menu i{
        width: 100%;
        height: 2px;
        background-color: #000;
        display: block;
        transition: all 0.3s;
    }
    .header .box .menu i + i{
        margin-top: 8px;
    }
    .header .box.active .menu i{
        margin-top: 0;
        transform-origin: center;
        position: absolute;
        top: 50%;
    }
    .header .box.active .menu i:nth-child(1){
        transform: translateY(-50%) rotate(45deg);
    }
    .header .box.active .menu i:nth-child(3){
        transform: translateY(-50%) rotate(-45deg);
    }
    .header .box.active .menu i:nth-child(2){
        opacity: 0;
    }
    .header .nav{
        width: 100%;
        height: 0;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 998;
        overflow: hidden;
        transition: all 0.3s;
    }
    .header .box.active .nav{
        height: 100vh;
        padding-top: 60px;
        box-sizing: border-box;
        overflow-y: auto;
    }
    .header .nav>ul{
        display: block;
        align-items: normal;
        border-top: 1px solid #eee;
    }
    .header .nav>ul>li{
        width: 100%;
        height: auto;
        padding: 20px 8% 20px 5%;
        border-bottom: 1px solid #eee;
        box-sizing: border-box;
    }
    .header .nav>ul>li>a{
        line-height: 150%;
    }
    .header .nav .drop{
        width: 100%;
        position: relative;
        left: 0;
        transform: rotateX(0deg) translateX(0%);
        box-shadow: none;
        padding: 0;
    }
    .header .nav>ul>li:hover .drop{
        transform: rotateX(0deg) translateX(0%);
    }
    .header .nav .drop ul{
        padding: 5px 0 0;
    }
    .header .nav .drop ul li{
        padding: 0;
    }
    .header .nav .drop ul li a{
        color: #999;
        font-size:14px;
        line-height: 130%;
    }
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header .nav ul {
        flex-direction: column;
        width: 100%;
    }

    .header .nav ul li {
        width: 100%;
    }

    .header .nav ul li a {
        width: 100%;
        padding: 10px;
    }

    .header .box .search {
        width: 100%;
        margin-top: 10px;
    }

    .header .box .search .sear_box {
        width: 100%;
    }
}
/*banner*/
.banner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 0;
}
.banner img{
    width: 100%;
}
@media (max-width: 1024px) {
    .banner {
        margin-top: 70px;
    }
    .banner .swiper-button-next:after,
    .banner .swiper-button-prev:after {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .banner {
        margin-top: 70px;
    }
    .banner .swiper-button-next:after,
    .banner .swiper-button-prev:after {
        font-size: 28px;
    }
}
@media (max-width: 565px) {
    .banner .swiper-button-next:after,
    .banner .swiper-button-prev:after {
        font-size: 24px;
    }
}





/*版权*/
.footer_box{width:100%;height:auto;background:#27282d;overflow:hidden;}
.footer_box .footer_main{height:auto;overflow:hidden}
.footer_box .footer_main .f_head{width:100%;height:auto;padding:2vw 0;position:relative;z-index:1;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:flex-end;justify-content:flex-end}
.footer_box .footer_main .f_head::after{content:'';width:100%;height:1px;position:absolute;bottom:0;left:0;z-index:1;background:#fff;opacity:.05;overflow:hidden}
.footer_box .footer_main .f_head .logo{width:40%;max-width:248px;font-size:0;overflow:hidden}
.footer_box .footer_main .f_head .logo img {
    width: 100%;
}
.footer_box .footer_main .f_head .items{width:auto;height:auto;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}
.footer_box .footer_main .f_head .items .item{width:100%;height:auto;margin-left:0vw;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;color:#adb2b7;position: relative;}
.txt_ewm2 img {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50px;
    left: -16px;
    z-index: 999;
    display: none;
}
.footer_box .footer_main .f_head .items .item .txt_ewm:hover .txt_ewm2 img {
    display: block;
}

.footer_box .footer_main .f_head .items .item .icon i{font-size:20px}
.footer_box .footer_main .f_head .items .item .txt{flex:1;margin-left:15px;font-size:16px;white-space:nowrap;width: 40px;
    height: 40px;
    background: #424347;
    border-radius: 50%;}
.footer_box .footer_main .f_head .items .item .txt img {
    margin: 9px auto;
}

.footer_box .footer_main .f_head .items .item:first-child{margin-left:0}
.footer_box .footer_main .f_info{width:100%;height:auto;padding:2vw 0 6vw;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}
.footer_box .footer_main .f_info .qrcode{width:450px;height:auto;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;overflow:hidden}
.footer_box .footer_main .f_info .qrcode .item{flex:1}


/*.footer_box .footer_main .f_info .qrcode .item .img::after{content:'';width:100%;height:100%;position:absolute;top:0;left:0;z-index:1;box-sizing:border-box;border:1px solid #fff;opacity:.05}*/

.footer_box .footer_main .f_info .qrcode .item .img .pb{font-size: 26px;
    z-index: 2;
    color: #fff;
    line-height: 28px;height: 30px;font-weight: bold;}
.footer_box .footer_main .f_info .qrcode .item .info {
    width: 100%;
    height: auto;
    margin-top: 10px;
    color: #fff;
   
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    font-size: 16px;
    line-height: 50px;
}
.footer_box .footer_main .f_info .qrcode .item .info a{display: block;
    width: 150px;
    line-height: 50px;
    border: 2px #fff solid;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    margin-top: 25px; transition: 0.3s all;}
.footer_box .footer_main .f_info .qrcode .item .info a:hover{    background: #8bc027;
    transition: 0.3s all;}

.footer_box .footer_main .f_info .qrcode .item .info .icon{width:20px;height:30px;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}
.footer_box .footer_main .f_info .qrcode .item .info .icon i{font-size:16px}
.footer_box .footer_main .f_info .qrcode .item .info .txt{margin-left:5px;font-size:14px}

.footer_box .footer_main .f_info .nav{flex:1;height:auto;margin-left:27vw}
.footer_box .footer_main .f_info .nav>ul{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}
.footer_box .footer_main .f_info .nav>ul>li>a{display:inline-block;padding-bottom:7px;font-size:16px;color:#fff;position:relative;}
.footer_box .footer_main .f_info .nav>ul>li>a::after{content:'';width:0;height:1px;position:absolute;bottom:0;left:0;z-index:1;background:#fff;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}
.footer_box .footer_main .f_info .nav>ul>li>a:hover::after{width:100%}
.footer_box .footer_main .f_info .nav>ul>li ul{margin-top:15px}
.footer_box .footer_main .f_info .nav>ul>li ul li{margin-top:0px}
.footer_box .footer_main .f_info .nav>ul>li ul li a{font-size:14px;color:#666666;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s;    line-height: 34px;}

.footer_box .footer_main .f_info .nav>ul>li ul li a:hover{color:#fff}
.footer_box .footer_main .f_body{width:100%;height:auto;padding:1vw 0;position:relative;z-index:1;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;overflow:hidden}
.footer_box .footer_main .f_body::after{content:'';width:100%;height:1px;position:absolute;top:0;left:0;z-index:1;background:#fff;opacity:.05;overflow:hidden}
.footer_box .footer_main .f_body .f_copy{font-size:14px;color:#666}
.footer_box .footer_main .f_body .f_copy a{color:#666;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}
.footer_box .footer_main .f_body .f_copy a:hover{color:#fff}.footer_box .footer_main .f_body .f_link{font-size:0}
.footer_box .footer_main .f_body .f_link a{display:inline-block;font-size:14px;color:#666;white-space:nowrap;margin-right:20px;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}
.footer_box .footer_main .f_body .f_link a:last-child{margin-right:0}
.footer_box .footer_main .f_body .f_link a:hover{color:#fff}

@media (max-width:1440px){
	.footer_box .footer_main .f_head{padding:40px 0}
	.footer_box .footer_main .f_head .items .item .icon i{font-size:16px}
	.footer_box .footer_main .f_head .items .item .txt{font-size:14px}
	.footer_box .footer_main .f_info{padding:40px 0}
	.footer_box .footer_main .f_info .qrcode{width:260px}
	.footer_box .footer_main .f_info .qrcode .item .info{margin-top:10px;font-size: 16px;
    line-height: 28px;}
	.footer_box .footer_main .f_info .qrcode .item .info .icon{width:16px;height:20px}
	.footer_box .footer_main .f_info .qrcode .item .info .icon i{font-size:14px}
	.footer_box .footer_main .f_info .qrcode .item .info .txt{font-size:12px}
	.footer_box .footer_main .f_info .qrcode .item:first-child{margin-right:20px}
	.footer_box .footer_main .f_info .nav{margin-left:8vw}
	.footer_box .footer_main .f_info .nav ul li a{font-size:16px}
	.footer_box .footer_main .f_info .nav ul li ul li a{font-size:12px}
	.footer_box .footer_main .f_body{padding:20px 0}
	}
	@media (max-width:1024px){
		.footer_box .footer_main .f_info .nav ul li a{font-size:15px}
		.footer_box .footer_main .f_body .f_copy,.footer_box .footer_main .f_body .f_link a{font-size:12px}
		}
		@media (max-width:990px){
			.footer_box .footer_main .f_head{padding:30px 0;display:block}
			.footer_box .footer_main .f_head .items{margin-top:20px;display:none;}
			.footer_box .footer_main .f_head .items .item{margin:10px 0 0;line-height:1}
			.footer_box .footer_main .f_head .items .item .icon i{font-size:14px;vertical-align:top}
			.footer_box .footer_main .f_head .items .item .txt{font-size:12px}
			.footer_box .footer_main .f_head .items .item:first-child{margin-top:0}
			.footer_box .footer_main .f_info .qrcode{width:100%;}
			.footer_box .footer_main .f_info .nav {
    display: none;
}
			.footer_box .footer_main .f_body{display:block;padding:30px 15px;}
			.footer_box .footer_main .f_body::after{display:none}
			.footer_box .footer_main .f_body .f_copy{width:100%}
			.footer_box .footer_main .f_body .f_link{width:100%;margin-top:10px}
		}
		@media (max-width:768px){
			.footer_box .footer_main .f_head{padding:0px}
			.footer_box .footer_main .f_head .items .item .icon i{font-size:12px}
			.footer_box .footer_main .f_head .items .item .txt{font-size:10px}
			.footer_box .footer_main .f_body{padding:20px 0 30px}
			.footer_box .footer_main .f_body .f_copy,.footer_box .footer_main .f_body .f_link a{font-size:10px}
			.footer_box .footer_main .f_info .qrcode .item .info a{width: 120px;
    line-height: 40px;    font-size: 14px;}
			}
			
			
/*新闻*/
/*news*/
.hm_news {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.hm_news .tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.hm_news .tit h3{
    font-size: 40px;
    font-weight: bold;
    line-height: 100%;
    padding-bottom: 30px;
    position: relative;
}
.hm_news .tit h3::after{
   /* content: '';
    width: 79px;
	height: 3px;
    background-color: #0d4a9a;
    position: absolute;
    left: 0;
    bottom: 0;*/
}
.hm_news .tit h3 span{
    color: #0012a1;
}

.hm_news .tit .more{
  
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 30px;
}
.hm_news .tit .more:hover {
    color: #8bc027;
} 

.hm_news .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.hm_news .list .item {
    background-color: #fff;
    overflow: hidden;
    width: calc((100% - 40px) / 3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hm_news .list .item:nth-child(4){
	display: none;
}
.hm_news .list .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hm_news .list .item .pic img {
    width: 100%;
    height: auto;
    display: block;
}

.hm_news .list .item .con {
    padding: 20px;
}

.hm_news .list .item .con .date {
    font-size: 13px;
    color: #999999;
    margin-bottom: 20px;
}

.hm_news .list .item .con .tit {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 102%;
    color: #444;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.hm_news .list .item .con .txt {
    font-size: 14px;
    line-height: 27px;
    color: #7f7f7f;
}
.hm_news .list .item .con .more{
    display: block;
    margin-top: 30px;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    font-size: 16px;
    color: #333333;
    position: relative;
}
.hm_news .list .item .con .more::after{
    content: '>';
    font-family: 'jyfont';
    font-size: 20px;
    color: #333;
    position: absolute;
    padding-top: 20px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.hm_news .list .item .con .more:hover,
.hm_news .list .item .con .more:hover::after{
    color: #0d4a9a;
}
@media (max-width: 1200px) {
  .hm_news {
		padding: 90px 0;
	}
}
@media (max-width: 1024px) {
	  /* home news */
    .hm_news .list .item {
        width: calc(50% - 20px);
    }
	 .hm_news {
		padding: 80px 0;
	}
    .hm_news .list .item:nth-child(4){
        display: block;
    }
	/* title */
    .title h3,
    .hm_news .tit h3{
        font-size: 38px;
    }
    .hm_news .tit h3{
        padding-bottom: 25px;
    }
    .hm_news .tit .more{
        margin-bottom: 25px;
    }
	}
@media (max-width: 768px) {
	   .hm_news{
		padding: 60px 0;
	}
	 /* home news */
    .hm_news .list .item {
        width: 100%; margin-top:15px;
    }
	 /* title */
    .title h3,
    .hm_news .tit h3{
        font-size: 32px;
    }
    .hm_news .tit h3{
        padding-bottom: 20px;
    }
    .hm_news .tit .more{
        margin-bottom: 20px;
    }
	.hm_news .tit{margin-bottom: 20px;}
	}
	@media (max-width: 565px) {
		  /* title */
    .title h3,
    .hm_news .tit h3{
        font-size:28px;
    }
    .hm_news .tit h3{
        padding-bottom: 15px;
    }
    .hm_news .tit .more{
        margin-bottom: 15px;
    }
	.hm_news .list{    gap: 0px;}
		}


/*about*/
.hm_about {
    
    position: relative;
}

.hm_about .w16001:after {
    content: '';
    width: 50%;
    height: calc(100% - 0px);
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(/uploadfile/202407/bb597caba75857b.jpg) center no-repeat;
}

.hm_about .w16001 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.hm_about .text {
	width: 50%;
    padding-right: 4.5%;
    box-sizing: border-box;
    padding-left: 8.5%;
    position: relative;
    z-index: 2;
}

.hm_about .text h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 35px;
    line-height: 120%;
    color: #fff;
}

.hm_about .text .para p {
    font-size: 16px;
    color: #fff;
    line-height: 40px;
}

.hm_about .text .para span {
    color: #fff;
    cursor: pointer;
}

.hm_about .text .para span a {
    text-decoration: none;
    color: inherit;
}

.hm_about .text .para span a:hover {
    color: #8bc027;
}

.hm_about .pic {
	width: 50%;
    text-align: center;
   
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hm_about .pic img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 1500px) {
    .hm_about .text .para p{
        line-height: 32px;
    }
}
@media (max-width: 1200px) {
    .hm_about .text{
        padding-right: 3%;
    }
    .hm_about .text h3{
        margin-bottom: 30px;
		
    font-size: 32px;

    }
    .hm_about .text .para p{
        line-height: 26px;
    }
	.hm_about .text .para p:nth-child(2) {
    display: none;
}
    .hm_about::after{
        display: none;
    }
    .hm_about .pic{
        padding-left: 0;
    }
}
@media (max-width: 1024px) {
    .hm_about .w1600 {
        flex-direction: column;
    }
    .hm_about .text h3{
        font-size: 40px;
        margin-bottom: 25px;
    }
    .hm_about .text .para p{
        line-height: 24px;
    }
	.hm_about .w16001:after{width: 100%;
    height: calc(100% - 0px);
    position: absolute;
    left: 0;
    top: 0;
    background: url(/uploadfile/202407/bb597caba75857b.jpg) top no-repeat;}
    .hm_about .text, .hm_about .pic {
       padding: 79px 5% 0px;
        width: 100%;
    }
    .hm_about .pic img{
        width: 100%;
    }
    .hm_about::after{
        display: none;
    }
}
@media (max-width: 768px) {
    .hm_about .text h3{
        font-size: 24px;
        margin-bottom: 22px;
    }
    .hm_about .text .para p{
        line-height: 22px;
    }
}
@media (max-width: 565px) {
	 .hm_about .text, .hm_about .pic {padding: 34px 5% 0px;}
    .hm_about .text h3{
        font-size: 28px;
        margin-bottom: 20px;
    }
	.hm_about .text .para p{ font-size:14px;}
}
/*number*/
.number {
   text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 2222;
}

.number .w1600 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
	gap: 40px;
}

.number .list {
    flex: 1;
    width: 25%;
    padding:50px 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #fff;
    border-radius: 15px;
}

.number .list + .list{
	/*border-left: 1px solid #eaeaea;*/
}

.number .list:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.number .num {
   font-size: 60px;
    margin-bottom: 20px;
    color: #333333;
    line-height: 100%;
    font-weight: bold;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.number .num img {
    padding-right: 3%;
}

.number .para {
    font-size: 18px;
    color: #656565;
}

.number i {
    display: block;
    width: 45px;
    height: 6px;
    background-color: #0d4a9a;
    margin: 0 auto 25px;
}
@media (max-width: 1500px) {
    .number .list {
        padding: 80px 0;
    }
    .number .num {
        font-size: 52px;
        margin-bottom: 15px;
    }
    .number i{
        margin-bottom: 20px;
    }
}
@media (max-width: 1280px) {
    .number .list {
        padding: 70px 0;
    }
    .number .num {
        font-size: 48px;
        margin-bottom: 14px;
    }
    .number i{
        margin-bottom: 18px;
    }
}
@media (max-width: 1024px) {
    .number .list {
        padding: 60px 0;
    }
    .number .num {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .number i{
        margin-bottom: 15px;
    }
}
@media (max-width: 968px) {
    .number .list {
        width: 50%;
        max-width: 500px;
        padding: 50px 0;
        box-sizing: border-box;
        flex: none;
    }
    .number .list:nth-child(3) {
        border-left: 0;
    }
    .number i{
        height: 5px;
    }
}
@media (max-width: 765px) {
    .number .list {
        padding: 40px 0;
    }
    .number .num {
        font-size: 36px;
        margin-bottom: 8px;
		line-height: 52px;
    }
    .number i{
        margin-bottom: 12px;
        height: 4px;
    }
}
@media (max-width: 565px) {
	.hm_news .list .item .con .tit{ margin-bottom:10px;}
	.hm_news .list .item .con .more{margin-top: 10px;    padding-top: 12px;}
	.hm_news .list .item .con .txt{    line-height: 22px;}
	.number .w1600{ gap:0px;}
	
    .number i{
        height: 3px;
    }
    .number .list {
        padding: 30px 0;
		width: 85%;
		margin-top:15px;
    } 
}

/*案例*/
.case {
    padding: 100px 0;
}
.case .tit h3 p {
    display: block;
    font-size: 18px;
    line-height: 28px;
    padding-top: 20px;
    font-weight: normal;
}
.case .w1600{display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.case .tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.case .tit h3{
    font-size: 40px;
    font-weight: bold;
    line-height: 100%;
    padding-bottom: 30px;
    position: relative;
}
.case .tit h3::after{
   /* content: '';
    width: 79px;
	height: 3px;
    background-color: #0d4a9a;
    position: absolute;
    left: 0;
    bottom: 0;*/
}
.case .tit h3 span{
    color: #0012a1;
}

.case .tit .more{
  
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
	
}

.case .case_l{width: 70%;
    padding-right: 6.5%;
    box-sizing: border-box;padding-top: 2%;}


.case .case_r{width: 30%;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 28px;
	background:url(/uploadfile/202407/78187c43e88f311.png) bottom no-repeat;background-size: 100%;}
.case_rm img {
    display: block;
    margin: 0 auto;width: 100%;
}
.case_rm {
    padding: 0 6%;
}
.case_rm span {
    font-size: 24px;
    line-height: 48px;
    margin-top: 16px;
    display: block;
}

.corp_row2_r{/*width: 1020px;height: 435px;*/position:relative;}
.corp_row2_r > .tempWrap{width:100%;height: 435px;position:relative; overflow:hidden; }


.honor_item{width: 300px !important;text-align: center; margin-right:58px;}
.honor_item img{width: 100%;height: auto;display: block;border-radius:15px;}
.honor_item span{text-align: center;font-size: 14px;}

.corp_row2_r_b_btn > div{display: block;width: 60px;height: 60px;background: #fff url(/uploadfile/202407/4cda557ff5a437c.png) no-repeat 0 0;position: absolute; bottom:-66px; z-index: 4;border-radius: 50%;border: 1px solid #ddd;cursor: pointer;-webkit-transition:0.3s all ease;transition:0.3s all ease;}
.corp_row2_r_b_btn > div.u_ljt{right: 79px;background-position:0px 0px;}
.corp_row2_r_b_btn > div.u_rjt{ right: 5px;background-position:-58px 0px;}
.corp_row2_r_b_btn > div:hover{background-position-y: -57px;background-color: #8cc128;border:1px solid #8cc128}


@media (max-width: 1280px) {
	.case .tit {
    margin-bottom: 0;
}
.case .tit h3 p {
    display: none;
}
	
	}
	
	
	
	
@media (max-width: 1024px) {
	.case .case_r{ display:none;}
	.case .case_l{ width:100%; padding-right:0;}
	.honor_item{ width:280px !important; margin-right:20px;}
	}
	
	
.new_bg {
    background: #0d4a9a;
    padding: 76px 0 42px;
}


.new_bg .w1600 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.new_bg .pic {
    width: 30%;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
 padding-right: 3%;
}
.new_bg .pic img {
    width: 100%;
}


.new_bg .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
	width: 70%;
    margin-top: 30px;
}
.new_bg .list .item {
   
    overflow: hidden;
    width: calc((100% - 40px) / 3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.new_bg .list .item .con {
    padding: 10px;
}
.new_bg .list .item .con .date {
    font-size: 16px;
    color: #6b85b6;
    margin-bottom: 20px;
}
.new_bg .list .item .con .tit {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 102%;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.new_bg .list .item .con .tit a {
    color: #fff;
}

.new_bg .list .item .con .txt {
    font-size: 14px;
    line-height: 27px;
    color: #fff;
}
.new_bg .list .item .con .more {
   display: block;
    font-size: 16px;
    color: #fff;
    position: relative;
    border: 1px #fff solid;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 25px;
}

@media (max-width: 1024px) {
	.new_bg .pic{ display:none;}
	.new_bg .list{ width:100%;}
	}
@media (max-width: 1024px) {
	  /* home news */
    
	/* title */
    .title h3,
    .case .tit h3{
        font-size: 38px;
    }
    .case .tit h3{
        padding-bottom: 25px;
    }
    .case .tit .more{
        margin-bottom: 25px;
    }
	}
@media (max-width: 768px) {
	 .honor_item{ width:162px !important;margin-right: 14px;}
	 .corp_row2_r > .tempWrap{ height:250px;}
	 .corp_row2_r_b_btn > div.u_rjt{ left:55%;}
	 .corp_row2_r_b_btn > div.u_ljt{ right:50%;}
	 /* title */
	 
    .title h3,
    .case .tit h3{
        font-size: 32px;
    }
    .case .tit h3{
        padding-bottom: 20px;
    }
    .case .tit .more{
        margin-bottom: 20px;
    }
	.case .tit{margin-bottom: 20px;}
	}
	@media (max-width: 565px) {
		  /* title */
		  .case{    padding: 66px 0;}
    .title h3,
    .case .tit h3{
        font-size:28px;
    }
    .case .tit h3{
        padding-bottom: 15px;
    }
    .case .tit .more{
        margin-bottom: 15px;
    }
	.new_bg .list{gap: 10px;margin-top: 6px;}
	.new_bg{margin-top: 25px;padding: 43px 0 42px;}
	.new_bg .list .item{width: calc((100% - 0px) / 1);}
	.new_bg .list .item .con .tit{ font-size:18px; margin-bottom: 10px;}
		}

/*内页*/

.insearch {
	padding: 50px;
	background-color: #fff;
}

.insearch h5 {
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	line-height: 100%;
	margin-bottom: 30px;
}

.insearch .dfx {
	display: flex;
	flex-wrap: wrap;
}

.insear_items {
	width: calc((100% - 60px) / 4);
	margin-right: 20px;
}

.insear_items:nth-child(4n) {
	margin-right: 0;
}

.insear_items:nth-child(n+5) {
	margin-top: 20px;
}

.insear_items .pic,
.insear_items .pic img {
	width: 100%;
	transition: all 0.3s;
}

.insear_items .pic {
	border: 1px solid #eee;
	overflow: hidden;
}

.insear_items:hover .pic {
	border-color: #0d4a9a;
}

.insear_items:hover .pic img {
	transform: scale(1.2);
}

.insear_items .bt {
	margin-top: 10px;
	font-size: 16px;
	line-height: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #333;
	overflow: hidden;
	text-align: center;
}

.insear_items:hover .bt {
	color: #0d4a9a;
}


.inner_content {
    padding: 50px 0;
    background-color: #f6f6f6;
}



/* innews */
.innews{}
.innews .innews_item{padding: 50px;background-color: #fff;}
.innews .innews_item + .innews_item{margin-top: 50px;}
.innews .innews_item .innews_tit{display: flex;justify-content: space-between;align-items: center;font-size: 28px;font-weight: bold;line-height: 100%;margin-bottom: 30px;}
.innews .innews_item .innews_tit .more{font-size: 16px;font-weight: normal;text-transform: uppercase;}
.innews .innews_item .innews_tit .more:hover{color: #0d4a9a;}
.innews .innews_item .innews_cent{display: flex;gap: 22px;}
.innews .innews_item .innews_cent .innews_list{width:calc((100% - 66px) / 4);border: 1px solid #eee;}
.innews .innews_item .innews_cent .innews_list .pic,
.innews .innews_item .innews_cent .innews_list .pic img{width: 100%;}
.innews .innews_item .innews_cent .innews_list .text{background-color: #f6f6f6;padding: 20px;}
.innews .innews_item .innews_cent .innews_list .date{font-weight: bold;font-family: Arial;font-size: 18px;margin-bottom: 15px;color: #333;display: flex;align-items: center;}
.innews .innews_item .innews_cent .innews_list .date img{width: 16px;margin-right: 8px;}
.innews .innews_item .innews_cent .innews_list .tit{font-size: 18px;line-height: 150%;font-weight: bold;margin-bottom: 10px;color: #333;}
.innews .innews_item .innews_cent .innews_list .txt{font-size: 14px;line-height: 24px;color: #999;}

.innew_li{padding: 50px 30px;background-color: #fff;position: relative;z-index: 1;transition: all 0.3s;}
.innew_li + .innew_li{border-top: 1px solid #eee;}
.innew_li:hover{box-shadow: 0 0 30px rgba(57, 99, 224, 0.33);z-index: 2;}
.innew_li .dfx{justify-content: space-between;}
.innew_li .pic{width: 350px;}
.innew_li .pic img{width: 100%;}
.innew_li .text{width: calc(100% - 380px);position: relative;}
.innew_li .text .tit{display: flex;justify-content: space-between; align-items: center;font-size: 24px;line-height: 100%;margin-bottom: 20px;color: #333;font-weight: bold;}
.innew_li:hover .text .tit{color: #0d4a9a;}
.innew_li .text .tit .see{display: flex;align-items: center;font-size: 14px;line-height: 100%;color: #666;font-weight: normal;}
.innew_li .text .tit .see img{width: 16px;margin-right: 6px;}
.innew_li .text .txt{font-size: 16px;line-height: 180%;}
.innew_li .text .btn{width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;}
.innew_li .text .btn .date{font-size: 16px;display: flex;align-items: center;}
.innew_li .text .btn .date img{width: 16px;margin-right: 6px;}
.innew_li .text .btn .more{display: block;width: 38px;height: 38px;background: url(../images/list_circle.png) no-repeat left top;overflow: hidden;position: absolute;right: 6px;bottom: 0;border-radius: 50%;border: solid 1px #bcbcbc;}
.innew_li:hover .text .btn .more{background-position: left bottom;background-color: #0d4a9a;border-color: #0d4a9a;}

/* innews details */
.dfx {
    display: flex;
}
.innews_detail{display: flex;justify-content: space-between;gap: 20px;}
.innews_detail .left_side_box{width: calc(100% - 380px);position: relative;}
.innews_detail .left_side_box .backNewsList{width: 60px;display: block;position: absolute;left: -60px;top: 0;cursor: pointer;padding: 12px 0;background-color: #ccc;text-align: center;font-size: 14px;color: #fff;}
.innews_detail .left_side_box .article{}
.innews_detail .left_side_box .article .conBox{background-color: #fff;padding: 50px;border-bottom: 1px solid #eee;}
.innews_detail .left_side_box .article .conBox .title{margin-bottom: 20px;border-bottom: 1px solid #e7e7e7;padding-bottom: 12px;position: relative;}
.innews_detail .left_side_box .article .conBox .title::after{content: '';width: 22px;height: 1px;background-color: #0d4a9a;position: absolute;left: 0;bottom: -1px;z-index: 9;}

.innews_detail .left_side_box .article .conBox .title h2{font-size: 28px;line-height: 100%;margin-bottom: 20px;}
.innews_detail .left_side_box .article .conBox .title .share{width: 100%;}
.innews_detail .left_side_box .article .conBox .title .share p{display: flex;}
.innews_detail .left_side_box .article .conBox .title .share p > span{display: block;font-size: 14px;color: #999999;padding: 0 8px;line-height: 100%;}
.innews_detail .left_side_box .article .conBox .title .share p > span + span{border-left: 1px dotted #b6b6b6;}
.innews_detail .left_side_box .article .conBox .title .share p > span:first-child{padding-left: 0;}
.innews_detail .left_side_box .article .conBox .centent,
.innews_detail .left_side_box .article .conBox .centent *{font-size: 16px;line-height: 190%;color: #666;}
.innews_detail .left_side_box .article .centent p {
    text-indent: 2rem;
}

.innews_detail .left_side_box .article .context{background-color: #fff;display: flex;}
.innews_detail .left_side_box .article .context p{width: 50%;padding: 25px;display: flex;align-items: center;overflow: hidden;}
.innews_detail .left_side_box .article .context p a{width: calc(100% - 60px);white-space: nowrap;text-overflow: ellipsis;overflow: hidden;font-size: 16px;color: #666;}
.innews_detail .left_side_box .article .context p a:hover{color: #333;}
.innews_detail .left_side_box .article .context .prevNews{border-right: 1px solid #eee;}
.innews_detail .left_side_box .products_reco{background-color: #fff;margin-top: 20px;padding: 30px;}
.innews_detail .left_side_box .products_reco .pro_reco ul{display: flex;}
.innews_detail .left_side_box .products_reco .pro_reco li{width: calc((100% - 60px) / 4);margin-right: 20px;}
.innews_detail .left_side_box .products_reco .pro_reco li:nth-child(4){margin-right: 0;}
.innews_detail .left_side_box .products_reco .pro_reco li .pic,
.innews_detail .left_side_box .products_reco .pro_reco li .pic img{width: 100%;transition: all 0.3s;}
.innews_detail .left_side_box .products_reco .pro_reco li .pic{border: 1px solid #eee;overflow: hidden;}
.innews_detail .left_side_box .products_reco .pro_reco li:hover .pic{border-color: #0d4a9a;}
.innews_detail .left_side_box .products_reco .pro_reco li:hover .pic img{transform: scale(1.2);}
.innews_detail .left_side_box .products_reco .pro_reco li .bt{margin-top: 10px;font-size: 16px;line-height: 100%;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;text-align: center;}
.innews_detail .left_side_box .products_reco .pro_reco li:hover .bt{color: #0d4a9a;}

.innews_detail .right_side_box{width: 360px;}
.innews_detail .right_side_box .hot_news{background-color: #fff;padding: 30px;}
.innews_detail .right_side_box .hot_news .tit,
.products_reco .tit{display: flex;justify-content: space-between;align-items: center;padding-bottom: 20px;border-bottom: 1px solid #eee;margin-bottom: 20px;position: relative;}



.innews_detail .right_side_box .hot_news .tit::after{content: '';width: 22px;height: 1px;background-color: #0d4a9a;position: absolute;left: 0;bottom: -1px;z-index: 9;}
.innews_detail .right_side_box .hot_news .tit h3,
.products_reco .tit h3{font-size: 18px;color: #333333;font-weight: normal;display: flex;align-items: center;}
.innews_detail .right_side_box .hot_news .tit h3 em,
.products_reco .tit h3 em{font-weight: bold;color: #0d4a9a;}
.innews_detail .right_side_box .hot_news ul{}
.innews_detail .right_side_box .hot_news.new_news ul li.active,
.innews_detail .right_side_box .hot_news ul li{list-style: disc;}
.innews_detail .right_side_box .hot_news ul li.active{list-style: none;}
.innews_detail .right_side_box .hot_news ul li+li{margin-top: 10px;}
.innews_detail .right_side_box .hot_news ul li .pic,
.innews_detail .right_side_box .hot_news ul li .pic img{width: 100%;display: block;}
.innews_detail .right_side_box .hot_news ul li .pic{}
.innews_detail .right_side_box .hot_news ul li.active .pic{height: auto;visibility: visible;border: 1px solid #eee;}
.innews_detail .right_side_box .hot_news ul li .bt{font-size: 16px;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;margin-top: 10px;}
.innews_detail .right_side_box .hot_news ul li.active .bt{font-weight: bold;color: #333;}
.innews_detail .right_side_box .new_news{margin-top: 20px;}




.pages {display: flex;justify-content: center;align-items: center;margin-top: 50px;}
.pages .pagination{display: flex;justify-content: center;}
.pages .pagination li{margin: 0 5px;}
.pages .pagination li a{display: block;width: 52px;height: 52px;font-size: 16px;color: #9a9a9a;border-radius: 50%;line-height: 48px;text-align: center;}
.pages .pagination li:hover a{color: #0d4a9a;border-color: #0d4a9a;}
.pages .pagination li.active a{color: #fff;background: #0d4a9a;border-color: #0d4a9a;}
.pages .pagination li.page_total a{width:100%;border: none;background: none;color: #333;line-height: 50px;}
.pages .pagination li.page_next a,
.pages .pagination li.page_prev a{font-size: 0;}
.pages .pagination li.page_next a{background:#fff url(../images/next.png) no-repeat left top;}
.pages .pagination li.page_prev a{background:#fff url(../images/prev.png) no-repeat left top;}
.pages .pagination li.page_next:hover a,
.pages .pagination li.page_prev:hover a{background-position: left bottom;background-color: #0d4a9a;border-color: #0d4a9a;}
.pages .nums{margin-left:10px;font-size: 16px;line-height: 50px;}



/* inner */
.n_banner {position: relative;overflow: hidden;line-height: 0;text-align:center;}
.n_banner .w1600{height:450px;position: absolute;top: 0;left: 50%;transform: translateX(-50%);z-index: 2;display: flex;align-items: center;}
.n_banner .nb_tit{font-size: 50px;font-weight: bold;color: #fff;line-height: 100%;}
.n_banner img{position: relative;left: 50%;transform: translateX(-50%);}



.crumb{background-color: #f6f6f6;}
.crumb_menu{text-align: center;display: flex;justify-content: center;background-color: #fff;}
.crumb_menu a{color: #b2b2b2;font-size: 20px;line-height: 100%;padding: 30px;position: relative;}
.crumb_menu a + a::before{content: '';width: 0;height: 24px;border-left: 1px solid #dbdbdb;position: absolute;left: 0;top: 50%;transform: translateY(-50%);}
.crumb_menu a:hover,
.crumb_menu a.active{color: #333;}
.inner_content{padding: 50px 0;background-color: #f6f6f6;}


@media screen and (max-width: 960px) {
	.crumb{ display:none;}
}

@media screen and (max-width: 780px) {
	.n_banner{ height:220px;}
	.n_banner .w1600{height:220px;}
	.n_banner .nb_tit{padding-top: 61px;font-size: 30px;}
	.n_banner img{ height:100%;}
	}

@media screen and (max-width: 480px) {
	.n_banner{ height:160px;}
	.n_banner .w1600{height:160px;}
	.n_banner .nb_tit{padding-top: 61px;font-size: 22px;}
	.n_banner img{ height:100%;}
	
	}
	
/* products_category */
.procate_wrap {
	padding: 50px;
	background-color: #fff;
	box-sizing: border-box;
}

.procate_wrap .procate_item + .procate_item {
	margin-top: 80px;
}

.procate_head {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}

.procate_head a {
	font-size: 24px;
	text-align: left;
	display: block;
	font-weight: bold;
	line-height: 100%;
	float: left;
	color: #333;
}

.procate_head a.more {
	font-size: 14px;
	font-weight: normal;
	height: 30px;
	line-height: 30px;
	padding: 0 20px;
	border: 1px solid #000;
	box-sizing: border-box;
	float: right;
}

.procate_head a.more:hover {
	background-color: #000;
	color: #fff;
}

.procate_wrap .procate_con {
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
}

.procate_wrap .procate_con .procate_list {
	float: left;
}

.procate_wrap .procate_con .procate_list .tit {
	font-size: 16px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
    color: #333;
}

.procate_wrap .procate_con .procate_list,
.prolist_wrap .con .list {
	width: calc((100% - 60px) / 4);
	border: 1px solid #eee;
	padding: 15px;
	box-sizing: border-box;
	transition: all 0.3s;
	margin-right: 20px;
}

.procate_wrap .procate_con .procate_list:hover,
.prolist_wrap .con .list:hover {
	border-color: #0d4a9a;
	background-color: #0d4a9a;
}

.procate_wrap .procate_con .procate_list:nth-child(4n) {
	margin-right: 0;
}

.procate_wrap .procate_con .procate_list:nth-child(n+5) {
	margin-top: 20px;
}
.procate_wrap .procate_con.category .procate_list:nth-child(9){
	display: none;
}
.procate_wrap .procate_con .procate_list .pic,
.prolist_wrap .con .list .pic {
	overflow: hidden;
}

.procate_wrap .procate_con .procate_list .pic img,
.prolist_wrap .con .list .pic img {
	width: 100%;
	transition: all 0.5s;
}

.procate_wrap .procate_con .procate_list:hover .pic img,
.prolist_wrap .con .list:hover .pic img {
	transform: scale(1.1);
}

.procate_wrap .procate_con .procate_list .tit,
.prolist_wrap .con .list .tit {
	margin-top: 15px;
	line-height: 22px;
	text-align: center;
	font-size: 16px;
    color: #333;
	line-height: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.procate_wrap .procate_con .procate_list:hover .tit,
.prolist_wrap .con .list:hover .tit {
	color: #fff;
}

.procate_wrap .procate_con .procate_list .applo,
.prolist_wrap .con .list .applo{
    background-color: #fff;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.procate_wrap .procate_con .procate_list .applo li img,
.prolist_wrap .con .list .applo li img{
    width: 100%;
}

.prolist_wrap {
	padding: 50px;
	background-color: #fff;
	box-sizing: border-box;
}

.prolist_wrap .con {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.prolist_wrap .con .list {
	margin-right: 20px;
	float: left;
}

.prolist_wrap .con .list:nth-child(n+5) {
	margin-top: 20px;
}

.prolist_wrap .con .list:nth-child(4n) {
	margin-right: 0;
}

/* inpro_detail */
.inpro_image .chanp01 {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 50px;
    overflow: hidden;
}

.inpro_image .left {
    width: 45%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding-bottom: 12px;
}

.inpro_image .left .cp01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px
}

.inpro_image .left .cp01 .tit {
    flex: 1;
    padding-right: 20px
}

.inpro_image .left .cp01 .tit h2 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px
}

.inpro_image .left .cp01 .tit span {
    font-size: 15px;
    color: #999
}

.inpro_image .left .cp02 {
    flex: 1
}

.inpro_image .left .cp02 span {
    font-size: 22px;
    font-weight: bold;
    border-bottom: 1px solid #cfcfcf;
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.inpro_image .left .cp02 span:after {
    content: '';
    width: 90px;
    height: 2px;
    background-color: #0012a1;
    display: block;
    margin-top: 4px;
    position:absolute;
    left: 0;
    bottom: -1px;
}

.inpro_image .left .cp02 .gaikuang {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px
}

.inpro_image .left .cp02 .gaikuang p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 15px
}

.inpro_image .left .cp03 .anniu {
    margin: 50px 0 70px
}

.inpro_image .left .cp03 .anniu a {
    line-height: 1;
    padding: 13px 40px;
    background-color: #0012a1;
    color: #fff;
    border-radius: 50px;
    margin-right: 10px;
    font-size: 18px
}

.inpro_image .left .cp03 .anniu a i {
    font-size: 22px;
    line-height: 0;
    margin-left: 10px;
    transform: translateY(-1px)
}

.inpro_image .left .cp03 .anniu a:first-child {
    border: 2px solid #0012a1;
    background-color: #fff;
    color: #0012a1
}

.inpro_image .left .cp03 .anniu a:hover {
    background-color: #0d4a9a;
    border-color: #0d4a9a;
    color: #fff
}

.inpro_image .left .cp03 .tips {
    border: 1px dashed #a9a9a9;
    background-color: #f5f5f5;
    padding: 20px;
    display: flex
}

.inpro_image .left .cp03 .tips i {
    margin-right: 10px;
    color: #0d4a9a;
}

.inpro_image .left .cp03 .tips p {
    color: #333
}

.inpro_image .right {
    width: 45%
}

.inpro_image .right .lunbo_pic {
    position: relative
}

.inpro_image .right .lunbo_pic .bigpic {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    color: #999
}

.inpro_image .right .lunbo_pic .bigpic i {
    margin-right: 5px;
    font-size: 18px
}
.inpro_image .right .lunbo_pic .chanp_thumbs{
    border: 2px solid #d0d0d0;
    overflow: hidden;
}
.inpro_image .right .lunbo_pic .chanp_thumbs .swiper-slide img{
    width: 100%;
}

.inpro_image .right .lunbo_pic .chanp_top {
    margin-top: 15px;
    overflow: hidden;
    padding-bottom: 12px;
}

.inpro_image .right .lunbo_pic .chanp_top .swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
	width: 100%;
	left: 0;
}

.inpro_image .right .lunbo_pic .chanp_top .swiper-slide img{
    width: 100%;
}

.inpro_image .right .lunbo_pic .chanp_top .ov-h {
    border: 2px solid #d0d0d0
}

.inpro_image .right .lunbo_pic .chanp_top .swiper-slide-thumb-active .ov-h {
    border-color: #0d4a9a
}

.qrcode {
    position: relative
}

.qrcode i {
    font-size: 28px;
    color: #bbb;
    cursor: pointer;
    width: 100%;
    height: 100%
}

.qrcode #output {
    display: none;
    position: absolute;
    width: 150px;
    height: 150px;
    right: 120%;
    top: 0;
    z-index: 8;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(38,62,130,0.5)
}
.qrcode #output img{
    width: 100%;
}

.tab-tit {
    border-bottom: 1px solid #efefef;
    margin-top: 80px;
    margin-bottom: 50px
}

.tab-tit>div {
    display: flex;
    justify-content: space-between
}

.tab-tit>div a {
    width: 25%;
    font-size: 18px;
    padding: 30px 0;
    color: #999;
    text-align: center;
    position: relative
}

.tab-tit>div a.active {
    color: #333;
    font-size: 22px;
    font-weight: bold
}

.tab-tit>div a.active::after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #0d4a9a;
    position: absolute;
    bottom: 0;
    left: 0
}

.tab-content .tabtitle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 80px;
    margin-bottom: 40px
}

.tab-content .tabtitle h3 {
    font-size: 28px
}

.tab-content .tabtitle span {
    flex: 1;
    font-size: 15px;
    color: #999;
    text-transform: uppercase;
    margin-left: 15px
}

.tab-content .tabtitle .bigpic {
    color: #999
}

.tab-content .tabtitle .bigpic i {
    margin-right: 5px;
    font-size: 18px
}

.tab-content .neirong {
    overflow: hidden
}

.tab-content .neirong .img {
    background-color: #fff;
    border: 1px dashed #a9a9a9;
    padding: 20px 40px
}

.tab-content .neirong .img a {
    display: block;
    background-color: #fff
}

.tab-content .neirong .img img {
    margin: auto
}

.tab-content .bigpic table {
    width: 100%
}

.tab-content .bigpic table tr td:first-child {
    min-width: 120px;
    width: 200px
}

.tab-content .bigpic table tr td:first-child p {
    font-weight: bold;
    color: #333
}

.tab-content .bigpic table tr:first-child {
    border-bottom: 3px solid #333
}

.tab-content .bigpic table tr:nth-child(even) {
    background-color: #d6d6d6
}

.tab-content .bigpic table td {
    border: 2px solid #666;
    padding: 10px
}

.tab-content .bigpic table td P {
    color: #333
}

.tab-content .neirong2 {
    background-color: #f5f5f5;
    border: 1px dashed #a9a9a9;
    padding: 40px;
    margin-bottom: 30px;
    overflow: hidden
}

.tab-content .neirong2 p {
    position: relative
}

.tab-content .neirong2 p b {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
    display: inline-block
}

.tab-content .neirong2 p img {
    background-color: #fff;
    padding: 10px;
    max-width: 100%;
    max-height: 600px;
    margin: 10px auto
}

.tab-content .neirong2 .img {
    background-color: #fff;
    box-shadow: 0 5px 10px #dfdfdf
}

.tab-content .neirong3 img {
    width: 100%
}

.tab-content .list {
    position: relative;
    margin-bottom: 120px
}

.tab-content .list .item {
    border: 1px solid #e1e1e1
}

.tab-content .list .item a {
    display: block
}

.tab-content .list .item .txt {
    padding: 50px 40px 20px
}

.tab-content .list .item .txt h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px
}

.tab-content .list .item .txt p {
    font-size: 15px;
    color: #999;
    height: 16px;
    line-height: 1;
}

.tab-content .list .item .ov-h {
    padding: 15px;
    padding-left: 28%
}

.tab-content .list .item:hover {
    border-top-color: #0d4a9a
}

.tab-content .list .item:hover h3 {
    color: #0d4a9a
}
/* --- */

.inpro_image .inpro_detail {
	padding: 50px;
	background-color: #fff;
	margin-top: 20px;
}

.inpro_image .inpro_detail h5 {
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}
.inpro_image .inpro_detail .inpro_cont{
    overflow: hidden;
}
.inpro_image .inpro_detail .bt{
    position: relative;
    margin-top: 30px;
}

.inpro_image .inpro_detail .apl{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inpro_image .inpro_detail .apl li{
    width: calc((100% - 30px) / 4);
}
.inpro_image .inpro_detail .apl li img{
    width: 100%;
}
.inpro_image .inpro_detail *{
    line-height: 150%;
}
.inpro_image .inpro_detail * + p{
    margin-top: 10px;
}
.inpro_image .inpro_detail * b{
    font-weight: bold;
}

.inpro_image .inpro_detail table{
    width: 100%;
    margin: 15px 0;
}
.inpro_image .inpro_detail table td{
    border: 1px solid #ccc;
    padding: 10px 1%;
}
.inpro_image .inpro_detail table td:nth-child(1){
    width: 300px;
    background-color: #f0f0f0;
    vertical-align: middle;
}
.inpro_image .inpro_detail table td:nth-child(2){
    width: calc(100% - 300px);
    vertical-align: middle;
}

.inpro_image .inpro_detail .context {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	border: 1px solid #eee;
	margin-top: 30px;
}

.inpro_image .inpro_detail .context p {
	width: 50%;
	padding: 20px;
}
.inpro_image .inpro_detail .context p + p{
    margin-top: 0;
}

.inpro_image .inpro_detail .context p.prevNews {
	border-right: 1px solid #eee;
}

.inpro_image .inpro_detail .context p a {
	width: calc(100% - 60px);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 16px;
	color: #666;
}

.inpro_image .inpro_detail .context p a:hover {
	color: #333;
}


.inpro_image .products_reco {
	background-color: #fff;
	margin-top: 20px;
	padding: 50px;
}

.inpro_image .products_reco .tit h3 {
	font-size: 24px;
}

.inpro_image .products_reco .pro_reco ul {
	display: flex;
    flex-wrap: wrap;
}

.inpro_image .products_reco .pro_reco li {
	width: calc((100% - 60px) / 4);
	margin-right: 20px;
}

.inpro_image .products_reco .pro_reco li:nth-child(4) {
	margin-right: 0;
}

.inpro_image .products_reco .pro_reco li .pic,
.inpro_image .products_reco .pro_reco li .pic img {
	width: 100%;
	transition: all 0.3s;
}

.inpro_image .products_reco .pro_reco li .pic {
	border: 1px solid #eee;
	overflow: hidden;
}

.inpro_image .products_reco .pro_reco li:hover .pic {
	border-color: #0d4a9a;
}

.inpro_image .products_reco .pro_reco li:hover .pic img {
	transform: scale(1.2);
}

.inpro_image .products_reco .pro_reco li .bt {
	margin-top: 10px;
	font-size: 16px;
	line-height: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
	color: #333;
}

.inpro_image .products_reco .pro_reco li:hover .bt {
	color: #0d4a9a;
}

/* insearch */
.insearch {
	padding: 50px;
	background-color: #fff;
}

.insearch h5 {
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	line-height: 100%;
	margin-bottom: 30px;
}

.insearch .dfx {
	flex-wrap: wrap;
}

.insear_items {
	width: calc((100% - 60px) / 4);
	margin-right: 20px;
}

.insear_items:nth-child(4n) {
	margin-right: 0;
}

.insear_items:nth-child(n+5) {
	margin-top: 20px;
}

.insear_items .pic,
.insear_items .pic img {
	width: 100%;
	transition: all 0.3s;
}

.insear_items .pic {
	border: 1px solid #eee;
	overflow: hidden;
}

.insear_items:hover .pic {
	border-color: #0d4a9a;
}

.insear_items:hover .pic img {
	transform: scale(1.2);
}

.insear_items .bt {
	margin-top: 10px;
	font-size: 16px;
	line-height: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
}

.insear_items:hover .bt {
	color: #0d4a9a;
}
.innews_detail .right_side_box .hot_news .tit .jyfont, .products_reco .tit .jyfont {
    font-size: 24px;
    line-height: 100%;
}
.jy_gengduo1:before {
    content: "+";
}

@media (max-width: 1300px) {
	   /* inner img products */
    .procate_wrap .procate_con,
    .prolist_wrap .con{
        gap: 20px;
    }
    .procate_wrap .procate_con .procate_list,
    .prolist_wrap .con .list{
        width: calc((100% - 40px) / 3);
        margin-right: 0;
    }
    .procate_wrap .procate_con .procate_list:nth-child(n+5){
        margin-top: 0;
    }
    .procate_wrap .procate_con.category .procate_list:nth-child(9){
        display: block;
    }
	}
	
	@media (max-width: 1024px) {
		
		 /* inner img produdts */
    .prolist_wrap,
    .procate_wrap,
    .inpro_image .chanp01,
    .inpro_image .inpro_detail,
    .inpro_image .products_reco,
    .inab_img,
    .inner_ab{
        padding: 40px;
    }
    .procate_wrap .procate_con .procate_list,
    .prolist_wrap .con .list{
        width: calc((100% - 20px) / 2);
    }
    .procate_wrap .procate_con.category .procate_list:nth-child(9){
        display: none;
    }
    .inpro_image .chanp01{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .inpro_image .left,
    .inpro_image .right{
        width: 100%;
    }
    .inpro_image .inpro_detail table td:nth-child(1){
        width: 128px;
    }
    .inpro_image .inpro_detail table td:nth-child(2){
        width: calc(100% - 128px);
    }
    .inpro_image .inpro_detail .apl li{
        width: calc((100% - 20px) / 3);
    }
    .inpro_image .inpro_detail .apl li:nth-child(7),
    .inpro_image .inpro_detail .apl li:nth-child(8){
        display: none;
    }
    .inpro_image .products_reco .pro_reco li{
        width: calc((100% - 40px) / 3);
    }
    .inpro_image .products_reco .pro_reco li:nth-child(3){
        margin-right: 0;
    }
    .inpro_image .products_reco .pro_reco li:nth-child(4){
        display: none;
    }
		}
		
	@media (max-width: 768px) {
		 /* inner img product*/
    .inpro_image .inpro_detail .apl li{
        width: calc((100% - 10px) / 2);
    }
    .inpro_image .inpro_detail .apl li:nth-child(7),
    .inpro_image .inpro_detail .apl li:nth-child(8){
        display: block;
    }
    .inpro_image .products_reco .pro_reco li{
        width: calc((100% - 20px) / 2);
    }
    .inpro_image .products_reco .pro_reco li:nth-child(2){
        margin-right: 0;
    }
    .inpro_image .products_reco .pro_reco li:nth-child(3){
        margin-right: 20px;
    }
    .inpro_image .products_reco .pro_reco li:nth-child(4){
        display: block;
    }
    .inpro_image .products_reco .pro_reco li:nth-child(n+3){
        margin-top: 20px;
    }
	.procate_wrap .procate_con, .prolist_wrap .con{ gap:0px;}
		}
@media (max-width: 565px) {
	 /* inner img produdts */
    .prolist_wrap,
    .procate_wrap,
    .inpro_image .chanp01,
    .inpro_image .inpro_detail,
    .inpro_image .products_reco,
    .inab_img,
    .inner_ab{
        padding: 30px;
    }

    .procate_head a{
        font-size: 22px;
    }
    .inpro_image .right .lunbo_pic .bigpic,
    .inpro_image .right .lunbo_pic .bigpic i{
        font-size: 14px;
    }

    .procate_wrap .procate_con .procate_list,
    .prolist_wrap .con .list{
        width: 100%;margin-top: 10px;
    }
    .procate_wrap .procate_con.category .procate_list:nth-child(n+5){
        display: block;
    }
    .innews_detail .left_side_box .products_reco .pro_reco li{
        width: 100%;
    }
    .inpro_image .left .cp01 .tit h2{
        font-size: 24px;
    }
    .inpro_image .left .cp02 .gaikuang,
    .inpro_image .left .cp03 .tips p{
        font-size: 14px;
    }
    .inpro_image .left .cp03 .anniu{
        margin: 30px 0 40px;
    }
    .inpro_image .left .cp03 .anniu a{
            padding: 8px 25px;
    }
    .inpro_image .left .cp02 span,
    .inpro_image .inpro_detail h5{
        font-size: 18px;
    }
    .inpro_image .inpro_detail *{
        font-size: 14px;
    }
    .inpro_image .inpro_detail table td:nth-child(1){
        width: 105px;
    }
    .inpro_image .inpro_detail table td:nth-child(2){
        width: calc(100% - 105px);
    }
	}

/*联系方式*/
.inner_box {
    width: 100%;
    background: #f4f4f4;
    padding: 60px 0;
}
.inner_cont{
	padding: 30px;
	background: #fff;
}
.contact_c2{
	overflow: hidden;
	padding-bottom: 1px;
	margin-bottom: 30px;
}
.contact_c2 li {
    border: 1px solid #e6e6e6;
    position: relative;
    margin: 0 -1px -1px 0;
    overflow: hidden;
    float: left;
    height: 93px;
    line-height: 28px;
    font-size: 18px;
    color: #222222;
}
.contact_c2 li img {
    padding-right: 20px;
}
.contact_c2 li.li01 {
    width: 16%;
    padding-left: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.contact_c2 li.li02 {
    width: 34%;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	display: flex;
    align-items: center;
}

.inner_content{
    padding: 50px 0;background-color: #f6f6f6;
}


/* innews details */
.innews_detail {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.innews_detail .left_side_box {
	width: calc(100% - 380px);
	position: relative;
}

.innews_detail .left_side_box .backNewsList {
	width: 60px;
	display: block;
	position: absolute;
	left: -60px;
	top: 0;
	cursor: pointer;
	padding: 12px 0;
	background-color: #ccc;
	text-align: center;
	font-size: 14px;
	color: #fff;
}

.innews_detail .left_side_box .article {
}

.innews_detail .left_side_box .article .conBox {
	background-color: #fff;
	padding: 50px 30px;
	border-bottom: 1px solid #eee;
}

.innews_detail .left_side_box .article .conBox .tit {
	margin-bottom: 20px;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 20px;
	position: relative;
}

.innews_detail .left_side_box .article .conBox .tit h2 {
	font-size: 28px;
	line-height: 100%;
	margin-bottom: 20px;
	text-align: center;
}

.innews_detail .left_side_box .article .conBox .tit .share {
	width: 100%;
}

.innews_detail .left_side_box .article .conBox .tit .share p {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.innews_detail .left_side_box .article .conBox .tit .share p > span {
	display: block;
	font-size: 14px;
	color: #999999;
	padding: 0 8px;
	line-height: 100%;
}

.innews_detail .left_side_box .article .conBox .tit .share p > span + span {
	border-left: 1px dotted #b6b6b6;
}

.innews_detail .left_side_box .article .conBox .tit .share p > span:first-child {
	padding-left: 0;
}

.innews_detail .left_side_box .article .conBox .centent,
.innews_detail .left_side_box .article .conBox .centent * {
	font-size: 16px;
	line-height: 160%;
	color: #666;
}

.innews_detail .left_side_box .article .conBox .centent video{
	max-width: 800px;
	max-height: 85vh;
	margin: 0 auto;
}

.innews_detail .left_side_box .article .context {
	background-color: #fff;
	display: flex;
}

.innews_detail .left_side_box .article .context p {
	width: 50%;
	padding: 25px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.innews_detail .left_side_box .article .context p a {
	width: calc(100% - 65px);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 16px;
	color: #666;
}

.innews_detail .left_side_box .article .context p a:hover {
	color: #333;
}

.innews_detail .left_side_box .article .context .prevNews {
	border-right: 1px solid #eee;
}

.innews_detail .left_side_box .products_reco {
	background-color: #fff;
	margin-top: 20px;
	padding: 30px;
}

.innews_detail .left_side_box .products_reco .pro_reco ul {
	display: flex;
}

.innews_detail .left_side_box .products_reco .pro_reco li {
	width: calc((100% - 60px) / 4);
	margin-right: 20px;
}

.innews_detail .left_side_box .products_reco .pro_reco li:nth-child(4) {
	margin-right: 0;
}

.innews_detail .left_side_box .products_reco .pro_reco li .pic,
.innews_detail .left_side_box .products_reco .pro_reco li .pic img {
	width: 100%;
	transition: all 0.3s;
}

.innews_detail .left_side_box .products_reco .pro_reco li .pic {
	border: 1px solid #eee;
	overflow: hidden;
}

.innews_detail .left_side_box .products_reco .pro_reco li:hover .pic {
	border-color: #0d4a9a;
}

.innews_detail .left_side_box .products_reco .pro_reco li:hover .pic img {
	transform: scale(1.2);
}

.innews_detail .left_side_box .products_reco .pro_reco li .bt {
	margin-top: 10px;
	font-size: 16px;
	line-height: 100%;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
}

.innews_detail .left_side_box .products_reco .pro_reco li:hover .bt {
	color: #0d4a9a;
}

.innews_detail .right_side_box {
	width: 360px;
}

.innews_detail .right_side_box .hot_news {
	background-color: #fff;
	padding: 30px;
}

.innews_detail .right_side_box .hot_news .tit,
.products_reco .tit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
	position: relative;
}

.innews_detail .right_side_box .hot_news .tit::after {
	content: '';
	width: 72px;
	height: 1px;
	background-color: #0012a1;
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 9;
	display: none;
}

.innews_detail .right_side_box .hot_news .tit h3,
.products_reco .tit h3 {
	font-size: 18px;
	color: #333333;
	line-height: 100%;
	font-weight: normal;
	display: flex;
	align-items: center;
}

.innews_detail .right_side_box .hot_news .tit h3 em,
.products_reco .tit h3 em {
	font-weight: bold;
	color: #0012a1;
}

.innews_detail .right_side_box .hot_news .tit .jyfont,
.products_reco .tit .jyfont{
	font-size: 24px;
	line-height: 100%;
}

.innews_detail .right_side_box .hot_news .tit .jyfont:hover,
.products_reco .tit .jyfont:hover{
	color: #0d4a9a;
}

.innews_detail .right_side_box .hot_news ul {
}

.innews_detail .right_side_box .hot_news.new_news ul li.active,
.innews_detail .right_side_box .hot_news ul li {
	list-style: disc;
	list-style: none;
}

.innews_detail .right_side_box .hot_news ul li.active {
	list-style: none;
}

.innews_detail .right_side_box .hot_news ul li+li {
	margin-top: 10px;
}

.innews_detail .right_side_box .hot_news ul li .pic,
.innews_detail .right_side_box .hot_news ul li .pic img {
	width: 100%;
	display: block;
}

.innews_detail .right_side_box .hot_news ul li .pic {
}

.innews_detail .right_side_box .hot_news ul li.active .pic {
	height: auto;
	visibility: visible;
	border: 1px solid #eee;
}
.innews_detail .right_side_box .hot_news ul li .pic img{
	width: 100%;
}

.innews_detail .right_side_box .hot_news ul li .bt {
	font-size: 16px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-top: 10px;
	color: #333;
}

.innews_detail .right_side_box .hot_news ul li:hover .bt{
	color: #0d4a9a;
}

.innews_detail .right_side_box .hot_news ul li.active .bt {
	font-weight: bold;
	color: #333;
}

.innews_detail .right_side_box .new_news {
	margin-top: 20px;
}

.cont_pic img {
    margin: 0 auto;
}
@media (max-width: 1500px) {
	.innews_detail .left_side_box .article .conBox .centent img {
    width: 100%;
}
	}

@media (max-width: 1300px) {
	.innews_detail .left_side_box .article .conBox .tit .share p{justify-content: start;}
	}

@media (max-width: 1280px){
	.innew_li{ padding:30px;}
	.innew_li .dfx{gap: 30px;    flex-wrap: wrap;}
	.innew_li .pic {
    width: 100%;
    height: auto;
}
.innew_li .text {
    position: relative;
    max-width: 100%;
	    width: 100%;
}
.innew_li .text .btn{ display:none;}
.innew_li .text .tit {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    -webkit-line-clamp: 1;
    font-family: 'crimson';
    font-size: 22px;
    line-height: 120%;
    display: block;
    color: #333;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.innew_li .text .txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
   
    font-size: 14px;
    line-height: 22px;
}
.innew_li .text .tit .see{ display:none;}




.innews_detail .left_side_box{ width:100%;}
.innews_detail .left_side_box .backNewsList{display: none;}
.innews_detail .left_side_box .article .conBox{padding: 30px;}
.innews_detail .left_side_box .article .conBox .title{margin-bottom: 20px;padding-bottom: 12px;}
.innews_detail .left_side_box .article .conBox .title h2 {
    font-size: 22px;
    margin-bottom: 0;
}
.innews_detail .left_side_box .article .conBox .title .share{ display:none;}
.innews_detail .left_side_box .article .conBox .centent, .innews_detail .left_side_box .article .conBox .centent *{ font-size:14px;}
.innews_detail .left_side_box .article .context{flex-wrap: wrap;}
.innews_detail .left_side_box .article .context p {
    width: 100%;
    border: none;
    padding: 10px;
}
.innews_detail .left_side_box .article .context p a{ font-size:14px;}

.footer_box .footer_main .f_info .qrcode .item .img .pb{    font-size: 18px;}
}

@media (max-width: 1024px) {
	 .inner_detail{
        flex-wrap: wrap;
    }
    .inner_detail .indeta_left{
        width: 100%;
    }
    .inner_detail .indeta_right{
        width: 100%;
    }
    .inner_detail .indeta_right .indeta_list{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }
    .inner_detail .indeta_right .indeta_list .item{
        width: calc((100% - 20px) / 2);
    }
    .inner_detail .indeta_right .indeta_list .item + .item{
        margin-top: 0;
    }

    .innews_detail{
        flex-wrap: wrap;
    }
    .innews_detail .left_side_box{
        width: 100%;
    }
    .innews_detail .right_side_box{
        width: 100%;
    }
    .innews_detail .right_side_box .hot_news ul{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .innews_detail .right_side_box .hot_news ul li{
        width: calc((100% - 20px) / 2);
    }
    .innews_detail .right_side_box .hot_news ul li+li{
        margin-top: 0;
    }
    .innews_detail .left_side_box .article .conBox{
        padding: 40px 30px;
    }
	}
	
	@media (max-width: 768px) {
		.inner_detail .indeta_left h1{
        font-size: 24px;
        line-height: 130%;
    }
    .inner_detail .indeta_left .news_lefttit .newsinfo,
    .inner_detail .indeta_left .indeta_leftcont{
        font-size: 14px;
    }
    .inner_detail .indeta_left .news_lefttit .newsinfo{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .innews_detail .left_side_box .article .conBox .tit h2{
        font-size: 24px;
        text-align: left;
        line-height: 130%;
    }
    .innews_detail .right_side_box .hot_news ul li,
    .inner_detail .indeta_right .indeta_list .item{
        width: 100%;
    }
    .innews_detail .left_side_box .article .conBox{
        padding: 30px;
    }
    .innews_detail .left_side_box .article .context{
        flex-wrap: wrap;
    }
    .innews_detail .left_side_box .article .context p{
        width: 100%;
    }
    .innews_detail .left_side_box .article .context .prevNews{
        padding-bottom: 5px;
    }
    .innews_detail .left_side_box .article .context .NextNews{
        padding-top: 5px;
    }
    .innews_detail .left_side_box .products_reco .pro_reco ul{
        flex-wrap: wrap;
        gap: 20px;
    }
    .innews_detail .left_side_box .products_reco .pro_reco li{
        width: calc((100% - 20px) / 2);
        margin-right: 0;
    }
    .innews_detail .left_side_box .products_reco .pro_reco li .bt{
        font-size: 14px;
    }
		}

@media (max-width: 565px){
.innews_detail .left_side_box .article .conBox .title h2{font-size: 18px;
    line-height: 26px;}
}



/*about*/
.inner_ab{
	display: flex;
	justify-content: space-between;
	background: #fff;
	padding: 50px;
	box-sizing: border-box;
}
.inner_ab .page_left{
	width: 600px;
}
.inner_ab .page_left .page_title{
	margin: 14px auto;
}
.inner_ab .page_left .page_title .page_title_yw{
	display: block;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 100%;
    margin: 10px 0px 8px 0px;
}
.inner_ab .page_left .page_title .page_title_zw{
	font-size: 28px;
    line-height: 36px;
    font-weight: normal;
}
.inner_ab .page_left .page_ggy{
	height: 130px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    background: #0d4a9a;
}
.inner_ab .page_left .page_ggy p{
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    padding-top: 29px;
}
.inner_ab .page_left{}

.inner_ab .page_right{
	width: calc(100% - 600px);
	padding: 108px 0 0 50px;
}
.inner_ab .page_right .page_right_tit{
	display: block;
    color: #0d4a9a;
    font-size: 32px;
    font-weight: bold;
    border-bottom: 1px solid #f3edf0;
    padding-bottom: 30px;
    margin-bottom: 50px;
}
.inner_ab .page_right .page_right_des{}
.inner_ab .page_right .page_right_des p{
	font-size: 16px;
    text-indent: 2em;
    line-height: 36px;
}
@media (max-width: 1430px) {
	 /* inner about */
    .inner_ab .page_right .page_right_tit{
        margin-bottom: 45px;
    }
    .inner_ab .page_right .page_right_des p{
        font-size: 15px;
        line-height: 30px;
    }

    /* inner contact */
    .contact_c2 li.li01{
        padding-left: 25px;
    }
    .contact_c2 li img{
        padding-right: 15px;
    }
    .contact_c2 li.li02{
        padding-left: 25px;
    }
	}

@media (max-width: 1300px) {
	 /* inner contact */
    .contact_c2 li.li01{
        width: 168px;
        padding-left: 20px;
    }
    .contact_c2 li img{
        padding-right: 10px;
    }
    .contact_c2 li.li02{
        width: calc(50% - 168px);
        padding-left: 20px;
    }
	}

@media (max-width: 1200px) {
	 /*inner about*/
    .inner_ab{
        flex-wrap: wrap;
    }
    .inner_ab .page_left{
        width: 100%;
    }
    .inner_ab .page_left .page_pic img{
        width: 100%;
    }
    .inner_ab .page_left .page_ggy{
        padding-left: 30px;
    }
    .inner_ab .page_left .page_ggy,
    .inner_ab .page_left .page_ggy p{
        text-align: left;
    }
    .inner_ab .page_right{
        padding-left: 0;
        padding-top: 30px;
        width: 100%;
    }
    .inner_ab .page_right .page_right_tit{
        padding-bottom: 20px;
        margin-bottom: 25px;
    }
	 /* inner contact */
    .contact_c2 li{
        font-size: 16px;
        line-height: 24px;
    }
	
	}
@media (max-width: 1024px) {
	 /* inner contact */
    .contact_c2 li.li01{
        width: 150px;
        padding-left: 20px;
    }
    .contact_c2 li img{
        width: 38px;
    }
    .contact_c2 li.li02{
        width: calc(100% - 150px);
        padding-right: 20px;
    }
	
	}
	@media (max-width: 768px) {
		 /*inner about*/
    .inner_ab .page_left .page_title{
        margin-top: 0;
    }
    .inner_ab .page_left .page_title .page_title_yw,
    .inner_ab .page_right .page_right_tit{
        font-size: 24px;
    }
    .inner_ab .page_left .page_title .page_title_yw{
        margin-bottom: 3px;
        margin-top: 0;
    }
    .inner_ab .page_left .page_title .page_title_zw{
        font-size: 22px;
    }
    .inner_ab .page_left .page_ggy{
        font-size: 16px;
        padding: 0 20px 20px;
        height: auto;
    }
    .inner_ab .page_left .page_ggy p{
        font-size: 18px;
        padding-top: 20px;
    }
    .inner_ab .page_right{
        padding-top: 20px;
    }
    .inner_ab .page_right .page_right_tit{
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
	  /* inner contact */
    .contact_c2 li{
        line-height: 22px;
    }
    .contact_c2 li.li01{
        width: 140px;
        padding-left: 15px;
    }
    .contact_c2 li img{
        width: 32px;
    }
    .contact_c2 li.li02{
        width: calc(100% - 140px);
        padding-left: 15px;
        padding-right: 15px;
    }
    .inner_cont #map{
        height: 350px !important;
    }
		}
		@media (max-width: 565px) {
			  .inner_ab{
        padding: 30px;
    }
			}

.inp_num{
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 2px;
}
.inp_num li{
    width: calc((100% - 3px) / 4);
    background-color: #fff;
    text-align: center;
    padding: 60px 0;
}
.inp_num li h5{
    font-size: 42px;
    line-height: 100%;
    font-weight: bold;
    color: #0d4a9a;
}
.inp_num li p{
    font-size: 16px;
    font-weight: 500;
    color: #aaaaaa;
    margin-top: 10px;
}

.inp_history{
    margin: 0 0 80px;

}
.inp_history .inh_con .timeline{
    margin-top: 50px;
}
.inp_history .incom_tit{
    margin: 0 auto;
}

@media (max-width:968px) {
	  .inp_num{
        flex-wrap: wrap;
    }
    .inp_num li{
        width: calc((100% - 1px) / 2);
        box-sizing: border-box;
    }
	}
@media (max-width: 765px) {
    .inp_num li{
        padding: 40px 0;
    }
    .inp_num li h5{
        font-size: 36px;
    }
    .inp_history{
        padding: 60px 0 0;
        margin-bottom: 0;
    }
    .inp_history .inh_con .timeline{
        margin-top: 30px;
    }
}

/*history*/
.history {
    padding: 100px 0 0;
    text-align: center;
}
.history .title{
    margin-bottom: 30px;
}
.history .timeline {
    position: relative;
   /* width: 100%;*/
    padding: 60px 0;
    overflow: hidden;
}

.history .timeline .timeline-divider{
	width: 100%;
	height: 2px;
	background-color: #939395;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
}

.history .swiper-wrapper {
    display: flex;
    position: relative;
}

.history .swiper-slide {
    height: 188px;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    cursor: grab;
}

.history .swiper-slide:hover {}
.history .swiper-slide .timeline__content{
    display: flex;
    flex-wrap: wrap;
    position: absolute;
}
.history .swiper-slide .timeline__content::before{
    content:'';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 2px solid #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -1px;
    z-index: 2;
}
.history .swiper-slide:nth-child(odd) .timeline__content::before{
    top: -28px;
    background: #0d4a9a;
}
.history .swiper-slide:nth-child(even) .timeline__content::before{
    bottom: -26px;
    background: #656565;
}
.history .swiper-slide:nth-child(odd) .timeline__content{
    top: 50%;
    margin-top: 18px;
}
.history .swiper-slide:nth-child(even) .timeline__content{
	flex-direction: column-reverse;
    bottom: 50%;
    margin-bottom: 18px;
}
.history .swiper-slide .timeline__content .num {
    font-size: 22px;
    margin: 0 auto 10px;
    color: #939395;
    position: relative;
    padding-left: 60px;
}
.history .swiper-slide:nth-child(odd) .timeline__content .num{
    padding-bottom: 10px;
}
.history .swiper-slide:nth-child(even) .timeline__content .num{
    padding-top: 10px;
}
.history .swiper-slide .timeline__content .num::before,
.history .swiper-slide .timeline__content .num::after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.history .swiper-slide:nth-child(odd) .timeline__content .num::before,
.history .swiper-slide:nth-child(odd) .timeline__content .num::after{
    bottom: 0;
}
.history .swiper-slide:nth-child(even) .timeline__content .num::before,
.history .swiper-slide:nth-child(even) .timeline__content .num::after{
    top: 0;
}
.history .swiper-slide .timeline__content .num::before{
    width: 1px;
    height: 42px;
    background-color: #939395;
}
.history .swiper-slide .timeline__content .num::after{
    width: 5px;
    height: 5px;
    background-color: #939395;
    border-radius: 100%;
}
.history .swiper-slide:hover .timeline__content .num{
    /*color: #fff;*/
}
.history .swiper-slide:nth-child(even) .num{
	margin-top: 10px;
	margin-bottom: 0;
}

.history .swiper-slide .timeline__content  .txt {
    width: 100%;
    font-size: 18px;
    line-height: 20px;
    color: #666666;
}
.history .swiper-slide:hover .timeline__content .txt{
    /*color: rgba(255,255,255,0.8);*/
}
.history .swiper-button-next{
    right: 0;
}
.history .swiper-button-prev{
    left: 0;
}
.history .swiper-button-next,
.history .swiper-button-prev {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: #e6e6e6;
    top: 50%;
    transform: translateY(18%);
}
.history .swiper-button-next::after,
.history .swiper-button-prev::after{
    font-size: 14px;
    color: #333;
}
@media (max-width: 768px) {
    .history{
        padding: 80px 0 0;
    }
}
@media (max-width: 640px) {
    .history .timeline {
        padding: 60px 0 0;
    }
    .history .swiper-slide:nth-child(odd) .timeline__content::before{
        bottom: -26px;
        top: auto;
    }
    .history .swiper-slide:nth-child(odd) .timeline__content{
        flex-direction: column-reverse;
        bottom: 50%;
        top: auto;
        margin-bottom: 45px;
        margin-top: 0;
    }
    .history .swiper-slide:nth-child(even) .timeline__content{
        margin-bottom: 45px;
    }
    .history .swiper-slide:nth-child(odd) .timeline__content .num{
        padding-top: 10px;
        padding-bottom: 0;
    }
    .history .swiper-slide:nth-child(odd) .timeline__content .num::before,
    .history .swiper-slide:nth-child(odd) .timeline__content .num::after{
        bottom: auto;
        top: 0;
    }
    .history .swiper-slide:nth-child(odd) .num{
        margin-bottom: 0;
        margin-top: 10px;
    }
}
@media (max-width: 565px) {
    .history{
        padding: 60px 0 0;
    }
}
.swiper-slide{ background:none;}


.incom_tit{
    max-width: 480px;
}
.incom_tit span{
    font-size: 20px;
    line-height: 118%;
    display: block;
}
.incom_tit h4{
    margin: 5px 0 20px;
    font-size: 32px;
    line-height: 118%;
    color: #0d4a9a;
    font-weight: bold;
}

@media (max-width:1024px) {
    .incom_tit h4{
        font-size: 26px;
    }
}

@media (max-width:868px) {
    .incom_tit h4{
        font-size: 22px;
        margin: 5px 0 10px;
    }
}