html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: #ffffff;
	color: #333333;
}

html {
	font-size: 75px;
}

.box {
	width: 10rem;
	min-height: 100%;
	margin: 0 auto;
	background-image: url(../image/bg.jpg);
	background-size: 100% 100%;
}

.my-swipe {
	width: 10rem;
	height: 5.6rem;
}

.circle {
	width: 4rem;
	margin: 0.2rem auto 0 auto;
	display: flex;
	justify-content: center;
}

.circle_item {
	width: 0.2rem;
	height: 0.2rem;
	background: #ffffff;
	border-radius: 0.2rem;
}

.circle_item_active {
	background: #ff3000 !important;
}

.circle_item:not(:first-child) {
	margin-left: 0.2rem;
}

.my-swipe .van-swipe-item {
	color: #fff;
	font-size: 20px;
	line-height: 150px;
	text-align: center;
	background-color: #39a9ed;
}

.middle {
	width: 9.2rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: rgba(17, 136, 255, 0.5);
	border-radius: 0.1rem;
}

.middle_item {
	height: 3rem;
	color: #ffffff;
	border-radius: 0.3rem;
	align-items: center;
	text-align: center;
	display: grid;
	font-weight: 700;
	font-size: 0.4rem;
}

.middle_item_icon {
	width: 1.75rem;
	height: 1.75rem;
	display: block;
	margin: 0 auto 0.2rem auto;
}

.van-tabbar-item--active {
	background: none !important;
}

.van-tabbar {
	background: rgba(0, 23, 108, 0.6) !important;
	height: 1.46rem !important;
}

.van-tabbar-item__icon img {
	width: 0.53rem !important;
	height: 0.53rem !important;
}

.tipBox {
	width: 9.2rem;
	margin: 0.27rem auto;
	overflow: hidden;
	background: url(../image/gundongbg.png);
	background-size: 100% 100%;
	height: 1.0rem;
	font-size: 0.37rem;
	color: #fff;
	line-height: 1.0rem;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: grid;
	grid-template-columns: auto 1fr;
}

.tip_iconBox {
	width: 0.9rem;
	height: 100%;
	z-index:2;
	background:url('../image/pmdbg.png');
	background-size:100% 100%;
}

.tip_icon {
	display: block;
	width: 0.7rem;
	height: 0.43rem;
	/* vertical-align:middle; */
	margin: 0.28rem auto 0.28rem auto;
}

.tip_val {
	/* width: 100%;
	overflow: hidden; */
	animation: 15s wordsLoop linear infinite normal;
}

@keyframes wordsLoop {
	0% {
		transform: translateX(9rem);
		-webkit-transform: translateX(9rem);
	}

	100% {
		transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
	}
}

@-webkit-keyframes wordsLoop {
	0% {
		transform: translateX(9rem);
		-webkit-transform: translateX(9rem);
	}

	100% {
		transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
	}
}