.product-banner-container {
	width: 100%;
	background: url(../images/banner-mp.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
}

.product-banner-container:after {
	background: linear-gradient(to right, rgba(0, 0, 40, 0.82) 0, rgba(0, 0, 40, 0.7) 40%, rgba(0, 0, 40, 0.2) 65%, rgba(255, 255, 255, 0) 100%);
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 0;
}

.banner-pad {
	padding: 10vh 0;
}

.section-pad {
	padding: 5vh 0;
}

.section-padtop {
	padding: 10vh 0 5vh 0;
}

.section-padbot {
	padding: 5vh 0 10vh 0;
}

.product-container {
	max-width: 1280px;
	margin: 0 auto;
	z-index: 1;
	position: sticky;
}

.bg-white {
	background-color: #fff;
}

.white {
	color: #fff;
}

.product-banner-heading {
	font-size: 2.5rem !important;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px !important;
}

.product-banner-text {
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 30px;
	width: 50%;
}

.product-banner-button {
	padding: 1rem 2rem;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	color:#fff;
}

.btn-buy {
	border: 2px solid #faa50a;
	background: #faa50a;
	color: #000000;
	margin-right: 20px;
}

.btn-use {
	border: 2px solid #ffffff;
}


.de-banner {
	background-color: var(--bg-color);
	padding: 1rem 0;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
}

.de-banner_text h3 {
	margin-bottom: 0.4rem;
}

.de-banner_text p {
	margin-bottom: 0;
	font-size: 0.9rem;
}



.hero-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 5rem 0;
}

.hero-content {
	display: flex;
}

.hero-left {
	padding-right: 20px;
	color: #fff;
}

.hero-left,
.hero-right {
	flex: 1;
}

.hero-heading {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.hero-text {
	margin-bottom: 1.5rem;
	line-height: 1.8rem;
}


.product-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 10vh;
}

.feature-item {
	padding: 20px;
	background-color: #fff;
	padding: 20px;
}

.feature-item strong {
	font-size: 0.9rem;
}

.feature-item h3 {
	margin-top: 5px;
	margin-bottom: 20px;
}

.feature-item p {
	font-size: 0.95em;
}



.product-container h1 {
	font-size: 2em;
	text-align: left;
	margin-bottom: 60px;
	font-weight: 600;
	padding-left: 5% 0;
}

.features-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.features-block {
	width: 100%;
	padding: 60px 0;
}

.feature-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
}

.feature-text {
	padding-right: 60px;
}

.feature-text h3 {
	font-size: 1.5em;
	margin-bottom: 20px;
	font-weight: 600;
}

.feature-text p {
	line-height: 1.8;
}

.feature-icon {
	flex: 0 0 40%;
	text-align: center;
}

.feature-icon img {
	width: 100%;
	width: 100%;
	height: auto;
}


.features-block:nth-child(even) .feature-text {
	padding-right: 0;
	padding-left: 60px;
}


@media screen and (max-width: 1300px) {

	.product-container,
	.hero-container {
		width: 90%;
	}
}

/* 响应式设计 */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.2em;
		margin-bottom: 40px;
	}

	.feature-text {
		padding-right: 40px;
	}

	.features-block:nth-child(even) .feature-text {
		padding-left: 40px;
	}

	.feature-icon {
		flex: 0 0 300px;
	}
}

@media (max-width: 768px) {
	.hero-content {
		flex-direction: column;
	}

	h1 {
		font-size: 1.8em;
		padding-left: 0;
	}

	.feature-content {
		flex-direction: column !important;
		/* text-align: center; */
	}

	.feature-text {
		padding: 0 0 30px 0 !important;
	}

	.feature-icon {
		flex: none;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.feature-text h3 {
		font-size: 1.6em;
	}

	.feature-text p {
		font-size: 1.1em;
	}
}


.textcolor {
	color: var(--textcolor);
}



.solution-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
	padding-bottom: 10px;
}

.solution-item {
	overflow: hidden;
	border: 1px solid #eee;
	transition: transform 0.3s ease-in-out;
}

.solution-item:hover {
	transform: translateY(-10px);
}

.solution-item img {
	width: 100%;
	aspect-ratio: 3 / 2;
}

.solution-text {
	color: #000028;
	padding: 20px;
}

.solution-text h2 {
	font-weight: 600;
	margin: 10px 0 20px 0;
}

.textcolor {
	color: var(--textcolor);
}


.solution-text p {
	font-size: 16px;
	margin-bottom: 20px;
}

.solution-text a {
	display: inline-block;
	padding: 10px 20px;
	background-color: #faa50a;
	color: #fff;
}


/* 响应式设计 */
@media (max-width: 1024px) {
	.solution-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
		margin-top: 40px;
		padding-bottom: 10px;
	}
}

@media (max-width: 568px) {
	.solution-features {
			grid-template-columns: repeat(1, 1fr);
			gap: 30px;
			margin-top: 40px;
			padding-bottom: 10px;
		}
	
}
