/**首页**/
.hbanner {
	width: 100%;
	margin: auto 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.hbanner img {
	display: block;
	width: 100%;
}

.hbanner .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	background: #fff;
	margin: 0 5px;
	border-radius: 50%;
	opacity: 1;
	-webkit-transition: all 0.55s;
	-moz-transition: all 0.55s;
	-ms-transition: all 0.55s;
	-o-transition: all 0.55s;
	transition: all 0.55s;
}

.hbanner .swiper-pagination-bullet-active {
	width: 30px;
	opacity: 1;
	border-radius: 20px;
}

/*.banner {*/
	/*background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),*/
	/*	url('../image/nybanner.png') center/cover no-repeat;*/
	/*background: url('../image/nybanner.png') 100% 100% no-repeat;*/
/*	background: url('../image/nybanner.png') no-repeat;*/
/*    background-size: 100% 100%;*/
/*	height: 400px;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	color: white;*/
/*	text-align: center;*/
/*	position: relative;*/
/*}*/

.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto; /* 高度自适应，保持图片比例 */
    display: block; /* 避免图片下方间隙 */
    object-fit: cover; /* 可选：填充容器，避免变形 */
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.banner-content{
    display: none;
}

.banner-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
	animation: fadeInDown 1s ease;
}

.banner-content p {
	font-size: 24px;
	animation: fadeInUp 1s ease 0.3s forwards;
	opacity: 0;
}

.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 50px;
	color: #333;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #d62f2f;
}

.about-section {
	padding: 80px 0;
	background-color: #fff;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-text {
	flex: 1;
}

.about-text p {
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 16px;
}

.about-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
	width: 100%;
	height: auto;
	transition: transform 0.5s;
}

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

.learn-more-btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: #d62f2f;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
	margin-top: 20px;
	transition: all 0.3s;
}

.learn-more-btn:hover {
	background-color: #b82525;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(214, 47, 47, 0.3);
}

.features-section {
	padding: 60px 0;
	background-color: #f9f9f9;
}

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

.feature-item {
	background: white;
	padding: 40px 30px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.feature-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 50px;
	margin-bottom: 20px;
}

.feature-item h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #333;
}

.feature-item p {
	color: #666;
	line-height: 1.6;
}

.products-section {
	padding: 80px 0;
	background-color: #fff;
}

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

.product-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f9f9f9;
}

.product-image img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

.product-info {
	padding: 20px;
	text-align: center;
}

.product-info h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #333;
}

.product-info p {
	color: #666;
	margin-bottom: 15px;
}

.product-btn {
	display: inline-block;
	padding: 8px 20px;
	background-color: #f0f0f0;
	color: #333;
	text-decoration: none;
	border-radius: 20px;
	font-size: 14px;
	transition: all 0.3s;
}

.product-btn:hover {
	background-color: #d62f2f;
	color: white;
}

.certifications-section {
	padding: 80px 0;
	background-color: #f9f9f9;
}

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

.cert-item {
	background: white;
	padding: 30px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.cert-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	border-radius: 50%;
}

.cert-icon img {
	max-width: 100%;
	max-height: 100%;
}

.cert-item h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #333;
}

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

/* 响应式设计 */
@media (max-width: 1200px) {

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

@media (max-width: 768px) {
	.banner {
		/*height: 300px;*/
	}

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

	.banner-content p {
		font-size: 18px;
	}

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

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

	.section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	
	.about-section{
	    padding-top: 40px;
	}
	
	.brand-intro-section{
	    padding: 40px 0!important;
	}
}

@media (max-width: 480px) {
	.banner {
		/*height: 250px;*/
	}

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

	.banner-content p {
		font-size: 16px;
	}
}


/**品牌介绍**/
/* 品牌介绍部分样式 */
.brand-intro-section {
	padding: 80px 0;
	background-color: #fff;
}

.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 50px;
	color: #333;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #d62f2f;
}

.brand-origin {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-bottom: 60px;
}

.origin-content {
	flex: 1;
}

.origin-content p {
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 16px;
	color: #555;
}

.origin-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.origin-image img {
	width: 100%;
	height: auto;
	transition: transform 0.5s;
}

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

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

.concept-card {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	text-align: center;
}

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

.concept-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background-color: #f8f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d62f2f;
	font-size: 30px;
}

.concept-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #333;
}

