/* 首页品展品列表从左到右样式 */
.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background-color: transparent !important;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

}


/* 首页产品展示 */
.product-item {
	/* 初始的阴影边框 */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	/* 其他必要的样式 */
	margin: 10px;
	/* 例如，添加一些外边距 */
	padding: 10px;
	/* 例如，添加一些内边距 */
	background-color: #fff;
	/* 假设背景色为白色 */
	border-radius: 5px;
	/* 添加一些圆角 */
	transition: box-shadow 0.3s ease;
	/* 平滑过渡效果 */
}

.product-item:hover {
	/* 鼠标悬停时的阴影边框，增强阴影效果 */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-item h3 {
	font-size: 18px;
}



.am-article-title {margin-bottom: 30px;}

.u-paragraph-large a{color: #007c8c;}

/* 位置面包宵 */
.fa-angle-right {
	margin: 0px 10px;
}

.miaobaoxiao {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 16px !important;
	padding-bottom: 16px !important
}

.miaobaoxiao h2 {
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 32px;
	font-weight: 300;
	color: #333;
}

@media screen and (max-width:768px) {
	.miaobaoxiao {
		width:92%;
	}

	.miaobaoxiao h2 {
		font-size: 24px;
		line-height: 36px;
		margin-bottom: 0px;
		font-weight: 300;
		color: #333;
	}
}

.sldz-padding-32 {
	padding-top: 50px !important;
	padding-bottom: 50px !important
}

@media screen and (max-width:768px) {
	.sldz-padding-32 {
		padding-top: 34px !important;
		padding-bottom: 34px !important
	}
}

.position {
	/* 你可以设置一个具体的宽度，或者根据内容自动调整宽度（但不超过屏幕宽度） */
	/* width: 100%; /* 如果你希望它始终占据全部宽度，但内容可以滚动 */
	/* 或者 */
	/* max-width: 100%; /* 允许它根据内容自动调整宽度，但不超过屏幕宽度 */
	overflow-x: auto;
	/* 当内容超出时显示水平滚动条 */
	white-space: nowrap;
	/* 防止内容换行，使其在同一行上显示 */
	/* 添加一些样式以改善可视化效果 */

	padding: 5px;
	box-sizing: border-box;
	/* 包含padding和border在设置的宽度内 */
}



.position a {
	display: inline-block;
	/* 使链接显示为行内块级元素，这样它们会并排显示 */
	margin-right: 5px;
	/* 添加一些间隔 */
	/* 其他你想要的样式 */
}



/* 产品列表页样式 */

.product-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.product-slide {
	text-align: center;
	width: 33%;
	font-size: 18px;
	background-color: transparent !important;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

}



@media screen and (max-width:768px) {
	.product-slide {
		text-align: center;
		width: 100%;
		font-size: 18px;
		background-color: transparent !important;

		/* Center slide text vertically */
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;

	}
}




/* 新闻列表 */

.news-slide {
	text-align: center;
	width: 100%;
	font-size: 18px;
	background-color: transparent !important;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

}



.news-item {
	/* 初始的阴影边框 */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	/* 其他必要的样式 */
	margin: 10px;
	/* 例如，添加一些外边距 */
	padding: 10px;
	/* 例如，添加一些内边距 */
	background-color: #fff;
	/* 假设背景色为白色 */
	border-radius: 5px;
	/* 添加一些圆角 */
	transition: box-shadow 0.3s ease;
	/* 平滑过渡效果 */
	
	margin-bottom:30px;
	
}

.news-item:hover {
	/* 鼠标悬停时的阴影边框，增强阴影效果 */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.news-item h3 {
	font-size: 18px;
}


.news-item .img {
	float: left;
	width: 25%;
}

@media screen and (max-width:768px) {
.news-item .img {
	float: left;
	width: 100%;
}
}


.news-item .info {
	width: 75%;
	float: right;
	padding-left: 25px;
	box-sizing: border-box;
}


.news-item .info a{
	color: #000;
}


.news-item .info a:hover{
	text-decoration: underline;
}


.news-item .info .desc{color: #817f7f;}

@media screen and (max-width:768px) {
.news-item .info {
	width: 100%;
	float: right;
	padding-left: 0px;
	box-sizing: border-box;
}
}

.info .title{
	font-size: 18px;
	line-height: 32px;
    margin-bottom: 0px;
    font-weight: 300;
	}
.info .time h3 {
	font-size: 12.6px;
	font-weight: 300;
	line-height: 18px;
	padding-top: 5px;
	color: #555;
}

/* 产品分类样式 */

.catelist-all {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0px !important;
	padding-bottom: 0px !important
}


.catelist-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.catelist-ul {
	width: 47%;
	font-size: 18px;
	margin-left: 14px;
	margin-right: 14px;
	background-color: transparent !important;
}

@media screen and (max-width:768px) {
	.catelist-ul {
		width: 100%;
		font-size: 18px;
		margin-left: 14px;
		margin-right: 14px;
		background-color: transparent !important;
	}
}

.catelist-ul li {
	width: 90%;
	padding: calc(10px - 1px) 0 10px 0 !important;
	border-bottom: 1px solid #e8e8e8;
}


.catelist-ul li a {
	color: #007c8c !important;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 12px;
	font-weight: 600;
}



@media screen and (max-width:768px) {
	.catelist-slide {
		text-align: center;
		width: 100%;
		font-size: 18px;
		background-color: transparent !important;

		/* Center slide text vertically */
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;

	}
}

/* 产品内页详情 */
.procontent p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

/* 搜索框样式 */
.search_box input {
	border: 1px solid #cccccc;
	border-right: none;
	width: 88%;
	line-height: 24px;
	height: 36px;
	float: left;
	padding: 0 10px;
	font-size: 16px;
}


.search_box input:focus {
	outline: none;
	/* 移除默认的轮廓线 */

}


.search_box button {
	width: 12%;
	height: 36px;
	float: left;
	background: none;
	border: 1px solid #cccccc;
	border-left: none;

	padding: 0;
}

.search_box button span {
	width: 18px;
	height: 18px;
	background: url(search.svg);
	background-size: cover;
	display: block;
	margin: 7px auto;
}



.flag-text-container {
	display: flex;
	align-items: center;
	/* 垂直居中对齐 */
	gap: 10px;
	/* 图标和文字之间的间距 */
}

.flag-icon {
	width: 24px;
	/* 图标宽度，根据需要调整 */
	height: 24px;
	/* 图标高度，根据需要调整 */
	vertical-align: middle;
	/* 用于老版本的IE浏览器 */
}

.flag-text {
	font-size: 16px;
	/* 文字大小，根据需要调整 */
	font-weight: bold;
	/* 文字粗细，可选 */
}

.flag-text a {
	color: #555555;
}





/*   首页新闻样式 */

.bai_p-page-responsive .newsindex {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	flex-basis: calc((99.99999996%) - (0px))
}

.bai_p-page-responsive .newsindex .ti_h-blogCarousel-item {
	width: 33%;
	padding-right: 40px;
}

@media screen and (max-width:776px) {
	.bai_p-page-responsive .newsindex .ti_h-blogCarousel-item {
		width: 100%;
		padding: 0 15px 0 16px;
	}
}

/* 手机和电脑隐藏 */
@media screen and (max-width:1024px) {
	.pc {
		display: none;
	}
}

@media screen and (min-width:1024px) {
	.mb {
		display: none;
	}
}



/* 页脚样式	 */
.footerWrapper {
	background: #000000;
	overflow: hidden;
}

.footerWrapper .f_Box {
	margin: 4.6% 0 0;
	overflow: hidden;
	text-align: justify;
}

.footerWrapper .f_Box .f_info {
	display: inline-block;
	vertical-align: top;
	max-width: 300px;
	margin-bottom: 3.6%;
}

.footerWrapper .f_Box .f_info .f_about_info {
	font-size: 16px;
	color: #6a6a6a;
	line-height: 30px;
	text-align: left;
	padding-right: 35px;
}

.footerWrapper .f_Box .f_info strong {
	display: block;
	font-weight: bold;
	font-size: 16px;
	color: #6a6a6a;
	text-transform: uppercase;
}

.footerWrapper .f_Box .f_info strong span {
	color: #03a9f4;
	text-transform: uppercase;
}

.footerWrapper .f_Box .f_info .f_line {
	width: 57px;
	height: 1px;
	background: #565656;
	margin: 28px 0 25px;
}

.footerWrapper .f_Box .f_info ul li {
	display: block;
	margin-bottom: 13px;
}

.footerWrapper .f_Box .f_info ul li a {
	font-size: 16px;
	color: #6a6a6a;
}

.footerWrapper .f_Box .f_hold {
	display: inline-block;
	width: 100%;
	vertical-align: middle;
}

.footerWrapper .f_Box .f_info .newsletter_input {
	width: 300px;
	height: 50px;
	margin-top: 38px;
	background-color: transparent;
	border: 1px solid #949494;
	box-sizing: border-box;
	padding-left: 15px;
	color: #666;
}

.footerWrapper .f_Box .f_info .newsletter_submit {
	display: block;
	width: 145px;
	height: 40px;
	color: #6a6a6a;
	font-size: 18px;
	text-align: center;
	line-height: 40px;
	margin-top: 34px;
	background: #ce936b;
	border: 0;
}

.footerWrapper .f_Box .f_info .f_infoItem.on {
	display: block;
}

.footerWrapper .footerShare .shareBtn {
	display: inline-block;
	vertical-align: middle;
	margin-right: 25px;
}

.footerWrapper .f_power {
	padding-bottom: 2.6%;
}

.footerWrapper .f_power .powerWrapper {
	color: #6a6a6a;
	text-align: center;
}

.cont {
	width: 1200px;
	margin: 0 auto;
}



@media screen and (max-width: 1220px) {
	.cont {
		width: 96%;
	}
}

@media screen and (max-width: 768px) {
	.footerWrapper .f_Box .f_info {
		display: block;
		max-width: none;
	}

	.footerWrapper .f_Box .f_info .f_infoItem {
		display: none;

	}

	.footerWrapper .f_Box .f_info .footer_open_icon {
		position: absolute;
		width: 18px;
		height: 18px;
		/* top: 50%; */
		right: 3%;
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		transform: translate(0, -50%);
		background: url(footer_icon.png) center center no-repeat no-repeat;
		-webkit-transition: .3s all;
		-o-transition: .3s all;
		transition: .3s all;
	}

}

@media screen and (max-width: 640px) {
	.footerWrapper .f_Box .f_info .f_line {
		width: 100%;
		margin: 15px 0;
	}

	.footerWrapper .f_Box .f_info .f_infoItem {
		padding-bottom: 5px;
		padding-left: 15px;
	}

	.footerWrapper .footerShare {
		text-align: center;
	}

	.footerWrapper .f_power {
		padding-bottom: 15px;
	}
}

/* 结束 */




dl {
	margin: 0;
	padding: 0;
}

/* 右侧箭头 */
.bai-svg-icon-bg {
	background-image: url(right.svg);
	width: 18px;
	height: 18px;
	background-size: cover;
	display: block;
	margin-right: 10px;
}

/* 视频的图片 */
.bai_p-col-8 {
	width: 780px, height:438px;
}

@media screen and (max-width:876px) {
	.bai_p-col-8 img {
		width: 100%;
	}
}


/* 内页banner */

.image-container {
		display: flex;
		justify-content: center;
		/* 水平居中 */
		align-items: center;
		/* 垂直居中 */
		
		width: 100%;
		overflow: hidden;
}

.image-container img {
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	width: 100%;;
	max-width: 100%;
	height: auto;
}



.text-over-image {
	position: absolute;
	top: 50%;
	/* 你可以根据需要调整这个值 */
	left: 50%;
	/* 你也可以根据需要调整这个值 */
	transform: translate(-50%, -50%);
	/* 将文本居中到图片中心 */
	color: white;
	/* 如果图片是深色的话，使用白色文字 */
	text-align: center;
	/* 使文本在水平方向上居中 */
}

.text-over-image h2 {
	text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
	/* 白色描边 */
}

.content83 {
	width: 83.333%;
	margin: 50px auto;
}

@media screen and (max-width:1024px) {
	.content83 {
		width: 90%;
		margin: 50px auto;
	}
		}
	
.content83 p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 5px;
	font-weight: 400;
}

.bgColor-blue {
	background-color: #3F51B5 !important;
}