.banner {
    width: 100%;
    position: relative;
}

.banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .banner-text {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.banner .banner-text h1 {
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 64px;
    line-height: 95px;
}

.banner .banner-text h1 span {
    color: rgba(209, 12, 0, 1);
}

.banner .banner-text p {
    margin-top: 10px;
    color: rgba(252, 252, 252, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 18px;
    line-height: 46px;
}

.banner .banner-line {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: end;
}

.banner .banner-line img {
    display: block;
    width: 35px;
    height: 34.8px;
    object-fit: cover;
}







/* 响应式区域 */
@media (max-width: 1440px) {

    .banner .banner-text,
    .banner .banner-line {
        width: 84%;
    }
}

@media (max-width: 1200px) {
    .banner .banner-text h1 {
        font-size: 52px;
        line-height: 72px;
    }

    .banner .banner-text p {
        font-size: 16px;
        line-height: 30px;
    }
}

@media (max-width: 1024px) {
    .banner {
        padding-top: 64px;
        background: #170909;
    }

    .banner img {
        min-height: 300px;
    }

    .banner .banner-text,
    .banner .banner-line {
        width: 90%;
    }

    .banner .banner-text {
        top: calc(50% + 32px);
    }

    .banner .banner-line {
        top: calc(100% - 42px);
    }
}

@media (max-width: 768px) {
    .banner {
        padding-top: 58px;
    }

    .banner img {
        min-height: 250px;
    }

    .banner .banner-text {
        top: calc(50% + 0px);
    }

    .banner .banner-text h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .banner .banner-text p {
        margin-top: 6px;
        font-size: 15px;
        line-height: 26px;
    }

    .banner .banner-line {
        display: none;
    }
}

@media (max-width: 560px) {
    .banner img {
        min-height: 220px;
    }

    .banner .banner-text h1 {
        font-size: 22px;
        line-height: 32px;
    }

    .banner .banner-text p {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 420px) {
    .banner img {
        min-height: 200px;
    }

    .banner .banner-text h1 {
        font-size: 18px;
        line-height: 28px;
    }

    .banner .banner-text p {
        font-size: 13px;
        line-height: 22px;
    }
}

