.top_video {
    width: 100%;
    height: 540px;
    position: relative;
    margin-top: 76px;
}
.top_video::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
}
.top_video .video_txt {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
    font-size: 42px;
    line-height: 1.2;
}

.top_video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button_wrap {
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    position: relative;
}

.button_wrap .swiper-button-next:after,
.button_wrap .swiper-button-prev:after {
    content: '';
    /* display: flex; */
    /* width: 50px; */
    display: none;
}

.button_wrap .swiper-button-next.swiper-button-disabled,
.button_wrap .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.button_wrap .swiper-button-prev {
    width: 32px;
    height: 32px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_wrap .swiper-button-prev img {
    width: 32px;
    height: 32px;
    display: block;
}

.button_wrap .swiper-button-next {
    width: 32px;
    height: 32px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_wrap .swiper-button-next img {
    width: 32px;
    height: 32px;
    display: block;
}

.button_wrap .swiper-button-prev,
.button_wrap .swiper-button-next {
    display: none;
}

.button_wrap .button_swiper .swiper-wrapper {
    display: flex;
}

.button_wrap .button_swiper .swiper-slide {
    width: auto;
}

.button_wrap .button_swiper .swiper-slide:not(:last-child) {
    margin-right: 14px;
}

.button_wrap .button_swiper .swiper-slide button {
    color: var(--mainpink);
    font-size: 20px;
    height: 40px;
    border: 1px solid var(--mainpink);
    border-radius: 40px;
    padding: 0 14px;
    cursor: pointer;
    transition: all .3s;
}

.button_wrap .button_swiper .swiper-slide button.on {
    background-color: var(--mainpink);
    color: #fff;
}

.button_wrap .button_swiper .swiper-slide button:hover {
    background-color: var(--secondpink);
    color: #fff;
}

.bottom {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    overflow-x: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 160px;
}

.bottom_list {
    margin: 0 auto;
    margin-top: 54px;
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
    height: 3600px;
}

.bottom_list .creator {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 40px;
    margin: 0 auto;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bottom_list .creator li {
    width: 100%;
    /* height: 300px; */
    /* position: relative; */
    /* overflow: hidden; */
    /* margin: 0 20px; */
    cursor: pointer;
    /* margin-bottom: 20px; */
    /* border-radius: 20px; */
    /* overflow: hidden; */
}

.bottom_list .creator li .hover_wrap {
    width: 300px;
    height: 300px;
    position: relative;
}

/* .bottom_list .creator li .hover_wrap::after {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.6;
    transition: all .5s;
    transition-delay: .1s;
}

.bottom_list .creator li .hover_wrap:hover::after {
    height: 100%;
    transition-delay: 0s;
} */

.bottom_list .creator li .hover_wrap .pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.bottom_list .creator li .hover_wrap .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 50%;
    transition: all .5s;
    /* opacity: 0; */
    display: block;
    /* transition-delay: .1s; */
}

/* .bottom_list .creator li .hover_wrap:hover .logo {
    opacity: 1;
} */

.bottom_list .creator li .title {
    color: #fff;
    font-size: 20px;
    margin-top: 16px;
}

.modal_wrap {
    width: 100%;
    height: 100%;
    display: none;
}

.modal_wrap.on {
    width: 100%;
    height: 100%;
    display: block;
}

.modal_wrap .modal_box {
    width: 1000px;
    height: 754px;
    position: fixed;
    top: calc((100vh - 76px) / 2);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1100;
    border: 1px solid #4D4D4D;
    background-color: #171819;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_wrap .modal_box .modal_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    cursor: pointer;
}

.modal_wrap .modal_box .left {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.modal_wrap .modal_box .left video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal_wrap .modal_box .right {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px;
    padding-bottom: 124px;
}

.modal_wrap .modal_box .right .top {
    width: 100%;
    border-bottom: 1px solid #ffffff30;
    margin-bottom: 48px;
}

.modal_wrap .modal_box .right .top .name {
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.modal_wrap .modal_box .right .top .platform {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 8px;
}

.modal_wrap .modal_box .right .detail {
    color: #fff;
    line-height: 1.5;
}

.modal_wrap .modal_bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.8;
    z-index: 100;
}

@media screen and (max-width: 1000px) {
    .modal_wrap .modal_box {
        width: calc(100% - 20px); 
    }
}

@media screen and (max-width: 767px) {
    
    .modal_wrap .modal_box {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
        z-index: 12200;
        flex-direction: column;
    }

    .modal_wrap .modal_box .modal_close{
        z-index: 13330;
    }

    .modal_wrap .modal_box .left{
        width: 100%;
        height: calc(100vh - 250px);
    }

    .modal_wrap .modal_box .right{
        width: 100%;
        height: 250px;
        padding: 34px 20px;
    }

    .modal_wrap .modal_box .right .top .name {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .modal_wrap .modal_box .right .top .platform {
        font-size: 12px;
    }

    .modal_wrap .modal_box .right .detail{
        padding-bottom: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .top_video {
        height: 320px;
        margin-top: 64px;
    }

    .top_video h2 {
        font-size: 32px;
    }

    .button_wrap {
        margin: 0 20px;
        margin-top: 60px;
        display: flex;
        justify-content: flex-start;
    }

    .button_wrap::after {
        content: '';
        display: flex;
        position: absolute;
        top: 0;
        right: 50px;
        height: 100%;
        width: 25px;
        background: rgb(0, 0, 0);
        background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 90%);
        z-index: 10;
        pointer-events: none;
    }

    .button_wrap .swiper-button-prev,
    .button_wrap .swiper-button-next {
        display: flex;
    }

    .button_wrap .button_swiper .swiper-wrapper {
        display: flex;
        width: 588px;
    }

    .button_wrap .button_swiper {
        width: calc(100% - 50px);
        margin: 0;
    }

    .button_wrap .button_swiper .swiper-slide:not(:last-child) {
        margin-right: 6px;
    }

    .button_wrap .button_swiper .swiper-slide:last-child {
        margin-right: 30px;
    }

    .button_wrap .button_swiper .swiper-slide button {
        font-size: 14px;
        height: 32px;
        border-radius: 32px;
    }
    .bottom {
        padding-bottom: 70px;
    }
    .bottom_list {
        align-items: flex-start;
        height: fit-content !important;
        margin-top: 34px;
    }

    .bottom_list .creator {
        gap: 0;
        position: static;
        transform: translateX(0%);
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 0 21px;
    }

    .bottom_list .creator li {
        width: calc((100% / 2) - 10px);
        position: relative;
        margin: 0;
        margin-bottom: 30px;
    }

    .bottom_list .creator li:not(:nth-child(2n)) {
        margin-right: 20px;
    }

    .bottom_list .creator li .hover_wrap {
        width: 100%;
        padding-top: 100%;
        height: fit-content;
    }

    .bottom_list .creator li .title {
        color: #fff;
        font-size: 16px;
        margin-top: 10px;
    }
}