/* 公司简介 */
.active .comback {
    animation: comleft 1s ease forwards;
}

.active .comcon {
    animation: comcon1 1s ease forwards;

}

/* 产品中心 */
.active .proitem {
    animation: pro1 1s forwards;
}




.active .cases .title {
    animation: comcon1 1s forwards;
    position: relative;
}

/* 项目案例 */
.active .caback {
    animation: comleft 1s forwards;
}

.active .caseleft {
    animation: comcon1 1s forwards;
}

/* 资料下载 */
.active .downitem {
    animation: pro1 1s forwards;
}


/* 售后服务 */

.active .seitem {
    animation: pro1 1s forwards;
}

/* 新闻中心 */

.active .neitem {
    animation: pro1 1s forwards;
}





.active .pro11 {
    animation-delay: 0s;
}

.active .pro12 {
    animation-delay: 0.2s;
}

.active .pro13 {
    animation-delay: 0.4s;
}

.active .pro14 {
    animation-delay: 0.6s;
}

.active .pro15 {
    animation-delay: 0.8s;
}

.active .pro16 {
    animation-delay: 1s;
}

@keyframes comleft {
    from {
        right: -100%;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

@keyframes comcon1 {
    from {
        left: -100%;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}


@keyframes pro1 {
    from {
        bottom: -200px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}