/* 画廊按钮样式 */
.gallery-button-container {
	position: absolute;
	bottom: 100px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 1001;
}

.gallery-button {
	display: inline-block;
	padding: 12px 30px;
	background-color: #0070c9;
	color: white;
	border-radius: 30px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 112, 201, 0.3);
}

.gallery-button:hover {
	background-color: #0077cc;
	box-shadow: 0 6px 16px rgba(0, 112, 201, 0.4);
	transform: translateY(-2px);
}

.gallery-button:active {
	transform: translateY(1px);
}

/*首页banner图自适应调整*/
/* @media only screen and (max-width: 1770px) {
	.container {
		width: 80%;
	}

	.menu_tit1 {
		margin-bottom: 20px;
	}

}

@media only screen and (max-width: 1440px) {
	.menu_tit1 {
		font-size: 30px;
		margin-bottom: 30px;
	}

}

@media only screen and (max-width: 1200px) {
	.menu_tit1 {
		font-size: 26px;
		margin-bottom: 20px;
	}

}

@media only screen and (max-width: 992px) {
	.menu_tit1 {
		font-size: 20px;
		margin-bottom: 25px;
	}

}

@media only screen and (max-width: 768px) {
	.menu_tit1 {
		margin-bottom: 20px;
		font-size: 18px;
	}

} */

.menu_tit2 {
	font-size: 20px;
	color: #777777;
	margin-bottom: 80px;
	line-height: 1.5;
	opacity: 1;
}

.container-index {
	height: 434px;
	box-shadow: 0px 0px 10px #d3d3d3;
	width: 16%;
	justify-items: center;
}

.cpx-img {
	width: 100%;
	position: relative;
	text-align: right;
}

.cpx-img img {
	width: 95%;
}

.cpx-more {
	margin-top: 30px;
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	color: #777777;
	transition: all 0.3s ease-in-out;
	height: 20px;
	display: flex;
	align-items: center;
}

.cpx-more:hover {
	transform: translateX(5px);
	color: #0070c9;
}

.team-showcase-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.team-carousel-wrapper {
	overflow: hidden;
	display: flex;
	width: 100%;
	position: relative;
	align-items: center;
}

.team-carousel-track {
	display: flex;
	animation: teamCarousel 200s linear infinite;
	gap: 30px;
	padding: 20px 0;
}

.team-member-card {
	justify-content: space-between;
	display: flex;
	width: 660px;
	height: 250px;
	background: white;
	border: 1.5px solid rgb(199 199 200 / 50%);
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transform: scale(var(--card-scale, 1));
}

.team-member-card:hover {
	transform: scale(calc(var(--card-scale, 1) * 1.05));
	/* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
}

.team-member-image {
	width: 35%;
	border: 1.5px solid rgb(199 199 200 / 50%);
	background-repeat: no-repeat;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.team-member-content {
	width: 50%;
	/* border-left: 1px solid rgba(51, 112, 255, 1); */
	padding: 10px;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
	gap: 10px;
}

.team-member-content::after {
	background-image: url(/template/pc/skin/index/双引号.png);
	width: 10px;
	height: 100%;
}

.team-member-company {
	font-size: 15px;
	color: #000000;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.team-member-company img {
	height: 40px;
}

.team-member-name {
	margin-top: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #000000;
}

.team-member-description {
	font-size: 14px;
	color: #6c757d;
	line-height: 1.5;
}

.team-carousel-btn {
	background: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	font-size: 18px;
}

.team-carousel-btn:hover {
	background: #4d7cfe;
	color: white;
	transform: translateY(-3px);
}



@keyframes teamCarousel {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-380px * 6));
	}
}

@media (max-width: 768px) {
	.team-member-card {
		width: 300px;
		min-width: 300px;
		height: 180px;
	}

	@keyframes teamCarousel {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(calc(-330px * 6));
		}
	}
}


.product-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 43px;
	z-index: 5;
}

