    html { 
            font-size: 16px; 
            -webkit-tap-highlight-color: transparent; 
        }
        body { 
            font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif; 
            background-color: #f8fafc; 
            color: #333333;
        }

        .bold-card {
            background: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bold-card:hover {
            box-shadow: 0 20px 40px -10px rgba(1, 150, 240, 0.1);
            transform: translateY(-4px);
        }

        .nav-item:hover .dropdown { display: block; opacity: 1; visibility: visible; transform: translateY(0); }
        .nav-item { display: inline-block; position: relative; }
        .dropdown { 
            display: none; opacity: 0; visibility: hidden;
            position: absolute; left: 0; right: 0; top: 100%;
            background: #ffffff; border-top: 3px solid #0196F0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
            border-radius: 0 0 0.5rem 0.5rem; padding: 0.75rem 0; z-index: 9999; text-align: center;
            transform: translateY(-4px);
            transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
        }
        .dropdown a { color: #333333; }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* 轮播图样式 */
        .news-slide { opacity: 0; pointer-events: none; transition: opacity 0.5s ease-in-out; }
        .news-slide.active { opacity: 1; pointer-events: auto; z-index: 10; }
        .news-dot { transition: all 0.3s ease; }

        .reveal { 
            opacity: 0; 
            transform: translateY(50px); 
            transition-property: opacity, transform;
            transition-duration: 1s;
            transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* 快捷入口手风琴效果 */
        .accordion-item { flex: 1; transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
        @media (min-width: 640px) { .accordion-item:hover { flex: 2.5; } }
        @media (max-width: 639px) { .accordion-item:hover { flex: 1.8; } }

        /* 会员单位滚动动画 */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .animate-scroll {
            animation: scroll 20s linear infinite;
        }
        .animate-scroll:hover {
            animation-play-state: paused;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #f1f5f9; }
        ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: #0196F0; }
        
        /* 隐藏无日期的元素的占位 */
        .no-date .date-placeholder { display: none; }


      
        /* 侧边导航样式 */
        .sidebar-item {
            position: relative;
            transition: all 0.3s ease;
        }
        .sidebar-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, #0196F0, #0178c0);
            border-radius: 0 2px 2px 0;
            transition: height 0.3s ease;
        }
        .sidebar-item:hover::before,
        .sidebar-item.active::before {
            height: 60%;
        }
        .sidebar-item:hover,
        .sidebar-item.active {
            color: #0196F0;
            background: linear-gradient(90deg, rgba(1, 150, 240, 0.08) 0%, transparent 100%);
        }
        .sidebar-item.active {
            font-weight: 700;
        }

        /* 内容切换动画 */
        .content-section {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            display: none;
        }
        .content-section.active {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }


        /* 简洁培训列表样式 */
        .training-list {
            background: #ffffff;
            border-radius: 0.75rem;
            border: 1px solid #f1f5f9;
            overflow: hidden;
        }
        .training-list-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.25s ease;
        }
        .training-list-item:last-child {
            border-bottom: none;
        }
        .training-list-item:hover {
            background-color: #f8fafc;
        }
        .training-list-item .item-title {
            flex: 1;
            min-width: 0;
            font-size: 14px;
            font-weight: 400;
            color: #333333;
            line-height: 1.5;
            transition: color 0.2s ease;
        }
        .training-list-item:hover .item-title {
            color: #0196F0;
        }
        .training-list-item .item-date {
            flex-shrink: 0;
            font-size: 14px;
            color: #94a3b8;
            /* margin: 0 2rem; */
            white-space: nowrap;
        }
        .training-list-item .item-action {
            flex-shrink: 0;
            font-size: 14px;
            color: #0196F0;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.2s ease;
        }
        .training-list-item:hover .item-action {
            transform: translateX(4px);
        }
        
        
        /* 纯文字列表样式 */
        .text-list-item {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px dashed #e2e8f0;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .text-list-item:last-child {
            border-bottom: none;
        }
        .text-list-item:hover {
            background: linear-gradient(90deg, rgba(1, 150, 240, 0.05) 0%, transparent 100%);
            padding-left: 24px;
        }
        .text-list-item:hover .item-title {
            color: #0196F0;
        }
        .text-list-item:hover .item-arrow {
            color: #0196F0;
            transform: translateX(4px);
        }

        @media screen and (max-width: 768px) {
            .text-list-item {
                /* padding: 12px 0px; */
            }

        }


        .item-date {
            flex-shrink: 0;
            margin-left: 24px;
            font-size: 13px;
            color: #94a3b8;
            white-space: nowrap;
        }
        .item-content {
            flex-grow: 1;
        }
        .item-title {
            font-size: 14px;
            font-weight: 500;
            color: #333333;
            line-height: 1.8;
            transition: color 0.2s ease;
        }
        .item-summary {
            font-size: 13px;
            color: #94a3b8;
            margin-top: 4px;
            line-height: 1.5;
        }
        .item-arrow {
            flex-shrink: 0;
            color: #cbd5e1;
            font-size: 16px;
            margin-left: 12px;
            transition: all 0.2s ease;
        }



        /* 入会介绍样式 */
        .intro-block {
            padding: 1rem 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .intro-block:first-of-type {
            padding-top: 0;
        }
        .intro-block:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
        .section-title {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        .section-title::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 22px;
            background: #0196F0;
            border-radius: 2px;
            margin-right: 12px;
        }
        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background: #0196F0;
            color: #ffffff;
            font-weight: 700;
            font-size: 14px;
            border-radius: 50%;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .intro-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .intro-list li {
            position: relative;
            padding: 8px 0 8px 24px;
            font-size: 14px;
            color: #475569;
            line-height: 1.8;
        }
        .intro-list li::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 17px;
            width: 6px;
            height: 6px;
            background: #0196F0;
            border-radius: 50%;
            opacity: 0.5;
        }
        .intro-list.steps-list li::before {
            content: none;
        }
        .intro-list.sub li::before {
            width: 5px;
            height: 5px;
            background: #94a3b8;
            top: 16px;
        }
        .steps-list li {
            padding: 8px 0 8px 0px;
        }

          /* 表单样式 */
        .form-label {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 15px;
            font-weight: 600;
            color: #334155;
            margin-bottom: 6px;
        }
        .form-label .required {
            color: #ef4444;
            font-weight: 700;
        }
        .form-input {
            width: 100%;
            height: 44px;
            padding: 0 14px;
            border: 1.5px solid #e2e8f0;
            border-radius: 0.5rem;
            font-size: 15px;
            color: #334155;
            background: #f8fafc;
            transition: all 0.3s ease;
            outline: none;
        }
        .form-input:focus {
            border-color: #0196F0;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(1, 150, 240, 0.08);
        }
        .form-input::placeholder {
            color: #cbd5e1;
        }
        .form-select {
            width: 100%;
            height: 44px;
            padding: 0 14px;
            border: 1.5px solid #e2e8f0;
            border-radius: 0.5rem;
            font-size: 15px;
            color: #334155;
            background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2394a3b8'/%3E%3C/svg%3E") no-repeat right 14px center;
            appearance: none;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
        }
        .form-select:focus {
            border-color: #0196F0;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(1, 150, 240, 0.08);
        }
          /* 文件下载项 */
        .download-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            border: 1.5px solid #e2e8f0;
            border-radius: 0.75rem;
            background: #f8fafc;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .download-item:hover {
            border-color: #0196F0;
            background: #eff6ff;
        }
        .download-item .dl-icon {
            width: 44px;
            height: 44px;
            border-radius: 0.625rem;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            color: #0196F0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .download-item .dl-info {
            flex: 1;
            min-width: 0;
        }
        .download-item .dl-name {
            font-size: 15px;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.4;
        }
        .download-item .dl-hint {
            font-size: 13px;
            color: #94a3b8;
            margin-top: 2px;
        }
        .download-item .dl-arrow {
            color: #0196F0;
            font-size: 16px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        .download-item:hover .dl-arrow {
            transform: translateX(3px);
        }


        /* 提交按钮 */
        .submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px 0;
            border: none;
            border-radius: 0.625rem;
            background: linear-gradient(135deg, #0196F0, #0178c0);
            color: #ffffff;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px -3px rgba(1, 150, 240, 0.35);
        }
        .submit-btn:hover {
            box-shadow: 0 8px 24px -4px rgba(1, 150, 240, 0.5);
            transform: translateY(-2px);
        }
        .submit-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .form-input, .form-select {
                height: 40px;
                font-size: 14px;
            }
            .form-label {
                font-size: 14px;
            }
            .download-item {
                padding: 12px 16px;
            }
            .download-item .dl-name {
                font-size: 14px;
            }
            .submit-btn {
                padding: 12px 0;
                font-size: 16px;
            }
        }

        /* 入口卡片 */
        .entry-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 1.25rem;
            border-radius: 0.75rem;
            border: 1.5px solid #e2e8f0;
            background: #ffffff;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }
        .entry-card:hover {
            border-color: #0196F0;
            box-shadow: 0 8px 24px -6px rgba(1, 150, 240, 0.2);
            transform: translateY(-4px);
        }
        .entry-card .entry-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0196F0, #0178c0);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 0.75rem;
            transition: transform 0.3s ease;
        }
        .entry-card:hover .entry-icon {
            transform: scale(1.1);
        }
        .entry-card .entry-title {
            font-size: 14px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.25rem;
        }
        .entry-card .entry-desc {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.6;
        }
        .entry-card .entry-arrow {
            display: inline-flex;
            align-items: center;
            margin-top: 0.75rem;
            color: #0196F0;
            font-size: 13px;
            font-weight: 600;
            transition: gap 0.3s ease;
        }
        .entry-card:hover .entry-arrow {
            gap: 6px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 16px;
            }
            .intro-list li {
                font-size: 14px;
                padding: 6px 0 6px 30px;
            }
            .entry-card {
                padding: 1.25rem 1rem;
            }
            .entry-card .entry-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .entry-card .entry-title {
                font-size: 14px;
            }
        }

    
        
 /* 介绍样式 */
        .intro-block {
            padding: 1.5rem 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .intro-block:first-of-type {
            padding-top: 0;
        }
        .intro-block:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
        .section-title {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .section-title::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 22px;
            background: #0196F0;
            border-radius: 2px;
            margin-right: 12px;
        }
        
/* 按钮样式 */
        .entry-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 36px;
            border-radius: 0.5rem;
            background: linear-gradient(135deg, #0196F0, #0178c0);
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px -3px rgba(1, 150, 240, 0.35);
        }
        .entry-btn:hover {
            box-shadow: 0 8px 28px -4px rgba(1, 150, 240, 0.5);
            transform: translateY(-2px);
        }
        .entry-btn:active {
            transform: translateY(0);
        }
        

        @media (max-width: 768px) {
            .section-title {
                font-size: 16px;
            }
            .intro-list li {
                font-size: 14px;
                padding: 6px 0 6px 30px;
            }
            .entry-btn {
                padding: 8px 28px;
                font-size: 14px;
            }
        }
    
        /* 图文列表样式 */
        .news-list-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0.5rem;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .news-list-item:last-child {
            border-bottom: none;
        }
        .news-list-item:hover {
            background: #f8fafc;
            padding-left: 1rem;
            padding-right: 0;
        }
        .news-list-item:hover .list-news-title {
            color: #0196F0;
        }
        .news-list-img-wrap {
            width: 180px;
            height: 120px;
            flex-shrink: 0;
            border-radius: 0.5rem;
            overflow: hidden;
        }
        .news-list-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-list-item:hover .news-list-img {
            transform: scale(1.06);
        }
        .news-list-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .list-news-title {
            font-size: 16px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        .list-news-desc {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }
        .list-news-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 12px;
            color: #94a3b8;
        }
        .list-news-meta i {
            margin-right: 2px;
        }
        @media (max-width: 640px) {
            .news-list-img-wrap {
                width: 120px;
                height: 90px;
            }
            .list-news-title {
                font-size: 14px;
            }
            .news-list-item {
                padding: 0.75rem 0;
            }
        }


        .video-list-item{}
        .video-list-item .item-image{
            overflow: hidden;
            border-radius: 0.5rem;
            transition: transform 0.4s ease;
            cursor: pointer;
        }
        .video-list-item .item-image img{
            transition: transform 0.4s ease;
        }
        .video-list-item .item-image img:hover{
            transform: scale(1.1);
        }
        .video-list-item:hover .item-title{
            color: #0196F0;
        }

        .picture-list-item {}
        .picture-list-item .item-image img{
            transition: transform 0.4s ease;
        }
        .picture-list-item .item-image img:hover{
            transform: scale(1.1);
        }
        .picture-list-item:hover .item-title{
            color: #0196F0;
        }



        /* 分页样式 */
        .pagination-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 32px;
            height: 32px;
            padding: 0 8px;
            border-radius: 0.375rem;
            background: #f1f5f9;
            color: #475569;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .pagination-btn:hover {
            background: #0196F0;
            color: #ffffff;
        }
        .pagination-btn.active {
            background: #0196F0;
            color: #ffffff;
        }
       

 /* 上下篇导航 */
        .prev-next-nav {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .prev-next-item {
            flex: 1;
            min-width: 240px;
            padding: 1rem 1.25rem;
            background: #f8fafc;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .prev-next-item:hover {
            border-color: #0196F0;
            background: #f0f9ff;
        }
        .prev-next-item .nav-arrow {
            font-size: 20px;
            color: #0196F0;
            flex-shrink: 0;
        }
        .prev-next-item .nav-label {
            font-size: 12px;
            color: #94a3b8;
            margin-bottom: 2px;
        }
        .prev-next-item .nav-title {
            font-size: 14px;
            font-weight: 600;
            color: #334155;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        .prev-next-item:hover .nav-title {
            color: #0196F0;
        }
        .prev-next-item.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .prev-next-item.disabled:hover {
            border-color: #e2e8f0;
            background: #f8fafc;
        }

        /* 相关推荐 */
        .related-news-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0.5rem;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }
        .related-news-item:last-child {
            border-bottom: none;
        }
        .related-news-item:hover {
            background: #f8fafc;
            border-radius: 0.5rem;
        }
        .related-dot {
            width: 8px;
            height: 8px;
            background: #0196F0;
            border-radius: 50%;
            flex-shrink: 0;
            opacity: 0.5;
        }
        .related-news-item:hover .related-dot {
            opacity: 1;
        }
        .related-news-title {
            flex: 1;
            font-size: 15px;
            color: #334155;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        .related-news-item:hover .related-news-title {
            color: #0196F0;
        }
        .related-news-date {
            font-size: 13px;
            color: #94a3b8;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .prev-next-nav {
                flex-direction: column;
            }
        }

        .checkbox-card.checked { border-color: #0196F0; background: #eff6ff; color: #0196F0; font-weight: 600; }
        .checkbox-card.checked .check-icon { background: #0196F0; border-color: #0196F0; color: #fff; }
        .checkbox-card.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; background: #f1f5f9; }

        .upload-area.has-file { 
            border-style: solid; 
            border-color: #0196F0; 
            background: linear-gradient(to bottom, #f0f9ff, #ffffff);
            box-shadow: 0 4px 16px rgba(1,150,240,0.1), 0 2px 6px rgba(0,0,0,0.04);
        }
        .upload-area.has-file .file-list { display: block; }
        .upload-area.has-file .upload-text { color: #0196F0; }
        .upload-area.has-file .file-count-badge { display: block; }
        .upload-area:hover .upload-icon { color: #0196F0; }
        .upload-area:hover .upload-text { color: #0196F0; }


        .file-list .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 4px 10px;
            margin-bottom: 4px;
            background: #ffffff;
            border-radius: 0.375rem;
            font-size: 12px;
            color: #334155;
            border: 1px solid #e2e8f0;
            transition: all 0.2s ease;
        }
        .file-list .file-item:last-child {
            margin-bottom: 0;
        }
        .file-list .file-item:hover {
            border-color: #0196F0;
        }
        .file-list .file-item .fi-name {
            flex: 1;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .file-list .file-item .fi-size {
            font-size: 12px;
            color: #94a3b8;
            flex-shrink: 0;
            margin-left: 12px;
        }
        .file-list .file-item .fi-del {
            flex-shrink: 0;
            margin-left: 10px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #94a3b8;
            font-size: 12px;
            transition: all 0.2s ease;
        }
        .file-list .file-item .fi-del:hover {
            background: #fef2f2;
            color: #ef4444;
        }

        /* 弹窗样式 */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: white;
            border-radius: 1rem;
            max-width: 800px;
            width: 95%;
            max-height: 90vh;
            z-index: 1001;
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .modal-content::-webkit-scrollbar { width: 6px; }
        .modal-content::-webkit-scrollbar-track { background: #f1f5f9; }
        .modal-content::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
        .modal-content::-webkit-scrollbar-thumb:hover { background: #0196F0; }
        .modal-form-container {
            overflow-y: auto;
            max-height: calc(90vh - 80px);
            padding: 1.5rem;
        }
        .modal-form-container::-webkit-scrollbar { width: 6px; }
        .modal-form-container::-webkit-scrollbar-track { background: #f1f5f9; }
        .modal-form-container::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
        .modal-form-container::-webkit-scrollbar-thumb:hover { background: #0196F0; }
        .modal-overlay.show .modal-content {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }


        /*查询*/
        .search-input:focus { box-shadow: 0 0 0 3px rgba(1, 150, 240, 0.1); }

        /* 表格样式优化 */
        .data-table thead th {
            position: relative;
            letter-spacing: 0.03em;
        }
        .data-table thead th::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(255,255,255,0.15);
        }
        tbody tr:nth-child(odd) { background-color: #f8fafc; }
        tbody tr:nth-child(even) { background-color: #ffffff; }
        tbody tr {
            transition: background-color 0.15s ease, box-shadow 0.15s ease;
        }
        tbody tr:hover {
            background-color: #eff6ff;
            box-shadow: inset 0 1px 0 0 #dbeafe;
        }
        td {
            vertical-align: middle;
        }
        
        .paginator-btn {
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }
        .paginator-btn.active {
            background-color: #0196F0;
            color: #ffffff;
            border-color: #0196F0;
            box-shadow: 0 2px 8px rgba(1,150,240,0.3);
        }
        .paginator-btn:not(.active):not(:disabled):hover {
            background-color: #f0f9ff;
            transform: translateY(-1px);
        }

        /* 搜索框简洁样式 */
        .search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-box .search-unified {
            flex: 1 0 auto;
            width: 260px;
            height: 44px;
            padding: 0 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            color: #333333;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s ease;
        }
        .search-box .search-unified::placeholder {
            color: #94a3b8;
        }
        .search-box .search-unified:focus {
            border-color: #0196F0;
        }
        .search-box .search-icon-btn {
            height: 44px;
            padding: 0 32px;
            border-radius: 8px;
            background: #0196F0;
            border: none;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background 0.2s ease;
            white-space: nowrap;
        }
        .search-box .search-icon-btn:hover {
            background: #0178c0;
        }
        .search-box .search-reset-btn {
            height: 44px;
            padding: 0 28px;
            border-radius: 8px;
            background: #ffffff;
            border: 1px solid #d1d5db;
            color: #64748b;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .search-box .search-reset-btn:hover {
            border-color: #0196F0;
            color: #0196F0;
        }
        
        .result-hint {
            text-align: center;
            margin-top: 0.5rem;
            color: #94a3b8;
            font-size: 13px;
            min-height: 20px;
            transition: all 0.3s ease;
        }
        .result-hint.has-results {
            color: #0196F0;
            font-weight: 500;
        }
        .result-hint strong {
            color: #0196F0;
            font-weight: 700;
            font-size: 16px;
            padding: 0 4px;
        }

        /* 结果区域过渡 */
        #table-card {
            transition: opacity 0.35s ease, transform 0.35s ease;
        }
        #table-card.fade-in {
            opacity: 1;
            transform: translateY(0);
        }
        #table-card.fade-out {
            opacity: 0;
            transform: translateY(12px);
            pointer-events: none;
        }
        #pagination {
            transition: opacity 0.35s ease, max-height 0.4s ease;
            overflow: hidden;
        }
        #empty-state {
            transition: opacity 0.3s ease;
        }

        @media (max-width: 640px) {
            #empty-state { /*padding-top: 3.5rem; padding-bottom: 3.5rem;*/ }
            .data-table th, .data-table td {
                padding-left: 12px;
                padding-right: 12px;
                font-size: 13px;
            }
        }

.pagination{display: flex;justify-content: center;gap: 10px;flex-wrap: wrap;}
.pagination li a,.pagination li span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 0.375rem;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.pagination li a:hover,.pagination li span:hover{
    background: #0196F0;
    color: #ffffff;
}
.pagination li.active a,.pagination li.active span{
   background: #0196F0;
    color: #ffffff;
}

.page-crumb{
 width: 100%;
  overflow: hidden;
  margin-bottom: calc(20px + 2vw);
 

}
.page-crumb ul{display: flex;gap: 25px; flex-wrap: wrap;}
.page-crumb ul li{
    float: left;
}
.page-crumb ul li a{
   font-size: calc(16px + 0.6vw);
}
.page-crumb ul li:hover a{
    color: #016eb1;
}
.page-crumb ul li.cur a{
    color: #016eb1;
}
