html,
body {
    margin: 0;
    font-size: 15px;
    font-family: v-sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol;
    line-height: 1.6;
    color: var(--theme-color);
    background-color: var(--theme-background);
    word-wrap: break-word;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

.headBg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    opacity: .4;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
}

form,
input,
textarea {
    border: 0;
    outline: 0;
}

input,
button,
textarea,
select {
    border: 0;
    outline: 0;
    resize: none;
}

a {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

a:hover {
    color: var(--theme-theme);
}

[v-cloak] {
    display: none;
}

#app {
    position: relative;
    z-index: 9;
}


/* 导航栏 */
.headerBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    z-index: 99;
}

.headerKox {
    height: 68px;
}

.headerBox .bg {
    position: absolute;
    inset: 0;
    box-shadow: 0 3px 5px rgba(214, 214, 214, .22);
    background-color: var(--theme-other_background);
    transition: 'opacity 0.2s';
}

.headerBox .box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    height: 100%;
    overflow: visible;
    width: calc(100% - 32px);
    max-width: 1200px;
}

.headerBox .box .logoBox {
    display: inline-flex;
    align-items: center;
    transition: 'opacity 0.2s';
}

.headerBox .box .logoBox .logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.headerBox .box .logoBox .title {
    margin-left: 6px;
    font-size: 20px;
    font-weight: bold;
}

.headerBox .box .navs {
    display: inline-flex;
    align-items: center;
}

.desktopNav {
    display: flex;
    align-items: center;
}

.mobileNav {
    display: none;
    align-items: center;
}

.navButton {
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.desktopMore {
    position: relative;
}

.desktopMoreMenu {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    min-width: 130px;
    padding: 6px 0;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 6px;
    background: var(--theme-other_background);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.desktopMore:hover .desktopMoreMenu,
.desktopMore:focus-within .desktopMoreMenu {
    display: block;
}

.headerBox .box .navs .desktopMoreMenu .item,
.headerBox .box .navs .desktopMoreMenu a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 8px 16px;
    text-align: left;
}

.headerBox .box .navs .iconfont {
    display: none;
}

.headerBox .box .navs .item,
.headerBox .box .navs a {
    padding: 4px 0;
    margin-left: 25px;
    cursor: pointer;
    white-space: nowrap;
}

.headerBox .box .navs .item:hover {
    color: var(--theme-theme);
}

.drawer .navButton {
    width: 100%;
}

.siteFloatTools {
    position: fixed;
    top: 52%;
    right: 14px;
    z-index: 900;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 2px;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity .18s ease, transform .18s ease;
}

.siteFloatTool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-height: 54px;
    padding: 8px 7px;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 8px;
    color: #fff;
    background: var(--float-color);
    box-shadow: 0 7px 18px rgba(27, 34, 45, .18);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    cursor: pointer;
    transition: transform .18s ease, filter .18s ease;
}

.siteFloatTool:nth-child(2) {
    width: 52px;
    min-height: 44px;
    font-size: 12px;
}

.siteFloatTools.scrolling {
    opacity: .48;
    transform: translateY(-50%) translateX(4px);
}

.siteFloatTool:hover {
    color: #fff;
    filter: brightness(.96);
    transform: translateX(-2px);
}

@media screen and (max-width: 768px) {
    .headerBox .box .navs .desktopNav {
        display: none;
    }

    .headerBox .box .navs .mobileNav {
        display: flex;
        align-items: center;
    }

    .headerBox .box .navs .mobileNav .item,
    .headerBox .box .navs .mobileNav a {
        display: inline-flex;
        align-items: center;
        margin-left: 2.6vw;
        padding: 1vw 0;
        font-size: 3.5vw;
        white-space: nowrap;
    }

    .headerBox .box .navs .mobileNav .iconfont {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 3vw;
        padding: 1.5vw;
        color: var(--theme-color);
        background: transparent;
        font-size: 20px;
        font-weight: 700;
    }
}


.headerBox .box .search {
    position: relative;
    flex: 1;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 15px 0 auto;
    background-color: var(--theme-background);
}

.headerBox .box .search:after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: 0 2px 4px var(--theme-theme);
    border-radius: 40px;
    border: 1px solid var(--theme-color);
    opacity: .05;
}

.headerBox .box .search input {
    position: relative;
    z-index: 9;
    flex: 1;
    height: 100%;
    border-radius: 54px;
    border: none;
    font-size: 16px;
    box-sizing: border-box;
    padding-left: 24px;
    color: var(--theme-color);
    background-color: transparent;
}

.headerBox .box .search .btn {
    position: relative;
    z-index: 9;
    width: 64px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.headerBox .box .search .btn .iconfont {
    font-size: 26px;
    font-weight: bold;
    color: var(--theme-theme);
}

.searchHistory {
    display: block !important;
    flex: none !important;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 6px;
    border: 1px solid rgba(111, 42, 224, .12);
    border-radius: 12px;
    background: var(--theme-background, #fff);
    box-shadow: 0 8px 24px rgba(46, 24, 88, .12);
    box-sizing: border-box;
}

.headerBox .box .search > .searchHistory,
.searchBox .search > .searchHistory {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
}

.searchHistory button {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--theme-color);
    text-align: left;
    cursor: pointer;
}

.searchHistory button:hover {
    background: rgba(111, 42, 224, .08);
}


/* 首页 */
.homeBox {
    width: calc(100% - 32px);
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 180px);
    text-align: center;
    padding-top: 68px;
}

