.bannerBox {
	width: 100%;
	position: relative;
	background: url(../img/bg.png) no-repeat;
	background-size: 100% 100%;
}

.bannerBox .logo {
	width: 2.2rem;
	position: absolute;
	left: 0.2rem;
	top: 0.4rem;
}
.bannerBox .bannerTitle{
	width: 80%;
    margin: 1.6rem 10% 1.2rem 10%;
	animation: ZoomInOut 10s infinite linear;
}
@-webkit-keyframes ZoomInOut {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
}

@keyframes ZoomInOut {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
}

.messageBox {
	padding-bottom: 1.3rem;
}

.messageBox .box1 {
	width: 100%;
	padding: 0.3rem 0.5rem;
	box-sizing: border-box;
	background-color: #feba02;
	box-shadow: 0px -1px 10px 0px rgba(34, 24, 21, 0.56);
	font-size: 0.24rem;
	color: #ffffff;
	line-height: 1.636;
	text-align: justify;
	border-radius: 1rem;
	margin-top: -0.8rem;
	position: relative;
	z-index: 10;	
}

.footer {
	width: 100%;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
	height: 1.2rem;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
	max-width: 750px;
}

.footer .link1 {
	float: left;
	width: 48%;
	height: 0.88rem;
	background-color: #feba02;
	text-align: center;
	line-height: 0.88rem;
	color: #ffffff;
	border-radius: 0.44rem;
	margin-top: 0.16rem;
	letter-spacing: 2px;
}
.footer .link1 p:nth-child(1){
	font-size: 0.32rem;
    line-height: 0.46rem;
    padding-top: 0.10rem;
}
.footer .link1 p:nth-child(2){
	font-size: 0.18rem;
	line-height: 0.22rem;
}
.footer .link1:hover {
	opacity: 0.8;
}

.footer .link2 {
	float: right;
	width: 48%;
	height: 0.88rem;
	background-color: rgb(50, 62, 216);
	text-align: center;
	line-height: 0.88rem;
	color: #ffffff;
	font-size: 0.32rem;
	border-radius: 0.44rem;
	margin-top: 0.16rem;
	letter-spacing: 2px;
}

.footer .link2:hover {
	opacity: 0.8;
}

.items {
	margin-top: 0.5rem;
	position: relative;
}

.items .line {
	width: 0.02rem;
	/* background-color: #4452dd; */
	border-left: 0.02rem dashed #4452dd;
	position: absolute;
	top: 0.15rem;
	left: 0.14rem;
	z-index: -1;
}

.items .item {
	padding-bottom: 0.1rem;
}

.items .item .title {
	padding-left: 0.6rem;
	background: url(../img/circle.png) no-repeat left center;
	background-size: 0.3rem;
	font-size: 0.38rem;
	color: #333333;
	font-weight: 550;
	margin-bottom: 0.3rem;
	/* z-index: 5; */
}

.items .item .text {
	margin-left: 0.6rem;
	border-radius: 10px;
	background-color: #eeeeee;
	padding: 0.15rem 0.2rem;
	font-size: 0.28rem;
	color: #333333;
	box-sizing: border-box;
	line-height: 1.7;
	text-align: justify;
	position: relative;
	margin-bottom: 0.3rem;
	overflow: hidden;
}

.items .item:nth-child(4) .text,
.items .item:nth-child(10) .text {
	min-height: 1.15rem;
}

.items .item .text .itemIntro {
	display: inline;
}

.items .item .text a {
	position: absolute;
	font-size: 0.28rem;
	color: #4452dd;
	position: relative;
	float: right;
	line-height: 1.7;
	text-decoration: none;
}

.items .item .text a:hover {
	text-decoration: none;
}
.items .item .text a:visited{
	text-decoration: none;
}
.items .item .text a:link{
	text-decoration: none;
}

.code{
	width: 40%;
	margin-left: 5%;
	margin-top: -3rem;
	display: none;
}
@media(min-width:750px) {
	.messageBox .box1 {
		margin-top: -0.8rem;
	}

	.footer {
		left: 50%;
		margin-left: -375px;
	}
	.code{
		width: 40%;
		margin-left: 5%;
		position: absolute;
		margin-top: -4.5rem;
		display: none;
	}
}
