/* ============================================
   大明古艾官网 - 优化版CSS
   原文件: style.css (7247行)
   优化后: 按模块组织，移除未使用样式，合并重复定义
   ============================================ */

/* ============================================
   1. 基础重置样式
   ============================================ */
* {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

p, h1, h2, h3, h4, h5, h6, small, input, span, strong, button {
	font-family: "微软雅黑";
}

.clear {
	clear: both;
}

/* ============================================
   2. 布局基础
   ============================================ */
.container {
	width: 1200px;
	margin: 0 auto;
}

/* ============================================
   3. 头部导航
   ============================================ */
.header {
	background-color: #09664a;
	background-image: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 6px,
		rgba(255, 255, 255, 0.06) 6px,
		rgba(255, 255, 255, 0.06) 7px
	);
	height: 112px;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999;
	border-bottom: 1px solid #5b9890;
}

.header-container {
	position: relative;
	height: 112px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.logo {
	display: block;
	background: url(../images/logo.png) no-repeat center;
	width: 190px;
	height: 418px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;
	transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.header-hover .logo {
	display: block;
	background: url(../images/logo2.png) no-repeat center;
	width: 269px;
	height: 112px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;
	transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.nav {
	float: none;
	margin-top: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: flex-end;
	height: 100%;
	padding-left: 220px;
	box-sizing: border-box;
	gap: 0;
}

.nav li {
	float: none;
	margin-left: 30px;
	border-bottom: none;
	line-height: 1;
	height: auto;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	box-sizing: border-box;
}

.nav li:first-child {
	margin-left: 0;
}

.nav li a {
	position: relative;
	color: #ffffff;
	font-size: 16px;
	display: inline-block;
	height: auto;
	padding: 0;
	border-bottom: none;
	line-height: 1.2;
	white-space: nowrap;
	box-sizing: border-box;
	transition: color 0.2s ease;
}

.nav li a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -12px;
	height: 2px;
	background: transparent;
	transition: background 0.2s ease;
}

.nav li:hover a,
.nav li.nav-active a,
.nav li.is-active a {
	color: #ffe400;
}

.nav li:hover a::after,
.nav li.nav-active a::after,
.nav li.is-active a::after {
	background: #ffe400;
}

/* 首页选中 */
.page-home .nav .nav-home a {
	color: #ffe400;
}

.page-home .nav .nav-home a::after {
	background: #ffe400;
}

/* ============================================
   4. Banner轮播
   ============================================ */
.banner {
	margin-top: 112px;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.banner .swiper-container {
	width: 100%;
	height: 100%;
}

.banner .swiper-slide {
	position: relative;
	text-align: center;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

.banner .slide-caption {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 90%;
	max-width: 800px;
	text-align: center;
	color: #fff;
	pointer-events: none;
}

.banner .slide-caption h2 {
	margin: 0 0 12px;
	font-size: 42px;
	font-weight: 600;
	letter-spacing: 2px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.banner .slide-caption p {
	margin: 0;
	font-size: 18px;
	letter-spacing: 1px;
	opacity: 0.92;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.banner .slide-caption h2:empty,
.banner .slide-caption p:empty {
	display: none;
	margin: 0;
}

/* 分页器样式 */
.banner .swiper-pagination {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
}

.banner .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background: rgba(255,255,255,0.5);
	border-radius: 50%;
	cursor: pointer;
}

.banner .swiper-pagination-bullet-active {
	background: #fff;
}

/* 轮播切换按钮样式 */
.swiper-button-prev,
.swiper-button-next {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: none !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: #B38B59;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(179, 139, 89, 0.2);
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-family: "FontAwesome";
	font-size: 28px;
	color: #666;
	transition: all 0.3s ease;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transform: none !important;
}

.swiper-button-prev::after {
	content: "\f104";
	padding-right: 3px;
}

.swiper-button-next::after {
	content: "\f105";
	padding-left: 3px;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
	color: #fff;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
	.swiper-button-prev,
	.swiper-button-next {
		width: 40px;
		height: 40px;
	}

	.swiper-button-prev::after,
	.swiper-button-next::after {
		font-size: 24px;
	}
}

/* ============================================
   5. 通用标题样式
   ============================================ */
.title {
	text-align: center;
	background: url(../images/line.png) no-repeat center bottom;
}

.title h3 {
	font-family: SimSun;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 40px;
}

.title p {
	text-transform: uppercase;
	color: #c78f01;
	font-size: 24px;
	font-family: SimSun;
	margin-top: 10px;
}

/* ============================================
   6. 首页 - 艾灸文化模块 (moxi)
   ============================================ */
.moxi {
	background: #17140b;
	overflow: hidden;
	padding: 40px 0 140px 0;
	position: relative;
}

.moxi::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/bg4.jpg) no-repeat center center;
	background-size: cover;
	opacity: 0.8;
	z-index: 0;
}

.moxi .container {
	position: relative;
	z-index: 1;
}

.moxi-ul {
	overflow: hidden;
	width: 1000px;
	margin: 0 auto;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.moxi-ul li {
	height: 452px;
	width: 206px;
	position: relative;
	padding: 2px;
	float: left;
	margin: 0 20px;
}

.moxi-ul li a {
	display: block;
	background: url(../images/bg1.png) no-repeat center top;
	background-size: 100%;
	width: 210px;
	height: 452px;
	z-index: 10;
	top: 0;
	left: 0;
	position: absolute;
}

.moxi-ul li img {
	display: block;
}

.moxi-ul li .Partner-pic1 {
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform-style: preserve-3d;
	-moz-backface-visibility: hidden;
	-o-transition: all .6s ease-in-out;
	-ms-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.moxi-ul li:hover .Partner-pic1 {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}

.moxi-ul li .Partner-pic2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	-webkit-transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-transform: rotateY(-180deg);
	-moz-transform-style: preserve-3d;
	-moz-backface-visibility: hidden;
	-o-transition: all .6s ease-in-out;
	-ms-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.moxi-ul li:hover .Partner-pic2 {
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotate(0deg);
	z-index: 8;
	position: absolute;
}

.moxi-ul li i {
	display: block;
	background: url(../images/tb1.png) no-repeat center;
	background-size: 100%;
	width: 100px;
	height: 102px;
	margin: 0 auto;
	margin-top: -51px;
	position: relative;
	z-index: 9;
}

.moxi-ul li:nth-child(2) i {
	background: url(../images/tb2.png) no-repeat center;
	background-size: 100%;
}

.moxi-ul li:nth-child(3) i {
	background: url(../images/tb3.png) no-repeat center;
	background-size: 100%;
}

.moxi-ul li:nth-child(4) i {
	background: url(../images/tb4.png) no-repeat center;
	background-size: 100%;
}

.moxi-text {
	padding: 0 15px;
	margin-top: 15px;
	text-align: center;
}

.moxi-text h3 {
	color: #B38D2F;
	font-size: 20px;
	font-weight: 700;
}

.moxi-text p {
	color: #7f7f7f;
	font-size: 14px;
}

/* ============================================
   7. 首页 - 了解我们模块 (tand)
   ============================================ */
.tand {
	background: #17140b;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.tand::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/bg2.jpg) no-repeat center center;
	background-size: cover;
	opacity: 0.9;
	z-index: 0;
}

.tand .container {
	position: relative;
	z-index: 1;
}

.tand-ul {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 1012px;
	margin: 0 auto;
	margin-top: 45px;
}

.tand-ul li {
	width: 203px;
	margin-right: 12.5px;
	float: left;
}

.tand-ul li a {
	width: 203px;
	height: 306px;
	background: url(../images/bg3.png) no-repeat center -500px;
	overflow: hidden;
	display: block;
	transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tand-ul li a:hover {
	background: url(../images/bg3.png) no-repeat center top;
	transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tand-ul li img {
	width: 155px;
	height: 155px;
	display: block;
	margin: 0 auto;
	margin-top: 35px;
}

.tand-ul li p {
	color: #FFFFFF;
	font-family: simsun;
	font-size: 18px;
	text-align: center;
	margin-top: 25px;
}

/* ============================================
   8. 首页 - OEM贴牌模块 (Sales)
   ============================================ */
.Sales {
	background: #17140b;
	padding: 100px 0;
}

.Sales img {
	display: block;
	margin: 0 auto;
}

.Sales-container {
	overflow: hidden;
	height: 670px;
	position: relative;
	margin-top: 70px;
	font-weight: 700;
}

.Sales-Rota {
	position: absolute;
	left: 50%;
	top: 0;
	width: 668px;
	height: 668px;
	display: block;
	background: url(../images/pic5.png) no-repeat center;
	margin-left: -333px;
	margin-top: 2px;
	animation-name: fucks;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes fucks {
	from { transition: 0.5s ease-in }
	to { transform: rotate(360deg) }
}

.Sales-thour {
	width: 512px;
	height: 512px;
	background: url(../images/pic6.png) no-repeat center;
	background-size: 100%;
	position: absolute;
	left: 50%;
	top: 80px;
	margin-left: -255px;
	display: block;
	border-radius: 50%;
}

.array {
	background: url(../images/line2.png) no-repeat right center;
	height: 26px;
	line-height: 26px;
	position: absolute;
	left: 90px;
	top: 155px;
	padding-right: 280px;
}

.array a {
	display: block;
	font-size: 24px;
	font-family: simsun;
	color: #B38D2F;
	background: #17140B;
}

.array a:hover {
	animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

@keyframes shake {
	10%, 90% { transform: translate3d(-1px, 0, 0); }
	20%, 80% { transform: translate3d(2px, 0, 0); }
	30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
	40%, 60% { transform: translate3d(4px, 0, 0); }
}

.array2 {
	top: 390px;
	padding-right: 230px;
}

.array3 {
	top: 525px;
	left: 170px;
}

.array4 {
	left: 600px;
	background: url(../images/line3.png) no-repeat left center;
	padding-right: 0;
	padding-left: 280px;
	top: 100px;
}

.array5 {
	left: 770px;
	background: url(../images/line3.png) no-repeat left center;
	padding-right: 0;
	padding-left: 220px;
	top: 220px;
}

.array6 {
	left: 760px;
	background: url(../images/line3.png) no-repeat left center;
	padding-right: 0;
	padding-left: 220px;
	top: 415px;
}

/* ============================================
   9. 首页 - 客户评价模块 (erst)
   ============================================ */
.erst {
	background: #17140b;
	overflow: hidden;
	padding: 100px 0 100px 0;
	position: relative;
}

.erst::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/bg4.jpg) no-repeat center center;
	background-size: cover;
	opacity: 0.8;
	z-index: 0;
}

.erst .container {
	position: relative;
	z-index: 1;
}

.erst-ul {
	overflow: hidden;
	width: 1220px;
	margin-top: 40px;
	position: relative;
	z-index: 1;
}

.erst-ul li {
	width: 230px;
	height: 465px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	overflow: hidden;
	float: left;
	margin-right: 12.5px;
	border-radius: 0;
	transition: all 0.3s ease;
}

.erst-ul li:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.2);
}

.erst-link {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	margin-top: 35px;
}

.erst-pic {
	width: 142px;
	height: 142px;
	border: 2px solid #ab8534;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	margin-top: 38px;
	position: relative;
	background: linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.erst-pic img {
	display: block;
	margin: 0 auto;
	width: 136px;
	height: 136px;
	margin-top: 3px;
	border-radius: 50%;
}

.erst-pic.is-empty::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 30% 30%, rgba(171, 133, 52, 0.18), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.erst-pic.is-empty img {
	display: none !important;
}

.erst-text {
	width: 192px;
	margin: 0 auto;
	margin-top: 25px;
}

.erst-text h3 {
	color: #FFFFFF;
	font-size: 18px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: normal;
}

.erst-text p {
	font-size: 14px;
	line-height: 24px;
	color: #AB8534;
	margin-top: 20px;
}

/* ============================================
   10. 首页 - 资质荣誉模块 (honor)
   ============================================ */
.honor {
	overflow: hidden;
	background: #17140b;
	padding: 140px 0;
	position: relative;
}

.honor::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/bg7.jpg) no-repeat center center;
	background-size: cover;
	opacity: 0.9;
	z-index: 0;
}

.honor .container {
	position: relative;
	z-index: 1;
}

#certify {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	margin-top: 40px;
	padding-bottom: 20px;
	z-index: 1;
}

#certify .swiper-slide {
	width: 520px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	border-radius: 0;
	padding: 15px;
	transition: all 0.3s ease;
	margin: 0 10px;
}

#certify .swiper-slide:hover {
	background: rgba(255, 255, 255, 0.2);
}

#certify .swiper-slide img {
	display: block;
	width: 475px;
	height: 320px;
	margin: 0 auto;
	border-radius: 0;
	object-fit: cover;
}

