/*------------------------------------关于我们------------------------------------*/
.about-section_container .about-section {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	justify-content: space-between;
}

.about-section_container .content-left {
	flex: 1;
	min-width: 300px;
}

.about-section_container .description {
	text-indent: 2em;
	line-height: 2.2;
	font-size: 16px;
	color: #555555;
	margin-bottom: 20px;
	text-align: justify;
}

.about-section_container .stats-grid {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.about-section_container .stat-card {
	background: #ffffff;
	padding: 25px 20px 25px 25px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	flex: 1;
	min-width: 120px;
	text-align: center;
}

.about-section_container .stat-card .number {
	display: block;
	color: #21458f;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 5px;
	position: relative;
	z-index: 2;
}

.about-section_container .stat-card .label {
	font-size: 14px;
	color: #888888;
	position: relative;
	z-index: 2;
}

.about-section_container .stat-card .slant-img {
	position: absolute;
	bottom: -7px;
	right: -23px;
	width: 77px;
	height: 60px;
	z-index: 1;
	display: block;
}

.about-section_container .image-wrapper {
	flex: 1;
	min-width: 300px;
	max-width: 600px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	margin-right: 20px;
	margin-bottom: 20px;
}

.about-section_container .image-wrapper img {
	width: 100%;
	/* aspect-ratio: 1 / 1; */
	height: 100%;
	border-radius: 12px;
	object-fit: cover;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-section_container .image-wrapper::after {
	content: '';
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 100%;
	height: 100%;
	background-color: #dbe0eb;
	border-radius: 12px;
	z-index: 1;
}

@media (max-width:992px) {
	.about-section_container .about-section {
		flex-direction: column-reverse;
	}

	.about-section_container .image-wrapper {
		max-width: 100%;
	}
}

@media (max-width:576px) {
	.about-section_container .stats-grid {
		flex-direction: row;
	}

	.about-section_container .stat-card {
		min-width: 80px;
		padding: 15px 10px;
	}

	.about-section_container .stat-card .number {
		font-size: 24px;
	}

	.about-section_container .stat-card .slant-img {
		width: 40px;
		height: 35px;
		right: -5px;
	}

	.about-section_container .image-wrapper {
		margin-right: 10px;
		margin-bottom: 10px;
	}

	.about-section_container .image-wrapper::after {
		bottom: -10px;
		right: -10px;
	}
}























/*------------------------------------为什么选择我们------------------------------------*/
.advantage-section_container {
	position: relative;
	padding: 90px 0;
}

.advantage-section_container .advantage-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.advantage-section_container .container {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 20%;
}

.advantage-section_container .left-inner {
	position: sticky;
	top: 100px;
}

.advantage-section_container .cards {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.advantage-section_container .card {
	min-height: 155px;
	padding: 32px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	transition: .35s;
}

.advantage-section_container .card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.65);
}

.advantage-section_container .card h3 {
	font-size: 19px;
	margin-bottom: 14px;
	color: #222;
}

.advantage-section_container .card p {
	font-size: 14px;
	line-height: 1.8;
	color: #666;
}

.advantage-section_container .icon {
	margin-top: 22px;
	width: 38px;
	height: 38px;
	/* border-radius: 50%; */
	/* background: #2855a0; */
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.advantage-section_container .icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 768px) {
	.advantage-section_container {
		padding: 50px 0;
	}

	.advantage-section_container .container {
		flex-direction: column;
	}

	.advantage-section_container .left-inner {
		position: relative;
		top: auto;
		margin-bottom: 40px;
	}

	.advantage-section_container .left h1 {
		font-size: 26px;
	}

	.advantage-section_container .card {
		padding: 25px;
		min-height: 140px;
	}
}





























/*------------------------------------设备------------------------------------*/
.equipment-section_container {
	display: flex;
	height: 60vh;
	gap: 20px;
	overflow: hidden;
}

.equipment-section_container .card {
	flex: 1;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	cursor: pointer;
}

.equipment-section_container .card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.equipment-section_container .card-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	color: #fff;
	z-index: 10;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	transition: all 0.4s ease;
}

.equipment-section_container .card-content h2 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 5px;
	letter-spacing: 1px;
}

.equipment-section_container .card-content p {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 2px;
	opacity: 0.8;
	margin-bottom: 15px;
}

.equipment-section_container .btn-more {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease 0.1s;
	pointer-events: none;
}

