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: #6a5bff;
    background-image: var(--theme-page-bg);
    word-wrap: break-word;
}

:root {
    --theme-theme-rgb: 106, 91, 255;
    --theme-accent: #7c6bff;
    --theme-accent-2: #5b6bff;
    --theme-surface: var(--theme-other_background);
    --theme-surface-alt: #f5f6ff;
    --theme-border: #e6e8f5;
    --theme-shadow-soft: 0 12px 30px rgba(77, 84, 175, 0.18);
    --theme-shadow-card: 0 8px 24px rgba(76, 84, 175, 0.16);
    --theme-gradient: linear-gradient(135deg, #7d6bff 0%, #6a5bff 50%, #5b8dff 100%);
    --theme-gradient-soft: linear-gradient(180deg, rgba(125, 107, 255, 0.14), rgba(125, 107, 255, 0.02));
    --theme-page-bg: linear-gradient(135deg, #7d6bff 0%, #6a5bff 50%, #5b8dff 100%);
}

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

.headBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    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: 88px;
    z-index: 99;
}

.headerKox {
    height: 88px;
}

.headerBox .bg {
    position: absolute;
    inset: 0;
    box-shadow: 0 18px 36px rgba(62, 70, 160, 0.28);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.35);
    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: 100%;
    max-width: 1280px;
    padding: 0 24px;
}

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

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

.headerBox .box .logoBox .title {
    margin-left: 18px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

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

.headerBox .box .navs .item,
.headerBox .box .navs a {
    padding: 10px 18px;
    margin-left: 14px;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 999px;
    background: var(--theme-gradient);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 22px rgba(91, 107, 255, 0.28);
    transition: all 0.25s ease;
}

.headerBox .box .navs .item:hover {
    background: linear-gradient(135deg, #8a7bff 0%, #6a5bff 50%, #5b8dff 100%);
    color: #fff;
    transform: translateY(-2px);
}


.headerBox .box .search {
    position: relative;
    flex: 1;
    height: 48px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    max-width: 520px;
    margin: 0 24px;
    background-color: var(--theme-surface);
    border: 1px solid rgba(106, 91, 255, 0.18);
    box-shadow: 0 10px 20px rgba(91, 107, 255, 0.16);
}

.headerBox .box .search:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    border: 1px solid rgba(106, 91, 255, 0.18);
    opacity: .4;
}

.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: auto;
    padding: 0 20px;
    height: 40px;
    margin-right: 6px;
    border-radius: 40px;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(106, 91, 255, 0.3);
}

.headerBox .box .search .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(106, 91, 255, 0.4);
}

.headerBox .box .search .btn .iconfont {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-right: 4px;
}


/* 首页 */
.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 {
    width: 550px;
    height: 250px;
    margin: 0 8px;
}

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

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

.searchBox .search {
    position: relative;
    margin: auto;
    margin-top: 20px;
    background-color: var(--theme-surface);
    box-shadow: 0 14px 36px rgba(91, 107, 255, 0.2);
    width: 100%;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--theme-border);
}

.searchBox .search:hover {
    box-shadow: 0 16px 42px rgba(91, 107, 255, 0.26);
}

.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: 88px;
    height: 56px;
    margin-right: 4px;
    border-radius: 12px;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(106, 91, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.searchBox .search .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(106, 91, 255, 0.5);
}

.searchBox .search .btn .iconfont {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}


.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: 60px;
    text-align: left;
    padding-top: 80px;
}

.home .block {
    border-radius: 16px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    margin-bottom: 24px;
    padding-top: 15px;
    border: 1px solid var(--theme-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home .block:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(91, 107, 255, 0.22);
}

.home .nav {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
    padding: 5px 24px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 10px;
}

.home .nav .more {
    margin-left: auto;
    font-size: 14px;
    font-weight: normal;
    color: #999;
}

.home .nav .more:hover {
    color: var(--theme-theme);
}

.home .nav img {
    width: 28px;
    height: 28px;
    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;
    cursor: pointer;
}

.home .content .list .item:hover {
    transform: translateY(-5px);
    background-color: rgba(0,0,0,0.02);
    border-radius: 8px;
}

.home .content .list .item p {
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 4px;
    line-height: 1.4;
}

.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-surface);
    box-shadow: var(--theme-shadow-soft);
    border: 1px solid var(--theme-border);
}

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

.layerBox .vbtn {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-top: 15px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(91, 107, 255, 0.26);
}

.layerBox .el-textarea textarea {
    background-color: var(--theme-surface-alt);
    border-radius: 8px;
    width: 100%;
    height: 240px;
    margin: 15px auto 0;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid var(--theme-border);
}

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



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

.listBox h3 {
    position: relative;
    padding: 30px 0 15px 15px;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
    font-size: 18px;
    font-weight: bold;
}

.listBox h3:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 4px;
    background-color: #fff;
    height: 18px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.listBox h3 span {
    color: #fff;
}

.listBox .nav {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 30px 0 10px;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.listBox .nav:before {
    content: "";
    width: 4px;
    height: 16px;
    background-color: #fff;
    margin-right: 10px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.listBox .nav img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

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

.listBox .left .list {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.listBox .left .list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(91, 107, 255, 0.08);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.listBox .left .list .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 107, 255, 0.12);
    border-color: rgba(106, 91, 255, 0.2);
}

.listBox .left .list .item .info-wrapper {
    flex: 1;
    min-width: 0;
    margin-right: 20px;
}

.listBox .left .list .item .title {
    display: block;
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: none;
    margin-bottom: 10px;
}

.listBox .left .list .item .meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.listBox .left .list .item .type {
    margin-top: 0;
    padding-left: 0;
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
}

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

.listBox .left .list .item .btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
    gap: 12px;
    flex-shrink: 0;
}

