/* 全局样式重置与基础设置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, sans-serif;
        }
        
        body {
            background-color: #F3F4F6 !important;
            color: #1F2937;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* 去除输入框焦点状态的默认样式 */
        #search-text:focus {
            outline: none; /* 清除默认的outline边框 */
            box-shadow: none; /* 清除可能存在的阴影效果 */
            border-color: inherit; /* 保持与非焦点状态相同的边框颜色 */
            background-color: transparent; /* 若有背景色变化可添加此句 */
        }
        
        button {
            border: none;
            cursor: pointer;
            background: none;
        }
        
        /*.container-main {*/
        /*    width: 100%;*/
        /*    max-width: 1200px;*/
        /*    margin: 0 auto;*/
        /*    padding: 0 16px;*/
        /*}*/
        
        /* 颜色系统 */
        .color-primary {
            color: #165DFF;
        }
        .sheng-icon{
            width: 16px;
            vertical-align: -2px;
            margin-right: 7px;
        }
        
        .color-secondary {
            color: #6B7280;
        }
        
        .color-red {
            color: #DC2626;
        }
        
        .color-green {
            color: #10B981;
        }
        
        .color-yellow {
            color: #D97706;
        }
        
        .color-purple {
            color: #7E22CE;
        }
        
        .bg-white {
            background-color: #FFFFFF;
        }
        
        .bg-primary {
            background-color: #165DFF;
        }
        
        .bg-primary-light {
            background-color: rgba(22, 93, 255, 0.1);
        }
        
        .bg-purple-light {
            background-color: #F3E8FF;
        }
        
        .bg-yellow-light {
            background-color: #FEF3C7;
        }
        
        .bg-green-light {
            background-color: #ECFDF5;
        }
        
        /* 边框与圆角 */
        .rounded-lg {
            border-radius: 8px;
        }
        
        .rounded-md {
            border-radius: 6px;
        }
        
        .rounded-full {
            border-radius: 9999px;
        }
        
        /* 阴影 */
        .shadow-sm {
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .shadow {
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .shadow-lg {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        /* 过渡动画 */
        .transition {
            transition: all 0.3s ease;
        }
        
        /* 顶部导航栏 */
        header {
            background-color: #FFFFFF;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 50;
            padding: 12px 0;
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
        }
        
        .logo i {
            color: #DC2626;
            margin-right: 4px;
        }
        
        .header-middle {
            display: none;
            align-items: center;
            gap: 24px;
        }
        
        .header-middle-text {
            font-size: 14px;
            color: #6B7280;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .header-icon {
            color: #6B7280;
            transition: color 0.2s ease;
        }
        
        .header-icon:hover {
            color: #165DFF;
        }
        
        .follow-btn {
            font-size: 14px;
            color: #FFFFFF;
            background-color: #165DFF;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background-color 0.2s ease;
        }
        
        .follow-btn:hover {
            background-color: rgba(22, 93, 255, 0.9);
        }
        
        /* 主体内容容器 */
        .main-container {
            /*display: flex;*/
            flex: 1;
            overflow: hidden;
        }
        
        /* 左侧导航 */
        .sidebar-left {
            width: 110px;
            position: fixed;
            display: table-cell;
            height: 100vh;
            z-index: 1081;
            background: #fff;
            opacity: 1 !important;
        }
        
        .sidebar-nav {
            padding: 16px 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .sidebar-nav-header {
            /*padding: 0 12px 12px;*/
            display: flex;
            align-items: center;
            justify-content: center;
            /*margin-bottom: 30px;*/
            line-height: 100px;
            text-align: center;
        }
        .sidebar-nav-header .logo-light{
            max-height: 60px;
        }
        
        .sidebar-nav-title {
            font-size: 12px;
            color: #6B7280;
            text-transform: uppercase;
            font-weight: 600;
            display: none;
        }
        
        .sidebar-nav-item {
            display: flex;
            align-items: center;
            /*transition: background-color 0.2s ease;*/
            justify-content: center;
            padding: 15px 10px 12px;
            margin: 0 12px;
            flex-direction: column;
        }
        
        .sidebar-nav-item i {
            width: 32px;
            text-align: center;
        }
        
        .sidebar-nav-item span {
            /*margin-left: 8px;*/
            display: inherit
;
            margin-top: 5px;
            /*color: rgba(0, 0, 0, 0.9);*/
        }
        
        .sidebar-nav-item:hover {
            background-color: #f1f2f3;
            border-radius: 11px;
        }
        
        .sidebar-nav-item.nav-active {
            background-color: rgba(22, 93, 255, 0.1);
            color: #165DFF;
            border-left: 4px solid #165DFF;
        }
        
        .sidebar-nav-bottom {
            margin-top: auto;
        }
        
        .call-hardcore {
            color: #10B981;
        }
        
        .sidebar-copyright {
            padding: 8px 12px;
            display: none;
        }
        
        .sidebar-copyright-text {
            font-size: 12px;
            color: #6B7280;
        }
        
        /* 主内容区 */
        .content {
            flex: 1;
            overflow-y: auto;
            /*background-color: #F9FAFB;*/
            /*padding: 16px;*/
        }
        .content-layout {
            min-height: 100vh;
            margin-right: 20px;
            margin-bottom: 40px;
            border-radius: 14px;
            padding: 30px 15px 15px;
            /*background-color: #F9FAFB;*/
            background: #fff;
        }
        
        /* 搜索区域 */
        .search-section {
            margin-bottom: 32px;
            background-color: #FFFFFF;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            padding: 16px;
        }
        
        .search-tabs {
            display: flex;
            border-bottom: 1px solid #E5E7EB;
            padding-bottom: 12px;
            margin-bottom: 16px;
        }
        
        .search-tab {
            font-size: 20px;
            font-weight: 600;
            margin-right: 16px;
            padding-bottom: 4px;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        
        .search-tab.active {
            color: #165DFF;
            border-bottom: 2px solid #165DFF;
        }
        
        .search-tab:not(.active) {
            color: #6B7280;
        }
        
        .search-tab:not(.active):hover {
            color: #165DFF;
        }
        .text-lg {
            font-size: 1.125rem !important;
        }
        
        .search-box {
            position: relative;
            margin-bottom: 16px;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #D1D5DB;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
        }
        
        .search-input:focus {
            border-color: #165DFF;
            box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.5);
        }
        
        .search-btn {
            position: absolute;
            right: 8px;
            top: 8px;
            background-color: #165DFF;
            color: #FFFFFF;
            padding: 8px;
            border-radius: 8px;
            transition: background-color 0.2s ease;
        }
        
        .search-btn:hover {
            background-color: rgba(22, 93, 255, 0.9);
        }
        
        .search-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .search-tag {
            font-size: 14px;
            cursor: pointer;
        }
        
        .search-tag.active {
            color: #165DFF;
            text-decoration: underline;
        }
        
        .search-tag:not(.active) {
            color: #6B7280;
        }
        
        .search-tag:not(.active):hover {
            color: #165DFF;
            text-decoration: underline;
        }
        
        .search-notice {
            background-color: #F3E8FF;
            color: #7E22CE;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search-notice i {
            margin-right: 8px;
        }
        
        /* 影视子分类 */
        .category-section {
            margin-left: 8px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            /*margin-bottom: 16px;*/
        }
        
        .category-tag {
            font-size: 14px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 9999px;
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        
        .category-tag.active {
            background-color: rgba(22, 93, 255, 0.1);
            color: #165DFF;
        }
        
        .category-tag:not(.active) {
            color: #6B7280;
        }
        
        .category-tag:not(.active):hover {
            background-color: #F3F4F6;
        }
        
        .category-more {
            margin-left: auto;
            font-size: 14px;
            color: #165DFF;
            cursor: pointer;
        }
        
        .category-more:hover {
            text-decoration: underline;
        }
        
        /* 合作推荐 */
        .recommend-section {
            margin-bottom: 10px;
        }
        
        .recommend-header {
            display: flex;
            align-items: center;
            justify-content: start;
            margin-bottom: 10px;
            margin-left: 8px;
        }
        
        .recommend-title {
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .recommend-title i {
            color: #DC2626;
            margin-right: 8px;
        }
        
        .recommend-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        
        .recommend-card {
            background-color: #FFFFFF;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            padding: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .recommend-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }
        
        .recommend-card-title {
            font-size: 14px;
            font-weight: 500;
        }
        
        .recommend-card-desc {
            font-size: 12px;
            color: #6B7280;
            margin-top: 4px;
        }
        
        /* 影视资源列表 */
        .resources-section {
            margin-bottom: 10px;
        }
        
        .resources-grid {
            /*display: grid;*/
            /*grid-template-columns: repeat(2, 1fr);*/
            /*gap: 16px;*/
            display: flex;
            flex-wrap: wrap;
        }
        
        .resource-card {
           
            
        }
        .list-item-box{
             position: relative;
            background-color: #FFFFFF;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            /*overflow: hidden;*/
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #dee2e6;
        }
        .list-item-box:hover {
            /*box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);*/
            /*transform: translateY(-4px);*/
            background: #f1f2f3;
            transform: none;
            box-shadow: none;
        }
        .site-togoicon{
            top: 0;
            right: 0;
            padding: 2px 6px 0 0;
            position: absolute;
            opacity: .55;
            z-index: 1;
            display: flex;
            color: #837adc;
        }
        .site-togoicon span {
            font-size: 0;
            height: 24px;
            width: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .site-togoicon span i {
            font-size: 13px;
        }
        
        .resource-card:hover {
            /*box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);*/
            /*transform: translateY(-4px);*/
            /*background: #f1f2f3;*/
            /*transform: none;*/
            /*box-shadow: none;*/
        }
        
        .resource-card-content {
            padding: 1.388rem .725rem;
            display: flex;
            flex: 1 1 auto;
            min-height: 1px;
            align-items: center !important;
        }
        
        .resource-card-inner {
            display: flex;
            align-items: flex-start;
        }
        
        .resource-icon {
            /*width: 40px;*/
            /*height: 40px;*/
            /*border-radius: 6px;*/
            /*display: flex;*/
            /*align-items: center;*/
            /*justify-content: center;*/
            /*margin-right: 12px;*/
            
            
                height: 24px;
                width: 24px;
                margin: 0 12px 0 5px;
                border-radius: 3px;
                background: transparent;
        }
        
        .resource-info {
            padding-right: 0;
            flex: 1 1 auto !important;
            overflow: hidden;
        }
        
        .resource-title {
            font-size: 14px;
            font-weight: 500;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .resource-desc {
            margin: 0 !important;
            font-size: 12px;
            color: #6B7280;
            margin-top: 4px;
            
            transition: opacity .1s;
            opacity: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: block;
        }
        
        /* 右侧边栏 */
        .sidebar-right {
            /*margin-left: 20px;*/
            width: 236px;
            /*background-color: #FFFFFF;*/
            /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);*/
            /*border-left: 1px solid #E5E7EB;*/
            flex-shrink: 0;
            overflow-y: auto;
            display: none;
        }
        
        .sidebar-right-detail {
            width: 280px;
            flex-shrink: 0;
            overflow-y: auto;
            display: none;
        }
        
        .sidebar-module {
            margin-bottom: 15px;
            padding: 16px;
            border-bottom: 1px solid #E5E7EB;
            border-radius: 14px;
            background-color: #F9FAFB;
            
        }
        
        .sidebar-module-title {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .sidebar-module-title span:last-child {
            /*margin-left: 12px;*/
            font-size: 16px;
            color: #6B7280;
            cursor: pointer;
        }
        
        .sidebar-module-title span:last-child:hover {
            color: #165DFF;
        }
        
        .hot-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .hot-item {
            display: flex;
            align-items: center;
        }
        
        .hot-item-icon {
            width: 16px;
            height: 16px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
        }
        
        .hot-item-name {
            font-size: 14px;
        }
        
        .welfare-module {
            background-color: #FEF3C7;
            border-bottom: none;
        }
        
        .welfare-title {
            font-weight: 600;
            margin-bottom: 12px;
            color: #92400E;
        }
        
        .welfare-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .welfare-item {
            background-color: #FFFFFF;
            border-radius: 6px;
            padding: 8px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .welfare-item-title {
            font-size: 14px;
            font-weight: 500;
        }
        
        .welfare-item-desc {
            font-size: 12px;
            color: #6B7280;
            margin-top: 2px;
        }
        
        .qrcode-module {
            text-align: center;
            padding: 16px;
        }
        
        .qrcode-title {
            font-size: 14px;
            font-weight: 500;
            color: #059669;
            margin-bottom: 8px;
        }
        
        .feedback-btn {
            background-color: #059669;
            color: #FFFFFF;
            font-size: 14px;
            padding: 4px 12px;
            border-radius: 6px;
            margin-bottom: 12px;
            width: 100%;
            transition: background-color 0.2s ease;
        }
        
        .feedback-btn:hover {
            background-color: #047857;
        }
        
        .qrcode-container {
            background-color: #FFFFFF;
            display: inline-block;
            padding: 8px;
            border-radius: 6px;
            margin-bottom: 8px;
        }
        
        .qrcode-placeholder {
            width: 128px;
            height: 128px;
            background-color: #E5E7EB;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qrcode-desc {
            font-size: 12px;
            color: #6B7280;
        }
        
        /* 页脚 */
        footer {
            background-color: #FFFFFF;
            border-top: 1px solid #E5E7EB;
            padding: 16px 0;
        }
        
        .footer-content {
            text-align: center;
            font-size: 14px;
            color: #6B7280;
        }
        
        .footer-content p:last-child {
            margin-top: 4px;
        }
        
        .logo{
            /*width: 45px;*/
            height: 60px;
        }
        .category-name{
            margin-left: 5px;
            font-size: 18px;
        }
        /* 1. 导航栏容器：相对定位（作为锚点绝对定位的参考） */
        .nav-pills.menu {
            position: relative;
        }

        /* 2. 选中锚点：添加过渡动画，确保移动平滑 */
        .nav-pills .anchor {
            transition: left 0.2s ease; /* 左移动画，0.2秒平滑过渡 */
            background: #007bff; /* 锚点背景色（方便可视化，可自定义） */
            border-radius: 3px; /* 圆角，可选 */
            z-index: 1; /* 确保锚点在标签下方，不遮挡文字 */
        }

        /* 3. 导航标签：添加内边距（确保锚点位置匹配） */
        .nav-pills .nav-link {
            padding: 6px 15px; /* 统一标签内边距，避免锚点位置偏移 */
            position: relative;
            z-index: 2; /* 标签文字在锚点上方，确保可读 */
        }
        .slider_menu[sliderTab]>.menu {
            position: relative;
            white-space: nowrap;
            flex-wrap: initial;
        }
        
        .nav {
            display: -ms-flexbox;
            display: flex
        ;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
        }
        dl, ol, ul {
            margin-top: 0;
            margin-bottom: 1rem;
        }
        .slider_menu.mini_tab[sliderTab]>.menu>li {
            margin: 0 3px;
            padding: 0 4px;
        }
        .slider_menu[sliderTab]>.menu>li {
            border-radius: 3px;
            /*bottom: 5px;*/
        }
        .slider_menu[sliderTab]>.menu>li {
            cursor: pointer;
            width: auto;
            height: auto;
        }
        .slider_menu.mini_tab[sliderTab]>.menu>li>a {
            padding: 0;
            line-height: 24px;
            color: #666;
        }
        .slider_menu.mini_tab[sliderTab]>.menu>li>a {
            height: 28px;
            line-height: 28px;
            /*padding: 0 12px;*/
        }
        .slider_menu[sliderTab]>.menu>li>a {
            display: block;
            text-decoration: none;
            position: relative;
            color: #888;
            height: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 14px;
            padding: 0 16px;
            -webkit-transition: .25s;
            transition: .25s;
        }
        .nav-pills .nav-link {
            border-radius: .25rem;
        }
        .slider_menu[sliderTab] .anchor {
            bottom: 5px;
            height: 13px !important;
            background: #837adc;
            transform: skewX(-15deg);
            background: linear-gradient(to right, transparent 0%, #837adc 100%);
        }
        
        .adf{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }
        .adb{
            position: fixed;
            top: 0;
            left: 0;
            width: 200px;
            height: 100%;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 11111;
        }
        
        /*.slider_menu[sliderTab] .anchor {*/
            /*background: rgba(40, 53, 147, 1);*/
        /*    border-radius: 100px;*/
        /*    width: 60px;*/
        /*    height: 40px;*/
        /*    opacity: 0;*/
        /*    -webkit-transition: .35s;*/
        /*    transition: .35s;*/
        /*}*/
        .flex{
            display: flex;
            /*align-items: center;*/
        }
        .customize-width-main {
            max-width: 1900px;
        }
        .container-fluid-main {
            padding-right: 60px;
            padding-left: 60px;
        }
        a {
            /*color: #282a2d !important;*/
            outline: 0 !important;
            text-decoration: none;
        }
        .head-search-box{
            position: relative;
            margin: 0 auto;
            margin-top: 85px;
            margin-bottom: 60px;
            max-width: 800px;
        }
        .head-search-title{
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }
        .head-search-title label{
            margin-bottom: 10px;
            font-weight: 700;
            font-size: 18px;
        }
        .super-search-fm{
            position: relative;
        }
        #search-text{
            display: block;
            width: 100%;
            padding: 9px 20px;
            background: #fff !important;
            border: 2px solid #000 !important;
            color: initial;
            backdrop-filter: blur(5px);
            border-radius: 14px;
            height: 50px;
            font-size: 1pc;
            transition: .3s;
            font-weight: 400;
            line-height: 1.5;
        }
        #btn_search{
            position: absolute;
            top: 0;
            right: 0;
            border: 0 !important;
            width: unset;
            height: unset;
            margin: 4px;
            line-height: 42px;
            border-radius: 11px;
            padding: 0 12px;
            background: #000;
        }
        #search-list {
            position: relative;
            text-align: center;
        }
        .header-big .search-group {
            padding: 0;
            margin: 0 auto;
        }
        .s-current {
            display: flex;
        }
        .justify-content-center {
            justify-content: center !important;
        }
        .s-current .search-type {
            padding-left: 5px;
            display: initial;
        }
        .overflow-x-auto {
            overflow-x: auto;
            overflow-y: unset;
        }
        .search-type li {
            list-style: none;
            display: inline-block;
        }
        li {
            display: list-item;
            text-align: -webkit-match-parent;
            unicode-bidi: isolate;
        }
        .search-type label{
            padding: 10px 20px;
        }
        a:hover{
            text-decoration: none!important;
        }
        .pagenumber a:hover{
            background: none!important;
        }
        .s-search{
            margin: 0 15px;
        }
        .page-header {
            padding: 0!important;
            margin: 0!important;
            position: fixed;
            right: 0;
            left: 0;
            background: #fff;
            /*box-shadow: 0px 0px 25px 5px rgba(10, 10, 10, .05);*/
            transition: background-color .3s;
            z-index: 1000;
            box-shadow: none;
        }
        .navbar{
            margin-bottom: 0!important;
            position: relative;
            display: flex;
            /*flex-wrap: wrap;*/
            align-items: center;
            /*justify-content: space-between;*/
            padding: .51rem 1rem;
        }
        .sidebar-nav .iconfont{
            font-size: 25px!important;
        }
        .header-nav .iconfont{
            font-size: 22px!important;
        }
        img {
            vertical-align: middle;
            border-style: none;
        }
        .navbar-bran{
            padding: 0!important;
        }
        .navbar-brand-main {
            display: inline-block;
            padding-top: .3125rem;
            padding-bottom: .3125rem;
            /*margin-right: 1rem;*/
            font-size: 1.25rem;
            line-height: inherit;
            white-space: nowrap;
        }
        .text-center {
            text-align: center !important;
        }
        .w-100 {
            /*width: 100% !important;*/
        }
        .position-absolute {
            /*margin: auto;*/
            position: absolute !important;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
        .sidebar_right .content-wrap {
            width: 100%;
        }
        .content-wrap .iconfont{
            font-size: 24px;
        }
        .shengqian-box{
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            margin-left: -8px !important;
            margin-right: -8px !important;
        }
        .shengqian-card{
            /*background: red;*/
            /*width: calc(100% / 2);*/
        }
        .padding8{
            padding-left: 8px !important;
            padding-right: 8px !important;
        }
        .shiguang{
            display: flex;
            flex: 1;
            border: none !important;
        }
        .shengqian-card-item{
            display: flex;
            flex-direction: column;
            flex: 1;
            margin-bottom: 1rem !important;
            min-width: 0;
            word-wrap: break-word;
            /*border: 1px solid rgba(0, 0, 0, .125);*/
            border-radius: 14px;
            background: linear-gradient(to right bottom, #fff4d1 0%, #d7ca8a 100%) !important;
        }
        .quan-bg-1{
            background: linear-gradient(to right bottom, #efece7 0%, #ebcaa9 100%) !important;
        }
        .quan-bg-2{
            background: linear-gradient(to right bottom, #f0f7f3 0%, #83c9ac 100%) !important;
        }
        .quan-bg-3{
            background: linear-gradient(to right bottom, #e4eff1 0%, #a3dee7 100%) !important;
        }
        .quan-bg-4{
            background: linear-gradient(to right bottom, #e7eef3 0%, #acc4e3 100%) !important;
        }
        .shengqian-card-body{
            height: 310px;
            padding: .986rem;
        }
        .shengqian-title{
            font-size: 1.125rem !important;
            font-weight: 500;
            text-align: left;
        }
        .flexs{
            display: flex;
            align-items: center;
        }
        .juan-item{
            margin-top: 10px;
            padding: 8px;
            justify-content: space-between;
            background: #fff;
            border-radius: 11px;
        }
        .juan-title{
            /*margin-left: 10px;*/
            font-weight: 500;
            font-size: 14px;
        }
        .juan-tip-text{
            margin-right: 8px;
            font-size: 12px;
            color: rgba(0, 0, 0, 0.85);
        }
        .juan-item-ban{
            width: 50%;
        }
        .shiguang_into {
            font-size: 13px;
            color: #fff2a2;
            line-height: 25px;
            position: relative;
            padding: 0 10px;
            z-index: 1; /* 确保文字在伪元素之上 */
        }
        
        .shiguang_into::before {
            content: '';
            position: absolute;
            left: -2px;
            top: 3px;
            height: 15px;
            width: 15px;
            display: inline-block;
            background: #837adc;
            border-radius: 2px;
            transform: rotate(45deg) skewX(-5deg);
            z-index: -1;
        }
        
        .shiguang_into::after {
            content: '';
            transform: skewX(-5deg);
            border-radius: 5px;
            background: #837adc;
            left: 0;
            top: 0;
            position: absolute;
            height: 100%;
            width: 100%;
            z-index: -1;
        }
        .content-wrap-detail{
            width: 100%;
        }
        .hot-tabs-box{
            background: #fff;
            border-radius: 14px;
        }
        .hot-tab a{
            margin: 5px;
            padding: 5px 8px;
            border-radius: 6px;
            color: #837adc !important;
            background-color: rgba(132, 122, 220, .15) !important;
        }
        .site-header-icon {
            margin-right: 15px;
            display: inline-block;
            height: 40px;
            width: 40px;
            text-align: center;
            line-height: 45px;
            border-radius: 3px;
        }
        .site-header-icon img {
            max-width: 100%;
        }
        .site-name {
            font-size: 24px;
            margin: 0 0 5px;
            font-weight: 600;
        }
        .site-header-information {
            font-size: 14px;
            color: #6c757d !important;
        }
        .site-go-btn,.site-go-btn2{
            display: flex;
            align-items: center;
            justify-content: center;
            width: 150px;
            height: 40px;
            line-height: 40px;
            padding: 0 15px 0 20px;
            border: 1px solid #837adc;
            border-radius: 10px;
            color: #fff !important;
            background: #837adc;
            margin-left: 10px;
            font-size: 16px;
        }
        .site-go-btn strong+i {
            font-size: 14px;
            vertical-align: 0;
            font-weight: 600;
        }
        .site-header{
            align-items: flex-start;
            justify-content: space-between;
        }
        .site-header-information-list {
            position: relative;
            z-index: 1;
            display: inline-block;
            font-size: 14px;
            padding: 3px 14px 4px 12px;
            margin-right: 8px;
        }
        .site-header-information-list::after {
            border-radius: 5px;
            transform: skewX(-5deg);
            background: #f1f2f3;
            border: 1px solid #f1f2f3;
            z-index: -1;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            content: "";
            transform-origin: 0 0;
            pointer-events: none;
        }
        .site-data {
            margin-top: 10px;
        }
        .site-data strong {
            font-size: 12px;
        }
        .site-header-information-list i {
            font-size: 16px!important;
            /*margin-right: 6px;*/
            color: rgba(68, 58, 58, 0.8);
            vertical-align: -1px;
        }
        .site-content{
            /*margin-top: 40px !important;*/
        }
        .site-des{
            line-height: 1.875;
            font-size: 15px;
            color: #444;
        }
        .single-title-line {
            border-left: unset !important;
            padding-left: unset !important;
            margin-left: unset !important;
            margin-top: 40px!important ;
            margin-bottom: 10px !important;
            font-weight: 700;
            padding: 5px 0 !important;
            font-size: 18px !important;
            position: relative;
        }
        h2.single-title-line::before, h2.single-title-line::after {
            content: '';
            height: 20px;
            width: 8px;
            background: #f6dc3e;
            position: absolute;
            left: -40px;
            bottom: 7px;
        }
        h2.single-title-line::after {
            left: -38px;
            transform: skewX(-10deg);
        }
        .app-downlist {
            margin: -5px;
            font-size: 0;
        }
        .app-downlist a {
            margin: 5px;
            border-width: 3px;
            position: relative;
            line-height: 34px;
            padding: 0 12px 0 52px !important;
            z-index: 1;
            overflow: hidden;
        }
        .postbtn {
            border-radius: 10px;
            height: 40px;
            line-height: 38px;
            padding: 0 15px !important;
            display: inline-block;
            margin-right: 10px;
            border: 1px solid #837adc;
            background: #837adc;
            color: #fff!important;
        }
        .app-downlist img {
            height: 34px;
            width: 34px;
            border-radius: 9px 0 0 9px;
            padding: 7px 4px 7px 10px;
            position: absolute;
            left: 0;
            top: 0;
        }
        .app-downlist a strong {
            font-size: 15px;
        }
        .app-downlist a::after {
            content: '';
            width: 50px;
            display: inline-block;
            position: absolute;
            display: inline-block;
            position: absolute;
            height: 160%;
            left: -9px;
            top: -30%;
            z-index: -1;
            border-radius: 100%;
            background: #fff;
        }
        .site-tags {
            padding-top: 20px;
            margin: 0 -6px;
        }
        .site-tags a,.hot-tab a {
            display: inline-block;
            font-size: 12px;
            padding: 6px 15px;
            margin: 3px;
            background: #f1f2f3;
            border-radius: 8px;
            color: rgba(0, 0, 0, 0.6);
        }
        .content-layout-detail{
            min-height: auto !important;
            margin-bottom: 0px!important;
            border-radius: 14px!important;
        }
        h2.single-title {
            /*border-left: 5px solid #837adc;*/
            /*font-size: 1.125rem;*/
            /*padding: 5px 30px 5px 30px;*/
            /*margin: -10px -30px 15px -35px;*/
            /*border-radius: 4px 0 0 4px;*/
            font-size: 16px;
            font-weight: 700;
            margin-top: 0px!important;
            
        }
        .not-comment {
            min-height: 100px;
            line-height: 100px;
            background: none !important;
        }
        .nothing {
            flex: 1 1 auto;
            min-height: 1px;
            background: rgba(136, 136, 136, 0.03);
            color: #888;
            padding: 20px 0;
            border-radius: 5px;
            text-align: center !important;
        }
        .form-control {
            display: block;
            width: 100%;
            padding: .375rem .75rem;
            font-size: .875rem;
            color: #6d6e74;
            height: 135px;
            border: 1px solid #f1f2f3!important;
            background-color: #f1f2f3!important;
            font-weight: 400;
            line-height: 1.5;
            border-radius: .25rem;
            resize: vertical !important;
            transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        }
        .form-control:focus{
            border-color: none !important;
        }
        .mb-3{
            margin-bottom: 1rem !important;
        }
        .btn-dark{
            cursor: pointer;
            border-radius: 10px;
            white-space: normal;
            font-size: .875rem;
            background-color: #837adc;
            border-color: #837adc;
            color: #fff;
        }
        .justify-content-end {
            justify-content: flex-end;
        }
        .search-type li label {
            display: inline-block;
            padding: 0 11px;
            font-size: 14px;
            line-height: 31px;
            border-radius: 3px 3px 0 0;
            cursor: pointer;
        }
        h4{
            margin-bottom: 0 !important;
        }
        .nav-pills>li.active>a{
            background-color: none!important;
        }
        .resource-icon>img,.hot-item-icon>img{
            max-height: 100%;
            vertical-align: unset;
        }
        .site-togoicon .iconfont{
            font-size: 16px!important;
        }
        /*.resources-grid { display: none; }*/
        .resources-grid:first-child { display: flex; }
        
        .hidden {
            display: none !important;
        }
        .active{
            display: block;
        }
        /* 禁用激活状态的背景色和文字色 */
        .nav-pills>li.active>a, 
        .nav-pills>li.active>a:focus, 
        .nav-pills>li.active>a:hover {
            color: inherit; /* 继承父元素文字色 */
            background-color: transparent !important; /* 透明背景 */
            /* 可选：移除其他样式 */
            border: none;
            box-shadow: none;
        }
        /* 增加选择器特异性 */
        ul.nav-pills>li.active>a, 
        ul.nav-pills>li.active>a:focus, 
        ul.nav-pills>li.active>a:hover {
            color: #333; /* 使用自定义文字色 */
            background-color: transparent;
        }
        
        .resource-card-detail{
            padding-left: 8px !important;
            padding-right: 8px !important;
            margin-bottom: 12px;
        }
        a:link,
        a:visited,
        a:hover,
        a:active {
            text-decoration: none !important;
        }
        .card-a:hover,.sidebar-nav-item:hover,.hot-list a:hover,.juan-tip-text:hover {
            color: #837adc!important;
        }
        .content-wrap {
            width: 100%!important;
        }
        .tag-title-header{
            text-align: center;
        }
        .tag-title-header h1{
            
            /*justify-content: center;*/
            color: #837adc;
            font-weight: 700;
            font-size: 24px;
            position: relative;
            z-index: 1;
            margin-bottom: 30px;
            display: inline-block;
            padding-top: 15px;
        }
        .tag-title-header .iconfont{
            font-size: 28px;
            color: #837adc;
        }
        
        
        
        .head-search-title label.active {
            /*background: #1677ff;*/
            color: #837adc;
        }
        .hide-type-list {
            /*border: 1px solid #ddd;*/
            /*border-radius: 4px;*/
            padding: 10px;
        }
        /* 搜索类型组：默认隐藏，选中时显示 */
        .search-group {
            display: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        /* 选中的搜索类型组：显示 */
        .search-group.s-current {
            display: flex;
        }
        /* 搜索类型选项样式 */
        .search-type {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 10px;
        }
        .search-type li label {
            /*padding: 6px 12px;*/
            /*border: 1px solid #ddd;*/
            /*border-radius: 4px;*/
            cursor: pointer;
            color: #666;
            transition: all 0.3s;
        }
        /* 选中的选项样式（通过radio的checked状态控制） */
        
        .search-type li input:checked + label span.text-muted {
          color: #837adc !important; /* 直接定位到文字所在的 span 标签 */
        }
        /* 隐藏radio原生控件 */
        .search-type input {
            display: none;
        }
        
        #footer-tools {
            position: fixed;
            bottom: 80px;
            right: 10px;
            display: flex;
            z-index: 5;
        }
        .flex-column {
            -ms-flex-direction: column!important;
            flex-direction: column !important;
        }
        .d-flex {
            display: -ms-flexbox!important;
            display: flex !important;
        }
        #footer-tools .btn {
            color: #555;
            width: 40px;
            height: 40px;
            font-size: 1rem;
            text-align: center;
            line-height: 40px;
            padding: unset;
            display: block;
            border: unset;
            background: rgba(210, 210, 210, 0.58);
            backdrop-filter: saturate(180%) blur(20px);
            border-radius: 10px;
        }
        
        #footer-tools .iconfont {
            font-size: 24px;
            vertical-align: -3px;
            color: #837adc;
        }
        #footer-tools .icon-fanhuidingbu1 {
            /*font-size: 18px;*/
            /*vertical-align: -2px;*/
        }
        #footer-tools .btn span {
            display: none;
        }
        
        
        
        /* 复制提示框基础样式 */
        .copy-tooltip {
            position: fixed;  /* 固定在屏幕上，不随滚动动 */
            bottom: 30px;     /* 距离底部30px */
            left: 50%;        /* 水平居中 */
            transform: translateX(-50%);  /* 精准居中 */
            padding: 8px 16px;
            border-radius: 4px;
            color: #fff;
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            z-index: 9999;    /* 确保在最上层，不被遮挡 */
            opacity: 0;       /* 初始透明 */
            transition: opacity 0.3s ease;  /* 淡入淡出动画 */
        }
        
        /* 成功提示（绿色） */
        .copy-tooltip.success {
            background-color: #28a745;  /* 原生成功绿 */
        }
        
        /* 失败提示（红色） */
        .copy-tooltip.error {
            background-color: #dc3545;  /* 原生失败红 */
        }
        
        /* 显示提示的状态 */
        .copy-tooltip.show {
            opacity: 1;
        }
        .d-none{
            display: none;
        }
        
        /* 响应式设计 */
        @media (min-width: 768px) {
            
            
            .sidebar-nav-title,
            .sidebar-nav-item span,
            .sidebar-copyright {
                display: block;
            }
            
            .header-middle {
                display: flex;
            }
            
            .content {
                /*padding: 24px;*/
                /*margin-left: 110px;*/
            }
            
            .search-section {
                padding: 24px;
            }
            
            .recommend-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .resources-grid {
                /*grid-template-columns: repeat(2, 1fr);*/
            }
            
            
            
        }
        
        @media (min-width: 1024px) {
            
            
            .recommend-grid {
                grid-template-columns: repeat(6, 1fr);
            }
            
            .resources-grid {
                /*grid-template-columns: repeat(3, 1fr);*/
            }
        }
        
        @media (min-width: 1280px) {
            .resources-grid {
                /*grid-template-columns: repeat(4, 1fr);*/
            }
        }
        
        
        
        @media (max-width: 1299px) {
            
            
        }
        
        @media (max-width: 1100px) {
        }
        
        
        
        @media (min-width: 1550px) {
            .resources-grid {
                /*grid-template-columns: repeat(5, 1fr);*/
            }
        }