#certify .swiper-slide p {
	line-height: 50px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	margin: 0;
	font-family: simsun;
}

#certify .swiper-button-prev,
#certify .swiper-button-next {
	width: 45px;
	height: 45px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.3s;
}

#certify .swiper-button-prev:hover,
#certify .swiper-button-next:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   11. 首页 - 新闻模块 (news)
   ============================================ */
.news {
	background: #17140B;
	padding: 80px 0;
}

.news-wrap {
	position: relative;
	margin-top: 30px;
}

.news-main {
	width: 990px;
	overflow: hidden;
	position: relative;
}

.news-main-a {
	width: 990px;
	overflow: hidden;
	position: relative;
	margin-left: 129px;
	min-height: 475px;
}

.news-main-a[hidden] {
	display: none !important;
}

.news-link {
	display: block;
	background: #FFFFFF;
	float: right;
	height: 475px;
	width: 526px;
	border-radius: 0;
	position: relative;
}

.news-link img {
	display: block;
	width: 490px;
	height: 400px;
	margin: 0 auto;
	margin-top: 18px;
	object-fit: cover;
	border-radius: 0;
	background: linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.news-link.is-empty img {
	display: none !important;
}

.news-link.is-empty::before {
	content: '';
	display: block;
	width: 490px;
	height: 400px;
	margin: 18px auto 0;
	border-radius: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(9, 102, 74, 0.12), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.news-link p {
	text-align: center;
	color: #303030;
	font-size: 18px;
	padding: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-ul {
	width: 468px;
	height: 381px;
	border: 1px solid #ede6d4;
	border-right: none;
	position: absolute;
	left: 0;
	top: 35px;
	overflow: hidden;
	padding-top: 15px;
	border-radius: 0;
}

.news-ul li {
	width: 400px;
	margin-left: 50px;
	border-bottom: 1px solid #2d2512;
	padding: 20px 0;
}

.news-ul li:nth-last-child(1) {
	border: none;
}

.news-ul li a {
	display: block;
}

.news-ul li h3 {
	font-size: 18px;
	color: #ffffff;
	font-weight: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-ul li p {
	color: #FFFFFF;
	font-size: 14px;
	line-height: 24px;
	margin-top: 10px;
	opacity: 0.32;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 48px;
}

.news-more {
	display: block;
	width: 80px;
	height: 266px;
	right: 0;
	top: 32px;
	position: absolute;
	background: #09664a;
	text-align: center;
	color: #FFFFFF;
	line-height: 30px;
	z-index: 9;
	letter-spacing: 0px;
	padding-top: 140px;
	border-radius: 0;
	font-size: 22px;
}

.news-table {
	position: absolute;
	left: 0;
	z-index: 99;
}

.news-table li {
	overflow: hidden;
	width: 172px;
	cursor: pointer;
	margin-top: 80px;
}

.news-table li p {
	width: 129px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-right: 1px solid #ede6d4;
	color: #FFFFFF;
	font-size: 24px;
	font-weight: normal;
	float: left;
	border-radius: 0;
}

.news-table-link {
	display: block;
	background: url(../images/pic13.jpg) no-repeat center;
	height: 48px;
	width: 42px;
	background-size: 100%;
	float: left;
	display: none;
}

.news-table li.menu4 p {
	background: #1c7c43;
}

.news-table li.menu4 .news-table-link {
	display: block;
}

/* ============================================
   12. 首页 - 联系我们模块 (contact)
   ============================================ */
.contact {
	background: rgba(23, 20, 11, 0.3);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/pic14.jpg) no-repeat center center;
	background-size: cover;
	opacity: 0.15;
	z-index: 0;
}

.contact-us {
	width: 1200px;
	margin: 50px auto 0;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.contact-us li {
	flex: 1;
	margin: 0 15px;
	background: rgba(9, 102, 74, 0.3);
	border-radius: 0;
	padding: 35px 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.contact-us li:hover {
	transform: translateY(-10px);
	background: rgba(9, 102, 74, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.contact-text h4 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-text p {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.contact-main img {
	width: 52px;
	height: 52px;
	margin-right: 20px;
	transition: all 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* 首页线索表单 */
.contact--lead .container {
	position: relative;
	z-index: 1;
}

.home-lead-form {
	max-width: 780px;
	margin: 40px auto 0;
	padding: 36px 32px 28px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-sizing: border-box;
}

.home-lead-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 14px;
}

.home-lead-form input,
.home-lead-form textarea {
	width: 100%;
	border: 1px solid #d8dee6;
	border-radius: 0;
	padding: 12px 14px;
	font-size: 15px;
	color: #1f2a33;
	background: #fff;
	box-sizing: border-box;
}

.home-lead-form input:focus,
.home-lead-form textarea:focus {
	outline: none;
	border-color: var(--accent, #09664a);
}

.home-lead-form textarea {
	resize: vertical;
	min-height: 110px;
	margin-bottom: 4px;
}

.home-lead-form button {
	margin-top: 16px;
	min-width: 168px;
	height: 46px;
	border: none;
	border-radius: 0;
	background: var(--accent, #09664a);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.home-lead-form button:hover {
	opacity: 0.9;
}

.home-lead-form .lead-msg {
	margin-top: 14px;
	font-size: 14px;
	color: var(--accent, #09664a);
}

.home-lead-form .lead-msg.is-error,
.contact-lead-form .lead-msg.is-error,
.lead-msg.is-error {
	color: #c0392b;
}

@media (max-width: 900px) {
	.home-lead-grid {
		grid-template-columns: 1fr;
	}
	.home-lead-form {
		margin-top: 28px;
		padding: 24px 18px 20px;
	}
}


.contact-us li:hover img {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* ============================================
   13. 页脚 (footer)
   ============================================ */
.footer {
	position: relative;
	background-color: #084237;
	background-image: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 6px,
		rgba(255, 255, 255, 0.05) 6px,
		rgba(255, 255, 255, 0.05) 7px
	);
}

.foot {
	padding: 64px 0 48px;
	overflow: hidden;
}

.foot .container {
	display: block;
}

.foot-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 36px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.foot-head-brand {
	flex: 1;
	min-width: 0;
}

.foot-name {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.06em;
	margin-bottom: 12px;
	line-height: 1.3;
}

.foot-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.7;
	letter-spacing: 0.04em;
	max-width: 520px;
}

.foot-desc:empty {
	display: none;
}

.foot-head-phone {
	flex-shrink: 0;
	text-align: right;
}

.foot-phone-label {
	display: block;
	font-size: 12px;
	color: rgba(255, 228, 0, 0.85);
	letter-spacing: 0.18em;
	margin-bottom: 10px;
}

.foot-phone-num {
	display: inline-block;
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 36px;
	font-weight: 700;
	color: #ffe400;
	letter-spacing: 0.04em;
	line-height: 1;
	transition: color 0.25s ease;
}

.foot-phone-num:hover {
	color: #fff;
}

.foot-body {
	display: grid;
	grid-template-columns: 1.1fr 0.7fr 2fr;
	gap: 48px;
	align-items: start;
}

.foot-col-title {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 16px;
	font-weight: 600;
	color: #ffe400;
	letter-spacing: 0.12em;
	margin-bottom: 24px;
	padding-bottom: 0;
	border-bottom: none;
}

.foot-contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.foot .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.foot .contact-item i {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 228, 0, 0.22);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffe400;
	font-size: 16px;
	flex-shrink: 0;
}

.foot .contact-detail {
	display: flex;
	flex-direction: column;
	padding-top: 1px;
	min-width: 0;
}

.foot .contact-detail .label {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}

.foot .contact-detail .value {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.02em;
}

.foot-qr {
	text-align: center;
}

.foot-qr img {
	display: block;
	width: 132px;
	height: 132px;
	margin: 0 auto 14px;
	background: #fff;
	padding: 8px;
	box-sizing: border-box;
	object-fit: contain;
}

.foot-qr p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.06em;
}

.foot-nav-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 24px;
}

.foot-nav-column h5 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 16px;
	letter-spacing: 0.04em;
}

.foot-nav-column h5,
.foot-nav-column h5 a {
	color: #fff;
	text-decoration: none;
}

.foot-nav-column h5 a:hover {
	color: #ffe400;
}

.foot-nav-column ul li {
	margin-bottom: 10px;
}

.foot-nav-column ul li a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	line-height: 1.5;
	transition: color 0.25s ease;
	display: inline-block;
}

.foot-nav-column ul li a:hover {
	color: #ffe400;
}

/* 兼容旧类名 */
.foot-brand {
	flex: none;
}

.foot-logo img {
	height: 80px;
	margin-bottom: 20px;
}

.foot-slogan {
	color: rgba(255,255,255,0.8);
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.6;
}

.foot-nav-column h4 {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 228, 0, 0.35);
	letter-spacing: 0.08em;
}

.foot-nav-column h4,
.foot-nav-column h4 a {
	color: #ffe400;
	text-decoration: none;
}

/* 底部版权 */
.foot-bottom {
	background: rgba(0,0,0,0.28);
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.foot-copyright {
	text-align: center;
}

.foot-copyright p {
	color: rgba(255,255,255,0.55);
	font-size: 13px;
	margin-bottom: 0;
	letter-spacing: 0.04em;
}

.foot-copyright a {
	color: rgba(255,255,255,0.55);
	transition: color 0.25s ease;
}

.foot-copyright a:hover {
	color: #ffe400;
}

/* ============================================
   14. 友情链接
   ============================================ */
.flink {
	background: #000;
	padding: 20px 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	position: relative;
}

.flink_con {
	width: 1200px;
	margin: 0 auto;
}

.flink ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.flink ul li {
	color: #fff;
	font-size: 14px;
	position: relative;
}

.flink .flink_title {
	font-weight: 600;
	font-size: 14px;
	color: #ffff00;
	position: relative;
}

.flink ul li a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	display: block;
}

/* ============================================
   15. 页面通用Banner
   ============================================ */
.page-banner {
	position: relative;
	height: 520px;
	overflow: hidden;
	margin-top: 80px;
}

.page-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(35, 37, 36, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
}

.page-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 2;
	width: 90%;
	max-width: 800px;
}

.banner-content h1 {
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 15px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
	letter-spacing: 2px;
}

.banner-content p {
	font-size: 18px;
	opacity: 0.9;
	text-shadow: 0 1px 4px rgba(0,0,0,0.3);
	letter-spacing: 1px;
}

.banner-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 1;
}

.banner-title h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-title p {
	font-size: 18px;
	opacity: 0.9;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ============================================
   16. 面包屑 / 列表页眉
   ============================================ */
.news-crumb {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 28px 0 8px;
	font-size: 14px;
	color: #8a8a8a;
	letter-spacing: 0.04em;
}

.news-crumb a {
	color: #8a8a8a;
	transition: color 0.25s;
}

.news-crumb a:hover {
	color: #09664a;
}

.news-crumb em {
	font-style: normal;
	color: #09664a;
	font-weight: 500;
}

.breadcrumb {
	padding: 15px 0;
	color: #666;
	font-size: 14px;
	margin-bottom: 30px;
}

.breadcrumb a {
	color: #666;
	transition: color 0.3s;
}

.breadcrumb a:hover {
	color: #09664a;
}

.breadcrumb .separator {
	margin: 0 10px;
	color: #999;
}

.breadcrumb .current {
	color: #09664a;
}

.page-banner--compact {
	height: 360px;
}

/* ============================================
   17. 新闻列表页面（大气编辑风格）
   ============================================ */
.news-container {
	padding: 20px 0 100px;
}

.news-layout {
	display: flex;
	gap: 56px;
	align-items: flex-start;
	margin-top: 28px;
}

.news-main {
	flex: 1;
	min-width: 0;
}

.news-list {
	display: flex;
	flex-direction: column;
	margin-bottom: 56px;
}

.news-item {
	display: flex;
	gap: 28px;
	align-items: stretch;
	padding: 36px 0;
	border-bottom: 1px solid #e6ebe8;
	background: transparent;
	transition: background 0.3s ease;
}

.news-item:first-child {
	padding-top: 8px;
}

.news-item:hover {
	transform: none;
	box-shadow: none;
}

.news-image {
	display: block;
	width: 280px;
	height: 188px;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
	background: linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.news-image.is-empty::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(9, 102, 74, 0.12), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.news-image.is-empty img {
	display: none !important;
}

.news-item:hover .news-image img {
	transform: scale(1.06);
}

.news-date {
	width: 72px;
	flex-shrink: 0;
	text-align: center;
	padding-top: 4px;
	border-right: 1px solid #e6ebe8;
	margin-right: 4px;
}

.news-date strong {
	display: block;
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	color: #09664a;
	letter-spacing: -0.02em;
}

.news-date span {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	color: #9aa39e;
	letter-spacing: 0.06em;
}

.news-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-top: 2px;
}

.news-title {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 14px;
	line-height: 1.45;
	letter-spacing: 0.02em;
}

.news-title a {
	color: #1a1f1c;
	transition: color 0.25s ease;
}

.news-title a:hover {
	color: #09664a;
}

.news-meta {
	display: flex;
	gap: 18px;
	font-size: 13px;
	color: #9aa39e;
}

.news-meta i {
	margin-right: 6px;
}

.news-desc {
	font-size: 15px;
	color: #1a1f1c;
	line-height: 1.85;
	margin-bottom: 22px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: calc(1.85em * 2);
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #09664a;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	transition: gap 0.3s ease;
}

.read-more:hover {
	gap: 14px;
}

.read-more i {
	font-size: 13px;
}

.news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 4px;
}

.news-footer .news-meta {
	margin-bottom: 0;
}

.news-sidebar,
.article-sidebar {
	width: 300px;
	flex-shrink: 0;
}

.sidebar-box {
	background: #f7f9f8;
	padding: 28px 24px;
	margin-bottom: 24px;
	border: none;
}

.sidebar-title {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 18px;
	font-weight: 600;
	color: #1a1f1c;
	margin-bottom: 22px;
	padding: 0 0 14px 14px;
	border-bottom: 1px solid #dde5e1;
	border-left: 3px solid #09664a;
	display: block;
	letter-spacing: 0.06em;
}

.sidebar-title i {
	display: none;
}

.category-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.category-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	color: #555e59;
	font-size: 15px;
	transition: all 0.25s ease;
	border-left: 2px solid transparent;
}

.category-item:hover,
.category-item.active,
.category-item.is-active {
	background: #fff;
	color: #09664a;
	border-left-color: #09664a;
}

.category-item i {
	color: #c5cdc8;
	transition: color 0.25s ease;
}

.category-item:hover i,
.category-item.active i,
.category-item.is-active i {
	color: #09664a;
}

.hot-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hot-item {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid #e4ebe7;
	transition: opacity 0.25s ease;
}

.hot-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.hot-item:first-child {
	padding-top: 0;
}

.hot-item:hover {
	opacity: 0.85;
	background: transparent;
}

.hot-thumb {
	width: 84px;
	height: 64px;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
	background: linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.hot-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hot-thumb.is-empty::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(9, 102, 74, 0.12), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.hot-thumb.is-empty img {
	display: none !important;
}

.hot-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hot-info h4 {
	font-size: 14px;
	color: #2a322e;
	line-height: 1.5;
	font-weight: 500;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 6px;
}

.hot-info span {
	font-size: 12px;
	color: #9aa39e;
}

.sidebar-box .contact-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 20px;
}

.sidebar-box .contact-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.sidebar-box .contact-item > i {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #09664a;
	color: #fff;
	flex-shrink: 0;
	font-size: 16px;
	border-radius: 0;
}

.sidebar-box .contact-item label {
	display: block;
	font-size: 12px;
	color: #9aa39e;
	margin-bottom: 4px;
}

.sidebar-box .contact-item p {
	font-size: 16px;
	color: #1a1f1c;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.wechat-qrcode {
	text-align: center;
	padding-top: 8px;
	border-top: 1px solid #e4ebe7;
}

.qrcode-img {
	width: 120px;
	height: 120px;
	margin: 16px auto 10px;
	background: #fff;
	padding: 6px;
}

.qrcode-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.qrcode-hint {
	font-size: 12px;
	color: #9aa39e;
}

.contact-btn {
	display: block;
	width: 100%;
	padding: 12px;
	background: #09664a;
	color: #fff;
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.3s ease;
}

.contact-btn:hover {
	background: #084237;
}

/* ============================================
   18. 分页样式（适配 {page:bar} / {page:numbar}）
   ============================================ */
.pagination,
.pagination .page-bar,
nav.page-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	padding: 28px 0 0;
	list-style: none;
}