.listBox .left .list .item .btns .btn {
    position: relative;
    margin-right: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 8px;
    background: #f5f5f7;
    color: var(--theme-theme);
    transition: all 0.2s;
    font-size: 14px; 
    width: auto;
    padding: 0 16px;
    white-space: nowrap;
}

.listBox .left .list .item .btns .btn:hover {
    background: var(--theme-gradient);
    color: #fff;
}

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

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

/* 恢复按钮文字显示 - Removed duplicate */
/* .listBox .left .list .item .btns .btn {
    font-size: 13px; 
    width: auto;
    padding: 0 12px;
} */
.listBox .left .list .item .btns .btn .iconfont,
.listBox .left .list .item .btns .btn .icon {
    font-size: 16px; 
    margin-right: 6px;
}

/* Cleanup redundant type styles */
.listBox .left .list .item .type span span {
    color: #FF3F3D;
}


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

.listBox .box {
    border-radius: 12px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    min-height: calc(100% - 71px);
    padding: 15px;
    border: 1px solid var(--theme-border);
}

.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-surface-alt);
    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-surface);
    margin: 0 15px;
    font-size: 14px;
    color: var(--theme-color);
    text-align: center;
    opacity: .88;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(91, 107, 255, 0.16);
    border: 1px solid var(--theme-border);
    transition: all 0.25s ease;
}

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

.details .btns .btn:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 38px;
    border: 1px solid rgba(106, 91, 255, 0.18);
    opacity: .4;
}

.details .btns .btn.btnCol {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    box-shadow: 0 10px 22px rgba(91, 107, 255, 0.3);
    border: none;
}

.details .btns .btn:hover {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    transform: translateY(-2px);
}

.searchDetail {
    display: none;
}




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

.el-pagination.is-background {
    background: #fff;
    padding: 8px 12px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
}

.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
    background-color: transparent !important;
    color: #666 !important;
    border-radius: 8px;
    margin: 0 4px;
    font-weight: 500;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all 0.2s;
}

.el-pagination.is-background .btn-next:disabled,
.el-pagination.is-background .btn-prev:disabled {
    color: #ccc !important;
}

.el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: var(--theme-theme) !important;
    background-color: rgba(106, 91, 255, 0.08) !important;
}

.el-pagination.is-background .el-pager li.is-active {
    background: var(--theme-gradient) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(106, 91, 255, 0.3);
}


.searchList {
    display: none;
}

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

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

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


.listBox .Ebox {
    border-radius: 12px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--theme-border);
}

.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: 8px 16px;
    text-decoration: none;
    transition: all 0.25s;
    color: #fff;
    border-radius: 24px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.26);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.switch-items a:hover {
    background: var(--theme-gradient);
    color: #fff;
    transform: translateY(-1px);
}

.switch-items a.active {
    background: var(--theme-gradient);
    color: #fff;
    font-weight: 700;
}

.switch-items a.active:after {
    display: none;
}

/* Member Pages Beautification */
.member-page {
    justify-content: center;
    padding-top: 80px !important;
    background: var(--theme-gradient-soft);
}

.member-page .left {
    flex: none;
    width: 440px;
    max-width: 100%;
    margin: 0 15px;
}

.member-page h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
    padding: 0 !important;
    color: #fff;
}

.member-page h3:after {
    display: none;
}

.member-page .box.details {
    padding: 40px;
    box-shadow: var(--theme-shadow-soft);
    border-radius: 20px;
    background: var(--theme-surface);
    border: 1px solid var(--theme-border);
    min-height: auto;
}

/* Member Form (Login/Register) Styles */
.member-form .cat {
    display: block;
    margin-bottom: 24px;
    padding: 0;
}

.member-form .cat .l {
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    opacity: 1;
}

.member-form .cat .r {
    width: 100%;
}

.member-form input {
    width: 100% !important;
    height: 50px;
    border: 1px solid var(--theme-border) !important;
    border-radius: 12px !important;
    padding: 0 18px !important;
    background: var(--theme-surface-alt);
    transition: all 0.3s;
    font-size: 15px;
}

.member-form input:focus {
    background: var(--theme-surface);
    border-color: var(--theme-theme) !important;
    box-shadow: 0 0 0 4px rgba(var(--theme-theme-rgb), 0.1);
}

.member-form .btns {
    margin-top: 35px;
    flex-direction: column;
    gap: 15px;
}

.member-form .btn {
    width: 100%;
    margin: 0;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
}

.member-form .btn.btnCol {
    background: var(--theme-gradient);
    box-shadow: 0 4px 15px rgba(var(--theme-theme-rgb), 0.3);
    color: #fff;
}
.member-form .btn.btnCol:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--theme-theme-rgb), 0.4);
}

.member-form .btnLink {
    background: transparent;
    color: #888;
    box-shadow: none;
    font-size: 14px;
    height: auto;
    line-height: normal;
}
.member-form .btnLink:after { display: none; }
.member-form .btnLink:hover {
    background: transparent;
    color: var(--theme-theme);
}

/* Profile Page Specifics */
.user-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
}

.user-header .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid #f0f0f0;
}

.user-header .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-header .info .nickname {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.user-header .info .email {
    font-size: 14px;
    color: #999;
}

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.info-item .label {
    color: #666;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.badge-vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
}

.badge-normal {
    background: #f0f0f0;
    color: #999;
}

.order-tips {
    margin-top: 25px;
    background: #fff9f0;
    border: 1px solid #fff3e0;
    border-radius: 12px;
    padding: 15px;
}

.order-tips .tip-title {
    font-size: 13px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 5px;
}

.order-tips .tip-content {
    font-family: monospace;
    color: #333;
    margin-bottom: 5px;
}

.order-tips .tip-desc {
    font-size: 12px;
    color: #999;
}

.btn-block {
    width: 100%;
    margin: 0 !important;
}
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: #6a5bff;
    background-image: var(--theme-page-bg);
    word-wrap: break-word;
}

