/* 新增的联系我们模块样式 */
.contact-box {
/*    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    flex: 1 1 100%; */
}
 
.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
 
.left-section {
    width: 45%;
}
 
.right-section {
    width: 50%;
}
 
.consult-form {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
 
.consult-form input,
.consult-form textarea {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
}
 
.btn-submit {
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
 
.btn-submit:hover {
    background-color: #1a1a2e;
    transform: translateY(-2px);
}
 
/* 调整footer-top的布局 */
.footer-top .con {
    display: flex;
    flex-wrap: wrap;
}
 
.footer-top .box {
    flex: 1;
    margin: 10px;
}
 
/* 社交图标样式 */
.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
 
.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 整体模块背景色 */
.section06 {
    background-color: #333;
}
 
/* 左侧联系信息样式 */
.left-section {
    color: white;
}
 
/* 表单区域样式 */
.consult-form {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
 
/* 输入框样式 */
.consult-form input,
.consult-form textarea {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
}
 
/* 按钮样式 */
.btn-submit {
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
 
.btn-submit:hover {
    background-color: #1a1a2e;
    transform: translateY(-2px);
}
/* 加盟优势容器 */
.advantage-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
}

/* 左侧联系信息 */
.left-section {
	width: 45%;
}

.contact-info {
	margin-bottom: 20px;
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	/* 保持容器尺寸不变 */
	width: 100px;
	height: 30px;

	/* 关键修复：强制图片适应容器 */
	align-items: center;
	justify-content: center;
}

.social-icon {
	width: 30px;
	height: 30px;
	background: #e9ecef;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icon img {
    /* 限制图片显示尺寸 */
    max-width: 100%;
    max-height: 100%;
    
    /* 保持图片比例 */
    object-fit: contain;
}

/* 右侧表单 */
.right-section {
	width: 50%;
}

.consult-form .form-group {
	margin-bottom: 15px;
}

.consult-form input,
.consult-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	font-size: 14px;
}

.consult-form textarea {
	height: 100px;
	resize: vertical;
}

.btn-submit {
	background: #2c3e50;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: #1a1a2e;
	transform: translateY(-2px);
}

/* 加盟优势单个框 */
.advantage-box {
	width: calc(33.333% - 20px);
	background: #423929;
	border-radius: 15px;
	padding: 45px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	text-align: center;
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

/* 悬停效果 */
.advantage-box:hover {
	transform: translateY(-5px);
}

/* 图标区域 */
.advantage-box .icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 15px;
	background: #e9ecef;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantage-box .icon img{
	width: 40px;
	height: 40px;
}

/* 标题样式 */
.advantage-box h3 {
	margin-bottom: 10px;
	color: #f8f9fa;
}

/* 描述文本样式 */
.advantage-box p {
	color: #f8f9fa;
	line-height: 1.5;
}

/* 了解更多按钮容器 */
.view-more {
	text-align: center;
	margin-top: 40px;
}

/* 了解更多按钮 */
.btn-view-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 30px;
	background: #2c3e50;
	color: white;
	/* border-radius: 30px; */
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid #2c3e50;
}

/* 按钮悬停效果 */
.btn-view-more:hover {
	background: transparent;
	color: #2c3e50;
}

/* 按钮图标旋转效果 */
.btn-view-more .icon {
	margin-left: 8px;
	font-size: 20px;
	transition: transform 0.3s ease;
}

.btn-view-more:hover .icon {
	transform: rotate(90deg);
}

/* 响应式调整 */
@media (max-width: 992px) {
	.advantage-box {
		width: calc(50% - 15px);
	}
}

@media (max-width: 768px) {
	.advantage-box {
		width: 100%;
	}
}

/* 查看更多按钮样式 */
.view-more {
	text-align: center;
	margin-top: 40px;
	padding-bottom: 20px;
}

.btn-view-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 50px;
	background: transparent;
	/* 改为透明背景 */
	color: #2c3e50;
	/* 文字颜色改为深色 */
	font-size: 16px;
	font-weight: 600;
	/* border-radius: 25px; */
	/* text-decoration: none; */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	border: 4px solid #926919;
	/* 添加外边框 */
}

