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 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 1;
    background: linear-gradient(180deg, #E3F2FD 0%, #F5F7FB 50%, #FFFFFF 100%);
    background-size: 100% auto;
    will-change: transform;
    transform: translateZ(0);
}

/* 添加装饰性背景元素 */
.headBg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.headBg::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(129, 199, 132, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

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;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.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: hidden;
    width: 1200px;
}

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

.headerBox .box .logoBox .logo {
    height: 43px;
}

.headerBox .box .logoBox .title {
    margin-left: 18px;
    font-size: 20px;
    font-weight: bold;
    color: #000000 !important;
}

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

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

.headerBox .box .navs .item,
.headerBox .box .navs a {
    padding: 8px 16px;
    margin-left: 25px;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 14px;
}

.headerBox .box .navs .item:hover {
    color: #1976D2;
    background-color: rgba(25, 118, 210, 0.08);
    transform: translateY(-1px);
}


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

/* 隐藏搜索结果页和详情页顶部导航栏的搜索框 */
.listPageHeader .headerBox .search,
.searchDetail .headerBox .search {
    display: none !important;
}

/* 通过 body 类隐藏顶部搜索框 */
body.hideTopSearch .headerBox .search {
    display: none !important;
}


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

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

.homeBox .logoBox {
    display: inline-flex;
    align-items: center;
    opacity: 1 !important;
}

.homeBox .logoBox .logo {
    height: 68px;
    margin: 0 8px;
}

.homeBox .logoBox .title {
    margin: 0 8px;
    font-size: 30px;
    font-weight: bold;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.homeBox .subTitle {
    padding: 10px 0 10px;
    opacity: .8;
    color: #546E7A;
    font-weight: 400;
}

.site-slogan {
    font-size: 16px;
    color: #78909C;
    opacity: 1;
    text-align: center;
    line-height: 1.8;
    padding: 6px 16px 16px;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .site-slogan {
        font-size: 14px;
        padding: 4px 12px 14px;
    }
}

/* 搜索结果页顶部 - 紧凑版主页头部 */
.listPageHeader {
    min-height: unset !important;
    padding-top: 80px !important;
    padding-bottom: 24px !important;
    will-change: transform;
    transform: translateZ(0);
}
.listPageHeader .box {
    padding-top: 0;
}
.listPageHeader .logoBox {
    margin-bottom: 0;
}
.listPageHeader .subTitle {
    padding: 10px 0 6px;
    opacity: .6;
}
.listPageHeader .site-slogan {
    font-size: 15px;
    color: var(--theme-font_color);
    opacity: 0.75;
    text-align: center;
    line-height: 1.6;
    padding: 4px 16px 10px;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 500;
}
@media (max-width: 768px) {
    .listPageHeader {
        padding-top: 76px !important;
        padding-bottom: 16px !important;
    }
    .listPageHeader .site-slogan {
        max-width: 100% !important;
    }
}

.searchBox .search {
    position: relative;
    margin: auto;
    margin-top: 30px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(25, 118, 210, 0.1);
    width: 100%;
    max-width: 680px;
    height: 54px;
    border-radius: 54px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

.searchBox .search:hover {
    box-shadow: 0 6px 25px rgba(25, 118, 210, 0.2), 0 2px 6px rgba(0, 0, 0, 0.12);
    border-color: rgba(25, 118, 210, 0.3);
}

.searchBox .search:focus-within {
    box-shadow: 0 6px 25px rgba(25, 118, 210, 0.25), 0 2px 6px rgba(0, 0, 0, 0.12);
    border-color: rgba(25, 118, 210, 0.4);
    transform: translateY(-1px);
}

.searchBox .search input {
    flex: 1;
    height: 100%;
    border-radius: 54px;
    border: none;
    font-size: 18px;
    box-sizing: border-box;
    padding-left: 24px;
    color: #333333;
    background-color: transparent;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.searchBox .search input::placeholder {
    color: #B0BEC5;
    font-weight: 400;
}

.searchBox .search input:focus {
    outline: none;
}

.searchBox .search .btn {
    width: 64px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 54px 54px 0;
}

.searchBox .search .btn:hover {
    background: linear-gradient(135deg, #42A5F5 0%, #64B5F6 100%);
}

.searchBox .search .btn .iconfont {
    font-size: 26px;
    font-weight: bold;
    color: #1976D2;
    transition: all 0.3s ease;
}

.searchBox .search .btn:hover .iconfont {
    color: #FFFFFF;
    transform: scale(1.1);
}

.footerBox {
    padding: 30px 15px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(243, 247, 252, 0.5) 100%);
}


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

.footerBox .box p {
    opacity: .78;
    padding: 4px 0;
    color: #78909C;
    font-size: 14px;
}

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

.home .block {
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(25, 118, 210, 0.05);
    margin-bottom: 24px;
    padding-top: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home .block:hover {
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

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

.home .nav {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #1976D2;
    padding: 0 20px 4px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
}

.home .nav img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.2));
}

.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: 12px;
    overflow: hidden;
    text-align: center;
    padding: 2px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(25, 118, 210, 0.05);
}

.home .content .list .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(25, 118, 210, 0.2);
}

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


