@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

:root {
	--primary-color: #2563eb;
	--primary-dark: #1d4ed8;
	--accent-color: #f59e0b;
	--text-dark: #1f2937;
	--text-light: #6b7280;
	--bg-light: #f9fafb;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--navbar-height: 80px;
	/* 顶部导航栏高度 */
	--transition-standard: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: 'Noto Sans SC', sans-serif;
	color: var(--text-dark);
	overflow-x: hidden;
	background-color: var(--bg-light);
}

/* 导航栏样式优化 - 全新设计 */
.navbar {
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: var(--transition-standard);
	position: sticky;
	top: 0;
	z-index: 50;
}

/* 修复下拉菜单的核心CSS */
.nav-links .dropdown {
	position: relative;
	display: inline-block;
}

.nav-links .dropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
	pointer-events: none;
}

.nav-links .dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* 确保下拉菜单触发器样式正确 */
.nav-links .dropdown .nav-item {
	cursor: pointer;
	margin: 0;
}

/* 修复下拉菜单项样式 */
.nav-links .dropdown-content .dropdown-item {
	display: block;
	padding: 0.9rem 1.5rem;
	color: var(--text-dark);
	text-decoration: none;
	transition: var(--transition-standard);
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links .dropdown-content .dropdown-item:last-child {
	border-bottom: none;
}

.nav-links .dropdown-content .dropdown-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 4px;
	background-color: var(--primary-color);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: center;
}

.nav-links .dropdown-content .dropdown-item:hover {
	background-color: rgba(37, 99, 235, 0.05);
	color: var(--primary-color);
	padding-left: 1.8rem;
}

.nav-links .dropdown-content .dropdown-item:hover::before {
	transform: scaleY(1);
}

/* 确保下拉菜单在导航栏上方 */
.navbar {
	z-index: 1001;
}

.nav-links .dropdown-content {
	z-index: 1002;
}

.navbar.scrolled {
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.95);
}

/* 导航容器 */
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 4rem;
}

/* 品牌标识 */
.brand-logo {
	display: flex;
	align-items: center;
	transition: transform 0.3s ease;
	height: 50px;
	/* 固定高度，确保图片不会过大 */
}

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

.brand-logo img {
	height: 100%;
	width: auto;
	max-width: 180px;
	/* 限制最大宽度 */
	object-fit: contain;
}

.brand-logo i {
	margin-right: 0.5rem;
	font-size: 1.8rem;
}

/* 导航链接容器 */
.nav-links {
	display: flex;
	gap: 0.5rem;
}

/* 导航项样式 */
.nav-item {
	position: relative;
	padding: 0.8rem 1.2rem;
	margin: 0 0.3rem;
	font-weight: 500;
	color: var(--text-dark);
	text-decoration: none;
	transition: var(--transition-standard);
	border-radius: 8px;
	overflow: hidden;
}

.nav-item:hover {
	color: var(--primary-color);
	background-color: rgba(37, 99, 235, 0.05);
}

/* 导航项下划线动画 */
.nav-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--primary-color);
	transition: var(--transition-standard);
	border-radius: 3px;
}

.nav-item:hover::after {
	width: 100%;
}

/* 下拉菜单容器 */
.dropdown {
	position: relative;
}

/* 下拉菜单触发器 */
.dropdown-toggle {
	display: flex;
	align-items: center;
	cursor: pointer;
}

/* 下拉菜单样式 */
.dropdown-content {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 100;
	overflow: hidden;
}

.dropdown:hover .dropdown-content {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
	pointer-events: auto !important;
}

/* 下拉菜单项 */
.dropdown-item {
	display: block;
	padding: 0.9rem 1.5rem;
	color: var(--text-dark);
	text-decoration: none;
	transition: var(--transition-standard);
	position: relative;
	overflow: hidden;
}

/* 下拉菜单项左侧指示条动画 */
.dropdown-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 4px;
	background-color: var(--primary-color);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: center;
}

.dropdown-item:hover {
	background-color: rgba(37, 99, 235, 0.05);
	color: var(--primary-color);
	padding-left: 1.8rem;
}

.dropdown-item:hover::before {
	transform: scaleY(1);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-dark);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
	transform: rotate(90deg);
	color: var(--primary-color);
}

