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

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

.headBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: .3;
    background-repeat: repeat-x;
    background-size: 100% auto;
}

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

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

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

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

[v-cloak] {
    display: none;
}

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


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

.headerKox {
    height: 68px;
}

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

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

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

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

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

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

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

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

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

/* 下拉菜单样式 */
.dropdown-menu {
    position: relative;
    display: inline-block;
    margin-left: 25px;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    cursor: pointer;
    white-space: nowrap;
    color: var(--theme-color);
    transition: all 0.3s ease;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.dropdown-trigger:hover {
    color: var(--theme-theme);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-trigger .iconfont {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu:hover .dropdown-trigger .iconfont {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: rgba(56, 81, 107, 0.95);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(56, 81, 107, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    z-index: 9999;
    overflow: visible;
    animation: dropdownFadeIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 6px 0;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(56, 81, 107, 0.95);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.dropdown-content::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 4px;
    border-radius: 8px;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}


/* 移动端下拉菜单项样式 */
.dropdown-mobile-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    margin: 8px 12px;
    cursor: pointer;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 10px;
    background: rgba(56, 81, 107, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.dropdown-mobile-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-mobile-item:hover::before {
    left: 100%;
}

.dropdown-mobile-item:hover {
    background: rgba(56, 81, 107, 1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 81, 107, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 搜索状态提示样式 */
.search-status {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.3s ease;
}

.search-status-checking {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    color: #1976d2;
}

.search-status-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #388e3c;
}

.search-status-warning {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: #f57c00;
}

.search-status-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #d32f2f;
}

.search-status i {
    font-size: 16px;
    animation: spin 1s linear infinite;
}

.search-status-success i,
.search-status-error i {
    animation: none;
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dropdown-mobile-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}



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

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

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

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

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


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

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

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

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

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

.homeBox .subTitle {
    padding: 10px 0 10px;
    opacity: .6;
    white-space: pre-line;
    line-height: 1.6;
}

/* 浮动资源总数样式 */
.floatingResourceCount {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
}

.floatingResourceCount .count-content {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(81, 141, 145, 0.9), rgba(77, 120, 140, 0.9));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(78, 134, 138, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.floatingResourceCount .count-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(78, 134, 138, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.homeBox .resourceCount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.homeBox .resourceCount:hover::before {
    left: 100%;
}

.floatingResourceCount .count-text {
    font-size: 13px;
    font-weight: 600;
    color: white;
    opacity: 0.9;
    margin-right: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.floatingResourceCount .count-number {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-right: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.floatingResourceCount .count-unit {
    font-size: 13px;
    font-weight: 600;
    color: white;
    opacity: 0.8;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .floatingResourceCount {
        bottom: 15px;
        right: 15px;
    }
    
    .dropdown-menu {
        display: none;
    }
    
    .dropdown-mobile-item {
        margin: 12px 16px;
        padding: 16px 20px;
        background: linear-gradient(135deg, rgba(56, 81, 107, 0.9), rgba(56, 81, 107, 0.8));
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        font-weight: 600;
        letter-spacing: 0.3px;
        font-size: 15px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        min-height: 52px;
        color: white;
        box-shadow: 0 4px 15px rgba(56, 81, 107, 0.2);
        animation: slideInFromRight 0.5s ease-out;
        animation-fill-mode: both;
    }
    
    .dropdown-mobile-item:nth-child(1) { animation-delay: 0.1s; }
    .dropdown-mobile-item:nth-child(2) { animation-delay: 0.2s; }
    .dropdown-mobile-item:nth-child(3) { animation-delay: 0.3s; }
    .dropdown-mobile-item:nth-child(4) { animation-delay: 0.4s; }
    .dropdown-mobile-item:nth-child(5) { animation-delay: 0.5s; }
    .dropdown-mobile-item:nth-child(6) { animation-delay: 0.6s; }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .dropdown-mobile-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .dropdown-mobile-item:hover::before {
        left: 100%;
    }
    
    .dropdown-mobile-item:hover {
        background: linear-gradient(135deg, rgba(56, 81, 107, 1), rgba(74, 144, 226, 0.9));
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(56, 81, 107, 0.4);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .dropdown-mobile-item:last-child {
        border-bottom: none;
    }
    
    /* 优化抽屉菜单样式 */
    .drawer {
        padding: 24px 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
        position: relative;
        overflow: hidden;
    }
    
    .drawer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(56, 81, 107, 0.3), transparent);
    }
    
    .drawer .item {
        margin: 12px 16px;
        padding: 16px 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(56, 81, 107, 0.08), rgba(56, 81, 107, 0.05));
        border: 1px solid rgba(56, 81, 107, 0.15);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        position: relative;
        overflow: hidden;
        color: #38516B;
        letter-spacing: 0.3px;
        animation: slideInFromLeft 0.5s ease-out;
        animation-fill-mode: both;
    }
    
    .drawer .item:nth-child(1) { animation-delay: 0.1s; }
    .drawer .item:nth-child(2) { animation-delay: 0.2s; }
    .drawer .item:nth-child(3) { animation-delay: 0.3s; }
    .drawer .item:nth-child(4) { animation-delay: 0.4s; }
    .drawer .item:nth-child(5) { animation-delay: 0.5s; }
    .drawer .item:nth-child(6) { animation-delay: 0.6s; }
    
    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .drawer .item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(56, 81, 107, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .drawer .item:hover {
        background: linear-gradient(135deg, rgba(56, 81, 107, 0.15), rgba(56, 81, 107, 0.1));
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(56, 81, 107, 0.2);
        border-color: rgba(56, 81, 107, 0.3);
        color: #2C3E50;
    }
    
    .drawer .item:hover::before {
        left: 100%;
    }
    
    .drawer .btns {
        margin: 12px 16px;
        padding: 0;
        border-radius: 12px;
        background: transparent;
        border: none;
        transition: all 0.3s ease;
    }

    
    .drawer .btns a {
        display: block;
        margin: 8px 0;
        padding: 16px 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(56, 81, 107, 0.08), rgba(56, 81, 107, 0.05));
        border: 1px solid rgba(56, 81, 107, 0.15);
        color: #38516B;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 0.3px;
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
        animation: slideInFromLeft 0.5s ease-out;
        animation-fill-mode: both;
    }
    
    .drawer .btns a:nth-child(1) { animation-delay: 0.1s; }
    .drawer .btns a:nth-child(2) { animation-delay: 0.2s; }
    .drawer .btns a:nth-child(3) { animation-delay: 0.3s; }
    .drawer .btns a:nth-child(4) { animation-delay: 0.4s; }
    .drawer .btns a:nth-child(5) { animation-delay: 0.5s; }
    .drawer .btns a:nth-child(6) { animation-delay: 0.6s; }
    
    .drawer .btns a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(56, 81, 107, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .drawer .btns a:hover {
        background: linear-gradient(135deg, rgba(56, 81, 107, 0.15), rgba(56, 81, 107, 0.1));
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(56, 81, 107, 0.2);
        border-color: rgba(56, 81, 107, 0.3);
        color: #2C3E50;
    }
    
    .drawer .btns a:hover::before {
        left: 100%;
    }
    
    /* 移动端抽屉菜单动画优化 */
    .el-dialog__wrapper {
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.3);
        animation: fadeIn 0.3s ease-out;
    }
    
    .el-dialog {
        border-radius: 20px !important;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideInUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .el-dialog__header {
        background: linear-gradient(135deg, rgba(56, 81, 107, 0.1), rgba(56, 81, 107, 0.05));
        border-bottom: 1px solid rgba(56, 81, 107, 0.2);
        padding: 20px 24px;
        position: relative;
    }
    
    .el-dialog__header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #38516B, #4A90E2, #38516B);
    }
    
    .el-dialog__body {
        padding: 0 !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    }
    
    .el-dialog__close {
        color: #38516B !important;
        font-size: 20px !important;
        transition: all 0.3s ease;
    }
    
    .el-dialog__close:hover {
        color: #4A90E2 !important;
        transform: rotate(90deg) scale(1.1);
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .floatingResourceCount .count-content {
        padding: 8px 12px;
        border-radius: 16px;
    }
    
    .floatingResourceCount .count-text {
        font-size: 12px;
        margin-right: 6px;
    }
    
    .floatingResourceCount .count-number {
        font-size: 16px;
        margin-right: 4px;
    }
    
    .floatingResourceCount .count-unit {
        font-size: 12px;
    }
    
    .homeBox .resourceCount .count-text {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .homeBox .resourceCount .count-number {
        font-size: 20px;
        margin-right: 5px;
    }
    
    .homeBox .resourceCount .count-unit {
        font-size: 14px;
    }
}

/* 小屏幕优化 */
@media (max-width: 480px) {
    .floatingResourceCount {
        bottom: 10px;
        right: 10px;
    }
    
    .floatingResourceCount .count-content {
        padding: 6px 10px;
        border-radius: 14px;
    }
    
    .floatingResourceCount .count-text {
        font-size: 11px;
        margin-right: 4px;
    }
    
    .floatingResourceCount .count-number {
        font-size: 14px;
        margin-right: 3px;
    }
    
    .floatingResourceCount .count-unit {
        font-size: 11px;
    }
    
    .homeBox .resourceCount .count-text {
        font-size: 13px;
        margin-right: 6px;
    }
    
    .homeBox .resourceCount .count-number {
        font-size: 18px;
        margin-right: 4px;
    }
    
    .homeBox .resourceCount .count-unit {
        font-size: 13px;
    }
}

/* 分类标题链接样式 */
.homeBox .nav .nav-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.homeBox .nav .nav-link:hover {
    color: var(--theme-theme);
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.homeBox .nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-theme), #ff6b6b);
    transition: width 0.3s ease;
}

.homeBox .nav .nav-link:hover::after {
    width: 100%;
}

/* 分类页面样式 */
.categoryHeader {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.categoryInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.categoryIcon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.categoryTitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color);
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.categoryDesc {
    font-size: 16px;
    color: var(--theme-color);
    opacity: 0.8;
    margin: 0;
}

.categoryDesc .count {
    color: var(--theme-theme);
    font-weight: 600;
}

.categoryList {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.resourceGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    justify-content: start;
    align-items: start;
    width: 100%;
    grid-auto-rows: minmax(120px, auto);
}

.resourceItem {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.resourceItem:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--theme-theme);
}

.resourceLink {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

.resourceContent {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.resourceTitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-color);
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.resourceMeta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-top: auto;
}

.resourceDate {
    color: var(--theme-color);
    opacity: 0.7;
}

.resourceType {
    background: linear-gradient(135deg, #518D91, #9EB1BA);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.pageBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--theme-color);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pageBtn:hover {
    background: var(--theme-theme);
    color: white;
    transform: translateY(-2px);
}

.pageInfo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--theme-color);
}

.currentPage {
    font-weight: 600;
    color: var(--theme-theme);
}

/* 跳转页码功能样式 */
.pageJump {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.jumpLabel {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 500;
    white-space: nowrap;
}

.jumpInput {
    width: 60px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--theme-color);
    font-size: 14px;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

.jumpInput:focus {
    border-color: var(--theme-theme);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(0, 89, 169, 0.2);
}

.jumpInput::-webkit-outer-spin-button,
.jumpInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.jumpInput[type=number] {
    -moz-appearance: textfield;
}

.jumpBtn {
    height: 32px;
    padding: 0 12px;
    background: linear-gradient(135deg, #518D91, #9EB1BA);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.jumpBtn:hover {
    background: linear-gradient(135deg, #004080, #0088CC);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 89, 169, 0.3);
}

.jumpBtn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 89, 169, 0.3);
}

.emptyState {
    text-align: center;
    padding: 60px 20px;
}

.emptyIcon {
    font-size: 64px;
    color: var(--theme-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.emptyState h3 {
    font-size: 24px;
    color: var(--theme-color);
    margin: 0 0 12px 0;
}

.emptyState p {
    color: var(--theme-color);
    opacity: 0.7;
    margin: 0 0 30px 0;
}

.backHome {
    display: inline-block;
    padding: 12px 24px;
    background: var(--theme-theme);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.backHome:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
}

.categoryNav {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.categoryNav h3 {
    font-size: 20px;
    color: var(--theme-color);
    margin: 0 0 20px 0;
    text-align: center;
}

.navGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.navItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--theme-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navItem:hover {
    background: rgba(238, 238, 238, 0.6);
    color: var(--theme-theme);
    transform: translateY(-2px);
}

.navItem img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.navItem span {
    font-size: 14px;
    font-weight: 500;
}

/* 中等屏幕优化 */
@media (max-width: 1024px) {
    .resourceGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* 移动端优化 */
@media (max-width: 768px) {
    .categoryHeader {
        padding: 20px 15px;
        margin: 15px auto;
        max-width: calc(100% - 30px);
    }
    
    .categoryInfo {
        flex-direction: column;
        gap: 15px;
    }
    
    .categoryTitle {
        font-size: 24px;
    }
    
    .resourceGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
        grid-auto-rows: minmax(100px, auto);
    }
    
    .categoryList {
        padding: 0;
        max-width: 100%;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .pageJump {
        order: -1;
        margin: 0;
        padding: 6px 10px;
    }
    
    .jumpInput {
        width: 50px;
        height: 28px;
        font-size: 13px;
    }
    
    .jumpBtn {
        height: 28px;
        padding: 0 10px;
        font-size: 13px;
    }
    
    .jumpLabel {
        font-size: 13px;
    }
    
    .categoryNav {
        margin: 15px auto;
        padding: 30px 15px;
        max-width: calc(100% - 30px);
    }
    
    .navGrid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }
}

/* 小屏幕优化 */
@media (max-width: 480px) {
    .resourceGrid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .resourceItem {
        min-height: 100px;
    }
    
    .resourceLink {
        padding: 12px;
    }
    
    .resourceTitle {
        font-size: 14px;
    }
    
    .resourceMeta {
        font-size: 12px;
    }
}

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

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

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

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

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


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

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

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

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

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

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

.home .nav img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

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


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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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



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

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

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

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

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

.listBox .nav img {
    width: 22px;
    height: 22px;
    margin-right: 12px;
}

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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


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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

.searchDetail {
    display: none;
}




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

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

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

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


.searchList {
    display: none;
}

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

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

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


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

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

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

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

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



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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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