@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: #f9f9f9;
    font-family: "Microsoft YaHei UI", Roboto, Noto, Helvetica, Arial, sans-serif;
    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: #ff7f00;
    text-decoration: none;
}

p {
    margin: 6px;
}

em {
    display:block;margin-bottom: 2px;text-align:center;
}
::-moz-selection {
    background: #ff7f00;
    color: #fff;
}

::selection {
    background: #ff7f00;
    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: #888;
    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{background:url(/assets/images/logo.png) no-repeat;float:left;height:55px;width:220px;}
.logo h1{display:none;}
.logo h2{display:none;}
.logo {
    display: inline-flex;
    justify-content: center;
    padding: 8px 0;
}

@media (max-width: 767px) {
    .logo {
        display: flex;
        margin-left: 1px;
        height: 48px;
        padding: 10px 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: #ff7f00;
    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: #ff7f00;
        box-shadow: 0 0 8px #ff7f00;
    }
}

@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: 400px;
    background: #333 center center/cover;
}

@media (max-width: 767px) {
    .banner {
        height: 280px;
        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(255, 127, 0, 0.85);
    cursor: pointer;
}

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

.sort {
    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;
}

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

.sort 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);
}

.sort li a:hover, .sort li a.active {
    color: #fff;
    background: #ff7f00;
}

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

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

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

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

@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 2.5px #000;
    border-radius: 8px;
    margin: 8px;
    overflow: hidden;
}

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

.card .card-head {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 15px;
    border-bottom: 1px solid #f2f2f2;
}

@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: 16.6257143%;
    color: #666;
    font-size: 16px;
    padding: 10px 10px;
    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;
}

@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%;
*/ 
}
.ding {
    background: url(../images/ding.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: #ff7f00;
    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 {
    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: 100%;
    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: #ff7f00;
    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: #ff7f00;
}

.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: #ff7f00;
}

.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: #ff7f00;
    border: 1px solid #ff7f00;
}

.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-sort {
}

.side .side-sort > 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-sort > a:hover, .side .side-sort > 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 {
  font-size: 0;
  background: url('../images/rank_1.png') no-repeat 50% 50%/85%;
/*  
    background: #f1404b;
    color: #FFF;
    border-radius: 50%;
*/ 
}

.site-ranking: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%;
*/ 
}

.site-ranking:nth-child(3) .rank {
  font-size: 0;
  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;
/*  
    background: #b89e2c;
    color: #FFF;
    border-radius: 50%;
*/ 
}

.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: #ff7f00;
  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;}

/* Frontend UI refresh layer */
:root {
    --ui-bg: #f4f7fb;
    --ui-surface: rgba(255, 255, 255, .96);
    --ui-surface-soft: #f8fafc;
    --ui-border: #e5ebf3;
    --ui-text: #26323f;
    --ui-muted: #718096;
    --ui-primary: #1677d2;
    --ui-primary-dark: #0f5fb1;
    --ui-accent: #15a58a;
    --ui-warning: #ff8a00;
    --ui-shadow: 0 12px 34px rgba(30, 58, 95, .08);
    --ui-shadow-soft: 0 6px 18px rgba(30, 58, 95, .06);
}

body {
    background:
        radial-gradient(circle at 8% 0, rgba(22, 119, 210, .08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0, var(--ui-bg) 420px, #f7f9fc 100%);
    color: var(--ui-text);
    font-size: 14px;
    letter-spacing: 0;
}

a {
    color: #2e4053;
}

a:hover {
    color: var(--ui-primary);
}

p {
    margin: 8px 0;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #edf2f7;
}

::-webkit-scrollbar-track {
    background: #edf2f7;
    box-shadow: none;
}

::-webkit-scrollbar-thumb {
    background: #b8c4d3;
    border-radius: 8px;
}

.container {
    width: min(1180px, calc(100% - 28px));
    max-width: 1180px;
    overflow: visible;
}

.header {
    height: 64px;
    background: rgba(255, 255, 255, .86);
    border-top: 4px solid var(--ui-primary);
    border-bottom: 1px solid rgba(226, 232, 240, .82);
    box-shadow: 0 8px 28px rgba(15, 46, 77, .06);
    backdrop-filter: blur(14px);
}

.header.fixed {
    height: 58px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 28px rgba(15, 46, 77, .08);
}

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

.header h1,
.header h2 {
    flex: none;
    margin: 0;
    line-height: 1;
}

.logo {
    display: inline-flex;
    align-items: center;
    float: none;
    width: auto;
    height: auto;
    min-width: 168px;
    min-height: 44px;
    color: var(--ui-primary) !important;
    background: none !important;
    font-size: 28px !important;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: none !important;
}

.logo::before {
    content: "";
    width: 10px;
    height: 28px;
    margin-right: 10px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--ui-primary), var(--ui-accent));
}