:root {
    --theme-theme-rgb: 106, 91, 255;
    --theme-accent: #7c6bff;
    --theme-accent-2: #5b6bff;
    --theme-surface: var(--theme-other_background);
    --theme-surface-alt: #f5f6ff;
    --theme-border: #e6e8f5;
    --theme-shadow-soft: 0 12px 30px rgba(77, 84, 175, 0.18);
    --theme-shadow-card: 0 8px 24px rgba(76, 84, 175, 0.16);
    --theme-gradient: linear-gradient(135deg, #7d6bff 0%, #6a5bff 50%, #5b8dff 100%);
    --theme-gradient-soft: linear-gradient(180deg, rgba(125, 107, 255, 0.14), rgba(125, 107, 255, 0.02));
    --theme-page-bg: linear-gradient(135deg, #7d6bff 0%, #6a5bff 50%, #5b8dff 100%);
}

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

.headBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    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: 88px;
    z-index: 99;
}

.headerKox {
    height: 88px;
}

.headerBox .bg {
    position: absolute;
    inset: 0;
    box-shadow: 0 18px 36px rgba(62, 70, 160, 0.28);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.35);
    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: 100%;
    max-width: 1280px;
    padding: 0 24px;
}

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

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

.headerBox .box .logoBox .title {
    margin-left: 18px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

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

.headerBox .box .navs .item,
.headerBox .box .navs a {
    padding: 10px 18px;
    margin-left: 14px;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 999px;
    background: var(--theme-gradient);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 22px rgba(91, 107, 255, 0.28);
    transition: all 0.25s ease;
}

.headerBox .box .navs .item:hover {
    background: linear-gradient(135deg, #8a7bff 0%, #6a5bff 50%, #5b8dff 100%);
    color: #fff;
    transform: translateY(-2px);
}


.headerBox .box .search {
    position: relative;
    flex: 1;
    height: 48px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    max-width: 520px;
    margin: 0 24px;
    background-color: var(--theme-surface);
    border: 1px solid rgba(106, 91, 255, 0.18);
    box-shadow: 0 10px 20px rgba(91, 107, 255, 0.16);
}

.headerBox .box .search:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    border: 1px solid rgba(106, 91, 255, 0.18);
    opacity: .4;
}

.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: auto;
    padding: 0 20px;
    height: 40px;
    margin-right: 6px;
    border-radius: 40px;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(106, 91, 255, 0.3);
}

.headerBox .box .search .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(106, 91, 255, 0.4);
}

.headerBox .box .search .btn .iconfont {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-right: 4px;
}


/* 首页 */
.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 {
    width: 450px;
    height: 150px;
    margin: 0 8px;
}

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

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

.searchBox .search {
    position: relative;
    margin: auto;
    margin-top: 20px;
    background-color: var(--theme-surface);
    box-shadow: 0 14px 36px rgba(91, 107, 255, 0.2);
    width: 100%;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--theme-border);
}

.searchBox .search:hover {
    box-shadow: 0 16px 42px rgba(91, 107, 255, 0.26);
}

.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: 88px;
    height: 56px;
    margin-right: 4px;
    border-radius: 12px;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(106, 91, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.searchBox .search .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(106, 91, 255, 0.5);
}

.searchBox .search .btn .iconfont {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}


.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: 60px;
    text-align: left;
    padding-top: 80px;
}

.home .block {
    border-radius: 16px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    margin-bottom: 24px;
    padding-top: 15px;
    border: 1px solid var(--theme-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home .block:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(91, 107, 255, 0.22);
}

.home .nav {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
    padding: 5px 24px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 10px;
}

.home .nav img {
    width: 28px;
    height: 28px;
    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;
    cursor: pointer;
}

.home .content .list .item:hover {
    transform: translateY(-5px);
    background-color: rgba(0,0,0,0.02);
    border-radius: 8px;
}

.home .content .list .item p {
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 4px;
    line-height: 1.4;
}

.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-surface);
    box-shadow: var(--theme-shadow-soft);
    border: 1px solid var(--theme-border);
}

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

.layerBox .vbtn {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-top: 15px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(91, 107, 255, 0.26);
}

.layerBox .el-textarea textarea {
    background-color: var(--theme-surface-alt);
    border-radius: 8px;
    width: 100%;
    height: 240px;
    margin: 15px auto 0;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid var(--theme-border);
}

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



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

.listBox h3 {
    position: relative;
    padding: 30px 0 15px 15px;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
    font-size: 18px;
    font-weight: bold;
}

.listBox h3:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 4px;
    background-color: #fff;
    height: 18px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.listBox h3 span {
    color: #fff;
}

.listBox .nav {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 30px 0 10px;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.listBox .nav:before {
    content: "";
    width: 4px;
    height: 16px;
    background-color: #fff;
    margin-right: 10px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.listBox .nav img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

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

.listBox .left .list {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.listBox .left .list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(91, 107, 255, 0.08);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.listBox .left .list .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 107, 255, 0.12);
    border-color: rgba(106, 91, 255, 0.2);
}

.listBox .left .list .item .info-wrapper {
    flex: 1;
    min-width: 0;
    margin-right: 20px;
}

.listBox .left .list .item .title {
    display: block;
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: none;
    margin-bottom: 10px;
}

.listBox .left .list .item .meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.listBox .left .list .item .type {
    margin-top: 0;
    padding-left: 0;
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
}

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

.listBox .left .list .item .btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
    gap: 12px;
    flex-shrink: 0;
}