.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: 1200px;
    margin: -20px auto 0;
    min-height: calc(100vh - 180px);
    display: flex;
    position: relative;
    z-index: 10;
}

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

.listBox h3:after {
    display: none !important;
}

.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: 15px;
}

.listBox .left .list .item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
    border-bottom: 1px solid #e0e8e0;
    gap: 8px;
    transition: all 0.3s ease;
}

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

.listBox .left .list .item:hover {
    background-color: rgba(76, 175, 80, 0.05);
}

.listBox .left .list .item .title {
    font-size: 16px;
    font-weight: bold;
    color: var(--theme-theme);
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.listBox .left .list .item .item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.listBox .left .list .item .type {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
    color: #999;
    padding-left: 0;
    margin-top: 0;
}

.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: #f0f8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: calc(100% - 71px);
    padding: 0;
}

.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 {
    display: none;
}


.listBox .Ebox {
    padding: 15px;
    margin-bottom: 0;
    background-color: #f0f8f0;
    border-radius: 12px;
}

.listBox .left .Ebox .list .item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
    border-bottom: 1px solid #e0e8e0;
    gap: 8px;
    transition: all 0.3s ease;
}

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

.listBox .left .Ebox .list .item:hover {
    background-color: rgba(76, 175, 80, 0.05);
}

.listBox .left .Ebox .list .item .title {
    font-size: 16px;
    font-weight: bold;
    color: var(--theme-theme);
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.listBox .left .Ebox .list .item .item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.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;
    width: 100%;
    margin: 0;
}

.source-switch h3 {
    margin-right: 6px;
    padding: 0 !important;
    position: static !important;
}

.source-switch h3:after {
    display: none !important;
}

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

.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: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 32px;
    padding: 0 14px;
    color: var(--theme-other_background);
    background-color: var(--theme-theme);
    font-size: 13px;
    cursor: pointer;
    position: static;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btns2:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

/* 获取网盘链接弹窗样式 */
.panDialog {
    width: 460px;
    border-radius: 16px;
    overflow: hidden;
}

.panDialog .el-dialog__header {
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}
.panDialog .el-dialog__title {
    display: none;
}

/* 自定义关闭按钮 */
.pan-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: #ff4d4f;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 6px rgba(255,77,79,0.4);
}
.pan-close-btn:hover {
    background: #d9363e;
    box-shadow: 0 2px 10px rgba(255,77,79,0.6);
}

/* 手机端自适应 */
@media (max-width: 520px) {
    .panDialog {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        margin: 0 16px !important;
        top: 100px !important;
        transform: none !important;
        border-radius: 12px;
    }
    .panDialog .pan-modal-content {
        padding: 44px 16px 20px;
    }
    .pan-close-btn {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
    .panDialog .pan-action-btns {
        flex-direction: column;
        gap: 10px;
    }
    .panDialog .pan-btn {
        height: 48px;
        font-size: 16px;
    }
}

.panDialog .el-dialog__body {
    padding: 0;
}

.panDialog .pan-modal-content {
    position: relative;
    padding: 32px 28px 28px;
}

/* 加载状态 */
.panDialog .pan-loading {
    text-align: center;
    padding: 48px 20px 40px;
}

.panDialog .pan-loading-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.panDialog .pan-loading .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid var(--theme-theme);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 加载中脉冲动画 */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.panDialog .pan-loading-title {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.panDialog .pan-loading-sub {
    font-size: 13px;
    color: #999;
}

/* 成功状态 */
.panDialog .pan-result {
    padding: 0;
}

.panDialog .pan-success-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4cd964, #34c759);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(52,199,89,0.3);
}

.panDialog .pan-success-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.panDialog .pan-result-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.panDialog .pan-warn-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff7e6;
    border: 1px solid #ffe0a0;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #b76000;
}