.concept-slogan {
	font-size: 18px;
	color: #d62f2f;
	font-weight: bold;
	margin-bottom: 15px;
}

.concept-desc {
	color: #666;
	line-height: 1.6;
	font-size: 15px;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.brand-origin {
		flex-direction: column;
	}

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

@media (max-width: 768px) {
	.section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

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

	.concept-card {
		padding: 25px;
	}
}

/* 品牌动态部分样式 */
.news-section {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.news-categories {
	margin-bottom: 40px;
	text-align: center;
}

.category-list {
	display: inline-flex;
	list-style: none;
	background: white;
	border-radius: 30px;
	padding: 5px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-list li {
	margin: 0 5px;
}

.category-list a {
	display: block;
	padding: 10px 25px;
	color: #666;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s;
}

.category-list a:hover,
.category-list a.active {
	background: #d62f2f;
	color: white;
}

.news-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.news-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	position: relative;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
	height: 200px;
	position: relative;
	overflow: hidden;
}

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

.news-card:hover .news-image img {
	transform: scale(1.05);
}

.news-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: rgba(214, 47, 47, 0.9);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
}

.news-content {
	padding: 25px;
}

.news-date {
	color: #d62f2f;
	font-size: 14px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.news-date i {
	margin-right: 8px;
}

.news-title {
	font-size: 20px;
	margin-bottom: 15px;
	color: #333;
	transition: color 0.3s;
}

.news-card:hover .news-title {
	color: #d62f2f;
}

.news-excerpt {
	color: #666;
	margin-bottom: 15px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.read-more {
	display: inline-flex;
	align-items: center;
	color: #d62f2f;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
}

.read-more i {
	margin-left: 5px;
	font-size: 12px;
	transition: transform 0.3s;
}

.read-more:hover i {
	transform: translateX(3px);
}

.read-more::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #d62f2f;
	transition: width 0.3s;
}

.read-more:hover::after {
	width: 100%;
}

/* 分页样式 */
.pagination {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.page-numbers {
	display: flex;
	list-style: none;
}

.page-numbers li {
	margin: 0 5px;
}

.page-numbers a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f0f0f0;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.page-numbers a:hover,
.page-numbers a.active {
	background-color: #d62f2f;
	color: white;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.news-container {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}

	.category-list {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.news-section {
		padding: 60px 0;
	}

	.category-list a {
		padding: 8px 15px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.news-container {
		grid-template-columns: 1fr;
	}

	.category-list {
		border-radius: 15px;
	}

	.category-list a {
		padding: 6px 12px;
		font-size: 13px;
	}
}

/* 品牌荣誉部分样式 */
.honor-section {
	padding: 60px 0;
	background-color: #fff;
}

.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 50px;
	color: #333;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #d62f2f;
}

.honor-timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.honor-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: #f0f0f0;
	transform: translateX(-50%);
}

.honor-item {
	position: relative;
	margin-bottom: 50px;
}

.honor-year {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 40px;
	background: #d62f2f;
	color: white;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	z-index: 1;
}

.honor-content {
	display: flex;
	align-items: center;
	position: relative;
}

.honor-item:nth-child(odd) .honor-content {
	flex-direction: row-reverse;
}

.honor-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.honor-image img {
	width: 100%;
	height: auto;
	transition: transform 0.5s;
}

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

.honor-details {
	flex: 1;
	box-sizing: border-box;
}

/* 左侧荣誉项目 */
.honor-item:nth-child(odd) .honor-details {
	padding: 0 140px 0 0;
	text-align: right;
}

/* 右侧荣誉项目 */
.honor-item:nth-child(even) .honor-details {
	padding: 0 0 0 140px;
	text-align: left;
}

.honor-details h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: #333;
}

.honor-details p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}

.honor-badge {
	display: inline-block;
	padding: 5px 15px;
	background: #f8f0f0;
	color: #d62f2f;
	border-radius: 20px;
	font-size: 14px;
}

.honor-badge i {
	margin-right: 5px;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.honor-timeline::before {
		left: 40px;
	}

	.honor-year {
		left: -20px;
		transform: none;
	}

	.honor-content {
		flex-direction: row !important;
		margin-left: 80px;
	}

	.honor-details {
		text-align: left !important;
		padding: 0 0 0 30px;
	}
}

@media (max-width: 768px) {
	.section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.honor-content {
		flex-direction: column !important;
		margin-left: 60px;
	}

	.honor-image {
		width: 100%;
		margin-bottom: 20px;
	}

	.honor-details {
		padding: 0;
	}

	/* 左侧荣誉项目 */
	.honor-item:nth-child(odd) .honor-details {
		padding: 0 40px 0 0;
		text-align: right;
	}

	/* 右侧荣誉项目 */
	.honor-item:nth-child(even) .honor-details {
		padding: 0 0 0 0px;
		text-align: left;
	}
}

@media (max-width: 576px) {
	.honor-year {
		width: 80px;
		height: 30px;
		font-size: 14px;
	}
}

/***门店介绍部分***/
/* 页面标题 */
.page-title {
	text-align: center;
	padding: 60px 0 30px;
}

.page-title h2 {
	font-size: 36px;
	margin-bottom: 15px;
	color: #222;
	position: relative;
	display: inline-block;
}

.page-title h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #d62f2f;
}