.homeBox .box {
    width: 680px;
    margin: auto;
}

.homeBox .logoBox {
    display: inline-flex;
    align-items: center;
}

.homeBox .logoBox .logo {
    width: 76px;
    height: 76px;
    margin: 0 3px;
    object-fit: contain;
}

.homeBox .logoBox .title {
    margin: 0 0 0 3px;
    font-size: 30px;
    font-weight: bold;
}

.homeBox .subTitle {
    padding: 10px 0 10px;
    opacity: .6;
}

.searchBox .search {
    position: relative;
    margin: auto;
    margin-top: 30px;
    background-color: var(--theme-other_background);
    box-shadow: 0 4px 10px rgba(225, 225, 225, 0.3);
    width: 100%;
    height: 54px;
    border-radius: 54px;
    display: flex;
    align-items: center;
}

.searchBox .search input {
    flex: 1;
    height: 100%;
    border-radius: 54px;
    border: none;
    font-size: 18px;
    box-sizing: border-box;
    padding-left: 24px;
    color: var(--theme-color);
    background-color: transparent;
}

.searchBox .search .btn {
    width: 64px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.searchBox .search .btn .iconfont {
    font-size: 26px;
    font-weight: bold;
    color: var(--theme-theme);
}

.footerBox {
    padding: 30px 15px 20px;
}


.footerBox .box {
    text-align: center;
    margin: auto;
    height: 100%;
    overflow: hidden;
    width: calc(100% - 32px);
    max-width: 1200px;
}

.footerBox .box p {
    opacity: .78;
    padding: 4px 0;
}

.home {
    margin-top: 78px;
    text-align: left;
}

.home .block {
    border-radius: 12px;
    background-color: var(--theme-other_background);
    box-shadow: 0 4px 10px rgba(225, 225, 225, 0.3);
    margin-bottom: 20px;
    padding-top: 20px;
}

/*.home .block:last-child{*/
/*    margin-bottom: 0;*/
/*}*/

.home .nav {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--theme-color);
    padding: 0 20px 4px;
    display: flex;
    align-items: center;
}

.home .nav img {
    width: 38px;
    height: 38px;
    margin-right: 10px;
    object-fit: contain;
}

.home .nav .homeMore {
    margin-left: auto;
    padding: 5px 14px;
    border: 1px solid var(--theme-theme);
    border-radius: 18px;
    color: var(--theme-theme);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

body.homeNoticeOpen {
    overflow: hidden;
}

.homeNoticeOverlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(35, 43, 54, .64);
    backdrop-filter: blur(5px);
}

.homeNoticeOverlay.show {
    display: flex;
}

.homeNoticeCard {
    position: relative;
    width: min(520px, 100%);
    overflow: hidden;
    border-radius: 22px;
    color: #242831;
    background: #fff;
    box-shadow: 0 24px 60px rgba(20, 27, 38, .28);
    text-align: center;
}

.homeNoticeClose {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #8b929d;
    background: #f2f4f7;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.homeNoticeUpper {
    padding: 28px 30px 26px;
}

.homeNoticeHeading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 44px;
}

.homeNoticeBadge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #d94b59;
    background: #fff0f2;
    font-size: 22px;
}

.homeNoticeCard h2 {
    margin: 0;
    color: #20242b;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 0;
}

.homeNoticeDescription {
    margin: 7px 0 0;
    color: #626975;
    font-size: 15px;
    line-height: 1.7;
}

.homeNoticeActions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.homeNoticeAction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    box-shadow: 0 8px 18px rgba(40, 78, 180, .14);
}

.homeNoticeAction:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.homeNoticeAction:hover {
    color: #fff;
    filter: brightness(.95);
}

