main {
    display: flex;
    gap: 24px;
    --main-right: 355px;
    margin-top: 20px !important;
}

main .main-left {
    width: calc(100% - var(--main-right) - 24px);
}

main .main-right {
    width: var(--main-right);
    position: sticky;
    top: 68px;
    margin-bottom: auto;
}

main .list {
    margin-bottom: 24px;
}

main h2 {
    color: color(display-p3 1 1 1 / 0.9);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

main .big-box {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
}

.hot-box .img-box {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px 0px;
    margin-bottom: 8px;
}

.hot-box .img-box::before {
    padding-top: 100%;
}

.hot-box h3,
.all-box h3,
.right-box h3 {
    color: color(display-p3 1 1 1 / 0.8);
    font-size: 15px;
    font-style: normal;
    font-weight: 550;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    line-height: 1.3;
}

.main-right .big-box {
    padding: 16px;
}

.all-box .img-box {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
}

.all-box .img-box::before {
    padding-top: 130%;
}

.all-box:hover .img-box,
.hot-box:hover .img-box {
    border: 2px solid rgb(255, 0, 150);
    background: linear-gradient(color(display-p3 0 0 0 / 0) 0%, color(display-p3 0 0 0 / 0.7) 100%);
    box-shadow: rgb(255, 0, 148) 0px 0px 20px 0px inset;
}

.more {
    display: block;
    margin: 20px auto 0;
    padding: 8px 20px;
    color: #fff;
    border: 1px solid #fff;
    font-size: 16px;
    border-radius: 5px;
    transition: .3s;
}

.more:hover {
    background-color: #fff;
    color: #000;
}

.right-box {
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.right-box .img-box {
    min-width: 30%;
    width: 30%;
    max-width: 30%;
    border-radius: 10px;
    overflow: hidden;
}

.right-box img {
    transition: .3s;
}

.right-box .img-box::before {
    padding-top: 100%;
}

.right-box:hover img {
    transform: scale(1.2);
}

@media screen and (min-width:770px) {
    .hot-box {
        width: calc((100% - 144px) / 7);
        margin-right: 24px;
    }

    .hot-box:nth-of-type(7n) {
        margin-right: 0;
    }

    .all-box {
        width: calc((100% - 96px) / 5);
        margin-right: 24px;
    }

    .all-box:nth-of-type(5n) {
        margin-right: 0;
    }
}

@media screen and (max-width:769px) {
    main {
        flex-direction: column-reverse;
        padding: 0 5px;
    }

    main .main-left {
        width: 100%;
    }

    main .main-right {
        width: 100%;
        position: relative;
        top: 0;
        display: none;
    }

    .main-right .big-box {
        padding: 8px;
    }

    .right-box {
        margin-bottom: 0;
    }

    .hot-box {
        width: calc((100% - 12px) / 2);
        margin-right: 12px;
    }

    .hot-box:nth-of-type(2n) {
        margin-right: 0;
    }

    .all-box {
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
    }

    .all-box:nth-of-type(2n) {
        margin-right: 0;
    }
}