#__fixed-container {
    position: sticky;
    top: 0;
    border-top: 1px solid #eee;
    /* box-shadow: 0 6px 8px -2px #eee; */
    z-index: 10;
}

/* streamer modules style start */
.streamer-search {
    width: 520px;
    height: 40px;
    border: 1px solid #137AFFFF;
    --bs-btn-bg: #137AFFFF;
}
.streamer-search input {
    height: 100%;
    padding: 0 10px;
}
.streamer-search input:focus {
    outline: none;
}
.streamer-search button {
    height: 100%;
    padding: 0 32px;
    background: var(--bs-btn-bg);
    color: white;
}
.streamer-search-tips {
    color: #AAAAAAFF;
    font-size: 13px;
    margin-top: 6px;
}
.streamer-search-tips ul {
    gap: 10px;
    margin: 0;
}

.navigation-bar {
    color: #212121FF;
    font-size: 16px;
}
.navigation-bar > li {
    padding: 12px 36px;
    cursor: pointer;
    user-select: none;
}
.navigation-bar .active {
    background-color: #137AFFFF;
    color: white;
}
.navigation-bar .active a { color: white }
.navigation-bar .dropdown-menu {
    width: 100px;
    height: 160px;
    padding: 0;
}
/* streamer modules style end */


/* main modules style start */
main section {
    padding: 0 15px;
    background: white;
}
main section .header {
    display: flex;
    align-items: flex-end;
    padding: 12px 0;
    border-bottom: 1px solid #F3F3F3FF;
}
main section .header h5 {
    color: #137AFFFF;
    font-size: 16px;
}
main section .header .subtitle {
    color: #137AFF99;
    font-size: 12px;
    margin-left: 8px;
    gap: 8px;
}
main .tag-container { padding: 6px 0 }
main .tag-container a {
    color: #333333FF;
    font-size: 14px;
    text-decoration: none;
}
main .active a, main .active { color: #137AFFFF }
main .tag-container label {
    margin-right: 20px;
    font-size: 14px;
    margin-top: 2px;
}
main .tag-container :not(.append) li { margin-right: 12px }
main .tag-container .append li::after {
    content: "/";
    color: #DEE3E7FF;
    margin: 0 4px;
}
main .tag-container .append li:last-child::after { display: none }

main .salary-increase::after,
main .free-posting::after {
    display: inline-block;
    position: absolute;
    top: -6px;
    text-align: center;
    line-height: 20px;
    border-radius: 6px 6px 6px 0;
    background: #FF552EFF;
    color: #FFF;
    font-size: 10px;
    animation: sway 2s ease-in-out infinite;
}
main .salary-increase::after {
    content: "商机";
    right: 12px;
    width: 32px;
    height: 21px;
}
main .free-posting::after {
    content: "免费发布";
    right: -20px;
    width: 52px;
    height: 21px;
}
@keyframes sway {
    0%, 100% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(-1px, -0.5px);
    }
    20% {
        transform: translate(1px, 0.5px);
    }
    30% {
        transform: translate(-0.5px, 1px);
    }
    40% {
        transform: translate(0.5px, -1px);
    }
    50% {
        transform: translate(-1px, -0.5px);
    }
    60% {
        transform: translate(1px, 0.5px);
    }
    70% {
        transform: translate(-0.5px, 1px);
    }
    80% {
        transform: translate(0.5px, -1px);
    }
    90% {
        transform: translate(-1px, 0.5px);
    }
}

main .topical-category {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 15px 2px 10px;
}
main .topical-category .topical-category-item {
    padding: 0 10px;
    text-align: center;
    border-right: 1px solid #F3F3F3FF;
}
main .topical-category .topical-category-item a { font-size: 11px }
main .topical-category .topical-category-item:last-child { border-right: none }

.main-right {
    width: 316px;
    margin-left: 10px;
}
@media (max-width: 1032px) {
    .main-right {
        width: 100%;
        margin: 10px 0 0 0;
    }
}
.main-right .popular-services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    color: #333333FF;
    font-size: 12px;
    row-gap: 12px;
    padding: 12px 0;
}
.main-right .popular-services li {
    cursor: pointer;
}
.main-right .popular-services img {
    display: inline-block;
    width: 30px;
    height: 30px;
}
.main-right .descriptions {
    color: #333333FF;
    font-size: 14px;
}
/* main modules style end */