#timeline {
	position: relative;
	width: 12rem;
	overflow: hidden;
}

#dates {
	display: flex;
	width: 12rem;
	overflow: hidden;
}

#dates li {
	display: flex;
	flex-direction: column;
	align-items: center;
	list-style: none;
	float: left;
	width: 1rem;
	height: 0.5rem;
	text-align: center;
}

#dates a {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #48485C;
	font-size: 0.18rem;
}
#dates a > i {
	position: relative;
	z-index: 2;
	width: 0.08rem;
	height: 0.08rem;
	margin-top: 0.1rem;
	background-color: #48485C;
	transform: rotate(45deg);
}

#dates .selected {
	font-weight: bold;
}
#dates .selected > i {
	width: 0.14rem;
	height: 0.14rem;
	margin-top: 0.07rem;
	background-color: #fff;
	border: 1px solid #48485C;
}
#dates .selected > i:after {
	content: "";
	position: absolute;
	top: 0.03rem;
	left: 0.03rem;
	z-index: 1;
	width: 0.06rem;
	height: 0.06rem;
	background-color: #48485C;
}

#issues {
	width: 12rem;
	margin-top: 0.5rem;
	overflow: hidden;
}

#issues li {
	width: 12rem;
	list-style: none;
	float: left;
}

#issues .time-content { position: relative; }
#issues .time-content:after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	width: 0.04rem;
	height: 100%;
	background-color: #48485C;
}
#issues .time-content-list { display: flex; flex-flow: row wrap; padding-top: 0.25rem; }
#issues .time-content-list-item { width: 6rem; }
#issues .time-content-list-item:nth-child(2n+1) { margin-bottom: 1rem; }
#issues .time-content-list-item:nth-child(2n+1) > .title { margin-left: 0.1rem; margin-right: 0.1rem; }
#issues .time-content-list-item:nth-child(2n) { margin-top: 1rem; text-align: right; }
#issues .time-content-list-item:nth-child(2n) > .date:before { display: block; }
#issues .time-content-list-item:nth-child(2n) > .date:after { display: none; }
#issues .time-content-list-item:nth-child(2n) > .title { margin-left: 0.1rem; }
#issues .time-content-list-item > p { color: #48485C; line-height: 1; }
#issues .time-content-list-item > .date { position: relative; font-size: 0.26rem; font-weight: bold; }
#issues .time-content-list-item > .date:before {
	display: none;
	content: "";
	position: absolute;
	top: 0.12rem;
	left: 0;
	width: 4.35rem;
	height: 1px;
	background-color: #48485C;
}
#issues .time-content-list-item > .date:after {
	content: "";
	position: absolute;
	top: 0.12rem;
	right: 0;
	width: 4.35rem;
	height: 1px;
	background-color: #48485C;
}
#issues .time-content-list-item > .title { margin-top: 0.16rem; margin-bottom: 0.22rem; font-size: 0.18rem; line-height: 1.5; }
#issues .time-content-list-item > .picture { width: 5.2rem; height: 2.82rem; object-fit: cover; overflow: hidden; }


.time-line {
	position: absolute;
	top: 0.4rem;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #48485C;
}
