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

.headerKox {
    height: 68px;
}

.headerBox .bg {
    position: absolute;
    inset: 0;
    box-shadow: 0 0px 0px rgba(214, 214, 214, .22);/*头部阴影*/
    background-color: var(--theme-other_background);
    transition: 'opacity 0.2s';
}

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

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

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

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


.headerBox .box .search {
    position: relative;
    flex: 1;
    height: 40px;
    border-radius: 10px;
    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: 10px;
    border: 1px solid var(--theme-color);
    opacity: .05;
}

.headerBox .box .search input {
    position: relative;
    z-index: 9;
    flex: 1;
    height: 100%;
    border-radius: 10px; /*头部搜索框角度*/
    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: 50px;
}

.homeBox .box {
    width: 600px;
    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;
}

.searchBox .search {
    position: relative;
    margin: auto;
    margin-top: 30px;
    background-color: var(--theme-other_background);
    box-shadow: 0 0px 0px rgba(225, 225, 225, 0.3); 
    width: 100%;
    height: 54px;
    border-radius: 10px;
    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: #FAFAFA  /*搜索图标颜色*/
}

.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;
    font-size: 11px;
}

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

.home .block {
    border-radius: 12px;
    background-color: var(--theme-other_background);
    box-shadow: 0 0px 0px 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;
}

/* 微博风格热搜榜 - 完全重写homeNO模块 */
.home.homeNO {
    display: block !important;
    width: 100%;
    max-width: 595px;
    margin: 25px auto 0;
    text-align: left !important;
}

.home.homeNO .block {
    margin: 0 !important;
    width: 100% !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid rgba(55, 65, 81, 0.5) !important;
    background: rgba(31, 41, 55, 0.6) !important;
    transition: box-shadow 0.3s ease, transform 0.2s ease !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: 0 0px 0px rgba(225, 225, 225, 0.3) !important;
    padding: 0 !important;
    padding-top: 0 !important;
}

.home.homeNO .block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* 热搜标题区域 */
.home.homeNO .nav {
    display: flex !important;
   /* justify-content: space-between !important;*/
    align-items: center !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5) !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #e5e7eb !important;
    position: relative !important;
}

/* 热搜图标 */
.home.homeNO .nav::before {
    content: "" !important;
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 16c3.314 0 6-2 6-5.5 0-1.5 0-4-2-7 0 0 4 1 6 4 2 3 2.5 6.5 0 10-2.5 3.5-6 4-10 3-3.5-1-6-3-6-6 0-4 3-6 6-6v1.5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    margin-right: 6px !important;
    flex-shrink: 0 !important;
}

/* 完全隐藏原有的图片 */
.home.homeNO .nav img {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

/* 热搜更多链接 */
.home.homeNO .nav a {
    color: #9ca3af !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
    margin-left: 0 !important;
    padding: 0 !important;
}

.home.homeNO .nav a:hover {
    color: #e5e7eb !important;
}

/* 热搜列表 */
.home.homeNO .content {
    min-height: auto !important;
    padding: 0 !important;
}

.home.homeNO .content .list {
    display: block !important;
    padding: 0 !important;
    flex-wrap: unset !important;
}

/* 完全重写item样式 */
.home.homeNO .content .list .item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    text-align: left !important;
    max-width: none !important;
    padding: 12px 14px !important;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3) !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    overflow: hidden !important;
    background: transparent !important;
}

.home.homeNO .content .list .item:hover {
    background: rgba(55, 65, 81, 0.3) !important;
    transform: none !important;
}

.home.homeNO .content .list .item:last-child {
    border-bottom: none !important;
}

