
/* 整体容器 */
.process {
	background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
	min-height: calc(100vh - 145px);
	padding: 20px 0 80px;
	position: relative;
}

.process::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: radial-gradient(ellipse at top, rgba(2, 146, 254, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.process-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

/* Swiper 容器 */
.process-swiper {
	display: none;
	background: #ffffff;
	border-radius: 20px;
	padding: 50px 40px;
	box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
	margin-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.process-swiper::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.process-swiper.active {
	display: block;
	animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 轮播内容 */
.process-slide {
	padding: 20px 0;
}

.process-slide-container {
	display: flex;
	gap: 60px;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.process-slide-content {
	flex: 1;
	max-width: 600px;
}

.process-slide-pretitle {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(135deg, #e6f7ff 0%, #f0f5ff 100%);
	border: 1px solid #91d5ff;
	border-radius: 999px;
	color: #1890ff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.process-slide-title {
	font-size: 36px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 24px;
	line-height: 1.3;
	background: linear-gradient(135deg, #1f2937 0%, #4a5568 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.process-slide-text {
	font-size: 16px;
	line-height: 1.8;
	color: #4a5568;
	margin: 0;
}

.process-slide-image {
	flex: 0 0 450px;
	position: relative;
}

.process-slide-imgwrap {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
	transition: box-shadow 0.4s ease;
}

.process-slide-imgwrap:hover {
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.3);
}

.process-slide-imgwrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
	pointer-events: none;
}

.process-slide-img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.4s ease;
}

.process-slide-imgwrap:hover .process-slide-img {
	opacity: 0.95;
}

/* Swiper 分页器 */
.process-swiper .swiper-pagination {
	bottom: 20px;
}

.process-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #d0d7e2;
	opacity: 1;
	transition: all 0.3s ease;
}

.process-swiper .swiper-pagination-bullet-active {
	width: 32px;
	border-radius: 6px;
	background: linear-gradient(90deg, #1890ff 0%, #7c3aed 100%);
}

/* Swiper 导航按钮 */
.process-swiper .swiper-button-next,
.process-swiper .swiper-button-prev {
	width: 50px;
	height: 50px;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
	transition: all 0.3s ease;
}

.process-swiper .swiper-button-next::after,
.process-swiper .swiper-button-prev::after {
	font-size: 20px;
	color: #1890ff;
	font-weight: 700;
}

.process-swiper .swiper-button-next:hover,
.process-swiper .swiper-button-prev:hover {
	background: linear-gradient(135deg, #1890ff 0%, #0277cd 100%);
	box-shadow: 0 8px 24px rgba(24, 144, 255, 0.4);
	transform: scale(1.1);
}

.process-swiper .swiper-button-next:hover::after,
.process-swiper .swiper-button-prev:hover::after {
	color: #ffffff;
}

/* 年份选择器 */
.process-year {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 2;
}

.process-tab {
	background: #ffffff;
	border-radius: 16px;
	padding: 12px 0;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
	border: 1px solid #e5e7eb;
	overflow: visible;
}

.process-tab-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.process-tab-item {
	padding: 12px 12px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	color: #4a5568;
	cursor: pointer;
	transition: all 0.3s ease;
	background: transparent;
	border: 2px solid transparent;
	white-space: nowrap;
}

.process-tab-item:hover {
	color: #1890ff;
	background: #e6f7ff;
	border-color: #91d5ff;
}

.process-tab-item.active {
	background: linear-gradient(135deg, #1890ff 0%, #0277cd 100%);
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(24, 144, 255, 0.4);
	border-color: #1890ff;
}

/* 响应式适配 */
@media (max-width: 1200px) {
	.process-slide-container {
		gap: 40px;
	}
	
	.process-slide-image {
		flex: 0 0 380px;
	}
	
	.process-slide-title {
		font-size: 30px;
	}
}

@media (max-width: 992px) {
	.process {
		padding: 40px 0 60px;
	}
	
	.process-wrapper {
		padding: 0 24px;
	}
	
	.process-swiper {
		padding: 40px 30px;
	}
	
	.process-slide-container {
		flex-direction: column;
		gap: 30px;
	}
	
	.process-slide-content {
		max-width: 100%;
	}
	
	.process-slide-image {
		flex: 0 0 auto;
		width: 100%;
		max-width: 500px;
	}
	
	.process-slide-title {
		font-size: 28px;
	}
	
	.process-slide-text {
		font-size: 15px;
	}
	
	.process-year {
		padding: 0 24px;
	}
	
	.process-tab {
		padding: 10px 16px;
	}
	
	.process-tab-item {
		padding: 10px 24px;
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.process {
		padding: 30px 0 50px;
	}
	
	.process-wrapper {
		padding: 0 16px;
	}
	
	.process-swiper {
		padding: 30px 20px;
		border-radius: 16px;
	}
	
	.process-slide-pretitle {
		font-size: 13px;
		padding: 6px 16px;
		margin-bottom: 16px;
	}
	
	.process-slide-title {
		font-size: 24px;
		margin-bottom: 18px;
	}
	
	.process-slide-text {
		font-size: 14px;
		line-height: 1.7;
	}
	
	.process-slide-image {
		max-width: 100%;
	}
	
	.process-swiper .swiper-button-next,
	.process-swiper .swiper-button-prev {
		width: 40px;
		height: 40px;
	}
	
	.process-swiper .swiper-button-next::after,
	.process-swiper .swiper-button-prev::after {
		font-size: 16px;
	}
	
	.process-year {
		padding: 0 16px;
	}
	
	.process-tab {
		padding: 8px 12px;
		border-radius: 12px;
	}
	
	.process-tab-wrapper {
		gap: 8px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.process-tab-item {
		padding: 8px 20px;
		font-size: 14px;
	}
}

/* 空状态 */
.process-empty {
	text-align: center;
	padding: 100px 20px;
	color: #9ca3af;
}

.process-empty i {
	font-size: 72px;
	margin-bottom: 24px;
	opacity: 0.3;
}

.process-empty p {
	font-size: 16px;
	margin-top: 16px;
}
