/* 轮播图 */
.bannner {
	/* overflow: hidden; */
	/* margin-top: 0.8rem; */
	/* height: 9.55rem; */
	height: 7.87rem;
	position: relative;
	width: 100%;
}

.slideshow {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 0.18rem;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide1 {
	position: relative;
}

.zhanlan {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zhan {
	position: relative;
	width: 2.8rem;
	height: 0.6rem;
	background-color: rgb(0 0 0 / 25%);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	        border: 1px solid rgba(255, 255, 255, 0.20);
	    border-left: 0;
		backdrop-filter: blur(10px); /* 模糊强度（值越大越模糊） */
}

.lan {
	margin-left: 0.4rem;
}

.zhan p {
	display: flex;
	align-items: center;
	font-size: 0.22rem;
	color: #fff;
	margin-left: 0.7rem;
}

.zhan p img {
	width: 0.3rem;
	height: auto;
	margin-left: 0.2rem;
}

.zhan_biao {
	position: absolute;
	left: 0;
	width: 0.75rem;
	height: 0.75rem;
	background-color: rgb(0 0 0 / 65%);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	transition: all 0.3s;
	backdrop-filter: blur(10px); /* 模糊强度（值越大越模糊） */
}

.zhan_biao img {
	width: 0.3rem;
	height: auto;
}

.zhan:hover .zhan_biao {
	background-color: rgb(12 146 241 / 85%);
}

/* 轮播图标题导航栏整体样式 */
.banner-nav {
	display: flex;
	justify-content: center;
	gap: 0.2rem;
	padding: 0.3rem 0.3rem;
	position: absolute;
	/* top: 120px; */
	bottom: -10%;
	z-index: 9;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	width: 16.5rem;
	background-color: rgb(255 255 255 / 100%);
	/* border-radius: 25px; */
	box-shadow: 0 -2px 25px 2px rgb(0 0 0 / 0.2);
}

.nav-item {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	/* 用于 SVG 重叠定位 */
	margin-right: 0.2rem;
	width: 18%;
}

.nav-item img {
	width: 100%;
	height: 1.28rem;
	object-fit: cover;
	opacity: 0.5;
	transition: all 0.1s;
}

.banner-nav .active img {
	opacity: 1;
	border: #007ed3 5px solid;
}

/* 底环样式（灰色，始终显示） */
.ring-base {
	position: absolute;
	left: 0;
	width: 25px;
	height: 25px;
}

/* 进度环样式（蓝色，动画控制） */
.ring-progress {
	position: absolute;
	left: 0;
	width: 25px;
	height: 25px;
}

.nav-item span {
	color: #333;
	font-size: 19px;
	margin-left: 10px;
	/* 避开 SVG 区域 */
}

.banner-nav .active span {
	margin-left: 40px;
	/* 避开 SVG 区域 */
	font-weight: bold;
}

.nav-item.active .ys-bandots-circle {
	stroke-dashoffset: 0;
	/* 激活时进度环充满 */
	/* transition: stroke-dashoffset 8s ease; */
}

/* 关键修正：先定义非 active 状态显示 SVG，active 状态隐藏 SVG */
/* 非 active 状态：SVG 显示，dot 隐藏 */
/* 核心逻辑：active 显示 SVG，非 active 隐藏 SVG */
/* 非 active 状态：隐藏 SVG， */
.nav-item:not(.active) .ring-base,
.nav-item:not(.active) .ring-progress {
	display: none !important;
	/* 强制隐藏 SVG */
}

.nav-item:not(.active) .dot {
	display: block;
	/* 非激活时隐藏 dot */
}

/* active 状态：显示 SVG，隐藏 dot */
.nav-item.active .ring-base,
.nav-item.active .ring-progress {
	display: block !important;
	/* 强制显示 SVG */
}

.nav-item.active .dot {
	display: none;
	/* 激活时隐藏 dot */
}

/* dot 样式（仅备用，当前逻辑下不显示） */
.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #000;
	margin-left: 0;
	position: relative;
	z-index: 1;
}

/* 简介 */
.jianjie {
	padding-top: 2.05rem;
	padding-bottom: 200px;
	width: 100%;
	background: #fff;
	background-image: url(../image/jjbj.png);
	background-size: 100% 100%;
}

.jianjie_zy {
	display: flex;
	justify-content: space-between;
}

.jianjie_z {
	width: 8.32rem;
}

.jianjie_y {
	width: 6.1rem;
}

.jianjie_z_zi {
	display: flex;
	align-items: center;
	padding-bottom: 0.4rem;
}

.jianjie_z_zi p {
	font-size: 0.48rem;
	color: #1072b8;
	font-weight: bold;
	padding-right: 0.25rem;
	    font-family: 'PingFangBold';
}

.jianjie_z_zi p:nth-child(1) {
	color: #333;
}

.jianjie_z_p p {
	color: #333;
	font-size: 0.19rem;
	line-height: 0.4rem;
}

.jianjie_z_gd {
	margin-top: 1.4rem;
	width: 2.4rem;
	height: 0.65rem;
	border-radius: 0.5rem;
	/* background: linear-gradient(to right, #0a6eb6, #097fd2); */
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 1px solid #333;
	overflow: hidden;
	transition: all 0.3s;
}

.jianjie_z_gd p {
	font-size: 0.22rem;
	color: #333;
	margin-right: 0.2rem;
	margin-left: 0.5rem;
	position: relative;
	z-index: 2;
	transition: all 0.3s;
}

.jianjie_z_gd img {
	width: 0.45rem;
	height: auto;
	border: 1px solid #333;
	border-radius: 50px;
	position: relative;
	z-index: 2;
	transition: all 0.3s;
}

.jianjie_z_gd::after {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	z-index: 1;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background: linear-gradient(to right, #0a6eb6, #097fd2);
	border-radius: 25px;
	transform: scaleX(0);
	transform-origin: right;
	-webkit-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-o-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.jianjie_z_gd:hover{
	border:1px solid transparent;
}
.jianjie_z_gd:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.jianjie_z_gd:hover img{
	border: 0;
}
.jianjie_z_gd:hover p{
	color: #fff;
}
.jianjie_y img {
	width: 100%;
	height: 5.65rem;
	object-fit: cover;
}

/* 数字滚动 */
.shuzi {
	width: 100%;
	padding-top: 0.9rem;
	padding-bottom: 1.7rem;
	background: #f4f4f4;
}

.shuzi_gundong_biaoti {
	padding-bottom: 0.75rem;
}

.shuzi_gundong_biaoti p {
	font-size: 0.48rem;
	line-height: 0.72rem;
	font-weight: bold;
	color: #333;
	display: flex;
	align-items: center;
	font-family: 'PingFangBold';
}

.shuzi_gundong_biaoti p text {
	color: #0b6fb7;
	line-height: 0.72rem;
}

.shuzi_gundong_ul {
	display: flex;
	justify-content: space-between;
}

.shuzi_gundong_ul_li h1 {
	font-size: 1.21rem;
	color: #1072b8;
	font-family: din_bold;
	    font-weight: 100;
}

.shuzi_gundong_ul_li h1 strong {
	font-size: 0.58rem;
	color: #333;
}

.shuzi_gundong_ul_li text {
	width: 3rem;
	height: 0.01rem;
	background: #d6d6d6;
	display: block;
}

.shuzi_gundong_ul_li p {
	font-size: 0.18rem;
	color: #333;
	line-height: 0.48rem;
	font-weight: bold;
}

/* 新闻中心 */
.news {
	width: 100%;
	padding-top: 0.9rem;
	padding-bottom: 1rem;
	background: #fff;
}

.news_biaoti {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 0.6rem;
}

.news_biaoti p {
	display: flex;
	align-items: center;
	font-size: 0.48rem;
	color: #333;
	font-weight: bold;
	font-family: 'PingFangBold';
}

.news_biaoti p text {
	color: #1072b8;
}

.news_biaoti a {
	display: flex;
	align-items: center;
	font-size: 0.22rem;
	color: #333;
}

.news_biaoti a img {
	width: 0.2rem;
	height: auto;
}

.news_zuoyou {
	width: 100%;
	height: 5.15rem;
	background: #f4f4f4;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.news_zuo {
	width: 50%;
	height: 100%;
	overflow: hidden;

}

.news_zuo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

.news_zuoyou:hover .news_zuo img {
	transform: scale(1.1);
}

.news_you {
	width: 50%;
	padding: 0.75rem 0.75rem 0.65rem 0.7rem;
}

.news_you span {
	font-size: 0.18rem;
	color: #9f9f9f;
}

.news_you h1 {
	font-size: 0.32rem;
	color: #333;
	padding-top: 0.2rem;
	padding-bottom: 0.25rem;
	white-space: nowrap;
	/* 禁止文字换行 */
	overflow: hidden;
	/* 隐藏超出容器的内容 */
	text-overflow: ellipsis;
	/* 超出部分显示省略号（...） */
	transition: all 0.3s;
	font-family: 'PingFangBold';

}

.news_you p {
	font-size: 0.19rem;
	line-height: 0.4rem;
	color: #9f9f9f;
	display: -webkit-box;
	/* 开启弹性盒模型（适配webkit内核浏览器） */
	-webkit-line-clamp: 3;
	/* 限制显示的行数 */
	-webkit-box-orient: vertical;
	/* 文字垂直排列 */
	overflow: hidden;
	/* 隐藏超出容器的内容 */
	text-overflow: ellipsis;
	/* 超出部分显示省略号（兼容性兜底） */

}

.news_zuoyou:hover .news_you h1 {
	color: #1072b8;
}

.news_you .jianjie_z_gd {
	margin-top: 0.65rem;
}

.news_you .jianjie_z_gd p {
	color: #333;
	font-size: 0.22rem;
}
.jianjie_z_gd:hover p{
	color: #fff;
}
.news_item {
	display: flex;
	justify-content: space-between;
	margin-top: 0.6rem;

}

.news_item_li {
	width: 31%;
	border-top: 2px solid #e3e3e3;
	position: relative;
}

.news_item_li_time {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.news_item_li_time p {
	font-size: 0.18rem;
	color: #9f9f9f;
}

.news_item_li_zuoyou {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news_item_li_zuo {
	width: 90%;
	height: 0.7rem;
}

.news_item_li_zuo p {
	font-size: 0.19rem;
	color: #333;
	line-height: 0.33rem;
	display: -webkit-box;
	/* 开启弹性盒模型（适配webkit内核浏览器） */
	-webkit-line-clamp: 2;
	/* 限制显示的行数 */
	-webkit-box-orient: vertical;
	/* 文字垂直排列 */
	overflow: hidden;
	/* 隐藏超出容器的内容 */
	text-overflow: ellipsis;
	/* 超出部分显示省略号（兼容性兜底） */
	width: 100%;
	/* 必须指定宽度，否则容器会随文字拉伸 */
}

.news_item_li_you {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 0.5rem;
	border: 1px solid #e3e3e3;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.n_img2 {
	display: none;
}

.news_item_li_you::after {
	content: "";
	position: absolute;
	top: -0.02rem;
	left: -0.02rem;
	z-index: 1;
	width: calc(100% + 0.02rem);
	height: calc(100% + 0.02rem);
	background: #007ed3;
	border-radius: 0.25rem;
	transform: scaleX(0);
	transform-origin: right;
	-webkit-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-o-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.news_item_li:hover .news_item_li_you::after {
	transform: scaleX(1);
	transform-origin: left;
}

.news_item_li:hover .n_img2 {
	display: block;
}

.news_item_li:hover .n_img1 {
	display: none;
}

.news_item_li:hover p {
	color: #1072b8;
	transition: all 0.3s;
}

.news_item_li_you img {
	width: 0.14rem;
	height: auto;
	position: relative;
	z-index: 6;
}

/* 近期展会日历 */
.jinqi {
	width: 100%;
	margin: 0 auto;
	max-width: 23.15rem;
	padding-top: 2rem;
	padding-bottom: 2.52rem;

	background: #f4f4f4;
	background-repeat: no-repeat;
	background-image: url(../image/jqbj.png);
	background-size: 100% 50%;
	overflow: hidden;

}

.jinqi .news_biaoti {
	padding-bottom: 1.1rem;
}

.jinqi .news_biaoti p {
	color: #fff;
}

.jinqi .news_biaoti a {
	color: #fff;
}

.rl_lb {
	/* background-color: #000; */
	width: 100%;
	height: 4.3rem;
	float: right;
	max-width: 17.82rem;
	overflow: hidden;
	position: relative;
}

.swiper-slide4 {
	overflow: hidden;
	margin-top: 0.1rem;
	height: 4.2rem !important;
	transition: all 0.5s !important;
}

.swiper-slide4:hover {
	/* margin-top: -0.1rem; */
	box-shadow: 0 -2px 25px 2px rgb(0 0 0 / 0.2);
	
}
.swiper-slide4::after {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	z-index: 1;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background: linear-gradient(to right, #0a6eb6, #097fd2);
	/* border-radius: 25px; */
	transform: scaleX(0);
	transform-origin: right;
	-webkit-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-o-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.swiper-slide4:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.swiper-slide4:hover .rllb_rq h1{
	color: #fff;
}
.swiper-slide4:hover .rllb_rq h2{
	color: #fff;
}
.j_img2{
	display: none !important;
}
.swiper-slide4:hover .j_img2{
	display: block  !important;
}
.swiper-slide4:hover .j_img1{
	display: none !important;
}

.swiper-slide4:hover .paixu{
	color: #238ad3;;
}
.paixu {
	color: #edf2f7;
	font-size: 1.75rem;
	position: absolute;
	right: -0.12rem;
	bottom: -0.4rem;
	/* font-weight: bold; */
	z-index: 5;
	font-family: din_bold;
	transition: all 0.5s !important;
	    font-weight: 100;
}

.rllb_rq {

	padding: 0.6rem 0.4rem 0.65rem 0.4rem;
	position: relative;
	z-index: 5;
	width: 100%;
}

.rllb_rq h1 {
	font-size: 0.47rem;
	color: #1072b8;
	transition: all 0.5s ;
	/* font-family: 'PingFangBold'; */
	font-family: din_bold;
	    font-weight: 100;
}
.rllb_rq h2 {
font-family: 'PingFangBold';
	transition: all 0.5s ;
}

.swiper-slide4 {
	display: block;
	text-align: left;
	position: relative;
}

.rllb_wz {
	padding: 0px 0.4rem 0px 0.4rem;
	position: relative;
	z-index: 5;
	width: 100%;
}

.rllb_wz p {
	display: flex;
	align-items: center;
	padding-bottom: 0.13rem;
	font-size: 0.19rem;
	color: #333;
}
.swiper-slide4:hover .rllb_wz p{
	color: #fff;
}
.rllb_wz p img {
	height: 0.2rem;
	width: auto;
	margin-right: 0.1rem;
	margin-top: 0.05rem;
}
@media screen and (max-width:1400px) {
	.shuzi_gundong_ul_li h1 {
	    font-size: 0.8rem;
	   
	}
	.shuzi{
		padding-left: 5%;
		padding-right: 5%;
		overflow: hidden;
	}
}
@media screen and (max-width:1300px) {
	.banner-nav{
		width: 90%;
	}
	.jinqi .bar{
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (max-width:1024px) {
	.banner-nav{
		display: none;
	}
	.bannner{
		width: 100%;
		height: 400px;
	}
	.zhanlan {
	 
	    bottom: 0.5rem;
	    
	}
	.jianjie_y{
		display: none;
	}
	.jianjie_z{
		width: 100%;
		padding-left: 5%;
		padding-right: 5%;
	}
	.shuzi_gundong_ul{
		flex-wrap: wrap;
	}
	.shuzi_gundong_ul_li{
		width: 48%;
	}
	.news{
		padding-left: 5%;
		padding-right: 5%;
	}
	.news_zuoyou{
		flex-wrap: wrap;
		width: 100%;
		height: auto;
	}
	.news_zuo{
		width: 100%;
	}
	.news_you{
		width: 100%;
	}
}
@media screen and (max-width:768px) {

	.bannner{
		width: 100%;
		height: 260px;
	}
	.jianjie{
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	.jianjie_z_zi p{
		font-size: 0.36rem;
	}
	.shuzi_gundong_biaoti p {
	    font-size: 0.36rem;
	    
	}
	    .shuzi_gundong_ul_li h1 {
	        font-size: 0.4rem;
	    }
}