.homeNoticeAction.primary { background: #3158d8; }
.homeNoticeAction.success { background: #1f9d62; }
.homeNoticeAction.warning { background: #e58b20; }
.homeNoticeAction.dark { background: #303743; }

.homeNoticeLower {
    padding: 20px 30px 24px;
    border-top: 1px solid #e6e9ee;
    background: #f8f9fb;
}

.homeNoticeLower p {
    margin: 0 0 12px;
    color: #737b87;
    font-size: 14px;
    line-height: 1.55;
}

.homeNoticeLowerButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(360px, 100%);
    min-height: 50px;
    padding: 10px 20px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #303743;
    box-shadow: 0 8px 18px rgba(48, 55, 67, .16);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
}

.homeNoticeLowerButton:hover {
    color: #fff;
    background: #242a34;
}

@media (max-width: 640px) {
    .homeNoticeOverlay {
        padding: 16px;
    }

    .homeNoticeCard {
        border-radius: 20px;
    }

    .homeNoticeUpper {
        padding: 24px 18px 22px;
    }

    .homeNoticeHeading {
        gap: 8px;
        padding: 0 30px;
    }

    .homeNoticeBadge {
        width: 30px;
        height: 30px;
        font-size: 19px;
    }

    .homeNoticeCard h2 {
        font-size: 21px;
    }

    .homeNoticeDescription {
        font-size: 14px;
    }

    .homeNoticeActions {
        gap: 10px;
        margin-top: 18px;
    }

    .homeNoticeAction {
        min-height: 46px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .homeNoticeLower {
        padding: 18px 18px 20px;
    }
}

.home .content {
    min-height: 200px;
}


.home .content .list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 10px 15px;
}

.home .content .list .item {
    position: relative;
    display: block;
    width: 130.8px;
    margin: 8px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    text-align: center;
    padding: 2px 0;
    transition: all .5s;
}

.home .content .list .item:hover {
    transform: translateY(-5px);
}

.home .content .list .item p {
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home .content .list .item .img {
    position: relative;
    width: 100%;
    height: 192px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.home .content .list .item .img img {
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .content .list .item .img span {
    position: absolute;
    inset: 0;
    font-size: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .content .list .item .img .titleLoading {
    font-size: 16px;
    padding: 0 3%;
    word-break: break-all;
}


.home.homeNO {
    display: flex;
    flex-wrap: wrap;
}

.home.homeNO .block {
    margin: 0 6px 12px;
    width: calc(20% - 12px);
}

.home.homeNO .content .list {
    padding: 10px;
}

.home.homeNO .content .list .item {
    width: 100%;
    margin: 0;
    border-radius: 0;
    text-align: left;
    max-width: 282px;
}

.home.homeNO .content .list .item p {
    margin-top: 0;
    padding: 4px 6px;
}

.home.homeNO .content .list .item:hover {
    transform: translateY(0);
}

.home.homeNO .content .list .item p span {
    color: #c4c7ce;
    margin-right: 6px;
}

.home.homeNO .content .list .item:nth-child(1) p span {
    color: #FE2D46;
}

.home.homeNO .content .list .item:nth-child(2) p span {
    color: #FF6600;
}

.home.homeNO .content .list .item:nth-child(3) p span {
    color: #FAA90E;
}

.rankBody .headBg {
    position: fixed;
}

.rankPage {
    width: 100%;
    min-height: 62vh;
    padding: 28px 18px 56px;
    color: #20242b;
    text-align: left;
}

.rankShell {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #e1e5eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(32, 39, 49, .06);
}

.rankPageHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.rankPageHead h1 {
    margin: 0;
    color: #171a20;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
}

.rankPageHead p {
    margin-top: 3px;
    color: #858b95;
    font-size: 12px;
}

.rankBackHome {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--theme-theme);
    border-radius: 18px;
    color: var(--theme-theme);
    font-size: 14px;
    white-space: nowrap;
}

.rankToolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.rankTabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.rankTabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 17px;
    color: #626975;
    font-size: 14px;
    white-space: nowrap;
}

.rankTabs a.active {
    color: #fff;
    background: var(--theme-theme);
}

.rankTools,
.rankViewSwitch {
    display: flex;
    align-items: center;
}

.rankTools {
    flex: 0 0 auto;
    gap: 10px;
}

.rankPageCount {
    color: #7d838d;
    font-size: 13px;
    white-space: nowrap;
}

.rankViewSwitch {
    gap: 4px;
    padding: 3px;
    border-radius: 22px;
    background: #f2f4f7;
}

.rankViewSwitch button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #737a85;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.rankViewSwitch button.active {
    color: #fff;
    background: var(--theme-theme);
}

.rankGrid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.rankCard {
    min-width: 0;
    overflow: hidden;
    padding: 8px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    color: #262b33;
    background: #fff;
    box-shadow: 0 5px 16px rgba(32, 39, 49, .04);
}

.rankCard:hover {
    color: #262b33;
    border-color: #cfd5dd;
    transform: translateY(-2px);
}

.rankCover {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 6px;
    background: #f3f5f7;
}

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

.rankCover span {
    padding: 12px;
    color: #909399;
    text-align: center;
    word-break: break-all;
}

.rankCardBody {
    padding: 9px 1px 2px;
}

.rankCardTitle {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
}

.rankCardTitle > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--theme-theme);
    background: #eef2ff;
    font-weight: 700;
    font-size: 12px;
}

.rankCardTitle h2 {
    overflow: hidden;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rankDesc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 38px;
    margin: 7px 0 0;
    color: #777e89;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rankHeat {
    margin: 7px 0 0;
    color: #e58b20;
    font-size: 12px;
}

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

.rankGrid.is-list .rankCard {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
}

.rankGrid.is-list .rankCardBody {
    padding: 4px 4px 4px 0;
}

.rankPagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.rankPagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #dfe3e9;
    border-radius: 6px;
    color: #626975;
    background: #fff;
}

.rankPagination a.active {
    border-color: var(--theme-theme);
    color: #fff;
    background: var(--theme-theme);
}

.rankEmpty {
    padding: 80px 20px;
    color: #909399;
    text-align: center;
}

@media (max-width: 1100px) {
    .rankGrid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .rankPage {
        padding: 24px 12px 56px;
    }

    .rankShell {
        padding: 16px;
    }

    .rankPageHead {
        margin-bottom: 18px;
    }

    .rankPageHead h1 {
        font-size: 24px;
    }

    .rankPageHead p {
        font-size: 13px;
    }

    .rankBackHome {
        min-height: 38px;
        padding: 0 14px;
        font-size: 14px;
    }

    .rankToolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .rankTabs {
        gap: 7px;
        width: 100%;
    }

    .rankTabs a {
        min-height: 36px;
        padding: 0 13px;
        font-size: 14px;
    }

    .rankTools {
        justify-content: flex-end;
        width: 100%;
    }

    .rankPageCount {
        margin-right: auto;
        font-size: 13px;
    }

    .rankViewSwitch button {
        width: 36px;
        height: 36px;
    }

    .rankGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .rankCard {
        padding: 8px;
    }

    .rankCardBody {
        padding-top: 10px;
    }

    .rankCardTitle {
        grid-template-columns: 26px minmax(0, 1fr);
        gap: 6px;
    }

    .rankCardTitle > span {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .rankCardTitle h2 {
        font-size: 15px;
    }

    .rankDesc {
        min-height: 40px;
        margin-top: 8px;
        font-size: 12px;
    }

    .rankHeat {
        margin-top: 8px;
        font-size: 12px;
    }

    .rankGrid.is-list {
        grid-template-columns: 1fr;
    }

    .rankGrid.is-list .rankCard {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
    }

    .rankPagination {
        margin-top: 24px;
    }
}


.el-dialog {
    background-color: var(--theme-other_background);
}

.layerBox .vname {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.layerBox .vbtn {
    background-color: var(--theme-theme);
    color: var(--theme-other_background);
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-top: 15px;
    border-radius: 8px;
    cursor: pointer;
}

.layerBox .el-textarea textarea {
    background-color: #f7f7f7;
    border-radius: 8px;
    width: 100%;
    height: 240px;
    margin: 15px auto 0;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: none;
}

.layerBox .el-textarea__inner:focus {
    box-shadow: none;
}



.listBox {
    width: calc(100% - 32px);
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 180px);
    display: flex;
}

.listBox h3 {
    position: relative;
    padding: 30px 0 15px 15px;
}

.listBox h3:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 4px;
    background-color: var(--theme-theme);
    height: 18px;
}

.listBox h3 span {
    color: var(--theme-theme);
}

.listBox .nav {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: var(--theme-color);
    padding: 30px 0 14px;
    display: flex;
    align-items: center;
}

.listBox .nav img {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    object-fit: contain;
}

.searchPromo {
    margin: 20px 15px 0;
    padding-top: 18px;
    border-top: 1px dashed #e5e7eb;
}

.searchPromoLabel {
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

.searchPromoCard {
    min-height: 96px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    border-color: color-mix(in srgb, var(--promo-accent) 22%, #e5e7eb);
    border-radius: 16px;
    background: var(--promo-background);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.searchPromoCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 24, 39, .1);
}

.searchPromoCard img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 12px;
    object-fit: contain;
}

.searchPromoCopy {
    min-width: 0;
    flex: 1;
}

.searchPromoCopy span {
    display: inline-block;
    margin-bottom: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--promo-accent);
    color: #fff;
    font-size: 11px;
}

