body,
div {
	margin: 0;
	padding: 0;
}

.ft-slider {
	position: relative;
	text-align: center;
	font-size: 12px;
	background-color: rgb(232, 232, 232);
	color: rgb(102, 102, 102);
	
}

.ft-slider .ft-slider-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-user-select: none;
	user-select: none;
}

.lock {
	background: -webkit-gradient(linear, left top, right top, color-stop(0, #4d4d4d), color-stop(.4, #4d4d4d), color-stop(.5, #fff), color-stop(.6, #4d4d4d), color-stop(1, #4d4d4d));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: lock 2.6s infinite;
	-webkit-text-size-adjust: none;
}

.ft-slider .transition {
	transition: all .4s;
}

.ft-slider .ft-slider-content.success {
	color: #fff;
}

.ft-slider .ft-slider-bar {
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/slider.png) no-repeat center center #fff;
	background-size: 16px 16px;
	border: 1px solid #ccc;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
}

.ft-slider .ft-slider-bar.success {
	background-image: url(../img/success.png);
}

.ft-slider .ft-slider-bg {
	width: 0;
	height: 100%;
	background-color: rgb(122, 194, 60);
	
}

@-webkit-keyframes lock {
	0% {
		background-position: -140px 0;
	}
	100% {
		background-position: 140px 0;
	}
}

@keyframes lock {
	0% {
		background-position: -140px 0;
	}
	100% {
		background-position: 140px 0;
	}
}

ol.steps::-webkit-scrollbar { /* chrome 隐藏滚动条*/
            display: none;
        }
		ol{
		font-size:12px;	
		color:#333
		}
		
        ol.steps{
            list-style: none;
            display: flex;
            height: 78px;
			margin-left:25px;
        }
        ol.steps:after,ol.steps li:after{
            content: '';
            display: block;
            clear: both;
        }
        ol.steps li{
            float: left;
            flex: 1;
            position: relative;
            min-width: 120px;
        }
        ol.steps li .step-line{
            height: 5px;
            background-color: #e0e0e0;
            box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
            margin-top: 15px;
        }
        ol.steps li.step-active .step-line{
            background-color: #00a854;
            box-shadow: inset 0 1px 1px #00a854;
        }
        ol.steps .step-content{
            position: absolute;
            top:0;
            left:-15px ;
            text-align: center;
        }
        ol.steps li .step-content .step-num{
            display: inline-block;
            height: 30px;
            width: 30px;
            color: #fff;
            background-color: #b9b9b9;
            line-height: 30px;
            border-radius: 50%;
            text-align: center;
            border:2px solid rgba(224,224,224,1);
        }
        ol.steps li.step-active .step-content .step-num{
            background-color: #00a854;
        }
        ol.steps li.step-end{
            width: 120px!important;
            flex: inherit;
        }
        ol.steps li.step-end .step-line{
            display: none;
        }