@charset "utf-8";
		/*上至下*/
		.act_style_top_a {
			animation-name: act_top_a;
			animation-duration: 2s;
			animation-delay:2.1s;
 			animation-fill-mode: both;
		}

		@keyframes act_top_a {
			0% {
			opacity: 0;
			top: -20%;
			}
						
			100% {
			opacity: 1;
			top: 5%;
			}
		}
		/*上至下-END*/

		/*文字左至右*/
		.act_style_left_a {
			animation-name: act_left_a;
			animation-duration: 2s;
 			animation-fill-mode: both;
		}
		#act_style_delay_a {
			animation-delay:2.3s;
		}
		#act_style_delay_b {
			animation-delay:2.5s;
		}
		#act_style_delay_c {
			animation-delay:2.7s;
		}

		@keyframes act_left_a {
			0% {
			opacity: 0;
			left:0;
			text-indent: -40px;
			}
						
			100% {
			opacity: 1;
			left:1%;
			text-indent: 0px;
			}
		}
		/*文字左至右-END*/