.nav {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    height: auto;
}

.nav li a {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 12px;
    color: #526273 !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.nav li a:hover,
.nav li a.active {
    color: var(--ui-primary) !important;
    background: #eef6ff;
}

.banner {
    height: 330px;
    margin-bottom: 10px;
    background-position: center !important;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 35, 57, .24), rgba(11, 35, 57, .08) 48%, rgba(244, 247, 251, .9));
}

.search-type,
.search-main {
    position: relative;
    z-index: 1;
}

.search-type {
    width: min(620px, calc(100% - 40px));
    padding: 6px;
    margin: 126px auto 0;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 12px 12px 0 0;
    backdrop-filter: blur(10px);
}

.search-type .title {
    color: #fff;
    font-weight: 700;
}

.search-type li {
    color: #f5faff;
    border-radius: 7px;
}

.search-type li:hover,
.search-type li.active {
    color: var(--ui-primary);
    background: #fff;
}

.search-main {
    width: min(620px, calc(100% - 40px));
    height: 52px;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.search-main .search-input {
    height: 52px;
    padding: 0 18px;
    color: var(--ui-text);
}

.search-main .search-btn {
    width: 132px;
    height: 52px;
    background: linear-gradient(135deg, var(--ui-primary), var(--ui-accent));
    font-weight: 700;
}

.main {
    float: left;
    display: block;
    width: calc(100% - 286px);
    max-width: calc(100% - 286px);
    margin-top: 12px;
    padding-right: 14px;
}

.side {
    float: left;
    width: 286px;
    padding: 12px 0 0;
}

.card {
    margin: 0 0 14px;
    overflow: hidden;
    background: var(--ui-surface);
    border: 1px solid var(--ui-border);
    border-radius: 8px;
    box-shadow: var(--ui-shadow-soft);
}

.card:hover {
    box-shadow: var(--ui-shadow);
}

.card .card-head {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 16px;
    color: var(--ui-text);
    background: linear-gradient(180deg, #fff, #fbfdff);
    border-bottom: 1px solid var(--ui-border);
    font-size: 15px;
    font-weight: 800;
}

.card .card-head b {
    color: var(--ui-primary) !important;
}

.card .card-head i {
    color: var(--ui-primary);
    margin-right: 8px;
}

.card .card-head .more {
    margin-left: auto;
    color: var(--ui-muted);
    font-size: 13px;
    font-weight: 600;
}

.card .card-body {
    padding: 14px 16px;
}

.board {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    color: var(--ui-muted);
    background: #fff;
    border-left: 4px solid var(--ui-primary);
}

.board .icon {
    margin-right: 8px;
    color: var(--ui-primary);
}

.board a {
    color: var(--ui-primary);
    font-weight: 700;
}

.sort {
    display: flex;
    gap: 8px;
    padding: 10px;
    margin: 0 0 12px;
    overflow-x: auto;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--ui-border);
    border-radius: 8px;
}

.sort li {
    flex: none;
    display: block;
}

.sort li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 12px;
    color: #526273;
    background: #f7fafc;
    border: 1px solid #e8eef5;
    border-radius: 8px;
}

.sort li a:hover,
.sort li a.active {
    color: var(--ui-primary);
    background: #edf7ff;
    border-color: #cfe8ff;
}

.top-grid,
.card .card-body {
    font-size: 0;
}

.top-grid .item,
.card .card-body .item,
.side .rand-site a,
.side .side-sort > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: calc(25% - 8px);
    min-height: 42px;
    margin: 4px;
    padding: 0 10px;
    color: #3d4b5c;
    background: var(--ui-surface-soft);
    border: 1px solid #edf1f6;
    border-radius: 8px;
    font-size: 14px;
    text-align: left;
    transform: none;
}

.top-grid .item:hover,
.card .card-body .item:hover,
.side .rand-site a:hover,
.side .side-sort > a:hover,
.side .side-sort > a.active {
    color: var(--ui-primary);
    background: #eef7ff;
    border-color: #cfe7ff;
    transform: translateY(-1px);
}

.top-grid .item .icon,
.card .card-body .item .icon,
.side .rand-site a .icon {
    flex: none;
    width: 24px;
    height: 24px;
    margin: 0 8px 0 0;
    border-radius: 7px;
    background: #fff;
}