.pagination a,
.pagination span,
.page-bar a,
.page-bar span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	background: #fff;
	border: 1px solid #d9e2dd;
	color: #555e59;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
	box-shadow: none;
}

.pagination a:hover,
.page-bar a:hover {
	background: #f7f9f8;
	border-color: #09664a;
	color: #09664a;
	transform: none;
	text-decoration: none;
}

.pagination a.active,
.pagination span.current,
.pagination .page-num-current,
.page-bar .page-num-current,
.page-bar a.page-num-current {
	background: #09664a;
	border-color: #09664a;
	color: #fff;
	box-shadow: none;
	cursor: default;
}

.pagination a.disabled,
.pagination span.disabled,
.pagination span.page-pre,
.pagination span.page-next,
.page-bar span.page-pre,
.page-bar span.page-next {
	background: #f5f5f5;
	border-color: #e8e8e8;
	color: #bbb;
	cursor: not-allowed;
}

.pagination .page-pre,
.pagination .page-next,
.page-bar .page-pre,
.page-bar .page-next {
	padding: 0 16px;
	min-width: auto;
}

.pagination .ellipsis,
.pagination .page-ellipsis,
.page-bar .page-ellipsis {
	background: transparent;
	border: none;
	color: #999;
	cursor: default;
	min-width: auto;
}