.equipment-section_container .card:hover .btn-more {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.equipment-section_container:has(.card:nth-child(1):hover) .card:nth-child(1) {
	flex: 1;
}

.equipment-section_container:has(.card:nth-child(1):hover) .card:nth-child(2) {
	flex: 0.6;
}

.equipment-section_container:has(.card:nth-child(2):hover) .card:nth-child(2) {
	flex: 1;
}

.equipment-section_container:has(.card:nth-child(2):hover) .card:nth-child(1) {
	flex: 0.6;
}

@media (max-width: 768px) {

	.equipment-section_container {
		flex-direction: column;
		height: auto;
		gap: 15px;
	}

	.equipment-section_container .card {
		height: 300px;
		flex: none !important;
		width: 100%;
	}

	.equipment-section_container .btn-more {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
}

















/*------------------------------------新闻------------------------------------*/
.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- 卡片样式 --- */
.news-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* 柔和的阴影 */
    overflow: hidden; /* 防止图片溢出圆角 */
    display: flex;
    flex-direction: column;
	cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px); /* 鼠标悬停上浮 */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 图片区域 */
.news-image {
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 1.5 / 1;
    object-fit: cover; /* 保证图片填满且不变形 */
    background-color: #e0e0e0;
}

/* 文本内容区域 */
.news-content {
    padding: 20px 20px 15px;
    display: flex;
    flex-direction: column;
    flex: 1; /* 让内容撑满剩余高度，保证底部对齐 */
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* 标题下方的蓝色短横线 */
.title-divider {
    width: 30px;
    height: 3px;
    background-color: #4a6fa5; /* 浅蓝色 */
    margin-bottom: 12px;
    border-radius: 2px;
}

.news-desc {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    /* 多行文本省略号 (最多显示2行) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1; /* 占据中间剩余空间 */
}

/* 底部信息区 (日期与按钮) */
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0; /* 可选：或者你可以让它们紧贴底部无边框 */
    padding-top: 15px; 
    border-top: none; /* 原图中似乎没有明显的上边框，去掉 */
    padding-top: 0;
    margin-top: auto; /* 强制将其推到底部 */
}

.news-date {
    font-size: 15px;
    color: #999;
}

.news-link {
    font-size: 15px;
    color: #4a6fa5;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.news-link:hover {
    text-decoration: underline;
}

.news-link::after {
    content: " >";
    font-family: monospace;
    margin-left: 4px;
}

/* 针对小屏幕的微调 */
@media (max-width: 480px) {
    .news-container {
        grid-template-columns: 1fr; /* 手机端变成单列 */
    }
}


























/*------------------------------------轮播------------------------------------*/
.banner-swiper_container {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.banner-swiper_container .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-swiper_container .swiper-slide {
	position: relative;
	overflow: hidden;
}

.banner-swiper_container .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 6px;
	margin: 0 6px !important;
	transition: all 0.3s ease;
	opacity: 1 !important;
}

.banner-swiper_container .swiper-pagination-bullet-active {
	width: 30px;
	background: #ffffff;
}

.banner-swiper_container .swiper-pagination {
	bottom: 20px !important;
}

.banner-swiper_container .swiper-button-next,
.banner-swiper_container .swiper-button-prev {
	width: 44px;
	/* 按钮大小 */
	height: 44px;
	color: #fff;
	/* 箭头颜色 */
	background: rgba(0, 0, 0, 0.3);
	/* 半透明背景 */
	border-radius: 50%;
	/* 圆形按钮 */
	border: 2px solid rgba(255, 255, 255, 0.5);
	/* 边框 */
	transition: all 0.3s ease;
}

.banner-swiper_container .swiper-button-next:hover,
.banner-swiper_container .swiper-button-prev:hover {
	background: rgba(255, 255, 255, 0.9);
	color: #000;
	/* hover变色 */
	border-color: #fff;
}

.banner-swiper_container .swiper-button-next:after,
.banner-swiper_container .swiper-button-prev:after {
	font-size: 18px;
	/* 箭头大小 */
	font-weight: bold;
}

.banner-swiper_container .swiper-button-prev {
	right: 120px;
	bottom: 30px;
	left: inherit;
	top: initial;
}

.banner-swiper_container .swiper-button-next {
	bottom: 30px;
	right: 50px;
	left: inherit;
	top: inherit;
}

@media (max-width: 1024px) {
	.banner-swiper_container .swiper-button-next,
	.banner-swiper_container .swiper-button-prev {
		display: none;
	}
}

@media (max-width: 768px) {
	/* 手机端按钮缩小 */
	/* .swiper-button-prev { left: 15px; }
	.swiper-button-next { right: 15px; } */

	.banner-swiper_container {
		height: auto;
	}

	.banner-swiper_container .swiper-button-next,
	.banner-swiper_container .swiper-button-prev {
		width: 32px;
		height: 32px;
	}

	.banner-swiper_container .swiper-button-next:after,
	.banner-swiper_container .swiper-button-prev:after {
		font-size: 14px;
	}
}