.page-title .subtitle {
	font-size: 18px;
	color: #666;
	max-width: 800px;
	margin: 0 auto;
}

/* 门店特色标语 */
.store-slogan {
	background: linear-gradient(135deg, #000 0%, #d62f2f 100%);
	color: white;
	padding: 60px 0;
	margin-bottom: 50px;
}

.slogan-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.slogan-text {
	font-size: 32px;
	margin-bottom: 15px;
	font-weight: bold;
}

.slogan-subtext {
	font-size: 18px;
	opacity: 0.9;
}

/* 门店模型介绍 */
.store-model-section {
	padding: 60px 0;
}

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

.model-title {
	font-size: 28px;
	margin-bottom: 10px;
	color: #222;
}

.model-subtitle {
	font-size: 16px;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.model-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.feature-item {
	text-align: center;
	padding: 30px 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: #f8f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d62f2f;
	font-size: 24px;
}

.feature-title {
	font-size: 18px;
	margin-bottom: 10px;
	color: #333;
}

.feature-desc {
	font-size: 14px;
	color: #666;
}

/* 门店功能区展示 */
.store-areas-section {
	padding: 60px 0;
	background: #f9f9f9;
}

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

.areas-title {
	font-size: 28px;
	margin-bottom: 10px;
	color: #222;
}

.areas-subtitle {
	font-size: 16px;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.areas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 25px;
}

.area-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.area-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.area-image {
	position: relative;
	height: 180px;
	overflow: hidden;
}

.area-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.area-card:hover .area-image img {
	transform: scale(1.05);
}

.area-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.area-info {
	padding: 20px;
	text-align: center;
}

.area-name {
	font-size: 18px;
	margin-bottom: 5px;
	color: #333;
}

.area-desc {
	font-size: 14px;
	color: #666;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.model-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.areas-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.page-title h2 {
		font-size: 28px;
	}

	.page-title .subtitle,
	.slogan-text {
		font-size: 16px;
	}

	.slogan-text {
		font-size: 24px;
	}

	.model-title,
	.areas-title {
		font-size: 24px;
	}

	.model-features {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

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

@media (max-width: 576px) {
	.page-title {
		padding: 40px 0 20px;
	}

	.store-slogan {
		padding: 40px 0;
	}

	.store-model-section,
	.store-areas-section {
		padding: 40px 0;
	}

	.areas-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}
}

/* 战略合作部分样式 */
.partnership-section {
	padding: 80px 0;
	background-color: #f9f9f9;
}

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

.section-title {
	font-size: 36px;
	color: #222;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #d62f2f;
}

.section-subtitle {
	font-size: 18px;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

/* 主要合作卡片 */
.partnership-card {
	display: flex;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.partner-logo {
	flex: 0 0 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: #f8f8f8;
	border-right: 1px solid #eee;
}

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

.partner-content {
	flex: 1;
	padding: 30px;
}

.partner-content h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
	position: relative;
	padding-bottom: 10px;
}

.partner-content h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: #d62f2f;
}

.partner-info {
	display: flex;
	gap: 40px;
}

.partner-details {
	flex: 1;
}

.partner-details p {
	margin-bottom: 15px;
	color: #555;
}

.partner-details strong {
	color: #333;
	font-weight: 600;
}

.partner-achievements {
	flex: 1;
}

.partner-achievements h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #333;
}

.partner-achievements ul {
	list-style: none;
}

.partner-achievements li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	color: #555;
}

