body {
font-size:12px;
color: #434343;
}

* a {
color: #434343;
}

* a:hover {
color:#ff0000;
text-decoration:underline;
}
/* 通用新闻列表 */
.newlist12 ul li {
	line-height:24px;
	background:url(ico.jpg) no-repeat 0px 10px;
	text-indent:14px;
}
.newlist14 ul li {
	line-height:30px;
	background:url(ico.jpg) no-repeat 0px 12px;
	text-indent:14px;
	font-size:14px;
}
.newlist12-date ul li {
	line-height:24px;
	vertical-align:bottom;
}
.newlist14-date ul li {
	line-height:30px;
	vertical-align:bottom;
}
.newlist12-date ul li a,.newlist14-date ul li a {
	float:left;
}
.newlist12-date ul li span,.newlist14-date ul li span {
	float:right;
}
.newlist12-date ul li a {
	background:url(ico.jpg) no-repeat 0px 12px;
	text-indent:14px;	
}
.newlist14-date ul li a {
	background:url(ico.jpg) no-repeat 0px 12px;
	text-indent:14px;		
	font-size:14px;
}
.newlist14-date ul li span {
font-size:12px;
color:#ddd;	
}


			
@keyframes mymove
{
0%{
transform: scale(1);
  /*开始为原始大小*/
}
25%{
transform: scale(1.1); /*放大1.1倍*/
}
50%{
transform: scale(1);
}
75%{
transform: scale(1.1);
}

}

@-webkit-keyframes mymove /*Safari and Chrome*/
{
0%{
transform: scale(1);  /*开始为原始大小*/
}
25%{
transform: scale(1.1); /*放大1.1倍*/
}
50%{
transform: scale(1);
}
75%{
transform: scale(1.1);
}
}


#index-main {
	position:relative;
	width:1002px;
	margin:0 auto;


}
#index-1bg1 img {
animation:scaleDraw 2s linear 1;
}

@-webkit-keyframes bannerCloud {  0% {
 opacity: 0;
 -webkit-transform: scale(1);
}
 10%,  80% {
 opacity: 0.7;
}
 100% {
 opacity: 0;
 -webkit-transform: scale(3);
}
}
 @keyframes bannerCloud {  0% {
 opacity: 0;
 transform: scale(1);
}
 10%,  80% {
 opacity: 0.7;
}
 100% {
 opacity: 0;
 transform: scale(3);
}
}
@keyframes scaleDraw {  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
            0%{
				 opacity: 0;
                transform: scale(0.1);  /*开始为原始大小*/
            }
            25%{
				 opacity: 0.5;
                transform: scale(0.6); /*放大1.1倍*/
            }
            50%{
				 opacity: 0.7;
                transform: scale(0.9);
            }
            75%{
				 opacity:0.9;
                transform: scale(1.2);
            }
			 100%{
                transform: scale(1);
            }
}
@keyframes scaleheight {  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
            0%{
           height:800px;/*开始为原始大小*/
	
            }
            25%{
           height:550px; /*放大1.1倍*/
            }
            50%{
        height:350px;
            }
            75%{
   height:200px;
            }
			 100%{
         height:0px;
            }
}