.listBox .left .list .item .btns .btn {
    position: relative;
    margin-right: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 8px;
    background: #f5f5f7;
    color: var(--theme-theme);
    transition: all 0.2s;
    font-size: 14px; 
    width: auto;
    padding: 0 16px;
    white-space: nowrap;
}

.listBox .left .list .item .btns .btn:hover {
    background: var(--theme-gradient);
    color: #fff;
}

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

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

/* 恢复按钮文字显示 - Removed duplicate */
/* .listBox .left .list .item .btns .btn {
    font-size: 13px; 
    width: auto;
    padding: 0 12px;
} */
.listBox .left .list .item .btns .btn .iconfont,
.listBox .left .list .item .btns .btn .icon {
    font-size: 16px; 
    margin-right: 6px;
}

/* Cleanup redundant type styles */
.listBox .left .list .item .type span span {
    color: #FF3F3D;
}


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

.listBox .box {
    border-radius: 12px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    min-height: calc(100% - 71px);
    padding: 15px;
    border: 1px solid var(--theme-border);
}

.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-surface-alt);
    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-surface);
    margin: 0 15px;
    font-size: 14px;
    color: var(--theme-color);
    text-align: center;
    opacity: .88;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(91, 107, 255, 0.16);
    border: 1px solid var(--theme-border);
    transition: all 0.25s ease;
}

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

.details .btns .btn:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 38px;
    border: 1px solid rgba(106, 91, 255, 0.18);
    opacity: .4;
}

.details .btns .btn.btnCol {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    box-shadow: 0 10px 22px rgba(91, 107, 255, 0.3);
    border: none;
}

.details .btns .btn:hover {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    transform: translateY(-2px);
}

.searchDetail {
    display: none;
}




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

.el-pagination.is-background {
    background: #fff;
    padding: 8px 12px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
}

.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
    background-color: transparent !important;
    color: #666 !important;
    border-radius: 8px;
    margin: 0 4px;
    font-weight: 500;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all 0.2s;
}

.el-pagination.is-background .btn-next:disabled,
.el-pagination.is-background .btn-prev:disabled {
    color: #ccc !important;
}

.el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: var(--theme-theme) !important;
    background-color: rgba(106, 91, 255, 0.08) !important;
}

.el-pagination.is-background .el-pager li.is-active {
    background: var(--theme-gradient) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(106, 91, 255, 0.3);
}


.searchList {
    display: none;
}

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

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

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


.listBox .Ebox {
    border-radius: 12px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--theme-border);
}

.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: 8px 16px;
    text-decoration: none;
    transition: all 0.25s;
    color: #fff;
    border-radius: 24px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.26);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.switch-items a:hover {
    background: var(--theme-gradient);
    color: #fff;
    transform: translateY(-1px);
}

.switch-items a.active {
    background: var(--theme-gradient);
    color: #fff;
    font-weight: 700;
}

.switch-items a.active:after {
    display: none;
}

/* Member Pages Beautification */
.member-page {
    justify-content: center;
    padding-top: 80px !important;
    background: var(--theme-gradient-soft);
}

.member-page .left {
    flex: none;
    width: 440px;
    max-width: 100%;
    margin: 0 15px;
}

.member-page h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
    padding: 0 !important;
    color: #fff;
}

.member-page h3:after {
    display: none;
}

.member-page .box.details {
    padding: 40px;
    box-shadow: var(--theme-shadow-soft);
    border-radius: 20px;
    background: var(--theme-surface);
    border: 1px solid var(--theme-border);
    min-height: auto;
}

/* Member Form (Login/Register) Styles */
.member-form .cat {
    display: block;
    margin-bottom: 24px;
    padding: 0;
}

.member-form .cat .l {
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    opacity: 1;
}

.member-form .cat .r {
    width: 100%;
}

.member-form input {
    width: 100% !important;
    height: 50px;
    border: 1px solid var(--theme-border) !important;
    border-radius: 12px !important;
    padding: 0 18px !important;
    background: var(--theme-surface-alt);
    transition: all 0.3s;
    font-size: 15px;
}

.member-form input:focus {
    background: var(--theme-surface);
    border-color: var(--theme-theme) !important;
    box-shadow: 0 0 0 4px rgba(var(--theme-theme-rgb), 0.1);
}

.member-form .btns {
    margin-top: 35px;
    flex-direction: column;
    gap: 15px;
}

.member-form .btn {
    width: 100%;
    margin: 0;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
}

.member-form .btn.btnCol {
    background: var(--theme-gradient);
    box-shadow: 0 4px 15px rgba(var(--theme-theme-rgb), 0.3);
    color: #fff;
}
.member-form .btn.btnCol:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--theme-theme-rgb), 0.4);
}

.member-form .btnLink {
    background: transparent;
    color: #888;
    box-shadow: none;
    font-size: 14px;
    height: auto;
    line-height: normal;
}
.member-form .btnLink:after { display: none; }
.member-form .btnLink:hover {
    background: transparent;
    color: var(--theme-theme);
}

/* Profile Page Specifics */
.user-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
}

.user-header .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid #f0f0f0;
}

.user-header .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-header .info .nickname {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.user-header .info .email {
    font-size: 14px;
    color: #999;
}

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.info-item .label {
    color: #666;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.badge-vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
}

.badge-normal {
    background: #f0f0f0;
    color: #999;
}

.order-tips {
    margin-top: 25px;
    background: #fff9f0;
    border: 1px solid #fff3e0;
    border-radius: 12px;
    padding: 15px;
}

.order-tips .tip-title {
    font-size: 13px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 5px;
}

.order-tips .tip-content {
    font-family: monospace;
    color: #333;
    margin-bottom: 5px;
}

.order-tips .tip-desc {
    font-size: 12px;
    color: #999;
}

.btn-block {
    width: 100%;
    margin: 0 !important;
}
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: #6a5bff;
    background-image: var(--theme-page-bg);
    word-wrap: break-word;
}