.btn-view-more:hover {
	transform: translateY(-3px);
	background: #926919;
	/* 悬停时背景变为深色 */
	color: white;
	/* 文字变为白色 */
	border-color: #926919;
	/* 边框保持同色 */
	box-shadow: 0 6px 15px rgba(44, 62, 80, 0.2);
	/* 添加柔和阴影 */
}

.btn-view-more .icon {
	margin-left: 8px;
	font-size: 20px;
	transition: transform 0.3s ease;
}

.btn-view-more:hover .icon {
	transform: rotate(90deg);
	margin-left: 8px;
	font-size: 20px;
	transition: transform 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.view-more {
		margin-top: 30px;
	}

	.btn-view-more {
		min-width: 160px;
		height: 45px;
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	/* 图标区域 */
	.advantage-box .icon {
		width: 45px;
		height: 45px;
		margin: 0 auto 15px;
		background: #e9ecef;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
    .advantage-box .icon img {
        width: 35px;  /* 手机端图标宽度 */
        height: 35px; /* 手机端图标高度 */
    }
    /* 可选：调整图标容器间距，保持整体协调 */
    .advantage-box {
        padding: 15px 10px;
    }
}

/* 标题区域样式 */
.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title .mores {
	margin-bottom: 15px;
}

.section-title .mores a {
	font-weight: bold;
	color: #cd1c28;
	border-bottom: 2px solid #cd1c28;
	padding-bottom: 5px;
}

.section-title .subtitle {
	color: #666;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.product-container {
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}

.product-box {
	width: calc(25% - 20px);
	margin-bottom: 20px;
	background: #FFFFFF;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.product-box:hover {
	transform: translateY(-5px);
}

.product-box img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

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

.product-info h3 {
	color: #333;
	margin-bottom: 8px;
}

.product-info p {
	color: #666;
	line-height: 1.5;
}

/* 响应式调整 */
@media (max-width: 1024px) {
	.product-box {
		width: 48%;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.product-box {
		width: 100%;
	}
}

.fp-tableCell {
	vertical-align: middle;
	overflow: hidden;
}

.mores {
	width: 140px;
	height: 52px;
	margin: 50px auto 0;
	background: url(../img/kuang.png) no-repeat;
	background-size: 100% 100%;
	position: relative;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease 0.8s;
	-webkit-transition: all 1s ease 0.8s;
	-moz-transition: all 1s ease 0.8s;
	-ms-transition: all 1s ease 0.8s;
}

.mores a {
	display: block;
	text-align: center;
	line-height: 52px;
	color: #000;
	font-family: SourceHanSerifCN-Bold;
	letter-spacing: 4px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.mores a:hover {
	color: var(--yellow);
}

.section {
	overflow: hidden;
	position: relative;
}

.section01 .swiper-slide {
	height: 100vh;
	position: relative;
}

.section01 .swiper-slide:after {
	content: '';
	width: 100%;
	height: 33.33%;
	background: url(../img/banner_mask.png) no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.section01 .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.section01 .swiper-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.section01 .swiper-pagination {
	bottom: 5%;
	width: 100%;
}

.section01 .swiper-pagination .swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
	margin: 0 15px;
}

.section01 .swiper-pagination .swiper-pagination-bullet-active {
	width: 20px;
	height: 20px;
	border: 4px solid var(--yellow);
	background: transparent;
	position: relative;
	top: 6px;
}

.section02 .text {
	position: absolute;
	width: 882px;
	max-width: 90%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	top: 15%;
	z-index: 4;
	text-align: center;
}

.section02 .text .title {
	position: relative;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease 0.2s;
	-webkit-transition: all 1s ease 0.2s;
	-moz-transition: all 1s ease 0.2s;
	-ms-transition: all 1s ease 0.2s;
}

.section02 .text h2 {
	font-family: SourceHanSerifCN-Bold;
	color: #333;
	margin: 30px auto 20px;
	position: relative;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease 0.4s;
	-webkit-transition: all 1s ease 0.4s;
	-moz-transition: all 1s ease 0.4s;
	-ms-transition: all 1s ease 0.4s;
}

.section02 .text p {
	color: #7d7d7d;
	line-height: 3;
	position: relative;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease 0.6s;
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all 1s ease 0.6s;
}

.section02 .people {
	width: 100%;
	height: 100vh;
}

.section02 .people img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	right: -20%;
	transition: all 2s;
	-webkit-transition: all 2s;
	-moz-transition: all 2s;
	-ms-transition: all 2s;
}

.section02 .tu {
	position: absolute;
	width: 62%;
	right: 0;
	bottom: -40%;
	transition: all 2s;
	-webkit-transition: all 2s;
	-moz-transition: all 2s;
	-ms-transition: all 2s;
}

.section02 .tu img {
	width: 100%;
}

.section02.active .text .title {
	opacity: 1;
	transform: translateY(0);
}

.section02.active .text h2 {
	opacity: 1;
	transform: translateY(0);
}

.section02.active .text p {
	opacity: 1;
	transform: translateY(0);
	text-align: left;
}

.section02.active .text .mores {
	opacity: 1;
	transform: translateY(0);
}

.section02.active .people img {
	right: 0;
}

.section02.active .tu {
	bottom: 0;
}

.section03 {
	height: 100vh;
	background: url(../img/bg2.jpg) no-repeat;
	background-size: cover;
}

.section03 .text {
	position: absolute;
	width: 484px;
	max-width: 90%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 10%;
	z-index: 4;
	text-align: center;
}

.section03 .text .title {
	position: relative;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease 0.2s;
	-webkit-transition: all 1s ease 0.2s;
	-moz-transition: all 1s ease 0.2s;
	-ms-transition: all 1s ease 0.2s;
}

.section03 .text .title h2 {
	color: #666;
	opacity: 0.7;
	line-height: 1.3;
	text-align: left;
	position: absolute;
	bottom: -6px;
	left: 54%;
}

.section03 .text p {
	margin-top: 50px;
	color: #3d3d3d;
	line-height: 2;
	position: relative;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease 0.4s;
	-webkit-transition: all 1s ease 0.4s;
	-moz-transition: all 1s ease 0.4s;
	-ms-transition: all 1s ease 0.4s;
}

.section03 .left {
	position: absolute;
	width: 45%;
	left: 0;
	top: 0;
	z-index: 1;
}

.section03 .left .swiper-slide {
	opacity: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 1.5s ease 0.5s;
	-webkit-transition: all 1.5s ease 0.5s;
	-moz-transition: all 1.5s ease 0.5s;
	-ms-transition: all 1.5s ease 0.5s;
}

.section03 .left .swiper-slide .tu {
	width: 304px;
	height: 75vh;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	top: 5vh;
}

.section03 .left .swiper-slide .tu img {
	max-width: 100%;
	max-height: 100%;
	position: relative;
	z-index: 2;
}

.section03 .left .swiper-slide .tu .ying {
	position: absolute;
	width: 95%;
	height: 85%;
	bottom: 10px;
	right: -40%;
	z-index: 1;
}

.section03 .left .swiper-slide .tu .ying img {
	width: 100%;
	height: 100%;
}

.section03 .left .swiper-slide .tu .sign {
	position: absolute;
	writing-mode: vertical-rl;
	letter-spacing: 4px;
	color: #f9dac0;
	font-family: SourceHanSerifCN-Bold;
	left: -20px;
	top: -10%;
	padding: 38px 14px 42px;
	background-image: url(../img/sign.png);
	background-size: 100% 100%;
	opacity: 0;
	transition: all 1s ease 0.5s;
	-webkit-transition: all 1s ease 0.5s;
	-moz-transition: all 1s ease 0.5s;
	-ms-transition: all 1s ease 0.5s;
}

.section03 .left .swiper-slide .tu .sign span {
	writing-mode: horizontal-tb;
}

.section03 .left .swiper-slide-active {
	opacity: 1;
}

.section03 .left .swiper-slide-active .tu .sign {
	top: 0;
	opacity: 1;
}

.section03 .right {
	position: absolute;
	width: 48%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: 2;
}

.section03 .right ul {
	display: flex;
	justify-content: space-between;
	height: 100%;
}

.section03 .right ul li {
	margin-right: 30px;
	width: 20%;
	border: 1px solid #c29b5d;
	padding: 14px;
	height: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	cursor: pointer;
	background: rgba(163, 107, 68, 0.1);
	position: relative;
	opacity: 0;
	transform: translateX(50px);
	transition: all 1s ease 0.2s;
	-webkit-transition: all 1s ease 0.2s;
	-moz-transition: all 1s ease 0.2s;
	-ms-transition: all 1s ease 0.2s;
}

.section03 .right ul li:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(../img/bg5.jpg) no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.section03 .right ul li h2 {
	writing-mode: vertical-rl;
	color: #a36b44;
	font-family: HarmonyOS_Sans_Medium;
	position: relative;
}

.section03 .right ul li h2 span {
	writing-mode: horizontal-tb;
}

.section03 .right ul li .tu {
	width: 44px;
	margin-top: 40px;
	position: relative;
}

.section03 .right ul li .tu img {
	width: 100%;
}

.section03 .right ul li:nth-child(2) {
	height: 60%;
	transition: all 1s ease 0.4s;
	-webkit-transition: all 1s ease 0.4s;
	-moz-transition: all 1s ease 0.4s;
	-ms-transition: all 1s ease 0.4s;
}

.section03 .right ul li:nth-child(3) {
	height: 46%;
	transition: all 1s ease 0.6s;
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all 1s ease 0.6s;
}

.section03 .right ul li:nth-child(4) {
	height: 53%;
	transition: all 1s ease 0.8s;
	-webkit-transition: all 1s ease 0.8s;
	-moz-transition: all 1s ease 0.8s;
	-ms-transition: all 1s ease 0.8s;
}

.section03 .right ul li:nth-child(5) {
	height: 38%;
	transition: all 1s ease 1s;
	-webkit-transition: all 1s ease 1s;
	-moz-transition: all 1s ease 1s;
	-ms-transition: all 1s ease 1s;
}

.section03 .right ul li.active:before {
	opacity: 1;
}

.section03 .swiper-btns {
	position: absolute;
	width: 170px;
	right: 9%;
	bottom: 25%;
	display: flex;
	justify-content: space-between;
}

.section03 .swiper-btns .swiper-button-prev {
	position: relative;
	margin-top: 0;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: rgba(215, 182, 130, 0.5);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.section03 .swiper-btns .swiper-button-prev:before {
	display: none;
}

.section03 .swiper-btns .swiper-button-prev:after {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/prev_color.png);
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.section03 .swiper-btns .swiper-button-prev:hover {
	background: #cfa972;
}

.section03 .swiper-btns .swiper-button-prev:hover:after {
	background-image: url(../img/prev_white.png);
}

.section03 .swiper-btns .swiper-button-next {
	position: relative;
	margin-top: 0;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: rgba(215, 182, 130, 0.5);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.section03 .swiper-btns .swiper-button-next:before {
	display: none;
}

.section03 .swiper-btns .swiper-button-next:after {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/next_color.png);
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.section03 .swiper-btns .swiper-button-next:hover {
	background: #cfa972;
}

.section03 .swiper-btns .swiper-button-next:hover:after {
	background-image: url(../img/next_white.png);
}

.section03.active .text .title {
	opacity: 1;
	transform: translateY(0);
}

.section03.active .text p {
	opacity: 1;
	transform: translateY(0);
}

.section03.active .text .mores {
	opacity: 1;
	transform: translateY(0);
}

.section03.active .right ul li {
	opacity: 1;
	transform: translateX(0);
}

.section04 .con .title {
	text-align: center;
	position: relative;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease 0.2s;
	-webkit-transition: all 1s ease 0.2s;
	-moz-transition: all 1s ease 0.2s;
	-ms-transition: all 1s ease 0.2s;
}

.section04 .con .title h2 {
	color: #666;
	opacity: 0.7;
	line-height: 1.3;
	text-align: left;
	position: absolute;
	bottom: -6px;
	left: 52%;
}

.section04 .con .ctn-list {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

.section04 .con .ctn-list .left {
	width: 62%;
}

.section04 .con .ctn-list .left .top {
	padding-bottom: 14px;
	border-bottom: 2px solid #d7b682;
}

.section04 .con .ctn-list .left .top a {
	font-family: SourceHanSerifCN-Bold;
	color: #000;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.section04 .con .ctn-list .left .top a:hover {
	color: var(--yellow);
}

.section04 .con .ctn-list .left .bottom ul li {
	margin-top: 70px;
	opacity: 0.5;
	transform: translateY(30px);
	transition: all 1s ease 0.2s;
	-webkit-transition: all 1s ease 0.2s;
	-moz-transition: all 1s ease 0.2s;
	-ms-transition: all 1s ease 0.2s;
}

.section04 .con .ctn-list .left .bottom ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section04 .con .ctn-list .left .bottom ul li a .text {
	width: calc(100% - 160px);
}

.section04 .con .ctn-list .left .bottom ul li a .text .txt {
	display: flex;
	align-items: center;
}

.section04 .con .ctn-list .left .bottom ul li a .text .txt h3 {
	color: #999;
	margin-right: 20px;
}

.section04 .con .ctn-list .left .bottom ul li a .text .txt h4 {
	font-family: HarmonyOS_Sans_Medium;
	color: #865635;
}

.section04 .con .ctn-list .left .bottom ul li a .text h2 {
	margin-top: 10px;
	color: #333;
	font-family: HarmonyOS_Sans_Medium;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.section04 .con .ctn-list .left .bottom ul li a h5 {
	width: 120px;
	text-align: right;
	color: #a36b44;
	font-family: HarmonyOS_Sans_Medium;
	position: relative;
}

.section04 .con .ctn-list .left .bottom ul li a h5:before {
	content: '';
	width: 1px;
	height: 50px;
	background: #d3cac4;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.section04 .con .ctn-list .left .bottom ul li a h5 span {
	margin-left: 10px;
	font-size: 20px;
}

.section04 .con .ctn-list .left .bottom ul li a:hover .text h2 {
	color: #a36b44;
}

.section04 .con .ctn-list .left .bottom ul li:first-child {
	margin-top: 50px;
}

.section04 .con .ctn-list .left .bottom ul li:nth-child(2) {
	transition: all 1s ease 0.4s;
	-webkit-transition: all 1s ease 0.4s;
	-moz-transition: all 1s ease 0.4s;
	-ms-transition: all 1s ease 0.4s;
}

.section04 .con .ctn-list .left .bottom ul li:nth-child(3) {
	transition: all 1s ease 0.6s;
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all 1s ease 0.6s;
}

.section04 .con .ctn-list .right {
	width: 29%;
	position: relative;
	overflow: hidden;
}

.section04 .con .ctn-list .right .tu img {
	width: 100%;
	border-radius: 10px;
}

.section04 .con .ctn-list .right .text {
	position: absolute;
	top: 70px;
	right: 70px;
}

.section04 .con .ctn-list .right .text h2 {
	font-family: SourceHanSerifCN-Bold;
	color: #865635;
}

.section04 .con .ctn-list .right .text .view {
	display: flex;
	color: #865635;
	margin-top: 20px;
}

.section04 .con .ctn-list .right .text .view h3 {
	text-decoration: underline;
	text-underline-offset: 4px;
	margin-right: 4px;
}

.section04 .con .ctn-list .right:hover .tu img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
}

.section04.active .con .title {
	opacity: 1;
	transform: translateY(0);
}

.section04.active .con .ctn-list .bottom ul li {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 1680px) {
	.mores {
		margin: 2.5vw auto 0;
	}

	.section02 .text .title img {
		width: 90px;
	}

	.section03 .text .title img {
		width: 90px;
	}

	.section04 .con .title img {
		width: 90px;
	}
}

@media screen and (max-width: 1600px) {
	.mores {
		width: 130px;
		height: 48px;
	}

	.mores a {
		line-height: 48px;
	}

	.section02 .text {
		width: 800px;
	}

	.section03 .text {
		width: 440px;
	}

	.section03 .text p {
		margin-top: 2.5vw;
	}

	.section03 .right ul li .tu {
		margin-top: 20px;
		width: 40px;
	}

	.section04 .con .ctn-list .left .bottom ul li {
		margin-top: 3.5vw;
	}

	.section04 .con .ctn-list .left .bottom ul li:first-child {
		margin-top: 2.5vw;
	}

	.section04 .con .ctn-list .right .text {
		top: 3.5vw;
		right: 3.5vw;
	}

	.section04 .con .ctn-list .right .text .view {
		margin-top: 14px;
	}
}

@media screen and (max-width: 1440px) {
	.section02 .text .title img {
		width: 80px;
	}

	.section02 .text h2 {
		margin: 1.5vw auto 1vw;
	}

	.section03 .text .title img {
		width: 80px;
	}

	.section04 .con .title img {
		width: 80px;
	}
}

@media screen and (max-width: 1024px) {
	.section01 {
		margin-top: 80px;
	}

	.section01 .swiper-slide {
		height: calc(100vh - 80px);
	}

	.section01 .swiper-slide:after {
		display: none;
	}

	.section02 .text h2 {
		letter-spacing: 2px;
		margin: 20px auto 10px;
	}

	.section02 .people {
		height: 700px;
	}

	.section02 .people img {
		right: 0;
	}

	.section03 {
		height: 700px;
	}

	.section03 .text {
		width: 350px;
	}

	.section03 .left .swiper-slide .tu {
		width: 280px;
		height: 60vh;
		top: 0;
	}

	.section03 .left .swiper-slide .tu .ying {
		width: 70%;
		right: -10%;
	}

	.section03 .right ul li {
		margin-right: 10px;
	}

	.section04 {
		padding: 60px 0;
	}
}

@media screen and (max-width: 768px) {
	.mores {
		width: 120px;
		height: 46px;
		margin: 30px auto 0;
	}
	
	.product-info{
	    padding: 15px;
	}

	.mores a {
		line-height: 46px;
	}

	.section01 {
		margin-top: 60px;
	}

	.section01 .swiper-slide {
		height: auto;
	}

	.section01 .swiper-pagination {
		bottom: 10px;
	}

	.section01 .swiper-pagination .swiper-pagination-bullet {
		width: 6px;
		height: 6px;
		margin: 0 4px;
	}

	.section01 .swiper-pagination .swiper-pagination-bullet-active {
		width: 12px;
		height: 12px;
		border: 2px solid var(--yellow);
		top: 3px;
	}

	.section02 {
		padding: 40px 0 120px;
	}

	.section02 .text {
		position: relative;
		width: 90%;
		left: 5%;
		top: 0;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
	}

	.section02 .text .title img {
		width: 60px;
	}

	.section02 .text h2 {
		margin: 30px auto 20px;
	}

	.section02 .text p {
		line-height: 1.6;
	}

	.section02 .people {
		position: absolute;
		height: 100%;
		left: 0;
		top: 0;
	}

	.section02 .people img {
		width: auto;
	}

	.section02 .tu {
		width: 70%;
	}

	.section03 {
		height: auto;
		padding: 40px 0;
		background: none;
	}

	.section03 .text {
		position: relative;
		width: 90%;
		left: 5%;
		top: 0;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		bottom: 0;
	}

	.section03 .text .title img {
		width: 60px;
	}

	.section03 .text .title h2 {
		font-size: 12px;
	}

	.section03 .text p {
		margin-top: 20px;
		line-height: 1.6;
	}

	.section03 .left {
		position: relative;
		width: 100%;
		margin-top: 50px;
	}

	.section03 .left .swiper-slide {
		height: 300px;
	}

	.section03 .left .swiper-slide .tu {
		height: 300px;
	}

	.section03 .left .swiper-slide .tu .ying {
		width: 40%;
		right: 30px;
	}

	.section03 .left .swiper-slide .tu .sign {
		padding: 30px 8px 40px;
		left: 0;
	}

	.section03 .right {
		display: none;
	}

	.section03 .swiper-btns {
		position: relative;
		width: 100%;
		right: 0;
		bottom: 0;
		justify-content: center;
		margin-top: 40px;
	}

	.section03 .swiper-btns .swiper-button-prev {
		width: 44px;
		height: 44px;
		left: 0;
		margin-right: 20px;
	}

	.section03 .swiper-btns .swiper-button-next {
		width: 44px;
		height: 44px;
		right: 0;
	}

	.section04 {
		padding: 20px 0 40px;
	}

	.section04 .con .title img {
		width: 60px;
	}

	.section04 .con .title h2 {
		font-size: 12px;
		left: 55%;
	}

	.section04 .con .ctn-list {
		flex-wrap: wrap;
		margin-top: 30px;
	}

	.section04 .con .ctn-list .left {
		width: 100%;
		order: 2;
		margin-top: 30px;
	}

	.section04 .con .ctn-list .left .top {
		padding-bottom: 10px;
	}

	.section04 .con .ctn-list .left .bottom ul li {
		margin-top: 30px !important;
	}

	.section04 .con .ctn-list .left .bottom ul li a {
		display: block;
	}

	.section04 .con .ctn-list .left .bottom ul li a .text {
		width: 100%;
	}

	.section04 .con .ctn-list .left .bottom ul li a h5 {
		width: 100%;
		text-align: left;
		margin-top: 10px;
	}

	.section04 .con .ctn-list .left .bottom ul li a h5:before {
		display: none;
	}

	.section04 .con .ctn-list .left .bottom ul li a h5 span {
		font-size: 16px;
	}

	.section04 .con .ctn-list .right {
		width: 100%;
	}

	.section04 .con .ctn-list .right .text {
		top: 40px;
		right: 60px;
	}

	.section04 .con .ctn-list .right .text .view {
		margin-top: 10px;
	}
	.section05 {
		height: auto;
		/* padding: 40px 0; */
		background: none;
	}
}
/* 轮播基础样式 - 重点修复滑动相关样式 */
:root {
    --swiper-bullet-size: 8px;
    --swiper-bullet-gap: 6px;
    --swiper-navigation-size: 24px;
    --carousel-padding: 5%;
}

.swiper-container1 {
    width: 100%;
    padding: var(--carousel-padding) 0;
    /* 确保轮播容器可以接收触摸事件 */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* 移除可能阻止滑动的样式 */
.swiper-wrapper, .swiper-slide {
    pointer-events: auto;
    user-select: none; /* 防止滑动时选中文本 */
}

.swiper-pagination-bullet-active{
	background: #aa7c4d;
}

/* 确保图片不会阻止滑动事件 */
.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    pointer-events: none; /* 图片不接收事件，确保滑动事件传递给轮播 */
}

/* 分页器和导航按钮样式保持不变 */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-bullet {
    width: var(--swiper-bullet-size);
    height: var(--swiper-bullet-size);
    margin: 0 var(--swiper-bullet-gap) !important;
    background: #ccc;
    opacity: 1;
}

.swiper-bullet-active {
    background: #333;
    transform: scale(1.2);
}

.swiper-button-prev, .swiper-button-next {
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    margin-top: calc(-var(--swiper-navigation-size) / 2);
    color: #333;
    z-index: 10; /* 确保导航按钮在最上层 */
}

.swiper-button-prev::after, .swiper-button-next::after {
    font-size: var(--swiper-navigation-size);
}

/* 响应式配置 */
@media (max-width: 1024px) {
    .desktop-view {
        display: none !important;
    }
    .mobile-view {
        display: block !important;
    }
}

@media (min-width: 1025px) {
    .desktop-view {
        /* display: block !important; */
    }
    .mobile-view {
        display: none !important;
    }
}

@media (min-width: 768px) {
    :root {
        --swiper-bullet-size: 10px;
        --swiper-bullet-gap: 8px;
        --swiper-navigation-size: 32px;
        --carousel-padding: 3%;
    }
}

@media (min-width: 1024px) {
    :root {
        --swiper-bullet-size: 12px;
        --swiper-bullet-gap: 10px;
        --swiper-navigation-size: 40px;
        --carousel-padding: 2%;
    }
}
/* 响应式样式 - 手机端显示 */
@media (max-width: 768px) {
    .contact-content {
        display: flex;
        flex-direction: column;
    }
    
    .left-section, .right-section {
        width: 100% !important;
        padding: 0 15px;
    }
    
    .footer {
        /* padding: 20px 0; */
    }
    
    .fnt_30 {
        font-size: 24px !important;
    }
    
    .fnt_20 {
        font-size: 18px !important;
    }
    
    .fnt_14 {
        font-size: 13px !important;
    }
    
    .contact-info {
        margin-bottom: 15px;
    }
    
    .form-group input, 
    .form-group textarea {
        font-size: 14px !important;
    }
	.social-icons{
		width: 100%;
	}
}