/*动画*/
/* header begin */
.logo {
    display: inline-block;
    position: relative;
    -webkit-animation-name: "fadeInLeft";
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
}
.header ul li:nth-child(1){
    -webkit-animation-name: "fadeInRight"; /*动画名称，需要跟@keyframes定义的名称一致*/
    -webkit-animation-duration: 0.3s;/*动画持续的时间长*/
    -webkit-animation-iteration-count: 1;/*动画循环播放的次数为1 infinite为无限次*/
}
.header ul li:nth-child(2){ -webkit-animation:'fadeInRight' 0.6s 1} /* 简写 */
.header ul li:nth-child(3){ -webkit-animation:'fadeInRight' 0.9s 1}
.header ul li:nth-child(4){ -webkit-animation:'fadeInRight' 1.2s 1}
/* header end */