﻿

@-webkit-keyframes widthAni{ 0%{ width:0;}100%{ width:100%;}}

@keyframes widthAni{ 0%{ width:0;}100%{ width:100%;}}

.widthAni{ -webkit-animation-name:widthAni; animation-name:widthAni;}



@-webkit-keyframes heightAni{ 0%{ height:0;}100%{ height:100%;}}

@keyframes heightAni{ 0%{ height:0;}100%{ height:100%;}}

.heightAni{ -webkit-animation-name:heightAni; animation-name:heightAni;}


@-webkit-keyframes opacity { 0%{ color:#333333;} 100%{ color:#c6000b;}}

@keyframes opacity { 0%{ color:#333333;} 100%{ color:#c6000b;}}

.opacity{ -webkit-animation-name:opacity; animation-name:opacity;}

@-webkit-keyframes banScroll{ 0%{ top:10px; opacity:1;} 100%{ top:90%; opacity:0;}}
@keyframes banScroll{ 0%{ top:10px; opacity:1;} 100%{ top:90%; opacity:0;}}
.banScroll{ -webkit-animation-name:banScroll; animation-name:banScroll;}


@-webkit-keyframes LineScroll{ 0%{ background-position:0 -50px} 80%{background-position:0 0} 100%{background-position:0 50px}}
@keyframes LineScroll{ 0%{background-position:0 -50px} 80%{background-position:0 0} 100%{background-position:0 50px}}