.panDialog .pan-warn-dot {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fa8c16;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panDialog .pan-tips-list {
    background: #f7f8fa;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 18px;
}

.panDialog .pan-tips-item {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.panDialog .pan-tips-item + .pan-tips-item {
    margin-top: 6px;
}

.panDialog .pan-num {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--theme-theme);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.panDialog .pan-link-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4f6fa;
    border: 1.5px solid #e4e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
}

.panDialog .pan-link-icon {
    font-size: 16px;
    flex: none;
}

.panDialog .pan-link-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    outline: none;
    min-width: 0;
    font-family: monospace;
}

.panDialog .pan-action-btns {
    display: flex;
    gap: 12px;
}

.panDialog .pan-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: opacity 0.2s, transform 0.1s;
}

.panDialog .pan-btn:active {
    transform: scale(0.97);
}

.panDialog .pan-btn-copy {
    background: #f0f2f5;
    color: #333;
}

.panDialog .pan-btn-copy:hover {
    background: #e4e6ea;
}

.panDialog .pan-btn-open {
    background: var(--theme-theme);
    color: #fff;
}

.panDialog .pan-btn-open:hover {
    opacity: 0.88;
}

/* 错误状态 */
.panDialog .pan-error {
    text-align: center;
    padding: 44px 20px 36px;
}

.panDialog .pan-error-icon {
    width: 56px;
    height: 56px;
    background: #ff4d4f;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(255,77,79,0.25);
}