.product-scroll {
	display: flex;
	width: max-content;
	animation-duration: 400s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.scroll-right {
	animation-name: scrollRight;
}

.scroll-left {
	animation-name: scrollLeft;
}

@keyframes scrollRight {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes scrollLeft {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

.card2 {
	display: flex;
	height: 65px;
	color: rgb(0, 0, 0);
	border-radius: 8px;
	min-width: 150px;
	text-align: center;
	font-weight: bold;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
}

.card2 img {
	height: 100%;
}

.syh-img {
	width: 5%;
	display: flex;
	align-items: end;
}

.syh-img img {
	width: 75%;
	bottom: 20px;
	left: -10px;
	position: relative;
}

.testimonial-pagination__prev {
	width: 150px;
}

.testimonial-pagination__next {
	width: 150px;
}

.help-title1 {
	font-size: 18px;
	text-align: center;
	margin-bottom: 10px;
	margin-top: 40px;
	color: #9c9c9c;
}

.help-title2 {
	font-size: 24px;
	text-align: center;
	font-weight: 600;
}

.help-title3 {
	text-align: center;
	margin-bottom: 10px;
	font-size: 18px;
	color: #4f4f4f;
}

#card-group {
	position: relative;
	margin: 0 auto;
}

.testimonials-grid {
	display: none;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.testimonials-grid.active {
	display: grid;
}

.testimonial-card {
	height: 555px;
	display: flex;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	padding: 30px;
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.quote-icon {
	margin-bottom: 15px;
	font-size: 45px;
	color: rgb(212, 229, 251);
	line-height: 1;
}

.testimonial-content {
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
}

.testimonial-text {
	font-size: 16px;
	color: #555;
	margin-bottom: 20px;
	line-height: 1.7;
}

.client-info {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.client-avatar {
	width: 50px;
	height: 50px;
	/* border-radius: 50%; */
	background: linear-gradient(135deg, #4a6ee0, #6a8aff);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: white;
	font-weight: 600;
	font-size: 18px;
}

.client-details {
	flex: 1;
}

.client-name {
	font-weight: 600;
	font-size: 18px;
	color: #333;
}

.client-position {
	font-size: 16px;
	color: #818181;
	font-weight: 600;
}

.client-position h {
	color: #aaaaaa;

}

.metrics {
	display: flex;
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.metric {
	margin-right: 35px;
	text-align: center;
}

.metric-value {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 5px;
}

.metric-positive {
	color: rgba(51, 112, 255, 1);
}

.metric-negative {
	color: #ff6b6b;
}

.metric-label {
	font-size: 14px;
	color: #818181;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.testimonial-card-top {}

.testimonial-card-bottom {}

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.page-title {
		font-size: 26px;
	}

	.page-subtitle {
		font-size: 16px;
	}
}

/* Testimonials 导航按钮样式 */
.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.8);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 10;
}

.nav-btn:hover {
	background: rgba(74, 110, 224, 0.8);
	color: white;
}

.prev-btn {
	left: -70px;
}

.next-btn {
	right: -70px;
}

.gywm-text {
	color: black;
	font-size: 16px;
	line-height: 1.8;
	text-indent: 32px;
}

.sz-wz {
	text-align: center;
}

.sz {
	font-weight: bold;
	color: rgba(51, 112, 255, 1);
	font-size: 32px;
}

.wz {
	font-size: 18px;
	font-weight: 600;
	color: black;
}

.map {
	top: -19px;
	z-index: 1;
	justify-items: center;
	position: absolute;
	width: 125%;
}

.map img {
	width: 100%;
}

.customer-title {
	display: flex;
	align-items: start;
	justify-content: left;
	width: 100%;
}

.customer-logo {
	display: flex;
	width: 30px;
	height: 30px;
	background: white;
	margin-right: 5px;
	align-items: center;
	justify-content: center;
}

.customer-logo img {
	width: 100%;
	height: 100%;
}

.customer-name {
	font-size: 14px;
}

.customer-article {
	margin-top: 5px;
	gap: 10%;
	padding: 0 5%;
	display: flex;
	justify-content: center;
}

.customer-article img {
	top: 13px;
	width: 11%;
	height: 0%;
	position: relative;
}

.customer-article span {
	width: 74%;
	margin-top: 20px;
	line-height: 1.3;
	font-size: 14px;
}


.more {
	cursor: pointer;
	position: absolute;
	bottom: 83px;
	right: 6%;
	font-size: 18px;
	color: black;
	transition: all 0.3s ease-in-out;
	z-index: 50;
}

.more:hover {
	transform: translateX(3px);
	color: rgba(51, 112, 255, 1);
}

.sg-mb {
	position: absolute;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0.3;
	z-index: 1;
}

.hycontainer {
	position: relative;
	z-index: 5;
	margin: auto;
	display: flex;
	justify-content: center;
	width: 100%;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	overflow: hidden;
}

/* 左侧行业列表样式 */
.industry-list {
	padding: 20px 0px;
	width: 220px;
	background: #000;
	color: white;
	display: flex;
	flex-direction: column;
}

.industry-item {
	margin: 10px 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	font-size: 18px;
	position: relative;
	padding: 5px 25px;
}

.industry-item:hover,
.industry-item.active {
	font-weight: 500;
	background: rgba(51, 112, 255, 1);
	;
}

.industry-item::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

/* 右侧内容区域样式 */
.content-area {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
	/* , url(https://images.unsplash.com/photo-1591799264318-7e6ef8ddb7ea?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80); */
	flex: 1;
	position: relative;
	overflow: hidden;
	color: white;
	background-size: cover;
	background-position: center;
}

.content-inner {
	width: calc(100% - 250px);
	height: 100%;
	position: relative;
}

.content-hidden {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

.solution-title {
	margin-top: 10px;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.solution-desc {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
	max-width: 90%;
	opacity: 0.9;
}

.features {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	margin-bottom: 35px;
}



.feature-icon {
	font-size: 20px;
	margin-bottom: 12px;
	color: #fff;
	transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
	transform: scale(1.2);
}

.feature-text {
	text-align: center;
	font-size: 13px;
	font-weight: 500;
}

.solution-content {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 35px 40px;
	display: flex;
	flex-direction: column;
	background-size: cover;
	background-position: center;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.content-visible {
	opacity: 1;
	transform: translateY(0);
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}


.buttons {
	display: flex;
	gap: 15px;
}

.hybtn {
	padding: 8px 30px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-trial {
	background: rgba(51, 112, 255, 1);
	;
	color: white;
	box-shadow: 0 4px 10px rgba(42, 120, 228, 0.4);
}

.btn-detail {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* 右侧蒙板样式 */
.overlay-panel {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	right: 0;
	width: 250px;
	height: 100%;
	background: rgb(0, 0, 0);
	backdrop-filter: blur(8px);
	padding: 25px 15px;
	display: flex;
	flex-direction: column;
}

.case-title {
	font-size: 16px;
	margin: 15px 5px 5px 5px;
	text-align: left;
	font-weight: 400;
}

.customer-logos {
	justify-items: center;
	padding-bottom: 15px;
	border-bottom: 1px solid rgb(255 255 255);
}

.logo-item {
	width: 100%;
	aspect-ratio: 1;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	color: #333;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.logo-item:hover {
	transform: scale(1.05);
}

.industry-icon {
	margin-right: 10px;
	font-size: 18px;
}

.carousel-container {
	position: relative;
	width: 100%;
	/* height: 85vh; */
	height: 780px;
	overflow: hidden;
}

.carousel {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
	overflow: hidden;
	min-width: 100%;
	align-items: center;
	height: 100%;
	display: flex;
	justify-content: center;
	color: white;
	position: relative;
	background-size: cover;
}

.carousel-item img {
	width: 100%;
}

.carousel-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 80%;
	padding: 20px;
}

.carousel-title {
	font-size: 4rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
	font-weight: 700;
	letter-spacing: 2px;
}

.carousel-text {
	font-size: 1.5rem;
	font-weight: 300;
	opacity: 0.9;
	max-width: 700px;
	line-height: 1.6;
	margin-bottom: 30px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
	display: inline-block;
	padding: 12px 30px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	color: white;
	border: none;
	font-size: 2.5rem;
	width: 70px;
	height: 70px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 10;
	opacity: 0.7;
}

.carousel-control:hover {
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
	left: 30px;
}

.carousel-control.next {
	right: 30px;
}

.carouselIndicators {
	position: absolute;
	bottom: 80px;
	left: 10%;
	/* right: 0; */
	display: flex;
	/* justify-content: left; */
	gap: 15px;
	z-index: 10;
}

.indicator {
	width: 120px;
	padding: 10px 0;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1.5px solid transparent;
}

.indicator.active {
	/* background-color: white;
      border-color: rgba(255, 255, 255, 0.8); */
}

.indicator-index {
	height: 4px;
	background: rgba(0, 11, 23, .1);
}

.indicator-index.active {
	background: rgb(255, 255, 255);
}

.carousel-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	/* height: 4px; */
	background: rgba(255, 255, 255, 0.5);
	width: 100%;
	z-index: 10;
}

.progress-bar {
	height: 100%;
	background: white;
	width: 0%;
	transition: width 0.1s linear;
}

@media (max-width: 768px) {
	.carousel-title {
		font-size: 2.5rem;
	}

	.carousel-text {
		font-size: 1.2rem;
	}

	.carousel-control {
		width: 50px;
		height: 50px;
		font-size: 1.8rem;
	}

	.carousel-control.prev {
		left: 15px;
	}

	.carousel-control.next {
		right: 15px;
	}

	.carouselIndicators {
		bottom: 25px;
	}
}

@media (max-width: 480px) {
	.carousel-title {
		font-size: 2rem;
	}

	.carousel-text {
		font-size: 1rem;
	}

	.carousel-btn {
		padding: 10px 20px;
		font-size: 1rem;
	}
}

.feature-img {
	width: 50px;
}

.symk-group {
	display: flex;
	flex-wrap: wrap;
}

.symk {
	justify-items: center;
	text-align: center;
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 5px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.symk-img {
	width: 20px;
}

.symk-img img {
	width: 100%;
}

.symk-text {
	font-size: 14px;
}

.news {
	box-sizing: border-box;
	bottom: 0;
	padding: 10px 10%;
	width: 100%;
	bottom: 0;
	display: flex;
	background: #ffffff99;
	justify-content: space-between;
	position: absolute;
}

.new {
	display: flex;
	width: 300px;
}

.new a {
	color: #000000;
	transition: all 0.3s ease-in-out;
	font-size: 15px;
}

.new:hover a {
	transform: translateX(5px);
	color: rgba(51, 112, 255, 1);
}

.new svg {
	height: 35px;
}

.new::before {
	margin-right: 25px;
	align-items: center;
	content: ' ';
	display: flex;
	height: 100%;
	width: 45px;
	background-image: url(/template/pc/skin/首页banner/双引号.svg);
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

.svg5 {
	position: absolute;
	left: 50%;
	width: 40%;
	top: 15%;
	position: absolute;
	animation: float 5s ease infinite;
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-2px);
	}

	100% {
		transform: translateY(0px);
	}
}

.svg5 img {
	width: 100%;
}

.banner-text {
	top: 23%;
	left: 13%;
	position: absolute;
}

.banner-text h1 {
	letter-spacing: 5px;
	font-size: 50px;
	color: rgba(5, 45, 140, 1);
	font-weight: bold;
}

.banner-text h2 {
	margin-top: -13px;
	font-size: 33px;
	font-weight: 400;
	color: rgba(51, 112, 255, 1);
}

.banner-text h3 {
	font-size: 25px;
	color: rgba(5, 7, 26, 1);
	font-weight: 400;
}

.banner-text h4 {
	font-weight: 600;
	font-size: 31px;
	color: rgba(5, 45, 140, 1);
}

.play-button1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 2000;
	transition: all 0.3s ease;
}

.play-button1:hover {
	/* transform: translateY(-3px); */
}

.play-button2 {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-left: 30px solid rgba(51, 112, 255, 1);
	border-bottom: 20px solid transparent;
	margin-left: 5px;
}

.banner-btn {
	left: 13%;
	bottom: 31%;
	justify-content: center;
	display: flex;
	text-align: center;
	font-size: 20px;
	box-sizing: border-box;
	height: 40px;
	width: 120px;
	position: absolute;
	align-items: center;
	border-radius: 35px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	background-image: url(/template/pc/skin/首页banner/了解更多.svg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.banner-btn:hover {
	transform: translateY(-3px);
}

.map-more {
	right: 17px;
	bottom: -60px;
	position: absolute;
	z-index: 10;
	color: black;
	transition: all 0.3s ease-in-out;
	font-weight: bold;
	cursor: pointer;
	font-size: 18px;
}

.map-more:hover {
	color: rgba(51, 112, 255, 1);
	transform: translatex(5px);
}

.sghy {
	justify-items: center;
	padding-top: 1px;
	margin-top: 80px;
	background-image: url(/template/pc/skin/首页banner/机械.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative;
}

/* /////////// */


.card-container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.card {
	flex: 1;
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
	text-align: center;
	height: 285px;
	overflow: hidden;
}

.card-image img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.card:hover .card-image img {
	transform: scale(1.05);
}

.card-content {
	justify-items: center;
	text-align: center;
	padding: 20px;
	color: #000;
	transition: color 0.3s ease;
}

.card-title {
	margin-bottom: 10px;
	color: rgba(51, 112, 255, 1);
	font-weight: 500;
}

.card-text {
	width: 95%;
	text-align: left;
	font-size: 15px;
	line-height: 1.5;
	color: #333;
}

.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(51, 112, 255, 0.7);
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: height 0.4s ease;
	border-radius: 10px 10px 0 0;
}

.card:hover .card-overlay {
	height: 100%;
}

.card:hover .card-title,
.card:hover .card-text {
	color: white;
}

.card:hover .card-content {
	color: white;
	z-index: 2;
	position: relative;
}

.overlay-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 80%;
	opacity: 0;
	transition: opacity 0.4s ease 0.2s;
}

.card:hover .overlay-content {
	top: 30%;
	opacity: 1;
}


/* 响应式设计 */
@media (max-width: 1024px) {
	.card-container {
		flex-wrap: wrap;
		justify-content: center;
	}

	.card {
		flex: 0 0 calc(33.333% - 20px);
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.card {
		flex: 0 0 calc(50% - 20px);
	}
}

@media (max-width: 480px) {
	.card {
		flex: 0 0 100%;
		max-width: 300px;
	}
}

.erkai-img {
	width: 110px;
	height: 110px;
}