:root {
    --theme-theme-rgb: 106, 91, 255;
    --theme-accent: #7c6bff;
    --theme-accent-2: #5b6bff;
    --theme-surface: var(--theme-other_background);
    --theme-surface-alt: #f5f6ff;
    --theme-border: #e6e8f5;
    --theme-shadow-soft: 0 12px 30px rgba(77, 84, 175, 0.18);
    --theme-shadow-card: 0 8px 24px rgba(76, 84, 175, 0.16);
    --theme-gradient: linear-gradient(135deg, #7d6bff 0%, #6a5bff 50%, #5b8dff 100%);
    --theme-gradient-soft: linear-gradient(180deg, rgba(125, 107, 255, 0.14), rgba(125, 107, 255, 0.02));
    --theme-page-bg: linear-gradient(135deg, #7d6bff 0%, #6a5bff 50%, #5b8dff 100%);
}

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

.headBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    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: 88px;
    z-index: 99;
}

.headerKox {
    height: 88px;
}

.headerBox .bg {
    position: absolute;
    inset: 0;
    box-shadow: 0 18px 36px rgba(62, 70, 160, 0.28);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.35);
    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: 100%;
    max-width: 1280px;
    padding: 0 24px;
}

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

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

.headerBox .box .logoBox .title {
    margin-left: 18px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

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

.headerBox .box .navs .item,
.headerBox .box .navs a {
    padding: 10px 18px;
    margin-left: 14px;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 999px;
    background: var(--theme-gradient);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 22px rgba(91, 107, 255, 0.28);
    transition: all 0.25s ease;
}

.headerBox .box .navs .item:hover {
    background: linear-gradient(135deg, #8a7bff 0%, #6a5bff 50%, #5b8dff 100%);
    color: #fff;
    transform: translateY(-2px);
}


.headerBox .box .search {
    position: relative;
    flex: 1;
    height: 48px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    max-width: 520px;
    margin: 0 24px;
    background-color: var(--theme-surface);
    border: 1px solid rgba(106, 91, 255, 0.18);
    box-shadow: 0 10px 20px rgba(91, 107, 255, 0.16);
}

.headerBox .box .search:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    border: 1px solid rgba(106, 91, 255, 0.18);
    opacity: .4;
}

.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: auto;
    padding: 0 20px;
    height: 40px;
    margin-right: 6px;
    border-radius: 40px;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(106, 91, 255, 0.3);
}

.headerBox .box .search .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(106, 91, 255, 0.4);
}

.headerBox .box .search .btn .iconfont {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-right: 4px;
}


/* 首页 */
.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 {
    width: 450px;
    height: 150px;
    margin: 0 8px;
}

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

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

.searchBox .search {
    position: relative;
    margin: auto;
    margin-top: 20px;
    background-color: var(--theme-surface);
    box-shadow: 0 14px 36px rgba(91, 107, 255, 0.2);
    width: 100%;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--theme-border);
}

.searchBox .search:hover {
    box-shadow: 0 16px 42px rgba(91, 107, 255, 0.26);
}

.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: 88px;
    height: 56px;
    margin-right: 4px;
    border-radius: 12px;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(106, 91, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.searchBox .search .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(106, 91, 255, 0.5);
}

.searchBox .search .btn .iconfont {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}


.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: 60px;
    text-align: left;
    padding-top: 80px;
}

.home .block {
    border-radius: 16px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    margin-bottom: 24px;
    padding-top: 15px;
    border: 1px solid var(--theme-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home .block:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(91, 107, 255, 0.22);
}

.home .nav {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
    padding: 5px 24px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 10px;
}

.home .nav img {
    width: 28px;
    height: 28px;
    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;
    cursor: pointer;
}

.home .content .list .item:hover {
    transform: translateY(-5px);
    background-color: rgba(0,0,0,0.02);
    border-radius: 8px;
}

.home .content .list .item p {
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 4px;
    line-height: 1.4;
}

.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-surface);
    box-shadow: var(--theme-shadow-soft);
    border: 1px solid var(--theme-border);
}

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

.layerBox .vbtn {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-top: 15px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(91, 107, 255, 0.26);
}

.layerBox .el-textarea textarea {
    background-color: var(--theme-surface-alt);
    border-radius: 8px;
    width: 100%;
    height: 240px;
    margin: 15px auto 0;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid var(--theme-border);
}

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



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

.listBox h3 {
    position: relative;
    padding: 30px 0 15px 15px;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
    font-size: 18px;
    font-weight: bold;
}

.listBox h3:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 4px;
    background-color: #fff;
    height: 18px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.listBox h3 span {
    color: #fff;
}

.listBox .nav {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 30px 0 10px;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.listBox .nav:before {
    content: "";
    width: 4px;
    height: 16px;
    background-color: #fff;
    margin-right: 10px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.listBox .nav img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

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

.listBox .left .list {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.listBox .left .list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(91, 107, 255, 0.08);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.listBox .left .list .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 107, 255, 0.12);
    border-color: rgba(106, 91, 255, 0.2);
}

.listBox .left .list .item .info-wrapper {
    flex: 1;
    min-width: 0;
    margin-right: 20px;
}

.listBox .left .list .item .title {
    display: block;
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: none;
    margin-bottom: 10px;
}

.listBox .left .list .item .meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.listBox .left .list .item .type {
    margin-top: 0;
    padding-left: 0;
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
}

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

.listBox .left .list .item .btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
    gap: 12px;
    flex-shrink: 0;
}

.listBox .left .list .item .btns .btn {
    position: relative;
    margin-right: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 8px;
    background: #f5f5f7;
    color: var(--theme-theme);
    transition: all 0.2s;
    font-size: 14px; 
    width: auto;
    padding: 0 16px;
    white-space: nowrap;
}

