@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
}
 
/* 字体大小类 */
.fs17 { font-size: 17px; }
.fs16 { font-size: 16px; }
.fs14 { font-size: 14px; }
.fs12 { font-size: 12px; }
.cu { font-weight: bolder; font-size: 13px; }
 
/* 颜色类 - 鲜亮配色方案 */
.hong { color: #FF3860; }  /* 鲜红色 */
.lan { color: #00D1B2; }  /* 亮青色 */
.lv { color: #23D160; }   /* 亮绿色 */
.fen { color: #FF47C1; }  /* 亮粉色 */
.zi { color: #7957D5; }   /* 亮紫色 */
.hei { color: #363636; }  /* 深灰色 */
.huang { color: #FFDD57; } /* 亮黄色 */
.hui { color: #7A7A7A; font-size: 12px; } /* 中灰色 */
.border { font-weight: bolder; }
 
/* 行高和对齐 */
.lh20 { line-height: 20px; }
.lh26 { line-height: 26px; }
.tac { text-align: center; }
.shan { text-decoration: line-through; }
 
/* 主题颜色 - 鲜亮配色方案 */
.red { color: #FF3860; }
.blue { color: #00D1B2; }
.glod { color: #FFDD57; }
.pink { color: #FF47C1; }
.cyan { color: #209CEE; }
.orange { color: #FF853F; }
.yellow { color: #FFDD57; }
.purple { color: #7957D5; }
.green { color: #23D160; }
 
body {
    background: #F5F7FA;
    font-family: 'Microsoft YaHei UI', Roboto, Noto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #363636;
    padding: 0;
    margin: 0;
}
 
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
input, button, select {
    outline: none;
    border: none;
}
 
a {
    color: #209CEE;
    text-decoration: none;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}
 
a:hover {
    color: #FF47C1;
    text-decoration: none;
}
 
p {
    margin: 6px;
}
 
::-moz-selection {
    background: #FF47C1;
    color: #fff;
}
 
::selection {
    background: #FF47C1;
    color: #fff;
}
 
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: #f1f1f1;
}
 
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
 
::-webkit-scrollbar-thumb {
    background: #209CEE;
    border-radius: 3px;
}
 
.container {
    position: relative;
    width: 85%;
    max-width: 1400px;
    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: linear-gradient(135deg, #00D1B2, #209CEE);
    z-index: 999;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    box-shadow: 0 2px 15px rgba(0, 209, 178, 0.3);
}
 
.header.fixed {
    height: 55px;
    background: linear-gradient(135deg, #00D1B2, #209CEE);
    box-shadow: 0 2px 20px rgba(0, 209, 178, 0.4);
}
 
@media(min-width:767px) {
    .header.fixed {
        height: 55px;
    }
    .header.fixed a {
        color: #fff;
    }
    .nav-bar {
        display: none;
    }
}
 
@media(max-width:767px) {
    .header {
        height: 55px;
    }
}
 
.nav-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}
 
.nav-bar.active {
    -webkit-transform: rotateZ(90deg) scale(.8);
    -moz-transform: rotateZ(90deg) scale(.8);
    -o-transform: rotateZ(90deg) scale(.8);
    transform: rotateZ(90deg) scale(.8);
}
 
.nav-bar span {
    position: absolute;
    left: 0;
    right: 0;
    margin: 24px auto;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 25px;
}
 
.nav-bar span::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 0;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 25px;
}
 
.nav-bar span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 25px;
}
 
.logo {
    display: inline-flex;
    justify-content: center;
    height: 55px;
    width: 150px;
}
 
.logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
 
@media(max-width:767px) {
    .logo {
        display: flex;
        margin-left: 10px;
        height: 48px;
    }
}
 
.nav {
    display: flex;
    margin-left: 20px;
    font-size: 14px;
    float: right;
}
 
.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: #FFDD57;
    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%;
}
 
.nav li a {
    display: inline-block;
    color: #fff;
    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 {
        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 {
        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 {
        padding: 8px 8px 8px 15px;
        font-size: 14px;
        color: #363636;
        height: auto;
        line-height: normal;
        margin: 3px 0;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
        border-radius: 25px 0 0 25px;
    }
    .nav li a:hover, .nav li a.active {
        color: #fff;
        background: #FF47C1;
        box-shadow: 0 0 8px #FF47C1;
    }
}
 
@media(min-width:767px) {
    .transparent-mark {
        display: none;
    }
}
 
.transparent-mark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
 
.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: linear-gradient(135deg, #00D1B2, #209CEE) url('../images/banner-bg.jpg') no-repeat center center/cover;
    margin-top: 70px;
    color: white;
    text-align: center;
}
 
@media(max-width:767px) {
    .banner {
        height: 150px;
        margin-top: 55px;
    }
}
 
.search-type, .search-form {
    display: flex;
    width: 80%;
    max-width: 700px;
    overflow-x: auto;
}
 
.search-type .title {
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    white-space: nowrap;
}
 
.search-type .item {
    color: #fff;
    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;
    background-color: rgba(255, 255, 255, 0.2);
}
 
.search-type .item:hover, .search-type .item.active {
    color: #363636;
    background: rgba(255, 255, 255, 0.9);
}
 
.search-form .search-input {
    flex: auto;
    font-size: 15px;
    padding: 10px 15px;
    color: #555;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
}
 
.search-form .search-btn {
    width: 100px;
    height: 45px;
    font-size: 15px;
    color: #fff;
    margin-left: -1px;
    border-radius: 0 4px 4px 0;
    background: #FF47C1;
    cursor: pointer;
    border: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
 
.search-form .search-btn:hover {
    background: #FF3860;
}
 
@media(max-width:480px) {
    .search-type, .search-form {
        width: 95%;
    }
    .search-type .title {
        padding: 4px 10px;
    }
    .search-type .item {
        padding: 4px 12px;
    }
    .search-form .search-input {
        padding: 8px 12px;
        font-size: 14px;
    }
    .search-form .search-btn {
        height: 38px;
        width: 80px;
        font-size: 14px;
    }
}
 
.sort {
    position: fixed;
    top: 50%;
    left: 0;
    width: 36px;
    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: 36px;
    text-align: right;
    background: rgba(0, 209, 178, 0.85);
    padding: 8px 10px 8px 8px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    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);
    color: white;
}
 
.sort li a:hover, .sort li a.active {
    color: #fff;
    background: #FF47C1;
}
 
.sort li a:hover {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
 
#side {
    float: left;
    width: 300px;
    padding-top: 8px;
    padding-right: 8px;
}
 
#side .card {
    margin: 0 0 8px;
}
 
@media(max-width:991px) {
    #side {
        width: 100%;
        padding: 0;
    }
    #side .card {
        margin: 5px;
    }
}
 
.card {
    position: relative;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 209, 178, 0.1);
    border-radius: 8px;
    margin: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 209, 178, 0.2);
}
 
.card .card-head {
    font-size: 18px;
    font-weight: 700;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 209, 178, 0.1);
    color: #209CEE;
    background: rgba(0, 209, 178, 0.05);
}
 
.card .card-head i {
    margin-right: 6px;
    color: #FF47C1;
    text-align: center;
    width: 1.25em;
}
 
.card .card-head .more {
    position: absolute;
    right: 8px;
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 400;
    padding: 3px;
}
 
.card .card-body {
    padding: 12px;
    font-size: 0;
}
 
.card .card-body.content {
    font-size: 14px;
    line-height: 1.6;
}
 
.card .card-body.content img {
    max-width: 100%;
    border-radius: 4px;
}
 
.pz .site-item {
    font-weight: 600;
}
 
.pz .site-item:hover {
    color: #363636;
    font-weight: 600;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
 
.pz a:hover span {
    color: #363636;
}
 
@media(max-width:767px) {
    .card {
        margin: 5px;
    }
    .card .card-head {
        font-size: 16px;
        padding: 12px;
    }
    .card .card-body.content {
        font-size: 13px;
    }
    .card .card-head .more {
        display: none;
    }
    .sort {
        display: none;
    }
}
 
.board {
    padding: 12px;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 209, 178, 0.1);
}
 
.board .icon {
    margin: 0 8px 0 4px;
    color: #FF47C1;
}
 
.top-grid {
    font-size: 0;
    padding: 8px;
    background: #fff;
    border-radius: 8px;
}
 
.top-grid .item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 8.25%;
    color: #363636;
    font-size: 13px;
    padding: 10px 1px;
    border-radius: 6px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
 
@media(max-width:1300px) {
    .top-grid .item {
        width: 16.6666667%;
    }
}
 
@media(max-width:767px) {
    .top-grid .item {
        width: 20%;
    }
}
 
@media(max-width:480px) {
    .top-grid .item {
        width: 25%;
        padding: 10px 5px;
        font-size: 12px;
    }
}
 
.top-grid .item:hover {
    background:#209CEE;
    color: #fff;
    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: 40px;
    height: 40px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
 
.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;
    border-radius: 5px;
}
 
.top-grid .item .name {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
 
.board span:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
 
.site-item {
    display: inline-block;
    width: 10%;
    color: #363636;
    font-size: 14px;
    padding: 10px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: 1px solid rgba(0, 209, 178, 0.1);
    margin: 0 -1px -1px 0;
    text-align: center;
    background-color: #fff;
}
 
@media screen and (max-width:2400px) {
    .site-item {
        width: calc(9.090909090909091% - 1px);
    }
}
 
@media screen and (max-width:2000px) {
    .site-item {
        width: calc(10% - 1px);
    }
}
 
@media screen and (max-width:1400px) {
    .site-item {
        width: calc(11.11111111111111% - 1px);
    }
}
 
@media screen and (max-width:1200px) {
    .site-item {
        width: calc(12.5% - 1px);
    }
}
 
@media screen and (max-width:1000px) {
    .site-item {
        width: calc(14.28571428571429% - 1px);
    }
}
 
@media screen and (max-width:860px) {
    .site-item {
        width: calc(16.66666666666667% - 1px);
    }
}
 
@media screen and (max-width:700px) {
    .site-item {
        width: calc(20% - 1px);
        font-size: 14px;
    }
}
 
@media screen and (max-width:600px) {
    .site-item {
        font-size: 14px;
    }
}
 
@media screen and (max-width:540px) {
    .site-item {
        width: calc(25% - 1px);
    }
}
 
.site-item.top {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
 
.site-item.side {
    width: 50%;
}
 
.site-item:hover {
    color: #fff;
    background: #FF47C1;
    box-shadow: 0 4px 15px rgba(255, 71, 193, 0.3);
}
 
.site-item:hover .name {
    color: #fff !important;
}
 
.site-item .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin-right: 5px;
}
 
.site-item.top .icon {
    width: 30px;
    height: 30px;
}
 
.site-item:hover .icon {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}
 
.site-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}
 
.site-item.top .name {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
 
@media (max-width: 1300px) {
    .site-item {
        width: 16.6666667%;
    }
    .site-item.top {
        width: 14.2857143%;
    }
}
 
@media (max-width: 767px) {
    .site-item {
        width: 25%;
        font-size: 12px;
    }
    .site-item.top {
        width: 20%;
    }
}
 
@media (max-width: 400px) {
    .site-item {
        width: 33.33333%;
        font-size: 12px;
    }
    .site-item.top {
        width: 25%;
        padding: 10px 5px;
        font-size: 13px;
    }
    .site-item .name {
        line-height: 20px;
    }
    .site-item.top .icon {
        width: 25px;
        height: 25px;
    }
}
 
.site-ranking {
    display: flex;
    align-items: center;
    padding: 8px;
    line-height: 25px;
    font-size: 14px;
    color: #7A7A7A;
    border-radius: 25px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
 
.site-ranking:hover {
    color: #363636;
    background: rgba(0, 209, 178, 0.1);
}
 
.site-ranking .rank {
    flex: none;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    text-align: center;
}
 
.site-ranking:nth-child(1) .rank {
    font-size: 0;
    background: url('../images/rank_1.png') no-repeat 50% 50%/85%;
}
 
.site-ranking:nth-child(2) .rank {
    font-size: 0;
    background: url('../images/rank_2.png') no-repeat 50% 50%/85%;
}
 
.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;
}
 
.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: #FF47C1;
    font-size: 15px;
    font-style: italic;
    border-radius: 4px;
    margin-right: 6px;
}
 
.post-item {
    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;
}
 
.post-item.side {
    width: 100%;
}
 
.post-item:hover {
    color: #363636;
    background: rgba(0, 209, 178, 0.1);
}
 
.post-item .pic {
    flex: none;
    width: 120px;
    height: 85px;
}
 
.post-item.side .pic {
    width: 80px;
    height: 60px;
}
 
.post-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
 
.post-item .text {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
    padding: 4px 0;
}
 
.post-item.side .text {
    padding: 0;
}
 
.post-item .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 15px;
    height: 2.85714286em;
}
 
.post-item.side .title {
    font-size: 14px;
}
 
.post-item .info {
    display: flex;
    justify-content: space-between;
    color: #7A7A7A;
    font-size: 12px;
}
 
.post-item.side .info {
    font-size: 11px;
}
 
.post-item.ranking {
    position: relative;
    padding-left: 30px;
}
 
.post-item.ranking .rank {
    position: absolute;
    top: 50%;
    left: 2px;
    width: 25px;
    height: 25px;
    text-align: center;
    z-index: 1;
    transform: translateY(-50%);
}
 
.post-item.ranking:nth-child(1) .rank {
    font-size: 0;
    background: url("../images/rank_1.png") no-repeat 50% 50%/85%;
}
 
.post-item.ranking:nth-child(2) .rank {
    font-size: 0;
    background: url("../images/rank_2.png") no-repeat 50% 50%/85%;
}
 
.post-item.ranking:nth-child(3) .rank {
    font-size: 0;
    background: url("../images/rank_3.png") no-repeat 50% 50%/85%;
}
 
@media (max-width: 767px) {
    .post-item {
        width: 100%;
    }
    .post-item .pic {
        width: 95px;
        height: 70px;
    }
}
 
.post-info {
    display: flex;
    justify-content: space-around;
    color: #7A7A7A;
    font-size: 13px;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
}
 
.site-main {
    display: inline-block;
    width: calc(100% - 280px);
    padding: 5px;
    font-size: 14px;
    vertical-align: top;
}
 
.site-main .title {
    display: block;
    font-weight: 600;
    font-size: 22px;
    line-height: normal;
    text-align: center;
    padding-bottom: 0;
    color: #363636;
}
 
.site-main span {
    line-height: 42px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 1;
}
 
.site-main img {
    vertical-align: middle;
    margin-top: -4px;
}
 
@media (max-width: 1300px) {
    .site-main span {
        line-height: 32px;
        padding: 6px;
    }
}
 
@media (max-width: 767px) {
    .site-main {
        width: 100%;
        font-size: 13px;
    }
    .site-main .title {
        width: 50%;
        padding-top: 0;
        font-size: 18px;
        line-height: 32px;
    }
    .site-main span {
        line-height: 26px;
        padding: 4px;
    }
}
 
.site-side {
    float: left;
    width: 280px;
    padding: 20px;
    text-align: center;
}
 
.site-side .snapshot {
    width: 100%;
    height: 180px;
    margin-bottom: 5px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 209, 178, 0.2);
    border: 1px solid rgba(0, 209, 178, 0.2);
}
 
.site-side .snapshot img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
 
.site-side .oz-btn {
    margin: 5px 0;
    background: #FF47C1;
}
 
.site-side .oz-btn:hover {
    background: #FF3860;
}
 
@media (max-width: 767px) {
    .site-side {
        width: 100%;
        padding: 0;
        float: none;
    }
    .site-side .snapshot {
        position: absolute;
        top: 20px;
        left: 51%;
        width: 210px;
        height: 160px;
    }
    .site-side .oz-btn {
        width: 48%;
        margin: 1%;
        font-size: 14px;
    }
}
 
@media screen and (max-width:640px) {
    /* 保留原有样式 */
}
 
@media (max-width: 480px) {
    .site-side .site-img {
        left: auto;
        right: 15px;
        width: 40%;
        height: 35%;
    }
}
 
.side-sort {
    display: inline-block;
    width: 50%;
    font-size: 14px;
    color: #7A7A7A;
    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-sort:hover, .side-sort.active {
    color: #fff;
    background: #209CEE;
}
 
.ranking {
    overflow: hidden;
}
 
.ranking div {
    padding: 0;
}
 
.ranking div:nth-child(2) .card {
    margin: 8px 0;
}
 
@media (max-width: 991px) {
    .ranking div:nth-child(2) .card {
        margin: 8px 8px 8px 0;
    }
    .ranking div:nth-child(3) .card {
        margin-top: 0;
    }
}
 
@media (max-width: 767px) {
    .ranking div:nth-child(2) .card {
        margin: 5px !important;
    }
}
 
.card .side-statistic {
    font-size: 14px;
}
 
.card .side-statistic p {
    margin: 12px 8px;
}
 
.side-latest .oz-timeline-main {
    padding: 3px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
 
.side-latest .oz-timeline-main .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}
 
.side-latest .oz-timeline-main .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.side-latest .oz-timeline-main .name {
    line-height: 35px;
    vertical-align: middle;
}
 
.links {
    clear: both;
}
 
.links .card-head::before {
    content: '';
    position: absolute;
    left: 5px;
    width: 4px;
    height: 22px;
    background: #FF47C1;
    border-radius: 2px;
}
 
.link-item {
    display: inline-block;
    font-size: 13px;
    padding: 5px 12px;
    margin: 2px;
    color: #7A7A7A;
    background: rgba(0, 209, 178, 0.1);
    border-radius: 25px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
 
.link-item:hover {
    color: #fff;
    background: #FF47C1;
}
 
.suspend {
    position: fixed;
    right: 2%;
    bottom: 5%;
    z-index: 999;
}
 
.suspend li {
    position: relative;
    width: 36px;
    height: 36px;
    margin: 5px;
    line-height: 36px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background: #209CEE;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
 
.suspend li a {
    color: #fff;
}
 
.suspend li a:hover {
    color: #fff;
}
 
.suspend li:hover {
    color: #fff;
    background: #FF47C1;
}
 
.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: 45px;
    height: 36px;
    padding: 0 12px;
    line-height: 36px;
    white-space: nowrap;
    background: #209CEE;
    border-radius: 4px;
    -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;
    color: white;
    font-size: 13px;
}
 
.suspend .more::after {
    content: '';
    position: absolute;
    display: block;
    top: calc(50% - 5px);
    right: -4px;
    border-top: 5px solid transparent;
    border-left: 5px solid #209CEE;
    border-bottom: 5px solid transparent;
}
 
.suspend .more.QRcode {
    width: 120px;
    height: 120px;
    top: calc(50% - 60px);
    padding: 8px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
 
.suspend .more.QRcode::after {
    border-left: 5px solid white;
}
 
.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: 20px;
    padding: 20px;
    font-size: 14px;
    background: linear-gradient(135deg, #00D1B2, #209CEE);
    color: white;
    box-shadow: 0 -2px 15px rgba(0, 209, 178, 0.3);
}
 
.footer a {
    color: white;
    text-decoration: underline;
}
 
.footer a:hover {
    color: #FFDD57;
}
 
.ad {
    display: block;
    margin: 10px 0;
    text-align: center;
}
 
.ad img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
 
#captchaImage {
    height: 36px;
    cursor: pointer;
    border-radius: 4px;
}
 
.oz-timeline {
    position: relative;
    padding: 5px;
    font-size: 14px;
}
 
.oz-timeline .oz-timeline-item {
    display: block;
    position: relative;
    padding-left: 20px;
}

.oz-timeline .oz-timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 6px;
    width: 1px;
    height: 100%;
    background: #209CEE;
}

.oz-timeline .oz-timeline-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background: #209CEE;
    border: 3px solid white;
    border-radius: 100px;
    box-shadow: 0 0 6px rgba(0, 209, 178, 0.5);
}

.oz-timeline .oz-timeline-time {
    color: #7A7A7A;
    line-height: 15px;
    font-size: 13px;
    font-weight: 600;
}

.oz-timeline .oz-timeline-main {
    padding: 8px 0;
}

.oz-btn {
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    color: #fff;
    background: #209CEE;
    font-size: 14px;
    border: none;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.oz-btn:hover {
    color: #fff;
    background: #FF47C1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 71, 193, 0.3);
}

.oz-btn:active {
    transform: translateY(0);
}

.oz-btn-lg {
    height: 38px;
    line-height: 38px;
    padding: 0 20px;
    font-size: 16px;
}

.oz-btn-sm {
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    font-size:12px
}

.oz-btn-xs {
    height: 22px;
    line-height: 22px;
    padding: 0 5px;
    font-size: 12px
}

.oz-btn-block {
    width: 100%
}

.oz-btn-radius {
    border-radius: 100px
}

.oz-btn-container .oz-btn {
    margin: 5px
}

.oz-bg-red {
    background: #FF3860 !important;
}

.oz-bg-blue {
    background: #209CEE !important;
}

.oz-bg-yellow {
    background: #FFDD57 !important;
}

#inputName,#inputEmail,#inputUrl {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -10
}

.bai{
    color: #fff;
    font-weight: unset;
}

.wrap ul{
    padding: 10px;
    background:#FFF;
}

.wrap ul li {
    background:#F8F8F8;
    padding:10px;
    font-size:13px;
    margin-bottom:10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 209, 178, 0.1);
    border: 1px solid rgba(0, 209, 178, 0.1);
}

.wrap ul li div {
    background:#209CEE;
    float:left;
    line-height:22px;
    text-align:center;
    width:22px;
    color:#FFF;
    border-radius: 4px;
    font-weight: bold;
}

.wrap ul li p {
    line-height:22px;
    text-indent:10px;
    margin: 0 0;
}

.wrap ul li p a {
    color:#069;
    font-size:12px;
    margin-left:10px;
}

.wrap ul li p a:hover {
    color:#36F
}

.wrap ul li:nth-child(1) div {
    background:#FF3860;
}

.wrap ul li:nth-child(2) div {
    background:#209CEE;
}

.wrap ul li:nth-child(3) div {
    background:#FF47C1;
}

.wrap ul li:nth-child(4) div {
    background:#7957D5;
}

.wrap ul li:nth-child(5) div {
    background:#FF853F;
}

.wrap ul li:nth-child(6) div {
    background:#FFDD57;
}

.wrap ul li:nth-child(7) div {
    background:#23D160;
}

.wrap ul li:nth-child(8) div {
    background:#FF3860;
}

.banners{
    border-radius: 3px !important;
}

.banners img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.banners img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
}

/* 广告容器 - 通栏宽度 */
.ads-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 15px;
    box-sizing: border-box;
    animation: fadeInAd 0.5s ease-out forwards;
}

/* 广告项基础样式 */
.ads-item {
    flex: 1;
    min-width: 0;
    height: 90px;
    margin: 0 8px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 209, 178, 0.2);
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    border: 1px solid rgba(0, 209, 178, 0.1);
}

/* 广告图片样式 - 关键优化 */
.ads-item a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ads-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: all 0.5s ease;
}

/* 悬停效果 */
.ads-item:hover {
    box-shadow: 0 4px 15px rgba(0, 209, 178, 0.3);
    transform: translateY(-3px);
}

.ads-item:hover img {
    transform: scale(1.03);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .ads-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }
    .ads-item {
        width: 100%;
        height: 70px;
        margin: 0;
    }
}

/* 广告动画效果 */
@keyframes fadeInAd {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 备用方案：如果需要强制填充容器 */
.ads-item.fill {
    overflow: hidden;
}

.ads-item.fill img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.col6 {
    position: relative;
    min-height: 1px;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 8px;
    margin-bottom: 15px;
}

.row6 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.hidden{
    display: none;
}

@media screen and (max-width:750px){
    .col6 {
        width: 100%!important;
    }
    .col6 img {
        height:60px!important;
    }
    .hidden{
        display: inline-block!important;
    }
}

/* 新增卡片悬停效果 */
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.2);
    border-color: rgba(0, 209, 178, 0.3);
}

/* 新增标签样式 */
.tag {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    color: #fff;
    background: #209CEE;
    border-radius: 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.tag:hover {
    background: #FF47C1;
    transform: scale(1.05);
}

.tag-red { background: #FF3860; }
.tag-yellow { background: #FFDD57; }
.tag-purple { background: #7957D5; }
.tag-orange { background: #FF853F; }

/* 新增通知栏样式 */
.notice-bar {
    background: #FFF8E6;
    color: #E6A23C;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 13px;
    border-left: 4px solid #E6A23C;
}

/* 新增进度条样式 */
.progress-bar {
    height: 6px;
    background: #EBEEF5;
    border-radius: 3px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, #00D1B2, #209CEE);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* 新增表单元素样式 */
.form-control {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    color: #363636;
    background: #fff;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #209CEE;
    box-shadow: 0 0 0 2px rgba(0, 209, 178, 0.2);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #7A7A7A;
}

/* 新增分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 4px;
    color: #363636;
    background: #fff;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination a:hover {
    color: #209CEE;
    border-color: #209CEE;
}

.pagination a.active {
    color: #fff;
    background: #209CEE;
    border-color: #209CEE;
}

/* 新增面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    color: #7A7A7A;
}

.breadcrumb a {
    color: #7A7A7A;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #209CEE;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #DCDFE6;
}

/* 广告容器和广告项的基本样式 */
#topgg{
    max-width: 1110px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#topgg img {
      height: 55px;
    width: 100%;
    margin-bottom: 1px;
}

#topgg img:hover {
    transition-duration: 0.3s;
    transition-property: box-shadow;
    box-shadow: 0 0 10px #0370e5;
    cursor: pointer;
    filter: alpha(Opacity=80);
    -moz-opacity: 0.9;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    #topgg img {
        width: 100%;
        height: 55px;
    }
}

@media(max-width: 450px) {
    #topgg img {
        width: 100%;
        height: 3.5rem;
    }
}