.pagination .ellipsis:hover,
.page-bar .page-ellipsis:hover {
	background: transparent;
	border: none;
	color: #999;
}

/* ============================================
   19. 文章详情页（大气阅读风格）
   ============================================ */
.article-container {
	padding: 20px 0 100px;
}

.article-wrap {
	display: flex;
	gap: 56px;
	align-items: flex-start;
	margin-top: 28px;
}

.article-main {
	flex: 1;
	min-width: 0;
	background: #fff;
}

.article-header {
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid #e6ebe8;
}

.article-kicker {
	display: inline-block;
	font-size: 13px;
	color: #09664a;
	letter-spacing: 0.18em;
	margin-bottom: 18px;
	font-weight: 500;
}

.article-title {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 36px;
	font-weight: 700;
	color: #1a1f1c;
	margin-bottom: 24px;
	line-height: 1.4;
	letter-spacing: 0.03em;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	color: #9aa39e;
	font-size: 14px;
}

.meta-item {
	display: flex;
	align-items: center;
}

.meta-item i {
	margin-right: 8px;
	font-size: 14px;
	color: #09664a;
}

.article-content {
	font-size: 17px;
	line-height: 2;
	color: #2f3833;
	letter-spacing: 0.02em;
}

.article-content img {
	max-width: 100%;
	height: auto;
	margin: 28px 0;
	display: block;
}

.article-content p {
	margin-bottom: 1.4em;
}

.article-content h2,
.article-content h3 {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	color: #1a1f1c;
	margin: 1.6em 0 0.7em;
	line-height: 1.4;
}

.article-content h2 {
	font-size: 24px;
}

.article-content h3 {
	font-size: 20px;
}

.article-nav {
	margin-top: 56px;
	padding-top: 0;
	border-top: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.article-nav .nav-item {
	flex: none;
	padding: 28px 24px;
	background: #f7f9f8;
	border: 1px solid #e6ebe8;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.article-nav .nav-item:hover {
	border-color: #09664a;
	background: #fff;
}

.article-nav .nav-item.next {
	text-align: right;
}

.article-nav .nav-label {
	display: block;
	color: #09664a;
	font-size: 12px;
	letter-spacing: 0.16em;
	margin-bottom: 12px;
	font-weight: 500;
}

.article-nav .nav-link {
	color: #1a1f1c;
	font-size: 16px;
	line-height: 1.55;
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
}

.article-nav .nav-link a {
	color: inherit;
	transition: color 0.25s;
}

.article-nav .nav-link a:hover {
	color: #09664a;
}

.nav.nav-link:hover {
	color: #09664a;
}

.sidebar-block {
	background: #fff;
	padding: 25px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	margin-bottom: 30px;
}

.block-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	position: relative;
}

.block-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 40px;
	height: 2px;
	background: #09664a;
}

/* 推荐产品列表 */
.product-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.product-item {
	transition: all 0.3s ease;
}

.product-item:hover {
	transform: translateY(-5px);
}

.product-image {
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 10px;
	position: relative;
	background: linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.product-image img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	transition: transform 0.3s;
}

