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: #f6f1e9 !important;
    background-attachment: fixed !important;
    word-wrap: break-word;
}

/* 强制覆盖任何可能的背景样式 */
html {
    background: #f6f1e9 !important;
    background-attachment: fixed !important;
}

body {
    background: #f6f1e9 !important;
    background-attachment: fixed !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

.headBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: .3;
    background-repeat: repeat-x;
    background-size: 100% auto;
}

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: none !important;
    background: #ffffff !important;
    backdrop-filter: blur(10px);
    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: 1200px;
}

.headerBox .box .logoBox {
    display: inline-flex;
    align-items: center;
    transition: 'opacity 0.2s';
}

.headerBox .box .logoBox .logo {
    height: 43px;
}

.headerBox .box .logoBox .title {
    margin-left: 18px;
    font-size: 20px;
    font-weight: bold;
}

.headerBox .box .navs {
    display: flex !important;
    align-items: center !important;
}

.headerBox .box .navs .item:hover {
    background-color: rgba(255,255,255,0.35) !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: none !important;
}


.headerBox .box .search {
    position: relative;
    flex: 0 1 400px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 15px;
    background: rgba(245, 245, 245, 0.8);
    backdrop-filter: blur(10px);
}

.headerBox .box .search:after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: none !important;
    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);
}


/* 首页 */
.homeBox {
    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 {
    height: 68px;
    margin: 0 8px;
}

.homeBox .logoBox .title {
    margin: 0 8px;
    font-size: 30px;
    font-weight: bold;
}

.homeBox .subTitle {
    padding: 10px 0 10px;
    opacity: .6;
}

/* 自定义文字样式 */
.customText {
    margin: 20px auto !important;
    padding: 15px !important;
    background: transparent !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    max-width: 450px !important;
    text-align: left !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.customLine {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    font-weight: 500 !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;
    cursor: default !important;
    text-align: left !important;
    width: 100% !important;
}

.customLine .emoji {
    display: inline-block !important;
    width: 30px !important;
    text-align: left !important;
    margin-right: 10px !important;
    flex-shrink: 0 !important;
    font-size: 16px !important;
}

.customLine .text {
    flex: 1 !important;
    text-align: left !important;
    display: block !important;
}

.customLine:hover {
    transform: translateY(-1px);
    text-shadow: none !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .customText {
        margin: 15px auto !important;
        padding: 12px !important;
        max-width: 95% !important;
    }
    
    .customLine {
        font-size: 14px !important;
        margin: 4px 0 !important;
        justify-content: flex-start !important;
    }
    
    .customLine .emoji {
        width: 25px !important;
        margin-right: 8px !important;
    }
}

.searchBox .search {
    position: relative;
    margin: auto;
    margin-top: -30px;
    background: transparent !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
    width: 100%;
    height: 54px;
    border-radius: 54px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.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: 1200px;
}

.footerBox .box p {
    opacity: .78;
    padding: 4px 0;
}

.home {
    margin-top: 78px;
    text-align: left;
}

.home .block {
    border-radius: 12px;
    background: transparent !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
    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: 24px;
    height: 24px;
    margin-right: 12px;
}

.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: #ffffff;
}

.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;
}


.el-dialog {
    background-color: var(--theme-other_background);
}


.listBox {
    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: 22px;
    height: 22px;
    margin-right: 12px;
}

.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;
}

.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: transparent !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
    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;
}

.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: none !important;
    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 {
    position: relative;
    z-index: 999;
    margin-top: 0px;
    padding-top: 0px;
}

.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: transparent !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
    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);
}

























/* 隐藏搜索结果提示文字 */
.listBox .left h3 {
    display: none !important;
}

.listBox .left .Qbtn {
    display: none !important;
}

/* 本地搜索网盘分组样式 - 简化版 */
.local-netdisk-section {
    margin-bottom: 0;
}

.local-section-list {
    padding: 0;
}

.local-section-list .item {
    border: none !important;
    border-bottom: none !important;
}

.netdisk-items {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
}

.netdisk-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    color: var(--theme-color);
    transition: all 0.3s ease;
    min-width: 80px;
    height: 36px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    margin-right: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.netdisk-btn:hover {
    background-color: var(--theme-theme);
    color: white;
    border-color: var(--theme-theme);
    transform: translateY(-1px);
    box-shadow: none;
}

.netdisk-btn.active {
    background-color: var(--theme-theme);
    color: white;
    border-color: var(--theme-theme);
    box-shadow: none;
}











