/* 基础样式重置与设置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Montserrat;
	color: #000000;
	background-color: #ffffff;
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1536px;
	margin: 0 auto;
	padding: 0 16px;
}

.containernew{max-width:1366px;margin: 0 auto;}

a{text-decoration: none;color: inherit;}

ul,li{list-style: none;}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

.cont{line-height:28px;font-size:16px;}
.cont img{max-width:100%;}
.cont2{line-height:24px;font-size:16px; padding:10px 0;}

/* 颜色变量 */
:root {
	--white: #ffffff;
	--green: #DEAB70;
	--beige: #f3f4f6;
	--black: #000000;
	--gray-light: #f3f4f6;
	--gray-medium: #e5e7eb;
	--gray-dark: #6b7280;
}

/* 工具类 */
.twline{display: -webkit-box;-webkit-line-clamp:2;-webkit-box-orient: vertical; line-height:24px; height:48px;overflow: hidden;text-overflow: ellipsis;}
.thline{display: -webkit-box;-webkit-line-clamp:3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.text-shadow {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-shine {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	z-index: 1;
}

.btn-shine::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.3) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: rotate(30deg);
	animation: shine 3s infinite;
	z-index: -1;
}

@keyframes shine {
	0% {
		transform: translateX(-100%) rotate(30deg);
	}
	100% {
		transform: translateX(100%) rotate(30deg);
	}
}

.btn-shine:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.arrow-bounce {
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-20px);
	}
	60% {
		transform: translateY(-10px);
	}
}

.stat-text {
	font-size: 24px;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.stat-text {
		font-size: 18px;
	}
}

.contact-selector {
	position: relative;
}

.contact-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 8px 0;
	margin-top: 4px;
	min-width: 100px;
	display: none;
	z-index: 100;
}

.contact-dropdown.active {
	display: block;
}

.contact-option {
	padding: 6px 16px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.contact-option:hover {
	background-color: #f3f4f6;
}

.language-selector {
	position: relative;
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 8px 0;
	margin-top: 4px;
	min-width: 100px;
	display: none;
	z-index: 100;
}

.language-dropdown.active {
	display: block;
}

.language-option {
	padding: 6px 16px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.language-option:hover {
	background-color: #f3f4f6;
}

.hover-scale {
	transition: transform 0.3s ease;
}

.hover-scale:hover {
	transform: scale(1.03);
}

.search-container {
	position: relative;
}

.search-input {
	padding-right: 36px;
	transition: all 0.3s ease;
}

.search-input:focus {
	width: 200px;
}

@media (max-width: 768px) {
	.search-input:focus {
		width: 150px;
	}
}

/* 正方形图片容器样式 */
.square-img-container {
	position: relative;
	width: 100%;
	padding-bottom: 100%; /* 1:1 比例 */
	overflow: hidden;
}

.square-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.group:hover .square-img {
	transform: scale(1.1);
}

.bg-green {
    --tw-bg-opacity: 1;
    background-color: rgb(46 125 50 / var(--tw-bg-opacity, 1));
}
/* 顶部联系信息 */
.top-contact {
	background-color: var(--green);
	color: var(--white);
	padding: 8px 16px;
}

.top-contact-content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.top-contact-item {
	display: flex;
	align-items: center;
	transition: color 0.3s;
}

.top-contact-item:hover {
	color: var(--beige);
}

.top-contact-item i {
	margin-right: 8px;
}

/* 导航栏 */
.navbar {
	background-color: #003;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 999999;
	transition: all 0.3s;
	padding: 15px 0;
}

.navbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 74px;
	margin-right: 12px;
}

.logo-text {
	font-size: 24px;
	font-weight: bold;
	color: var(--black);
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-link {
	color: #fff;
	font-weight: 500;
	transition: color 0.3s; padding:4px 0;
}

.nav-link:hover {
	color: var(--green);
}

.desktop-nav li{position:relative;}
.dropdown-menu{
	position: absolute;
	top: 100%;
	background-color: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 8px 0;
	width: 270px;
	display: none;
	z-index: 100;
}

.desktop-nav li:hover .dropdown-menu {
	display: block;
}

.dropdown-item {
	display: block;
	padding: 8px 16px;
	color: #000000;
	text-decoration: none;
	transition: background-color 0.2s;
	text-transform: none;
	letter-spacing: normal;
}

.dropdown-item:hover {
	background-color: #f3f4f6;
}

.search-input {
	padding: 8px 16px;
	border-radius: 9999px;
	border: 1px solid var(--gray-medium);
	outline: none;
	width: 160px;
	font-size: 14px;
}

.search-input:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.search-button {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray-dark);
	transition: color 0.3s;
}

.search-button:hover {
	color: var(--green);
}

.language-toggle {
	display: flex;
	align-items: center;
	color: #fff;
	transition: color 0.3s;
}

.language-toggle:hover {
	color: var(--green);
}

.language-toggle i:first-child {
	margin-right: 4px;
}

.language-toggle i:last-child {
	margin-left: 4px;
	font-size: 12px;
}

.mobile-menu-buttons {
	display: none;
	align-items: center;
	gap: 16px;
}

.mobile-button {
	color: #fff;
	font-size: 24px;
}

.mobile-search {
	display: none;
	margin-top: 16px;padding-bottom: 16px;
}
.mobile-search.active {
    display: block;
}

.mobile-search .search-container {
	width: 100%;
}

.mobile-search .search-input {
	width: 100%;

	padding: 8px 16px 8px 16px;
}

.mobile-nav {
	display: none;
	background-color: var(--beige);
	padding: 16px;
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px 0;
}

.mobile-language {
	border-top: 1px solid var(--gray-medium);
	padding-top: 12px;
	margin-top: 12px;
}

.mobile-language-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--gray-dark);
}

