.main_box .actress_rank_box {
    margin: 0.8rem;
}

.main_box .actress_rank_box h1 {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 0.4rem 0 2rem 0;
    color: #CFCDE4;
}

.main_box .actress_rank_box .filter_option_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0.8rem;
}

.main_box .actress_rank_box .filter_option_box .sort_box{
    display: block;
    text-align: right;
}

.main_box .actress_rank_box .filter_option_box .sort_box a {
    color: #9191A8;
    font-size: 14px;
}


.main_box .actress_rank_box .filter_option_box .sort_box .active{
    color: #078AFE;
}

.main_box .actress_rank_box .filter_option_box .sort_box li {
    display: inline-flex;
    margin-left: 0.4rem;
    align-items: center;
}

.main_box .actress_rank_box ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: space-between;
    width: 100%;
}

.main_box .actress_rank_box li {
    margin: 0.4rem 0;
}

.main_box .actress_rank_box li div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_box .actress_rank_box li div a:nth-child(1) {
    margin-bottom: 0.2rem;
}

.main_box .actress_rank_box li div a:nth-child(2) {
    max-width: 95px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main_box .actress_rank_box li div a {
    color: #CFCDE4;
    font-size: 14px;
}

.main_box .actress_rank_box li div img {
    border-radius: 100%;
    width: 95px;
    height: 95px;
}

.main_box .actress_rank_box li div p {
    color: #9191A8;
    font-size: 12px;
    margin-top: 0.4rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .main_box .actress_rank_box ul {
        min-width: calc(100vw - 1.6rem);
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        justify-content: space-between;
        width: 100%;
    }

    .main_box .actress_rank_box li div img {
        border-radius: 100%;
        width: 76px;
        height: 76px;
    }

    .main_box .actress_rank_box li div a:nth-child(2) {
        max-width: 76px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .main_box .actress_rank_box ul {
        min-width: calc(100vw - 1.6rem);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: space-between;
        width: 100%;
    }

    .main_box .actress_rank_box li div img {
        border-radius: 100%;
        width: 56px;
        height: 56px;
    }

    .main_box .actress_rank_box li div a:nth-child(2) {
        max-width: 56px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}