/* 移动端菜单 */
.mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: white;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 16px 16px;
	overflow: hidden;
	transform: translateY(-10px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 40;
}

.mobile-menu.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.mobile-menu .nav-item {
	display: block;
	padding: 1rem 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu .dropdown-content {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	background-color: rgba(37, 99, 235, 0.03);
	display: none;
}

.mobile-menu .dropdown.active .dropdown-content {
	display: block;
}

.mobile-menu .dropdown-indicator {
	float: right;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.nav-container {
		padding: 0.8rem 2rem;
	}

	.nav-links {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.mobile-menu {
		display: block;
	}
}

@media (max-width: 576px) {
	.nav-container {
		padding: 0.8rem 1rem;
	}

	.brand-logo {
		height: 40px;
		/* 移动端稍小一些 */
	}

	.brand-logo img {
		max-width: 140px;
		/* 移动端限制更小的宽度 */
	}
}

/* 新增悬浮导航模块样式 */
.sticky-nav {
	position: sticky;
	top: var(--navbar-height);
	z-index: 40;
	background-color: #ffffff;
	border-radius: 30px;
	margin: 20px auto;
	max-width: 700px;
	box-shadow: var(--shadow);
}

.sticky-nav-container {
	display: flex;
	justify-content: center;
	padding: 12px 0;
}

.sticky-nav-item {
	padding: 8px 20px;
	margin: 0 8px;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	color: var(--text-light);
	position: relative;
	overflow: hidden;
}

.sticky-nav-item.active {
	color: var(--primary-color);
	font-weight: 700;
	background-color: rgba(37, 99, 235, 0.1);
}

.sticky-nav-item:hover:not(.active) {
	color: var(--text-dark);
	background-color: rgba(0, 0, 0, 0.05);
	transform: translateY(-2px);
}

/* 轮播图样式优化 */
.carousel-container {
	position: relative;
	height: 500px;
	overflow: hidden;
	border-radius: 0 0 20px 20px;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	background-size: cover;
	background-position: center;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.carousel-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-indicator.active {
	background-color: white;
	transform: scale(1.2);
}

.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.3);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0;
}

.carousel-container:hover .carousel-control {
	opacity: 1;
}

.carousel-control:hover {
	background-color: rgba(0, 0, 0, 0.6);
	transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
	left: 20px;
}

.carousel-control.next {
	right: 20px;
}

/* 产品中心样式优化 */
.product-container {
	display: flex;
	width: 100%;
	transition: all 0.5s ease;
	height: 460px;
	/* 固定高度，确保展开前后一致 */
	overflow: hidden;
	gap: 20px;
	padding: 10px;
}

.product-card {
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
	/* 继承容器高度 */
	border-radius: 12px;
	background-color: white;
	box-shadow: var(--shadow);
}

.product-thumbnail-container {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/2;
	/* 修改为1:2竖图比例 */
}

.product-expand-mandatory {
	display: none;
	flex-direction: row;
	/* 修改为横向布局 */
	width: 100%;
	height: 100%;
	/* 与卡片高度一致 */
	overflow: hidden;
	background-color: white;
	border-radius: 12px;
}

/* 展开后图片区域 - 比例自适应 */
.product-image-container {
	width: 50%;
	/* 左侧图片占50%宽度 */
	position: relative;
	overflow: hidden;
	background: #ffffff;
	height: 100%;
	/* 高度100% */
}

.product-image-mandatory {
	width: 90%;
	height: 100%;
	object-fit: contain;
	/* 改为contain以保持原始比例 */
	transition: transform 0.5s ease;
	margin: auto;
}

.product-right-section {
	width: 50%;
	/* 右侧内容占50%宽度 */
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-info {
	flex-grow: 1;
	padding: 15px;
	background: white;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: white;
	border-top: 1px solid #f0f0f0;
}

.product-card:hover {
	flex: 3;
	min-width: 280px;
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.product-card:hover .product-thumbnail-container {
	display: none;
}

.product-card:hover .product-expand-mandatory {
	display: flex;
}

.product-card:hover .product-image-mandatory {
	transform: scale(1.05);
}

.product-card:hover~.product-card {
	flex: 0.8;
}

/* 垂直拆分产品卡片样式 */
.split-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.split-product-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #e5e7eb;
	overflow: hidden;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.split-product-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.split-product-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.split-expand-mandatory {
	display: none;
	flex-direction: row;
	width: 100%;
	height: 100%;
}

.product-card:hover .split-expand-mandatory {
	display: flex;
}

/* 响应式适配 - 修复移动端比例问题 */
@media (max-width: 768px) {
	.product-container {
		height: 350px;
		flex-direction: column;
		gap: 15px;
	}

	.product-card {
		min-height: 80px;
		height: 100%;
	}

	.product-card:hover {
		min-height: 300px;
		min-width: 100%;
		height: auto;
		/* 移动端展开后自动适应内容 */
	}

	.product-expand-mandatory {
		flex-direction: column;
		/* 移动端展开后改为纵向布局 */
	}

	.product-image-container,
	.product-right-section {
		width: 100%;
		/* 移动端图片和内容都占100%宽度 */
	}

	.product-image-container {
		height: 50%;
		/* 移动端图片高度占50% */
	}

	.product-info {
		font-size: 0.9rem;
	}

	/* 移动端悬浮导航 */
	.sticky-nav-container {
		flex-wrap: wrap;
		padding: 8px;
	}

	.sticky-nav-item {
		padding: 6px 12px;
		margin: 4px;
		font-size: 0.9rem;
	}
}

/* 通用样式优化 */
.btn-primary {
	background-color: var(--primary-color);
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.stats-card {
	transition: all 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.stats-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.stats-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.timeline-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: var(--primary-color);
	position: relative;
	z-index: 2;
}

.timeline-dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: rgba(37, 99, 235, 0.2);
	z-index: 1;
}

.timeline-line {
	width: 2px;
	background-color: #e5e7eb;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
}

.brand-story {
	background-color: #f9fafb;
	position: relative;
	overflow: hidden;
	padding-top: 0 !important;
}

.brand-story::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(37, 99, 235, 0.05), rgba(245, 158, 11, 0.05));
	z-index: 1;
}

.brand-story>* {
	position: relative;
	z-index: 2;
}

.mobile-menu {
	transform: scaleY(0);
	transform-origin: top;
	opacity: 0;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
	transform: scaleY(1);
	opacity: 1;
}

.buy-btn {
	background-color: var(--primary-color);
	color: white;
	padding: 8px 20px;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: var(--shadow);
}

.buy-btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/* 滚动动画优化 */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.slide-in-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-right {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* 悬浮效果 */
.hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

/* 加载动画 */
@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.pulse {
	animation: pulse 2s infinite;
}

/* 卡片悬停效果 */
.card-hover {
	transition: all 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
}

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

/* 页脚样式优化 */
footer {
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.footer-links a {
	position: relative;
	transition: all 0.3s ease;
}

.footer-links a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

.footer-links a:hover::after {
	width: 100%;
}

/* 品牌荣耀和证书样式优化 */
.honor-card,
.certificate-card {
	transition: all 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.honor-card::before,
.certificate-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.honor-card:hover,
.certificate-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

/* 品牌荣耀新样式 - 上下各三个卡片居中对齐 */
.brand-honor {
	padding: 40px 0;
}

.honor-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 40px;
	color: var(--text-dark);
}

.honor-platforms {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* 改为3列布局，实现上下各三个卡片 */
	gap: 20px;
	margin-bottom: 60px;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.platform-card {
	background-color: white;
	border-radius: 12px;
	box-shadow: var(--shadow);
	padding: 20px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.platform-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.platform-info {
	flex: 1;
}

.platform-name {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.platform-data {
	color: var(--text-dark);
}

.platform-logo {
	width: 60px;
	height: 60px;
	margin-left: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.platform-logo img {
	max-width: 100%;
	max-height: 100%;
}

.platform-card .cta-button {
	position: absolute;
	top: 50%;
	right: -100px;
	transform: translateY(-50%);
	background-color: var(--primary-color);
	color: white;
	padding: 8px 16px;
	border-radius: 6px;
	font-weight: 500;
	transition: right 0.3s ease;
	cursor: pointer;
}

.platform-card:hover .cta-button {
	right: 20px;
}

/* 滚动图标区域 - 放大并占满宽度，添加半透明效果 */
.scrolling-logos {
	overflow: hidden;
	background-color: white;
	padding: 30px 0;
	position: relative;
	margin: 0 -15px;
	/* 抵消container的padding，实现全屏宽度 */
}

/* 添加两端半透明渐变效果 */
.scrolling-logos::before,
.scrolling-logos::after {
	content: '';
	position: absolute;
	top: 0;
	width: 50px;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.scrolling-logos::before {
	left: 0;
	background: linear-gradient(to right, white, transparent);
}

.scrolling-logos::after {
	right: 0;
	background: linear-gradient(to left, white, transparent);
}

.logo-row {
	display: flex;
	width: max-content;
	animation: scroll-left 30s linear infinite;
}

.logo-item {
	margin: 0 30px;
	/* 增加间距 */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	/* 增大图标宽度 */
	height: 90px;
	/* 增大图标高度 */
}

.logo-item img {
	max-width: 100%;
	max-height: 100%;
	filter: grayscale(0);
	transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item img:hover {
	filter: grayscale(0);
	transform: scale(1.1);
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* 品牌发展历史新样式 - 优化排版问题 */
.section-header {
	text-align: center;
	margin-bottom: 40px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* 时间轴布局 - 优化高度和响应式 */
.timeline-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 16px;
	min-height: 400px;
	/* 减少最小高度 */
	height: auto;
	/* 允许内容自然撑开 */
	margin-bottom: 0;
	/* 移除底部margin */
}

.timeline-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.timeline-card {
	background-color: white;
	border-radius: 20px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	cursor: pointer;
	flex: 1;
	/* 使用flex比例分配高度 */
	min-height: 150px;
	/* 设置最小高度 */
	display: flex;
	flex-direction: column;
}

.timeline-card.collapsed {
	flex: 0 0 20%;
	/* 使用flex-basis控制折叠高度 */
}

.timeline-card.expanded {
	flex: 1;
	/* 展开时占满可用空间 */
	z-index: 10;
	box-shadow: var(--shadow-lg);
}

.card-content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.year-bg {
	position: absolute;
	font-size: 6rem;
	font-weight: 900;
	color: rgba(37, 99, 235, 0.09);
	transition: all 0.4s ease;
	z-index: 1;
}

.timeline-card.collapsed .year-bg {
	bottom: 4px;
	right: 12px;
}

.timeline-card.expanded .year-bg {
	top: 8px;
	right: 12px;
	font-size: 3rem;
}

.card-header {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	/* 高度100% */
	text-align: left;
}

.timeline-card.expanded .card-header {
	height: auto;
	margin-bottom: 8px;
	justify-content: flex-start;
}

.card-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--primary-color);
	line-height: 1.1;
}

.card-subtitle {
	font-size: 1.5rem;
	color: var(--text-light);
	margin: 0;
	line-height: 1.1;
}

.card-body {
	flex-grow: 1;
	position: relative;
	z-index: 2;
}

.card-description {
	font-size: 0.95rem;
	/* 增大字体提高可读性 */
	color: var(--text-dark);
	line-height: 1.5;
	/* 增加行高提高可读性 */
	margin: 0 0 8px 0;
}

.card-image {
	width: 100%;
	height: 300px;
	aspect-ratio: 16/9;
	/* 使用宽高比保持图片比例 */
	object-fit: contain;
	/* 改为contain以保持原始比例 */
	border-radius: 6px;
	margin: 8px 0;
	margin-top: 20px;
	/* background-color: #f8f9fa; */
}

.card-details {
	display: none;
}

.timeline-card.expanded .card-details {
	display: block;
}

.card-tag {
	display: inline-block;
	background-color: rgba(37, 99, 235, 0.1);
	color: var(--primary-color);
	padding: 3px 6px;
	border-radius: 10px;
	font-size: 0.7rem;
	font-weight: 500;
	margin-right: 5px;
	margin-bottom: 4px;
	margin-top: 20px;
}

/* 优化响应式布局 */
@media (max-width: 992px) {
	.timeline-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 1fr);
		min-height: 600px;
		/* 调整中等屏幕最小高度 */
	}

	.section-title {
		font-size: 2.2rem;
	}

	/* 品牌荣耀响应式调整 */
	.honor-platforms {
		grid-template-columns: repeat(2, 1fr);
		/* 平板端改为2列 */
	}
}

@media (max-width: 768px) {
	.timeline-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 1fr);
		min-height: 1000px;
		/* 调整移动端最小高度 */
	}

	.section-title {
		font-size: 2rem;
	}

	.card-title {
		font-size: 1.4rem;
	}

	.card-subtitle {
		font-size: 1rem;
	}

	.timeline-card.collapsed {
		flex: 0 0 25%;
		/* 移动端进一步减小折叠高度 */
	}

	/* 品牌荣耀响应式调整 */
	.honor-platforms {
		grid-template-columns: 1fr;
		/* 移动端改为1列 */
	}

	.platform-card {
		flex-direction: column;
		text-align: center;
	}

	.platform-logo {
		margin-left: 0;
		margin-top: 15px;
	}

	.platform-card .cta-button {
		top: auto;
		bottom: -50px;
		right: 50%;
		transform: translateX(50%);
	}

	.platform-card:hover .cta-button {
		bottom: 20px;
		right: 50%;
	}

	/* 滚动图标区域响应式 */
	.logo-item {
		width: 120px;
		height: 60px;
	}
}

/* 品牌故事轮播样式 - 重点修改部分 */
.story-header {
	background-color: white;
	padding: 40px 0;
	margin-bottom: 20px;
	box-shadow: var(--shadow);
}

.story-carousel {
	position: relative;
	margin: 0 auto;
	padding: 0 20px;
	/* 保持与上方模块一致的边距 */
}

.story-slides {
	position: relative;
	height: 600px;
	/* 增加图片区域高度 */
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 0;
	/* 移除底部margin */
	background-color: #333;
}

.story-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
	display: flex;
	align-items: center;
}

.story-slide.active {
	opacity: 1;
}

.story-image-container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.story-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 确保图片充满容器 */
	transition: transform 0.5s ease;
}

.story-slide:hover .story-image {
	transform: scale(1.03);
}

.story-content {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 350px;
	padding: 25px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.story-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.story-description {
	font-size: 1rem;
	line-height: 1.6;
}

/* 选项卡新样式 - 移入图片内部底部 */
.story-tabs {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 25px;
	flex-wrap: wrap;
	padding: 15px;
	background-color: rgba(0, 0, 0, 0.6);
	/* 半透明黑色背景 */
	z-index: 10;
}

.story-tab {
	padding: 12px 0;
	color: white;
	/* 文字改为白色 */
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	position: relative;
	font-size: 1.1rem;
	/* 增大字体 */
}

.story-tab:hover {
	color: #e0e0e0;
}

.story-tab.active {
	color: white;
}

/* 优化下划线样式和动画 */
.story-tab::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 4px;
	background-color: var(--primary-color);
	border-radius: 3px;
	transition: width 0.3s ease;
}

.story-tab:hover::after {
	width: 80%;
}

.story-tab.active::after {
	width: 120%;
	/* 超出文字宽度 */
}

@media (max-width: 768px) {
	.story-slides {
		height: 450px;
		/* 移动端适当减小高度 */
	}

	.story-content {
		width: 85%;
		max-width: 350px;
		padding: 8px;
	}

	.story-title {
		font-size: 1.5rem;
	}

	.story-description {
		font-size: 0.9rem;
	}

	.story-tabs {
		gap: 12px;
		padding: 10px 5px;
	}

	.story-tab {
		font-size: 0.9rem;
		padding: 8px 0;
	}

	.story-tab.active::after {
		width: 110%;
		/* 移动端下划线稍短 */
	}
}

/* 品牌证书新样式 - 重点修改部分 */
.certificate-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.certificate-options {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.certificate-option {
	flex: 1;
	background-color: white;
	border-radius: 12px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
	position: relative;
	min-height: 400px;
}

.certificate-option:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.cert-option-inner {
	display: flex;
	height: 100%;
	transition: transform 0.6s ease;
}

.cert-option-inner.normal {
	transform: translateX(0);
}

.cert-option-inner.flipped {
	transform: translateX(-50%);
}

.cert-front,
.cert-back {
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	backface-visibility: hidden;
}

.cert-front {
	flex-direction: row;
}

.cert-text {
	flex: 1;
	padding-right: 20px;
	margin-top: 2rem;
}

.cert-image {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cert-image img {
	max-width: 100%;
	max-height: 250px;
	object-fit: contain;
}

.cert-back {
	position: absolute;
	top: 0;
	left: 100%;
	width: 52%;
	height: 100%;
	background-color: white;
	overflow-y: auto;
}

.cert-header {
	padding: 15px 20px;
	background-color: var(--primary-color);
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
	text-align: center;
}

.cert-content h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.cert-content p {
	color: var(--text-dark);
	line-height: 1.6;
	margin-bottom: 15px;
}

.cert-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 20px;
}

.cert-item {
	text-align: center;
	padding: 15px;
	border-radius: 8px;
	background-color: rgba(37, 99, 235, 0.05);
	transition: transform 0.3s ease;
}

.cert-item:hover {
	transform: translateY(-3px);
}

.cert-item img {
	max-height: 120px;
	margin-bottom: 10px;
}

/* 官方专业质检样式 - 新增 */
.inspection-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

.inspection-text {
	flex: 2;
}

.inspection-logos {
	flex: 3;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 15px;
}

.inspection-logo {
	flex: 1;
	min-width: 150px;
	/* 恢复交互动画 */
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px 10px;
	border: 1px solid #e5e7eb;
	border-radius: 50px;
	background-color: white;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.inspection-logo:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.inspection-logo img {
	max-height: 60px;
	margin-bottom: 8px;
}

.inspection-logo p {
	text-align: center;
	font-size: 0.9rem;
	color: var(--text-dark);
}

/* 响应式调整 */
@media (max-width: 768px) {
	.certificate-options {
		flex-direction: column;
	}

	.cert-front {
		flex-direction: column;
	}

	.cert-text {
		padding-right: 0;
		margin-bottom: 20px;
	}

	.inspection-container {
		flex-direction: column;
	}

	.inspection-logos {
		width: 100%;
		overflow-x: auto;
		padding-bottom: 10px;
	}

	.inspection-logo {
		min-width: 120px;
		padding: 10px;
	}
}

/* 无缝滚动动画修复 */
.logo-row {
	display: flex;
	width: max-content;
	animation: scroll-left 30s linear infinite;
}

/* 新增社交媒体二维码样式 */
.social-media-container {
	position: relative;
	display: inline-block;
}

.social-qr-code {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 100;
	width: 140px;
	text-align: center;
	margin-bottom: 10px;
}

.social-qr-code::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-top-color: white;
}

.social-qr-code img {
	width: 120px;
	height: 120px;
	display: block;
	margin: 0 auto;
}

.social-qr-code p {
	margin-top: 8px;
	font-size: 0.8rem;
	color: #333;
	font-weight: 500;
}

.social-media-container:hover .social-qr-code {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-5px);
}

.social-icon {
	transition: all 0.3s ease;
	cursor: pointer;
}

.social-media-container:hover .social-icon {
	color: white !important;
	transform: scale(1.2);
}
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

:root {
	--primary-color: #2563eb;
	--primary-dark: #1d4ed8;
	--accent-color: #f59e0b;
	--text-dark: #1f2937;
	--text-light: #6b7280;
	--bg-light: #f9fafb;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--navbar-height: 80px;
	--transition-standard: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans SC', sans-serif;
	color: var(--text-dark);
	overflow-x: hidden;
	background-color: var(--bg-light);
	line-height: 1.6;
}

/* 导航栏样式优化 - 与官网完全一致 */
.navbar {
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: var(--transition-standard);
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.brand-logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	transition: transform 0.3s ease;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 0.5rem;
}

.nav-item {
	position: relative;
	padding: 0.8rem 1.2rem;
	margin: 0 0.3rem;
	font-weight: 500;
	color: var(--text-dark);
	text-decoration: none;
	transition: var(--transition-standard);
	border-radius: 8px;
	overflow: hidden;
}

.nav-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--primary-color);
	transition: var(--transition-standard);
	border-radius: 3px;
}