.product-image.is-empty::after,
.product-image.is-empty a::after {
	content: '';
	display: block;
	height: 120px;
	background:
		radial-gradient(circle at 30% 30%, rgba(9, 102, 74, 0.12), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.product-image.is-empty img {
	display: none !important;
}

.product-item:hover .product-image img {
	transform: scale(1.1);
}


/* ============================================
   20. 产品列表页面（大气陈列风格）
   ============================================ */
.product-container {
	padding: 20px 0 100px;
}

.product-layout {
	display: flex;
	gap: 56px;
	align-items: flex-start;
	margin-top: 28px;
}

.product-main {
	flex: 1;
	min-width: 0;
}

.product-sidebar {
	width: 300px;
	flex-shrink: 0;
}

/* 产品瀑布流 */
.product-main .product-grid,
.product-grid {
	display: block;
	column-count: 3;
	column-gap: 24px;
	margin-bottom: 48px;
}

.product-grid .product-item {
	display: inline-block;
	width: 100%;
	margin: 0 0 28px;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	background: transparent;
	overflow: hidden;
	border: none;
	box-shadow: none;
	vertical-align: top;
}

.product-grid .product-item:hover {
	transform: none;
	box-shadow: none;
	border-color: transparent;
}

.product-grid .product-item a {
	display: block;
}

.product-grid .product-image {
	position: relative;
	width: 100%;
	height: auto;
	padding-bottom: 0;
	overflow: hidden;
	background: #f7f9f8;
	border: 1px solid #e6ebe8;
}

.product-grid .product-image::before {
	display: none;
}

.product-grid .product-image img {
	position: static;
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	transition: opacity 0.35s ease;
}

.product-grid .product-image.is-empty {
	min-height: 200px;
}

.product-grid .product-image.is-empty::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(9, 102, 74, 0.12), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.product-grid .product-image.is-empty img {
	display: none !important;
}

.product-grid .product-item:hover .product-image img {
	transform: none;
	opacity: 0.92;
}

.image-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 66, 55, 0.72);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 2;
}

.product-item:hover .image-overlay {
	opacity: 1;
}

.view-detail {
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	padding: 14px 28px;
	border: 1px solid rgba(255,255,255,0.55);
	background: transparent;
	transform: translateY(8px);
	opacity: 0;
	transition: all 0.35s ease;
}

.product-item:hover .view-detail {
	transform: translateY(0);
	opacity: 1;
}

.product-info {
	padding: 16px 4px 4px;
	position: relative;
	text-align: center;
}

.product-info::before {
	display: none;
}