.listBox .left .list .item .btns .btn:hover {
    background: var(--theme-gradient);
    color: #fff;
}

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

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

/* 恢复按钮文字显示 - Removed duplicate */
/* .listBox .left .list .item .btns .btn {
    font-size: 13px; 
    width: auto;
    padding: 0 12px;
} */
.listBox .left .list .item .btns .btn .iconfont,
.listBox .left .list .item .btns .btn .icon {
    font-size: 16px; 
    margin-right: 6px;
}

/* Cleanup redundant type styles */
.listBox .left .list .item .type span span {
    color: #FF3F3D;
}


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

.listBox .box {
    border-radius: 12px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    min-height: calc(100% - 71px);
    padding: 15px;
    border: 1px solid var(--theme-border);
}

.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-surface-alt);
    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-surface);
    margin: 0 15px;
    font-size: 14px;
    color: var(--theme-color);
    text-align: center;
    opacity: .88;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(91, 107, 255, 0.16);
    border: 1px solid var(--theme-border);
    transition: all 0.25s ease;
}

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

.details .btns .btn:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 38px;
    border: 1px solid rgba(106, 91, 255, 0.18);
    opacity: .4;
}

.details .btns .btn.btnCol {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    box-shadow: 0 10px 22px rgba(91, 107, 255, 0.3);
    border: none;
}

.details .btns .btn:hover {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    transform: translateY(-2px);
}

.searchDetail {
    display: none;
}




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

.el-pagination.is-background {
    background: #fff;
    padding: 8px 12px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
}

.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
    background-color: transparent !important;
    color: #666 !important;
    border-radius: 8px;
    margin: 0 4px;
    font-weight: 500;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all 0.2s;
}

.el-pagination.is-background .btn-next:disabled,
.el-pagination.is-background .btn-prev:disabled {
    color: #ccc !important;
}

.el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: var(--theme-theme) !important;
    background-color: rgba(106, 91, 255, 0.08) !important;
}

.el-pagination.is-background .el-pager li.is-active {
    background: var(--theme-gradient) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(106, 91, 255, 0.3);
}


.searchList {
    display: none;
}

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

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

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


.listBox .Ebox {
    border-radius: 12px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--theme-border);
}

.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: 8px 16px;
    text-decoration: none;
    transition: all 0.25s;
    color: #fff;
    border-radius: 24px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.26);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.switch-items a:hover {
    background: var(--theme-gradient);
    color: #fff;
    transform: translateY(-1px);
}

.switch-items a.active {
    background: var(--theme-gradient);
    color: #fff;
    font-weight: 700;
}

.switch-items a.active:after {
    display: none;
}

/* Member Pages Beautification */
.member-page {
    justify-content: center;
    padding-top: 80px !important;
    background: var(--theme-gradient-soft);
}

.member-page .left {
    flex: none;
    width: 440px;
    max-width: 100%;
    margin: 0 15px;
}

.member-page h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
    padding: 0 !important;
    color: #fff;
}

.member-page h3:after {
    display: none;
}

.member-page .box.details {
    padding: 40px;
    box-shadow: var(--theme-shadow-soft);
    border-radius: 20px;
    background: var(--theme-surface);
    border: 1px solid var(--theme-border);
    min-height: auto;
}

/* Member Form (Login/Register) Styles */
.member-form .cat {
    display: block;
    margin-bottom: 24px;
    padding: 0;
}

.member-form .cat .l {
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    opacity: 1;
}

.member-form .cat .r {
    width: 100%;
}

.member-form input {
    width: 100% !important;
    height: 50px;
    border: 1px solid var(--theme-border) !important;
    border-radius: 12px !important;
    padding: 0 18px !important;
    background: var(--theme-surface-alt);
    transition: all 0.3s;
    font-size: 15px;
}

.member-form input:focus {
    background: var(--theme-surface);
    border-color: var(--theme-theme) !important;
    box-shadow: 0 0 0 4px rgba(var(--theme-theme-rgb), 0.1);
}

.member-form .btns {
    margin-top: 35px;
    flex-direction: column;
    gap: 15px;
}

.member-form .btn {
    width: 100%;
    margin: 0;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
}

.member-form .btn.btnCol {
    background: var(--theme-gradient);
    box-shadow: 0 4px 15px rgba(var(--theme-theme-rgb), 0.3);
    color: #fff;
}
.member-form .btn.btnCol:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--theme-theme-rgb), 0.4);
}

.member-form .btnLink {
    background: transparent;
    color: #888;
    box-shadow: none;
    font-size: 14px;
    height: auto;
    line-height: normal;
}
.member-form .btnLink:after { display: none; }
.member-form .btnLink:hover {
    background: transparent;
    color: var(--theme-theme);
}

/* Profile Page Specifics */
.user-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
}

.user-header .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid #f0f0f0;
}

.user-header .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-header .info .nickname {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.user-header .info .email {
    font-size: 14px;
    color: #999;
}

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.info-item .label {
    color: #666;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.badge-vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
}

.badge-normal {
    background: #f0f0f0;
    color: #999;
}

.order-tips {
    margin-top: 25px;
    background: #fff9f0;
    border: 1px solid #fff3e0;
    border-radius: 12px;
    padding: 15px;
}

.order-tips .tip-title {
    font-size: 13px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 5px;
}

.order-tips .tip-content {
    font-family: monospace;
    color: #333;
    margin-bottom: 5px;
}

.order-tips .tip-desc {
    font-size: 12px;
    color: #999;
}

.btn-block {
    width: 100%;
    margin: 0 !important;
}
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: #6a5bff;
    background-image: var(--theme-page-bg);
    word-wrap: break-word;
}