.searchPromoCopy strong,
.searchPromoCopy p {
    display: block;
    overflow-wrap: anywhere;
}

.searchPromoCopy strong { color: #111827; font-size: 16px; }
.searchPromoCopy p { margin-top: 4px; color: #6b7280; font-size: 13px; }
.searchPromoCard > i { color: var(--promo-accent); font-size: 22px; }

.listBox .searchEmptyBox {
    min-height: 0;
}

.searchEmptyState {
    min-height: 270px;
    margin: 8px 0 0;
    padding: 34px 24px 30px;
    border: 1px solid rgba(109, 40, 217, .1);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,245,255,.9));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.searchEmptyVisual {
    width: 88px;
    height: 88px;
    margin-bottom: 12px;
    border-radius: 50%;
    color: var(--theme-theme);
    background: rgba(109, 40, 217, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchEmptyVisual img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.searchEmptyVisual .iconfont {
    font-size: 42px;
}

.searchEmptyState h4 {
    margin: 0;
    color: #30343b;
    font-size: 18px;
    line-height: 1.5;
}

.searchEmptyState p {
    margin: 7px 0 18px;
    color: #8b9098;
    font-size: 14px;
    line-height: 1.6;
}

.searchEmptyActions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.searchEmptyActions button {
    min-width: 112px;
    height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(109, 40, 217, .22);
    border-radius: 999px;
    color: var(--theme-theme);
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease;
}

.searchEmptyActions button.primary {
    border-color: var(--theme-theme);
    color: #fff;
    background: var(--theme-theme);
}

.searchEmptyActions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(81, 48, 150, .14);
}

.listBox .left {
    width: 0;
    flex: 1;
    overflow: hidden;
}

.listBox .left .list {
    padding: 0 15px;

}

.listBox .left .list .item {
    position: relative;
    display: block;
    padding: 15px 0;
    border-bottom: 1px dashed #e6e6e6;
}

.listBox .left .list .item .title {
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 4px;
    color: var(--theme-theme);
}

.listBox .left .list .item .title p {
    color: var(--theme-color);
}

.listBox .left .list .item .title p span {
    color: var(--theme-theme);
}

.listBox .left .list .item .btns {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.listBox .left .list .item .btns .btn {
    position: relative;
    margin-right: 35px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--theme-color);
}

.listBox .left .list .item .btns .btn .iconfont {
    font-size: 18px;
    margin-right: 5px;
}

.listBox .left .list .item .btns .btn .icon {
    width: 20px;
    margin-right: 5px;
    flex: none;
}

.listBox .left .list .item .type {
    position: relative;
    color: #999;
    flex: none;
    padding-left: 25px;
    margin-top: 10px;
}

.listBox .left .list .item .type::after {
    content: "\e619";
    position: absolute;
    top: -3.4px;
    left: 0;
    font-family: 'iconfont';
    font-size: 20px;
}

.listBox .left .list .item .type span {
    margin-right: 35px;
}

.listBox .left .list .item .type span span {
    color: #FF3F3D;
}

.listBox .left .list .item .type.time::after {
    content: "\ebb1";
}

.listBox .left .list .item .type.cate::after {
    content: "\e65f";
}


.listBox .right {
    width: 300px;
    margin-left: 20px;
}

.listBox .box {
    border-radius: 12px;
    background-color: var(--theme-other_background);
    box-shadow: 0 4px 10px rgba(225, 225, 225, 0.3);
    min-height: calc(100% - 71px);
    padding: 15px;
}

.listBox .right .box {
    height: auto;
    min-height: auto;
}

.listBox .right .list .item {
    width: 100%;
    margin: 0;
    border-radius: 0;
    text-align: left;
}

.listBox .right .list .item p {
    margin-top: 0;
    padding: 4px 6px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.listBox .right .list .item:hover {
    transform: translateY(0);
}

.listBox .right .list .item p span {
    color: #c4c7ce;
    margin-right: 6px;
}

.listBox .right .list .item:nth-child(1) p span {
    color: #FE2D46;
}

.listBox .right .list .item:nth-child(2) p span {
    color: #FF6600;
}

.listBox .right .list .item:nth-child(3) p span {
    color: #FAA90E;
}


.listBox .screen {
    width: 120px;
    margin-right: 20px;
}

.listBox .screen .fixed {
    position: fixed;
    width: 120px;
    z-index: 9;
}

.listBox .screen .box {
    height: auto;
    padding: 5px 15px;
}

.listBox .screen .box a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px dashed #e6e6e6;
}

.listBox .screen .box a:last-child {
    border-bottom: none;
}

.listBox .screen .box a.active {
    font-weight: bold;
    color: var(--theme-theme);
}


.listBox .details {
    padding: 40px 50px;
    min-height: inherit;
}

.details .pic {
    width: 160px;
    height: 212px;
    border-radius: 8px;
    background-color: var(--theme-background);
    margin: 0 auto 30px;
}

.details .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.details .title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--theme-theme);
}

