

.lang-btn {
	background: none;
	border: none;
	font-weight: 600;
	font-size: 13px;
	color: var(--medium-gray);
	cursor: pointer;
	padding: 6px 12px;
	border-radius: 30px;
	transition: var(--transition);
}

.lang-btn.active {
	background: var(--primary-blue);
	color: white;
}

.lang-btn:hover:not(.active) {
	background: rgba(16, 64, 102, 0.06);
	color: var(--primary-blue);
}

/* ===================== Benoray 页面内容样式 ===================== */
/* 英雄区 */
.page-hero {
	padding: 160px 0 90px;
	background: linear-gradient(120deg, #f1f5f9 0%, #ffffff 80%);
	position: relative;
	margin-top: 0;
}

.hero-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%;
	background: url('../public/img/Change_image/1920-1080pX.jpg') center/cover no-repeat;
	opacity: 0.2;
	pointer-events: none;
}

.hero-content {
	max-width: 650px;
	position: relative;
	z-index: 2;
}

.hero-content h1 {
	font-size: 44px;
	margin-bottom: 20px;
	color: var(--primary-blue);
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 30px;
	color: var(--primary-gray);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 40px;
}

.stat-card {
	background: var(--white);
	border-radius: 12px;
	padding: 20px 10px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.stat-number {
	font-size: 34px;
	font-weight: 800;
	color: var(--primary-blue);
	line-height: 1;
}

.stat-label {
	font-size: 13px;
	color: var(--medium-gray);
	font-weight: 600;
}

/* 通用区块 */
section {
	padding: 90px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 36px;
	margin-bottom: 12px;
}

.section-title p {
	max-width: 700px;
	margin: 0 auto;
	color: var(--medium-gray);
	font-size: 18px;
}

/* 介绍区块 */
.intro-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.intro-image {
	border-radius: 16px;
	overflow: hidden;
	height: 360px;
	box-shadow: var(--shadow);
}

.intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.intro-image:hover img {
	transform: scale(1.03);
}

/* 产品区块 */
.products-section {
	background: var(--off-white);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.product-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}

.product-image {
	height: 220px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.product-card:hover .product-image img {
	transform: scale(1.08);
}

.product-content {
	padding: 28px 20px;
}

/* 市场区块 */
.markets-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.market-card {
	background: var(--white);
	border-radius: 16px;
	padding: 36px 30px;
	box-shadow: var(--shadow);
	border-left: 5px solid var(--primary-blue);
	transition: var(--transition);
}

.market-card:hover {
	transform: translateY(-5px);
	background: white;
	box-shadow: var(--shadow-hover);
}

.market-icon {
	width: 55px;
	height: 55px;
	background: rgba(16, 64, 102, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 24px;
	color: var(--primary-blue);
}

/* 联系区块 */
.contact-section{
	background: linear-gradient(120deg, #f1f5f9 0%, #ffffff 80%);
}
.contact-info-only {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.contact-details {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin: 45px 0 30px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 180px;
}

.contact-icon {
	width: 64px;
	height: 64px;
	background: rgba(16, 64, 102, 0.06);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--primary-blue);
	margin-bottom: 15px;
}

.contact-text h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.contact-text p {
	color: var(--medium-gray);
	margin: 0;
}

/* 社交链接 */
.social-link {
	color: var(--primary-blue);
	background: rgba(16, 64, 102, 0.06);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

/* CTA 区块 */
.cta-section {
	
	text-align: center;
}

.cta-section h2 {
	font-size: 38px;
	/* color: white; */
}

.cta-section p {
	font-size: 18px;
	max-width: 650px;
	margin: 0 auto 36px;
	opacity: 0.9;
}

.cta-section .btn {
	color: var(--white);
	background-color: var(--primary-blue);
}

.cta-section .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* 语言内容切换 */
.language-content {
	display: none;
	animation: fade 0.2s;
}

.language-content.active {
	display: block;
}

@keyframes fade {
	from {
		opacity: 0.3;
	}

	to {
		opacity: 1;
	}
}









/* ===================== 响应式样式 - 统一 ===================== */
@media (max-width: 1200px) {


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

@media (max-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.intro-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 800px) {

	.hero-stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {


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

	.contact-details {
		flex-direction: column;
		gap: 30px;
	}

	.hero-content h1 {
		font-size: 36px;
	}

	section {
		padding: 60px 0;
	}

	.page-hero {
		padding: 120px 0 60px;
	}
}

@media (max-width: 576px) {

	.hero-content h1 {
		font-size: 28px;
	}

	.cta-section h2 {
		font-size: 28px;
	}

	.btn {
		padding: 12px 24px;
	}
}

/* 表单样式（隐藏） */
form,
input,
textarea {
	display: none;
}