.top-grid .item .icon img,
.card .card-body .item .icon img,
.side .rand-site a .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.top-grid .item .name,
.card .card-body .item .name {
    flex: auto;
    overflow: hidden;
    color: inherit;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card .card-body .content {
    color: #3c4958;
    font-size: 15px;
    line-height: 1.9;
}

.card .card-body .content h1 {
    margin: 6px 0 14px;
    color: var(--ui-text);
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0;
}

.card .card-body .content em {
    color: var(--ui-muted);
    font-size: 13px;
}

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

.wzgg {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    box-shadow: none;
}

.wzgg a,
.wzgg a:nth-child(n) {
    float: none;
    width: auto;
    height: 40px;
    line-height: 40px;
    margin: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--ui-primary), var(--ui-accent));
    border-radius: 8px;
    font-weight: 700;
}

.wzgg a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--ui-primary-dark), #11856f);
}

.ad img {
    display: block;
    border-radius: 8px;
}

.card .card-body .post {
    display: inline-flex;
    width: calc(50% - 8px);
    min-height: 98px;
    margin: 4px;
    padding: 10px;
    background: var(--ui-surface-soft);
    border: 1px solid #edf1f6;
    border-radius: 8px;
}

.card .card-body .post:hover {
    background: #eef7ff;
    border-color: #cfe7ff;
    transform: translateY(-1px);
}

.card .card-body .post .pic {
    flex: none;
    width: 92px;
    height: 72px;
    margin-right: 12px;
    border-radius: 8px;
    overflow: hidden;
}

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

.card .card-body .post .text {
    flex: auto;
    min-width: 0;
    padding: 0;
}

.card .card-body .post .title {
    height: auto;
    color: var(--ui-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.card .card-body .post .info {
    margin-top: 10px;
    color: var(--ui-muted);
}

.view-list a,
.side-latest .oz-timeline-item,
.site-ranking {
    min-height: 36px;
    padding: 7px 8px;
    color: #3d4b5c;
    border-radius: 8px;
}

.view-list a:hover,
.side-latest .oz-timeline-item:hover,
.site-ranking:hover {
    color: var(--ui-primary);
    background: #eef7ff;
}

.site-ranking .rank,
.view-list .rank {
    color: #fff;
    background: #a8b5c4;
}

.site-ranking:nth-child(1) .rank,
.site-ranking:nth-child(2) .rank,
.site-ranking:nth-child(3) .rank {
    background-size: 85%;
}

.site-ranking .view {
    color: var(--ui-warning);
    font-weight: 800;
}

.ranking {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ranking > div {
    float: none;
    width: auto;
    padding: 0;
}

.ranking .card .card-head i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 54px;
    height: 24px;
    padding: 0 8px;
    margin-right: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--ui-primary), var(--ui-accent));
    border-radius: 8px;
    font-style: normal;
    font-size: 12px;
}

.oz-timeline {
    position: relative;
    padding-left: 0;
}

.oz-timeline .oz-timeline-item,
.side-latest .oz-timeline-item {
    display: flex;
    align-items: center;
    margin: 0 0 8px;
    padding: 10px 12px;
    background: var(--ui-surface-soft);
    border: 1px solid #edf1f6;
    border-radius: 8px;
}

.oz-timeline .oz-timeline-time {
    flex: none;
    width: 150px;
    color: var(--ui-muted);
    font-size: 13px;
}

.oz-timeline .oz-timeline-main {
    flex: auto;
    min-width: 0;
}

.pagination {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    margin: 12px 0;
}

.pagination li a,
.pagination li.disabled a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    background: #eef3f8;
    color: #526273;
}

.pagination li a:hover {
    color: #fff;
    background: var(--ui-primary);
}

.oz-form-group {
    margin-bottom: 14px;
}

.oz-form-label {
    color: var(--ui-text);
    font-weight: 800;
}

.oz-form-field input,
.oz-form-field select,
.oz-form-textarea,
.card input[type="text"],
.card input[type="url"],
.card select,
.card textarea {
    min-height: 42px;
    color: var(--ui-text);
    background: #fff;
    border: 1px solid #dce6f1;
    border-radius: 8px;
}

.oz-form-textarea,
.card textarea {
    padding: 10px 12px;
}

.oz-btn,
button,
input[type="submit"] {
    border-radius: 8px !important;
    font-weight: 800;
}

.oz-bg-blue,
.search-main .search-btn {
    background: linear-gradient(135deg, var(--ui-primary), var(--ui-accent)) !important;
}