.partner-achievements li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #d62f2f;
	font-weight: bold;
}

/* 合作伙伴网格 */
.partnership-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-top: 50px;
}

.partner-item {
	background: white;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.partner-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: #f8f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d62f2f;
	font-size: 30px;
}

.partner-item h4 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #333;
}

.partner-item p {
	color: #666;
	margin-bottom: 15px;
	font-size: 15px;
}

.partner-year {
	display: inline-block;
	padding: 5px 15px;
	background: #f8f0f0;
	color: #d62f2f;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.partner-info {
		flex-direction: column;
		gap: 20px;
	}

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

@media (max-width: 768px) {
	.partnership-card {
		flex-direction: column;
	}

	.partner-logo {
		flex: 0 0 auto;
		border-right: none;
		border-bottom: 1px solid #eee;
	}

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

@media (max-width: 576px) {
	.partnership-grid {
		grid-template-columns: 1fr;
	}

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

	.partner-content h3 {
		font-size: 22px;
	}
}

/* 联系我们部分 */
.contact-section {
	padding: 80px 0;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

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

.section-title {
	font-size: 36px;
	color: var(--secondary-color);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--primary-color);
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-color);
}

/* 联系信息容器 */
.contact-container {
	display: flex;
	gap: 40px;
	margin-bottom: 60px;
}

/* 联系信息部分 */
.contact-infos {
	flex: 1;
	background: var(--light-gray);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	color: var(--primary-color);
}

.info-header i {
	font-size: 28px;
	margin-right: 15px;
}

.info-header h3 {
	font-size: 24px;
	color: var(--secondary-color);
}

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

.info-icon {
	width: 50px;
	height: 50px;
	background: rgba(214, 47, 47, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 20px;
	margin-right: 20px;
	flex-shrink: 0;
}

.info-content h4 {
	font-size: 18px;
	margin-bottom: 5px;
	color: var(--secondary-color);
}

.info-content p {
	color: var(--text-color);
	font-size: 16px;
}

.contact-link {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
}

.contact-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--primary-color);
	transition: width 0.3s;
}

.contact-link:hover {
	color: #b82525;
}

.contact-link:hover::after {
	width: 100%;
}

/* 社交媒体 */
.social-media {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
}

.social-media h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: var(--secondary-color);
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	background: rgba(214, 47, 47, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 18px;
	transition: all 0.3s;
}

.social-icon:hover {
	background: var(--primary-color);
	color: white;
	transform: translateY(-3px);
}

/* 联系表单部分 */
.contact-form {
	flex: 1;
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	color: var(--primary-color);
}

.form-header i {
	font-size: 28px;
	margin-right: 15px;
}

.form-header h3 {
	font-size: 24px;
	color: var(--secondary-color);
}

.form-group {
	position: relative;
	margin-bottom: 25px;
}

.form-control {
	width: 100%;
	padding: 15px 20px 15px 50px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s;
	background: white;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(214, 47, 47, 0.2);
	outline: none;
}

.form-group label {
	position: absolute;
	left: 50px;
	top: 15px;
	color: var(--text-color);
	transition: all 0.3s;
	pointer-events: none;
	background: white;
	padding: 0 5px;
}

.form-control:focus+label,
.form-control:not(:placeholder-shown)+label {
	top: -10px;
	left: 40px;
	font-size: 12px;
	color: var(--primary-color);
}

.form-icon {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary-color);
}

textarea.form-control {
	min-height: 120px;
	padding-left: 20px;
	resize: vertical;
}

textarea.form-control+label {
	left: 20px;
}

textarea.form-control:focus+label,
textarea.form-control:not(:placeholder-shown)+label {
	left: 10px;
}

select.form-control {
	appearance: none;
}

/* 提交按钮 */
.submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 15px;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
}

.submit-btn i {
	margin-left: 10px;
	transition: transform 0.3s;
}

.submit-btn:hover {
	background: #b82525;
}

.submit-btn:hover i {
	transform: translateX(5px);
}

/* 地图部分 */
.map-container {
	margin-top: 40px;
}

.map-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.map-header i {
	font-size: 24px;
	margin-right: 15px;
}

.map-header h3 {
	font-size: 22px;
	color: var(--secondary-color);
}

