    .NyNavBox {
        background-color: #f2f2f2;
        padding: 0px var(--w1600);
    }

    .NavListBox {
        display: flex;
        flex-wrap: wrap;
    }

    .NavListBox a {
        height: 100%;
        font-size: 16px;
        line-height: 20px;
        padding: 30px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .NavListBox a::after {
        content: "";
        position: absolute;
        width: 1px;
        height: 15px;
        display: block;
        background: #ccc;
        right: 0px;
    }

    .NavListBox a::before {
        position: absolute;
        content: '';
        bottom: 0px;
        width: 0%;
        height: 3px;
        background: #124299;
        transition: all .3s;
    }

    .NavListBox a:hover::before {
        width: 80%;
    }

    .itemBox {
        margin-bottom: 45px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px 20px;
    }

    .itemBox .Item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .itemBox .Item img {
        width: 260px;
        height: 380px;
        object-fit: contain;
    }

    .itemBox .Item h1 {
        width: 100%;
        padding: 10px 20px;
        background: #eeeeee;
        font-size: 18px;
        font-weight: bold;
        height: 90px;
        color: #2b2b2b;
        display: flex;
        align-items: center;
    }

    @media (max-width: 1200px) {
        .NavListBox a {
            padding: 15px;
        }

        .itemBox .Item img {
            width: 160px;
            height: 240px;
            object-fit: contain;
        }

        .itemBox .Item h1 {
            font-size: 16px;
            height: 75px;
        }
    }

    @media (max-width: 720px) {
        .itemBox {
            grid-gap: 30px 10px;
            grid-template-columns: repeat(2, 1fr);
        }

        .itemBox .Item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .itemBox .Item img {
            width: 80%;
            height: auto;
        }


    }