.details .cat {
    display: flex;
    font-size: 15px;
    padding: 8px 0;
}

.details .cat .l {
    flex: none;
    width: 80px;
    opacity: .5;
}

.details .cat .r {
    opacity: 1;
    flex: 1;
    width: 0;
}

.details .cat .r a {
    color: var(--theme-theme);
    word-wrap: break-word;
    word-break: normal;
}

.details .cat .r .icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.details .cat .r span {
    vertical-align: middle;
}

.details .btns {
    display: flex;
    margin-top: 24px;
    justify-content: center;
}

.details .btns .btn {
    position: relative;
    width: 125px;
    height: 38px;
    line-height: 38px;
    border-radius: 38px;
    background-color: var(--theme-other_background);
    margin: 0 15px;
    font-size: 14px;
    color: var(--theme-color);
    text-align: center;
    opacity: .88;
    cursor: pointer;
}

.details .btns .btn .iconfont {
    font-size: 18px;
    margin-right: 5px;
    vertical-align: middle;
}

.details .btns .btn:after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: 0 2px 4px var(--theme-theme);
    border-radius: 38px;
    border: 1px solid var(--theme-color);
    opacity: .1;
}

.details .btns .btn.btnCol {
    background-color: var(--theme-theme);
    color: var(--theme-other_background);
}

.details .btns .btn:hover {
    background-color: var(--theme-theme);
    color: var(--theme-other_background);
}

.searchDetail {
    display: none;
}




.page {
    display: flex;
    padding: 20px 0 15px;
    justify-content: center;
}

.el-pagination.is-background .btn-next.is-disabled,
.el-pagination.is-background .btn-next:disabled,
.el-pagination.is-background .btn-prev.is-disabled,
.el-pagination.is-background .btn-prev:disabled,
.el-pagination.is-background .el-pager li.is-disabled,
.el-pagination.is-background .el-pager li:disabled {
    background-color: var(--theme-other_background);
    color: var(--theme-color);
}