.map-wrapper {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
	width: 100%;
	height: 400px;
	border: none;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.contact-container {
		flex-direction: column;
	}

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

@media (max-width: 768px) {
	.section-title {
		font-size: 28px;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.info-header h3,
	.form-header h3 {
		font-size: 22px;
	}

	.map-header h3 {
		font-size: 20px;
	}

	.info-content h4 {
		font-size: 17px;
	}
}

@media (max-width: 576px) {
	.contact-section {
		padding: 60px 0;
	}

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

	.info-item {
		flex-direction: column;
	}

	.info-icon {
		margin-bottom: 10px;
	}

	.map-wrapper iframe {
		height: 300px;
	}
}

/* 面包屑导航 */
.breadcrumb {
	padding: 20px 0;
	font-size: 14px;
	color: #999;
}

.breadcrumb a {
	color: #666;
}

.breadcrumb a:hover {
	color: var(--primary-color);
}

.breadcrumb span {
	margin: 0 8px;
}

.breadcrumb .current {
	color: var(--primary-color);
}

/* 新闻详情页专用样式 - 完全隔离作用域 */
.news-detail-section {
	/* 定义局部变量 */
	--news-primary-color: #d62f2f;
	--news-secondary-color: #333;
	--news-text-color: #555;
	--news-light-gray: #f5f5f5;
	--news-border-color: #e0e0e0;
	--news-white: #fff;

	font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
	color: var(--news-text-color);
	line-height: 1.6;
	background-color: #f9f9f9;
	padding: 40px 0;
}

/* 容器和基础重置 */
.news-detail-section * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.news-detail-section .news-detail-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 链接样式 */
.news-detail-section a {
	color: var(--news-primary-color);
	text-decoration: none;
	transition: all 0.3s;
}

.news-detail-section a:hover {
	color: #b82525;
	text-decoration: underline;
}

/* 面包屑导航 */
.news-detail-section .news-detail-breadcrumb {
	padding: 15px 0 30px;
	font-size: 14px;
	color: #999;
}

.news-detail-section .news-detail-breadcrumb a {
	color: #666;
}

.news-detail-section .news-detail-breadcrumb a:hover {
	color: var(--news-primary-color);
}

.news-detail-section .news-breadcrumb-separator {
	margin: 0 8px;
	color: #ccc;
}

.news-detail-section .news-breadcrumb-current {
	color: var(--news-primary-color);
	font-weight: 500;
}

/* 新闻标题区 */
.news-detail-section .news-detail-header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--news-border-color);
}

.news-detail-section .news-detail-title {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--news-secondary-color);
	line-height: 1.3;
	font-weight: 600;
	position: relative;
	padding-bottom: 15px;
}

.news-detail-section .news-detail-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--news-primary-color);
}

.news-detail-section .news-detail-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
	color: #888;
}

.news-detail-section .news-detail-meta i {
	margin-right: 5px;
	color: var(--news-primary-color);
}

/* 新闻详情内容区 */
.news-detail-section .news-detail-content {
	background: var(--news-white);
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 40px;
}

/* 新闻封面图 */
.news-detail-section .news-detail-cover {
	margin-bottom: 30px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.news-detail-section .news-detail-cover img {
	width: 100%;
	height: auto;
	display: block;
}

.news-detail-section .news-image-caption {
	text-align: center;
	font-size: 14px;
	color: #888;
	margin-top: 10px;
	font-style: italic;
}

/* 新闻正文 */
.news-detail-section .news-detail-article {
	font-size: 16px;
	line-height: 1.8;
}

.news-detail-section .news-detail-article p {
	margin-bottom: 20px;
	display: inline-block;
}

.news-detail-section .news-detail-article img{
    width: 100%;
}

.news-detail-section .news-detail-lead {
	font-size: 18px;
	color: var(--news-secondary-color);
	font-weight: 500;
	margin-bottom: 30px !important;
}

.news-detail-section .news-detail-subtitle {
	font-size: 24px;
	margin: 40px 0 20px;
	color: var(--news-secondary-color);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--news-border-color);
}

.news-detail-section .news-detail-image {
	margin: 30px 0;
	text-align: center;
}

.news-detail-section .news-detail-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 引用块 */
.news-detail-section .news-detail-quote {
	background: #f8f0f0;
	border-left: 4px solid var(--news-primary-color);
	padding: 20px;
	margin: 30px 0;
	font-style: italic;
	color: #555;
}

