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;
    transition: background-color 0.3s, color 0.3s;
}

/* 深色模式 */
body.dark-mode {
    --theme-color: #e5e5e5;
    --theme-background: #0f0f0f;
    --theme-other_background: #1a1a1a;
}

* {
    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: 60px;
    z-index: 99;
}

.headerKox {
    height: 60px;
}

.headerBox .bg {
    position: absolute;
    inset: 0;
    background-color: var(--theme-other_background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s;
}

body.dark-mode .headerBox .bg {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Logo区域 - 左侧 */
.headerBox .logoBox {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.headerBox .logoBox .logo {
    height: 36px;
}

.headerBox .logoBox .title {
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: var(--theme-theme);
}

/* 右侧导航区域 */
.headerBox .navRight {
    display: flex;
    align-items: center;
    gap: 20px;
}

.headerBox .navLink {
    font-size: 15px;
    color: var(--theme-color);
    padding: 6px 0;
}

.headerBox .navLink:hover {
    color: var(--theme-theme);
}

/* 顶部搜索框 */
.headerBox .search {
    position: relative;
    display: flex;
    align-items: center;
    width: 200px;
    height: 36px;
    background-color: var(--theme-background);
    border-radius: 36px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s;
}

.headerBox .search:focus-within {
    border-color: var(--theme-theme);
}

.headerBox .search .searchIcon {
    position: absolute;
    right: 12px;
    font-size: 16px;
    color: var(--theme-theme);
    pointer-events: none;
}

.headerBox .search input {
    flex: 1;
    height: 100%;
    background: transparent;
    padding: 0 35px 0 15px;
    font-size: 14px;
    color: var(--theme-color);
}

/* 深色模式切换按钮 */
.themeToggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.themeToggle:hover {
    background-color: rgba(168, 85, 247, 0.1);
}

.themeIcon {
    font-size: 18px;
    font-style: normal;
}

/* 导航项 */
.headerBox .navItem {
    font-size: 15px;
    color: var(--theme-color);
    cursor: pointer;
    white-space: nowrap;
}

.headerBox .navItem:hover {
    color: var(--theme-theme);
}

/* 移动端菜单按钮 */
.headerBox .mobileMenu {
    display: none;
    font-size: 22px;
    cursor: pointer;
}


/* ========== 首页主体 ========== */
.homeBox {
    width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 180px);
    padding: 30px 20px 0;
}

/* 搜索卡片 */
.searchCard {
    width: 100%;
    margin: 0 auto 30px;
    background: var(--theme-other_background);
    border-radius: 16px;
    padding: 50px 80px;
    box-shadow: 0 2px 12px rgba(168, 85, 247, 0.06);
    transition: background-color 0.3s, box-shadow 0.3s;
}

body.dark-mode .searchCard {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Hero 区域 */
.heroSection {
    text-align: center;
    margin-bottom: 30px;
}

.heroTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.heroTitle .heroLogo {
    height: 45px;
    margin-right: 12px;
}

.heroSubtitle {
    font-size: 16px;
    color: var(--theme-color);
    opacity: 0.6;
    text-align: center;
    margin-bottom: 30px;
}

/* 主搜索框 */
.searchWrapper {
    max-width: 500px;
    margin: 0 auto 25px;
}

.searchMain {
    display: flex;
    align-items: center;
    height: 52px;
    background-color: var(--theme-background);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--theme-background), var(--theme-background)), 
                      linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 52px;
    transition: box-shadow 0.3s;
}

.searchMain:focus-within {
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}

.searchMain input {
    flex: 1;
    height: 100%;
    background: transparent;
    padding: 0 20px;
    font-size: 15px;
    color: var(--theme-color);
}

.searchMain input::placeholder {
    color: var(--theme-color);
    opacity: 0.4;
}

.searchBtn {
    width: 46px;
    height: 46px;
    margin-right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    border-radius: 50%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.searchBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.searchBtn .iconfont {
    font-size: 20px;
    color: #fff;
}

/* 热搜词 */
.hotKeywords {
    max-width: 700px;  /* 👈 这里要和搜索框宽度保持一致 */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hotTag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--theme-background);
    border-radius: 20px;
    font-size: 14px;
    color: var(--theme-color);
    transition: all 0.3s;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.hotTag:hover {
    background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.hotIcon {
    font-style: normal;
    margin-right: 6px;
    font-size: 13px;
}


/* ========== 内容区域 ========== */
.home {
    margin-top: 30px;
}

.home .block {
    border-radius: 16px;
    background-color: var(--theme-other_background);
    box-shadow: 0 2px 12px rgba(168, 85, 247, 0.06);
    margin-bottom: 24px;
    padding: 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

body.dark-mode .home .block {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.home .nav {
    font-size: 18px;
    font-weight: bold;
    color: var(--theme-theme);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}

.home .nav img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.home .nav .navIcon {
    margin-right: 8px;
    font-size: 20px;
}

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

.home .content .list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home .content .list .item {
    position: relative;
    display: block;
    width: 140px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

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

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

.home .content .list .item .img {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--theme-background);
}

.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: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .content .list .item .img .titleLoading {
    font-size: 14px;
    padding: 10px;
    word-break: break-all;
}


/* 无图模式 */
.home.homeNO {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home.homeNO .block {
    margin: 0;
    width: calc(20% - 13px);
    flex-shrink: 0;
}

.home.homeNO .content .list {
    display: block;
}

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

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

.home.homeNO .content .list .item:hover {
    transform: none;
}

.home.homeNO .content .list .item p span {
    color: #c4c7ce;
    margin-right: 8px;
    font-weight: 500;
}

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


/* ========== 底部 ========== */
.footerBox {
    padding: 30px 15px 20px;
}

.footerBox .box {
    text-align: center;
    margin: auto;
    width: 1200px;
}

.footerBox .box p {
    opacity: .7;
    padding: 4px 0;
    font-size: 14px;
}


/* ========== 弹窗 ========== */
.el-dialog {
    background-color: var(--theme-other_background) !important;
}

.layerBox .vname {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: var(--theme-color);
}

.layerBox .vbtn {
    background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    color: #fff;
    height: 42px;
    line-height: 42px;
    text-align: center;
    margin-top: 15px;
    border-radius: 8px;
    cursor: pointer;
}

.layerBox .el-textarea textarea {
    background-color: var(--theme-background);
    border-radius: 8px;
    width: 100%;
    height: 200px;
    margin: 15px auto 0;
    padding: 15px;
    color: var(--theme-color);
}

.drawer .item {
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: var(--theme-color);
    text-align: center;
    cursor: pointer;
}

.drawer .item:hover {
    color: var(--theme-theme);
}

.drawer a {
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: var(--theme-color);
    text-align: center;
}


/* ========== 列表页 ========== */
.listBox {
    width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 180px);
    display: flex;
    padding: 0 20px;
}

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

.listBox h3:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    height: 18px;
    border-radius: 2px;
}

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

.listBox .nav {
    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 {
    flex: 1;
    min-width: 0;
}

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

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

body.dark-mode .listBox .left .list .item {
    border-bottom-color: #333;
}

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

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

.listBox .left .list .item .type::after {
    content: "\e619";
    position: absolute;
    top: -3px;
    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: 16px;
    background-color: var(--theme-other_background);
    box-shadow: 0 2px 12px rgba(168, 85, 247, 0.06);
    min-height: calc(100% - 71px);
    padding: 15px;
    transition: background-color 0.3s;
}

body.dark-mode .listBox .box {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

.listBox .right .list .item:hover {
    transform: none;
}

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

body.dark-mode .listBox .screen .box a {
    border-bottom-color: #333;
}

.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: 12px;
    background-color: var(--theme-background);
    margin: 0 auto 30px;
    overflow: hidden;
}

.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 {
    flex: 1;
    min-width: 0;
}

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

.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 {
    width: 125px;
    height: 38px;
    line-height: 38px;
    border-radius: 38px;
    background-color: var(--theme-background);
    margin: 0 15px;
    font-size: 14px;
    color: var(--theme-color);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

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

.details .btns .btn.btnCol,
.details .btns .btn:hover {
    background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    color: #fff;
    border-color: transparent;
}

.searchDetail {
    display: none;
}

.searchList {
    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: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    color: #fff;
}

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

.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: 16px;
    background-color: var(--theme-other_background);
    box-shadow: 0 2px 12px rgba(168, 85, 247, 0.06);
    padding: 15px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

body.dark-mode .listBox .Ebox {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.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: #999;
    cursor: pointer;
}

.listBox .details.samelistBox {
    padding: 25px 30px;
}

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

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

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

.samelist .item:hover {
    transform: none;
}

.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;
    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: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
}

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

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

.netdisk-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 15px;
    flex-wrap: wrap;
}

.netdisk-filter a {
    padding: 10px 24px;
    border-radius: 25px;
    background-color: var(--theme-background);
    color: var(--theme-color);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.netdisk-filter a:hover,
.netdisk-filter a.active {
    background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    color: #fff;
    transform: translateY(-2px);
}

.btns2 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 30px;
    color: #fff;
    background: linear-gradient(135deg, var(--theme-gradient-start), var(--theme-gradient-end));
    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: var(--theme-color);
}

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

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

body.dark-mode .dialogUrlBox .dialogUrl .tips {
    color: #999;
}

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

body.dark-mode .dialogUrlBox .dialogUrl .qrcode {
    border-color: #333;
}

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

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

.dialogUrlBox .dialogUrl .nav .item {
    color: var(--theme-color);
    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;
}

body.dark-mode .dialogUrlBox .dialogUrl .statement {
    border-top-color: #333;
}

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

body.dark-mode .dialogUrlBox .dialogUrl .statement .content {
    color: #999;
}

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

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


/* ========== 字体图标 ========== */
@font-face {
    font-family: "iconfont";
    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"; }