.language-options {
	display: flex;
	gap: 8px;
}

.language-option-mobile {
	cursor: pointer;
	transition: color 0.3s;
}

.language-option-mobile.active {
	color: var(--green);
	font-weight: 500;
}

.language-option-mobile:hover:not(.active) {
	color: var(--green);
}

.support-text {
	margin-top: 8px;
	font-size: 14px;
	color: var(--green);
	display: flex;
	align-items: center;
}

.support-text i {
	margin-right: 4px;
}


/* 首图轮播图样式 */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    position: relative;
}

.hero-image {position: absolute;top: 0;left: 0;width: 100%;height: 100%;}

/* 轮播控制按钮 */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-control {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}

/* 轮播指示器 */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-indicator.active {
    background-color: white;
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); z-index:8888
}

.hero-content {
	position: relative; padding:100px 0;
	z-index: 10;
	color: var(--white);
	max-width: 100%; z-index:9999;
}

.hero-title {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 32px;
}

.hero-stats {
	margin-bottom: 40px;
	display: flex;width:50%;
	flex-direction: column;
	gap: 16px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero-button {
	padding: 16px 32px;
	border-radius: 4px;
	font-weight: bold;
	font-size: 18px;
}

.hero-button-primary {
	background-color: var(--green);
	color: var(--white);
}

.hero-button-secondary {
	background-color: var(--white);
	color: var(--green);border:1px solid var(--green);
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--white);
	font-size: 36px;
}

/* 主营产品 */
.products {
	padding: 64px 0;
	background-color: var(--beige);
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 48px;
}

.section-title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 16px;
}

.section-divider {
	height: 2px;
	width: 80px;
	background-color: var(--green);
	margin: 0 auto 24px;
	border-radius: 1px;
}

.section-description {
	color: rgba(0, 0, 0, 0.7);
	font-size: 16px;
}

.featured-product {
	background-color: var(--white);
	border-radius: 8px;

	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 48px;
}

.product-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.product-text {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 16px;
}

.product-description {
	color: rgba(0, 0, 0, 0.7);
	margin-bottom: 24px;
}

.product-features {
	margin-bottom: 24px;
}