:root {
    --theme-theme-rgb: 106, 91, 255;
    --theme-accent: #7c6bff;
    --theme-accent-2: #5b6bff;
    --theme-surface: var(--theme-other_background);
    --theme-surface-alt: #f5f6ff;
    --theme-border: #e6e8f5;
    --theme-shadow-soft: 0 12px 30px rgba(77, 84, 175, 0.18);
    --theme-shadow-card: 0 8px 24px rgba(76, 84, 175, 0.16);
    --theme-gradient: linear-gradient(135deg, #7d6bff 0%, #6a5bff 50%, #5b8dff 100%);
    --theme-gradient-soft: linear-gradient(180deg, rgba(125, 107, 255, 0.14), rgba(125, 107, 255, 0.02));
    --theme-page-bg: linear-gradient(135deg, #7d6bff 0%, #6a5bff 50%, #5b8dff 100%);
}

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

.headBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    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: 88px;
    z-index: 99;
}

.headerKox {
    height: 88px;
}

.headerBox .bg {
    position: absolute;
    inset: 0;
    box-shadow: 0 18px 36px rgba(62, 70, 160, 0.28);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.35);
    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: 100%;
    max-width: 1280px;
    padding: 0 24px;
}

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

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

.headerBox .box .logoBox .title {
    margin-left: 18px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

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

.headerBox .box .navs .item,
.headerBox .box .navs a {
    padding: 10px 18px;
    margin-left: 14px;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 999px;
    background: var(--theme-gradient);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 22px rgba(91, 107, 255, 0.28);
    transition: all 0.25s ease;
}

.headerBox .box .navs .item:hover {
    background: linear-gradient(135deg, #8a7bff 0%, #6a5bff 50%, #5b8dff 100%);
    color: #fff;
    transform: translateY(-2px);
}


.headerBox .box .search {
    position: relative;
    flex: 1;
    height: 48px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    max-width: 520px;
    margin: 0 24px;
    background-color: var(--theme-surface);
    border: 1px solid rgba(106, 91, 255, 0.18);
    box-shadow: 0 10px 20px rgba(91, 107, 255, 0.16);
}

.headerBox .box .search:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    border: 1px solid rgba(106, 91, 255, 0.18);
    opacity: .4;
}

.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: auto;
    padding: 0 20px;
    height: 40px;
    margin-right: 6px;
    border-radius: 40px;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(106, 91, 255, 0.3);
}

.headerBox .box .search .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(106, 91, 255, 0.4);
}

.headerBox .box .search .btn .iconfont {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-right: 4px;
}


/* 首页 */
.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 {
    width: 550px;
    height: 250px;
    margin: 0 8px;
}

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

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

.searchBox .search {
    position: relative;
    margin: auto;
    margin-top: 20px;
    background-color: var(--theme-surface);
    box-shadow: 0 14px 36px rgba(91, 107, 255, 0.2);
    width: 100%;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--theme-border);
}

.searchBox .search:hover {
    box-shadow: 0 16px 42px rgba(91, 107, 255, 0.26);
}

.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: 88px;
    height: 56px;
    margin-right: 4px;
    border-radius: 12px;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(106, 91, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.searchBox .search .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(106, 91, 255, 0.5);
}

.searchBox .search .btn .iconfont {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}


.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: 60px;
    text-align: left;
    padding-top: 80px;
}

.home .block {
    border-radius: 16px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    margin-bottom: 24px;
    padding-top: 15px;
    border: 1px solid var(--theme-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home .block:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(91, 107, 255, 0.22);
}

.home .nav {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
    padding: 5px 24px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 10px;
}

.home .nav img {
    width: 28px;
    height: 28px;
    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;
    cursor: pointer;
}

.home .content .list .item:hover {
    transform: translateY(-5px);
    background-color: rgba(0,0,0,0.02);
    border-radius: 8px;
}

.home .content .list .item p {
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 4px;
    line-height: 1.4;
}

.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-surface);
    box-shadow: var(--theme-shadow-soft);
    border: 1px solid var(--theme-border);
}

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

.layerBox .vbtn {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-top: 15px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(91, 107, 255, 0.26);
}

.layerBox .el-textarea textarea {
    background-color: var(--theme-surface-alt);
    border-radius: 8px;
    width: 100%;
    height: 240px;
    margin: 15px auto 0;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid var(--theme-border);
}

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



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

.listBox h3 {
    position: relative;
    padding: 30px 0 15px 15px;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
    font-size: 18px;
    font-weight: bold;
}

.listBox h3:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 4px;
    background-color: #fff;
    height: 18px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.listBox h3 span {
    color: #fff;
}

.listBox .nav {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 30px 0 10px;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.listBox .nav:before {
    content: "";
    width: 4px;
    height: 16px;
    background-color: #fff;
    margin-right: 10px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.listBox .nav img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

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

.listBox .left .list {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.listBox .left .list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(91, 107, 255, 0.08);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.listBox .left .list .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 107, 255, 0.12);
    border-color: rgba(106, 91, 255, 0.2);
}

.listBox .left .list .item .info-wrapper {
    flex: 1;
    min-width: 0;
    margin-right: 20px;
}

.listBox .left .list .item .title {
    display: block;
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: none;
    margin-bottom: 10px;
}

.listBox .left .list .item .meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.listBox .left .list .item .type {
    margin-top: 0;
    padding-left: 0;
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
}

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

.listBox .left .list .item .btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
    gap: 12px;
    flex-shrink: 0;
}

.listBox .left .list .item .btns .btn {
    position: relative;
    margin-right: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 8px;
    background: #f5f5f7;
    color: var(--theme-theme);
    transition: all 0.2s;
    font-size: 14px; 
    width: auto;
    padding: 0 16px;
    white-space: nowrap;
}