/* 桌面端响应式优化 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .netdisk-items {
        gap: 8px;
    }
    
    .netdisk-btn {
        padding: 8px 16px;
        min-width: 90px;
        height: 36px;
    }
    
    .netdisk-btn span {
        font-size: 13px;
    }
}

/* 资源切换按钮样式 */
#resource-switch-button {
    margin: 20px 0 !important;
    text-align: center !important;
    clear: both !important;
    position: relative !important;
    z-index: 1 !important;
}

#resource-switch-button button {
    background: linear-gradient(135deg, #ff4757, #ff3742) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

#resource-switch-button button:hover {
    transform: translateY(-2px) !important;
    box-shadow: none !important;
}

/* 确保搜索源切换按钮不被遮挡 */
.source-switch {
    position: relative !important;
    z-index: 10 !important;
    margin-bottom: 10px !important;
}

.switch-items {
    position: relative !important;
    z-index: 10 !important;
}



.netdisk-items {
    position: relative !important;
    z-index: 5 !important;
}

/* 响应式设计 - 移动端优化 */
@media (max-width: 768px) {
    #resource-switch-button {
        margin: 15px 0 !important;
    }
    
    #resource-switch-button button {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

.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: 520px;
    max-width: 92vw;
    border-radius: 18px;
}

/* 确保弹窗始终在最顶层，不被其他元素遮挡 - 使用极高的z-index */
.dialogUrlBox.el-dialog {
    z-index: 2147483647 !important;
}

.el-overlay {
    z-index: 2147483646 !important;
}

/* Element Plus 弹窗相关的所有可能的选择器 */
.el-dialog__wrapper {
    z-index: 2147483647 !important;
}

.el-dialog {
    z-index: 2147483647 !important;
}

.dialogUrlBox .dialogUrl {
    min-height: 100px;
}

.dialogUrlBox .dialogUrl__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 160px;
}

.dialogUrlBox .dialogUrl__spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
    border-top-color: var(--theme-theme);
    animation: dialogSpin 0.9s linear infinite;
}

.dialogUrlBox .dialogUrl__loading-text {
    font-size: 14px;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.dialogUrlBox .dialogUrl__loading-emoji {
    display: inline-block;
    animation: dialogSpin 1s linear infinite;
}

@keyframes dialogSpin {
    to {
        transform: rotate(360deg);
    }
}

.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__link {
    color: var(--theme-theme);
    word-break: break-all;
}

.dialogUrlBox .dialogUrl__link--disabled {
    opacity: 0.6;
    pointer-events: none;
}

.dialogUrlBox .dialogUrl .statement {
    margin-top: 24px;
    padding-top: 15px;
    text-align: left;
    font-size: 14px;
}

.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";
}

/* 强制移除所有阴影效果 - 最高优先级 */
* {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    text-shadow: none !important;
}

*:before, *:after {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    text-shadow: none !important;
}

/* 特别针对可能有阴影的元素 */
.headerBox, .headerBox *, .searchBox, .searchBox *, .homeBox, .homeBox *, 
.listBox, .listBox *, .item, .nav, .box, .block, .card, .panel,
input, button, .btn, img, div, span, a, p {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    text-shadow: none !important;
}

