.banner {
    width: var(--maxcenter);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.ban-lef {
    width: 66.66%;
    position: relative;
    cursor: pointer;
}

.ban-lef .img-box::before {
    padding-top: 68%;
}

.ban-rig {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ban-rig-box {
    position: relative;
    cursor: pointer;
}

.ban-rig-box .img-box::before {
    padding-top: 68%;
}


.ban-txt {
    position: absolute;
    width: 100%;
    bottom: 0;
    min-height: 30%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 1% 4% 2%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ban-text {
    color: #fff;
    font-size: 22px;
}

.profile {
    cursor: pointer;
    padding: 5px 10px;
    background-color: #911d9c;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-right: auto;
}

.banrig {
    font-size: 12px;
    padding: 3px 5px;
}

.banrigtxt {
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width:769px) {
    .banner {
        flex-direction: column;
    }

    .ban-lef {
        width: 100%;
    }

    .ban-rig {
        width: 100%;
        flex-direction: row;
    }

    .profile {
        font-size: 12px;
        padding: 2px 4px;
    }

    .ban-rig-box {
        width: 50%;
    }

    .ban-text {
        font-size: 16px;
    }

    .banrigtxt {
        font-size: 14px;
    }
}