@charset "utf-8";
#index_pro {
	width: 760px;
	padding-top: 0px;
	margin-top: 0px;
	overflow: hidden;
	float: right;
	padding-bottom: 30px;
}

/* 全宽产品展示样式 */
#index_pro_full {
	width: 100%;
	padding-top: 0px;
	margin-top: 0px;
	overflow: hidden;
	clear: both;
	padding-bottom: 30px;
}
.index_pro_title{
	padding-top: 0px;
	background-image: url("left_title.jpg")/*tpa=http://www.szyuemlh.com/images/left_title.jpg*/;
	background-repeat: no-repeat;
	background-position: left top;
	height: 36px;
	clear: both;
	width: 100%;
	overflow: hidden;
}
.index_pro_title a.index_pro_tl{
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	background-image: url("pro_title---.gif")/*tpa=http://www.szyuemlh.com/images/pro_title---.gif*/;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	display: block;
	line-height: 36px;
	text-align: center;
	width: 200px;
}
.rollBox {
	OVERFLOW: hidden;
	text-align: center;
	height: auto;
	width: 200px;
	padding-top: 10px;
	margin: auto;
}

.rollBox .Cont {
	WIDTH: 100%;
	OVERFLOW: hidden;
	margin: auto;
}
.rollBox .ScrCont {
	WIDTH: 1342177.27px
}
.rollBox #List1 {
	FLOAT: left;
}
.rollBox #List2 {
	FLOAT: left;
}
.rollBox .LeftBotton {
	WIDTH: 27px;
	DISPLAY: inline;
	FLOAT: left;
	HEIGHT: 180px;
	OVERFLOW: hidden;
	CURSOR: pointer;
	background-image: url("arrow_1.jpg")/*tpa=http://www.szyuemlh.com/images/arrow_1.jpg*/;
	background-repeat: no-repeat;
	background-position: 0px 60px;
}
.rollBox .RightBotton {
	WIDTH: 27px;
	DISPLAY: inline;
	FLOAT: right;
	HEIGHT: 180px;
	OVERFLOW: hidden;
	CURSOR: pointer;
	background-image: url("arrow_2.jpg")/*tpa=http://www.szyuemlh.com/images/arrow_2.jpg*/;
	background-repeat: no-repeat;
	background-position: 0px 60px;
}

/* 产品分类样式 */
.category_section {
	width: 100%;
	margin-bottom: 25px;
	clear: both;
	overflow: hidden;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

.category_title {
	width: 100%;
	background: linear-gradient(to right, #3F7D00, #5a9a1a);
	border: none;
	padding: 12px 5px;
	margin-bottom: 15px;
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category_title_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	padding: 0;
}

.category_title_left {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 0;
	padding-left: 0;
}

.category_icon {
	font-size: 18px;
	color: #fff;
	opacity: 0.9;
}

.category_title h3 {
	margin: 0;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

.category_title h3 a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.category_title h3 a:hover {
	color: #f0f0f0;
	text-decoration: none;
}

.category_title_right {
	display: flex;
	align-items: center;
	margin-right: 0;
	padding-right: 0;
}

.view_more {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	padding: 6px 12px;
	background: rgba(255,255,255,0.1);
	border-radius: 15px;
	border: 1px solid rgba(255,255,255,0.2);
	transition: all 0.3s ease;
	white-space: nowrap;
}

.view_more:hover {
	background: rgba(255,255,255,0.2);
	border-color: rgba(255,255,255,0.3);
	color: #fff;
	text-decoration: none;
	transform: translateX(2px);
}

.category_products {
	width: 100%;
	overflow: hidden;
}

.product_grid {
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.product_item {
	width: 22%;
	float: left;
	margin: 0 1.5% 10px 1.5%;
	text-align: center;
	background: #fff;
	border: 1px solid #e1e1e1;
	padding: 10px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	min-height: 180px;
}

.product_item:hover {
	border-color: #3F7D00;
	box-shadow: 0 3px 8px rgba(63, 125, 0, 0.2);
	transform: translateY(-2px);
}

.product_item .pro {
	margin-bottom: 8px;
	height: 120px;
	overflow: hidden;
	border: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_item .pro_pic {
	display: block;
	text-decoration: none;
	width: 100%;
	height: 100%;
}

.product_item .pro_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product_item:hover .pro_pic img {
	transform: scale(1.05);
}

.product_item .product_name {
	display: block;
	color: #333;
	text-decoration: none;
	font-size: 12px;
	line-height: 3;
	height: 30px;
	overflow: hidden;
	/* padding: 5px 0; */
}

.product_item .product_name:hover {
	color: #3F7D00;
	text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.product_item {
		width: 48%;
		margin: 0 1% 15px 1%;
	}

	.category_title_content {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}

	.category_title_right {
		align-self: flex-end;
	}
}

@media (max-width: 480px) {
	.product_item {
		width: 98%;
		margin: 0 1% 15px 1%;
	}

	.category_title {
		padding: 10px 15px;
	}

	.category_title h3 {
		font-size: 14px;
	}

	.category_title_content {
		flex-direction: row;
		justify-content: space-between;
	}

	.category_title_left {
		gap: 8px;
	}

	.category_icon {
		font-size: 16px;
	}

	.view_more {
		font-size: 12px;
		padding: 4px 8px;
	}
}
