
body {
}
/**** 首页 ****/

.wrapper {
	float: left;
	width: 100%;
	color: #382755;
}
.wrapper.index {
	background: #b07343 url(../body/wrap-index.jpg) no-repeat;
	background-size: 100% auto;
}

/*banner图动画*/

.indexBann {
	position: relative;
	float: left;
	width: 100%;
	height: 4.1rem;
	overflow: hidden;
}
.indexBann .logo {
	position: absolute;
	left: -.5rem;
	top: .2rem;
	width: 2.17rem;
	height: .63rem;
	background: url(../body/logo.png) no-repeat right center;
	background-size: auto 100%;
}
.indexBann .sun {
	position: absolute;
    left: 1.27rem;
    top: 2.16rem;
    width: 1.1rem;
    height: 1.1rem;
	background: url(../body/sun.png) no-repeat;
	background-size: 100% 100%;
	animation: sun 15s linear infinite;
	-moz-animation: sun 15s linear infinite;
	-webkit-animation: sun 15s linear infinite;
	-o-animation: sun 15s linear infinite;
}
@keyframes sun {
	from {}
	to {
		transform: rotate(360deg);
	}
}
@-moz-keyframes sun {
	from {}
	to {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes sun {
	from {}
	to {
		transform: rotate(360deg);
	}
}
@-o-keyframes sun {
	from {}
	to {
		transform: rotate(360deg);
	}
}