.listBox .left .list .item .btns .btn:hover {
    background: var(--theme-gradient);
    color: #fff;
}

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

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

/* 恢复按钮文字显示 - Removed duplicate */
/* .listBox .left .list .item .btns .btn {
    font-size: 13px; 
    width: auto;
    padding: 0 12px;
} */
.listBox .left .list .item .btns .btn .iconfont,
.listBox .left .list .item .btns .btn .icon {
    font-size: 16px; 
    margin-right: 6px;
}

/* Cleanup redundant type styles */
.listBox .left .list .item .type span span {
    color: #FF3F3D;
}


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

.listBox .box {
    border-radius: 12px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    min-height: calc(100% - 71px);
    padding: 15px;
    border: 1px solid var(--theme-border);
}

.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-surface-alt);
    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-surface);
    margin: 0 15px;
    font-size: 14px;
    color: var(--theme-color);
    text-align: center;
    opacity: .88;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(91, 107, 255, 0.16);
    border: 1px solid var(--theme-border);
    transition: all 0.25s ease;
}

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

.details .btns .btn:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 38px;
    border: 1px solid rgba(106, 91, 255, 0.18);
    opacity: .4;
}

.details .btns .btn.btnCol {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    box-shadow: 0 10px 22px rgba(91, 107, 255, 0.3);
    border: none;
}

.details .btns .btn:hover {
    background: var(--theme-gradient);
    color: var(--theme-other_background);
    transform: translateY(-2px);
}

.searchDetail {
    display: none;
}




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

.el-pagination.is-background {
    background: #fff;
    padding: 8px 12px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
}

.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
    background-color: transparent !important;
    color: #666 !important;
    border-radius: 8px;
    margin: 0 4px;
    font-weight: 500;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all 0.2s;
}

.el-pagination.is-background .btn-next:disabled,
.el-pagination.is-background .btn-prev:disabled {
    color: #ccc !important;
}

.el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: var(--theme-theme) !important;
    background-color: rgba(106, 91, 255, 0.08) !important;
}

.el-pagination.is-background .el-pager li.is-active {
    background: var(--theme-gradient) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(106, 91, 255, 0.3);
}


.searchList {
    display: none;
}

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

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

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


.listBox .Ebox {
    border-radius: 12px;
    background-color: var(--theme-surface);
    box-shadow: var(--theme-shadow-card);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--theme-border);
}

.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: 8px 16px;
    text-decoration: none;
    transition: all 0.25s;
    color: #fff;
    border-radius: 24px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.26);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.switch-items a:hover {
    background: var(--theme-gradient);
    color: #fff;
    transform: translateY(-1px);
}

.switch-items a.active {
    background: var(--theme-gradient);
    color: #fff;
    font-weight: 700;
}

.switch-items a.active:after {
    display: none;
}

/* Member Pages Beautification */
.member-page {
    justify-content: center;
    padding-top: 80px !important;
    background: var(--theme-gradient-soft);
}

.member-page .left {
    flex: none;
    width: 440px;
    max-width: 100%;
    margin: 0 15px;
}

.member-page h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
    padding: 0 !important;
    color: #fff;
}

.member-page h3:after {
    display: none;
}

.member-page .box.details {
    padding: 40px;
    box-shadow: var(--theme-shadow-soft);
    border-radius: 20px;
    background: var(--theme-surface);
    border: 1px solid var(--theme-border);
    min-height: auto;
}

/* Member Form (Login/Register) Styles */
.member-form .cat {
    display: block;
    margin-bottom: 24px;
    padding: 0;
}

.member-form .cat .l {
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    opacity: 1;
}

.member-form .cat .r {
    width: 100%;
}

.member-form input {
    width: 100% !important;
    height: 50px;
    border: 1px solid var(--theme-border) !important;
    border-radius: 12px !important;
    padding: 0 18px !important;
    background: var(--theme-surface-alt);
    transition: all 0.3s;
    font-size: 15px;
}

.member-form input:focus {
    background: var(--theme-surface);
    border-color: var(--theme-theme) !important;
    box-shadow: 0 0 0 4px rgba(var(--theme-theme-rgb), 0.1);
}

.member-form .btns {
    margin-top: 35px;
    flex-direction: column;
    gap: 15px;
}

.member-form .btn {
    width: 100%;
    margin: 0;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
}

.member-form .btn.btnCol {
    background: var(--theme-gradient);
    box-shadow: 0 4px 15px rgba(var(--theme-theme-rgb), 0.3);
    color: #fff;
}
.member-form .btn.btnCol:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--theme-theme-rgb), 0.4);
}

.member-form .btnLink {
    background: transparent;
    color: #888;
    box-shadow: none;
    font-size: 14px;
    height: auto;
    line-height: normal;
}
.member-form .btnLink:after { display: none; }
.member-form .btnLink:hover {
    background: transparent;
    color: var(--theme-theme);
}

/* Profile Page Specifics */
.user-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
}

.user-header .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid #f0f0f0;
}

.user-header .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-header .info .nickname {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.user-header .info .email {
    font-size: 14px;
    color: #999;
}

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.info-item .label {
    color: #666;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.badge-vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
}

.badge-normal {
    background: #f0f0f0;
    color: #999;
}

.order-tips {
    margin-top: 25px;
    background: #fff9f0;
    border: 1px solid #fff3e0;
    border-radius: 12px;
    padding: 15px;
}

.order-tips .tip-title {
    font-size: 13px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 5px;
}

.order-tips .tip-content {
    font-family: monospace;
    color: #333;
    margin-bottom: 5px;
}

.order-tips .tip-desc {
    font-size: 12px;
    color: #999;
}

.btn-block {
    width: 100%;
    margin: 0 !important;
}
