html {
	max-width: 576px;
	margin: 0 auto;
	background: #fff;
}

body {
	background: #f15153 url(../img/bg.jpg) no-repeat top center;
	background-size: 100%;
	min-height: 100vh;
	position: relative;
}

#header {
	height: auto;
	text-align: center;
	padding: 0.1rem;
	overflow: hidden;
}

#header img {
	width: 2.8rem;
	height: auto;
	margin: 0 auto;
}

.gxBox {
	box-sizing: border-box;
	position: relative;
	padding-bottom: .6rem;
}

.hotBar {
	width: 98%;
	margin: 0 auto;
}

.swiper-slide {
	text-align: center;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slogan {
	width: 82%;
	margin: 0 auto;
	margin-top: -0.6rem;
	margin-bottom: .2rem;
}

.slogan img {
	width: 100%;
	height: auto;	
}

.gxBox .resetBtn {
	max-width: 50%;
	display: block;
	margin: 4% 25%;
	animation: toggleSize 0.7s infinite;
}

.downbtn {
	width: 90%;
	overflow: hidden;
	margin: .1rem auto;
	z-index: 999;
	display: flex;
	justify-content: space-evenly;
	/* -webkit-animation: myfirst 1s infinite;
    animation: myfirst 1s infinite; */
}

.downbtn img {
	width: 2.8rem;
	height: auto;
	margin: 0 auto;
	padding: 0 .2rem;
}

.noticeTage {
	width: 90%;
    position: relative;
    margin: 0 auto;
	padding-bottom: .2rem;
}

.noticeTage ul {
	margin: .2rem auto .2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-evenly;
}

.noticeTage ul li {
	float: left;
    position: relative;
    width: calc((100% - 0.78rem) / 4);
    text-align: center;
    margin: .08rem .05rem;
}

.footer a {
	width: 100%;
	max-width: 7.5rem;
	height: auto;
	background: linear-gradient(0deg, #ffff39, #fff0b3);
	position: fixed;
	margin: 0 auto;
    z-index: 99;
    bottom: 0;
    display: flex;
    align-items: center;
	overflow: hidden;
}

.footer p {
	margin: 0 auto;
    width: 100%;
	height: auto;
	text-align: center;
	color: #ff0000;
	font-size: .4rem;
	padding: .12rem 0;
}


@-webkit-keyframes myfirst {
	from {
		transform: scale(1)
	}

	50% {
		transform: scale(.9)
	}

	to {
		transform: scale(1)
	}
}

@keyframes myfirst {
	from {
		transform: scale(1)
	}

	50% {
		transform: scale(.9)
	}

	to {
		transform: scale(1)
	}
}