* {
	margin: 0;
	padding: 0;
	list-style: none;
}

body {
	width: 11.7rem;
}

.main {
	width: 100%;
	min-height: 250vh;
	background: url("../images/bg@2x.png");
	background-size: 100% auto;
	position: absolute;
}

.logo {
	width: 20%;
	height: .7rem;

	background-size: 100% 100%;
	margin-top: .4rem;
	margin-left: .4rem;
}

.title {
	width: 3.4rem;
	height: 0.7rem;
	margin: 0 auto;
	margin-top: 0.1rem;
	background-image: url("../images/tyy@2x.png");
	background-size: 100% 100%;
}

.banner {
	width: 100%;
	/* height: 4rem; */
	margin: .5rem 0;
}


.nav-list {
	width: 96%;
	margin: 0 auto;
	margin-bottom: .5;
}

.vip {
	width: 90%;
	/* height: 1.1rem; */
	margin: 0 auto;
	
}

.top-img{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.vip-first{
	width: 65%;
}

.dxNumber {
	width: 100%;
}

.dxNumber>input {
	width: 80%;
	margin-left: 10%;
	height: 1.2rem;
	font-size: 0.38rem;
	color: #000;
	border-radius: 0.25rem;
	text-align: center;
	background-color: #f7f5e6;
	border: 0;
}

.dxNumber>img {
	margin: 0.44rem 20% 0;
}

.xyText {
	width: 90%;
	margin: 0 auto;

	color: #fff;
	font-size: 0.24rem;
	display: flex;
	align-items: center;

}

.checkbox {
	width: 0.3rem;
	height: .3rem;
	border: .1rem;
}

.xyText>span {
	color: #08c4f3;
}

.qylb,
.yycw {
	margin-top: 0.5rem;
}

.qylbTit,
.yycwTit {
	width: 60%;
	margin: 0 auto;
}

.lbList,
.yycwList {
	width: 90%;
	/* height: 5.2rem; */
	margin: 0 auto;
	margin-top: 0.1rem;
	background-image: url("../images/bjbk-1@2x.png");
	background-size: 100% 100%;
	overflow: hidden;
}

.lbList>ul,
.yycwList>ul {
	width: 100%;
	/* height: 4rem; */
	margin: .6rem 0;
	padding: 0 0.1rem;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.lbList>ul>li {
	width: 20%;
	padding: 0.1rem;
	/* height: 2.1rem; */
	color: #fff;
	font-size: 0.18rem;
	box-sizing: border-box;
	text-align: center;
}

.lbList>ul>li>p {
	margin-top: 0.1rem;
	height: 0.6rem;
}

.yycwList>ul>li {
	width: 30%;
}

.hdgz {
	width: 90%;
	/* height: 7.2rem; */
	margin: 0 auto;
	margin-top: 1.2rem;
	padding: .1rem .3rem .6rem;
	background-image: url("../images/bk-1@2x.png");
	background-size: 100% 100%;
	box-sizing: border-box;
}

.hdgzTit {
	width: 45%;
	height: 0.8rem;
	margin: 0 auto;
	background-image: url("../images/bk-2@2x.png");
	background-size: 100% 100%;
	display: flex;
	align-items: center;
	position: relative;
	top: -.5rem;
}

.hdgzTit>img {
	margin: 0 auto;
}

.hdgz>p {
	color: #fff;
	font-size: 0.26rem
}

.footer {
	width: 90%;
	margin: .1rem auto;
}

.footer>.numberbox {
	display: flex;
	align-items: center;
	height: 0.6rem;
	justify-content: space-between;
	margin-bottom: .3rem;
}

.footer>.numberbox>input {
	width: 70%;
	height: 0.6rem;
	font-size: 0.28rem;
	border-radius: 0.1rem;
	border: 0;
	text-align: center;
}

.modal {
	display: none;
	/* 默认隐藏 */
	position: fixed;
	/* 根据浏览器定位 */
	z-index: 999;
	/* 放在顶部 */
	left: 0;
	top: 0;
	width: 100%;
	/* 全宽 */
	height: 100%;
	/* 全高 */
	overflow: hidden;
	/* 允许滚动 */
	background-color: rgba(0, 0, 0, 0.4);
	/* 背景色 */
}

/*模态框内容*/
.modal-content {
	display: flex;
	/*采用flexbox布局*/
	flex-direction: column;
	/*垂直排列*/
	position: relative;
	background-image: url("../images/bg@2x.png");
	background-size: 100% auto;
	margin: 15% auto;
	/*距顶部15% 水平居中*/
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	border-radius: 1vh;
	animation: topDown 0.4s;
	/*自定义动画，从模态框内容上到下出现*/
}

@keyframes topDown {
	from {
		top: -300px;
		opacity: 0
	}

	to {
		top: 0;
		opacity: 1
	}
}

/*模态框头部*/
.modal-header {
	width: 100%;
	/* height: 5vh; */
	/* display: flex; */
	/*采用flexbox布局*/
	/* flex-direction: row; */
	/*水平布局*/
	/* align-items: center; */
	/*内容垂直居中*/
	/* justify-content: center; */
	position: relative;
	font-size: 3vh;
	color: #fff;
	margin: 2vh auto;
}
.logo2{
	width: 30%;
	height: .7rem;

	background: url('../images/tyy@2x.png');
	background-size: 100% 100%;
	margin-top: .1rem;
	margin-left: .1rem;
}
.subPhone{
	font-size: .4rem;
}
/*关闭X 样式*/
.close {
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	right: 2vh;
	top: .5vh;
	position: absolute;
}

.close:hover {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.modal-body {
	flex: 1;
	width: 100%;
	color: #fff;
	font-size: .26rem;
	display: flex;
	/*采用flexbox布局*/
	flex-direction: row;
	/*水平布局*/
	align-items: center;
	/*内容垂直居中*/
	justify-content: space-around;
}

.modal-body-label {}

.modal-body-input {
	flex: 1;
	margin: auto 1vh;
	height: 4vh;
}

.modal-body-btn {
	height: 5vh;
	color: #fff;
	background-color: #02c14d;
	border: #02c14d;
	padding: 1vh;
	border-radius: 1vh;
}

.modal-footer {
	margin-top: 3vh;
	padding: 1vh;
	display: flex;
	/*采用flexbox布局*/
	flex-direction: row;
	/*水平布局*/
	align-items: center;
	/*内容垂直居中*/
	justify-content: center;
}

.modal-footer-btn {
	padding: 1.5vh 5vh;
	color: #fff;
	background-color: #409eff;
	border: #409eff;
	border-radius: 1vh;
}

.save-body{
	/*采用flexbox布局*/
	flex-direction: column;
	/*水平布局*/
	align-items: center;
	/*内容垂直居中*/
	justify-content: center;
}
.ranom{
	text-align: center;
	color: #ebc438;
	font-size: 1.5vh;
}
.charging{
	text-align: right;
	margin-right: 3%;
	color: red;
	font-size: 1.5vh;
}

.subPage{
	display: flex;
	/*采用flexbox布局*/
	flex-direction: column;
	/*水平布局*/
	align-items: center;
	/*内容垂直居中*/
	justify-content: center;
}


.gundong{
	font-size: 2vh;
	color: #fff;
	height: 5vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: .2rem auto;
}

#gundongt{
	width: 90%;
	background-color: #e35660;
	border-radius: 5vh;
	font-size: 2vh;
	color: #fff;
	/* height: 5vh; */
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}


.gunp{
	margin: 1vh;
	padding: 2vh;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.gunpp{
	color: #f0dc7a;
}
/* .xyclass{
	height:50vh;
	overflow: auto;
}

.xyclass p{
	color: #fff;
	font-size: 1vh;
	
} */
.ewmBox{
	width: 50%;
	text-align:center;
	margin: .3rem auto;
}