.panDialog .pan-error-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.panDialog .pan-error-msg {
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.panDialog .pan-btn-retry {
    width: 100%;
    background: var(--theme-theme);
    color: #fff;
}




@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";
}
/* 主页内嵌搜索结果 */
.homeSearchResult {
    width: 90%;
    max-width: 700px;
    margin: 16px auto 0;
    background: var(--theme-other_background, #fff);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    text-align: left;
}
.hsr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}
.hsr-header em {
    font-style: normal;
    color: var(--theme-theme, #133ab3);
    font-weight: bold;
}
.hsr-close {
    cursor: pointer;
    font-size: 20px;
    color: #999;
    line-height: 1;
    padding: 0 4px;
}
.hsr-close:hover { color: #333; }
.hsr-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    color: #999;
    font-size: 14px;
}
.hsr-loading .spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #eee;
    border-top-color: var(--theme-theme, #133ab3);
    border-radius: 50%;
    animation: hsrSpin 0.8s linear infinite;
    margin-bottom: 10px;
}
@keyframes hsrSpin { to { transform: rotate(360deg); } }
.hsr-list .item {
    display: flex;
    flex-direction: column;
    padding: 12px 18px;
    border-bottom: 1px solid #f5f5f5;
    gap: 6px;
}
.hsr-list .item:last-child { border-bottom: none; }
.hsr-list .item .title {
    font-size: 15px;
    color: var(--theme-color, #3e3e3e);
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hsr-list .item .title:hover { color: var(--theme-theme, #133ab3); }
.hsr-list .item .type {
    font-size: 12px;
    color: #aaa;
    display: flex;
    gap: 10px;
}
.hsr-list .item .type .source-label {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 30px;
    line-height: 30px;
    color: #000;
    background-color: #FFD700;
    font-size: 14px;
    font-weight: bold;
    padding: 0 12px;
    white-space: nowrap;
    margin-top: 0;
}
.hsr-list .item .btns2 {
    position: static;
    display: inline-block;
    align-self: flex-end;
    width: auto;
    height: auto;
    line-height: normal;
    padding: 5px 16px;
    font-size: 13px;
    margin-top: 6px;
}
.hsr-empty {
    padding: 32px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
.hsr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 8px;
}
.hsr-more {
    color: var(--theme-theme, #133ab3);
    font-size: 13px;
    text-decoration: none;
}
.hsr-more:hover { text-decoration: underline; }

/* hsr header sections */
.hsr-header-left {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.hsr-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.hsr-title {
    color: #666;
}
.hsr-kw {
    font-style: normal;
    color: var(--theme-theme, #133ab3);
    font-weight: bold;
}
.hsr-count {
    color: #999;
    font-size: 12px;
}
.hsr-all-btn {
    font-size: 13px;
    color: var(--theme-theme, #133ab3);
    text-decoration: none;
    white-space: nowrap;
}
.hsr-all-btn:hover { text-decoration: underline; }

/* item layout */
.hsr-list .item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.hsr-list .item-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* type tags */
.type-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #f3f4f6;
    color: #555;
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 12px;
}
.type-tag .iconfont {
    font-size: 12px;
}
.code-tag {
    font-size: 12px;
    color: #888;
}
.code-tag em {
    font-style: normal;
    color: var(--theme-theme, #133ab3);
    font-weight: 600;
}
.source-tag {
    display: inline-block;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 4px;
    background: #e8f4ff;
    color: #1890ff;
}
.source-tag.feishu {
    background: #e6f7f0;
    color: #00b96b;
}

/* empty state */
.hsr-empty-icon {
    font-size: 32px;
    margin-bottom: 8px;
}
.hsr-empty-sub {
    font-size: 12px;
    color: #bbb;
    margin-top: 4px;
}
.hsr-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 18px;
    background: var(--theme-theme, #133ab3);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
}
.hsr-more-btn:hover { opacity: 0.85; color: #fff; }

/* footer view-all link */
.hsr-view-all {
    font-size: 13px;
    color: var(--theme-theme, #133ab3);
    text-decoration: none;
    white-space: nowrap;
}
.hsr-view-all:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .homeSearchResult { width: 95%; }
    .hsr-list .item .title { font-size: 14px; }
    .hsr-list .item { flex-direction: column; align-items: flex-start; }
    .hsr-list .item .btns2 { align-self: flex-end; }
}

/* 来源标签样式 */
.listBox .left .box .list .item .type,
.listBox .left .Ebox .list .item .type {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
}

.listBox .left .box .list .item .type::after,
.listBox .left .Ebox .list .item .type::after {
    display: none !important;
}

.listBox .left .box .list .item .type .source-label,
.listBox .left .Ebox .list .item .type .source-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 32px;
    padding: 0 14px;
    color: #000 !important;
    background-color: #FFD700 !important;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.listBox .left .box .list .item .type .source-label:hover,
.listBox .left .Ebox .list .item .type .source-label:hover {
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* ========== 性能优化：骨架屏与过渡动画 ========== */

/* 骨架屏加载动画 */
@keyframes skeleton-loading {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

/* 骨架屏基础样式 */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
    overflow: hidden;
}

/* 骨架屏 - 标题行 */
.skeleton-title {
    height: 22px;
    width: 100%;
    margin-bottom: 12px;
}

/* 骨架屏 - 内容行 */
.skeleton-row {
    height: 32px;
    width: 100%;
    margin-bottom: 8px;
}

/* 骨架屏 - 最后一行 */
.skeleton-row:last-child {
    margin-bottom: 0;
}

/* 骨架屏容器 */
.skeleton-item {
    padding: 16px 0;
    border-bottom: 1px solid #e0e8e0;
}

.skeleton-item:last-child {
    border-bottom: none;
}

/* 状态过渡动画 - 淡入淡出 */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
    transform: translateY(10px);
}

/* 搜索结果容器过渡 */
.result-container {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.result-container.loading {
    opacity: 0.6;
}

.result-container.entered {
    opacity: 1;
    transform: translateY(0);
}

/* 固定容器高度，避免布局跳动 */
.listBox .left .box,
.listBox .left .Ebox {
    min-height: 400px;
    position: relative;
}

/* 加载提示样式优化 */
.loading-tip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.loading-tip .spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1976D2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 空状态提示样式 */
.empty-state {
    padding: 60px 20px;
    text-align: center;
    transition: opacity 0.3s ease;
}

/* 终极修复：空状态容器默认隐藏，由 Vue v-if 条件严格控制渲染时机 */
.empty-state-container {
    display: none; /* HTML 层默认隐藏，只有当 v-if 所有条件满足时才渲染 */
    animation: fade-in 0.3s ease-out forwards;
}

/* 当 v-if 条件全部满足时（收到 [DONE] 且确认无结果），元素被渲染并添加 empty-visible 类后显示 */
.empty-state-container.empty-visible {
    display: block;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 硬件加速优化 */
.listBox .left .list .item,
.listBox .left .Ebox .list .item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 减少重排优化 */
.listBox .left .list,
.listBox .left .Ebox .list {
    contain: layout paint;
}

/* 按钮点击反馈优化 */
.listBox .left .list .item .btns2,
.listBox .left .Ebox .list .item .btns2 {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.listBox .left .list .item .btns2:active,
.listBox .left .Ebox .list .item .btns2:active {
    transform: scale(0.95);
    opacity: 0.9;
}

/* 输入框聚焦优化 */
.searchBox .search input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 结果列表进入动画 */
@keyframes result-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.listBox .left .box .list .item,
.listBox .left .Ebox .list .item {
    animation: result-fade-in 0.4s ease-out forwards;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .listBox .left .box,
    .listBox .left .Ebox {
        min-height: 300px;
    }
    
    .skeleton-title {
        height: 18px;
    }
    
    .skeleton-row {
        height: 28px;
    }
}