.news-detail-section .news-detail-quote footer {
	margin-top: 15px;
	text-align: right;
	font-style: normal;
	color: #888;
	font-size: 14px;
}

/* 数据表格 */
.news-detail-section .news-detail-table {
	margin: 30px 0;
	overflow-x: auto;
}

.news-detail-section .news-detail-table table {
	width: 100%;
	border-collapse: collapse;
}

.news-detail-section .news-detail-table th,
.news-detail-section .news-detail-table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid var(--news-border-color);
}

.news-detail-section .news-detail-table th {
	background: #f8f0f0;
	color: var(--news-secondary-color);
	font-weight: 600;
}

.news-detail-section .news-detail-table tr:hover {
	background: #f9f9f9;
}

/* 推荐列表 */
.news-detail-section .news-detail-list {
	margin: 30px 0 30px 20px;
	list-style: none;
}

.news-detail-section .news-detail-list li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
}

.news-detail-section .news-detail-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--news-primary-color);
	font-size: 20px;
	line-height: 1;
}

/* 产品展示 */
.news-detail-section .news-detail-products {
	margin: 40px 0;
	padding: 20px;
	background: #f8f8f8;
	border-radius: 8px;
}

.news-detail-section .news-product-list {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.news-detail-section .news-product-item {
	text-align: center;
}

.news-detail-section .news-product-item img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 10px;
	border: 1px solid var(--news-border-color);
}

.news-detail-section .news-product-item p {
	font-size: 14px;
}

/* 新闻标签 */
.news-detail-section .news-detail-tags {
	margin: 40px 0 30px;
	padding-top: 30px;
	border-top: 1px solid var(--news-border-color);
}

.news-detail-section .news-tag {
	position: unset;
	display: inline-block;
	padding: 5px 15px;
	background: #f8f0f0;
	color: var(--news-primary-color);
	border-radius: 20px;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 14px;
}

.news-detail-section .news-tag:hover {
	background: var(--news-primary-color);
	color: white;
}

/* 分享按钮 */
.news-detail-section .news-detail-share {
	margin-bottom: 40px;
}

.news-detail-section .news-share-btn {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 4px;
	color: white;
	margin-right: 10px;
	font-size: 14px;
}

.news-detail-section .news-share-btn i {
	margin-right: 5px;
}

.news-detail-section .news-share-btn.wechat {
	background: #07C160;
}

.news-detail-section .news-share-btn.weibo {
	background: #E6162D;
}

.news-detail-section .news-share-btn.qq {
	background: #12B7F5;
}

/* 相关新闻 */
.news-detail-section .news-detail-related {
	margin-bottom: 60px;
}

.news-detail-section .news-related-title {
	font-size: 24px;
	margin-bottom: 30px;
	color: var(--news-secondary-color);
	position: relative;
	padding-bottom: 15px;
}

.news-detail-section .news-related-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--news-primary-color);
}

.news-detail-section .news-related-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.news-detail-section .news-related-item {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.news-detail-section .news-related-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-detail-section .news-related-item a {
	display: block;
	color: var(--news-secondary-color);
}

.news-detail-section .news-related-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.news-detail-section .news-related-item h4 {
	padding: 15px;
	font-size: 16px;
	margin-bottom: 5px;
}

.news-detail-section .news-related-date {
	display: block;
	padding: 0 15px 15px;
	font-size: 14px;
	color: #888;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.news-detail-section .news-detail-content {
		padding: 30px;
	}

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

	.news-detail-section .news-related-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.news-detail-section .news-detail-content {
		padding: 20px;
	}

	.news-detail-section .news-detail-title {
		font-size: 20px;
	}

	.news-detail-section .news-detail-subtitle {
		font-size: 22px;
	}

	.news-detail-section .news-related-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.news-detail-section .news-detail-header {
		margin-bottom: 30px;
	}

	.news-detail-section .news-detail-meta {
		gap: 10px;
	}

	.news-detail-section .news-detail-share {
		text-align: center;
	}

	.news-detail-section .news-share-btn {
		display: block;
		margin-bottom: 10px;
		width: 100%;
	}
}