.el-pagination.is-background .btn-next.is-active,
.el-pagination.is-background .btn-prev.is-active,
.el-pagination.is-background .el-pager li.is-active {
    background-color: var(--theme-theme);
    color: var(--theme-other_background);
}

.el-pager li.is-active,
.el-pager li:hover {
    color: var(--theme-theme);
}


.searchList {
    display: none;
}

.loader {
    margin: auto;
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    font-size: 24px;
    background: radial-gradient(circle closest-side, var(--theme-theme) 94%, #0000) right/calc(200% - 1em) 100%;
    animation: l24 1s infinite alternate linear;
}

.loader::before {
    content: " 全网检索中，请稍等...";
    line-height: 1em;
    color: #0000;
    background: inherit;
    background-image: radial-gradient(circle closest-side, #fff 94%, var(--theme-theme));
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes l24 {
    100% {
        background-position: left
    }
}


.listBox .Ebox {
    border-radius: 12px;
    background-color: var(--theme-other_background);
    box-shadow: 0 4px 10px rgba(225, 225, 225, 0.3);
    padding: 15px;
    margin-bottom: 15px;
}

.listBox .left .Ebox .list .item:last-child {
    border-bottom: none;
}

.Qtips {
    text-align: center;
    font-size: 14px;
    color: #999;
}

.Qbtn {
    text-align: center;
    padding-top: 10px;
}

.Qbtn .btn {
    display: inline-block;
    color: #999999;
    cursor: pointer;
}



/*//相关资源*/
.listBox .details.samelistBox {
    padding: 25px 30px;
}

.samelist {
    display: flex;
    flex-wrap: wrap;
}

.samelist .item {
    width: 50%;
    margin: 0;
    border-radius: 0;
    text-align: left;
    padding: 3px 0;
}

.samelist .item p {
    margin-top: 0;
    padding: 4px 6px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.samelist .item:hover {
    transform: translateY(0);
}

.samelist .item p span {
    color: #c4c7ce;
    margin-right: 6px;
}

.samelist .item:nth-child(1) p span {
    color: #FE2D46;
}

.samelist .item:nth-child(2) p span {
    color: #FF6600;
}

.samelist .item:nth-child(3) p span {
    color: #FAA90E;
}


/*全网搜线路切换*/
.source-switch {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
}

.source-switch h3 {
    margin-right: 6px;
}

.switch-items {
    display: flex;
    gap: 18px;
    padding-top: 16px;
}

.switch-items a {
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    transition: all 0.3s;
}

.switch-items a:hover {
    color: var(--theme-theme);
}

.switch-items a.active {
    color: var(--theme-theme);
    font-weight: bold;
}

.switch-items a.active:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 4px;
    margin: auto;
    border-radius: 4px;
    background-color: var(--theme-theme);
}

.vtips {
    font-size: 14px;
    color: #999;
    padding: 10px 0 0;
}

.vtips a {
    font-weight: bold;
    color: var(--theme-theme);
}

.btns2 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 30px;
    line-height: 30px;
    color: var(--theme-other_background);
    background-color: var(--theme-theme);
    font-size: 14px;
    width: 100px;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    right: 0;
}

.dialogUrlBox {
    width: 450px;
    border-radius: 18px;
}

.dialogUrlBox .dialogUrl {
    min-height: 100px;
}

.dialogUrlBox .dialogUrl .title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #000;
}

.dialogUrlBox .dialogUrl .title span {
    color: var(--theme-theme);
}

.dialogUrlBox .dialogUrl .tips {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

.dialogUrlBox .dialogUrl .qrcode {
    margin: 24px auto 0;
    width: 200px;
    height: 200px;
    border: 1.5px solid #e5e6e8;
    border-radius: 4px;
}

.dialogUrlBox .dialogUrl .qrcode canvas {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.dialogUrlBox .dialogUrl .nav {
    margin-top: 15px;
    font-size: 15px;
}

.dialogUrlBox .dialogUrl .nav .item {
    color: #333;
    text-align: center;
    margin-top: 5px;
}

.dialogUrlBox .dialogUrl .nav .item .t {
    font-weight: 600;
}

.dialogUrlBox .dialogUrl .nav .item a {
    color: var(--theme-theme);
}

.dialogUrlBox .dialogUrl .statement {
    margin-top: 24px;
    padding-top: 15px;
    text-align: left;
    font-size: 14px;
    border-top: 1px dashed #e6e6e6;
}

.dialogUrlBox .dialogUrl .statement .content {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.dialogUrlBox .dialogUrl .statement .content p {
    text-align: justify;
    margin-top: 5px;
}

.dialogUrlBox .el-icon {
    font-size: 20px;
}




@font-face {
    font-family: "iconfont";
    /* Project id 4485496 */
    src: url('//at.alicdn.com/t/c/font_4485496_re46ysj9vba.woff2?t=1725422453573') format('woff2'),
        url('//at.alicdn.com/t/c/font_4485496_re46ysj9vba.woff?t=1725422453573') format('woff'),
        url('//at.alicdn.com/t/c/font_4485496_re46ysj9vba.ttf?t=1725422453573') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-shijian_o:before {
    content: "\ebb1";
}

.icon-laiyuan1:before {
    content: "\e619";
}

.icon-laiyuan:before {
    content: "\e651";
}

.icon-yun_o:before {
    content: "\ebb3";
}

.icon-fenxiang1:before {
    content: "\e626";
}

.icon-fangwen:before {
    content: "\e6d5";
}

.icon-xiala:before {
    content: "\e65b";
}

.icon-caidan:before {
    content: "\e65d";
}

.icon-UC:before {
    content: "\e7cb";
}

.icon-xunlei:before {
    content: "\ea50";
}

.icon-baiduwangpan:before {
    content: "\e698";
}

.icon-aliyunpan:before {
    content: "\e615";
}

.icon-fenlei:before {
    content: "\e65f";
}

.icon-tiaozhuan:before {
    content: "\e658";
}

.icon--lianjie:before {
    content: "\e606";
}

.icon-fenxiang:before {
    content: "\e65c";
}

.icon-fuzhi:before {
    content: "\e60f";
}

.icon-date:before {
    content: "\e611";
}

.icon-kuake:before {
    content: "\e67d";
}

.icon-sousuo:before {
    content: "\e623";
}

.dailyBody,
.demandBody {
    background: #f4f6f8;
}

.dailyBody .headBg,
.demandBody .headBg {
    display: block;
    position: fixed;
}

.dailyBody .headerBox .bg,
.demandBody .headerBox .bg {
    opacity: 1 !important;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1px 0 rgba(30, 35, 42, .08);
}

.dailyBody .headerBox .box,
.demandBody .headerBox .box {
    color: #2d333c;
}

.demandPage {
    width: 100%;
    min-height: 62vh;
    padding: 40px 18px 80px;
    color: #20242b;
    text-align: left;
    background: transparent;
}

.demandShell {
    position: relative;
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 28px;
    border: 1px solid #e1e5eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(32, 39, 49, .06);
}

.demandHead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 24px;
    text-align: left;
}

.demandMark {
    position: relative;
    width: 34px;
    height: 34px;
    border: 2px solid #303743;
    border-radius: 6px;
    background: #fff;
}

.demandMark::before,
.demandMark::after,
.demandMark span {
    position: absolute;
    content: '';
    background: #303743;
}

.demandMark::before {
    top: 7px;
    left: 7px;
    width: 16px;
    height: 2px;
}

.demandMark::after {
    top: 14px;
    left: 7px;
    width: 12px;
    height: 2px;
}

.demandMark span {
    right: -4px;
    bottom: -4px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #2ca36d;
}

.demandHead h1 {
    margin: 0;
    color: #171a20;
    font-size: 27px;
    line-height: 1.25;
    letter-spacing: 0;
}

.demandHead p {
    margin: 5px 0 0;
    color: #858b95;
    font-size: 13px;
}

.demandHead p strong {
    color: #3158d8;
}

.demandHead p em {
    color: #277a56;
    font-style: normal;
    font-weight: 700;
}

.demandTabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.demandTabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 15px;
    border: 1px solid #dfe3e9;
    border-radius: 6px;
    color: #5f6671;
    background: #fff;
    font-size: 14px;
}

.demandTabs a.active {
    border-color: #303743;
    color: #fff;
    background: #303743;
}

.demandTabs a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    color: #fff;
    background: #d34b3f;
    font-size: 11px;
}

.demandList {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demandItem {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 66px;
    padding: 12px 16px;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
}

.demandItem > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e99a18;
}

.demandItem.resolved > i {
    background: #2ca36d;
}

.demandItem h2 {
    margin: 0;
    color: #30353e;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.demandItemMeta {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 5px;
}

.demandBadge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.demandBadge.pending {
    color: #a46606;
    background: #fff3d6;
}

.demandBadge.resolved {
    color: #187348;
    background: #dff7e9;
}

.demandItem time {
    color: #9aa0aa;
    font-size: 12px;
}

.demandPagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.demandPagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #dfe3e9;
    border-radius: 5px;
    color: #626975;
    background: #fff;
}

.demandPagination a.active {
    border-color: #303743;
    color: #fff;
    background: #303743;
}

.demandEmpty {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 70px 20px;
    border: 1px dashed #cfd4dc;
    border-radius: 8px;
    color: #8a909a;
    text-align: center;
    background: #fff;
}

.demandEmpty strong {
    color: #444a54;
    font-size: 16px;
}

.demandFloatButton {
    position: absolute;
    right: 28px;
    top: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #3158d8;
    box-shadow: 0 10px 24px rgba(49, 88, 216, .24);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.demandFloatButton:hover {
    background: #294cc0;
}

@media (max-width: 640px) {
    .demandPage {
        padding: 24px 12px 90px;
    }

    .demandHead {
        justify-content: flex-start;
    }

    .demandHead h1 {
        font-size: 24px;
    }

    .demandTabs {
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .demandTabs a {
        flex: 0 0 auto;
    }

    .demandItem {
        grid-template-columns: 10px minmax(0, 1fr);
    }

    .demandItemMeta {
        grid-column: 2;
        align-items: center;
        flex-direction: row;
    }

    .demandFloatButton {
        position: static;
        width: 100%;
        margin: 0 0 16px;
    }
}

.dailyPage {
    width: 100%;
    min-height: 62vh;
    padding: 40px 18px 72px;
    color: #20242b;
    text-align: left;
    background: transparent;
}

.dailyShell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 0;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 24px;
    border: 1px solid #e1e5eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(32, 39, 49, .06);
}

.dailyMain {
    min-width: 0;
    padding: 0 22px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dailyHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dailyHead h1 {
    margin: 0;
    color: #171a20;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: 0;
}

.dailyHead p {
    margin: 6px 0 0;
    color: #747b86;
    font-size: 14px;
}

.dailyLive {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #277a56;
    font-size: 13px;
}

.dailyLive i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ca36d;
    box-shadow: 0 0 0 4px rgba(44, 163, 109, .12);
}

.dailySearch {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    overflow: hidden;
    height: 46px;
    margin-bottom: 14px;
    border: 1px solid #d9dde4;
    border-radius: 8px;
    background: #fff;
}

.dailySearch:focus-within {
    border-color: #575f6d;
    box-shadow: 0 0 0 3px rgba(56, 64, 77, .08);
}

.dailySearch input {
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 15px;
    color: #20242b;
    background: transparent;
}

.dailySearch button {
    border: 0;
    color: #fff;
    background: #303743;
    cursor: pointer;
}

.dailyTabs {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    margin-bottom: 8px;
    border-bottom: 1px solid #e3e6eb;
    scrollbar-width: none;
}

.dailyTabs::-webkit-scrollbar { display: none; }

.dailyTabs a {
    flex: 0 0 auto;
    position: relative;
    padding: 11px 2px;
    color: #747b86;
    font-weight: 600;
}

.dailyTabs a.active {
    color: #20242b;
}

.dailyTabs a.active::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    content: '';
    background: #2ca36d;
}

.dailyList {
    border: 1px solid #e3e6eb;
    border-radius: 8px;
    background: #fff;
}

.dailyItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    padding: 14px 16px;
    border-bottom: 1px solid #eceef2;
}

