  @layer utilities {
            .content-auto {
                content-visibility: auto;
            }
            .text-balance {
                text-wrap: balance;
            }
            .backdrop-blur-sm {
                backdrop-filter: blur(4px);
            }
            .scrollbar-hide::-webkit-scrollbar {
                display: none;
            }
            .scrollbar-hide {
                -ms-overflow-style: none;
                scrollbar-width: none;
            }
            .animate-fadeIn {
                animation: fadeIn 0.3s ease-in-out;
            }
            .animate-fadeOut {
                animation: fadeOut 0.3s ease-in-out;
            }
                .card-shadow {
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            }
            .card-hover {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .card-hover:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            }
            .option-hover {
                transition: all 0.2s ease;
            }
            .option-hover:hover {
                background-color: #f0fdfa;
                border-color: #00c0b6;
            }
            
            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(-10px); }
                to { opacity: 1; transform: translateY(0); }
            }
            @keyframes fadeOut {
                from { opacity: 1; transform: translateY(0); }
                to { opacity: 0; transform: translateY(-10px); }
            }
        }
.slider-btn-left::before,
.slider-btn-right::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "FontAwesome";
  font-size: 18px;
  color: #333333;
}
.slider-btn-left::before { content: "\f104"; }
.slider-btn-right::before { content: "\f105"; }
.site-logo{
    width: 120px;
    height: 60px;
}
@media (min-width: 768px) {
  .slider-container:hover .slider-btn-left,
  .slider-container:hover .slider-btn-right {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .slider-btn-left, .slider-btn-right {
    display: block !important;
  }

}

@media (max-width: 767px) {
  .slider-btn-left, .slider-btn-right {
    display: none !important;
  }
}

.slider-container {
  position: relative;
  z-index: 10;
}
.bg-white{
    background-color:#f8f9f9;}
#category-link {
  position: relative;
  z-index: 9999 !important;
  pointer-events: auto !important;
  display: inline-block;
  cursor: pointer;
}

.header-inner {
  position: relative;
  z-index: 100;
}

.category-container {
  z-index: 55;
}

main {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  padding: 0 !important;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.header-cover {
  display: none !important;
}

.nav-overlay {
  z-index: 50 !important;
}

#header-compact-v3 {
  height: auto !important;
  min-height: 64px;
  margin: 0;
  padding: 0;
}

.banner-container {
  margin-top: 60px !important;
  position: relative;
  z-index: 1;
}

  :root {
        --text-tertiary: #9ca3af;
        --text-secondary: #6b7280;
    }

    /* 1. 统一榜单项样式，无动画 */
    .rank-item {
        min-height: 40px;
        display: flex;
        transition: none !important;
    }

    .item-content {
        display: flex;
        width: 100%;
        align-items: flex-start;
        transition: none !important;
    }

    .content-wrap {
        flex: 1;
        position: relative;
        transition: none !important;
    }

    /* 2. 基础显隐控制 */
    .category-simple, .category-full, .author, .cover-wrap {
        display: none;
        transition: none !important;
    }

    /* 3. active类控制（仅作用于当前榜单内的项） */
    .rank-item.active .author,
    .rank-item.active .category-full,
    .rank-item.active .cover-wrap {
        display: block;
    }
    .rank-item.active {
        min-height: 80px;
    }

    .rank-item:not(.active) .category-simple {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }
    .rank-item:not(.active) {
        min-height: 40px;
    }
     /* 分页样式 */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem 0;
        gap: 0.5rem;
    }
    
    .pagination-item {
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.2s ease;
    }
    
    .pagination-link {
        color: #666;
        text-decoration: none;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }
    
    .pagination-item.active {
        background-color: #00c0b6;
    }
    
    .pagination-item.active .pagination-link {
        color: white;
        font-weight: bold;
    }
    
    .pagination-item:not(.active):hover {
        background-color: #f1f1f1;
    }
    
    .pagination-item.disabled {
        opacity: 0.5;
        pointer-events: none;
    }
    
    .pagination-info {
        margin: 0 1rem;
        color: #666;
        font-size: 0.9rem;
    }
    
    @media (max-width: 640px) {
        .pagination-item {
            width: 2rem;
            height: 2rem;
        }
        
        .pagination-info {
            display: none;
        }
        
        .pagination-ellipsis {
            display: none;
        }
    }
       
    /* 手机端漂浮按钮样式 */
    .floating-test-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 192, 182, 0.3);
        transition: all 0.3s ease;
    }
    
    .floating-test-button:hover {
        box-shadow: 0 6px 16px rgba(0, 192, 182, 0.4);
        transform: translateX(-50%) translateY(-2px);
    }
    
    .question-card {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        .question-card.active {
            display: block;
        }
        .question-card:not(.active) {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }
        
          @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        .shake {
            animation: shake 0.5s ease;
        }
        
        .option input:checked + label {
            background-color: #e6f7f0;
            border-color: #00c0b6;
        }
        .option input:checked + label .check-icon {
            background-color: #00c0b6;
            border-color: #00c0b6;
            color: white;
        }
        .option input:checked + label .check-icon i {
            display: inline-block;
        }
        
        .progress-dots {
            display: flex !important;
            justify-content: center;
            gap: 8px;
            margin: 20px 0;
            position: relative;
            z-index: 10;
        }
        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #e2e8f0;
            transition: all 0.3s ease;
        }
        .progress-dot.active {
            background-color: #00c0b6;
            width: 30px;
            border-radius: 5px;
        }
        .progress-dot.completed {
            background-color: #00c0b6;
        }

        .loading {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .custom-alert-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .custom-alert-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .custom-alert {
            background-color: white;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
            padding: 24px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }
        .custom-alert-overlay.active .custom-alert {
            transform: translateY(0);
        }
        .alert-header {
            margin-bottom: 16px;
            text-align: center;
        }
        .alert-icon {
            font-size: 40px;
            color: #00c0b6;
            margin-bottom: 12px;
        }
        .alert-icon.processing {
            color: #3b82f6;
        }
        .alert-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        .alert-message {
            text-align: center;
            margin-bottom: 24px;
            color: #666;
            line-height: 1.5;
        }
        .alert-footer {
            display: flex;
            justify-content: center;
        }
        .alert-button {
            padding: 8px 24px;
            background-color: #00c0b6;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        .alert-button:hover {
            background-color: #00a89f;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 24px;
            position: relative;
        }
        .progress-steps::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 20px;
            right: 20px;
            height: 2px;
            background-color: #e2e8f0;
            z-index: 1;
        }
        .progress-step {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background-color: white;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        .progress-step.active {
            border-color: #00c0b6;
            background-color: #00c0b6;
            color: white;
        }
        .progress-step.completed {
            border-color: #00c0b6;
            background-color: #00c0b6;
            color: white;
        }
         /* 基础样式：与Font Awesome保持一致 */
.fa-alipay {
  display: inline-block;
  vertical-align: middle; /* 对齐文字或其他图标 */
  width: 1em; /* 基于父元素字体大小的宽度 */
  height: 1em;
  fill: currentColor; /* 继承父元素颜色（关键！） */
  overflow: hidden;
}

/* 大小控制（与Font Awesome的fa-lg、fa-2x等对应） */
.fa-alipay.fa-lg {
  width: 1.333em;
  height: 1.333em;
  vertical-align: -0.333em;
}
.fa-alipay.fa-2x {
  width: 2em;
  height: 2em;
}

/* 悬停效果 */
.fa-alipay:hover {
  fill: #1677ff; /* 支付宝品牌色（可选） */
  transform: scale(1.1);
  transition: all 0.2s ease;
}
       