 .counter-box {
	position: relative;
	width: 100%;
	height: 71px;
	background: #F4F3FD;
	box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 0 20px;
	box-sizing: border-box
}

.counter-box .dt {
	font-size: 16px;
	font-weight: 700;
	color: #333
}

 .counter-box .dd {
	height: 38px
}

.counter-box .dd b {
	display: inline-block;
	width: 23px;
	height: 38px;
	background: url(../images/number.png) no-repeat 0 0/auto 38px;
	margin-left: 0.02rem
}

.counter-box .dd .unit {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #999999;
	line-height: 1;
	margin-left: 6px;
	vertical-align: text-bottom
}


.counter-box::before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(../images/bg.png);
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0
}

.counter-box .counter .num {
	display: none
}

.counter-box .counter .num0 {
	background-position: 1% 0
}

.counter-box .counter .num1 {
	background-position: 11% 0
}

.counter-box .counter .num2 {
	background-position: 23% 0
}

.counter-box .counter .num3 {
	background-position: 33% 0
}

.counter-box .counter .num4 {
	background-position: 45% 0
}

.counter-box .counter .num5 {
	background-position: 56% 0
}

.counter-box .counter .num6 {
	background-position: 67% 0
}

.counter-box .counter .num7 {
	background-position: 78% 0
}

.counter-box .counter .num8 {
	background-position: 89% 0
}

.counter-box .counter .num9 {
	background-position: 100% 0
}



@-webkit-keyframes shake {
	0% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	50% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}
}

@keyframes shake {
	0% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	50% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	100% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}
}


@media screen and (max-width: 990px) {
	
	 .counter-box .dd {
		height: 30px
	}

	.counter-box .dd b {
		display: inline-block;
		width: 20px;
		height: 30px;
		background: url(../images/number.png) no-repeat 0 0/auto 30px;
		margin-left: 0.02rem
	}


}


@media screen and (max-width: 768px) {
	
	 .counter-box .dd {
		height: 26px
	}

	.counter-box .dd b {
		display: inline-block;
		width: 18px;
		height: 26px;
		background: url(../images/number.png) no-repeat 0 0/auto 26px;
		margin-left: 0.02rem
	}


}