 .page-header {
	background-color: var(--primary);
	color: white;
	padding: 60px 0;
	text-align: center;
}

.page-header h1 {
	font-size: 36px;
	margin-bottom: 15px;
}

.breadcrumb {
	background-color: var(--light);
	padding: 15px 0;
	font-size: 14px;
}

.breadcrumb .container {
	display: flex;
	align-items: center;
}

.breadcrumb a {
	color: var(--gray);
	text-decoration: none;
	transition: color 0.3s;
}

.breadcrumb a:hover {
	color: var(--secondary);
}

.breadcrumb span {
	margin: 0 10px;
	color: var(--gray);
}

.news-grid, .products-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.news-card, .product-item {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover, .product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image, .product-image {
	height: 200px;
	overflow: hidden;
}

.news-image img, .product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.news-card:hover .news-image img, 
.product-item:hover .product-image img {
	transform: scale(1.05);
}

.news-info, .product-info {
	padding: 20px;
}

.news-date {
	color: var(--secondary);
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
}

.news-info h3, .product-info h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: var(--primary);
}

.news-info p, .product-info p {
	color: var(--gray);
	margin-bottom: 15px;
	font-size: 14px;
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.pagination li{list-style:none;}

.pagination a {
	display: inline-block;
	padding: 8px 15px;
	margin: 0 5px;
	background-color: var(--light);
	color: var(--dark);
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s;
}

.pagination a.active,
.pagination a:hover,.pagination li.active a {
	background-color: var(--secondary);
	color: white;
}

.article-content {
	max-width: 800px;
	margin: 0 auto;
}

.article-meta {
	display: flex;
	margin-bottom: 30px;
	color: var(--gray);
	font-size: 14px;
	justify-content: center;
}

.article-meta span {
	margin-right: 20px;
}

.article-image {
	margin-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
}

.article-image img {
	width: 100%;
	height: auto;
	display: block;
}

.article-content h2 {
	color: var(--primary);
	margin: 30px 0 15px;
	font-size: 24px;
}

.article-content p {
	margin-bottom: 20px;
	line-height: 1.8;
}

.article-content blockquote {
	border-left: 4px solid var(--secondary);
	padding-left: 20px;
	margin: 30px 0;
	font-style: italic;
	color: var(--gray);
}

.product-detail {
	display: flex;
	gap: 40px;
	margin-bottom: 50px;
}

.product-gallery {
	flex: 1;
}

.product-main-image {
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
}

.product-main-image img {
	width: 100%;
	height: auto;
	display: block;
}

.product-thumbnails {
	display: flex;
	gap: 10px;
}

.product-thumbnail {
	width: 80px;
	height: 80px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.product-thumbnail.active,
.product-thumbnail:hover {
	opacity: 1;
}

.product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-info-detail {
	flex: 1;
}

.product-info-detail h1 {
	color: var(--primary);
	margin-bottom: 15px;
	font-size: 28px;
}

.product-price {
	font-size: 24px;
	color: var(--secondary);
	margin-bottom: 20px;
	font-weight: 600;
}

.product-description {
	margin-bottom: 30px;
	line-height: 1.8;
}

.product-specs {
	margin-bottom: 30px;
}

.product-specs h3 {
	margin-bottom: 15px;
	color: var(--primary);
}

.specs-table {
	width: 100%;
	border-collapse: collapse;
}

.specs-table tr {
	border-bottom: 1px solid #eee;
}

.specs-table td {
	padding: 10px 15px;
}

.specs-table td:first-child {
	font-weight: 600;
	color: var(--dark);
	width: 30%;
}

.product-actions {
	display: flex;
	gap: 15px;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.feature-card {
	text-align: center;
	padding: 30px 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background-color: var(--secondary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
}

.feature-card h3 {
	margin-bottom: 15px;
	color: var(--primary);
}

.team-section {
	margin: 60px 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.team-member {
	text-align: center;
}

.team-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 20px;
	border: 5px solid var(--light);
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member h3 {
	margin-bottom: 5px;
	color: var(--primary);
}

.team-position {
	color: var(--secondary);
	margin-bottom: 10px;
	font-weight: 600;
}

.team-bio {
	color: var(--gray);
	font-size: 14px;
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-top: 40px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--dark);
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-control:focus {
	border-color: var(--accent);
	outline: none;
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

.form-row {
	display: flex;
	gap: 20px;
}

.form-row .form-group {
	flex: 1;
}

/* 产品详情页样式 */
.page-header {
	background-color: var(--primary);
	color: white;
	padding: 60px 0;
	text-align: center;
	background: url(../images/aboutbg2.jpg) center bottom;
}

.page-header h1 {
	font-size: 36px;
	margin-bottom: 15px;
}

.breadcrumb {
	background-color: var(--light);
	padding: 15px 0;
	font-size: 14px;
}

.breadcrumb .container {
	display: flex;
	align-items: center;
}

.breadcrumb a {
	color: var(--gray);
	text-decoration: none;
	transition: color 0.3s;
}

.breadcrumb a:hover {
	color: var(--secondary);
}

.breadcrumb span {
	margin: 0 10px;
	color: var(--gray);
}

.product-detail {
	display: flex;
	gap: 40px;
	margin-bottom: 50px;
}

.product-gallery {
	flex: 1;
	position: relative;
}

.product-main-image {
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	cursor: zoom-in;
}

.product-main-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s;
}

.product-main-image:hover img {
	transform: scale(1.02);
}

.product-thumbnails {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.product-thumbnail {
	width: 80px;
	height: 80px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s, transform 0.3s;
	border: 2px solid transparent;
}

.product-thumbnail.active,
.product-thumbnail:hover {
	opacity: 1;
	transform: scale(1.05);
	border-color: var(--secondary);
}

.product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zoom-lens {
	position: absolute;
	border: 1px solid #ccc;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: zoom-in;
	display: none;
}

.zoom-result {
	position: absolute;
	top: 0;
	left: 105%;
	width: 400px;
	height: 400px;
	border: 1px solid #ccc;
	background-color: white;
	background-repeat: no-repeat;
	display: none;
	z-index: 100;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-radius: 4px;
}

.gallery-controls {
	display: flex;
	justify-content: center;
	margin-top: 15px;
	gap: 10px;
}

.gallery-controls button {
	background: var(--primary);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}

.gallery-controls button:hover {
	background: var(--secondary);
}

.product-info-detail {
	flex: 1;
}

.product-info-detail h1 {
	color: var(--primary);
	margin-bottom: 15px;
	font-size: 28px;
}

.product-price {
	font-size: 24px;
	color: var(--secondary);
	margin-bottom: 20px;
	font-weight: 600;
}

.product-description {
	margin-bottom: 30px;
	line-height: 1.8;
}

.product-specs {
	margin-bottom: 30px;
}

.product-specs h3 {
	margin-bottom: 15px;
	color: var(--primary);
}

.specs-table {
	width: 100%;
	border-collapse: collapse;
}

.specs-table tr {
	border-bottom: 1px solid #eee;
}

.specs-table td {
	padding: 10px 15px;
}

.specs-table td:first-child {
	font-weight: 600;
	color: var(--dark);
	width: 30%;
}

.product-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.product-features {
	margin-top: 60px;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.feature-card {
	text-align: center;
	padding: 30px 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background-color: var(--secondary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
}

.feature-card h3 {
	margin-bottom: 15px;
	color: var(--primary);
}

@media (max-width: 768px) {
	.product-detail {
		flex-direction: column;
	}
	
	.form-row {
		flex-direction: column;
		gap: 0;
	}
}