/* 品牌详情页专用样式 - 完全隔离作用域 */
.brand-detail-section {
	/* 定义局部变量 */
	--brand-primary-color: #d62f2f;
	--brand-secondary-color: #333;
	--brand-text-color: #555;
	--brand-light-gray: #f5f5f5;
	--brand-border-color: #e0e0e0;
	--brand-white: #fff;

	font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
	color: var(--brand-text-color);
	line-height: 1.6;
	background-color: #f9f9f9;
	padding: 60px 0;
}

/* 容器和基础重置 */
.brand-detail-section * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.brand-detail-section .brand-detail-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 面包屑导航 */
.brand-detail-section .brand-breadcrumb {
	padding: 15px 0 30px;
	font-size: 14px;
	color: #999;
}

.brand-detail-section .brand-breadcrumb a {
	color: #666;
}

.brand-detail-section .brand-breadcrumb a:hover {
	color: var(--brand-primary-color);
}

.brand-detail-section .brand-breadcrumb-separator {
	margin: 0 8px;
	color: #ccc;
}

.brand-detail-section .brand-breadcrumb-current {
	color: var(--brand-primary-color);
	font-weight: 500;
}

/* 主要内容布局 */
.brand-detail-section .brand-content-wrapper {
	display: flex;
	gap: 40px;
}

/* 左侧菜单 */
.brand-detail-section .brand-sidebar {
	flex: 0 0 250px;
}

.brand-detail-section .brand-menu {
	background: var(--brand-white);
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.brand-detail-section .brand-menu-title {
	padding: 15px 20px;
	background: var(--brand-primary-color);
	color: white;
	font-size: 18px;
	font-weight: 600;
}

.brand-detail-section .brand-menu-list {
	list-style: none;
}

.brand-detail-section .brand-menu-item {
	border-bottom: 1px solid var(--brand-border-color);
}

.brand-detail-section .brand-menu-item:last-child {
	border-bottom: none;
}

.brand-detail-section .brand-menu-link {
	display: block;
	padding: 15px 20px;
	color: var(--brand-secondary-color);
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
}

.brand-detail-section .brand-menu-link:hover {
	color: var(--brand-primary-color);
	background: #f8f0f0;
}

.brand-detail-section .brand-menu-link.active {
	color: var(--brand-primary-color);
	font-weight: 600;
	background: #f8f0f0;
}

.brand-detail-section .brand-menu-link.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--brand-primary-color);
}

.brand-detail-section .brand-menu-link i {
	margin-right: 10px;
	width: 20px;
	text-align: center;
}

/* 右侧内容区域 */
.brand-detail-section .brand-main-content {
	flex: 1;
	background: var(--brand-white);
	border-radius: 8px;
	padding: 40px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-detail-section .brand-content-title {
	font-size: 28px;
	margin-bottom: 25px;
	color: var(--brand-secondary-color);
	position: relative;
	padding-bottom: 15px;
}

.brand-detail-section .brand-content-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--brand-primary-color);
}

.brand-detail-section .brand-content-text {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
}

.brand-detail-section .brand-content-image {
	margin: 30px 0;
	text-align: center;
}

.brand-detail-section .brand-content-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-detail-section .brand-image-caption {
	text-align: center;
	font-size: 14px;
	color: #888;
	margin-top: 10px;
	font-style: italic;
}

.brand-detail-section .brand-feature-list {
	margin: 30px 0;
	padding-left: 20px;
}

.brand-detail-section .brand-feature-item {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
}

.brand-detail-section .brand-feature-item::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--brand-primary-color);
	font-weight: bold;
}

.brand-detail-section .brand-quote {
	background: #f8f0f0;
	border-left: 4px solid var(--brand-primary-color);
	padding: 20px;
	margin: 30px 0;
	font-style: italic;
	color: #555;
}

.brand-detail-section .brand-quote footer {
	margin-top: 15px;
	text-align: right;
	font-style: normal;
	color: #888;
	font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.brand-detail-section .brand-content-wrapper {
		flex-direction: column;
	}

	.brand-detail-section .brand-sidebar {
		flex: 0 0 auto;
		margin-bottom: 30px;
	}

	.brand-detail-section .brand-main-content {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.brand-detail-section {
		padding: 40px 0;
	}

	.brand-detail-section .brand-content-title {
		font-size: 24px;
	}

	.brand-detail-section .brand-main-content {
		padding: 20px;
	}
}

</style>