* {
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
}
html,
body {
	background: black;
	position: relative;
	width: 100%;
	height: 100%;
}
.mt10{
	margin-top: 10px;
}

.centerBox {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: white;
}
.center-list{
	width: 70%;
	margin: 0 15%;
	}
.centerBody{
	width: 100%;
	text-align: center;
	margin-top: 25%;
}
.centerBody img{
	margin: 0 auto;
}
.btn-p{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 30px;
}
.btn-p a{
	/*white-space:nowrap;*/
	font-size: 14px;
	color: #FFFFFF;
	padding: 8px 30px;
	border-radius:30px;
  	margin: 0 10px;
	background: rgba(29, 29, 29, 0.5);
	border:1px solid rgba(89, 129, 183, 0.2);
}
.btn-p a:hover{
	color: #FFFFFF;
	background: -webkit-linear-gradient(left, #19c3ff, #0093ff);
    background: -o-linear-gradient(left, #19c3ff, #0093ff);
    background: -moz-linear-gradient(left, #19c3ff, #0093ff);
    background: linear-gradient(left, #19c3ff, #0093ff);
}
.footer{
	position: fixed;
	bottom: 20px;
	width: 100%;
}
.center-footer{
	width: 70%;
	margin: 0 15%;
}
.footer .banquan,.footer .banquan a{
	text-align: center;
	font-size: 12px;
	color: #6a7179;
}
@media screen and (max-width: 950px) {
	
	.centerBody{
		margin-top: 55%;
	}
	.centerBody img{
		width: 100%;
	}
	.center-list {
	    width: 90%;
	    margin: 0 5%;
	}
	.btn-p{
		flex-wrap: wrap;
	}
	.btn-p a {
		flex: 1;
		width: 33.3%;
	    min-width: 33.3%;
	    max-width: 33.3%;
	    margin-top: 20px;
	}
}
@-webkit-keyframes shake {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes shake {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.8;
    }
}

.shake {
    -webkit-animation: shake 2.2s infinite;
    animation: shake 2.2s infinite;
}
/*文字选中效果*/
*::selection {
	color: #19c3ff;
    background: -webkit-linear-gradient(left, #19c3ff, #0093ff)
}

*::-moz-selection {
	color: #19c3ff;
    background: -webkit-linear-gradient(left, #19c3ff, #0093ff)
}

*::-webkit-selection {
	color: #19c3ff;
    background: -webkit-linear-gradient(left, #19c3ff, #0093ff)
}