nav {
    position: sticky;
    margin: 0 auto;
    top: 0;
    /* 依照設計稿 1920 或 1000【兩者擇一】 */
    /* 不用的請【註解】  即可 */
    max-width: 1000px;
    z-index: 10;
    overflow: hidden;
}

.navList {
    position: absolute;
    width: 45%;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navItem {
    height: 100%;
}

.navLink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}
@media (max-width:768px) {
    .navList {
        width: 55%;
    }
}