.mian{
	width: 100%;
}
.line{
	width: 90%;
	margin: 20px auto;
	height: 1px;
	background-color: #CCCCCC;
}
.head-contant{
	padding-top: 1.3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	/* height: 20rem; */
	background-image: linear-gradient(to right, #dfa23b 0%, #ffffee 100%);
	box-sizing: border-box;
}
.logo-box{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.logo-box > img{
	width: 6rem;
	height: 6rem;
	/* border: 1px solid #FFFFFF; */
	border-radius: 5px;
}
.logo-box > p{
	display: block;
	color: #FFFFFF;
	font-size: 0.8rem;
	margin-left: .5rem;
}
.tips{
	margin: 60px auto;
    width: 80%;
    font-size: 12px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 16px;
}
/*.head-title{
	font-size: 1.6rem;
	color: #FFFFFF;
}*/
.head-title{
	/*width: 50%;*/
	text-align: center;
	color: #FFFFFF;
}
.title{
	margin-top: 1.3rem;
	font-size: 1.6rem;
}
.subtitle{
	font-size: 1rem;
	margin-top: 0.3rem;
}
.head-btn{
	margin-top: 1.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 14rem;
	height: 3.4rem;
	line-height: 3.4rem;
	background-color: #FFFFFF;
	border-radius: 0.3rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
	margin-left: auto;
	margin-right: auto;
	background-image: linear-gradient(to right,#eeeea2,#dfa23b);
}
.down-icon{
	display: block;
	width: 1.2rem;
	height: 1rem;
}
/*内容部分*/
.contant-box{
	width: 100%;
}
.section1{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.section1 > .subtitle{
	margin-top: 0.5rem;
	font-size: 1rem;
	color: #666;
}
.section-title{
	width: 80%;
	font-size: 2.3rem;
	text-align: center;
}
.swiper{
	width: 16rem;
	background: url(../images/y07.png) no-repeat;
	background-size: 15rem 28rem;
	height: 31rem;
	margin-top: 3rem;
	margin-bottom: 1rem;
}
.swiper img{
	height: 21rem!important;
	border: 1px solid #ccc;
}
.btn-box{
	width: 65%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
}
.btn-box .btn-box-item{
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	
}
.btn-box .btn-box-item .iconBtns{
	display: block;
    width: 8rem;
    height: 2.5rem;
    color: #dfa23b;
    text-align: center;
    line-height: 2.5rem;
    border: 1px solid #dfa23b;
    border-radius: 25px;
    margin-top: 1.5rem;
}
/*轮播图*/
.swiper{
	
}
/*底部信息栏*/
.footer{
    color: #b4b4b4;
    margin-top: 3rem;
}
.footer-nav{
	display: flex;
	flex-direction: column;
}
.footer-nav > span > a{
	color: #b4b4b4;
	text-decoration: none;
}
/*波浪效果*/
.wave-box{
	/*transform: rotate(180deg);*/
	width: 100%;
	height: 100px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, #dfa23b 0%, #ffffee 100%);
}
.wave-box .water{
	position: absolute;
	width: 200%;
	height: 100%;
	background-size: 50% 100%;
}
.wave-box .water1{
	top:20px;
	left: -100%;
	opacity: 0.2;
	animation: water-right 20s infinite linear;
}
.wave-box .water2{
	top:30px;
	left: 0;
	opacity: 0.3;
	animation: water-left 30s infinite linear;
}
.wave-box .water3{
	top:45px;
	left: -100%;
	animation: water-right 40s infinite linear;
}
@keyframes water-right{
	0% {
		transform: translateX(0) translateZ(0) scaleY(1)
	}
	50% {
		transform: translateX(25%) translateZ(0) scaleY(0.85)
	}
	100% {
		transform: translateX(50%) translateZ(0) scaleY(1)
	}
}
@keyframes water-left{
	from{
		transform: translate(0%,0px);
	}
	to{
		transform: translate(-50%,0px);
	}
}