@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    line-height: 1.42857143;
    color: #666;
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

input,
button,
select {
    outline: none;
    border: none;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

a:hover {
    color: #5cb85c;
    text-decoration: none;
}

p {
    margin: 6px;
}

::-moz-selection {
    background: #5cb85c;
    color: #fff;
}

::selection {
    background: #5cb85c;
    color: #fff;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #222;
}

::-webkit-scrollbar-track {
    background: #222;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: #5cb85c;
    border-radius: 2px;
}

.container {
    position: relative;
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.header+.container {
    margin-top: 60px;
}

@media (max-width: 1300px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 991px) {
    .container {
        width: 98%;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
    }

    .header+.container {
        margin-top: 50px;
    }
}

.header {
    position: fixed;
    display: flex;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    font-size: 0;
    background: transparent;
    z-index: 999;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 767px) {
    .header {
        height: 55px;
    }
}

.header.fixed {
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px #ddd;
}

@media (min-width: 767px) {
    .header.fixed {
        height: 55px;
    }

    .header.fixed a {
        color: #666;
    }

    .nav-bar {
        display: none;
    }
}

.nav-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}

.nav-bar.active {
    -webkit-transform: rotateZ(90deg) scale(0.8);
    -moz-transform: rotateZ(90deg) scale(0.8);
    -o-transform: rotateZ(90deg) scale(0.8);
    transform: rotateZ(90deg) scale(0.8);
}

.nav-bar span {
    position: absolute;
    left: 0;
    right: 0;
    margin: 24px auto;
    width: 25px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}

.nav-bar span::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 0;
    width: 16px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}

.nav-bar span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 16px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}

.logo {
    display: inline-flex;
    justify-content: center;
    height: 60px;
    width: 168px;
    padding: 8px 0;

    color: #5cb85c;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 0 1px black;
}

.logo .logo-main {
    display: none;
}

.header.fixed .logo .logo-main {
    display: inline-flex;
}

.header.fixed .logo .logo-fixed {
    display: none;
}

@media (max-width: 767px) {
    .logo {
        display: flex;
        margin-left: 1px;
        height: 48px;
        padding: 4px 0;
    }
}

.logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    margin-left: 20px;
    font-size: 14px;
    float: right;
}

@media (max-width: 767px) {
    .nav {
        flex-direction: column;
        position: fixed;
        top: 52px;
        right: 0;
        float: none;
        margin-left: 0;
        opacity: 0;
        visibility: hidden;
        text-align: right;
        z-index: 999;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .nav.show {
        opacity: 1;
        visibility: visible;
    }
}

.nav li {
    position: relative;
}

.nav.show li {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
}

.nav.show li:nth-child(even) {
    transition-duration: .4s;
}

.nav li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    left: 50%;
    bottom: 0;
    background: #5cb85c;
    border-radius: 4px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav li.active::after,
.nav li:hover::after {
    width: 100%;
    margin-left: -50%;
}

@media (max-width: 767px) {
    .nav li {
        right: -105%;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .nav li::after {
        display: none;
    }
}

.nav li a {
    display: inline-block;
    color: #eee;
    padding: 0 12px;
    height: 55px;
    line-height: 55px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 767px) {
    .nav li a {
        padding: 8px 8px 8px 15px;
        font-size: 14px;
        color: #666;
        height: auto;
        line-height: normal;
        margin: 3px 0;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 0 8px #ccc;
        border-radius: 25px 0 0 25px;
    }

    .nav li a:hover,
    .nav li a.active {
        color: #fff;
        background: #5cb85c;
        box-shadow: 0 0 8px #5cb85c;
    }
}

@media (min-width: 767px) {
    .transparent-mark {
        display: none;
    }
}

.transparent-mark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: #333 center center/cover;
}

@media (max-width: 767px) {
    .banner {
        height: 180px;
        padding-top: 25px;
    }
}

.search-type,
.search-main {
    display: flex;
    width: 80%;
    max-width: 700px;
    overflow-x: auto;
}

@media (max-width: 480px) {

    .search-type,
    .search-main {
        width: 95%;
    }
}

.search-type .title {
    color: #ccc;
    padding: 6px 12px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .search-type .title {
        padding: 4px 10px;
    }
}

.search-type li {
    color: #ddd;
    padding: 6px 18px;
    border-radius: 4px 4px 0 0;
    margin-right: 4px;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 480px) {
    .search-type li {
        padding: 4px 12px;
    }
}

.search-type li:hover,
.search-type li.active {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
}

.search-main .search-input {
    flex: auto;
    font-size: 15px;
    padding: 8px 15px;
    color: #555;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 480px) {
    .search-main .search-input {
        padding: 4px 12px;
        font-size: 14px;
    }
}

.search-main .search-btn {
    width: 100px;
    height: 45px;
    font-size: 15px;
    color: #fff;
    margin-left: -1px;
    border-radius: 0 4px 4px 0;
    background: rgba(92, 184, 92, 0.85);
    cursor: pointer;
}

@media (max-width: 480px) {
    .search-main .search-btn {
        height: 38px;
        width: 80px;
        font-size: 14px;
    }
}

.category {
    display: none;
    /* 隐藏左侧竖向菜单栏 */
    position: fixed;
    top: 50%;
    left: 0;
    width: 32px;
    margin: 0;
    border-radius: 8px;
    z-index: 998;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.category li {
    position: relative;
    margin: 4px 0;
}

.category li a {
    position: relative;
    display: inline-block;
    height: 32px;
    text-align: right;
    background: rgba(255, 255, 255, .85);
    padding: 6px 8px 6px 6px;
    box-shadow: 0 0 8px #ccc;
    border-radius: 0 25px 25px 0;
    white-space: nowrap;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-100%) translateX(30px);
    -moz-transform: translateX(-100%) translateX(30px);
    -o-transform: translateX(-100%) translateX(30px);
    transform: translateX(-100%) translateX(30px);
}

.category li a:hover,
.category li a.active {
    color: #fff;
    background: #5cb85c;
}

.category li a:hover {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.main {
    float: left;
    width: calc(100% - 320px);
    position: relative;
}

.main::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #5cb85c, transparent);
    box-shadow: 0 0 8px rgba(92, 184, 92, 0.5);
    animation: vertical-line-shine 4s infinite;
}

@keyframes vertical-line-shine {
    0% {
        background-position: 0 -100%;
        opacity: 0.5;
    }

    50% {
        background-position: 0 200%;
        opacity: 1;
    }

    100% {
        background-position: 0 200%;
        opacity: 0.5;
    }
}

@media (max-width: 991px) {
    .main {
        width: 100%;
    }

    .main::after {
        display: none;
    }
}

.side {
    float: left;
    width: 300px;
    padding-top: 8px;
    padding-left: 20px;
    padding-right: 0;
}

@media (max-width: 991px) {
    .side {
        width: 100%;
        padding: 0;
    }
}

.side .card {
    margin: 0 0 8px;
}

@media (max-width: 991px) {
    .side .card {
        margin: 5px;
    }
}

.card {
    position: relative;
    background: #fff;
    box-shadow: 0 0 8px #eee;
    border-radius: 8px;
    margin: 8px;
    overflow: hidden;
    border: 1px solid #d4edda;
}

@media (max-width: 767px) {
    .card {
        margin: 5px;
    }
}

.card .card-head {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 15px;
    border-bottom: 1px solid #f2f2f2;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.card .card-head::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(92, 184, 92, 0.1), transparent);
    animation: card-head-shine 3s infinite;
}

@keyframes card-head-shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 767px) {
    .card .card-head {
        font-size: 14px;
        padding: 10px 12px;
    }
}

.card .card-head i {
    margin-right: 6px;
}

.card .card-head .more {
    position: absolute;
    right: 8px;
    color: #666;
}

.card .card-body {
    padding: 8px;
    font-size: 0;
}

.card .card-body .item {
    display: inline-block;
    width: 14.2857143%;
    color: #666;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: font-weight, background, transform .3s;
    -moz-transition: font-weight, background, transform .3s;
    -o-transition: font-weight, background, transform .3s;
    transition: font-weight, background, transform .3s;
}

