.in-banner div:nth-child(1):after {
    display: none;
}

.video {
    padding: 170px 0 120px;
}

.video .container {
    display: flex;
    flex-wrap: wrap;
}

.video-div {
    margin-right: 30px;
    width: calc((100% - 60px) / 3);
    margin-bottom: 40px;
}

.video-div:nth-child(3n) {
    margin-right: 0;
}

.video-div div {
    position: relative;
    margin-bottom: 30px;
}

.video-div > div i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #fff;
    color: #de0214;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    font-size: 14px;
}

.video-div > div i:before {
    margin-left: 2px;
}


.video-div div img {
    width: 100%;
    border-radius: 10px;
}

.video-div p {
    font-size: 16px;
    line-height: normal;
    color: #121212;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-div span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background: #fff;
    border-radius: 50%;
    z-index: -2;
    animation: video 1s linear infinite;
}

.video-div span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background: #fff;
    border-radius: 50%;
    z-index: -2;
    animation: video2 1s 2s linear infinite;
}

@keyframes video {
    0% {
        width: 35px;
        height: 35px;
        opacity: 0.6;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        width: 50px;
        height: 50px;
        opacity: 0.3;
    }
}


@keyframes video2 {
    0% {
        width: 50px;
        height: 50px;
        opacity: 0.2;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        width: 65px;
        height: 65px;
        opacity: 0;
    }
}

.video-div a {
    width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: left;
    color: #de0214;
    position: relative;
    display: inline-block;
    transition: .4s;
}

.video-div a:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 1px;
    bottom: 0;
    left: 0;
    display: block;
    background: #de0214;
    transition: .4s;
    z-index: -1;
}

.video-div a:hover {
    color: #fff !important;
    padding-left: 45px;
}

.video-div a:hover:after {
    width: 100%;
    height: 100%;
}

.video-fanye {
    width: 100%;
    margin-top: 20px;
}

.contact, .pc-foot, .contact-right input, .contact-right textarea {
    background: #f1f3f5;
}