
.row-magin {
    margin-top: 45px;
}

.div-title > div > img {
    height: 292.5px;
}

.set-text > img {
    position: relative;
    z-index: 88;
}

.set-text > a {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    margin: auto;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    color: #FFFFFF;
    margin: 5px 0;
    z-index: 89;
}

.set-text > a > h3 {
    text-align: center;
    padding: 45px 30px 30px;
}

.set-text > a > p {
    height: 170px;
    overflow: hidden;
    padding: 0 20px;

}


.div-title .col-md-3, .div-title .col-xs-6 {
    padding: 5px 0;
}


/* 动画 */
@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }
    75% {
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        transform: translate3d(5px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        transform: translate3d(10px, 0, 0);
    }
    90% {
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}


.page5-tu1 {
    animation: bounceInLeft 0.5s 0.25s linear forwards;
}