.channel-banner {
    width: 100%;
    /* height: 350px; */
    position: relative;
    /* background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
    margin: 0;
    padding: 0;
}

.channel-banner-bgimg {
    width: 100%;
}

.channel-banner .banner-info {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 0;
    right: 0;
    z-index: 3
}

.channel-banner .banner-info h3 {
    font-size: 40px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px
}

.channel-banner .banner-info h3:before {
    left: 50%;
    margin-left: -15px;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background: #ff9600;
    content: '';
    display: block;
    position: absolute;
}

.channel-banner .banner-info p {
    font-size: 36px;
}

.channel-banner .banner-centerbox {
    position: absolute;
    top: 11.98vw;
    left: 50%;
    transform: translateX(-50%);
}

.channel-banner .banner-centerbox .banner-title {
    font-weight: bold;
    font-size: 5.46vw;
    color: rgb(245, 245, 245);
    animation: centerboxtitle 2s linear infinite;
    text-align: center;
}

@keyframes centerboxtitle {
    0% {
        text-shadow: 0vw 0vw 1vw rgba(75, 164, 253, 0.1);
    }

    50% {
        text-shadow: 0vw 0vw 1vw rgba(75, 164, 253, 1);
    }

    100% {
        text-shadow: 0vw 0vw 1vw rgba(75, 164, 253, 0.1);
    }
}

.channel-banner .banner-centerbox .banner-button {
    width: 34.69vw;
    height: 4.54vw;
    background: url('../images/banner_center_abutton.webp') no-repeat center;
    background-size: 100% 100%;
    font-weight: 400;
    font-size: 1.72vw;
    color: rgb(245, 245, 245);
    text-shadow: 0vw 0vw 0.6vw rgba(75, 164, 253, 1);
    text-align: center;
    line-height: 4.54vw;
    margin: 0 auto;
    cursor: pointer;
}

.banner-dataBox {
    position: absolute;
    left: 2.92vw;
    bottom: 2.33vw;
    display: flex;
    align-items: center;
}

.banner-dataBox .banner-data-item {
    display: flex;
    flex-direction: column;
    margin-right: 2.5vw;
}

.banner-dataBox .banner-data-item .title {
    font-weight: 400;
    font-size: 1.01vw;
    color: #FFFFFF;
    margin-bottom: 0.5vw;
}

.banner-dataBox .banner-data-item .value {
    font-weight: bold;
    font-size: 2.48vw;
    color: #69F8FF;
    animation: datavalueinit 1s, datavalue 2s linear infinite;
}

@keyframes datavalueinit {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes datavalue {
    0% {
        text-shadow: 0vw 0vw 0.8vw rgba(105, 248, 255, 0.1);
    }

    50% {
        text-shadow: 0vw 0vw 0.8vw rgba(105, 248, 255, 0.9);
    }

    100% {
        text-shadow: 0vw 0vw 0.8vw rgba(105, 248, 255, 0.1);
    }
}

.channel-banner .banner-rightbutton {
    position: absolute;
    width: 23.19vw;
    height: 4.51vw;
    right: 2.86vw;
    bottom: 2.44vw;
    background: url('../images/banner_right_abutton.webp') no-repeat center;
    background-size: 100% 100%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.57vw;
    color: #FFFFFF;
    text-shadow: 0vw 0vw 0.5vw rgba(0, 0, 0, 0.14);
    text-align: center;
    line-height: 4.51vw;
}

/* 手机 */
.main-mobile .channel-banner-bgimg {
    max-height: 400px;
}