/* 完全隐藏原有的图片容器 */
.home.homeNO .content .list .item .img {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

/* 数字排序 - 使用最高优先级 */
.home.homeNO .content .list .item::before {
    content: attr(data-rank) !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-right: 12px !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
    background: rgba(156, 163, 175, 0.2) !important;
    color: #9ca3af !important;
    position: relative !important;
    z-index: 10 !important;
    font-family: Arial, sans-serif !important;
    line-height: 1 !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* 前三名特殊颜色 - 最高优先级 */
.home.homeNO .content .list .item:nth-child(1)::before {
    background: #FE2D46 !important;
    color: white !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 4px rgba(254, 45, 70, 0.3) !important;
}

.home.homeNO .content .list .item:nth-child(2)::before {
    background: #FF6600 !important;
    color: white !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.3) !important;
}

.home.homeNO .content .list .item:nth-child(3)::before {
    background: #FAA90E !important;
    color: white !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 4px rgba(250, 169, 14, 0.3) !important;
}

/* 标题样式 */
.home.homeNO .content .list .item p {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    color: #e5e7eb !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-align: left !important;
    display: block !important;
    position: relative !important;
    z-index: 5 !important;
}

/* 完全隐藏原有的span元素 */
.home.homeNO .content .list .item p span {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

/* 热度标签 */
.home.homeNO .content .list .item::after {
    content: "" !important;
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #ef4444 !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease !important;
    z-index: 15 !important;
}

.home.homeNO .content .list .item.hot::after {
    opacity: 1 !important;
    animation: hotPulse 2s infinite !important;
}

/* 热度数值 */
.home.homeNO .content .list .item .heat {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 11px !important;
    color: #9ca3af !important;
    background: rgba(156, 163, 175, 0.1) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    z-index: 15 !important;
}

/* 移除所有原有的前三名颜色样式 */
.home.homeNO .content .list .item:nth-child(1) p span,
.home.homeNO .content .list .item:nth-child(2) p span,
.home.homeNO .content .list .item:nth-child(3) p span {
    color: inherit !important;
    display: none !important;
    visibility: hidden !important;
}

/* 查看更多链接 */
.home.homeNO .content .list .more-link {
    display: block !important;
    text-align: center !important;
    padding: 12px !important;
    color: #9ca3af !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
    border-top: 1px solid rgba(55, 65, 81, 0.3) !important;
}

.home.homeNO .content .list .more-link:hover {
    color: #e5e7eb !important;
}

/* 热度脉冲动画 */
@keyframes hotPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1.2);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .home.homeNO {
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    
    .home.homeNO .content .list .item {
        padding: 10px 12px !important;
    }
    
    .home.homeNO .content .list .item::before {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        font-size: 11px !important;
        margin-right: 10px !important;
    }
    
    .home.homeNO .content .list .item p {
        font-size: 13px !important;
    }
    
    .home.homeNO .content .list .item .heat {
        font-size: 10px !important;
        padding: 1px 4px !important;
    }
}

.el-dialog {
    background-color:#FFFFFF; /*弹出窗口背景色*/
}

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

.layerBox .vbtn {
    background-color: #169347;
    color: #FFFFFF;
    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: 1000px;/*去除右边 原先1200*/
    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: 0.5px solid #1f2937;
}

.listBox .left .list .item .title {
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 4px;
    color: #FFFFFF; 
}

.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: 0px;/*去除右边 原先300*/
    margin-left: 0px;/*去除右边 原先20*/
}

.listBox .box {
    border-radius: 12px;
    background-color: var(--theme-other_background);
    box-shadow: 0 0px 0px 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: #FFFFFF;  /*网盘文字颜色*/
}


.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: #FFFFFF;
}

.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: #FFFFFF;
    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: 10px;
    background-color: #DC2626;
    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: 10px;
    border: 1px solid var(--theme-color);
    opacity: .1;
}

.details .btns .btn.btnCol {
    background-color: #16A34A;
    color:#FFFFFF;
}

.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;
}
*/
.loader {
    position: relative;
    display: inline-block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold; /* 添加加粗 */
    color: #ffffff;
    text-align: center;
    width: 100%;
}

.loader::before {
    content: "全网检索中，请稍等";
    color: #ffffff;
    font-weight: bold; /* 继承加粗效果 */
}

.loader::after {
    content: "...";
    animation: dots 1.5s steps(4, end) infinite;
    display: inline-block;
    width: 20px;
    text-align: left;
    font-weight: bold; /* 确保点也加粗 */
}




@keyframes dots {
    0%, 20% {
        content: ".";
    }
    40% {
        content: "..";
    }
    60%, 100% {
        content: "...";
    }
}

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


.listBox .Ebox {
    border-radius: 12px;
    background-color: var(--theme-other_background);
    box-shadow: 0 0px 0px 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: #ffffff;
    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: #FFFFFF;
}

.btns2 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 30px;
    line-height: 30px;
    color: #FFFFFF;
    background-color: #16A34A;  /*搜出来获取资源按钮*/
    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;
}