.product-button {
	display: inline-flex;
	align-items: center;
	background-color: var(--green);
	color: var(--white);
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: 500;
	transition: background-color 0.3s, box-shadow 0.3s;
	width: fit-content;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-button:hover {
	background-color: rgba(46, 125, 50, 0.9);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.product-image-container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.product-image {
	width: 66.666%;
	height: auto;
	object-fit: cover;
}

.product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.product-card {
	background-color: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	height: 100%;
}

.product-card-text {
	padding: 24px;display: grid;align-content: center;
}

.product-card-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 16px;
}

.product-card-description {
	color: rgba(0, 0, 0, 0.7);
	margin-bottom: 24px;
}

.product-card-button {
	display: inline-block;
	background-color: var(--green);
	color: var(--white);
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 14px;
	transition: background-color 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card-button:hover {
	background-color: rgba(46, 125, 50, 0.9);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.about {
	padding: 50px 0;
	background-color: var(--white);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 80px;
}

.about-text h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 24px;
}

.about-text p {
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 24px;
}

.about-button {
	display: inline-block;
	background-color: var(--green);
	color: var(--white);
	padding: 12px 32px;
	border-radius: 6px;
	font-weight: 500;
	transition: background-color 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-button:hover {
	background-color: rgba(46, 125, 50, 0.9);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.certifications {
	display: grid;
	/*grid-template-columns: repeat(5, 1fr);*/
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	gap: 24px;
}

.certification-item {
	background-color: var(--white);
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: box-shadow 0.3s;
}

.certification-item:hover {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.certification-icon {
	width: 128px;
	height: 128px;
	background-color: var(--beige);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}
.certification-icon span{font-size:30px; font-weight:700; color:var(--green);}

.certification-text {
	font-weight: bold;
}

/* 项目案例 */
.projects {
	padding: 50px 0;
	background-color: var(--beige);
}

.project {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 80px;
}

/*.project:nth-child(even) {
	direction: rtl;
}*/

.project:nth-child(even) > div {
	direction: ltr;
}

.project-image-container {
	display: flex;
	justify-content: flex-start;
}

.project-image {
	width: 50%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.project-text h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 16px;
}

.project-text p {
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 24px;
}

.project-button {
	display: inline-block;
	background-color: var(--green);
	color: var(--white);
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 500;
	transition: background-color 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-button:hover {
	background-color: rgba(46, 125, 50, 0.9);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.view-more-projects {
	text-align: center;
	margin-top: 64px;
}

.view-more-button {
	display: inline-block;
	background-color: var(--white);
	color: var(--green);
	border: 2px solid var(--green);
	padding: 12px 32px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 18px;
	transition: all 0.3s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.view-more-button:hover {
	background-color: var(--gray-light);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.view-more-button i {
	margin-left: 8px;
}

/* 技术优势 */
.technologies {
	padding: 0 0 80px;
	background-color: var(--white);
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.tech-item {
	background-color: var(--beige);
	padding: 32px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	display: flex;
}

.tech-item:hover {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.tech-icon {width:20%; text-align:left;}
.tech-icon img{width:90%;}

.tech-icon i {
	color: var(--green);
	font-size: 32px;
}
.tech-text{width:80%;}

.tech-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 16px;
}

.tech-description {
	color: rgba(0, 0, 0, 0.7);
}

.tech-more-button {
	text-align: center;
	margin-top: 64px;
}

.tech-button {
	display: inline-block;
	background-color: var(--green);
	color: var(--white);
	padding: 12px 32px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 18px;
	transition: all 0.3s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tech-button:hover {
	background-color: rgba(46, 125, 50, 0.9);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* 联系表单 */
.contact {
	padding: 80px 0;
	background-color:#fff;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.contact-info h2 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 24px;
}

.contact-divider {
	height: 2px;
	width: 80px;
	background-color: var(--green);
	margin-bottom: 32px;
	border-radius: 1px;
}

.contact-description {
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 32px;
}

.contact-details {
	margin-bottom: 40px;
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	margin-bottom: 24px;
}

.contact-icon {
	width: 48px;
	height: 48px;
	background-color: rgba(46, 125, 50, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	flex-shrink: 0;
}

.contact-icon i {
	color: var(--green);
	font-size: 24px;
}

.contact-detail-text h3 {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 4px;
}

.contact-detail-text p {
	color: rgba(0, 0, 0, 0.7);
}

.social-links {
	margin-top: 40px;
}

.social-links h3 {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 16px;
}

.social-icons {
	display: flex;
	gap: 16px;
}

.social-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(46, 125, 50, 0.6);
	color: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
}

.social-icon:hover {
	background-color: rgba(46, 125, 50, 0.9);
}

.contact-form {
	background-color: var(--white);
	padding: 32px;
	border-radius: 8px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 24px;
}

.form-label {
	display: block;
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 8px;
	font-weight: 500;
}

.form-required {
	color: #dc2626;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	border-radius: 6px;
	border: 1px solid var(--gray-medium);
	font-family: inherit;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.form-submit {
	background-color: var(--green);
	color: var(--white);
	padding: 12px 32px;
	border-radius: 6px;
	font-weight: 500;
	transition: background-color 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-submit:hover {
	background-color: rgba(46, 125, 50, 0.9);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* 页脚 */
.footer {
	background-color: var(--black);
	color: var(--white);
	padding: 80px 0 40px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 64px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}

.footer-logo img {
	height: 48px;
	margin-right: 12px;
}

.footer-logo-text {
	font-size: 24px;
	font-weight: bold;
	color: var(--white);
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 24px;
}

.footer-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--green);
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-link {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.3s;
}

.footer-link:hover {
	color: var(--green);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
	color: var(--green);
	margin-right: 12px;
	margin-top: 4px;
}

.footer-social {
	display: flex;
	gap: 16px;

	margin-top: 24px;
}

.footer-social-icon {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.footer-social-icon:hover {
	background-color: var(--green);
	border-color: var(--green);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-link {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	transition: color 0.3s;
}

.footer-bottom-link:hover {
	color: var(--green);
}

/* Grid */
.grid {
	display: grid;
	gap: 1.5rem;
}

.grid-cols-1 {grid-template-columns: repeat(4, minmax(0, 1fr));}
.grid-cols-2 {grid-template-columns: repeat(2, minmax(0, 1fr));}

/* 响应式设计 */
@media (max-width: 1024px) {
	.certifications {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.tech-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-content {
		grid-template-columns: 2fr 1fr 1fr;
	}
	.grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
	.grid-cols-2 {grid-template-columns: repeat(1, minmax(0, 1fr));}
}

@media (max-width: 768px) {
	.top-contact-content {
		justify-content: center;
		gap: 16px;
	}
	
	.desktop-nav {
		display: none;
	}
	
	.mobile-menu-buttons {
		display: flex;
	}
	
	.hero-title {
		font-size: 36px;
	}
	.grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
	.grid-cols-2 {grid-template-columns: repeat(1, minmax(0, 1fr));}
	
	.product-content,
	.product-grid,
	.product-card-content,
	.about-content,
	.certifications,
	.project,
	.tech-grid,
	.contact-content,
	.footer-content {
		grid-template-columns: 1fr;
	}
	
	.product-image {
		width: 100%;
	}
	
	.product-image-container {
		justify-content: center;
		padding: 24px;
	}
	
	.project-image {
		width: 100%;
	}
	
	.project-image-container {
		justify-content: center;
		margin-bottom: 24px;
	}
	
	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
	
	.footer-bottom-links {
		flex-wrap: wrap;
		justify-content: center;
	}
	.navbar{padding:0;}
	.navbar-content{padding-top:5px;}
	.herobox{display:block !important;}
	.image-slider{margin-top:20px;}
	.top-contact-content{display:none;}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}
	
	.hero-button {
		width: 100%;
		text-align: center;
	}
	
	.section-title {
		font-size: 24px;
	}
	
	.product-text,
	.product-card-text {
		padding: 24px;
	}
	
	.certifications {
		grid-template-columns: 1fr 1fr;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
}

.p-5 {padding: 1.25rem;}
.p-6 {padding: 1.5rem;}
.p-8 {padding: 2rem;}
.text-green{--tw-text-opacity: 1;color: rgb(46 125 50 / var(--tw-text-opacity, 1));}

.text-1xl{font-size:14px !important; line-height:24px;}
.text-2xl{font-size:16px !important; line-height:24px;}
.text-3xl{font-size: 30px !important; line-height: 2.25rem;}

.beige {
	color: #f3f4f6;
}

.bg-beige {
	background-color: #f3f4f6;
}

.black {
	color: #000000;
}

.bg-black {
	background-color: #000000;
}

.text-black-70 {
	color: rgba(0, 0, 0, 0.7);
}

.text-black-80 {
	color: rgba(0, 0, 0, 0.8);
}

.text-white-70 {
	color: rgba(255, 255, 255, 0.7);
}

.text-white-60 {
	color: rgba(255, 255, 255, 0.6);
}

.required-mark {
	color: #dc2626;
}

.hei{height:500px;}
/* Spacing */
.py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.py-24 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-3 {
	margin-bottom: 0.75rem;
}

.mb-4 {
	margin-bottom: 1rem; line-height: 22px;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mb-12 {
	margin-bottom: 3rem;
}

.mb-16 {
	margin-bottom: 4rem;
}

.mt-3 {
	margin-top: 0.75rem;
}

.mt-4 {
	margin-top: 1rem;
}
.mt-12 {
	margin-top: 3rem;
}

/* Layout */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.justify-between {
	justify-content: space-between;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.relative {
	position: relative;
}

.overflow-hidden {
	overflow: hidden;
}

.block {
	display: block;
}

.hidden {
	display: none;
}

.w-full {
	width: 100%;
}

.max-w-3xl {
	max-width: 48rem;
}

.max-w-lg {
	max-width: 32rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.my-3 {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.border-b {
	border-bottom: 1px solid;
}

.border-gray-100 {
	border-color: #f3f4f6;
}

.border-beige {
	border-color: #f3f4f6;
}

.border-gray-300 {
	border-color: #d1d5db;
}

.rounded {
	border-radius: 0.25rem;
}

.rounded-md {
	border-radius: 0.375rem;
}

.rounded-lg {
	border-radius: 0.5rem;
}

.shadow-md {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-sm {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.sticky {
	position: sticky;
}

.top-0 {
	top: 0;
}

.z-50 {
	z-index: 50;
}

/* Forms */
input, select, textarea {
	width: 100%;
	padding: 0.5rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	font-family: inherit;
	font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: #E1B787;
	box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

textarea {
	resize: none;
}

/* Custom Utilities */
.content-auto {
	content-visibility: auto;
}

.text-shadow {
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
	position: relative;
	font-weight: 500;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: #E1B787;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.section-fade {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-visible {
	opacity: 1;
	transform: translateY(0);
}

.table-hover tr:hover {
	background-color: rgba(46, 125, 50, 0.05);
}

/* Image Container */
.img-container {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1rem;
}

.scaled-img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.hover-lift:hover .scaled-img {
	transform: scale(1.05);
}

/* Buttons */
.btn {
	display: inline-block;
	font-weight: bold;
	padding: 0.75rem 2rem;
	border-radius: 0.375rem;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-green {
	background-color: #E1B787;
	color: #ffffff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-green:hover {
	background-color: rgba(46, 125, 50, 0.9);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-green-outline {
	background-color: rgba(46, 125, 50, 0.1);
	color: #E1B787;
	font-weight: 500;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.btn-green-outline:hover {
	background-color: rgba(46, 125, 50, 0.2);
}

@media (min-width: 640px) {
	.sm:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.lg:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lg:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.md:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.md:flex-row {
		flex-direction: row;
	}

	.md:mb-0 {
		margin-bottom: 0;
	}

	.md:hidden {
		display: none;
	}

	.md:block {
		display: block;
	}

	.md:space-x-8 > * + * {
		margin-left: 2rem;
	}
}

/* Header */
header {
	background-color: #ffffff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

/* 移动端菜单样式调整 */
#mobile-menu {
    display: none;margin-top: 1rem;padding-bottom: 0.5rem;
}

#mobile-menu.active {
    display: block; background:#003;
}

.space-y-4 > * + * {
	margin-top: 1rem;
}

.space-x-4 > * + * {
	margin-left: 1rem;
}

.space-x-8 > * + * {
	margin-left: 2rem;
}

.space-y-6 > * + * {
	margin-top: 1.5rem;
}

/* FAQ */
.faq-toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	font-weight: 500;
}

.faq-content {
	margin-top: 1rem;
	color: rgba(0, 0, 0, 0.7);
}

/* Product Cards */
.product-card {
	background-color: #ffffff;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.product-image-container {
	/*height: 15rem;*/
	position: relative;
}

.product-info {
	padding: 1rem;
}

/* Project Cases */
.case-image-container {
	height: 12rem;
	position: relative;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
	.md:hidden {
		display: block;
	}

	.md:block {
		display: none;
	}
}

@media (min-width: 768px) {
	.md:flex {
		display: flex;
	}
}

/* Transitions */
.transition-colors {
	transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.transition-transform {
	transition: transform 0.3s ease;
}

.rotate-45 {
	transform: rotate(45deg);
}

.arealist{display:flex;display: grid;gap: 1.5rem;grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom:30px;}

.page_num{width:100%;text-align:center;display: flex; justify-content: center;}
.page_num a{background:#ececec;padding:2px 15px;text-transform:capitalize;font-size:14px;line-height:36px;transition:all .5s;color:#555;border-radius:5px; margin-left:5px; margin-right:5px;}
.page_num a:hover{background:#E1B787;text-decoration:none;color:#fff;border-color:#234B82}
.page_num a i{line-height:36px}.page_num p{display:block;font-size:12px;margin-top:10px;font-family:'poppins-regular';width:100%}
.page_num p:before{content:'[';padding-right:3px}.page_num p:after{content:']';padding-left:3px}
.page_num p strong{display:inline-block;margin:0 5px;font-weight:normal;color:#234B82}
@media only screen and (max-width:768px){
.page_num{text-align:center;margin-top:10px}
.page_num span,.page_num a{font-size:12px;padding:0 12px;line-height:28px}
.page_num a i{line-height:28px}
.page_num p{width:100%;margin-top:15px}
}

.show {display: block!important;}
.scrollsidebar, .scrollsidebar a {font-size:12px;color:#999;}
.scrollsidebar {position:absolute;z-index:30;top:150px;right:0;}
.show_btn {width:38px;height:192px;overflow:hidden;cursor:pointer;display:block;overflow:hidden;background:url(../images/show_btn.png) no-repeat center center;position: absolute;right: 0;top: 0;}
.side_content {width:0;height:auto;overflow:hidden;float:left;}
.side_content .side_list {width:140px;overflow:hidden;border:1px solid #dadada;border-radius:8px;position:relative;background:#FFF;}
.side_content .side_list .hd img {width:100%;border-bottom:1px solid #dadada;}
.side_content .side_list .cont li {height:40px;line-height:40px;border-bottom:1px solid #dadada;list-style:none;position:relative;}
.side_content .side_list .cont li a {position:relative;display:block;padding:0 0 0 43px;text-decoration:none;}
.side_content .side_list .cont li a:before {content:"";position:absolute;display:block;overflow:hidden;top:0;left:10px;width:25px;height:40px;background-repeat:no-repeat;background-position:center center;}
.side_content .side_list .cont li .email:before {background-image:url(../images/icons01.png);}
.side_content .side_list .cont li .skype:before {background-image:url(../images/icons02.png);}
.side_content .side_list .cont li .inquiry:before {background-image:url(../images/icons03.png);}
.side_content .side_list .cont li .qq:before {background-image:url(../images/icons04.png);}
.ww {margin-left:-30px;}
.side_content .side_list .t-code {padding:10px 10px 7px;border-bottom:1px solid #dadada;}
.side_content .side_list .t-code img {width:100%;}
.side_content .side_list .side_title {height:30px;line-height:30px;padding:0 12px;}
.side_content .side_list .side_title .close_btn {background:url(../images/close.png) no-repeat center center;width:12px;height:30px;position:absolute;bottom:0;right:10px;cursor:pointer;}
.side_content .side_list .side_title .close_btn span {display:none;} 

@media only screen and (max-width:992px){
    .fixed-contact-wrap{display:none!important}
    .fixed-contact-wrap.show{opacity:0}
    .hero-stats{display: none;}
    .mhide{display: none;}
	.arealist{grid-template-columns: repeat(2, minmax(0, 1fr));}
}

/* 返回顶部按钮样式 */
.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 50px;
	height: 50px;
	background-color: var(--green);
	border-radius: 50%; /* 圆形按钮 */
	cursor: pointer; /* 鼠标悬浮显示手型，提示可点击 */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* 阴影增加立体感 */
	transition: background-color 0.3s ease; /* 背景色过渡动画 */
}

.back-to-top::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -30%) rotate(45deg); /* 居中并旋转形成箭头 */
	width: 16px;
	height: 16px;
	border-top: 3px solid #ffffff;
	border-left: 3px solid #ffffff;
}

.back-to-top:hover {
	background-color: #1a68d1;
}

.back-to-top.hidden {
	display: none;
}