.oz-bg-red {
    background: linear-gradient(135deg, #f15b50, #ff8a00) !important;
}

.oz-bg-orange {
    background: linear-gradient(135deg, #ff8a00, #ffb020) !important;
}

.footer {
    margin-top: 22px;
    padding: 24px 0 30px;
    color: var(--ui-muted);
    background: #fff;
    border-top: 1px solid var(--ui-border);
}

.footer p {
    margin: 6px 0;
}

.suspend {
    right: 22px;
    bottom: 42px;
}

.suspend li {
    width: 42px;
    height: 42px;
    margin-top: 8px;
    color: #fff;
    background: #26323f;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(38, 50, 63, .18);
}

.suspend li:hover {
    background: var(--ui-primary);
}

font[color="#FF0000"],
font[color="#ff0000"] {
    color: #e5484d !important;
}

.site-summary p {
    margin: 10px 0;
}

.site-summary p > b {
    color: var(--ui-text);
}

.site-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.site-tools b {
    margin-right: 4px;
}

.site-tools a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    color: var(--ui-primary);
    background: #eef7ff;
    border: 1px solid #cfe7ff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.site-tools a:hover {
    color: #fff;
    background: var(--ui-primary);
}

.site-tools {
    color: transparent;
}

.site-tools b,
.site-tools a {
    color: initial;
}

.site-tools a {
    color: var(--ui-primary);
}

.site-tools a:hover {
    color: #fff;
}

.site-qrcode img {
    display: block;
    width: 132px;
    height: 132px;
    margin-top: 10px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--ui-border);
    border-radius: 8px;
}

.site-shot-title {
    margin-top: 18px !important;
    color: var(--ui-text);
    font-size: 16px;
}

.site-summary center img,
.site-summary .lazy-load {
    max-height: 430px;
    object-fit: contain;
    background: #f8fafc;
}

.site-declare {
    padding: 14px;
    color: #6b3f12;
    background: #fff8ed;
    border: 1px solid #ffe1b8;
    border-radius: 8px;
}

.site-declare font {
    color: #b45309 !important;
}

.part-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    font-size: 0;
}

.part-main h1,
.part-main .site-name {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    color: var(--ui-text);
    font-size: 26px;
    line-height: 1.35;
}

.part-main > span {
    display: flex;
    align-items: center;
    float: none;
    width: auto;
    min-height: 42px;
    padding: 10px 12px;
    color: #4a5968;
    background: var(--ui-surface-soft);
    border: 1px solid #edf1f6;
    border-radius: 8px;
    font-size: 14px;
}

.part-main > span .oz-btn,
.part-main > span form,
.part-main > span a.oz-btn,
.part-main > span button {
    width: 100%;
}

@media (max-width: 1180px) {
    .main {
        width: calc(100% - 260px);
        max-width: calc(100% - 260px);
        padding-right: 12px;
    }

    .side {
        width: 260px;
    }

    .top-grid .item,
    .card .card-body .item,
    .side .rand-site a,
    .side .side-sort > a {
        width: calc(33.333% - 8px);
    }
}