@media (max-width: 1300px) {
    .card .card-body .item {
        width: 16.6666667%;
    }
}

@media (max-width: 767px) {
    .card .card-body .item {
        width: 25%;
    }
}

@media (max-width: 480px) {
    .card .card-body .item {
        width: 33.3333333%;
        font-size: 13px;
    }
}

.card .card-body .item:hover {
    font-weight: 600;
    background: #eee;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.card .card-body .item .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.card .card-body .item:hover .icon {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}

.card .card-body .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

@media (max-width: 480px) {
    .card .card-body .item .name {
        line-height: 20px;
    }
}

.card .card-body .content {
    font-size: 14px;
}

.card .card-body .content .text-center {
    text-align: center;
}

@media (max-width: 767px) {
    .card .card-body .content {
        font-size: 13px;
    }
}

.card .card-body .content .info {
    display: flex;
    justify-content: space-around;
    color: #888;
    font-size: 13px;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.card .card-body .content img {
    max-width: 100%;
    border-radius: 4px;
}

.card .card-body .post {
    display: inline-flex;
    width: 50%;
    color: #555;
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 767px) {
    .card .card-body .post {
        width: 100%;
    }
}

.card .card-body .post:hover {
    color: #555;
    background: #eee;
}

.card .card-body .post .pic {
    flex: none;
    width: 120px;
    height: 85px;
}

@media (max-width: 767px) {
    .card .card-body .post .pic {
        width: 95px;
        height: 70px;
    }
}

.card .card-body .post .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card .card-body .post .text {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
    padding: 4px 0;
}

.card .card-body .post .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 15px;
    height: 2.85714286em;
}

.card .card-body .post .info {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 12px;
}

.board {
    display: flex;
    height: 44px;
    padding: 12px 8px;
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.board .icon {
    margin: 0 8px 0 4px;
}

.board span:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.top-grid {
    font-size: 0;
    padding: 8px;
}

.top-grid .item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 16.6057143%;
    color: #666;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 6px;
    -webkit-transition: font-weight, background, transform .3s;
    -moz-transition: font-weight, background, transform .3s;
    -o-transition: font-weight, background, transform .3s;
    transition: font-weight, background, transform .3s;
}

@media (max-width: 767px) {
    .top-grid .item {
        width: 20%;
    }
}

@media (max-width: 480px) {
    .top-grid .item {
        width: 25%;
        padding: 10px 5px;
        font-size: 13px;
    }
}

.top-grid .item:hover {
    background: #eee;
    font-weight: 600;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.top-grid .item .icon {
    width: 30px;
    height: 30px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 480px) {
    .top-grid .item .icon {
        width: 25px;
        height: 25px;
    }
}

.top-grid .item:hover .icon {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}

.top-grid .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-grid .item .name {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.view-list a {
    display: flex;
    padding: 6px;
    line-height: 25px;
    font-size: 14px;
    color: #666;
    border-radius: 25px;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.view-list a:hover {
    background: #eee;
}

.view-list a .rank {
    flex: none;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    text-align: center;
    border-radius: 50%;
    background: rgba(124, 124, 124, 0.3);
}

.view-list a:nth-child(1) .rank {
    font-size: 0;
    background: url("../images/rank_1.png") no-repeat 50% 50%/85%;
    /*  
    background: #f1404b;
    color: #FFF;
    border-radius: 50%;
*/
}

.view-list a:nth-child(2) .rank {
    font-size: 0;
    background: url("../images/rank_2.png") no-repeat 50% 50%/85%;
    /*  
    background: #c56831;
    color: #FFF;
    border-radius: 50%;
*/
}

.view-list a:nth-child(3) .rank {
    font-size: 0;
    background: url("../images/rank_3.png") no-repeat 50% 50%/85%;
    /*  
    background: #b89e2c;
    color: #FFF;
    border-radius: 50%;
*/
}

.progressbar {
    background: url(../images/progressbar.gif);
    height: 4px;
    top: 0px;
    position: fixed;
    width: 100%;
    Z-index: 9999;
}

.view-list a .icon {
    flex: none;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-right: 4px;
}

.view-list a .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-list a .name {
    flex: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.view-list a .view {
    flex: none;
    color: #5cb85c;
    font-size: 15px;
    font-style: italic;
    border-radius: 4px;
    margin-right: 6px;
}

.side-common {
    font-size: 14px;
}

.side-common p {
    margin: 12px 8px;
}

.side-latest.oz-timeline .oz-timeline-main {
    padding: 3px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.side-latest.oz-timeline .oz-timeline-main .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.side-latest.oz-timeline .oz-timeline-main .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-latest.oz-timeline .oz-timeline-main .name {
    line-height: 35px;
    vertical-align: middle;
}

.view-box {
    overflow: hidden;
}

.view-box div {
    padding: 0;
}

.view-box div:nth-child(2) .card {
    margin: 8px 0;
}

@media (max-width: 991px) {
    .view-box div:nth-child(2) .card {
        margin: 8px 8px 8px 0;
    }

    .view-box div:nth-child(3) .card {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .view-box div:nth-child(2) .card {
        margin: 5px !important;
    }
}

.part-side {
    float: left;
    width: 280px;
    padding: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .part-side {
        width: 100%;
        padding: 0;
        float: none;
    }
}

.part-side .site-img {
    width: 100%;
    height: 180px;
    margin-bottom: 5px;
    border-radius: 4px;
    box-shadow: 0 0 10px #ddd;
}

@media (max-width: 767px) {
    .part-side .site-img {
        position: absolute;
        top: 20px;
        left: 51%;
        width: 210px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .part-side .site-img {
        left: auto;
        right: 15px;
        width: 40%;
        height: 35%;
    }
}

.part-side .site-img img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.part-side .oz-btn {
    margin: 5px 0;
}

@media (max-width: 767px) {
    .part-side .oz-btn {
        width: 48%;
        margin: 1%;
        font-size: 14px;
    }
}

.part-main {
    display: inline-block;
    width: calc(100% - 280px);
    padding: 5px;
    font-size: 14px;
    vertical-align: top;
}

@media (max-width: 767px) {
    .part-main {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .part-main {
        font-size: 13px;
    }
}

.part-main .site-name {
    display: block;
    font-weight: 600;
    font-size: 22px;
    line-height: normal;
    text-align: center;
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .part-main .site-name {
        width: 50%;
        padding-top: 0;
        font-size: 18px;
        line-height: 32px;
    }
}

.part-main span {
    line-height: 42px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 1;
}

@media (max-width: 1300px) {
    .part-main span {
        line-height: 32px;
        padding: 6px;
    }
}

@media (max-width: 767px) {
    .part-main span {
        line-height: 26px;
        padding: 4px;
    }
}

.part-main img {
    vertical-align: middle;
    margin-top: -4px;
}

.links {
    clear: both;
}

.links .card-head::before {
    content: '';
    position: absolute;
    left: 5px;
    width: 4px;
    height: 22px;
    background: #5cb85c;
    border-radius: 2px;
}

.links a {
    display: inline-block;
    font-size: 13px;
    padding: 5px 12px;
    margin: 2px;
    color: #666;
    background: #eee;
    border-radius: 25px;
    -webkit-transition: color, background .3s;
    -moz-transition: color, background .3s;
    -o-transition: color, background .3s;
    transition: color, background .3s;
}

.links a:hover {
    color: #fff;
    background: #5cb85c;
}

.suspend {
    position: fixed;
    right: 2%;
    bottom: 5%;
}

.suspend li {
    position: relative;
    width: 32px;
    height: 32px;
    margin: 3px;
    line-height: 32px;
    font-size: 13px;
    text-align: center;
    color: #eee;
    background: rgba(0, 0, 0, .8);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.suspend li a {
    color: #eee;
}

.suspend li a:hover {
    color: #fff;
}

.suspend li:hover {
    color: #fff;
    background: #5cb85c;
}

.suspend li:hover .more {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.suspend .more {
    position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 0;
    right: 40px;
    height: 32px;
    padding: 0 10px;
    line-height: 32px;
    white-space: nowrap;
    background: rgba(0, 0, 0, .8);
    border-radius: 2px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.suspend .more::after {
    content: '';
    position: absolute;
    display: block;
    top: calc(50% - 5px);
    right: -4px;
    border-top: 5px solid transparent;
    border-left: 5px solid rgba(0, 0, 0, .8);
    border-bottom: 5px solid transparent;
}

.suspend .more.weixin {
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    padding: 5px;
}

.suspend .more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-top {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.back-top.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.footer {
    text-align: center;
    margin-top: 8px;
    padding: 10px;
    font-size: 13px;
    background: #fff;
    box-shadow: 0 0 8px #eee;
}

#checkCodeImage {
    height: 36px;
    cursor: pointer;
}

.pagination {
    padding: 8px;
    text-align: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: inline-block;
    color: #666;
    background: #fff;
    border: 1px solid #ddd;
    padding: 4px 10px;
    margin: 0 2px;
    border-radius: 25px;
}

.pagination li a:hover {
    background: #eee;
}

.pagination .active a {
    color: #fff;
    background: #5cb85c;
    border: 1px solid #5cb85c;
}

.pagination .disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.ad {
    display: block;
}

.ad img {
    width: 100%;
}

.side .card .post {
    width: 100%;
}

.side .card .post .pic {
    width: 80px;
    height: 60px;
}

.side .card .post .text {
    padding: 0;
}

.side .card .post .title {
    font-size: 14px;
}

.side .card .post .info {
    font-size: 11px;
}

.side .card .post-view .post {
    position: relative;
    padding-left: 30px;
}

.side .post-view .post .rank {
    position: absolute;
    top: 50%;
    left: 2px;
    width: 25px;
    height: 25px;
    text-align: center;
    z-index: 1;
    transform: translateY(-50%);
}

.side .post-view .post:nth-child(1) .rank {
    font-size: 0;
    background: url("../images/rank_1.png") no-repeat 50% 50%/85%;
}

.side .post-view .post:nth-child(2) .rank {
    font-size: 0;
    background: url("../images/rank_2.png") no-repeat 50% 50%/85%;
}

.side .post-view .post:nth-child(3) .rank {
    font-size: 0;
    background: url("../images/rank_3.png") no-repeat 50% 50%/85%;
}

.side .side-category {}

.side .side-category>a {
    display: inline-block;
    width: 50%;
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 10px 12px;
    border-radius: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.side .side-category>a:hover,
.side .side-category>a.active {
    background: #eee;
}

.side .rand-site {}

.side .rand-site a {
    display: inline-block;
    width: 50%;
    color: #666;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.side .rand-site a:hover {
    font-weight: 600;
    background: #eee;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.side .rand-site a .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.side .rand-site a .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.site-ranking {
    display: flex;
    align-items: center;
    padding: 6px;
    line-height: 25px;
    font-size: 14px;
    color: #666;
    border-radius: 25px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.site-ranking:hover {
    color: #666;
    background: #eee;
}

.site-ranking .rank {
    flex: none;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    text-align: center;
    border-radius: 50%;
    background: rgba(124, 124, 124, 0.3);
}

.site-ranking:nth-child(1) .rank,
.site-ranking:nth-child(2) .rank,
.site-ranking:nth-child(3) .rank {
    font-size: 0;
    color: transparent;
    /* color: #FFF; */
    border-radius: 50%;
}

.site-ranking:nth-child(1) .rank {
    background: url('../images/rank_1.png') no-repeat 50% 50%/85%;
    /* background: #f1404b; */
}

.site-ranking:nth-child(2) .rank {
    background: url('../images/rank_2.png') no-repeat 50% 50%/85%;
    /* background: #c56831; */
}

.site-ranking:nth-child(3) .rank {
    background: url('../images/rank_3.png') no-repeat 50% 50%/85%;
}

.site-ranking .icon {
    flex: none;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-right: 4px;
}

.site-ranking .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.site-ranking .name {
    flex: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.site-ranking .view {
    flex: none;
    color: #5cb85c;
    font-size: 15px;
    font-style: italic;
    border-radius: 4px;
    margin-right: 6px;
}

.wzgg {
    width: 100%;
    overflow: hidden;
    display: block;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.wzgg a {
    width: 24.4%;
    float: left;
    border-radius: 2px;
    line-height: 35.35px;
    height: 35.35px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    background-color: rgb(255, 153, 159);
    margin: 2.5px;
    transition-duration: .3s;
}

.wzgg a:nth-child(1) {
    background-color: #dc3545;
}

.wzgg a:nth-child(2) {
    background-color: #007bff;
}

.wzgg a:nth-child(3) {
    background-color: #28a745;
}

.wzgg a:nth-child(4) {
    background-color: #ffc107;
}

.wzgg a:nth-child(5) {
    background-color: #28a745;
}

.wzgg a:nth-child(6) {
    background-color: #ffc107;
}

.wzgg a:nth-child(7) {
    background-color: #dc3545;
}

.wzgg a:nth-child(8) {
    background-color: #007bff;
}

.wzgg a:hover {
    background: #FF2805;
    color: #FFF
}

@media screen and (max-width: 1000px) {
    .wzgg a {
        width: 47.96%;
        float: left;
        border-radius: 2px;
        line-height: 35.35px;
        height: 35.35px;
        text-align: center;
        font-size: 14px;
        color: #fff;
        display: inline-block;
        background-color: rgb(255, 153, 159);
        margin: 2.5px;
        transition-duration: .3s;
    }
}

.zxt>use {
    animation: move-forever 12s linear infinite;
}

.zxt>use:nth-child(1) {
    animation-delay: -2s;
}

.zxt>use:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 5s;
}

.zxt>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
}

@keyframes move-forever {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

.blx {
    width: 100%;
    height: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--footer-bg);
}

.wbc {
    display: block;
    width: 100%;
    height: 40px;
    margin: 0;
}

/* Modern Footer Styles */
.modern-footer {
    background: #1e1e2f;
    color: #eee;
    padding: 40px 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

.modern-footer .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f8f8f8;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    text-align: center;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}

/* Modern top nav */
.header {
    backdrop-filter: none;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.header .container {
    position: relative;
}

.header .logo {
    transition: transform 0.2s ease;
}

.header .logo:hover {
    transform: translateY(-1px);
}

.header .nav li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
    font-weight: 600;
    transition: all 0.2s ease;
}

.header .nav li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.header .nav li.active a {
    color: #fff;
    background: linear-gradient(135deg, #ff8a00, #ff5e62);
    box-shadow: 0 8px 18px rgba(255, 94, 98, 0.3);
    text-shadow: none;
}

.header .nav li a i {
    font-size: 14px;
}

.header .nav li:nth-child(1) a i { color: #44c4ff; }
.header .nav li:nth-child(2) a i { color: #ffb74d; }
.header .nav li:nth-child(3) a i { color: #66bb6a; }
.header .nav li:nth-child(4) a i { color: #ba68c8; }
.header .nav li:nth-child(5) a i { color: #ff8a65; }
.header .nav li:nth-child(6) a i { color: #4db6ac; }
.header .nav li:nth-child(7) a i { color: #7986cb; }
.header .nav li:nth-child(8) a i { color: #f06292; }

.header.fixed .nav li a {
    color: #1f2937;
    text-shadow: none;
}

.header.fixed .nav li a:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.06);
    box-shadow: none;
}

.header.fixed .nav li.active a {
    color: #111827;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: none;
}

.header .nav-bar span,
.header .nav-bar span::before,
.header .nav-bar span::after {
    background: #aaa;
}

/* onenav home theme */
.theme-onenav {
    background: #f3f5f8;
    color: #2f3542;
}

.theme-onenav .header {
    top: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    border-top: 4px solid #ff2a95;
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
    margin: 0 auto;
}

.theme-onenav .header .container {
    width: auto;
    max-width: 1560px;
    padding: 0 16px;
}

.theme-onenav .header .logo img.logo-main {
    max-height: 32px;
}

.theme-onenav .header .nav li a {
    font-size: 13px;
    color: #475569;
    border-radius: 8px;
}

.theme-onenav .header .nav li a:hover,
.theme-onenav .header .nav li.active a {
    color: #111827;
    background: #f3f4f6;
}

.theme-onenav .banner {
    min-height: auto;
    height: auto;
    padding: 88px 0 12px;
    background: transparent !important;
}

.theme-onenav .banner::before {
    display: none;
}

.theme-onenav .search-main {
    max-width: 760px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.theme-onenav .search-main .search-input {
    color: #374151;
}

.theme-onenav .search-type {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.theme-onenav .container.latest-activity-container,
.theme-onenav .container.layout-main,
.theme-onenav > .container {
    max-width: 1560px;
}

.theme-onenav .latest-activity-card {
    border-radius: 12px;
    border: 1px solid #e8ecf1;
    box-shadow: none;
}

.theme-onenav .latest-activity-card .card-head {
    background: #fafbfc;
    border-bottom: 1px solid #eef2f7;
}

.theme-onenav .category {
    position: fixed;
    top: 80px;
    left: 14px;
    width: 170px;
    bottom: 16px;
    overflow-y: auto;
    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    padding: 10px 8px;
    z-index: 90;
}

.theme-onenav .category li {
    margin: 0 0 4px;
}

.theme-onenav .category li a {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 12px;
    color: #4b5563;
}

.theme-onenav .category li a:hover {
    background: #eceff4;
    color: #111827;
}

.theme-onenav .container.layout-main {
    display: flex !important;
    margin-left: 200px;
}

.theme-onenav .container.layout-main .main {
    width: calc(100% - 320px) !important;
    flex: 1 1 auto;
}

.theme-onenav .container.layout-main .side {
    width: 300px !important;
    flex: 0 0 300px;
    margin-left: 14px;
}

.theme-onenav .card {
    border: 1px solid #e7edf5;
    border-radius: 12px;
    box-shadow: none;
    background: #fff;
    margin-bottom: 12px;
}

.theme-onenav .card .card-head {
    border-bottom: 1px solid #eef2f6;
    background: #fff;
    color: #334155;
    font-weight: 600;
}

.theme-onenav .main .card .card-body > a.item {
    width: calc(16.666% - 10px);
    min-width: 150px;
    margin: 5px;
    border: 1px solid #edf1f5;
    border-radius: 10px;
    background: #fff;
}

.theme-onenav .main .card .card-body > a.item:hover {
    border-color: #d7dfea;
    background: #fcfdff;
    transform: translateY(-1px);
}

.theme-onenav .main .card .card-body > a.item .icon img {
    border-radius: 50%;
}

.theme-onenav .main .card .card-body > a.item .name {
    color: #374151;
    font-size: 13px;
}

.theme-onenav .top-sites .top-grid > a.item {
    width: calc(16.666% - 10px);
    min-width: 150px;
}

.theme-onenav .side .card {
    background: #fbfcfe;
}

.theme-onenav .info-card .info-header {
    border-radius: 12px 12px 0 0;
}

.theme-onenav .ranking-card .rank-item,
.theme-onenav .ranking-card .site-ranking {
    border-bottom: 1px dashed #e6ebf1;
}

.theme-onenav .quick-sites .card-body,
.theme-onenav .apply-links .card-body {
    background: #fff;
}

.theme-onenav footer.footer {
    background: #fff;
    border-top: 1px solid #e7edf3;
}

@media (max-width: 1400px) {
    .theme-onenav .main .card .card-body > a.item,
    .theme-onenav .top-sites .top-grid > a.item {
        width: calc(20% - 10px);
        min-width: 136px;
    }
}

@media (max-width: 1100px) {
    .theme-onenav .category {
        position: static;
        width: auto;
        max-height: none;
        margin: 0 10px 10px;
    }
    .theme-onenav .container.layout-main {
        margin-left: 0;
    }
    .theme-onenav .container.layout-main .main,
    .theme-onenav .container.layout-main .side {
        width: 100% !important;
        flex: 1 1 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .theme-onenav .header {
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
        border-radius: 0;
    }
    .theme-onenav .banner {
        padding-top: 72px;
    }
    .theme-onenav .main .card .card-body > a.item,
    .theme-onenav .top-sites .top-grid > a.item {
        width: calc(50% - 10px);
        min-width: 0;
    }
}

/* onenav refine v2 */
.theme-onenav .header .nav {
    width: calc(100% - 360px);
}

.theme-onenav .onenav-top-tools {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.theme-onenav .onenav-top-tools .tool-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #374151;
    background: #f4f6fa;
    border: 1px solid #e3e8f0;
    transition: all .2s ease;
}

.theme-onenav .onenav-top-tools .tool-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(31, 41, 55, 0.14);
}

.theme-onenav .tool-search { color: #6366f1 !important; }
.theme-onenav .tool-msg { color: #fb7185 !important; }
.theme-onenav .tool-user { color: #14b8a6 !important; }

.theme-onenav .banner .search-type,
.theme-onenav .banner .search-main {
    margin-bottom: 10px;
}

.theme-onenav .container.latest-activity-container {
    margin-bottom: 10px;
}

.theme-onenav .container.layout-main {
    gap: 12px;
}

.theme-onenav .card {
    margin-bottom: 10px;
}

.theme-onenav .card .card-head {
    padding: 10px 14px;
    font-size: 14px;
}

.theme-onenav .card .card-body {
    padding: 10px;
}

.theme-onenav .main .card .card-body > a.item,
.theme-onenav .top-sites .top-grid > a.item {
    height: 44px;
    border-radius: 9px;
    margin: 4px;
}

.theme-onenav .main .card .card-body > a.item .icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.theme-onenav .main .card .card-body > a.item .name {
    font-size: 12px;
}

.theme-onenav #hot-feedback-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.theme-onenav #hot-feedback-list .onenav-hot-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
    border: 1px solid #d8e7ff;
    text-decoration: none;
}

.theme-onenav #hot-feedback-list .onenav-hot-item:hover {
    border-color: #a9caff;
    background: linear-gradient(180deg, #eaf4ff 0%, #ffffff 100%);
}

.theme-onenav .onenav-hot-item .hot-rank {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, #58a7ff, #2f68ff);
}

.theme-onenav .onenav-hot-item .hot-body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theme-onenav .onenav-hot-item .hot-name {
    color: #2f3b57;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-onenav .onenav-hot-item .hot-text {
    color: #6f83a8;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-onenav .onenav-hot-item .hot-like {
    color: #2f68ff;
    font-size: 11px;
    white-space: nowrap;
}

.theme-onenav .onenav-stream-card .card-body {
    max-height: 980px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.theme-onenav .onenav-stream-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 10px;
    border: 1px solid #f2d9e2;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff6fa 0%, #fff 100%);
}

.theme-onenav .onenav-stream-item:hover {
    border-color: #f8a4c0;
    background: linear-gradient(180deg, #ffeef5 0%, #fff 100%);
}

.theme-onenav .stream-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #fb7185;
    box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.16);
}

.theme-onenav .stream-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-onenav .stream-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-onenav .stream-name {
    min-width: 0;
    color: #4b5563;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-onenav .onenav-float-tools {
    position: fixed;
    right: 10px;
    top: 260px;
    z-index: 89;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.theme-onenav .onenav-float-tools a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ffd2e4;
    color: #fb7185;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(244, 63, 94, 0.12);
}

.theme-onenav .onenav-float-tools a:hover {
    background: #fff1f7;
}

@media (max-width: 1100px) {
    .theme-onenav .header .nav {
        width: auto;
    }
    .theme-onenav .onenav-top-tools {
        display: none;
    }
    .theme-onenav .onenav-float-tools {
        display: none;
    }
    .theme-onenav .onenav-stream-card .card-body {
        max-height: none;
    }
}

/* onenav refine v3: enforce left menu + nav cards */
.theme-onenav .one-yuan-ad-container {
    display: none !important;
}

.theme-onenav .category {
    display: block !important;
    position: fixed !important;
    top: 86px !important;
    bottom: 12px !important;
    left: 10px !important;
    width: 176px !important;
    margin: 0 !important;
    padding: 8px !important;
    overflow-y: auto !important;
    background: #f5f7fb !important;
    border: 1px solid #e6ebf2 !important;
    border-radius: 12px !important;
    transform: none !important;
    z-index: 90 !important;
}

.theme-onenav .category li {
    margin: 0 0 4px !important;
}

.theme-onenav .category li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
    height: 32px !important;
    text-align: left !important;
    padding: 6px 9px !important;
    background: transparent !important;
    border-radius: 8px !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    transform: none !important;
    color: #4b5563 !important;
    font-size: 12px !important;
}

.theme-onenav .category li a span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.theme-onenav .category li a i {
    color: #9ca3af;
    font-size: 12px;
}

.theme-onenav .category li a:hover,
.theme-onenav .category li a.active {
    background: #ffffff !important;
    border-color: #e5eaf1 !important;
    color: #111827 !important;
}

.theme-onenav .container.latest-activity-container,
.theme-onenav .container.layout-main,
.theme-onenav > .container {
    max-width: 1600px !important;
}

.theme-onenav .container.layout-main {
    margin-left: 198px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.theme-onenav .container.layout-main .main {
    width: calc(100% - 322px) !important;
    flex: 1 1 auto !important;
}

.theme-onenav .container.layout-main .side {
    width: 310px !important;
    flex: 0 0 310px !important;
    margin-left: 0 !important;
}

.theme-onenav .main > .card {
    border: 1px solid #e8edf4 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    margin-bottom: 10px !important;
    background: #fff !important;
}

.theme-onenav .main > .card > .card-head {
    height: 42px !important;
    line-height: 42px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    background: #fcfdff !important;
    border-bottom: 1px solid #eef2f7 !important;
}

.theme-onenav .main > .card > .card-head::after {
    display: none !important;
}

.theme-onenav .main > .card > .card-body {
    padding: 10px !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item,
.theme-onenav .top-grid > a.item {
    display: inline-flex !important;
    align-items: center !important;
    width: calc(20% - 8px) !important;
    height: 56px !important;
    margin: 4px !important;
    padding: 0 10px !important;
    border: 1px solid #e9edf3 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #374151 !important;
    transform: none !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item:hover,
.theme-onenav .top-grid > a.item:hover {
    background: #f9fbfe !important;
    border-color: #d9e1ec !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06) !important;
    transform: translateY(-1px) !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .icon,
.theme-onenav .top-grid > a.item .icon {
    width: 22px !important;
    height: 22px !important;
    margin-right: 8px !important;
    flex-shrink: 0;
    transform: none !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item:hover .icon,
.theme-onenav .top-grid > a.item:hover .icon {
    transform: none !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .name,
.theme-onenav .top-grid > a.item .name {
    min-width: 0;
    display: block;
    font-size: 12px !important;
    line-height: 1.3 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4b5563 !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .site-text,
.theme-onenav .top-grid > a.item .site-text {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .meta,
.theme-onenav .top-grid > a.item .meta {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.2;
    color: #9aa4b2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-onenav .top-grid {
    padding: 10px !important;
}

.theme-onenav .top-grid > a.item {
    flex-direction: row !important;
}

.theme-onenav .top-grid > a.item .vip-badge {
    top: 2px;
    right: 4px;
    font-size: 9px;
    padding: 1px 5px;
}

.theme-onenav .side > .card {
    border: 1px solid #e9edf4 !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    background: #fff !important;
}

.theme-onenav .side > .card > .card-head {
    background: #fdfdff !important;
    border-bottom: 1px solid #edf1f6 !important;
}

@media (max-width: 1366px) {
    .theme-onenav .main > .card:not(.article-category-card) .card-body > a.item,
    .theme-onenav .top-grid > a.item {
        width: calc(25% - 8px) !important;
    }
}

@media (max-width: 1100px) {
    .theme-onenav .category {
        position: static !important;
        width: auto !important;
        max-height: none !important;
        margin: 0 10px 10px !important;
    }
    .theme-onenav .container.layout-main {
        margin-left: 0 !important;
    }
    .theme-onenav .container.layout-main .main,
    .theme-onenav .container.layout-main .side {
        width: 100% !important;
        flex: 1 1 100% !important;
    }
}

@media (max-width: 768px) {
    .theme-onenav .main > .card:not(.article-category-card) .card-body > a.item,
    .theme-onenav .top-grid > a.item {
        width: calc(50% - 8px) !important;
    }
}

/* onenav refine v4: precise header + collapsible colorful left menu + right rail + flat 1yuan */
.theme-onenav .header {
    top: 6px !important;
    height: 84px !important;
    border-radius: 16px !important;
    border-top: 5px solid #ff2c9c !important;
    width: calc(100% - 14px) !important;
    left: 7px !important;
    right: 7px !important;
}

.theme-onenav .header .container {
    height: 100%;
    display: flex;
    align-items: center;
    overflow: visible;
}

.theme-onenav .header .logo {
    width: 250px;
    height: 64px;
    padding: 8px 0;
    margin-right: 16px;
}

.theme-onenav .header .logo img.logo-main {
    display: block;
    max-height: 52px;
}

.theme-onenav .header .logo img.logo-fixed {
    display: none !important;
}

.theme-onenav .header .nav {
    display: flex;
    align-items: center;
    gap: 6px;
    height: auto;
    line-height: 1;
    margin: 0;
    width: calc(100% - 370px);
}

.theme-onenav .header .nav li a {
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
}

.theme-onenav .onenav-top-tools {
    right: 14px;
    gap: 10px;
}

.theme-onenav .onenav-top-tools .tool-btn {
    width: 42px;
    height: 42px;
    background: #eef2f7;
    border-color: #dde5f1;
}

.theme-onenav .banner {
    padding: 102px 0 8px !important;
}

.theme-onenav .search-main {
    margin-bottom: 6px;
}

.theme-onenav .one-yuan-ad-container {
    display: block !important;
    max-width: 1600px !important;
    margin: 8px auto 12px !important;
    padding: 8px 12px !important;
    background: #fff !important;
    border: 1px solid #e8edf5 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

.theme-onenav .one-yuan-ad-container::before {
    display: none !important;
}

.theme-onenav .one-yuan-ad-title {
    min-height: auto !important;
    justify-content: flex-start !important;
    margin-bottom: 8px !important;
    gap: 6px !important;
}

.theme-onenav .one-yuan-ad-title .click-guide {
    display: none !important;
}

.theme-onenav .one-yuan-ad-title .title-outline {
    font-size: 14px !important;
    font-weight: 700 !important;
    height: auto !important;
    line-height: 1.2 !important;
    padding: 0 !important;
    animation: none !important;
    letter-spacing: 0.2px !important;
    color: #fb4f82 !important;
    background: none !important;
    -webkit-text-fill-color: #fb4f82 !important;
    text-shadow: none !important;
}

.theme-onenav .one-yuan-ad-title .title-outline::before {
    display: none !important;
}

.theme-onenav .one-yuan-ad-list {
    margin: 0 !important;
    padding: 0 !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    overflow: hidden !important;
}

.theme-onenav .one-yuan-ad-item {
    width: calc(10% - 8px) !important;
    min-width: 110px !important;
    max-width: none !important;
    height: 32px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    padding: 0 10px !important;
    box-shadow: none !important;
}

.theme-onenav .one-yuan-ad-item:hover {
    transform: translateY(-1px) !important;
    box-shadow: none !important;
}

.theme-onenav .ad-divider,
.theme-onenav .text-ads-section,
.theme-onenav .image-ads-section {
    display: none !important;
}

.theme-onenav .category {
    top: 98px !important;
    width: 186px !important;
    padding: 10px 8px !important;
}

.theme-onenav .category .menu-toggle-item a {
    background: #fff !important;
    border-color: #dce4f1 !important;
    color: #1f2937 !important;
    font-weight: 700 !important;
}

.theme-onenav .category li a {
    justify-content: flex-start !important;
}

.theme-onenav .category li a i {
    order: 1;
    margin-right: 10px !important;
    margin-left: 2px;
}

.theme-onenav .category li a span {
    order: 2;
    flex: 1;
}

.theme-onenav .category li:nth-child(10n+1) a i { color: #5b8ef5; }
.theme-onenav .category li:nth-child(10n+2) a i { color: #f59e0b; }
.theme-onenav .category li:nth-child(10n+3) a i { color: #22c55e; }
.theme-onenav .category li:nth-child(10n+4) a i { color: #a855f7; }
.theme-onenav .category li:nth-child(10n+5) a i { color: #06b6d4; }
.theme-onenav .category li:nth-child(10n+6) a i { color: #f97316; }
.theme-onenav .category li:nth-child(10n+7) a i { color: #10b981; }
.theme-onenav .category li:nth-child(10n+8) a i { color: #ef4444; }
.theme-onenav .category li:nth-child(10n+9) a i { color: #6366f1; }
.theme-onenav .category li:nth-child(10n+10) a i { color: #14b8a6; }

.theme-onenav .container.layout-main {
    margin-left: 208px !important;
    gap: 14px !important;
}

.theme-onenav .container.layout-main .main {
    width: calc(100% - 332px) !important;
}

.theme-onenav .container.layout-main .side {
    width: 318px !important;
    flex: 0 0 318px !important;
    position: sticky;
    top: 98px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding-right: 2px;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item,
.theme-onenav .top-grid > a.item {
    width: calc(25% - 8px) !important;
}

.theme-onenav .side > .card {
    border: 1px solid #e4ebf5 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.theme-onenav .side > .card > .card-head {
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    background: linear-gradient(180deg, #f7faff 0%, #f2f6fd 100%) !important;
    border-bottom: 1px solid #e8eef7 !important;
    font-weight: 700;
}

.theme-onenav .side > .card > .card-body {
    padding: 10px;
    background: #fff;
}

.theme-onenav #branding-info-card .info-header {
    background: linear-gradient(135deg, #86c4ff 0%, #c9a8ff 100%);
}

.theme-onenav #branding-info-card .header-pattern {
    opacity: 0.2;
}

.theme-onenav #branding-info-card .stats-box {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #e7edf6;
}

.theme-onenav .onenav-stream-card .card-body {
    background: #fff;
    max-height: 980px;
}

.theme-onenav .onenav-stream-item {
    border: 1px solid #f4dce5 !important;
    border-left: 3px solid #fb8fb0 !important;
    background: linear-gradient(90deg, #fff7fa 0%, #fff 100%) !important;
}

.theme-onenav .onenav-stream-item:nth-child(3n+2) {
    border-color: #dfe8ff !important;
    border-left-color: #8db3ff !important;
    background: linear-gradient(90deg, #f7faff 0%, #fff 100%) !important;
}

.theme-onenav .onenav-stream-item:nth-child(3n+3) {
    border-color: #dff5ef !important;
    border-left-color: #73d6b6 !important;
    background: linear-gradient(90deg, #f6fffc 0%, #fff 100%) !important;
}

.theme-onenav .stream-dot {
    background: #fb8fb0 !important;
    box-shadow: 0 0 0 4px rgba(251, 143, 176, 0.14) !important;
}

.theme-onenav .onenav-stream-item:nth-child(3n+2) .stream-dot {
    background: #8db3ff !important;
    box-shadow: 0 0 0 4px rgba(141, 179, 255, 0.14) !important;
}

.theme-onenav .onenav-stream-item:nth-child(3n+3) .stream-dot {
    background: #73d6b6 !important;
    box-shadow: 0 0 0 4px rgba(115, 214, 182, 0.14) !important;
}

.theme-onenav.onenav-menu-collapsed .category {
    width: 62px !important;
    padding: 8px 6px !important;
}

.theme-onenav.onenav-menu-collapsed .category li a {
    justify-content: center !important;
    padding: 0 !important;
}

.theme-onenav.onenav-menu-collapsed .category li a span {
    display: none !important;
}

.theme-onenav.onenav-menu-collapsed .category li a i {
    margin: 0 !important;
    font-size: 15px;
}

.theme-onenav.onenav-menu-collapsed .container.layout-main {
    margin-left: 84px !important;
}

@media (max-width: 1366px) {
    .theme-onenav .main > .card:not(.article-category-card) .card-body > a.item,
    .theme-onenav .top-grid > a.item {
        width: calc(33.333% - 8px) !important;
    }
}

@media (max-width: 1100px) {
    .theme-onenav .header {
        top: 0 !important;
        height: 68px !important;
        border-radius: 0 !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
    .theme-onenav .header .logo {
        width: 180px;
        height: 48px;
        padding: 4px 0;
    }
    .theme-onenav .header .nav {
        width: auto;
    }
    .theme-onenav .banner {
        padding-top: 76px !important;
    }
    .theme-onenav .one-yuan-ad-item {
        width: calc(20% - 8px) !important;
        min-width: 86px !important;
    }
}

@media (max-width: 768px) {
    .theme-onenav .one-yuan-ad-item {
        width: calc(33.333% - 8px) !important;
    }
}

/* onenav refine v5: pixel-level layout tuning */
.theme-onenav .header {
    height: 88px !important;
    top: 5px !important;
}

.theme-onenav .header .logo {
    width: 268px;
    margin-right: 20px;
}

.theme-onenav .header .nav li a {
    height: 42px;
    line-height: 42px;
    padding: 0 15px;
    font-size: 15px;
    border-radius: 10px;
}

.theme-onenav .banner {
    padding-top: 106px !important;
}

.theme-onenav .search-type {
    margin-bottom: 8px;
}

.theme-onenav .one-yuan-ad-container {
    margin: 6px auto 14px !important;
    padding: 10px 12px !important;
}

.theme-onenav .one-yuan-ad-title {
    margin-bottom: 10px !important;
}

.theme-onenav .category {
    width: 214px !important;
    top: 101px !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.theme-onenav .category li {
    margin: 0 0 6px !important;
}

.theme-onenav .category li a {
    height: 42px !important;
    padding: 8px 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
}

.theme-onenav .category li a i {
    font-size: 17px;
    margin-right: 10px !important;
}

.theme-onenav .category .menu-toggle-item a {
    height: 40px !important;
    font-size: 14px !important;
}

.theme-onenav .container.layout-main {
    margin-left: 236px !important;
    gap: 16px !important;
}

.theme-onenav .container.layout-main .main {
    width: calc(100% - 348px) !important;
}

.theme-onenav .container.layout-main .side {
    width: 332px !important;
    flex: 0 0 332px !important;
}

.theme-onenav .main > .card > .card-head {
    height: 46px !important;
    line-height: 46px !important;
    padding: 0 16px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.theme-onenav .main > .card > .card-head i {
    margin-right: 8px;
}

.theme-onenav .main > .card > .card-body {
    padding: 12px !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item,
.theme-onenav .top-grid > a.item {
    width: calc(25% - 10px) !important;
    height: 82px !important;
    margin: 5px !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    align-items: center !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .icon,
.theme-onenav .top-grid > a.item .icon {
    width: 32px !important;
    height: 32px !important;
    margin-right: 10px !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .name,
.theme-onenav .top-grid > a.item .name {
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .meta,
.theme-onenav .top-grid > a.item .meta {
    margin-top: 5px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.theme-onenav .top-grid > a.item .vip-badge {
    top: 4px;
    right: 6px;
    font-size: 11px;
    padding: 2px 7px;
}

.theme-onenav .side > .card {
    margin-bottom: 12px !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06) !important;
}

.theme-onenav .side > .card > .card-head {
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 14px !important;
    font-size: 17px !important;
    border-bottom: 1px solid #e7edf6 !important;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6fd 100%) !important;
}

.theme-onenav .side > .card > .card-body {
    padding: 12px !important;
}

.theme-onenav #hot-feedback-list .onenav-hot-item {
    border-radius: 12px !important;
    padding: 10px 10px !important;
}

.theme-onenav .onenav-hot-item .hot-rank {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
}

.theme-onenav .onenav-hot-item .hot-name {
    font-size: 14px !important;
}

.theme-onenav .onenav-hot-item .hot-text,
.theme-onenav .onenav-hot-item .hot-like {
    font-size: 12px !important;
}

.theme-onenav .onenav-stream-card .card-body {
    gap: 9px !important;
}

.theme-onenav .onenav-stream-item {
    border-radius: 12px !important;
    padding: 10px 11px !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.theme-onenav .stream-icon {
    width: 20px !important;
    height: 20px !important;
}

.theme-onenav .stream-name {
    font-size: 13px !important;
}

.theme-onenav.onenav-menu-collapsed .category {
    width: 74px !important;
}

.theme-onenav.onenav-menu-collapsed .container.layout-main {
    margin-left: 96px !important;
}

@media (max-width: 1500px) {
    .theme-onenav .main > .card:not(.article-category-card) .card-body > a.item,
    .theme-onenav .top-grid > a.item {
        width: calc(33.333% - 10px) !important;
    }
}

@media (max-width: 1100px) {
    .theme-onenav .category {
        width: auto !important;
    }
    .theme-onenav .category li a {
        height: 38px !important;
        font-size: 14px !important;
    }
    .theme-onenav .main > .card:not(.article-category-card) .card-body > a.item,
    .theme-onenav .top-grid > a.item {
        height: 72px !important;
        width: calc(50% - 10px) !important;
    }
    .theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .name,
    .theme-onenav .top-grid > a.item .name {
        font-size: 15px !important;
    }
    .theme-onenav .main > .card:not(.article-category-card) .card-body > a.item .meta,
    .theme-onenav .top-grid > a.item .meta {
        font-size: 12px !important;
    }
}

/* onenav refine v7: mobile drawer + density targets */
.theme-onenav .one-yuan-ad-list {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.theme-onenav .one-yuan-ad-item {
    height: 34px !important;
}

.theme-onenav .latest-activity-card .tab-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.theme-onenav .latest-activity-card .item {
    width: calc(20% - 8px) !important;
    height: 56px !important;
    border: 1px solid #e6ecf5 !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.theme-onenav .latest-activity-card .item .name {
    font-size: 13px !important;
    font-weight: 500 !important;
}

.theme-onenav .top-sites .top-grid > a.item {
    width: calc(25% - 10px) !important;
    height: 74px !important;
}

.theme-onenav .onenav-stream-card .card-head i::after {
    content: ' 最新收录';
    font-size: 12px;
    color: #8a97aa;
    font-weight: 500;
    margin-left: 6px;
}

.theme-onenav .onenav-stream-card .card-body {
    max-height: 560px !important;
}

.theme-onenav .onenav-mobile-menu-btn,
.theme-onenav .onenav-mobile-mask {
    display: none;
}

@media (max-width: 1100px) {
    .theme-onenav .category .menu-toggle-item {
        display: none !important;
    }
    .theme-onenav .category {
        position: fixed !important;
        left: 0 !important;
        top: 68px !important;
        bottom: 0 !important;
        width: 244px !important;
        margin: 0 !important;
        border-radius: 0 14px 14px 0 !important;
        transform: translateX(-108%) !important;
        transition: transform .25s ease !important;
        z-index: 1002 !important;
        box-shadow: none !important;
        overflow-y: auto !important;
    }
    .theme-onenav .category li a {
        height: 40px !important;
        font-size: 14px !important;
        padding: 8px 12px !important;
    }
    .theme-onenav.onenav-mobile-menu-open .category {
        transform: translateX(0) !important;
        box-shadow: 10px 0 24px rgba(15, 23, 42, 0.16) !important;
    }
    .theme-onenav.onenav-menu-collapsed .category {
        width: 244px !important;
        padding: 10px 8px !important;
    }
    .theme-onenav.onenav-menu-collapsed .category li a {
        justify-content: flex-start !important;
        padding: 8px 12px !important;
    }
    .theme-onenav.onenav-menu-collapsed .category li a span {
        display: block !important;
    }
    .theme-onenav.onenav-menu-collapsed .category li a i {
        margin-right: 10px !important;
        margin-left: 2px !important;
        font-size: 17px !important;
    }

    .theme-onenav .onenav-mobile-menu-btn {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        position: fixed;
        left: 10px;
        top: 78px;
        z-index: 1003;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: 1px solid #dce5f2;
        background: #fff;
        padding: 0 9px;
        cursor: pointer;
    }
    .theme-onenav .onenav-mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #64748b;
        border-radius: 2px;
    }
    .theme-onenav .onenav-mobile-mask {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.25);
        opacity: 0;
        visibility: hidden;
        transition: all .2s ease;
        z-index: 1001;
    }
    .theme-onenav.onenav-mobile-menu-open .onenav-mobile-mask {
        opacity: 1;
        visibility: visible;
    }

    .theme-onenav .one-yuan-ad-container,
    .theme-onenav .container.latest-activity-container,
    .theme-onenav .container.layout-main,
    .theme-onenav .container.layout-main + .container,
    .theme-onenav.onenav-menu-collapsed .one-yuan-ad-container,
    .theme-onenav.onenav-menu-collapsed .container.latest-activity-container,
    .theme-onenav.onenav-menu-collapsed .container.layout-main,
    .theme-onenav.onenav-menu-collapsed .container.layout-main + .container {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .theme-onenav .latest-activity-card .item {
        width: calc(50% - 8px) !important;
    }
    .theme-onenav .top-sites .top-grid > a.item {
        width: calc(50% - 10px) !important;
        height: 72px !important;
    }
    .theme-onenav .main > .card:not(.article-category-card):not(.latest-activity-card) .card-body > a.item {
        width: calc(50% - 10px) !important;
        height: 72px !important;
    }
    .theme-onenav .one-yuan-ad-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* onenav refine v6: fix overlap + 5x2 ad + activity width + card style match */
.theme-onenav .one-yuan-ad-container,
.theme-onenav .container.latest-activity-container,
.theme-onenav .container.layout-main,
.theme-onenav .container.layout-main + .container {
    margin-left: 236px !important;
    margin-right: 12px !important;
    width: auto !important;
    max-width: none !important;
}

.theme-onenav.onenav-menu-collapsed .one-yuan-ad-container,
.theme-onenav.onenav-menu-collapsed .container.latest-activity-container,
.theme-onenav.onenav-menu-collapsed .container.layout-main,
.theme-onenav.onenav-menu-collapsed .container.layout-main + .container {
    margin-left: 96px !important;
}

.theme-onenav .one-yuan-ad-list {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.theme-onenav .one-yuan-ad-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 34px !important;
}

.theme-onenav .latest-activity-card {
    border: 1px solid #e4ebf6 !important;
    border-radius: 14px !important;
    overflow: hidden;
}

.theme-onenav .latest-activity-card .card-head {
    height: 46px !important;
    line-height: 46px !important;
    padding: 0 14px !important;
    font-size: 15px !important;
    background: #f8fafd !important;
}

.theme-onenav .latest-activity-card .card-body {
    padding: 12px !important;
}

.theme-onenav .latest-activity-card .tab-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.theme-onenav .latest-activity-card .item {
    width: calc(20% - 8px) !important;
    min-width: 0 !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 8px 10px !important;
    border: 1px solid #e8edf5 !important;
    border-radius: 10px !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transform: none !important;
}

.theme-onenav .latest-activity-card .item:hover {
    border-color: #d8e1ee !important;
    background: #fbfcff !important;
    transform: translateY(-1px) !important;
}

.theme-onenav .latest-activity-card .item .icon {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    flex-shrink: 0;
}

.theme-onenav .latest-activity-card .item .name {
    font-size: 14px !important;
    line-height: 1.2 !important;
    color: #3d4b5f !important;
}

.theme-onenav .latest-activity-card .item .hits,
.theme-onenav .latest-activity-card .item .time {
    margin-left: auto;
    font-size: 12px !important;
}

.theme-onenav .top-sites .top-grid > a.item,
.theme-onenav .main > .card:not(.article-category-card):not(.latest-activity-card) .card-body > a.item {
    width: calc(25% - 10px) !important;
    height: 74px !important;
    border-radius: 12px !important;
    border: 1px solid #e5ebf4 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.theme-onenav .top-sites .top-grid > a.item:hover,
.theme-onenav .main > .card:not(.article-category-card):not(.latest-activity-card) .card-body > a.item:hover {
    border-color: #d6dfec !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08) !important;
}

.theme-onenav .top-sites .top-grid > a.item .icon,
.theme-onenav .main > .card:not(.article-category-card):not(.latest-activity-card) .card-body > a.item .icon {
    width: 26px !important;
    height: 26px !important;
    margin-right: 9px !important;
}

.theme-onenav .top-sites .top-grid > a.item .name,
.theme-onenav .main > .card:not(.article-category-card):not(.latest-activity-card) .card-body > a.item .name {
    font-size: 15px !important;
    font-weight: 600 !important;
}

.theme-onenav .top-sites .top-grid > a.item .meta,
.theme-onenav .main > .card:not(.article-category-card):not(.latest-activity-card) .card-body > a.item .meta {
    font-size: 12px !important;
    color: #8a96a8 !important;
}

@media (max-width: 1500px) {
    .theme-onenav .latest-activity-card .item {
        width: calc(25% - 8px) !important;
    }
    .theme-onenav .top-sites .top-grid > a.item,
    .theme-onenav .main > .card:not(.article-category-card):not(.latest-activity-card) .card-body > a.item {
        width: calc(33.333% - 10px) !important;
    }
}

@media (max-width: 1100px) {
    .theme-onenav .one-yuan-ad-container,
    .theme-onenav .container.latest-activity-container,
    .theme-onenav .container.layout-main,
    .theme-onenav .container.layout-main + .container,
    .theme-onenav.onenav-menu-collapsed .one-yuan-ad-container,
    .theme-onenav.onenav-menu-collapsed .container.latest-activity-container,
    .theme-onenav.onenav-menu-collapsed .container.layout-main,
    .theme-onenav.onenav-menu-collapsed .container.layout-main + .container {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    .theme-onenav .one-yuan-ad-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .theme-onenav .latest-activity-card .item {
        width: calc(50% - 8px) !important;
    }
}

/* onenav refine v8: final rules */
.theme-onenav .one-yuan-ad-list {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.theme-onenav .one-yuan-ad-item {
    width: 100% !important;
    height: 34px !important;
}

.theme-onenav .latest-activity-card .card-head {
    background: #f6f8fc !important;
    border-bottom: 1px solid #e6edf7 !important;
}

.theme-onenav .latest-activity-card .tab-content {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.theme-onenav .latest-activity-card .item {
    width: calc(20% - 8px) !important;
    height: 54px !important;
    margin: 0 !important;
    border: 1px solid #e6ecf5 !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.theme-onenav .latest-activity-card .item .icon {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
}

.theme-onenav .latest-activity-card .item .name {
    font-size: 13px !important;
    color: #3f4a5e !important;
}

.theme-onenav .top-sites .top-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 12px !important;
}

.theme-onenav .top-sites .top-grid > .item {
    width: calc(25% - 8px) !important;
    height: 74px !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    border: 1px solid #e4eaf4 !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: none !important;
}

.theme-onenav .top-sites .top-grid > .item .site-text {
    min-width: 0;
    flex: 1;
}

.theme-onenav .top-sites .top-grid > .item .name {
    font-size: 15px !important;
    font-weight: 600 !important;
}

.theme-onenav .top-sites .top-grid > .item .meta {
    font-size: 12px !important;
    color: #8d98aa !important;
}

.theme-onenav .onenav-nav-card .card-head {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 46px !important;
    background: #f8fafd !important;
    border-bottom: 1px solid #e6edf7 !important;
}

.theme-onenav .onenav-nav-card .card-head > i {
    background: linear-gradient(135deg, #4f8df7, #11b8a3, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

.theme-onenav .onenav-tabs-wrap {
    margin-left: 8px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
}

.theme-onenav .onenav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #dce6f4;
    background: #fff;
    color: #607089;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
}

.theme-onenav .onenav-pill.active {
    border-color: #4f8df7;
    background: linear-gradient(135deg, #4f8df7, #3f78d8);
    color: #fff;
}

.theme-onenav .onenav-sites-body {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 12px !important;
}

.theme-onenav .onenav-sites-body .onenav-site-item {
    display: none !important;
}

.theme-onenav .onenav-sites-body .onenav-site-item.show {
    display: flex !important;
}

.theme-onenav .onenav-sites-body .onenav-site-item {
    width: calc(25% - 8px) !important;
    height: 74px !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    border: 1px solid #e4eaf4 !important;
    background: #fff !important;
    box-shadow: none !important;
    align-items: center !important;
    gap: 9px !important;
}

.theme-onenav .onenav-sites-body .onenav-site-item .icon {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    padding: 2px;
    border-radius: 8px;
    background: linear-gradient(135deg, #5b8ef5, #11b8a3);
}

.theme-onenav .onenav-sites-body .onenav-site-item:nth-child(3n+2) .icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.theme-onenav .onenav-sites-body .onenav-site-item:nth-child(3n+3) .icon {
    background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.theme-onenav .onenav-sites-body .onenav-site-item .icon img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    background: #fff;
}

.theme-onenav .onenav-sites-body .onenav-site-item .site-text {
    min-width: 0;
    flex: 1;
}

.theme-onenav .onenav-sites-body .onenav-site-item .name {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2f3e52 !important;
}

.theme-onenav .onenav-sites-body .onenav-site-item .meta {
    margin-top: 3px;
    font-size: 12px !important;
    color: #8d98aa !important;
}

@media (max-width: 1100px) {
    .theme-onenav .one-yuan-ad-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .theme-onenav .latest-activity-card .item {
        width: calc(50% - 8px) !important;
    }
    .theme-onenav .top-sites .top-grid > .item,
    .theme-onenav .onenav-sites-body .onenav-site-item {
        width: calc(50% - 8px) !important;
        height: 72px !important;
    }
    .theme-onenav .onenav-nav-card .card-head {
        flex-wrap: wrap;
        padding-bottom: 8px !important;
    }
}

/* onenav refine v9: tab visibility fix + smaller flat site cards */
.theme-onenav .latest-activity-card .tab-content {
    display: none !important;
}

.theme-onenav .latest-activity-card .tab-content.active {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.theme-onenav .latest-activity-card .item {
    width: calc(20% - 8px) !important;
    height: 52px !important;
    border: 1px solid #e6ecf5 !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.theme-onenav .top-sites .top-grid > .item,
.theme-onenav .onenav-sites-body .onenav-site-item {
    height: 60px !important; /* about 20% lower than 74px */
    padding: 8px 10px !important;
    border-radius: 10px !important;
    border: 1px solid #e5ebf4 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.theme-onenav .top-sites .top-grid > .item:hover,
.theme-onenav .onenav-sites-body .onenav-site-item:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #d8e2f0 !important;
    background: #fbfcff !important;
}

.theme-onenav .top-sites .top-grid > .item .icon,
.theme-onenav .onenav-sites-body .onenav-site-item .icon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 8px !important;
}

.theme-onenav .top-sites .top-grid > .item .name,
.theme-onenav .onenav-sites-body .onenav-site-item .name {
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.theme-onenav .top-sites .top-grid > .item .meta,
.theme-onenav .onenav-sites-body .onenav-site-item .meta {
    margin-top: 2px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
}

@media (max-width: 1100px) {
    .theme-onenav .latest-activity-card .item {
        width: calc(50% - 8px) !important;
    }
    .theme-onenav .top-sites .top-grid > .item,
    .theme-onenav .onenav-sites-body .onenav-site-item {
        width: calc(50% - 8px) !important;
        height: 64px !important;
    }
}
