/* 更多 */
main .more_box {
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 101;
    color: #ffffff;
    display: none;
}

main .more_box .close_box {
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

main .more_box .more_menu_list_box {
    width: 100%;
    position: absolute;
    bottom: 51px;
    left: 0px;
    padding: 20px;
    background: rgba(0, 0, 0, 1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

main .more_box .more_menu_item_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}

main .more_box .more_menu_item_box .icon_img {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
}