@charset "UTF-8";

.top-bar {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #fff;
}

.nav-link:hover {
    color: #e84393 !important;
}

.nav-link.active {
    color: #e84393 !important;
}

.marquee {
    white-space: nowrap;
    /* 防止内容换行 */
    overflow: hidden;
    /* 相对定位 */
    width: 100%;
    /* 容器宽度 */
    height: 20px;
}

.marquee div {
    display: none;
}

.filter-items a:hover, .dropdown-nav a:hover {
    color: #e84393 !important;
}

.gallery-thumb {
    display: block;
    overflow: hidden;
}

.gallery-thumb>img {
    transition: transform 1s ease;
}

.gallery-thumb>img:hover {
    transform: scale(1.05);
}

.navbar {
    transition: all 0.5s ease;
}

.navbar-hide {
    /* transform: translateY(-100%); */
    opacity: 0;
}

.dropdown-nav {
    z-index: 9999 !important;
    max-height: 600px;
    overflow-y: scroll;
}
