/* 全局重置与基础样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
	background-color: #f5f7fa;
}


/* 主容器 */
.fz-timeline-container {
	position: relative;
	width: 100%;

	margin: 0 auto;
	padding: 60px 0;
	background: linear-gradient(to bottom, #e8f4fc, #ffffff);
	overflow: hidden;
}

/* 背景山形装饰（可选，可替换为图片） */
.fz-timeline-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;

	background-size: cover;
	z-index: 0;
}

/* 标题区域 */
.fz-timeline-header {
	position: relative;
	z-index: 1;
	text-align: center;
	padding-top: 60px;
}

.fz-timeline-title {
	font-weight: 400;
	font-size: 47px;
	color: #1D1D1D;
	margin-bottom: 8px;
}

.fz-timeline-subtitle {
	font-weight: 400;
	font-size: 23px;
	color: #1D1D1D;
	text-transform: capitalize;
	margin: 36px 0px;
}

/* 时间线主体 */
.fz-timeline {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 20px;
}

/* 时间线轴线 */
.fz-timeline-line {
	position: absolute;
	top: 48px;
	/* 调整轴线位置，适配年份在上的布局 */
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #e0e6ed;
	z-index: 0;
}

/* 时间线项 - 核心调整：年份在上、圆点居中、卡片在下 */
.fz-timeline-item {
	position: relative;
	width: 18%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.fz-xian {
	border-left: 2px solid #d92b2b;
}

/* 时间标签 - 移到圆点上方 */
.fz-timeline-date {
	font-size: 16px;
	font-weight: 500;
	color: #d92b2b;
	margin-bottom: 12px;
	/* 年份和圆点的间距 */
	white-space: nowrap;
}

/* 时间点 - 在年份下方、卡片上方 */
.fz-timeline-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #d92b2b;
	border: 4px solid #ffffff;
	box-shadow: 0 0 0 2px #d92b2b;
	z-index: 2;
	margin-bottom: 20px;
	/* 圆点和卡片的间距 */
}

/* 内容卡片 - 核心修改：左侧竖向红线装饰 */
.fz-timeline-card {
	width: 100%;
	padding: 20px 16px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	font-size: 14px;
	color: #555555;
	line-height: 1.6;
	text-align: center;
	/* 核心：左侧竖向红线 */
	/*border-left: 3px solid #d92b2b; 竖向红线，和时间点同色 
            /* 微调内边距，让红线和文字间距更合理 */
	padding-left: 17px;
}

/* 响应式适配 - 移动端也保持年份在上+左侧竖红线 */
@media (max-width: 768px) {
	.fz-timeline {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 40px;
	}

	.fz-timeline-line {
		top: 24px;
		/* 移动端轴线位置调整 */
		left: 12px;
		width: 2px;
		height: 100%;
	}

	.fz-timeline-item {
		width: 100%;
		flex-direction: row;
		/* 移动端横向排列 */
		align-items: flex-start;
		margin-bottom: 30px;
	}

	/* 移动端年份、圆点、卡片的布局调整 */
	.fz-timeline-date {
		margin-right: 12px;
		/* 年份和圆点的横向间距 */
		margin-bottom: 0;
		flex-shrink: 0;
	}

	.fz-timeline-dot {
		margin-right: 20px;
		/* 圆点和卡片的横向间距 */
		margin-bottom: 0;
		flex-shrink: 0;
	}

	.fz-timeline-card {
		text-align: left;
		flex: 1;
		/* 移动端保留左侧竖红线 */
		border-left: 3px solid #d92b2b;
		padding-left: 17px;
	}

	.fz-timeline-title {
		font-weight: 400;
		font-size: 30px;
		color: #1D1D1D;
		margin-bottom: 8px;
	}

}