.dailyItem:last-child {
    border-bottom: 0;
}

.dailyItemBody {
    min-width: 0;
}

.dailyItem h2 {
    overflow: hidden;
    margin: 0 0 9px;
    color: #242831;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dailyStatus {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.dailyStatus strong {
    color: #d34b3f;
    font-weight: 600;
}

.dailyStatus span {
    color: #9298a2;
}

.dailyPanActions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
    max-width: 270px;
}

.dailyPanBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 62px;
    height: 32px;
    border: 1px solid #d9dde4;
    border-radius: 6px;
    color: #4c535f;
    background: #fff;
    cursor: pointer;
}

.dailyPanBtn:hover {
    border-color: #9ca3af;
    background: #f7f8fa;
}

.dailyPanBtn:disabled {
    cursor: wait;
    opacity: .65;
}

.dailyPanBtn.quark { color: #e04a3f; }
.dailyPanBtn.baidu { color: #3158d8; }
.dailyPanBtn.uc { color: #ef7a24; }
.dailyPanBtn.xunlei { color: #287cca; }

.dailyAside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 22px;
    border-left: 1px solid #e3e6eb;
}

.dailyRank {
    padding: 0 0 16px;
    border: 0;
    border-bottom: 1px solid #e3e6eb;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dailyRank:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.dailyRank h2 {
    margin: 0 0 12px;
    color: #242831;
    font-size: 16px;
    letter-spacing: 0;
}

.dailyRank ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dailyRank li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    min-height: 34px;
}

.dailyRank li span {
    color: #9aa0aa;
    font-size: 12px;
    font-weight: 700;
}

.dailyRank li:nth-child(-n+3) span {
    color: #d34b3f;
}

.dailyRank li a {
    overflow: hidden;
    color: #4d535e;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dailyEmpty {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 70px 20px;
    border: 1px dashed #cfd4dc;
    border-radius: 8px;
    color: #8a909a;
    text-align: center;
    background: #fff;
}

.dailyEmpty strong {
    color: #444a54;
    font-size: 16px;
}

@media (max-width: 900px) {
    .dailyShell {
        grid-template-columns: 1fr;
    }

    .dailyAside {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 22px;
        padding: 22px 0 0;
        border-top: 1px solid #e3e6eb;
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .dailyPage {
        padding: 24px 12px 56px;
    }

    .dailyShell,
    .demandShell {
        padding: 16px;
    }

    .dailyMain {
        padding: 0;
    }

    .dailyHead h1 {
        font-size: 24px;
    }

    .dailyItem {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .dailyItem h2 {
        white-space: normal;
    }

    .dailyPanActions {
        justify-content: flex-start;
        max-width: none;
        width: 100%;
    }

    .dailyPanBtn {
        flex: 1 1 62px;
    }

    .dailyAside {
        grid-template-columns: 1fr;
    }
}
