/*各个部分样式*/

@charset "utf-8";
.timeline {
	width: 100%;
	height: auto;
	margin: 20px auto;
	padding-bottom: 1rem;
	text-align: center;
	font-size: 0;
}

.timeline li {
	position: relative;
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: auto;
	font-size: 1.2rem;
	padding: 1rem 1rem 1.4rem 1rem;
}

.timeline li .time:before {
	content: '';
	display: block;
	position: absolute;
	width: 15px;
	height: 15px;
	bottom: 0;
	margin-bottom: -4px;
	left: 50%;
	margin-left: -5px;
	background: #D7BB67;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	background-size: 10px 10px;
}

.timeline li .time:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background: #D7BB67;
	left: 0;
	bottom: 0;
	margin-left: -2px;
}

.timeline li .currtime:before {
	content: '';
	display: block;
	position: absolute;
	width: 15px;
	height: 15px;
	bottom: 0;
	margin-bottom: -4px;
	left: 50%;
	margin-left: -5px;
	background: #FF0000;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	background-size: 10px 10px;
}

.timeline li .currtime:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background: #D7BB67;
	left: 0;
	bottom: 0;
	margin-left: -2px;
}