/* 手机端优化 - 强制一行显示2个项目 */
@media (max-width: 768px) {
    /* 重置可能影响布局的样式 */
    .ctn1 .numCount {
        display: flex !important;
        flex-wrap: wrap !important;
        padding: 0 10px !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    /* 关键设置：一行2个项目 */
    .ctn1 .numCount li {
        width: 50% !important;       /* 强制50%宽度 */
        flex: 0 0 50% !important;    /* flex布局固定宽度 */
        max-width: 50% !important;   /* 最大宽度限制 */
        padding: 10px 8px !important;
        box-sizing: border-box !important; /* 包含内边距计算 */
        float: none !important;      /* 清除可能的浮动 */
        display: block !important;   /* 确保块级显示 */
    }
    
    /* 调整内部元素大小 */
    .ctn1 .numCount .nums h2 {
        font-size: 20px !important;
        margin: 5px 0 !important;
    }
    .ctn1 .numCount .fnt_20 {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    /* 移除可能的间隔元素 */
    .ctn1 .numCount > .clearfix,
    .ctn1 .numCount > .spacer {
        display: none !important;
    }
}

/* 平板过渡适配 */
@media (min-width: 769px) and (max-width: 1024px) {
    .ctn1 .numCount li {
        width: 33.333% !important; /* 平板一行3个 */
        flex: 0 0 33.333% !important;
    }
}
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 比例 */
    overflow: hidden;
    border-radius: 4px; /* 可选：添加圆角 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* 可选：添加阴影 */
}

.company-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-container {
	width: 100%;
	height: 800px;
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
}

.banner-slider {
	width: 100%;
	height: 100%;
	position: relative;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide.active {
	opacity: 1;
}

.slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.slide-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 0 20px;
	animation: fadeInUp 1s ease;
}

.slide-title {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
	font-size: 22px;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-button {
	display: inline-block;
	background-color: #f1a264;
	color: white;
	padding: 12px 30px;
	font-size: 18px;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(241, 162, 100, 0.3);
}

.slide-button:hover {
	background-color: #e09154;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(241, 162, 100, 0.4);
}

.banner-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 10;
}

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

.control-dot.active {
	background-color: white;
	transform: scale(1.2);
}

.banner-arrows {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 10;
	transform: translateY(-50%);
}

.arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.arrow:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 响应式设计 */
@media (max-width: 768px) {
	.banner-container {
		height: 400px;
	}

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

	.slide-subtitle {
		font-size: 18px;
	}

	.slide-button {
		padding: 5px 15px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.banner-container {
		height: 350px;
	}

	.slide-title {
		font-size: 20px;
	}

	.slide-subtitle {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.arrow {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

/* 备用箭头图标方案 */
.arrow-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

.arrow.prev .arrow-icon {
	transform: rotate(-135deg);
	margin-right: 2px;
}

.arrow.next .arrow-icon {
	transform: rotate(45deg);
	margin-left: 2px;
}

.container {
	max-width: 1500px;
	margin: 50px auto;
	padding: 80px 20px;
}

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

.section-title h2 {
	font-size: 30px;
	color: #2c3e50;
	position: relative;
	padding-bottom: 15px;
	display: inline-block;
}

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

.philosophy-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.philosophy-item {
	flex: 1;
	min-width: 300px;
	text-align: center;
	transition: all 0.3s ease;
}

.image-container {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.philosophy-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.hover-text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	/* background: linear-gradient(to top, rgba(241, 162, 100, 0.9), transparent); */
	color: white;
	padding: 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
	text-align: left;
	font-size: 15px;
}

.image-container:hover .hover-text {
	opacity: 1;
	transform: translateY(0);
}

.image-container:hover .philosophy-image {
	transform: scale(1.05);
}

.philosophy-title {
	font-size: 22px;
	color: #2c3e50;
	margin-bottom: 10px;
}

.philosophy-desc {
	font-size: 16px;
	color: #7f8c8d;
	line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.philosophy-container {
		flex-direction: column;
		margin-top: 20px;
	}

	.philosophy-item {
		min-width: 100%;
	}
	.philosophy-title {
		font-size: 20px;
	}
}

.ctn1 {
	position: relative;
	background: #fbfbfb;
	overflow: hidden;
}

.ctn1 .ctn-top {
	padding-top: 90px;
	position: relative;
}

.ctn1 .ctn-top .ctn-list {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}

.ctn1 .ctn-top .ctn-list .left {
	width: 50%;
	padding-left: 12%;
	padding-bottom: 40px;
}

.ctn1 .ctn-top .ctn-list .left h2 {
	font-family: HarmonyOS_Sans_Medium;
}

.ctn1 .ctn-top .ctn-list .left .text p {
	line-height: 2;
	color: #666;
	text-align: justify;
	margin-top: 40px;
}

.ctn1 .ctn-top .ctn-list .right {
	width: 46%;
	overflow: hidden;
}

.ctn1 .ctn-top .ctn-list .right img {
	width: 100%;
}

.ctn1 .ctn-top .ctn-list .right:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
}

.ctn1 .ctn-top .di {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
}

.ctn1 .ctn-top .di img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ctn1 .ctn-bottom {
	background: #f2eee6;
	padding: 90px 0;
	margin-top: 160px;
}

.ctn1 .ctn-bottom ul {
	display: flex;
	justify-content: space-between;
}

.ctn1 .ctn-bottom ul li {
	display: flex;
	align-items: center;
}

.ctn1 .ctn-bottom ul li .icons {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: #fff;
	margin-right: 20px;
	overflow: hidden;
}

.ctn1 .ctn-bottom ul li .icons img {
	width: 100%;
}

.ctn1 .ctn-bottom ul li .icons:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
}

.ctn1 .ctn-bottom ul li .text .nums {
	display: flex;
	align-items: flex-end;
}

.ctn1 .ctn-bottom ul li .text .nums h2 {
	font-size: 60px;
	font-family: HarmonyOS_Sans_Bold;
	line-height: 1;
	white-space: nowrap;
}

.ctn1 .ctn-bottom ul li .text .nums span {
	font-family: HarmonyOS_Sans_Bold;
}

.ctn1 .ctn-bottom ul li .text h3 {
	color: #666;
	margin-top: 10px;
}

.ctn2 {
	padding: 120px 0 130px;
	background: url(../img/brand/bg1.jpg) no-repeat;
	background-size: cover;
	overflow: hidden;
}

.ctn2 .ctn-top {
	margin-top: 60px;
}

.ctn2 .ctn-top .swiper-slide {
	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;
}

.ctn2 .ctn-top .swiper-slide .content {
	position: relative;
	width: 70%;
	margin: 0 auto;
}

.ctn2 .ctn-top .swiper-slide .content .left {
	width: 72%;
	border-radius: 20px;
	overflow: hidden;
}

.ctn2 .ctn-top .swiper-slide .content .left img {
	width: 100%;
}

.ctn2 .ctn-top .swiper-slide .content .left:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
}

.ctn2 .ctn-top .swiper-slide .content .right {
	position: absolute;
	width: 436px;
	height: 86%;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0px 14px 14px 0px rgba(174, 192, 198, 0.2);
	right: 0;
	top: 7%;
	padding: 0 60px;
	display: flex;
	align-items: center;
}

.ctn2 .ctn-top .swiper-slide .content .right h2 {
	font-family: HarmonyOS_Sans_Medium;
	padding-bottom: 20px;
	position: relative;
}

.ctn2 .ctn-top .swiper-slide .content .right h2:after {
	content: '';
	width: 50px;
	height: 6px;
	background: var(--color);
	position: absolute;
	left: 0;
	bottom: 0;
}

.ctn2 .ctn-top .swiper-slide .content .right p {
	color: #888;
	margin-top: 50px;
	line-height: 1.8;
}

.ctn2 .ctn-top .swiper-slide-active {
	opacity: 1;
}

.ctn2 .ctn-top .swiper-pagination {
	display: none;
}

.ctn2 .ctn-top .swiper-button-prev {
	left: 9%;
	margin-top: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.ctn2 .ctn-top .swiper-button-prev:before {
	display: none;
}

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

.ctn2 .ctn-top .swiper-button-prev:hover {
	background: #cfa972;
}

.ctn2 .ctn-top .swiper-button-prev:hover:after {
	background-image: url(../image/prev_white.png);
}

.ctn2 .ctn-top .swiper-button-next {
	right: 9%;
	margin-top: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.ctn2 .ctn-top .swiper-button-next:before {
	display: none;
}

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

.ctn2 .ctn-top .swiper-button-next:hover {
	background: #cfa972;
}

.ctn2 .ctn-top .swiper-button-next:hover:after {
	background-image: url(../image/next_white.png);
}

.ctn2 .ctn-bottom {
	margin-top: 100px;
	padding: 0 5%;
	position: relative;
}

.ctn2 .ctn-bottom:before {
	content: '';
	width: 100%;
	height: 2px;
	border-bottom: 2px dashed #b6b6b6;
	position: absolute;
	left: 0;
	bottom: 7px;
}

.ctn2 .ctn-bottom .swiper-slide h2 {
	text-align: center;
	color: #999;
	font-family: HarmonyOS_Sans_Medium;
	padding-bottom: 40px;
	position: relative;
	cursor: pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.ctn2 .ctn-bottom .swiper-slide h2:after {
	content: '';
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #b6b6b6;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.ctn2 .ctn-bottom .swiper-slide.active h2 {
	color: var(--color);
}

.ctn2 .ctn-bottom .swiper-slide.active h2:after {
	background: var(--color);
	border: 2px solid var(--color);
}

@media screen and (max-width: 1600px) {
	.ctn1 .ctn-top {
		padding-top: 4.5vw;
	}

	.ctn1 .ctn-top .ctn-list {
		margin-top: 2.5vw;
	}

	.ctn1 .ctn-top .ctn-list .left .text p {
		margin-top: 2vw;
	}

	.ctn1 .ctn-bottom {
		padding: 4.5vw 0;
		margin-top: 100px;
	}

	.ctn1 .ctn-bottom ul li .text .nums h2 {
		font-size: 3vw;
	}

	.ctn2 {
		padding: 13vw 0 6.5vw;
	}

	.ctn2 .ctn-top {
		margin-top: 3vw;
	}

	.ctn2 .ctn-bottom {
		margin-top: 5vw;
	}
}

@media screen and (max-width: 1440px) {
	.ctn2 .ctn-top .swiper-slide .content .right {
		width: 390px;
		padding: 0 40px;
	}

	.ctn2 .ctn-top .swiper-slide .content .right h2 {
		padding-bottom: 14px;
	}

	.ctn2 .ctn-top .swiper-slide .content .right h2:after {
		width: 40px;
		height: 4px;
	}

	.ctn2 .ctn-top .swiper-slide .content .right p {
		margin-top: 2.5vw;
	}
}

@media screen and (max-width: 1200px) {
	.ctn1 .ctn-top .ctn-list .left {
		padding-left: 6%;
	}

	.ctn1 .ctn-bottom ul li .icons {
		width: 80px;
		height: 80px;
	}

	.ctn2 .ctn-top .swiper-slide .content {
		width: 80%;
	}

	.ctn2 .ctn-top .swiper-slide .content .right {
		width: 360px;
		padding: 0 30px;
	}

	.ctn2 .ctn-top .swiper-button-prev {
		left: 2%;
	}

	.ctn2 .ctn-top .swiper-button-next {
		right: 2%;
	}
}

@media screen and (max-width: 768px) {
	.ctn1 {
		padding: 0 5%;
	}

	.ctn1 .ctn-top {
		padding-top: 60px;
	}

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

	.ctn1 .ctn-top .ctn-list .left {
		padding-left: 0;
		width: 100%;
		padding-bottom: 20px;
	}

	.ctn1 .ctn-top .ctn-list .left .text p {
		line-height: 1.6;
		margin-top: 10px;
	}

	.ctn1 .ctn-top .ctn-list .right {
		width: 100%;
	}

	.ctn1 .ctn-top .di {
		display: none;
	}

	.ctn1 .ctn-bottom {
		margin-top: 20px;
		padding: 30px 0;
	}

	.ctn1 .ctn-bottom ul {
		display: block;
	}

	.ctn1 .ctn-bottom ul li .icons {
		width: 60px;
		height: 60px;
	}

	.ctn1 .ctn-bottom ul li .text .nums h2 {
		font-size: 24px;
	}

	.ctn1 .ctn-bottom ul li .text .nums span {
		font-size: 14px;
	}

	.ctn1 .ctn-bottom ul li .text h3 {
		font-size: 14px;
		margin-top: 4px;
	}

/* 	.ctn1 .ctn-bottom ul li:not(:first-child) {
	} */

	.ctn2 {
		padding: 40px 0;
	}

	.ctn2 .ctn-top {
		margin-top: 20px;
	}

	.ctn2 .ctn-top .swiper-slide .content {
		width: 90%;
	}

	.ctn2 .ctn-top .swiper-slide .content .left {
		width: 100%;
		border-radius: 8px;
	}

	.ctn2 .ctn-top .swiper-slide .content .right {
		position: relative;
		width: 100%;
		border-radius: 0;
		box-shadow: none;
		height: auto;
		top: 0;
		padding: 20px;
	}

	.ctn2 .ctn-top .swiper-slide .content .right h2 {
		padding-bottom: 10px;
	}

	.ctn2 .ctn-top .swiper-slide .content .right h2:after {
		width: 30px;
		height: 3px;
	}

	.ctn2 .ctn-top .swiper-slide .content .right p {
		margin-top: 20px;
		line-height: 1.6;
		font-size: 14px;
	}

	.ctn2 .ctn-top .swiper-pagination {
		display: block;
		position: relative;
		width: 100%;
		bottom: 0;
		margin-top: 20px;
	}

	.ctn2 .ctn-top .swiper-pagination .swiper-pagination-bullet {
		width: 6px;
		height: 6px;
	}

	.ctn2 .ctn-top .swiper-pagination .swiper-pagination-bullet-active {
		background: var(--color);
	}

	.ctn2 .ctn-top .swiper-button-prev {
		display: none;
	}

	.ctn2 .ctn-top .swiper-button-next {
		display: none;
	}

	.ctn2 .ctn-bottom {
		display: none;
	}
	.container {
	    max-width: 1500px;
	    margin: 0 auto;
    	padding: 80px 20px;
    }
}