.two-left{
    animation:leftStyle 2s;
    transition:  transform 2s;
    -webkit-backface-visibility: hidden
}
.three-mymove{
    /*animation:big 2s;*/
    animation:title 2s;
    animation-delay:0s;
    animation-iteration-count:1;
    animation-fill-mode: forwards;
}
.mymove-title{
    animation:big 4s;
    transition:  transform 3s;
    -webkit-backface-visibility: hidden
    /*-webkit-transform: rotate(360deg); !* Chrome, Safari, Opera *!*/
    /*transform: rotate(360deg);*/
    /*transform: rotate(45deg);*/
    /*transform-origin:20% 40%;*/
}
.editor-active{
    /*border: none ;*/
    /*background:*/
            /*linear-gradient(90deg, #333 50%, transparent 0) repeat-x,*/
            /*linear-gradient(90deg, #333 50%, transparent 0) repeat-x,*/
            /*linear-gradient(0deg, #333 50%, transparent 0) repeat-y,*/
            /*linear-gradient(0deg, #333 50%, transparent 0) repeat-y;*/
    /*background-size: 4px 1px, 4px 1px, 1px 4px, 1px 4px;*/
    /*background-position: 0 0, 0 100%, 0 0, 100% 0;*/


}
.big-active{
    animation:big 2s;
    animation-delay:0s;
    animation-iteration-count:1;
    animation-fill-mode: forwards;
}
/*css3动画*/
/* 淡出 */
@keyframes mymove {
    0%   {margin-top: 100px;opacity: 0;}
    /*!* 25%  {margin-top: 75px;opacity: 0.25;}*/
    /*50%  {margin-top: 50px;opacity: 0.5;}*/
    /*75%  {margin-top: 25px;opacity: 0.75;} *!*/
    100% {margin-top: 0px;opacity: 1;   }
}
/* 标题样式 */
@keyframes title {
    0%   {opacity: 0;transform:translate(0,3vw); }
    /*!* 25%  {margin-top: 75px;opacity: 0.25;}*/
    /*50%  {margin-top: 50px;opacity: 0.5;}*/
    /*75%  {margin-top: 25px;opacity: 0.75;} *!*/
    100% {opacity: 1;    transform:translate(0,0vw);  }
}
/* 淡出 */
@keyframes leftStyle {
    0%   {opacity: 0;transform:translate(5vw,0); }
    /*25%  {margin-top: 75px;opacity: 0.25;}*/
    50%  {opacity: 0.5;transform: rotate(60deg);}
    /*75%  {margin-top: 25px;opacity: 0.75;} */
    100% {opacity: 1;    transform:translate(0,0vw);  }
}
/* 淡出 */
@keyframes big {
    0%   {font-size: 1.3vw }
    /*25%  {margin-top: 75px;opacity: 0.25;}*/
    50%  {font-size: .7vw }
    /*75%  {margin-top: 25px;opacity: 0.75;} */
    100% {font-size: 1.9vw   }
}