.product-grid .product-title {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 16px;
	font-weight: 600;
	color: #1a1f1c;
	line-height: 1.5;
	text-align: center;
	margin: 0;
	letter-spacing: 0.04em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.product-grid .product-item:hover .product-title {
	color: #09664a;
}

.product-desc {
	font-size: 14px;
	color: #66706a;
	line-height: 1.6;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
}

.product-nav .nav-item {
	padding: 10px 22px;
	color: #555e59;
	font-size: 15px;
	background: #f7f9f8;
	border: 1px solid #e6ebe8;
	transition: all 0.25s ease;
}

.product-nav .nav-item:hover,
.product-nav .nav-item.active {
	background: #09664a;
	border-color: #09664a;
	color: #fff;
}

.product-nav .nav-item::before {
	display: none;
}

/* ============================================
   21. 产品详情页（大气陈列风格）
   ============================================ */
.product-detail-container {
	padding: 20px 0 100px;
}

.product-detail-wrap {
	display: flex;
	gap: 56px;
	align-items: flex-start;
	margin-top: 28px;
}

.product-detail-main {
	flex: 1;
	min-width: 0;
}

.product-basic {
	display: flex;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid #e6ebe8;
}

.product-gallery {
	width: 480px;
	flex-shrink: 0;
}

.gallery-main {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, #e8efe9, #d5e0d7);
	border: 1px solid #e6ebe8;
}

.gallery-main img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

.gallery-main.is-empty::after {
	content: '';
	display: block;
	height: 480px;
	background:
		radial-gradient(circle at 30% 30%, rgba(9, 102, 74, 0.12), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.gallery-main.is-empty img {
	display: none !important;
}

.gallery-main:hover img {
	transform: none;
}

.zoom-hint {
	display: none;
}

.product-detail-main .product-info {
	flex: 1;
	padding: 8px 0 0;
	min-width: 0;
}

.product-kicker {
	display: inline-block;
	font-size: 13px;
	color: #09664a;
	letter-spacing: 0.18em;
	margin-bottom: 16px;
	font-weight: 500;
}

.product-detail-main .product-title {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 32px;
	font-weight: 700;
	color: #1a1f1c;
	margin-bottom: 28px;
	line-height: 1.4;
	letter-spacing: 0.03em;
}

.product-meta {
	margin-bottom: 36px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.product-detail-main .meta-item {
	display: flex;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #eef2f0;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
}

.product-detail-main .meta-item:last-child {
	border-bottom: none;
}

.product-detail-main .meta-item label {
	width: 72px;
	flex-shrink: 0;
	color: #9aa39e;
	letter-spacing: 0.08em;
}

.product-detail-main .meta-item span {
	flex: 1;
	color: #2a322e;
	font-weight: 500;
}

.product-contact {
	margin-top: 12px;
	padding: 28px 24px;
	background: #f7f9f8;
	border: 1px solid #e6ebe8;
	text-align: center;
}

.product-contact .contact-title {
	font-size: 13px;
	color: #9aa39e;
	margin-bottom: 10px;
	letter-spacing: 0.16em;
}

.product-contact .contact-phone {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 34px;
	color: #09664a;
	font-weight: 700;
	margin-bottom: 22px;
	letter-spacing: 0.04em;
	line-height: 1.2;
}

.product-contact .contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	background: #09664a;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.12em;
	transition: background 0.25s ease;
}

.product-contact .contact-btn:hover {
	background: #084237;
	transform: none;
}

.product-contact .contact-btn i {
	margin-right: 10px;
	font-size: 16px;
}

.product-detail-content {
	margin-top: 48px;
}

.detail-heading {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 22px;
	font-weight: 600;
	color: #1a1f1c;
	letter-spacing: 0.08em;
	padding: 0 0 16px 16px;
	margin-bottom: 28px;
	border-bottom: 1px solid #e6ebe8;
	border-left: 3px solid #09664a;
}

.detail-tabs {
	display: flex;
	border-bottom: 1px solid #e6ebe8;
	margin-bottom: 28px;
}

.tab-item {
	padding: 16px 28px;
	font-size: 15px;
	color: #9aa39e;
	cursor: pointer;
	letter-spacing: 0.08em;
}

.tab-item.active {
	color: #09664a;
	font-weight: 600;
	position: relative;
}

.tab-item.active::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background: #09664a;
}

.detail-content {
	padding: 0;
	font-size: 16px;
	line-height: 2;
	color: #2f3833;
	letter-spacing: 0.02em;
}

.detail-content img {
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: 24px auto;
	display: block;
}

.detail-content p {
	margin-bottom: 1.2em;
}

.related-products {
	display: grid;
	gap: 15px;
}

.related-item {
	transition: opacity 0.25s ease;
}

.related-item:hover {
	opacity: 0.85;
	transform: none;
}

.related-item .item-image {
	overflow: hidden;
	margin-bottom: 10px;
	border: 1px solid #e6ebe8;
}

.related-item .item-image img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.related-item:hover .item-image img {
	transform: scale(1.05);
}

.related-item .item-title {
	font-size: 14px;
	color: #2a322e;
	line-height: 1.4;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.related-item:hover .item-title {
	color: #09664a;
}

/* ============================================
   22. 关于我们/企业简介页面
   ============================================ */
.about-container {
	padding: 60px 0 100px;
	max-width: 1200px;
	margin: 0 auto;
}

.page-header {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.page-title {
	font-size: 36px;
	color: #333;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	padding-bottom: 20px;
}

.page-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 3px;
	background: #09664a;
}

.about-content {
	background: #fff;
	border-radius: 0;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	line-height: 1.8;
	color: #333;
	font-size: 16px;
}

.about-content img {
	max-width: 100%;
	height: auto;
	border-radius: 0;
	margin: 20px 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-content p {
	margin-bottom: 20px;
	text-align: justify;
}

.about-content h2 {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	margin: 30px 0 20px;
	padding-left: 15px;
	border-left: 4px solid #09664a;
}

.about-content h3 {
	font-size: 20px;
	color: #444;
	font-weight: 600;
	margin: 25px 0 15px;
}

.about-content ul,
.about-content ol {
	margin: 20px 0;
	padding-left: 20px;
}

.about-content li {
	margin-bottom: 10px;
	line-height: 1.6;
	color: #555;
}

.about-content blockquote {
	margin: 20px 0;
	padding: 20px;
	background: #f8f9fa;
	border-left: 4px solid #09664a;
	border-radius: 0;
	color: #666;
	font-style: italic;
}

.about-content table {
	width: 100%;
	margin: 20px 0;
	border-collapse: collapse;
}

.about-content table th,
.about-content table td {
	padding: 12px;
	border: 1px solid #eee;
	text-align: left;
}

.about-content table th {
	background: #f8f9fa;
	font-weight: 600;
	color: #333;
}

.about-content a {
	color: #09664a;
	text-decoration: none;
	transition: all 0.3s ease;
}

.about-content a:hover {
	color: #084237;
	text-decoration: underline;
}

/* 企业简介 / 单页模板（大气阅读风格） */
.company-container,
.page-single-container {
	padding: 20px 0 100px;
}

.page-single-main {
	max-width: 880px;
	margin: 36px auto 0;
}

.page-single-header {
	text-align: center;
	margin-bottom: 48px;
}

.page-single-kicker {
	display: inline-block;
	font-size: 13px;
	color: #09664a;
	letter-spacing: 0.2em;
	margin-bottom: 18px;
	font-weight: 500;
}

.page-single-title {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 40px;
	font-weight: 700;
	color: #1a1f1c;
	line-height: 1.35;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
}

.page-single-summary {
	font-size: 16px;
	color: #66706a;
	line-height: 1.85;
	max-width: 640px;
	margin: 0 auto;
}

.page-single-summary:empty {
	display: none;
}

.page-single-line {
	width: 48px;
	height: 2px;
	background: #09664a;
	margin: 32px auto 0;
}

.page-single-cover {
	margin-bottom: 40px;
	border: 1px solid #e6ebe8;
	overflow: hidden;
	background: #f7f9f8;
}

.page-single-cover img {
	display: block;
	width: 100%;
	height: auto;
}

.page-single-body,
.company-content {
	font-size: 17px;
	line-height: 2;
	color: #2f3833;
	letter-spacing: 0.02em;
}

.page-single-body img,
.company-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 28px auto;
}

.page-single-body p,
.company-content p {
	margin-bottom: 1.4em;
}

.page-single-body h2,
.page-single-body h3,
.company-content h2,
.company-content h3 {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	color: #1a1f1c;
	margin: 1.8em 0 0.7em;
	line-height: 1.4;
}

.page-single-body h2,
.company-content h2 {
	font-size: 24px;
	padding-left: 14px;
	border-left: 3px solid #09664a;
}

.page-single-body h3,
.company-content h3 {
	font-size: 20px;
}

.page-single-body ul,
.page-single-body ol,
.company-content ul,
.company-content ol {
	margin: 1.2em 0;
	padding-left: 1.4em;
}

.page-single-body li,
.company-content li {
	margin-bottom: 0.6em;
}

.page-single-body blockquote,
.company-content blockquote {
	margin: 1.6em 0;
	padding: 20px 24px;
	background: #f7f9f8;
	border-left: 3px solid #09664a;
	color: #555e59;
}

.page-single-body table,
.company-content table {
	width: 100%;
	margin: 1.6em 0;
	border-collapse: collapse;
}

.page-single-body th,
.page-single-body td,
.company-content th,
.company-content td {
	padding: 12px 14px;
	border: 1px solid #e6ebe8;
	text-align: left;
}

.page-single-body th,
.company-content th {
	background: #f7f9f8;
	font-weight: 600;
}

.page-single-body a,
.company-content a {
	color: #09664a;
}

.page-single-subnav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 64px;
	padding-top: 36px;
	border-top: 1px solid #e6ebe8;
}

.page-single-subnav:empty {
	display: none;
}

.page-single-subnav a {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	font-size: 14px;
	color: #555e59;
	background: #f7f9f8;
	border: 1px solid #e6ebe8;
	letter-spacing: 0.06em;
	transition: all 0.25s ease;
}

.page-single-subnav a:hover,
.page-single-subnav a.is-active {
	color: #fff;
	background: #09664a;
	border-color: #09664a;
}

.company-section,
.brand-section {
	margin-bottom: 80px;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
	font-size: 32px;
	color: #1a1f1c;
	font-weight: 600;
	margin-bottom: 10px;
	letter-spacing: 0.04em;
}

.section-subtitle {
	font-size: 14px;
	color: #9aa39e;
	text-transform: uppercase;
	letter-spacing: 0.18em;
}

/* 品牌展示 */
.brand-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.brand-item {
	background: #fff;
	border-radius: 0;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.brand-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.brand-item img {
	width: 100%;
	height: auto;
	transition: all 0.3s ease;
}

.brand-item:hover img {
	transform: scale(1.05);
}

/* ============================================
   23. 企业优势页面
   ============================================ */
.advantage-container {
	padding: 80px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.advantage-container .title-line {
	width: 40px;
	height: 3px;
	background: #09664a;
	margin: 0 auto;
	position: relative;
}

.advantage-container .title-line::before,
.advantage-container .title-line::after {
	content: '';
	position: absolute;
	top: 0;
	width: 20px;
	height: 3px;
	background: rgba(9, 102, 74, 0.3);
}

.advantage-container .title-line::before {
	left: -30px;
}

.advantage-container .title-line::after {
	right: -30px;
}

/* 核心优势 */
.core-advantages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin: 60px 0 80px;
	padding: 0 20px;
}

.core-item {
	position: relative;
	background: #fff;
	border-radius: 0;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: all 0.4s ease;
	overflow: hidden;
}

.core-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(9, 102, 74, 0.05), rgba(9, 102, 74, 0.02));
	z-index: 0;
}

.core-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(9, 102, 74, 0.1);
}