/* Home page layout (moved from home.html) */
.v2-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(420px 420px at 6% 12%, rgba(61, 220, 151, 0.25), transparent 65%),
        radial-gradient(380px 380px at 92% 18%, rgba(32, 165, 112, 0.2), transparent 60%),
        radial-gradient(520px 520px at 85% 78%, rgba(15, 88, 62, 0.35), transparent 68%),
        linear-gradient(180deg, rgba(9, 13, 12, 0.9), rgba(8, 12, 10, 0.95));
    filter: saturate(1.2);
}
    .v2-shell {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 24px auto 80px;
        padding: 0 24px 40px;
    }

    .v2-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .v2-card {
        background: var(--v2-surface);
        border: 1px solid var(--v2-border);
        border-radius: 18px;
        padding: 20px 22px;
        box-shadow: var(--v2-shadow);
        backdrop-filter: blur(12px);
    }

    .v2-hero-card {
        position: relative;
        overflow: hidden;
    }

    .v2-theme-toggle {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        border-radius: 999px;
        border: 1px solid var(--v2-border);
        background: rgba(15, 27, 22, 0.85);
        color: var(--v2-text);
        display: grid;
        place-items: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .v2-theme-toggle:hover {
        border-color: var(--v2-border-strong);
        color: var(--v2-accent);
    }

    .theme-icon {
        font-size: 16px;
        line-height: 1;
    }

    .theme-icon--light {
        display: none;
    }

    html[data-theme="light"] .v2-theme-toggle {
        background: rgba(255, 255, 255, 0.9);
        color: var(--v2-text);
    }

    html[data-theme="light"] .theme-icon--dark {
        display: none;
    }

    html[data-theme="light"] .theme-icon--light {
        display: inline;
    }

    .v2-hero-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 0 0 6px;
        min-width: 0;
        max-width: 100%;
    }

    .v2-hero-site {
        color: var(--v2-text);
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .v2-hero-seo {
        color: var(--v2-text-soft);
        font-weight: 600;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .v2-hero-sub {
        font-size: 13px;
        color: var(--v2-text-muted);
        margin-bottom: 18px;
    }

    .v2-searchbar {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(12, 20, 16, 0.9);
        border: 1px solid rgba(61, 220, 151, 0.35);
    }

    .v2-searchbar input {
        flex: 1;
        background: transparent;
        background-color: transparent !important;
        border: none;
        outline: none;
        color: var(--v2-text);
        font-size: 14px;
        box-shadow: none !important;
    }

    /* Remove browser autofill blue/yellow background in the hero search input */
    .v2-searchbar input:-webkit-autofill,
    .v2-searchbar input:-webkit-autofill:hover,
    .v2-searchbar input:-webkit-autofill:focus,
    .v2-searchbar input:-webkit-autofill:active {
        -webkit-text-fill-color: var(--v2-text) !important;
        -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
        box-shadow: 0 0 0 1000px transparent inset !important;
        background-color: transparent !important;
        caret-color: var(--v2-text);
        transition: background-color 99999s ease-out 0s;
    }

    .v2-searchbar .search-btn {
        background: linear-gradient(135deg, var(--v2-accent), var(--v2-accent-2));
        border: none;
        color: #062015;
        font-weight: 700;
        padding: 8px 18px;
        border-radius: 999px;
        cursor: pointer;
        letter-spacing: 0.3px;
    }

    .v2-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
        align-items: center;
    }

    .v2-tags .tag-label {
        font-size: 12px;
        color: var(--v2-text-muted);
        margin-right: 4px;
    }

    .v2-tag {
        padding: 6px 12px;
        border-radius: 999px;
        border: 1px solid rgba(61, 220, 151, 0.25);
        color: var(--v2-text-soft);
        background: rgba(20, 32, 27, 0.8);
        font-size: 12px;
        transition: all 0.2s ease;
    }

    html[data-theme="light"] .v2-searchbar {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(22, 120, 86, 0.25);
        box-shadow: 0 6px 18px rgba(22, 120, 86, 0.08);
    }

    html[data-theme="light"] .v2-searchbar input {
        color: var(--v2-text);
        background-color: #ffffff !important;
    }

    html[data-theme="light"] .v2-searchbar input:-webkit-autofill,
    html[data-theme="light"] .v2-searchbar input:-webkit-autofill:hover,
    html[data-theme="light"] .v2-searchbar input:-webkit-autofill:focus,
    html[data-theme="light"] .v2-searchbar input:-webkit-autofill:active {
        -webkit-text-fill-color: var(--v2-text) !important;
        -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
        box-shadow: 0 0 0 1000px #ffffff inset !important;
        background-color: #ffffff !important;
    }

    html[data-theme="light"] .v2-searchbar input::placeholder {
        color: rgba(50, 81, 70, 0.65);
    }

    html[data-theme="light"] .v2-searchbar .search-btn {
        background: linear-gradient(135deg, #7fd7b3, #61c7a1);
        color: #0c2a1e;
        box-shadow: 0 6px 14px rgba(22, 120, 86, 0.18);
    }

    html[data-theme="light"] .v2-tag {
        background: rgba(22, 120, 86, 0.12);
        border-color: rgba(22, 120, 86, 0.25);
        color: var(--v2-text-soft);
    }

    .v2-tag:hover {
        border-color: rgba(61, 220, 151, 0.6);
        color: var(--v2-text);
    }

    .v2-hero-note {
        margin-top: 14px;
        font-size: 12px;
        color: var(--v2-text-muted);
    }

    .v2-section {
        margin-top: 28px;
    }

    .v2-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
    }

    .v2-section-title {
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .v2-section-sub {
        font-size: 12px;
        color: var(--v2-text-muted);
        margin-left: 8px;
    }

    .v2-seo-text {
        font-size: 13px;
        color: var(--v2-text-muted);
        line-height: 1.7;
        margin: 6px 0 0;
    }

    .v2-seo-list {
        margin: 8px 0 0;
        padding-left: 18px;
        color: var(--v2-text-muted);
        font-size: 12px;
        line-height: 1.7;
    }

    .v2-seo-links {
        margin-top: 8px;
        font-size: 12px;
        color: var(--v2-text-muted);
    }

    .v2-seo-links a {
        color: var(--v2-text-soft);
    }

    .v2-seo-links .sep {
        margin: 0 6px;
        color: var(--v2-text-muted);
    }

    .v2-tab-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }

    .v2-tab {
        padding: 6px 14px;
        border-radius: 999px;
        border: 1px solid rgba(61, 220, 151, 0.18);
        color: var(--v2-text-muted);
        font-size: 12px;
        cursor: pointer;
        user-select: none;
    }

    .v2-tab.active {
        background: rgba(61, 220, 151, 0.18);
        color: var(--v2-text);
        border-color: rgba(61, 220, 151, 0.5);
    }

    .v2-rank-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .v2-rank-grid.is-single {
        grid-template-columns: minmax(0, 1fr);
    }

    .v2-rank-grid.is-single .v2-rank-card {
        width: 100%;
    }

    .rank-empty {
        font-size: 12px;
        color: var(--v2-text-muted);
        padding: 8px 6px;
    }

    .v2-rank-card {
        background: var(--v2-surface-strong);
        border: 1px solid rgba(61, 220, 151, 0.2);
        border-radius: 16px;
        padding: 16px;
        box-shadow: var(--v2-shadow);
    }

    .rank-card-head {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

    .rank-badge {
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(61, 220, 151, 0.15);
        color: var(--v2-accent);
    }

    .rank-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--v2-text);
        flex: 1;
    }

    .rank-date {
        font-size: 11px;
        color: var(--v2-text-muted);
    }

    .rank-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 6px;
        border-radius: 10px;
        color: var(--v2-text-soft);
        transition: all 0.2s ease;
    }

    .rank-item:hover {
        background: rgba(61, 220, 151, 0.08);
        color: var(--v2-text);
    }

    .rank-no {
        width: 22px;
        height: 22px;
        border-radius: 8px;
        display: grid;
        place-items: center;
        font-size: 12px;
        font-weight: 700;
        background: rgba(61, 220, 151, 0.18);
        color: var(--v2-accent);
        flex: 0 0 22px;
    }

    .rank-cover {
        width: 60px;
        height: 84px;
        border-radius: 10px;
        overflow: hidden;
        background: rgba(10, 18, 14, 0.8);
        border: 1px solid rgba(61, 220, 151, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--v2-text-muted);
        font-size: 11px;
        flex: 0 0 60px;
    }

    .rank-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .rank-text {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .rank-name {
        font-size: 13px;
        color: var(--v2-text);
        display: flex;
        align-items: baseline;
        gap: 6px;
        min-width: 0;
    }

    .rank-title-text {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 80px);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .rank-episode {
        flex: 0 0 auto;
        font-size: 12px;
        color: var(--v2-text-muted);
        white-space: nowrap;
    }

    .rank-actors {
        font-size: 11px;
        color: var(--v2-text-muted);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .rank-meta-sep::before {
        content: "\00a0\00a0";
    }

    .rank-desc {
        font-size: 13px;
        color: var(--v2-text-muted);
        line-height: 1.5;
        display: block;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    @media screen and (min-width: 769px) {
        .v2-rank-card {
            overflow: hidden;
        }

        .rank-item {
            padding-right: 0;
            margin-right: -22px;
        }

        .rank-text {
            padding-right: 22px;
            margin-right: -22px;
        }
    }

    @media screen and (max-width: 980px) {
        .v2-hero-grid {
            grid-template-columns: 1fr;
        }

        .v2-rank-grid {
            grid-template-columns: 1fr;
        }

        .rank-cover {
            width: 48px;
            height: 64px;
            flex: 0 0 48px;
        }
    }

    @media screen and (max-width: 768px) {
        .v2-hero-card {
            padding: 16px 14px 14px;
            border-radius: 16px;
        }

        .v2-hero-title {
            font-size: 18px;
            gap: 6px;
        }

        .v2-hero-seo {
            color: var(--v2-accent);
        }

        .v2-hero-sub {
            font-size: 12px;
            margin-bottom: 12px;
        }

        .v2-searchbar {
            gap: 8px;
            padding: 10px 12px;
        }

        .v2-searchbar input {
            font-size: 12px;
        }

        .v2-searchbar .search-btn {
            padding: 6px 12px;
            font-size: 12px;
            border-radius: 14px;
        }

        .v2-tags {
            gap: 6px;
        }

        .v2-tags .tag-label {
            font-size: 11px;
        }

        .v2-tag {
            font-size: 11px;
            padding: 4px 10px;
        }

        .v2-hero-note {
            margin-top: 8px;
            font-size: 11px;
            line-height: 1.5;
        }

        .v2-theme-toggle {
            top: 10px;
            right: 10px;
            width: 34px;
            height: 34px;
        }

        .theme-icon {
            font-size: 14px;
        }

        .v2-tab-row {
            flex-wrap: nowrap;
            gap: 6px;
        }

        .v2-tab {
            flex: 1 1 0;
            min-width: 0;
            padding: 4px 6px;
            font-size: clamp(10px, 2.6vw, 12px);
            white-space: nowrap;
            text-align: center;
        }

        .rank-desc {
            font-size: 12px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            white-space: normal;
        }
    }

    /* 隐藏旧头部 */
    .headerBox,
    .headerKox {
        display: none !important;
    }

    .v2-results {
        margin-top: 28px;
    }

    .v2-result-grid {
        display: grid;
        gap: 14px;
    }

    .v2-result-card {
        display: grid;
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
        border-radius: 16px;
        background: var(--v2-surface);
        border: 1px solid var(--v2-border);
        box-shadow: var(--v2-shadow);
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .v2-result-card:hover {
        transform: translateY(-2px);
        border-color: var(--v2-border-strong);
    }

    .v2-result-cover {
        width: 90px;
        height: 120px;
        border-radius: 12px;
        overflow: hidden;
        background: rgba(10, 18, 14, 0.8);
        border: 1px solid rgba(61, 220, 151, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--v2-text-muted);
        font-size: 11px;
        flex: 0 0 90px;
    }

    .v2-result-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .v2-result-body {
        display: flex;
        flex-direction: column;
        gap: 6px;
        min-width: 0;
    }

    .v2-result-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--v2-text);
    }

    .v2-result-desc {
        font-size: 12px;
        color: var(--v2-text-muted);
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .v2-result-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 11px;
        color: var(--v2-text-soft);
    }

    .v2-result-meta .status-tag {
        padding: 2px 8px;
        border-radius: 999px;
        font-size: 11px;
        line-height: 1.2;
        background: rgba(15, 27, 22, 0.8);
        border: 1px solid rgba(61, 220, 151, 0.35);
        color: var(--v2-text);
    }

    .v2-result-meta .status-tag.ok {
        background: rgba(16, 185, 129, 0.18);
        border-color: rgba(16, 185, 129, 0.5);
        color: #b7f6d8;
    }

    .v2-result-meta .status-tag.bad {
        background: rgba(239, 68, 68, 0.18);
        border-color: rgba(239, 68, 68, 0.5);
        color: #fecaca;
    }

    html[data-theme="light"] .v2-result-meta .status-tag {
        background: rgba(22, 120, 86, 0.1);
        border-color: rgba(22, 120, 86, 0.25);
        color: #0d1a13;
    }

    html[data-theme="light"] .v2-result-meta .status-tag.ok {
        background: rgba(16, 185, 129, 0.16);
        border-color: rgba(16, 185, 129, 0.4);
        color: #0b3b2a;
    }

    html[data-theme="light"] .v2-result-meta .status-tag.bad {
        background: rgba(239, 68, 68, 0.16);
        border-color: rgba(239, 68, 68, 0.4);
        color: #6b1a1a;
    }

    .v2-result-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 6px;
    }

    .v2-result-btn {
        border: 1px solid rgba(61, 220, 151, 0.25);
        background: rgba(20, 32, 27, 0.8);
        color: var(--v2-text-soft);
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s ease;
    }

    html[data-theme="light"] .v2-result-btn {
        background: rgba(22, 120, 86, 0.12);
        border-color: rgba(22, 120, 86, 0.25);
        color: var(--v2-text-soft);
    }

    .v2-result-btn:hover {
        border-color: rgba(61, 220, 151, 0.6);
        color: var(--v2-text);
    }

    .v2-result-btn.primary {
        background: rgba(61, 220, 151, 0.18);
        border-color: rgba(61, 220, 151, 0.5);
        color: var(--v2-text);
    }

    .v2-result-btn.ghost {
        background: transparent;
    }

    .v2-link-dialog {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: grid;
        place-items: center;
        padding: 16px;
    }

    .v2-link-dialog__mask {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(2px);
    }

    .v2-link-dialog__panel {
        position: relative;
        z-index: 1;
        width: min(520px, 92vw);
        background: var(--v2-surface-strong);
        border: 1px solid var(--v2-border);
        border-radius: 16px;
        padding: 18px;
        box-shadow: var(--v2-shadow);
    }

    .v2-link-dialog__title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--v2-text);
    }

    .v2-link-dialog__desc {
        font-size: 12px;
        color: var(--v2-text-muted);
        margin-bottom: 10px;
    }

    .v2-link-dialog__input input {
        width: 100%;
        border-radius: 10px;
        border: 1px solid var(--v2-border);
        background: rgba(12, 20, 16, 0.9);
        color: var(--v2-text);
        padding: 10px 12px;
        font-size: 12px;
        outline: none;
    }

    html[data-theme="light"] .v2-link-dialog__input input {
        background: #fff;
    }

    .v2-link-dialog__error {
        margin-top: 8px;
        font-size: 12px;
        color: #e11d48;
    }

    .v2-link-dialog__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
    }

    .v2-result-empty,
    .v2-result-loading {
        text-align: center;
        font-size: 12px;
        color: var(--v2-text-muted);
        padding: 12px;
    }
    .v2-result-loading {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    .v2-loading-emoji {
        display: inline-block;
        font-size: 14px;
        line-height: 1;
        animation: v2-emoji-spin 1.2s linear infinite;
    }
    .v2-loading-text {
        font-size: 12px;
        color: var(--v2-text-muted);
    }
    .v2-loading-dots {
        display: inline-flex;
        gap: 3px;
        align-items: center;
    }
    .v2-loading-dots i {
        display: inline-block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--v2-text-muted);
        animation: v2-loading-dot 1.2s ease-in-out infinite;
        opacity: 0.3;
    }
    .v2-loading-dots i:nth-child(2) {
        animation-delay: 0.2s;
    }
    .v2-loading-dots i:nth-child(3) {
        animation-delay: 0.4s;
    }
    @keyframes v2-emoji-spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    @keyframes v2-loading-dot {
        0%, 80%, 100% { opacity: 0.3; transform: scale(0.7); }
        40% { opacity: 1; transform: scale(1); }
    }

    @media screen and (max-width: 768px) {
        .v2-result-card {
            grid-template-columns: 70px minmax(0, 1fr);
            gap: 12px;
        }

        .v2-result-cover {
            width: 70px;
            height: 90px;
            flex: 0 0 70px;
        }
    }

    .v2-netdisk {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .v2-netdisk-label {
        font-size: 12px;
        color: var(--v2-text-muted);
        margin-right: 4px;
    }

    .v2-netdisk-btn {
        border: 1px solid rgba(61, 220, 151, 0.25);
        background: rgba(20, 32, 27, 0.8);
        color: var(--v2-text-soft);
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s ease;
    }

    .v2-netdisk-icon {
        width: 16px;
        height: 16px;
        border-radius: 4px;
        object-fit: cover;
        flex: 0 0 16px;
    }

    html[data-theme="light"] .v2-netdisk-btn {
        background: rgba(22, 120, 86, 0.12);
        border-color: rgba(22, 120, 86, 0.25);
        color: var(--v2-text-soft);
    }

    .v2-netdisk-btn:hover {
        border-color: rgba(61, 220, 151, 0.6);
        color: var(--v2-text);
    }

    .v2-netdisk-btn.active {
        background: rgba(61, 220, 151, 0.18);
        border-color: rgba(61, 220, 151, 0.5);
        color: var(--v2-text);
    }

.v2-netdisk-count {
    background: rgba(61, 220, 151, 0.2);
    color: var(--v2-text);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
}

/* 强制弹窗不透明（获取链接二维码弹窗） */
.dialogUrlBox.el-dialog,
.dialogUrlBox .el-dialog {
    background: rgba(18, 26, 22, 0.96) !important;
    border: 1px solid var(--v2-border) !important;
    box-shadow: var(--v2-shadow) !important;
}

.dialogUrlBox .el-dialog__body {
    color: var(--v2-text);
}

html[data-theme="light"] .dialogUrlBox.el-dialog,
html[data-theme="light"] .dialogUrlBox .el-dialog {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(22, 120, 86, 0.25) !important;
    box-shadow: 0 12px 24px rgba(10, 30, 22, 0.12) !important;
}
