﻿
/*内页banner*/
.banner {margin:0px auto;width:100%;height:auto;text-align:center;clear:both;overflow:hidden;}
.banner>img{width:100%;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
-webkit-animation: minus 5s 0s ease both infinite;
-moz-animation: minus 5s 0s ease both infinite;
animation: minus 5s 0s ease both infinite;
animation-iteration-count: 1;
-webkit-animation-iteration-count: 1;
}
@keyframes minus {
	0% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
/*内页banner*/