<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.nav-bar {
    display: flex;
    gap: 10px;
}

.navbar_item {
    position: relative;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    color: #737373;
    white-space: nowrap;
}
.navbar_item.active {
    font-weight: bold;
    color: #171717;
}
.navbar_item:hover::after{
    transform: scaleX(1)
}  
.navbar_item::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #CB0F22;
    transform: scaleX(0);
    /* 璁剧疆杩囨浮鏁堟灉 */
    transition: .3s
}
.active::after {
    transform: scaleX(1)
}

/* 鎵嬫満 */
@media screen and (max-width:576px) {
    .nav-bar {
        overflow-y: scroll;
    }

    .navbar_item {
        padding: 12px;
        font-size: 14px;
    }
}

/* ipad */
@media screen and (max-width:1000px) {
    .navbar_item {
        font-size: 16px;
    }
}</pre></body></html>