/* 下拉菜单样式 */
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
	pointer-events: none;
}

.dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.dropdown .nav-item {
	cursor: pointer;
	margin: 0;
}

.dropdown-content .dropdown-item {
	display: block;
	padding: 0.9rem 1.5rem;
	color: var(--text-dark);
	text-decoration: none;
	transition: var(--transition-standard);
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content .dropdown-item:last-child {
	border-bottom: none;
}

.dropdown-content .dropdown-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 4px;
	background-color: var(--primary-color);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: center;
}

.dropdown-content .dropdown-item:hover {
	background-color: rgba(37, 99, 235, 0.05);
	color: var(--primary-color);
	padding-left: 1.8rem;
}

.dropdown-content .dropdown-item:hover::before {
	transform: scaleY(1);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-dark);
	cursor: pointer;
	transition: transform 0.3s ease;
	padding: 0.5rem;
}

.mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: white;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 16px 16px;
	overflow: hidden;
	transform: translateY(-10px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 40;
}

.mobile-dropdown .dropdown-content {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	background-color: rgba(37, 99, 235, 0.03);
	display: none;
}

.mobile-dropdown.active .dropdown-content {
	display: block;
}

.mobile-dropdown .dropdown-indicator {
	float: right;
	transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-indicator {
	transform: rotate(180deg);
}

/* 品牌故事页面样式 */






/* 页脚样式 */
footer {
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	color: white;
	padding: 40px 0;
}

.footer-links a {
	position: relative;
	transition: all 0.3s ease;
	color: #d1d5db;
	text-decoration: none;
}

.footer-links a:hover {
	color: white;
}

/* 响应式调整 - 确保兼容所有设备 */
@media (max-width: 1200px) {
	.nav-container {
		padding: 0.8rem 2rem;
	}
}

@media (max-width: 992px) {
	.nav-links {
		display: none;
	}

	.about-container {
		flex-direction: column;
	}

	.values-grid,
	.product-grid,
	.certificate-grid,
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.timeline-line {
		left: 30px;
	}

	.timeline-item {
		padding: 0 0 0 60px !important;
		justify-content: flex-start !important;
	}

	.timeline-dot {
		left: 30px;
	}

	.timeline-year {
		left: 30px !important;
		transform: translateX(0);
	}

	.timeline-content {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.nav-container {
		padding: 0.8rem 1rem;
	}

	.brand-story-hero h1 {
		font-size: 2.2rem;
	}

	.value-card,
	.product-card,
	.certificate-card,
	.stat-card {
		padding: 20px;
	}

	.product-image {
		height: 300px;
	}

	.timeline-content h3 {
		font-size: 1.3rem;
	}

	.timeline-text {
		padding: 20px;
	}

	.honor-image-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}

@media (max-width: 576px) {
	.brand-story-hero {
		padding: 60px 0;
	}

	.brand-story-section {
		padding: 60px 0;
	}

	.timeline-section {
		padding: 60px 0;
	}

	.timeline {
		padding: 40px 0;
	}

	.timeline-item {
		margin-bottom: 60px;
	}

	.container {
		padding: 0 15px;
	}

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

@media (max-width: 400px) {
	.brand-logo span {
		font-size: 1rem;
	}

	.brand-logo i {
		font-size: 1.5rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.timeline-year {
		font-size: 1rem;
		padding: 6px 15px;
	}
}

/* 滚动动画 */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 通用工具类 */
.text-center {
	text-align: center;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-8 {
	margin-top: 2rem;
}

.flex {
	display: flex;
}

.justify-center {
	justify-content: center;
}

.items-center {
	align-items: center;
}

.gap-4 {
	gap: 1rem;
}

.gap-8 {
	gap: 2rem;
}

.grid {
	display: grid;
}

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

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

.grid-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) {
	.md\:grid-cols-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.space-y-2>*+* {
	margin-top: 0.5rem;
}

.space-x-4>*+* {
	margin-left: 1rem;
}

.border-t {
	border-top-width: 1px;
}

.border-gray-700 {
	border-color: #374151;
}

.pt-8 {
	padding-top: 2rem;
}

.text-gray-300 {
	color: #d1d5db;
}

.text-gray-400 {
	color: #9ca3af;
}

.text-white {
	color: white;
}

.text-xl {
	font-size: 1.25rem;
}

.text-lg {
	font-size: 1.125rem;
}

.font-bold {
	font-weight: 700;
}

.hover\:text-white:hover {
	color: white;
}

.transition-colors {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.duration-300 {
	transition-duration: 300ms;
}

/* 产品中心样式优化 */
.product-hero {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 140px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.product-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="1000,0 1000,100 0,100"></polygon></svg>');
	background-size: cover;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.product-category {
	padding: 100px 0;
}

.product-category:nth-child(even) {
	background-color: white;
}

.product-category:nth-child(odd) {
	background-color: var(--bg-light);
}

.category-header {
	text-align: center;
	margin-bottom: 60px;
}

.category-title {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-dark);
	position: relative;
	display: inline-block;
}

.category-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
	border-radius: 2px;
}

.category-subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* 横向滚动产品区域 */
.product-scroll-container {
	position: relative;
	margin: 0 auto;
	max-width: 1400px;
}

.product-scroll-wrapper {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE and Edge */
	padding: 20px 10px 40px;
	margin: 0 -10px;
}

.product-scroll-wrapper::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari and Opera */
}

.product-scroll {
	display: flex;
	gap: 30px;
	padding: 0 20px;
	width: max-content;
}

.product-card1 {
	background-color: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	width: 380px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	position: relative;
}

.product-card1:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.product-image {
	height: 400px;
	overflow: hidden;
	position: relative;
}

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

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

.product-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--accent-color);
	color: white;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	z-index: 2;
	box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.product-content {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-dark);
	line-height: 1.3;
}

.product-price {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 18px;
}

.product-description {
	color: var(--text-light);
	margin-bottom: 20px;
	flex-grow: 1;
	line-height: 1.6;
}

.product-features {
	margin-bottom: 25px;
}

.feature-list {
	list-style-type: none;
	padding: 0;
}

.feature-list li {
	padding: 8px 0;
	position: relative;
	padding-left: 28px;
	color: var(--text-dark);
}

.feature-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
	background: rgba(37, 99, 235, 0.1);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
}

.product-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.buy-btn {
	background-color: var(--primary-color);
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: var(--shadow);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.buy-btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.detail-btn {
	background-color: transparent;
	color: var(--primary-color);
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	border: 1px solid var(--primary-color);
}

.detail-btn:hover {
	background-color: rgba(37, 99, 235, 0.05);
	transform: translateY(-2px);
}

/* 滚动控制按钮 */
.scroll-controls {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}

.scroll-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: white;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.scroll-btn:hover {
	background: var(--primary-color);
	color: white;
	transform: scale(1.1);
}

.scroll-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.scroll-btn:disabled:hover {
	background: white;
	color: var(--primary-color);
}

/* 其他产品模块样式 */
.other-products {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 100px 0;
	text-align: center;
}

.store-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.store-card {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.store-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.store-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.store-icon {
	width: 180px;
	height: 80px;
	/* background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	color: white;
	font-size: 2rem;
}

.store-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.store-description {
	color: var(--text-light);
	margin-bottom: 25px;
	line-height: 1.6;
}

.store-btn {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: white;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.store-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* 响应式设计 */
@media (max-width: 992px) {
	.nav-container {
		padding: 0.8rem 2rem;
	}

	.nav-links {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.mobile-menu {
		display: block;
	}

	.category-title {
		font-size: 2.4rem;
	}

	.store-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.product-card1 {
		width: 340px;
	}
}

@media (max-width: 768px) {
	.product-hero {
		padding: 120px 0 60px;
	}

	.product-category {
		padding: 80px 0;
	}

	.category-title {
		font-size: 2.2rem;
	}

	.category-subtitle {
		font-size: 1.1rem;
	}

	.other-products {
		padding: 80px 0;
	}

	.product-card1 {
		width: 300px;
	}
}

@media (max-width: 576px) {
	.nav-container {
		padding: 0.8rem 1rem;
	}

	.brand-logo {
		font-size: 1.2rem;
	}

	.product-hero {
		padding: 100px 0 50px;
	}

	.category-title {
		font-size: 2rem;
	}

	.product-content {
		padding: 20px;
	}

	.product-actions {
		flex-direction: column;
		gap: 12px;
		align-items: stretch;
	}

	.buy-btn,
	.detail-btn {
		text-align: center;
		justify-content: center;
	}

	.store-card {
		padding: 30px 20px;
	}

	.product-card1 {
		width: 280px;
	}

	.scroll-controls {
		display: none;
	}
}