:root {
 --primary-color: #2c6e49;
 --secondary-color: #1a4c35;
 --accent-color: #e74c3c;
 --light-color: #f8f9fa;
 --dark-color: #333;
 --text-color: #333;
 --gray: #e0e0e0;
}
a{text-decoration:none;color:#333;}
.left {float: left;}
.right {float: right;}
img {border: 0px;}
ul {list-style: none;}
li {list-style-type: none;}
i, em {font-style: normal;}
* {margin: 0;padding: 0;box-sizing: border-box;}
body {font-family: '微软雅黑';font-size: 16px;line-height: 1.6;color: var(--text-color);background-color: #f5f7fa;}
.dqwz {width: 100%;font-size: 18px;margin-bottom: 22px;color: #333;line-height: 1.75;overflow: hidden;border-bottom: 1px solid #e2e2e2;padding-bottom: 10px;}
.dqwz a {color: #333;}
.container {max-width: 1200px;margin: 0 auto;}

/* Header Styles */
header {background-color: white;box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);padding: 20px 0;position: sticky;top: 0;z-index: 100;}
.headn {max-width:1200px;margin: 0 auto;overflow: hidden;display: flex;flex-wrap: wrap;}
.logo {font-size:27px;font-weight:700;color:var(--primary-color);display:inline-block;letter-spacing:0.5px;line-height:66px;float: left;}
.logo img{height:66px;width:auto;float:left;padding-right:12px;}
.logo p {padding-top: 8px;line-height:26px;float: left;}
.logo span {line-height:15px;font-size:13px;color:#666;}
.search-box {width:370px;margin:10px 0px 0 50px;position: relative;float: left;}
.search-box input {width:248px;padding:16px 15px 16px 20px;border: 1px solid var(--gray);border-radius: 30px 0px 0px 30px;
	font-size:16px;transition: all 0.3s;outline: none;float: left;color: #666;}
.search-box input:focus {border-color: #2c6e49;box-shadow: 0 0 0 2px rgba(44, 110, 73, 0.2);}
.search-btn {transform: translateY(-50%);background:none;border:none;color:#aaa;font-size:16px;cursor:pointer;transition:color 0.3s;}
.search-btn:hover {color: var(--primary-color);}
.search-box button {padding: 14px 26px;background-color: #2c6e49;color: white;border: none;border-radius: 0 30px 30px 0;cursor: pointer;transition: background-color 0.3s;font-size: 18px;}
.search-box button:hover {background-color: #1a4c35;}
.main-nav {margin-left:16px;}
.main-nav ul {display: flex;list-style: none;gap:32px;padding-top:18px;}
.main-nav ul li a {color: var(--text-color);font-weight:500;font-size:20px;padding:5px 0;transition: color 0.3s;position: relative;display: inline-block;}
.main-nav ul li a:after {content: '';position: absolute;bottom: 0;left: 0;width: 0;height: 2px;background: var(--primary-color);
	transition: width 0.3s;}
.main-nav ul li a:hover:after {width: 100%;}
.hamburger {display: none;}

/* Banner Styles */
.banner-container {
	position: relative;
	height: 603px;
	overflow: hidden;
}
.banner-slide {
	position: absolute;
	width: 100%;
	height: 603px;
	background-size: cover;
	background-position: center;
	display: none;
	justify-content: center;
	color: white;
	text-align: center;
	padding: 0 20px;
	transition: opacity 0.5s;
}
.banner-slide.active {display: flex;opacity: 1;}
.banner-content {padding-top: 160px;}
.banner-content h1 {font-size: 48px;margin-bottom: 20px;text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);line-height: 1.2;}
.banner-content h2 {font-size: 48px;margin-bottom: 20px;text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);line-height: 1.2;}
.banner-content p {font-size: 24px;margin-bottom: 30px;max-width: 800px;text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);line-height: 1.4;}

.banner-content ul{max-width:600px;margin:0 auto;overflow:hidden;clear:both;}
.banner-content li{width:42.5%;margin-left:5%;border:1px solid #fff;float:left;text-align:center;margin-bottom:28px;padding:10px 0;border-radius:5px;font-size:18px;}
.banner-content li a{color:#fff;}
.btn {
	width: auto;
	display: inline;
	text-align: center;
	background-color: var(--primary-color);
	color: white;
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(44, 110, 73, 0.3);
	margin: 0 auto;
	margin-bottom: 20px;
	margin-top: 5px;
}
.btn:hover {
	background-color: var(--secondary-color);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(44, 110, 73, 0.4);
}
.banner-controls {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
}
.banner-prev, .banner-next {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner-prev:hover, .banner-next:hover {
	background-color: var(--primary-color);
	transform: scale(1.1);
}
/* Sections */
section {
	margin: 50px 0;
}
section h2 {
	font-size: 32px;
	margin-bottom: 30px;
	color: var(--primary-color);
	text-align: center;
	font-weight: 600;
}

.products-section .abouus-section  {display: flex;gap: 15px;margin-bottom: 30px;flex-wrap: wrap;}
.product-categories{display: flex;gap: 15px;margin-bottom: 30px;flex-wrap: wrap;}

.abouus-section{margin-bottom:0px;max-width:1200px;margin:0 auto;margin-top:38px;}
.abouus-section h1{font-size: 32px;margin-bottom: 30px;color: var(--primary-color);text-align: center;font-weight: 600;}
.ggjs-sdxm{width:100%;background:#f7faf7;padding:50px 0;}

.abous{width:100%;padding:0px;overflow:hidden;margin-top:28px;}
.abous p{padding-bottom:20px;font-size:18px;text-align:justify;line-height:1.7;}
.abous p img{width:60%;border-radius:10px;}

.abousp{width:100%;padding:0px;overflow:hidden;margin-top:28px;}
.abousp p{padding-bottom:20px;font-size:18px;text-align:justify;line-height:1.7;}
.abousp h4{text-align:left;line-height:1.8;font-size:22px;font-weight:normal;margin-bottom:20px;}

.shij{max-width:1200px;height:auto;background:url(../images/photob.png) center no-repeat;overflow:hidden;margin:0 auto;display:grid;
grid-template-columns: repeat(4, 1fr);gap: 25px;}
.shija{height:auto;overflow:hidden;text-align:center;padding-top:60px;}
.shija p{font-size:18px;line-height:30px;}
.shija h3{font-size:28px;line-height:48px;margin-top:28px;color:#01adef;}
.shijx{width:60px;height:5px;background:#01adef;margin:0 auto;margin-top:38px;} 

.lxwm-fw{max-width:1200px;margin:0 auto;display: grid;grid-template-columns: repeat(2, 1fr);gap: 25px;}
.product-fuw1 {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	padding: 18px 25px 18px 25px;
	margin-bottom: 20px;
}
.product-fuw1:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-fuw1 h3 {
	font-size: 18px;
	color: var(--primary-color);
	font-weight: 600;
	text-align: left;
	line-height: 1.7;
	margin-bottom:10px;
}
.product-fuw1 p {
	color: #666;
	line-height: 1.6;
}


.xwfw-section {
	display: grid;
    grid-template-columns: 3fr 5fr;
	gap: 38px;
	
}
.category-btn {
	background: var(--light-color);
	border: none;
	padding: 10px 20px;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	font-size: 18px;
	transition: all 0.3s;
}
.category-btn.active, .category-btn:hover {
	background: var(--primary-color);
	color: white;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}
.product-xw h2{
    font-size: 32px;
    margin-bottom: 20px;
	line-height: 1.5;
	padding-bottom: 10px;
    color: var(--primary-color);
    text-align: left;
    font-weight: 600;
	background: url(../images/news.png) no-repeat bottom left;
}
.product-xw ul{background: white;
    padding: 20px 30px 12px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;}
.product-xw a:hover{color:#2c6e49;}

.product-xwa {
	width: 100px;
	height: 82px;
	border:1px solid #2c6e49;
	float: left; margin-right: 16px;border-radius: 3px;text-align: center;}
.product-xwy{border-top:5px solid #2c6e49;height:45px;line-height: 45px;font-size: 18px; }
.product-xwn{border-top:1px solid #2c6e49;height:32px;line-height: 32px; font-size: 16px;}

.product-xw li{overflow:hidden;margin-bottom: 15px;padding-bottom:15px;border-bottom:1px dashed #e2e2e2;}
.product-xw h3{font-size:18px;font-weight: normal;line-height: 1.8;padding-top:6px;}
.product-xw ul li:last-child {
 border-bottom: none;
}
.product-fw h2{
    font-size: 32px;
    margin-bottom: 20px;
	line-height: 1.5;
	padding-bottom: 10px;
    color: var(--primary-color);
    text-align: left;
    font-weight: 600;
	background: url(../images/fw.png) no-repeat bottom left;
}

.product-item {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	text-align: center;
	padding-bottom: 28px;
}
.product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-item img {
	width: 80%;
	height: auto;
	margin-top:20px;
	border:1px solid #e2e2e2;
	object-fit: cover;
	transition: transform 0.3s;
}
.product-item:hover img {
	transform: scale(1.05);
}
.product-item h3 {font-size: 18px;padding:5px 0 8px 0;font-weight: 600;text-align: center;}
.product-item p {padding-bottom:20px;color: #666;line-height: 1.5;}
.product-dg {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	text-align: center;
	padding-bottom: 28px;
}
.product-dg:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-dg img {
	width: 80%;
	height: auto;
	margin-top:20px;
	border:1px solid #e2e2e2;
	object-fit: cover;
	transition: transform 0.3s;
}
.product-dg:hover img {
	transform: scale(1.05);
}
.product-dg h3 {
	font-size: 18px;padding:5px 0 8px 0;
	color: var(--primary-color);
	font-weight: 600;
	text-align: center;
}
.product-dg p {
	padding-bottom:20px;
	color: #666;
	line-height: 1.5;
}
.product-fuw {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	padding: 12px 10px 15px 10px;
	margin-bottom: 20px;
}
.product-fuw:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-fuw img {
	width: 80px;
	height: auto;
	float: left;
	display: grid;
	padding: 16px 10px 16px 0px;
}
.product-fuw h3 {
	font-size: 18px;
	color: var(--primary-color);
	font-weight: 600;
	text-align: left;
	line-height: 1.6;
}
.product-fuw p {
	color: #666;
	line-height: 1.5;
}
.about-section .about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.about-content p {
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 16px;
}
.about-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.guidelines-section {
	position: relative;
}
.guideline {
	width: 60%;
	background: white;
	padding: 30px 18% 30px 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}
.guideline li {
	width: 42.5%;
	margin-left: 5%;
	margin-top: 10px;
	list-style: none;
	float: left;
	text-align:center;
}
.guideline li img {
	width: 100%;
}
.guideline p{font-size:18px;line-height:1.8;margin-bottom:15px;text-align:justify;}
.guideline p a{color:#2c6e49;}
.guideline p a:hover{color:#e74c3c;}
.guideline h3{color:#2c6e49;font-size:24px;line-height:1.7;padding-bottom:10px;}
.guideline h4{color:#666;font-size:18px;line-height:1.7;padding-bottom:10px;}

.guidelinen {
	width: 55%;
	position: absolute;
	right: 0px;
	bottom: 90px;
	z-index: 99;
}
.guidelinen img {
	width: 100%;
}
.contact-section .contact-grid {max-width:1200px;margin:0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-info {
	background: white;
	padding: 30px 30px 10px 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}
.contact-info h3 {
	font-size: 22px;
	margin-bottom: 25px;
	color: var(--primary-color);
	font-weight: 600;
}
.contact-info p {
	margin-bottom: 22px;
	line-height: 2;
	font-size: 18px;
}
.contact-info p span {
	display: block;
	float: left;
	font-weight: bold;
}
.contact-info img {
	width: 150px;
	height: 150px;
	margin-left: 15px;
}
.contact-form {
	background: white;
	padding: 30px 30px 10px 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	text-align: center;
}
.contact-form .form-group {
	margin-bottom: 20px;
}
.contact-form input, .contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--gray);
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s;
	font-family: '微软雅黑', Tahoma, Geneva, Verdana, sans-serif;
}
.contact-form input:focus, .contact-form textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(44, 110, 73, 0.2);
}
.contact-form textarea {
	min-height: 100px;
}
.contact-lxgs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	background: white;
	padding: 30px 30px 30px 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}
.contact-lxgs1 img {
	width: 100%;
}
.contact-lxgs2 p {
	font-size: 18px;
	line-height: 2;
	margin-top: 20px;
	text-align: justify;
}
.wenzzt {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 330px;
	gap: 30px;
	overflow: hidden;
	margin-top: 36px;
}
.article-left {
	min-width: 0;
}
.arc_list {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 6px 12px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.arc_list li {
	list-style: none;
	height: auto;
	overflow: hidden;
	border-bottom: 1px solid #e2e2e2;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.arc_list li h3 a {
	font-size: 20px;
	color: #333;
	line-height: 1.5;
	font-weight: normal;
}
.arc_list li h3 a:hover {
	color: #2c6e49;
}
.arc_list li p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	padding-top: 10px;
}
.arc_list li p span {
	font-size: 14px;
	color: #2c6e49;
	margin-right: 20px;
}
.arc_list li p a {
	color: #ff8400;
}
.arc_list li p a:hover{
	color: #2c6e49;
}
article {
	background-color: #fff;
	padding: 38px;
	border-radius: 10px;
	box-shadow: 0 6px 12px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
article:hover {transform: translateY(-2px);box-shadow: 0 8px 16px rgba(0,0,0,0.08);}

.article-header h1 {color: #2c3e50;font-size: 26px;margin-top: 0;line-height:1.8;font-weight: 600;text-align: left;}
.article-header p {font-size: 16px;font-weight: normal;color: #666;line-height: 1.8;padding:10px 0;}
.article-header p span {font-size: 16px;font-weight: normal;padding-right: 20px;}

.article-content{border-top:1px dashed #e2e2e2;padding-top:20px;}
.article-content h2{color:#2c6e49;font-size:20px;margin-bottom:22px;position:relative;padding-left:18px;text-align:left;font-weight:bold;}
.article-content h2::before {content: '';position: absolute;left: 0;top: 16px;transform: translateY(-50%);width: 6px;height: 25px;background-color: #2c6e49;border-radius: 2px;}
.article-content h3 {color: #2c6e49;font-size: 20px;margin-bottom: 22px;font-weight: bold;}
.article-content h4 {color: #333;font-size: 18px;margin-bottom: 22px;font-weight: bold;}
.article-content p {font-size: 18px;margin-bottom: 22px;color: #333;line-height: 1.8;text-align:justify;}

/* 文章导航 - 各自一行 */
.article-navigation {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 25px;
}
.article-navigation p {
	width: 100%;
	border: 1px solid #2c6e49;
	border-radius: 5px;
	padding: 10px 20px;
	line-height: 1.6rem;
}
.article-navigation b {
	padding-right: 8px;
}
.article-navigation a {
	color: #333;
}

.wdcard {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.04);
	margin: 25px 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wdcard h3 {
	color: #2c3e50;
	font-size: 20px;
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	font-weight: 600;
}
.faq-container {
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #2c3e50;
}

.faq-icon {
    font-size: 1.2em;
    transition: transform 0.3s;
}

.faq-answer{padding:0 0 15px 0;color: #555;display: none;}
.faq-answer p{font-size:16px;margin-bottom:18px;color:#666;line-height:1.65;}

.faq-item.active .faq-icon {transform:rotate(45deg);}
.faq-item.active .faq-answer {display: block;}

.tjlma{
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.04);
	margin: 25px 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
}
.tjlma:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}
.tjlma h3 {
	color: #2c3e50;
	font-size: 20px;
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	font-weight: 600;
}
.tjlma li{width:45%;margin-left:3%;float:left;border:1px solid #2c6e49;margin-top:20px;padding:10px 0;text-align:center;border-radius:8px;}
.tjlma li a{width:100%;color:#333;font-size:18px;color:#2c6e49;display:block;}
.tjlma li:hover{background:#2c6e49;color:#fff;}
.tjlma li:hover a{color:#fff;}

.related-articles {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.04);
	margin: 25px 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-articles:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}
.related-articles h3 {
	color: #2c3e50;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	font-weight: 600;
}
.related-articles ul {
	list-style: none;
	padding: 0;
}
.related-articles ul li {
	padding: 12px 0;
	border-bottom: 1px dashed #eee;
	transition: background-color 0.2s ease;
}
.related-articles ul li:last-child {
	border-bottom: none;
}
.related-articles ul li:hover {
	background-color: #f9f9f9;
}
.related-articles ul li a {
	color: #333;
	font-weight: normal;
	transition: color 0.3s ease;
	display: block;
}
.related-articles ul li a:hover {
	color: #2c6e49;
}
/* 右侧栏 - 现在是侧边栏 */
.youce-right {
	width: 330px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
/* 右侧栏独立小方块 */
.youce-block {
	background-color: #fff;
	padding: 20px; /* 统一的内边距 */
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.youce-block h3 {
	color: #2c3e50;
	font-size: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 600;
}
.youce-block a {
	color: #333;
}
.youce-block li {
	list-style: none;
}
.youce-block ul {
	padding-top: 10px;
}
.youce-block:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}
.youce-gsjs {margin: 6px 0;}
.youce-gsjs img {width: 100%;}
.youce-gsjs p {color: #333;font-size: 16px;line-height: 1.8;margin-top: 10px;text-align: justify;}

.youce-yao {margin: 6px 0;}
.youce-yao li {
	width: 100%;
	height: auto;
	overflow: hidden;
	border-bottom: 1px dashed #e2e2e2;
	margin-bottom: 20px;
	padding-bottom: 18px;
}
.youce-yao li img {
	width: 90px;
	height:60px;
	float: left;
	margin-right: 18px;
	border:1px solid #e2e2e2;
}
.youce-yao li h4 {
	font-size: 18px;
	font-weight: normal;
	line-height: 1.5;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding-bottom: 5px;
}
.youce-yao li p {
	font-size: 14px;
	line-height: 1.5;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.youce-yao ul li:last-child {
 border-bottom: none;
}
.youce-dh {margin: 6px 0;}
.youce-dh li {
	width: 45%;
	border: 1px solid #2c6e49;
	padding: 8px 0;
	margin-bottom: 20px;
	text-align: center;
	border-radius: 5px;
	float: left;
	margin-left: 3%;
}
.youce-dh li a {
	color: #2c6e49;
	font-size: 16px;
	width:100%;
	display: block;
}
.youce-dh li:hover{background:#2c6e49;}
.youce-dh li:hover a{color: #fff;}
.youce-dh li:nth-child(2n) {float:right;}

.youce-wz {
	margin: 6px 0 0 0;
}
.youce-wz ul {
	padding: 0;
}
.youce-wz li {
	padding: 10px 0;
	font-size: 16px;
	border-bottom: 1px dashed #e2e2e2;
	transition: background-color 0.2s ease;
}
.youce-wz ul li:hover {
	background-color: #f9f9f9;
	color: #2c6e49;
}
.youce-wz ul li:last-child {
 border-bottom: none;
}

.ypsms {
	max-width: 1200px;
	margin: 0 auto;
	height: auto;
	overflow: hidden;
	margin-top: 28px;
	border-radius: 10px;
	padding: 28px 35px 40px 35px;
	background: #fff;
	box-shadow: 0 5px 12px 0 rgb(151 164 178 / 20%);
}
.ypsmsn {
	display: grid;
	grid-template-columns: 3fr 4fr;
	gap: 30px;
}
.smspic {
	height: auto;
	border: 1px solid #e2e2e2;
	overflow: hidden;
	zoom: 1;
	float: left;
	padding: 15px;
}
.smspicm img {width: 100%;border:1px solid #e2e2e2;}
.smspicn {display: flex;gap: 12px;flex-wrap: wrap;margin-top: 10px;}
.thumbnail {
	width: 20%;
	height: auto;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	border:1px solid #e2e2e2;
}
.thumbnail:hover, .thumbnail.active {
	border-color: #2c6e49;
	transform: scale(1.05);
}
.yaopt {
	height: auto;
	overflow: hidden;
	float: right;
	margin-top: 8px;
	position: relative;
}
.yaopt h1{width: 100%;font-size: 22px;color: #2c6e49;line-height:28px;border-bottom: 1px dashed #2c6e49;padding-bottom: 10px;}
.yaopt h2{width: 100%;font-size: 22px;color: #2c6e49;line-height:28px;border-bottom: 1px dashed #02b7ca;padding-bottom: 10px;}
.yaopl{height:auto;clear:both;margin-top:20px;line-height:1.8;font-size:16px;color:#333;}
.yaopl p span{font-weight:bold;color:#2c6e49;margin-right:12px;background:#f5fbf5;border:#2c6e49;padding:8px 15px;border-radius:10px;}
.yaople{display:block;line-height:30px;width: 80px;height: 30px;background: #eef9f5;border-radius: 0px 8px 8px 8px;font-size: 16px;font-weight: 400;color: #2c6e49;text-align: center;margin-top: 3px;float: left;margin-right: 10px;}
.yaopl1 {overflow:hidden;}
.yaopl1 p{font-size:16px;font-weight:bold;display:block;float:left;margin-top:26px;}
.yaopl1 p span{font-weight:bold;color:#2c6e49;margin-right:12px;background:#f5fbf5;border:#2c6e49;padding:8px 15px;border-radius:10px;}
.yaopl1 li{width:auto;padding:4px 12px;border-radius:8px;margin-right:12px;float:left;border:1px solid #2c6e49;margin-top:22px;}
.yaopl1 li:hover{background: #2c6e49;color:#fff;}

.yaopl2{width:100%;font-size:14px;font-weight:400;color:#666;line-height:1.8;margin-top:18px;border-top:1px dashed #e2e2e2;padding-top:10px;}

.yaosm{width:100%;overflow:hidden;display:grid;grid-template-columns:repeat(4, 1fr);gap: 0px;}
.yaosm1{line-height:20px;margin-top:25px;}
.yaosm1 img{width:20px;height: 20px;;float: left;margin-right: 10px;}

.yaopa{width:100%;padding:20px 15px 20px 20px;background:#f5fbf5;overflow:hidden;margin-top:22px;border-radius:5px;display: flex;}
.yaopa li{width:100px;height:auto;text-align:center;float:right;margin-left:20px;}
.yaopa li img{width:100%;}
.yaopc{width:240px;float:right;box-sizing:border-box;}
.yaopb{flex:1;box-sizing: border-box;line-height:2;}
.yaopb span{font-weight:bold;}


.smszw{background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.04);
	margin:0 0 25px 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;}
.smszw1{margin-bottom:20px;}
.smszw1 h2{ width: 100%;
    font-size: 26px;
    color: #2c6e49;
    line-height: 30px;
	text-align: center;
	padding-top: 10px;
    }
.smszw1 h1{ width: 100%;
    font-size: 26px;
    color: #2c6e49;
    line-height: 30px;
	text-align: center;
	padding-top: 10px;
    }
.smszw2 p{margin-bottom:22px;font-size: 18px;line-height: 1.8;text-align:justify;}
.smszw2 h2 {
	color: #2c6e49;
	font-size: 20px;
	margin-bottom: 22px;
	position: relative;
	padding-left: 18px;
	text-align: left;
	font-weight: bold;
}
.smszw2 h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	transform: translateY(-50%);
	width: 6px;
	height: 25px;
	background-color: #2c6e49;
	border-radius: 2px;
}
.smszw2 h3 {
	color: #2c6e49;
	font-size: 20px;
	margin-bottom: 22px;
	font-weight: bold;
}
.smszw2 h4 {
	color: #333;
	font-size: 18px;
	margin-bottom: 22px;
	font-weight: bold;
}


.dbyp{width:100%;background:#fff;height:auto;overflow:hidden;border-radius:10px;padding:20px;margin-top:28px;margin-bottom:28px;background:#fff;box-shadow: 0 4px 8px rgba(0,0,0,0.04);}
.dbyp img{width:150px;height:150px;padding:6px 5px;border:1px solid #e2e2e2;float:left;background:#fff;border-radius:8px;}
.dbyp1{width:499px;height:162px;padding-right:18px;margin-top:1px;margin-left:18px;float:left;overflow:hidden;text-align:justify;border-right:1px dashed #e2e2e2;}
.dbyp1 h2 a{font-size:22px;color:#333;font-weight:normal;line-height:30px;}
.dbyp1 p a{display:block;width:469px;font-size:16px;color:#666;line-height:2;padding-top:6px;overflow:hidden;text-align:justify;}
.dbyp1 p span{color:#ff8400;}
.dbyp2{width:110px;margin-left:16px;float:right;text-align:center;}
.dbyp2 p{color:#01adef;font-size:16px;line-height:22px;}
.dbyp2 img{width:110px;height:110px;border:0;background:none;padding:0; padding-bottom:10px;}

.ypgs{width:100%;border:1px solid #e2e2e2;margin:0 auto;overflow:hidden;border-radius:10px;font-size:18px;line-height:2;margin-bottom:28px;}
.ypgs1{width:100%;height:auto;padding:16px 0 16px 0;overflow:hidden;}
.ypgs1a{width:28%;height:auto;text-align:center;margin-right:2%;padding:0 1.5%;border-right:1px solid #e2e2e2;float:left;color:#333;}
.ypgs1b{width:65%;float:left;text-align:justify;padding-right:2%;color:#555;}
.ypgs2{width:100%;height:auto;padding:16px 0 16px 0;background:#eef9f5;overflow:hidden;}
.ypgs2a{width:28%;height:auto;text-align:center;margin-right:2%;padding:0 1.5%;border-right:1px solid #e2e2e2;float:left;color:#333;}
.ypgs2b{width:65%;float:left;text-align:justify;padding-right:2%;color:#555;}

.smszwa{width:100%;height:auto;overflow:hidden;color:#333;}
.smszwa li{padding:18px 30px 10px 30px;background:#eef9f5;border-radius:10px;margin-bottom:20px;}
.smszwa li h3{text-indent:0;margin-bottom:6px;}
.smszwa li h3 a{color:#222;font-size:18px;font-weight:normal;line-height:1.8;}
.smszwa li h3 a:hover{color:#ED5F30;}
.smszwa li p{color:#4A4A4A;font-size:16px;line-height:30px;padding-bottom:12px;text-align:justify;text-indent:0;margin-bottom:0;}
.smszwa li p a{color:#ED5F30;}

.mldh{max-width:1200px;margin:0 auto;background:#fff;padding:20px 30px 28px 30px;border-radius:10px;box-shadow:0 3px 15px rgba(0, 0, 0, 0.08);overflow: hidden;margin-top:28px;} 
.mldhks{width:100%;margin-bottom: 20px;}
.mldhks h1{font-size:25px;color:#2c6e49;margin-bottom:38px;font-weight:600;text-align: center;}
.mldhks h3{font-size:25px;color:#2c6e49;margin-bottom:38px;font-weight:600;text-align: center;}    
.nav-ks{display:flex;flex-wrap:wrap;gap:10px;}
.ks-item{display: inline-block;}
.ks-link{display: block;padding:8px 22px;background-color:#f5fbf5;color:#2c6e49;border-radius: 30px;border: 1px solid #f5fbf5;font-size:18px;font-weight:normal;transition: all 0.3s ease;text-align: center;position: relative;overflow: hidden;}
.ks-link.active {background-color:#2c6e49;color: white;border-color:#2c6e49;transform: translateY(-2px);}
.ks-link:hover:not(.active) {background-color:#2c6e49;color: white;border-color:#2c6e49;transform: translateY(-2px);}

.nav-jb{display:flex;flex-wrap:wrap;gap:10px;border-top:1px dashed #e2e2e2;margin-top:20px;padding-top:20px;}
.jb-item{display:inline-block;}
.jb-link{display:block;padding:6px 18px;background-color:#f5fbf5;color:#555;border-radius:30px;border:1px solid #f5fbf5;font-size:16px;font-weight:normal;transition: all 0.3s ease;text-align:center;position:relative;overflow:hidden;}
.jb-link.active {background-color:#2c6e49;color: white;border-color:#2c6e49;transform: translateY(-2px);}
.jb-link:hover:not(.active) {background-color:#2c6e49;color: white;border-color:#2c6e49;transform: translateY(-2px);}


.ksjby{background:#fff;padding:30px 30px 30px 30px;}
.ksjby h2{font-size:22px;color:#2C3E50;font-weight:normal;position: relative;padding-left: 15px;padding-bottom: 20px;}
.ksjby h2::before{content: '';position: absolute;left: 0;top: 18px;transform: translateY(-50%);width: 6px;height: 25px;background-color: #2c6e49;border-radius: 2px;}
.ksjby h1{font-size:22px;color:#2C3E50;font-weight:normal;position: relative;padding-left: 15px;padding-bottom: 20px;}
.ksjby h1::before{content: '';position: absolute;left: 0;top: 18px;transform: translateY(-50%);width: 6px;height: 25px;background-color: #2c6e49;border-radius: 2px;}

.ksjbya{border-top:1px solid #e2e2e2;border-left:1px solid #e2e2e2;display:grid;grid-template-columns:repeat(3, 1fr);gap:0px;}
.ksjbyao{border-bottom:1px solid #e2e2e2;border-right:1px solid #e2e2e2;padding:15px 15px 25px 15px;float:left;text-align:center;}
.ksjbyao img{width:100%;}
.ksjbyao h3 a{font-size:18px;color:#333;font-weight:normal;}
.ksjbyao h4 a{font-size:16px;color:#666;font-weight:normal;margin-bottom:16px;display: block;}

.pagebar{width:100%;margin:0 auto;height:auto;overflow:hidden;margin-top:20px;}
.pagebar .pagination{display:flex;justify-content:center;margin-top:10px}
.pagination a{background:#fff;border:1px solid #ccc;color:#333;font-size:14px;padding:6px 10px;margin:0 3px;border-radius:3px}
.pagination a:hover{color:#02b7ca;border:1px solid #02b7ca;}
.pagination a.page-num-current{color:#fff;background:#02b7ca;border:1px solid #02b7ca;}

/* 
.waappd{bottom: 85px;position: fixed;right:20px;z-index: 999;}
.waappd1{align-items: center;cursor: pointer;display: flex;}
.waappd2{align-items: center;animation: layout_fadeIn__7b4Ph .5s ease-in-out 1s forwards;background: #25d366;border-radius: 7px;display: inline-flex;gap: 10px;justify-content: center;margin-right: 7px;opacity: 0;padding: 10px 8px;}
.waappd2 p{color:#fff;}
.waappd2:after {border: 6px solid #0000;border-left-color: #25d366;content: "";height: 0;left: 100%;position: absolute;top: 50%;transform: translateY(-50%);width: 0;}
@keyframes layout_fadeIn__7b4Ph {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}*/

.waappd {
  bottom: 85px;
  position: fixed;
  left: 20px; /* 改为 left */
  z-index: 999;
}
.waappd1 {
  align-items: center;
  cursor: pointer;
  display: flex;
}
.waappd2 {
  align-items: center;
  animation: layout_fadeIn__7b4Ph .5s ease-in-out 1s forwards;
  background: #25d366;
  border-radius: 7px;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  margin-left: 7px; /* 改为 margin-left */
  opacity: 0;
  padding: 10px 8px;
  position: relative;
}
.waappd2 p {
  color: #fff;
}
.waappd2:after {
  border: 6px solid transparent;
  border-right-color: #25d366; /* 箭头方向调整为向右 */
  content: "";
  height: 0;
  position: absolute;
  right: 100%; /* 箭头位置在左侧 */
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}
@keyframes layout_fadeIn__7b4Ph {
  from {
    opacity: 0;
    transform: translateX(-20px); /* 动画方向调整为从左进入 */
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Footer */
footer {background-color: var(--dark-color);color: white;overflow:hidden;padding: 60px 0 30px;}
footer h2 {font-size: 26px;font-weight: 700;color: var(--primary-color);margin-bottom: 20px;}

.footer-content {
	width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	text-align: center;
}
.footer-dh li {line-height: 2.8;font-size: 18px;list-style: none;}
.footer-dh li a {color: #fff;}
.footer-ly{margin-bottom: 20px;}
.footer-ly li {line-height: 2.8;font-size: 18px;list-style: none;width:50%;float:left;text-align: center;}
.footer-ly li a {color: #fff;}

.footer-con p {margin-bottom: 22px;line-height: 2;font-size: 16px;text-align: left;}
.footer-con p span {display: block;float: left;font-weight: bold;}
.footer-con img {width: 150px;height: 150px;margin-left: 15px;}
.footb {width: 100%;background: #212529;}
.footn {width: 1200px;margin: 0 auto;color: #fff;display: grid;grid-template-columns: 2fr 1fr;gap: 60px;}
.footn1 p {text-align:center;line-height:60px;font-size:16px;}
.footn1 p a {color:#fff;margin-left:20;}

.footn2 ul {width: 246px;margin: 0 auto;}
.footn2 li {
	width: 38px;
	height: 38px;
	float: left;
	margin-left: 15px;
	margin-top: 11px;
	list-style: none;
	background: #fff;
	border-radius: 5px;
}
.footn li img {width: 100%;}

.lang-container{position:fixed;bottom:30px;right:30px;font-family:Microsoft YaHei;z-index:9999;font-size:16px;}
.lang-trigger{display:flex;align-items:center;justify-content:space-between;width:168px;height:50px;padding:10px 16px;background:rgba(255, 255, 255, 0.85);backdrop-filter: blur(10px);border:1px solid rgba(255, 255, 255, 0.3);border-radius:16px;cursor:pointer;
box-shadow:0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);}
.lang-trigger:hover{transform: translateY(-2px);background: #fff;}
.current-info {display:flex;align-items:center;gap:10px;}
.chevron-icon {width:16px;height:16px;margin-left:8px;color:#94a3b8;transition:transform 0.4s ease;}
.lang-container.open .chevron-icon{transform:rotate(180deg);color:#3b82f6;}
.lang-dropdown{position:absolute;bottom:calc(100% + 12px);right:0;width:168px;background:rgba(255, 255, 255, 0.85);backdrop-filter:blur(12px);border-radius:16px;border:1px solid rgba(255, 255, 255, 0.3);box-shadow:0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);padding:8px;opacity:0;visibility:hidden;transform:translateY(20px) scale(0.95);transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);}
.lang-container.open .lang-dropdown {opacity:1;visibility: visible;transform: translateY(0) scale(1);}
.lang-item{display: flex;align-items: center;gap:12px;padding:3px 9px 3px 9px;border-radius:10px;cursor: pointer;color:#334155;font-size:16px;font-weight:500;transition: all 0.2s;}
.lang-item:hover {background:#f0f4f8;color: #3b82f6;}
.lang-item.active {background:rgba(59, 130, 246, 0.1);color:#3b82f6;}
.flag{filter:drop-shadow(0 2px 2px rgba(0,0,0,0.1));}
.flag img{padding-top:6px;}


/* Responsive Adjustments */
@media (max-width: 1200px) {
.container {max-width: 100%;}
.wenzzt {max-width: 100%;}
.banner-container {height: 500px;}
.banner-content h1 {font-size: 40px;}
.banner-content h2 {font-size: 40px;}
.banner-content p {font-size: 20px;}
.product-grid {grid-template-columns: repeat(2, 1fr);}
.banner-content {padding-top: 100px;}
.ksjbya {grid-template-columns: repeat(2, 1fr);}
.dbyp{display:flex;}
.dbyp1{padding-right:18px;margin-top:1px;border-right:0px;flex:1;}
.dbyp1 p a{width:100%;line-height:1.9;}
.dbyp2{width:0;height:0;overflow:hidden;}
}

@media (max-width: 992px) {
.news-grid {
	grid-template-columns: 1fr;
}
.contact-grid {
	grid-template-columns: 1fr;
}
.contact-lxgs {
	grid-template-columns: 1fr;
	gap: 0px;
}
.about-content {
	grid-template-columns: 1fr;
}
.ypsmsn {
	grid-template-columns: repeat(1, 1fr);
}
	.xwfw-section {
	grid-template-columns: repeat(1, 1fr);
}
.lxwm-fw{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.tjlma li{width:100%;margin-left:0;border:1px solid #2c6e49;margin-bottom:10px;padding:10px 0;text-align:center;border-radius:8px;}
.guidelinen{width:100%;position:static;}
.guideline{width:100%;padding:30px;}
}

@media (max-width: 768px) {
.banner-container {height: 480px;}
.banner-content h1 {font-size: 26px;}
.banner-content h2 {font-size: 26px;}
.banner-content p {font-size: 16px;}
.banner-content li{font-size:16px;}
.product-grid {grid-template-columns: repeat(2, 1fr);}
.ypsmsn {grid-template-columns: repeat(1, 1fr);}
.xwfw-section {grid-template-columns: repeat(1, 1fr);}
.container {padding: 0 15px;}
.wenzzt {padding: 0;}

.yaosm{grid-template-columns: repeat(2, 1fr);gap: 0px;}
.tjlma li{width:100%;margin-left:0;border:1px solid #2c6e49;margin-bottom:10px;padding:10px 0;text-align:center;border-radius:8px;}
.ksjbya {grid-template-columns: repeat(2, 1fr);}
.lxwm-fw{display: grid;grid-template-columns: repeat(1, 1fr);gap: 25px;}


}




@media (max-width: 500px) {
.yaopa{grid-template-columns: repeat(1, 1fr);}
.yaopb{margin:0 auto;}
.lxwm-fw{display: grid;grid-template-columns: repeat(1, 1fr);gap: 25px;}

 /*.product-xwa {
         margin: 0 auto;
        float: none;
    } */
}

	
}

