.progress_steps {
	width: 100%;
	margin: 20px auto;
	margin-bottom: 60px;
	text-align: center;
	
}
.step_block {
	display: inline-block;
	position: relative;
}
.progress_steps .circle,
.progress_steps .bar {
	display: inline-block;
	background: #fff;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	border: 1px solid #999;
}
.progress_steps .bar {
	position: relative;
	width: 60px;
	height: 6px;
	margin: 0 -5px 17px -5px;
	border-left: none;
	border-right: none;
	border-radius: 0;
	top: 13px;
}
.progress_steps .circle .label {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	border-radius: 32px;
	margin-top: 3px;
	color: #FFF;
	font-size: 16px;
}
.progress_steps .circle .label  i {
	position: relative;
	left: -4px;
	top: -3px;
}
.progress_steps .title {
	color: #666;
	font-size: 13px;
	line-height: 13px;
	
	position: absolute;
	width: 100px;
	left: -30px;
}

.progress_steps .step_bg_done {
	background-color: #51C0BF;
}
.progress_steps .step_bg_half_done {
	background-color: #FD9E4B;
}
.progress_steps .step_bg_not_done {
	background-color: #999;
}

.progress_steps .circle.active .label {
	color: #FFF;
	background: #0c95be;
	box-shadow: inset 0 0 2px rgba(0,0,0,.2);
}
.progress_steps .circle.active .title {
	color: #0c95be;
}