.feedback-modal {
            display: none !important;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .feedback-modal.show {
            display: flex !important;
            visibility: visible;
            opacity: 1;
        }
        
        .feedback-content {
            background-color: var(--theme-other_background);
            border-radius: 12px;
            padding: 20px;
            width: 320px;
            max-width: 90vw;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            transition: transform 0.3s ease;
            margin: 0;
            position: relative;
        }
        
        .feedback-modal.show .feedback-content {
            transform: scale(1);
        }
        
        .feedback-title {
            font-size: 16px;
            font-weight: bold;
            color: var(--theme-color);
            margin-bottom: 16px;
            text-align: center;
        }
        
        .feedback-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .feedback-btn {
            padding: 10px 16px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            width: 100%;
        }
        
        .report-btn {
            background-color: #dc2626;
            color: white;
        }
        
        .report-btn:hover {
            background-color: #b91c1c;
            transform: translateY(-1px);
        }
        
        .invalid-btn {
            background-color: #d97706;
            color: white;
        }
        
        .invalid-btn:hover {
            background-color: #b45309;
            transform: translateY(-1px);
        }
        
        .cancel-btn {
            background-color: #6b7280;
            color: white;
        }
        
        .cancel-btn:hover {
            background-color: #4b5563;
            transform: translateY(-1px);
        }
        
        /* 按钮图标样式调整 */
        .btns .btn i.icon-fankui {
            font-size: 18px;
            margin-right: 5px;
        }
        
 /* 响应式设计 */
        @media (max-width: 768px) {
            .feedback-content {
                width: 280px;
                padding: 16px;
                margin: 0 16px;
            }
            
            .feedback-title {
                font-size: 15px;
                margin-bottom: 14px;
            }
            
            .feedback-btn {
                padding: 9px 14px;
                font-size: 13px;
            }
            
            .feedback-buttons {
                gap: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .feedback-content {
                width: 260px;
                padding: 14px;
            }
            
            .feedback-title {
                font-size: 14px;
            }
            
            .feedback-btn {
                padding: 8px 12px;
                font-size: 12px;
            }
        }
        

   /* <style>*/
        /* 表格列表容器 */
        .table-list {
            width: 100%;
            background: var(--theme-other_background, #ffffff);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 10px 0;
        }

        /* 表格头部 - 调整列宽比例，给标题更多空间 */
        .table-header {
            display: grid;
            grid-template-columns: 50% 12% 18% 20%; /* 调整：标题50%，时间12%，来源28%，操作10% */
            background: transparent;
            color: var(--theme-color, #374151);
            font-weight: 600;
            font-size: 16px; /* 字号加大一号 */
            border-bottom: 0.1px solid var(--theme-border, #4a4b4d);
        }

        .header-cell {
            padding: 12px 8px;
            display: flex;
            align-items: center;
            border-right: none;
            font-size: 15px; /* 字号加大一号 */
        }

        /* 表格主体 */
        .table-body {
            /* 去除滚动框 */
        }

        .table-row {
            display: grid;
            grid-template-columns: 50% 12% 18% 20%; /* 调整：标题50%，时间12%，来源28%，操作10% */
            border-bottom: 0.1px solid var(--theme-border, #4a4b4d);
            transition: background-color 0.2s ease;
        }

        .table-row:hover {
            background: var(--theme-background, #f9fafb);
        }

        .table-row:last-child {
            border-bottom: none;
        }

        /* 表格单元格 */
        .table-cell {
            padding: 12px 8px;
            display: flex;
            align-items: center;
            border-right: none;
            font-size: 15px; /* 字号加大一号 */
            overflow: hidden;
        }

        /* 标题单元格 */
        .title-cell {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            padding: 12px 8px;
            min-width: 0;
        }

        .title-link {
            color:  #ffffff;
            font-weight: 500;
            text-decoration: none;
            line-height: 1.3;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            word-break: keep-all;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            font-size: 16px; /* 标题字号加大一号 */
        }

        .title-link:hover {
            color: var(--theme-theme, #2563eb);
            text-decoration: underline;
        }

        .extract-code {
            font-size: 13px; /* 字号加大一号 */
            color: var(--theme-danger, #ef4444);
            background: rgba(239, 68, 68, 0.1);
            padding: 1px 4px;
            border-radius: 3px;
            font-weight: 500;
            white-space: nowrap;
        }

        /* 时间单元格 */
        .time-cell {
            justify-content: center;
            padding: 12px 8px;
            min-width: 0;
        }

        .time-badge {
            color: var(--theme-color, #6b7280);
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 13px; /* 字号加大一号 */
            font-weight: 500;
            white-space: nowrap;
            background: transparent;
        }

        /* 来源单元格 */
        .source-cell {
            justify-content: center;
            padding: 12px 8px;
            min-width: 0;
        }

        .source-tag {
            display: flex;
            align-items: center;
            gap: 3px;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 13px; /* 字号加大一号 */
            font-weight: 500;
            white-space: nowrap;
        }

        .source-tag[data-type="1"] {
            background: #ff9500;
            color: white;
        }

        .source-tag[data-type="2"] {
            background: #2b6ce6;
            color: white;
        }

        .source-tag[data-type="3"] {
            background: #ff6900;
            color: white;
        }

        .source-tag[data-type="4"] {
            background: #00a6fb;
            color: white;
        }

        .source-tag[data-type="5"] {
            background: #4caf50;
            color: white;
        }

        .source-tag i {
            font-size: 14px; /* 图标字号加大一号 */
        }

        /* 操作单元格 */
        .action-cell {
            justify-content: center;
            padding: 12px 8px;
            min-width: 0;
        }

        .action-buttons {
            display: flex;
            gap: 6px;
            justify-content: center;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 3px;
            padding: 4px 8px;
            border: none;
            border-radius: 4px;
            font-size: 14px; /* 字号加大一号 */
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            white-space: nowrap;
        }

        .action-btn i {
            font-size: 13px; /* 图标字号加大一号 */
        }

        .access-btn {
            background: var(--theme-theme, #3b82f6);
            color: white;
        }

        .access-btn:hover {
            background: var(--theme-theme, #2563eb);
            transform: translateY(-1px);
        }

        /* 手机端第二行样式 */
        .second-row {
            display: none;
        }

        /* 响应式设计 - 手机端两行布局 */
        @media (max-width: 768px) {
            .table-header {
                display: none;
            }

            .table-row {
                display: grid;
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                gap: 10px; /* 增加标题和第二行的间距，从4px调整到10px */
                padding: 8px;

            }

            .table-row:hover {
                background: var(--theme-background, #f9fafb);
            }

            /* 隐藏桌面端元素 */
            .table-cell.time-cell,
            .table-cell.source-cell,
            .table-cell.action-cell {
                display: none;
            }

            /* 显示手机端第二行 */
            .second-row {
                display: flex;
                align-items: center;
                gap: 6px;
                justify-content: space-between;
                padding: 2px 0;
            }

            /* 第一行：标题 */
            .title-cell {
                grid-column: 1;
                grid-row: 1;
                padding: 0;
                gap: 4px;
                width: auto;
                max-width: none;
                min-width: auto;
            }

            .title-link {
                font-size: 17px; /* 手机端标题更大 */
                width: 100%;
                max-width: 100%;
                min-width: 100%;
            }

            .extract-code {
                font-size: 14px; /* 手机端字号加大 */
            }

            /* 第二行元素样式 - 字体调大 */
            .second-row .time-badge {
                font-size: 14px; /* 从12px调整到13px */
                padding: 1px 4px;
               /* border: 0.3px solid var(--theme-border, #e5e7eb);*/
            }

            .second-row .source-tag {
                font-size: 13px; /* 从12px调整到13px */
                padding: 1px 4px;
                gap: 2px;
                border: 0.2px solid var(--theme-border, #e5e7eb)
            }

            .second-row .source-tag i {
                font-size: 14px; /* 从12px调整到13px */
            }

            .second-row .action-btn {
                font-size: 13px; /* 从12px调整到13px */
                padding: 2px 6px;
                gap: 2px;
            }

            .second-row .action-btn i {
                font-size: 15px; /* 从12px调整到13px */
            }
        }

        /* 平板端优化 - 调整百分比 */
        @media (max-width: 1024px) and (min-width: 769px) {
            .table-header,
            .table-row {
                grid-template-columns: 60% 15% 25%; /* 平板端三列：标题60%，时间15%，来源25% */
            }
            
            .action-cell {
                display: none;
            }

            .second-row {
                display: none;
            }
        }

        /* 超大屏幕优化 - 调整百分比 */
        @media (min-width: 1200px) {
            .table-header,
            .table-row {
                grid-template-columns: 55% 12% 18% 15%; /* 超大屏幕：标题55%，时间12%，来源28%，操作5% */
            }
        }

        /* 深色主题适配 */
        @media (prefers-color-scheme: dark) {
            .table-list {
                background: var(--theme-other_background, #1f2937);
            }
            
            .table-header {
                color: var(--theme-color, #d1d5db);
            }
            
            .table-row:hover {
                background: var(--theme-background, #111827);
            }
            
            .time-badge {
                color: var(--theme-color, #9ca3af);
                border-color: var(--theme-border, #374151);
            }
        }
    /*</style>*/
   /* <style>

        
        /* 图文模式固定广告特殊样式 */
        .home .content .list .fixed-ad {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 8px;
        }
        
        .home .content .list .fixed-ad:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
        }
        
        .home .content .list .fixed-ad .img {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
        }
        
        .home .content .list .fixed-ad p {
            color: #FF6B6B;
            font-weight: bold;
        }
        
        /* 文字模式固定广告特殊样式 */
        .home.homeNO .content .list .fixed-ad {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
            border-left: 1px solid #ef4444;
        }
        
        .home.homeNO .content .list .fixed-ad:hover {
            background: rgba(239, 68, 68, 0.15);
        }
        
        .home.homeNO .content .list .fixed-ad::before {
            background: #ef4444 !important;
            color: white !important;
            content: "🔥" !important;
            font-size: 14px !important;
        }
        
        .home.homeNO .content .list .fixed-ad p {
            color: #ef4444 !important;
            font-weight: 600 !important;
        }
        
        /* 为不同区块设置不同颜色 */
        .block:nth-child(2) .home .content .list .fixed-ad .img {
            background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
        }
        
        .block:nth-child(2) .home .content .list .fixed-ad p {
            color: #4ECDC4;
        }
        
        .block:nth-child(2) .home.homeNO .content .list .fixed-ad {
            border-left-color: #4ECDC4;
            background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(78, 205, 196, 0.05) 100%);
        }
        
        .block:nth-child(2) .home.homeNO .content .list .fixed-ad::before {
            background: #4ECDC4 !important;
        }
        
        .block:nth-child(2) .home.homeNO .content .list .fixed-ad p {
            color: #4ECDC4 !important;
        }
        
        .block:nth-child(3) .home .content .list .fixed-ad .img {
            background: linear-gradient(135deg, #43E97B 0%, #38F9D7 100%);
        }
        
        .block:nth-child(3) .home .content .list .fixed-ad p {
            color: #43E97B;
        }
        
        .block:nth-child(3) .home.homeNO .content .list .fixed-ad {
            border-left-color: #43E97B;
            background: linear-gradient(135deg, rgba(67, 233, 123, 0.1) 0%, rgba(67, 233, 123, 0.05) 100%);
        }
        
        .block:nth-child(3) .home.homeNO .content .list .fixed-ad::before {
            background: #43E97B !important;
        }
        
        .block:nth-child(3) .home.homeNO .content .list .fixed-ad p {
            color: #43E97B !important;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .home .content .list .fixed-ad {
                margin: 6px 4px;
            }
            
            .home.homeNO .content .list .fixed-ad {
                padding: 10px 12px !important;
            }
        }
        /* 告示框样式 */
        .notice-box {
            margin: 15px 0;
            padding: 15px;
            border: 1px solid #f5efef;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .notice-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
            font-size: 20px;
            color: #ff6b6b;
        }

        .notice-content {
            flex: 1;
        }

        .notice-content h4 {
            margin: 0 0 8px 0;
            font-size: 16px;
            font-weight: 600;
            color: #ff6b6b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .notice-content h4::before {
            content: "";
            font-size: 18px;
        }

        .notice-content p {
            margin: 4px 0;
            font-size: 14px;
            color: #b9afaf;
            line-height: 1.4;
            position: relative;
            padding-left: 16px;
            text-indent: -16px;
            padding-left: 20px;
        }

        .notice-content p::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #9f9494;
            font-weight: bold;
        }

        /* 暗色模式适配 */
        [data-theme="dark"] .notice-box {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
            border-color: #ff8787;
        }

        [data-theme="dark"] .notice-content h4 {
            color: #ff8787;
        }

        [data-theme="dark"] .notice-content p {
            color: #ccc;
        }

        [data-theme="dark"] .notice-content p::before {
            color: #ff8787;
        }

        [data-theme="dark"] .notice-icon {
            color: #ff8787;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .notice-box {
                margin: 10px 0;
                padding: 12px;
                flex-direction: row;
                align-items: flex-start;
                text-align: left;
            }

            .notice-icon {
                margin-top: 0;
                margin-bottom: 0;
                margin-right: 8px;
                font-size: 18px;
            }

            .notice-content h4 {
                font-size: 15px;
                margin-bottom: 6px;
                margin-top: 0;
            }

            .notice-content p {
                font-size: 13px;
                padding-left: 20px;
                text-indent: -20px;
                margin-bottom: 6px;
            }
        }

        @media (max-width: 480px) {
            .notice-box {
                padding: 10px;
                margin: 8px 0;
            }

            .notice-icon {
                font-size: 16px;
                margin-right: 6px;
            }

            .notice-content h4 {
                font-size: 14px;
                margin-bottom: 5px;
            }

            .notice-content p {
                font-size: 12px;
                padding-left: 18px;
                text-indent: -18px;
                margin-bottom: 5px;
            }
        }
  /*  </style>*/

@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";
}