@media (max-width: 900px) {
    .main {
        float: none;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .ranking {
        display: block;
    }

    .side {
        float: none;
        width: auto;
        padding-top: 0;
    }

    .banner {
        height: 260px;
    }

    .search-type {
        margin-top: 104px;
    }

    .top-grid .item,
    .card .card-body .item,
    .side .rand-site a,
    .side .side-sort > a {
        width: calc(50% - 8px);
    }

    .card .card-body .post {
        width: calc(100% - 8px);
    }

    .part-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .header,
    .header.fixed {
        height: 56px;
    }

    .logo {
        min-width: 0;
        font-size: 22px !important;
    }

    .nav {
        display: none;
    }

    .nav-bar {
        display: block;
    }

    .banner {
        height: 228px;
    }

    .search-type,
    .search-main {
        width: calc(100% - 24px);
    }

    .search-type {
        margin-top: 86px;
    }

    .search-main .search-btn {
        width: 104px;
    }

    .top-grid .item,
    .card .card-body .item,
    .side .rand-site a,
    .side .side-sort > a {
        width: calc(100% - 8px);
    }

    .wzgg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .oz-timeline .oz-timeline-item {
        display: block;
    }

    .oz-timeline .oz-timeline-time {
        width: auto;
        margin-bottom: 4px;
    }

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

    .part-main {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Layout fixes after UI refresh */
.sort {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    margin: 0 0 12px !important;
    padding: 10px !important;
    transform: none !important;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    overflow: visible;
    z-index: 1;
}

.sort li {
    flex: none;
    margin: 0 !important;
}

.sort li a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: auto !important;
    min-height: 36px;
    padding: 0 12px !important;
    text-align: center;
    white-space: nowrap;
    border-radius: 8px !important;
    transform: none !important;
}

.sort li a span {
    display: inline-block;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.main .top-grid .item,
.main .card .card-body .item {
    width: calc(16.666% - 8px) !important;
}

.side .side-sort {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.side .side-sort > a {
    display: inline-flex !important;
    align-items: center;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 10px 12px !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.side .side-sort > a i {
    flex: none;
    margin-right: 6px;
}

@media (max-width: 900px) {
    .sort {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main .top-grid .item,
    .main .card .card-body .item {
        width: calc(33.333% - 8px) !important;
    }
}

@media (max-width: 640px) {
    .main .top-grid .item,
    .main .card .card-body .item {
        width: calc(33.333% - 8px) !important;
    }

    .side .side-sort {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Mobile navigation and three-column site list */
@media (max-width: 767px) {
    .nav-bar {
        display: block !important;
        z-index: 1002;
    }

    .nav {
        display: flex !important;
        position: fixed;
        top: 56px;
        right: 10px;
        left: auto;
        width: 180px;
        max-height: calc(100vh - 76px);
        padding: 8px;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background: rgba(255, 255, 255, .96);
        border: 1px solid var(--ui-border);
        border-radius: 10px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, .18);
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        z-index: 1001;
    }

    .nav.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav li,
    .nav.show li {
        right: auto !important;
        width: 100%;
        transform: none !important;
    }

    .nav li a {
        display: flex;
        width: 100%;
        height: 38px;
        justify-content: flex-start;
        color: #24384f !important;
        background: #f7fafc;
        border: 1px solid #edf1f6;
    }

    .transparent-mark {
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: transparent;
    }

    .main .top-grid .item,
    .main .card .card-body .item {
        flex-direction: column;
        align-items: center;
        width: calc(33.333% - 8px) !important;
        min-height: 80px;
        padding: 8px 6px;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .main .top-grid .item .icon,
    .main .card .card-body .item .icon {
        flex: none;
        width: 26px;
        height: 26px;
        margin: 0 auto 6px !important;
        overflow: hidden;
    }

    .main .top-grid .item .icon img,
    .main .card .card-body .item .icon img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main .top-grid .item .name,
    .main .card .card-body .item .name {
        flex: none;
        width: 100%;
        min-width: 0;
        font-size: 13px;
        line-height: 1.35;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .main .card .card-body .item.text-item {
        min-height: 50px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .main .card .card-body .item.text-item .name {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Apply page mobile fixes */
.apply-pending-card .card-head {
    flex-wrap: wrap;
    gap: 6px 10px;
}

.apply-pending-card .card-head span {
    margin-left: auto;
}

@media (max-width: 767px) {
    .apply-pending-card .card-head {
        align-items: flex-start;
        line-height: 1.35;
    }

    .apply-pending-card .card-head span {
        width: 100%;
        margin-left: 0;
        font-size: 13px;
    }

    .apply-pending-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .apply-pending-list .item {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: auto !important;
        min-width: 0;
        min-height: 78px;
        margin: 0 !important;
        padding: 8px 6px;
        text-align: center;
        overflow: hidden;
    }

    .apply-pending-list .item .icon {
        flex: none;
        width: 26px;
        height: 26px;
        margin: 0 auto 6px !important;
        overflow: hidden;
    }

    .apply-pending-list .item .icon img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .apply-pending-list .item .name {
        flex: none;
        width: 100%;
        min-width: 0;
        font-size: 13px;
        line-height: 1.35;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .apply-url-fetch-row {
        display: grid !important;
        grid-template-columns: 92px 92px minmax(0, 1fr);
        gap: 0;
        align-items: stretch;
    }

    .apply-url-fetch-row .oz-form-label {
        width: auto;
        min-width: 0;
        height: 42px;
        line-height: 42px;
        padding: 0 10px;
        text-align: center;
    }

    .apply-url-fetch-row .oz-form-field {
        min-width: 0;
        width: auto;
    }

    .apply-url-fetch-row .oz-form-field select,
    .apply-url-fetch-row .oz-form-field input {
        width: 100%;
        min-width: 0;
        height: 42px;
        border-radius: 0;
    }

    .apply-url-fetch-row .apply-tdk-btn {
        grid-column: 1 / -1;
        width: 100% !important;
        height: 40px !important;
        margin-top: 8px;
    }
}