.core-icon {
	position: relative;
	width: 90px;
	height: 90px;
	margin: 0 auto 25px;
	background: rgba(9, 102, 74, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

.core-item:hover .core-icon {
	background: #09664a;
	transform: scale(1.1);
}

.core-icon .fa {
	font-size: 36px;
	color: #09664a;
	transition: all 0.4s ease;
}

.core-item:hover .core-icon .fa {
	color: #fff;
}

.core-content {
	position: relative;
}

.core-content h3 {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 15px;
}

.core-content h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 3px;
	background: #09664a;
	transition: all 0.4s ease;
}

.core-item:hover .core-content h3::after {
	width: 50px;
}

.core-desc {
	color: #666;
	line-height: 2;
}

.core-desc p {
	margin-bottom: 8px;
	font-size: 16px;
}

/* 数据统计 */
.stats-section {
	margin: 80px 0;
	padding: 60px 0;
	background: #f8f9fa;
	border-radius: 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.stats-item {
	text-align: center;
}

.stats-number {
	font-size: 48px;
	font-weight: 700;
	color: #09664a;
	line-height: 1.2;
	margin-bottom: 10px;
}

.stats-number span {
	font-size: 24px;
	margin-left: 5px;
}

.stats-label {
	font-size: 16px;
	color: #666;
}

/* 荣誉瀑布流 */
.honor-grid {
	display: block;
	column-count: 4;
	column-gap: 24px;
	max-width: 1200px;
	margin: 0 auto 80px;
	padding: 0 20px;
}

.honor-item {
	display: inline-block;
	width: 100%;
	margin: 0 0 28px;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	text-align: center;
	vertical-align: top;
}

.honor-item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: opacity 0.3s ease, box-shadow 0.3s ease;
	background: #f7f9f8;
}

.honor-item:hover img {
	transform: none;
	opacity: 0.95;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.honor-item.is-empty {
	min-height: 180px;
	position: relative;
	background: linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.honor-item.is-empty::before {
	content: '';
	display: block;
	width: 100%;
	padding-top: 66%;
	background:
		radial-gradient(circle at 30% 30%, rgba(9, 102, 74, 0.12), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.honor-item.is-empty img {
	display: none !important;
}

.honor-item h3 {
	font-size: 16px;
	color: #7a7a7a;
	font-weight: 400;
	margin-top: 15px;
	padding: 5px;
}

/* 专利瀑布流 */
.patent-grid {
	display: block;
	column-count: 4;
	column-gap: 24px;
	max-width: 1200px;
	margin: 0 auto 80px;
	padding: 0 20px;
}

.patent-item {
	display: inline-block;
	width: 100%;
	margin: 0 0 28px;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	text-align: center;
	vertical-align: top;
}

.patent-item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: opacity 0.3s ease, box-shadow 0.3s ease;
	background: #f7f9f8;
}

.patent-item:hover img {
	transform: none;
	opacity: 0.95;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.patent-item.is-empty {
	min-height: 220px;
	position: relative;
	background: linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.patent-item.is-empty::before {
	content: '';
	display: block;
	width: 100%;
	padding-top: 136%;
	background:
		radial-gradient(circle at 30% 30%, rgba(9, 102, 74, 0.12), transparent 55%),
		linear-gradient(145deg, #e8efe9, #d5e0d7);
}

.patent-item.is-empty img {
	display: none !important;
}

.patent-item h3 {
	font-size: 16px;
	color: #333;
	font-weight: 400;
	margin-top: 15px;
}

/* ============================================
   24. 联系我们页面
   ============================================ */
.contact-container {
	padding: 80px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	padding: 0 20px;
}

.contact-card {
	background: #f8f9fa;
	border-radius: 0;
	padding: 40px;
	display: flex;
	align-items: center;
	gap: 30px;
}

.contact-card:hover {
	transform: translateY(-5px);
}

.card-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(9, 102, 74, 0.08);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
	background: #09664a;
}

.card-icon .fa {
	font-size: 32px;
	color: #09664a;
	transition: all 0.3s ease;
}

.contact-card:hover .card-icon .fa {
	color: #fff;
}

.card-content {
	flex: 1;
}

.card-content h3 {
	font-size: 22px;
	color: #333;
	font-weight: 600;
}

.info-list {
	color: #666;
	font-size: 16px;
	line-height: 1.8;
}

.info-list p {
	margin-bottom: 8px;
}

.info-list p:last-child {
	margin-bottom: 0;
}

.contact-link {
	color: #09664a;
	font-size: 30px;
	font-weight: 600;
}


.wechat-qrcode h4 {
	font-size: 15px;
	color: #333;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.wechat-qrcode h4 i {
	color: #07C160;
	font-size: 18px;
}

.wechat-qrcode .qrcode-img {
	width: 140px;
	height: 140px;
	margin: 0 auto 12px;
	padding: 10px;
	background: #fff;
}

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

.wechat-qrcode .qrcode-hint {
	text-align: center;
	font-size: 13px;
	color: #999;
	margin: 0;
}

/* ============================================
   25. 动画效果
   ============================================ */
.xwcms {
	-webkit-transition: -webkit-transform 1s ease-out;
	-moz-transition: -moz-transform 1s ease-out;
	-o-transition: -o-transform 1s ease-out;
	-ms-transition: -ms-transform 1s ease-out;
}

.xwcms:hover {
	-webkit-transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	transform: rotateZ(360deg);
}

.shake2:hover {
	animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

/* ============================================
   26. 响应式布局
   ============================================ */
@media screen and (max-width: 1200px) {
	.container {
		width: 100%;
		padding: 0 20px;
	}

	.core-advantages {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.honor-grid {
		column-count: 2;
		column-gap: 20px;
	}

	.patent-grid {
		column-count: 2;
		column-gap: 20px;
	}


	.recognition-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.product-grid,
	.product-main .product-grid {
		column-count: 3;
	}
}

@media screen and (max-width: 992px) {
	.foot-body {
		grid-template-columns: 1fr 1fr;
		gap: 36px 28px;
	}

	.foot-col-nav {
		grid-column: 1 / -1;
	}

	.foot-nav-wrap {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.foot-phone-num {
		font-size: 30px;
	}

	.news-layout,
	.product-layout {
		flex-direction: column;
		gap: 30px;
	}

	.news-sidebar,
	.product-sidebar {
		width: 100%;
	}

	.news-item {
		flex-direction: column;
		gap: 18px;
	}

	.news-date {
		display: flex;
		align-items: baseline;
		gap: 12px;
		width: auto;
		border-right: none;
		border-bottom: 1px solid #e6ebe8;
		padding: 0 0 12px;
		margin: 0;
		text-align: left;
	}

	.news-date strong {
		font-size: 32px;
	}

	.news-date span {
		margin-top: 0;
	}

	.news-image {
		width: 100%;
		height: 220px;
	}

	.article-title {
		font-size: 28px;
	}

	.article-nav {
		grid-template-columns: 1fr;
	}

	.article-nav .nav-item.next {
		text-align: left;
	}

	.product-main .product-grid,
	.product-grid {
		column-count: 2;
	}

	.product-detail-wrap {
		flex-direction: column;
	}

	.product-basic {
		flex-direction: column;
		gap: 28px;
	}

	.product-gallery {
		width: 100%;
	}

	.gallery-main.is-empty::after {
		height: 360px;
	}

	.product-detail-main .product-title {
		font-size: 26px;
	}

	.product-contact .contact-phone {
		font-size: 28px;
	}

	.article-wrap {
		flex-direction: column;
	}

	.article-sidebar {
		width: 100%;
	}

	.advantage-grid {
		gap: 30px;
	}

	.advantage-item {
		padding: 30px;
	}

	.advantage-icon {
		width: 70px;
		height: 70px;
	}

	.advantage-icon .fa {
		font-size: 28px;
	}

	.contact-grid {
		gap: 30px;
	}

	.contact-card {
		padding: 30px;
	}

	.card-icon {
		width: 70px;
		height: 70px;
	}

	.card-icon .fa {
		font-size: 28px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.stats-number {
		font-size: 40px;
	}
}

@media screen and (max-width: 768px) {
	.header,
	.header-container {
		height: 80px;
	}

	.nav {
		margin-top: 0;
		padding-left: 140px;
		flex-wrap: nowrap;
	}

	.nav li {
		margin-left: 10px;
	}

	.nav li a {
		font-size: 13px;
	}

	.logo {
		width: 150px;
		height: 80px;
		background-size: contain;
	}

	.banner {
		margin-top: 80px;
	}

	.banner .slide-caption h2 {
		font-size: 28px;
		letter-spacing: 1px;
	}

	.banner .slide-caption p {
		font-size: 15px;
	}

	.page-banner {
		margin-top: 80px;
		height: 250px;
	}

	.title h3 {
		font-size: 28px;
	}

	.title p {
		font-size: 18px;
	}

	.news-layout {
		margin-top: 12px;
	}

	.news-item {
		padding: 24px 0;
	}

	.news-title {
		font-size: 18px;
	}

	.article-title {
		font-size: 24px;
	}

	.page-banner--compact {
		height: 220px;
	}

	.sidebar-box {
		padding: 20px;
	}

	.about-container {
		padding: 40px 20px;
	}

	.page-title {
		font-size: 28px;
	}

	.about-content {
		padding: 30px 20px;
	}

	.about-content h2 {
		font-size: 22px;
	}

	.about-content h3 {
		font-size: 18px;
	}

	.company-container,
	.page-single-container {
		padding: 20px 0 60px;
	}

	.page-single-title {
		font-size: 28px;
	}

	.page-single-main {
		margin-top: 20px;
	}

	.section-title {
		font-size: 28px;
	}

	.brand-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.advantage-container {
		padding: 40px 0;
	}

	.section-title {
		font-size: 28px;
	}

	.advantage-grid {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-bottom: 40px;
	}

	.advantage-item {
		padding: 25px;
	}

	.advantage-icon {
		width: 60px;
		height: 60px;
	}

	.advantage-icon .fa {
		font-size: 24px;
	}

	.advantage-content h3 {
		font-size: 20px;
	}

	.advantage-content p {
		font-size: 15px;
	}

	.contact-container {
		padding: 40px 0;
	}

	.company-name h1 {
		font-size: 28px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.contact-card {
		padding: 25px;
	}

	.card-icon {
		width: 60px;
		height: 60px;
	}

	.card-icon .fa {
		font-size: 24px;
	}

	.card-content h3 {
		font-size: 20px;
	}

	.info-list {
		font-size: 15px;
	}

	.stats-section {
		margin: 40px 0;
		padding: 40px 0;
	}

	.timeline-item {
		padding-left: 30px;
	}

	.timeline-year {
		position: relative;
		left: 0;
		margin-bottom: 10px;
	}

	.core-advantages {
		grid-template-columns: 1fr;
		margin: 40px 0 60px;
	}

	.core-item {
		padding: 30px 25px;
	}

	.core-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}

	.core-icon .fa {
		font-size: 32px;
	}

	.core-content h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.core-desc p {
		font-size: 15px;
	}

	.product-grid,
	.product-main .product-grid {
		column-count: 2;
		column-gap: 16px;
	}

	.honor-grid,
	.patent-grid {
		column-count: 1;
		column-gap: 0;
	}

	.honor-item img,
	.patent-item img {
		height: auto;
	}

	.foot-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.foot-head-phone {
		text-align: left;
	}

	.foot-phone-num {
		font-size: 28px;
	}

	.foot-body {
		grid-template-columns: 1fr 1fr;
		gap: 36px 28px;
	}

	.foot-col-nav {
		grid-column: 1 / -1;
	}

	.foot-nav-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.product-grid,
	.product-main .product-grid {
		column-count: 1;
	}

	.brand-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.moxi-ul {
		width: 100%;
	}

	.moxi-ul li {
		float: none;
		margin: 0 auto 20px;
	}

	.tand-ul {
		width: 100%;
	}

	.tand-ul li {
		float: none;
		margin: 0 auto 20px;
	}

	.erst-ul {
		width: 100%;
	}

	.erst-ul li {
		float: none;
		margin: 0 auto 20px;
	}

	.array {
		position: relative;
		left: auto;
		top: auto;
		padding: 10px;
		background: none;
		text-align: center;
	}

	.Sales-container {
		height: auto;
	}

	.Sales-Rota,
	.Sales-thour {
		position: relative;
		left: auto;
		top: auto;
		margin: 20px auto;
	}
}

/* ============================================
   27. 旧版兼容性样式（保留用于向后兼容）
   ============================================ */
.pages {
	margin-bottom: 50px;
	margin-top: 30px;
	display: block;
	overflow: hidden;
}

/* 保留animate类用于动画 */
.animate {
	visibility: visible;
}


/* 公司简介样式 */
.oem-intro {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.intro-header {
    text-align: center;
    margin-bottom: 80px;
}

.intro-header h2 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-header p {
    font-size: 18px;
    color: #666;
    letter-spacing: 1px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-card {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    overflow: hidden;
    z-index: 1;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #B38B59 0%, #8B6B3D 100%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.intro-card:hover .card-bg {
    opacity: 1;
}

.card-icon {
    width: 100px;
    height: 100px;
    background: rgba(179, 139, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
	margin: 20px auto;
}

.card-icon i {
    font-size: 40px;
    color: #B38B59;
    transition: all 0.4s ease;
}

.intro-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.intro-card:hover .card-icon i {
    color: #fff;
}

.intro-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.intro-card p {
    color: #666;
    line-height: 1.8;
    transition: all 0.4s ease;
}

.intro-card:hover h3,
.intro-card:hover p {
    color: #fff;
}

/* 服务范围样式 */
.service-scope {
    padding: 120px 0;
    background: #fff;
}

/* 统一的标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #B38B59;
}

.section-header p {
    font-size: 18px;
    color: #B38B59;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.scope-item {
	position: relative;
	background: #fff;
	border-radius: 0;
	padding: 40px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0,0,0,0.05);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s ease;
}

.scope-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #B38B59 0%, #8B6B3D 100%);
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 0;
}

.scope-item:hover::before {
	opacity: 1;
}

.scope-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(179, 139, 89, 0.2);
}

.scope-item i {
	position: relative;
	z-index: 1;
	font-size: 46px;
	color: #B38B59;
	margin-bottom: 20px;
	display: block;
	transition: all 0.4s ease;
}

.scope-item h3 {
	position: relative;
	z-index: 1;
	font-size: 20px;
	color: #333;
	font-weight: 600;
	transition: all 0.4s ease;
}

.scope-item:hover i,
.scope-item:hover h3 {
	color: #fff;
}

/* 代加工方式样式 */
.process-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.03;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.process-header h2 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.process-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #B38B59;
}

.process-header p {
    font-size: 18px;
    color: #B38B59;
    letter-spacing: 3px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-item {
    position: relative;
    background: #fff;
    border-radius: 0;
    padding: 40px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #B38B59 0%, #8B6B3D 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.process-item:hover::before {
    opacity: 1;
}

.item-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    z-index: 1;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(179, 139, 89, 0.15);
}

.process-item:hover .item-number {
    color: rgba(255,255,255,0.1);
}

.item-content {
    position: relative;
    z-index: 1;
}

.item-icon {
    width: 80px;
    height: 80px;
    background: rgba(179, 139, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.item-icon i {
    font-size: 32px;
    color: #B38B59;
    transition: all 0.4s ease;
}

.process-item:hover .item-icon {
    background: rgba(255,255,255,0.2);
}

.process-item:hover .item-icon i {
    color: #fff;
}

.item-info {
    margin-bottom: 25px;
}

.item-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.item-desc {
    color: #666;
    transition: all 0.4s ease;
}

.item-desc p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.process-item:hover .item-info h3,
.process-item:hover .item-desc {
    color: #fff;
}

.item-line {
    width: 40px;
    height: 2px;
    background: rgba(179, 139, 89, 0.2);
    margin: 25px 0;
    transition: all 0.4s ease;
}

.process-item:hover .item-line {
    width: 60px;
    background: rgba(255,255,255,0.2);
}

.item-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #B38B59;
    font-size: 16px;
    transition: all 0.4s ease;
}

.item-detail span {
    font-weight: 500;
}

.item-detail i {
    transition: all 0.4s ease;
}

.process-item:hover .item-detail {
    color: #fff;
}

.process-item:hover .item-detail i {
    transform: translateX(10px);
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .process-section {
        padding: 60px 20px;
    }

    .process-header h2 {
        font-size: 32px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        padding: 30px;
    }

    .item-icon {
        width: 60px;
        height: 60px;
    }

    .item-icon i {
        font-size: 24px;
    }

    .item-info h3 {
        font-size: 20px;
    }

    .item-desc p {
        font-size: 14px;
    }
}

/* 合作流程样式 */
.cooperation-section {
    padding: 120px 40px;
    background: #fff;
}

.cooperation-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
}

.flow-item {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.flow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(179, 139, 89, 0.15);
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(179, 139, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.flow-icon i {
    font-size: 32px;
    color: #B38B59;
    transition: all 0.4s ease;
}

.flow-item:hover .flow-icon {
    background: #B38B59;
}

.flow-item:hover .flow-icon i {
    color: #fff;
}

.flow-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.flow-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.flow-arrow {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    color: #B38B59;
    font-size: 24px;
    z-index: 1;
}

/* 响应式调整 */
@media screen and (max-width: 1400px) {
    .cooperation-flow {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .cooperation-flow {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-arrow {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .cooperation-section {
        padding: 60px 20px;
    }

    .cooperation-flow {
        grid-template-columns: 1fr;
    }

    .flow-item {
        padding: 20px;
    }

    .flow-icon {
        width: 60px;
        height: 60px;
    }

    .flow-icon i {
        font-size: 24px;
    }

    .flow-content h3 {
        font-size: 18px;
    }

    .flow-content p {
        font-size: 13px;
    }
} 

/* 合作流程样式 */
.section-header h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}


/* 微信联系卡片样式 */
.contact-card .wechat-qrcode {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    padding: 12px;
    background: #fff;
}


.contact-card .wechat-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* 微信卡片标题 */
.contact-card:nth-child(2) .card-content h3 {
    text-align: center;
    color: #07C160;
    font-size: 18px;
    margin-bottom: 15px;
}

/* 提示文字 */
.qrcode-hint,
.email-hint {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

/* 公司简介区域 */
.company-intro {
    background: #f8f9fa;
    border-radius: 0;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
}

.intro-content h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.contact-lead {
    margin-top: 60px;
    margin-bottom: 40px;
}

.contact-lead-form {
    max-width: 720px;
    margin: 0 auto;
}

.contact-lead-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.contact-lead-form input,
.contact-lead-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 14px;
    font-size: 15px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

.contact-lead-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-lead-form button {
    margin-top: 16px;
    min-width: 160px;
    height: 44px;
    border: none;
    border-radius: 0;
    background: var(--accent, #09664a);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.contact-lead-form button:hover {
    opacity: 0.92;
}

.lead-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.lead-msg {
    margin-top: 12px;
    font-size: 14px;
    color: var(--accent, #09664a);
}

@media (max-width: 768px) {
    .contact-lead-grid {
        grid-template-columns: 1fr;
    }
}

