body {
    user-select: none;
    background-color: var(--color-black);
    overflow: hidden;
}

.brand-container,
.brand-animate,
.brand-content,
.brand-box,
.brand-swiper,
.brand-list {
    height: 100%;
}
.brand-container {
    background-color: var(--color-black);
}
.brand-content,
.brand-swiper {
    float: left;
    padding: 195px 0 96px;
}
.brand-content {
    width: 678px;
    background:no-repeat 96px calc(100% - 96px) / 65%;
}
.brand-box {
    padding: 126px 30px 0 126px;
}
.brand-text {
    color: var(--color-white);
}
.brand-text .text i {
    display: block;
    line-height: 1.2;
    font-size: 60px;
    font-weight: bold;
}
.brand-text .name {
    margin-top: 30px;
    font-size: 0;
}
.brand-text .name > div {
    display: inline-block;
    position: relative;
    height: 75px;
    font-size: 30px;
}
.brand-text .name > div::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: url('../../images/icon_arc_red.png') no-repeat 0 bottom / 120px;
    animation: ani-brand-text .4s linear 1s forwards;
    overflow: hidden;
}

@keyframes ani-brand-text {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.brand-swiper {
    width: calc(100% - 678px);
    overflow: hidden;
}
.brand-list {
    font-size: 0;
    white-space: nowrap;
    transition: all 1s linear;
}
.brand-slide {
    display: inline-block;
    position: relative;
    margin-right: 15px;
    width: 550px;
    height: 100%;
    overflow: hidden;
}
.brand-slide:last-child {
    margin-right: 0;
}
.brand-slide .image {
    height: 85%;
    background: no-repeat 0 top / 100%;
    transition: all .2s linear;
}
.brand-slide .text {
    position: absolute;
    top: 30px;
    left: 0;
}
.brand-slide .text i,
.brand-slide .text img {
    display: block;
}
.brand-slide .text i,
.brand-slide .text div {
    padding-left: 30px;
    line-height: 1.2;
    color: var(--color-white);
}
.brand-slide .text i {
    min-height: 24px;
    font-size: 20px;
}
.brand-slide .text div {
    margin: 10px 0;
    background: url('../../images/icon_arrow_right_red_2.png') no-repeat 0 center / 20px;
    font-size: 24px;
}
.brand-slide .text img {
    margin-left: 30px;
    width: 25px;
}
.brand-slide:hover .image,
.brand-slide.hover .image {
    height: 100%;
}
.brand-arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 20px;
    transform: translateY(-50%);
    z-index: 2023;
}
.brand-arrow img {
    display: block;
    width: 100%;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .6));
}