

@media (min-width: 750px) {
.eWrapper{
position:relative;

width:0;

overflow:hidden
}

.eWrapper .eInner{
position:relative;

background:#FFF
}

.eWrapper.is-render{
-webkit-animation:widthKeyFrame 0.2s linear 0s;

animation:widthKeyFrame 0.2s linear 0s;

-webkit-animation-fill-mode:both;

animation-fill-mode:both;

animation-fill-mode:forwards
}

.eWrapper.is-render .eInner{
-webkit-animation:bgColorKeyFrame 0.2s linear 0s;

animation:bgColorKeyFrame 0.2s linear 0s;

-webkit-animation-fill-mode:both;

animation-fill-mode:both;

animation-fill-mode:forwards
}

@-webkit-keyframes widthKeyFrame{
0%{
width:0
}

1%{
width:100%
}

20%{
width:100%
}

50%{
width:0
}

100%{
width:100%
}


}

@keyframes widthKeyFrame{
0%{
width:0
}

1%{
width:100%
}

20%{
width:100%
}

50%{
width:0
}

100%{
width:100%
}


}

@-webkit-keyframes bgColorKeyFrame{
0%{
background-color:rgba(255,255,255,0.7)
}

50%{
background-color:rgba(255,255,255,0.7)
}

100%{
background-color:rgba(255,255,255,0)
}


}

@keyframes bgColorKeyFrame{
0%{
background-color:rgba(255,255,255,0.7)
}

50%{
background-color:rgba(255,255,255,0.7)
}

100%{
background-color:rgba(255,255,255,0)
}


}

.ie9 .pbox{
opacity:0
}

.ie9 .eWrapper{
width:100%
}

.ie9 .eWrapper .eInner{
display:inline-block;

background:none
}
}
