/**
 * 文件名称：pricing.css
 * 文件功能：套餐价格页面专用样式，包含套餐展示、价格卡片、比较表格等样式
 * 创建日期：2026-03-16
 * 维护人员：前端开发团队
 * 
 * 关键功能模块：
 * 1. 滚动条隐藏样式
 * 2. 响应式设计
 * 3. 图片边框样式
 * 4. SVG图标样式
 * 5. 套餐价格页面主容器
 * 6. 套餐切换标签
 * 7. 套餐卡片网格
 * 8. 卡片互动效果
 * 9. 九星服务版卡片样式
 * 10. 下拉提示说明样式
 * 11. 暗黑模式适配
 * 12. 动画效果
 * 
 * 关联文件：
 * - static/js/script.js：与主脚本文件交互
 * - static/js/theme.js：主题切换逻辑
 * - static/css/style.css：主样式文件
 * - static/css/theme.css：主题切换相关样式
 * 
 * 注意事项：
 * - 支持深色模式和浅色模式
 * - 响应式设计适配不同屏幕尺寸
 * - 包含丰富的动画效果
 * - 与主样式文件保持风格一致
 */

/* 套餐价格页面专用样式 */

/* 滚动条隐藏样式 - 兼容各主流浏览器 */
/* Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Edge and IE */
html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* 隐藏滚动条但保留滚动功能 */
.comparison-table-wrapper::-webkit-scrollbar {
    display: none;
}

.comparison-table-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-x;
}

/* 响应式设置 */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        touch-action: pan-x pan-y;
        padding: 0;
        width: 100%;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .comparison-table {
        width: 100%;
        min-width: 100%;
        font-size: 12px;
    }

    .comparison-section {
        padding: 0;
        max-width: 100%;
        margin: 0;
    }

    body {
        margin: 0;
        padding: 0;
        font-size: 14px;
        line-height: 1.5;
    }

    html {
        margin: 0;
        padding: 0;
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
        line-height: 1.4;
    }

    .comparison-table th {
        font-size: 14px;
        padding: 14px 8px;
        font-weight: 600;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 40%;
        font-size: 11px;
    }

    .feature-name {
        font-size: 11px;
        padding-left: 20px;
        line-height: 1.4;
    }

    .feature-subtitle {
        font-size: 10px;
        line-height: 1.3;
    }

    .comparison-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .comparison-title p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* 优化触摸交互 */
    .feature-row {
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .feature-row:active {
        background-color: rgba(228, 70, 125, 0.1);
    }

    .category-row.collapsible {
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .category-row.collapsible:active {
        background-color: rgba(74, 132, 232, 0.1);
    }

    /* 优化表格滚动体验 */
    .comparison-table-wrapper {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* 确保表格内容换行 */
    .comparison-table td {
        word-wrap: break-word;
        white-space: normal;
    }

    /* 优化功能说明按钮 */
    .feature-info-btn {
        width: 18px;
        height: 18px;
    }

    .feature-info-btn svg {
        width: 10px;
        height: 10px;
    }
}

/* 图片边框样式 - 与index.html保持一致 */
.ios-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.dark-mode .ios-logo img {
    filter: none;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* 移除流光特效 */
.ios-logo::before {
    display: none;
}

/* 移除流光动画 */
@keyframes shine {
    0% {
        transform: translateX(-150%) translateZ(0) rotate(30deg);
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    50% {
        transform: translateX(0%) translateZ(0) rotate(30deg);
        opacity: 1;
    }

    85% {
        opacity: 0.8;
    }

    100% {
        transform: translateX(150%) translateZ(0) rotate(30deg);
        opacity: 0;
    }
}

/* 移除第二层流光效果 */
.ios-logo::after {
    display: none;
}

/* 移除第二层流光动画 */
@keyframes shine-secondary {
    0% {
        transform: translateX(-150%) translateZ(0) rotate(30deg);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    50% {
        transform: translateX(0%) translateZ(0) rotate(30deg);
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(150%) translateZ(0) rotate(30deg);
        opacity: 0;
    }
}

/* 确保图片在暗黑模式下也能正确显示 */
.dark-mode .ios-logo img {
    /* 使用滤镜调整图片在暗黑模式下的显示效果 */
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    /* 增强亮度和对比度，添加白色阴影增强可见性 */
}

/* 暗黑模式下的流光特效 */
.dark-mode .ios-logo::before {
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 35%,
            rgba(255, 255, 255, 0.5) 45%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.5) 55%,
            rgba(255, 255, 255, 0) 65%,
            rgba(255, 255, 255, 0) 100%);
}

/* 暗黑模式下的第二层流光 */
.dark-mode .ios-logo::after {
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
}



/* SVG图标样式 - 与index.html保持一致 */
.ios-theme-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-main);
    transition: transform 0.3s ease;
}

/* 合作伙伴页面图标样式 */
.benefit-icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
    color: var(--accent, var(--primary-color));
}

/* 套餐价格页面主容器 */
.pricing-page {
    padding: 20px 0;
}

/* 版本套餐内容区域 - 移除padding */
#versionPackageContent {
    padding: 0;
}

/* 套餐页面Hero区域 */
.pricing-hero {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto 40px;
}

.pricing-hero .hud-circle {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(228, 70, 125, 0.1) 0%,
            rgba(255, 165, 0, 0.08) 30%,
            rgba(255, 215, 0, 0.05) 50%,
            transparent 70%);
    box-shadow:
        0 0 40px rgba(228, 70, 125, 0.15),
        0 0 80px rgba(255, 165, 0, 0.08),
        inset 0 0 60px rgba(228, 70, 125, 0.05),
        inset 0 0 80px rgba(255, 165, 0, 0.03);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: rotateClockwise 28s linear infinite, pulseRipple 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 交互效果：当鼠标悬停在 pricing-hero 上时 */
.pricing-hero:hover .hud-circle {
    animation-duration: 20s, 3s;
    animation-timing-function: linear, ease-in-out;
}

.pricing-hero:hover .hud-circle:nth-child(1) {
    transform: scale(1.05);
    box-shadow:
        0 0 60px rgba(228, 70, 125, 0.2),
        0 0 120px rgba(255, 165, 0, 0.12),
        0 0 30px rgba(255, 215, 0, 0.1),
        inset 0 0 80px rgba(228, 70, 125, 0.08),
        inset 0 0 100px rgba(255, 165, 0, 0.05);
}

.pricing-hero:hover .hud-circle:nth-child(2) {
    transform: scale(1.1);
    box-shadow:
        0 0 50px rgba(228, 70, 125, 0.18),
        0 0 100px rgba(255, 165, 0, 0.1),
        inset 0 0 70px rgba(228, 70, 125, 0.07),
        inset 0 0 90px rgba(255, 165, 0, 0.04);
}

.pricing-hero:hover .hud-circle:nth-child(3) {
    transform: scale(1.15);
    box-shadow:
        0 0 40px rgba(228, 70, 125, 0.2),
        0 0 80px rgba(255, 165, 0, 0.12),
        inset 0 0 60px rgba(228, 70, 125, 0.09),
        inset 0 0 80px rgba(255, 165, 0, 0.06);
}

/* 暗黑模式下的交互效果 */
.dark-mode .pricing-hero:hover .hud-circle:nth-child(1) {
    box-shadow:
        0 0 60px rgba(74, 132, 232, 0.25),
        0 0 120px rgba(0, 229, 255, 0.16),
        0 0 30px rgba(139, 92, 246, 0.15),
        inset 0 0 80px rgba(74, 132, 232, 0.12),
        inset 0 0 100px rgba(0, 229, 255, 0.08);
}

.dark-mode .pricing-hero:hover .hud-circle:nth-child(2) {
    box-shadow:
        0 0 50px rgba(74, 132, 232, 0.22),
        0 0 100px rgba(0, 229, 255, 0.14),
        inset 0 0 70px rgba(74, 132, 232, 0.1),
        inset 0 0 90px rgba(0, 229, 255, 0.07);
}

.dark-mode .pricing-hero:hover .hud-circle:nth-child(3) {
    box-shadow:
        0 0 40px rgba(74, 132, 232, 0.25),
        0 0 80px rgba(0, 229, 255, 0.16),
        inset 0 0 60px rgba(74, 132, 232, 0.12),
        inset 0 0 80px rgba(0, 229, 255, 0.09);
}

.pricing-hero .hud-circle[style*="dashed"] {
    animation: rotateCounterClockwise 32s linear infinite, breathe 6s ease-in-out infinite 1.5s;
}

/* 为不同大小的 hud-circle 设置不同的动画效果 */
.pricing-hero .hud-circle:nth-child(1) {
    animation: rotateClockwise 28s linear infinite, pulseRipple 5s ease-in-out infinite;
}

.pricing-hero .hud-circle:nth-child(2) {
    animation: rotateCounterClockwise 32s linear infinite, breathe 6s ease-in-out infinite 1.5s;
}

.pricing-hero .hud-circle:nth-child(3) {
    animation: rotateClockwise 24s linear infinite, flicker 4s ease-in-out infinite 2.5s;
}

.pricing-hero .hud-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(45deg,
            rgba(228, 70, 125, 0.3) 0%,
            rgba(255, 165, 0, 0.3) 25%,
            rgba(255, 215, 0, 0.3) 50%,
            rgba(255, 165, 0, 0.3) 75%,
            rgba(228, 70, 125, 0.3) 100%);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    animation: borderGlow 3s ease-in-out infinite, borderRotate 10s linear infinite;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* 优化旋转动画的缓动效果 */
@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* 波纹动画效果 */
@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* 呼吸动画效果 */
@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* 闪烁动画效果 */
@keyframes flicker {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.9;
    }
}

/* 脉冲波纹组合动画 */
@keyframes pulseRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow:
            0 0 40px rgba(228, 70, 125, 0.15),
            0 0 80px rgba(255, 165, 0, 0.08),
            inset 0 0 60px rgba(228, 70, 125, 0.05),
            inset 0 0 80px rgba(255, 165, 0, 0.03);
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
        box-shadow:
            0 0 60px rgba(228, 70, 125, 0.2),
            0 0 120px rgba(255, 165, 0, 0.12),
            0 0 20px rgba(255, 215, 0, 0.1),
            inset 0 0 80px rgba(228, 70, 125, 0.08),
            inset 0 0 100px rgba(255, 165, 0, 0.05);
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow:
            0 0 40px rgba(228, 70, 125, 0.15),
            0 0 80px rgba(255, 165, 0, 0.08),
            inset 0 0 60px rgba(228, 70, 125, 0.05),
            inset 0 0 80px rgba(255, 165, 0, 0.03);
    }
}

.pricing-hero .subtitle {
    padding: 0 20px;
}

.pricing-hero .tag-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pricing-hero .tag-line .dot {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
}

.pricing-hero .tag-line .line {
    width: 30px;
    height: 1px;
    background: var(--pink);
}

.pricing-hero .tag-badge {
    background: rgba(228, 70, 125, 0.1);
    color: var(--pink);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-hero .main-title {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.pricing-hero .main-title span {
    display: block;
}

/* 图片容器动画 */
.pricing-hero .main-title-image {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out forwards 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-hero .main-title-image img {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out forwards 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-hero .main-title-image img:hover {
    transform: scale(1.02);
}

/* 暗黑模式下的图片显示为白色 */
.dark-mode .pricing-hero .main-title-image img {
    filter: brightness(0) invert(1);
}

/* 淡入上移动画 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 - 确保手机端动画效果一致 */
@media (max-width: 768px) {
    .pricing-hero .main-title-image {
        animation: fadeInUp 1s ease-out forwards 0.3s;
    }

    .pricing-hero .main-title-image img {
        max-width: 80%;
        animation: fadeInUp 1s ease-out forwards 0.3s;
    }
}

.pricing-hero .subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-hero .button-container {
    position: relative;
    z-index: 1;
}

/* 套餐切换标签 */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    padding: 0 20px;
}

.pricing-tab {
    padding: 12px 30px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-tab.active {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

.pricing-tab:hover:not(.active) {
    border-color: var(--pink);
    color: var(--pink);
}

/* 暗黑模式下的套餐切换标签 */
.dark-mode .pricing-tab {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.dark-mode .pricing-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.dark-mode .pricing-tab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* 暗黑模式下的二年套餐省最高41%文本 */
.dark-mode .pricing-tab span {
    color: var(--primary) !important;
}

/* 套餐卡片网格 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* 九星服务版网格容器 */
.pricing-grid-nine-star {
    display: flex;
    justify-content: center;
    margin: 30px auto 60px;
    padding: 0 20px;
    max-width: 1200px;
}

/* 卡片互动效果 */
.payment {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px;
    transform: translateY(-40px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform, padding;
}

.payment:hover {
    padding: 40px;
    transform: translateY(0);
}

.payment .bg {
    position: absolute;
    bottom: 0;
    height: 70%;
    width: 100%;
    border-radius: 25px;
    background: linear-gradient(225deg, #ffc107, #ff9800);
}

/* 九星服务版卡片样式 */
.nine-star-card {
    width: 100%;
    clip-path: none;
    border-radius: 15px;
    overflow: hidden;
    height: auto;
    transform: translateY(80px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1000;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.05);
    background: #fcfcfc;
    will-change: transform;
}

.nine-star-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 15px;
    z-index: -1;
    transition: background 0.3s ease;
}

.nine-star-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--pink)), transparent);
    opacity: 0.8;
    z-index: 2;
    transition: height 0.3s ease, opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

.nine-star-card:hover::before {
    height: 6px;
    opacity: 1;
}

.nine-star-card.featured::before {
    background: var(--accent, var(--pink));
    height: 6px;
    opacity: 1;
}

.payment:hover .nine-star-card {
    transform: translateY(0);
}

/* 九星服务版内容布局 */
.nine-star-card .pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
}

.nine-star-card .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nine-star-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nine-star-card .feature-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.nine-star-card .feature-list li br {
    margin-bottom: 5px;
}

.nine-star-card .pricing-header {
    text-align: left;
    padding-right: 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.nine-star-card .pricing-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.nine-star-card .pricing-includes {
    font-size: 12px;
    line-height: 1.4;
    color: #999;
    margin-bottom: 10px;
    font-style: italic;
}

/* 下拉提示说明样式 */
.tooltip-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.tooltip-trigger {
    font-size: 12px;
    line-height: 1.4;
    color: #999;
    font-style: italic;
    cursor: pointer;
    position: relative;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tooltip-trigger:hover {
    background: rgba(74, 132, 232, 0.1);
    color: #4a84e8;
}

.tooltip-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    overflow: hidden;
}

.tooltip-container:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-header {
    padding: 12px 16px;
    background: linear-gradient(135deg, #4a84e8, #00e5ff);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.tooltip-body {
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

.tooltip-body p {
    margin: 0 0 12px 0;
}

.tooltip-body ul {
    margin: 0;
    padding-left: 20px;
}

.tooltip-body li {
    margin-bottom: 6px;
}

.tooltip-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 16px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
    z-index: -1;
}

.nine-star-card .pricing-desc {
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-main);
    font-weight: 600;
}

.nine-star-card .pricing-subdesc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 5px;
}

.nine-star-card .service-highlights {
    margin: 5px 0;
}

.nine-star-card .service-items-row {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.nine-star-card .service-items-row .service-item {
    flex: 1;
}

.nine-star-card .service-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    will-change: transform, box-shadow;
}

.nine-star-card .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nine-star-card .service-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background;
}

.nine-star-card .service-item-header:hover {
    background: rgba(74, 132, 232, 0.05);
}

.nine-star-card .service-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.nine-star-card .service-item-icon {
    font-size: 18px;
    font-weight: bold;
    color: #4a84e8;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.nine-star-card .service-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 12px;
    will-change: max-height;
}

.nine-star-card .service-item-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    padding: 0 0 12px;
}

.nine-star-card .pricing-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--accent, var(--pink));
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* 暗黑模式 */
.dark-mode .nine-star-card .pricing-includes {
    color: #666;
}

/* 暗黑模式下的下拉提示说明样式 */
.dark-mode .tooltip-trigger {
    color: #666;
}

.dark-mode .tooltip-trigger:hover {
    background: rgba(74, 132, 232, 0.2);
    color: #00e5ff;
}

.dark-mode .tooltip-content {
    background: rgba(30, 30, 40, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark-mode .tooltip-body {
    color: #e2e8f0;
}

.dark-mode .tooltip-content::before {
    background: rgba(30, 30, 40, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-bottom: none;
}

.dark-mode .nine-star-card .pricing-desc {
    color: #f1f5f9;
}

.dark-mode .nine-star-card .pricing-subdesc {
    color: #aaa;
}

.dark-mode .nine-star-card .service-item {
    background: rgba(30, 30, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dark-mode .nine-star-card .service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dark-mode .nine-star-card .service-item-header:hover {
    background: rgba(74, 132, 232, 0.1);
}

.dark-mode .nine-star-card .service-item h4 {
    color: #f1f5f9;
}

.dark-mode .nine-star-card .service-item-icon {
    color: #00e5ff;
}

.dark-mode .nine-star-card .service-item-content p {
    color: #aaa;
}

.dark-mode .nine-star-card .pricing-tagline {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .nine-star-card .pricing-header img {
    filter: brightness(0) invert(1);
}

.dark-mode .nine-star-card::after {
    background: #2a2a2a;
}

/* 暗黑模式下的九星服务版价格信息 */
.dark-mode .nine-star-card .pricing-original {
    color: #64748b;
}

.dark-mode .nine-star-card .pricing-current .period {
    color: #94a3b8;
}

/* 暗黑模式下的九星服务版分隔线 */
.dark-mode .nine-star-card .pricing-right {
    border-left: 1px dashed rgba(255, 255, 255, 0.1);
}

.dark-mode .nine-star-card .pricing-header {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

/* 暗黑模式下的九星服务版按钮 */
.dark-mode .nine-star-card .pricing-btn {
    background: var(--primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dark-mode .nine-star-card .pricing-btn:hover {
    background: var(--primary-light);
    box-shadow: 6px 6px 0 var(--primary-dark), 0 8px 16px rgba(0, 0, 0, 0.3);
}

.nine-star-card .pricing-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    min-height: 300px;
}

.nine-star-card .pricing-price {
    text-align: center;
    margin-bottom: 0;
}

.nine-star-card .pricing-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.nine-star-card .pricing-current {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent, var(--pink));
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-style: italic;
    margin-bottom: 5px;
}

.nine-star-card .pricing-current .currency {
    font-size: 24px;
    font-weight: 700;
}

.nine-star-card .pricing-current .period {
    font-size: 16px;
    color: #666;
    font-weight: normal;
    font-style: normal;
}

.nine-star-card .pricing-btn {
    width: 100%;
    max-width: 200px;
    padding: 16px;
    font-size: 16px;
    text-align: center;
}

.nine-star-card .pricing-features {
    columns: 2;
    column-gap: 20px;
    margin: 20px 0;
}

.nine-star-card .pricing-features li {
    break-inside: avoid;
    margin-bottom: 10px;
}

/* 套餐卡片样式 - 基于现有price-card扩展 */
.pricing-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--pink)), transparent);
    opacity: 0.8;
    z-index: 2;
    transition: height 0.3s ease, opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    z-index: -1;
    transition: background 0.3s ease;
}

/* 暗黑模式下的套餐卡片 */
.dark-mode .pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dark-mode .pricing-card::after {
    background: #1e293b;
}

.dark-mode .pricing-header h3 {
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dark-mode .pricing-header .pricing-desc {
    color: #94a3b8;
}

.dark-mode .pricing-original {
    color: #64748b;
}

.dark-mode .pricing-current .period {
    color: #94a3b8;
}

.dark-mode .pricing-features li {
    color: #94a3b8;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.dark-mode .pricing-features li.included::before {
    color: #22c55e;
}

.dark-mode .pricing-features li.not-included::before {
    color: #64748b;
}

.dark-mode .pricing-features li.not-included {
    color: #64748b;
}

.dark-mode .pricing-btn {
    background: var(--primary) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    color: white !important;
}

.dark-mode .pricing-btn:hover {
    background: var(--primary-light) !important;
    box-shadow: 6px 6px 0 var(--primary-dark), 0 8px 16px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.dark-mode .pricing-card.featured .pricing-btn {
    background: var(--accent, var(--primary));
}

.dark-mode .pricing-card.featured .pricing-btn:hover {
    background: var(--primary-light);
}

/* 暗黑模式下的标准版卡片按钮 */
.dark-mode .pricing-card#standard .pricing-btn {
    background: #3b82f6 !important;
}

.dark-mode .pricing-card#standard .pricing-btn:hover {
    background: #60a5fa !important;
    box-shadow: 6px 6px 0 #2563eb, 0 8px 16px rgba(59, 130, 246, 0.3) !important;
}

/* 暗黑模式下的专业版卡片按钮 */
.dark-mode .pricing-card#professional .pricing-btn {
    background: #10b981 !important;
}

.dark-mode .pricing-card#professional .pricing-btn:hover {
    background: #34d399 !important;
    box-shadow: 6px 6px 0 #059669, 0 8px 16px rgba(16, 185, 129, 0.3) !important;
}

/* 暗黑模式下的尊享版卡片按钮 */
.dark-mode .pricing-card#premium .pricing-btn {
    background: #8b5cf6 !important;
}

.dark-mode .pricing-card#premium .pricing-btn:hover {
    background: #a78bfa !important;
    box-shadow: 6px 6px 0 #7c3aed, 0 8px 16px rgba(139, 92, 246, 0.3) !important;
}

/* 暗黑模式下的旗舰版卡片按钮 */
.dark-mode .pricing-card#enterprise .pricing-btn {
    background: #ef4444 !important;
}

.dark-mode .pricing-card#enterprise .pricing-btn:hover {
    background: #f87171 !important;
    box-shadow: 6px 6px 0 #dc2626, 0 8px 16px rgba(239, 68, 68, 0.3) !important;
}

/* 暗黑模式下的九星服务版卡片按钮 */
.dark-mode .pricing-card#nineStar .pricing-btn {
    background: #ffc107 !important;
    color: #1a1a1a !important;
}

.dark-mode .pricing-card#nineStar .pricing-btn:hover {
    background: #ffd54f !important;
    box-shadow: 6px 6px 0 #d97706, 0 8px 16px rgba(255, 193, 7, 0.3) !important;
    color: #1a1a1a !important;
}

/* 暗黑模式下的卡片悬停效果 */
.dark-mode .pricing-card:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--primary));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    animation: cardGlowDark 2s ease-in-out infinite alternate;
}

@keyframes cardGlowDark {
    0% {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 12px 32px rgba(74, 132, 232, 0.4);
    }
}

/* 卡片悬停时的流光效果 */
.pricing-card:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--pink));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: cardGlow 2s ease-in-out infinite alternate;
}

@keyframes cardGlow {
    0% {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 12px 32px rgba(74, 132, 232, 0.3);
    }
}



@keyframes glow {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.pricing-card:hover::before {
    height: 6px;
    opacity: 1;
}

/* 推荐套餐样式 */
.pricing-card.featured {
    transform: scale(1.05);
    background: var(--accent, var(--pink));
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.pricing-card.featured::before {
    background: var(--accent, var(--pink));
    height: 6px;
    opacity: 1;
}

/* 推荐标签 */
.pricing-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--pink);
    color: #fff;
    padding: 6px 40px;
    font-size: 11px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 2px 10px rgba(228, 70, 125, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.pricing-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

/* 专业版推荐标签 - 绿色 */
.pricing-card#professional .pricing-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
    animation: pulse-professional 2s infinite;
}

/* 高级标签 - 尊享版 */
.pricing-badge.premium-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
    animation: pulse 2s infinite;
}

/* 旗舰标签 - 旗舰版 */
.pricing-badge.enterprise-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
    animation: pulse 1.5s infinite;
}

.pricing-badge.top-badge {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

/* 徽章悬停效果 */
.pricing-card:hover .pricing-badge {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(228, 70, 125, 0.5);
}

.pricing-card#professional:hover .pricing-badge {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.6);
}

.pricing-card:hover .premium-badge {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6);
}

.pricing-card:hover .enterprise-badge {
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.6);
}

.pricing-card:hover .top-badge {
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.6);
}

/* 脉冲动画 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 70, 125, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(228, 70, 125, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(228, 70, 125, 0);
    }
}

/* 专业版脉冲动画 */
@keyframes pulse-professional {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.premium-badge {
    animation: pulse-premium 2s infinite;
}

.enterprise-badge {
    animation: pulse-enterprise 1.5s infinite;
}



@keyframes pulse-premium {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

@keyframes pulse-enterprise {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}





/* 套餐内容 */
.pricing-content {
    position: relative;
    z-index: 2;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 套餐头部 */
.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    font-size: 26px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-header h3 {
    transform: scale(1.05);
}

.pricing-header .pricing-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

/* 价格区域 */
.pricing-price {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.pricing-original {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: 8px;
    font-weight: 500;
}

.pricing-current {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent, var(--pink));
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-style: italic;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-current .currency {
    font-size: 24px;
    font-weight: 700;
}

.pricing-current .period {
    font-size: 16px;
    color: #666;
    font-weight: normal;
    font-style: normal;
}

.pricing-card:hover .pricing-current {
    transform: scale(1.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured .pricing-current {
    color: var(--accent, var(--pink));
}

/* 功能列表 */
.pricing-features {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: #666;
    font-size: 13px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.included::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    font-size: 14px;
    min-width: 20px;
}

.pricing-features li.not-included::before {
    content: '×';
    color: #ccc;
    font-weight: bold;
    font-size: 14px;
    min-width: 20px;
}

.pricing-features li.not-included {
    color: #aaa;
}

/* 套餐按钮基础样式 */
.pricing-btn {
    width: 100%;
    padding: 16px;
    background: var(--text-main);
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    clip-path: polygon(8px 0, 100% 0, 100% 70%, calc(100% - 8px) 100%, 0 100%, 0 30%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 按钮文字动画 */
.pricing-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

/* 按钮渐变背景效果 */
.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.pricing-btn:hover::before {
    transform: translateX(100%);
}

/* 按钮悬停效果 */
.pricing-btn:hover {
    background: var(--accent, var(--pink));
    box-shadow: 6px 6px 0 var(--text-main), 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translate(-3px, -3px);
}

/* 按钮悬停文字效果 */
.pricing-btn:hover span {
    transform: scale(1.08);
}

/* 按钮点击效果 */
.pricing-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 3px 3px 0 var(--text-main);
    transition: all 0.1s ease;
}

.pricing-btn:active span {
    transform: scale(0.98);
}

/* 推荐套餐按钮样式 */
.pricing-card.featured .pricing-btn {
    background: var(--accent, var(--pink));
}

.pricing-card.featured .pricing-btn:hover {
    background: #10b981;
}

/* 专业版按钮 - 绿色系 */
.pricing-card#professional .pricing-btn {
    background: var(--text-main);
}

.pricing-card#professional .pricing-btn:hover {
    background: #10b981;
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--text-main), 0 8px 16px rgba(16, 185, 129, 0.4);
}

/* 尊享版按钮 - 紫色系 */
.pricing-card#premium .pricing-btn {
    background: var(--text-main);
}

.pricing-card#premium .pricing-btn:hover {
    background: #8b5cf6;
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--text-main), 0 8px 16px rgba(139, 92, 246, 0.4);
}

/* 旗舰版按钮 - 红色系 */
.pricing-card#enterprise .pricing-btn {
    background: var(--text-main);
}

.pricing-card#enterprise .pricing-btn:hover {
    background: #ef4444;
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--text-main), 0 8px 16px rgba(239, 68, 68, 0.4);
}

/* 套餐对比表格 */
.comparison-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
}

.comparison-title {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-title h2 {
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 10px;
}

.comparison-title p {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

/* 搜索框样式 */
.searchBox {
    position: relative;
    width: 60px;
    height: 40px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    transition: 0.5s;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-right: 15px;
}

.searchBox.active {
    width: 300px;
    border-radius: 20px;
}

.search {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    color: #333;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    cursor: pointer;
    z-index: 2;
}

.search svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #666;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.close {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    color: #333;
    justify-content: center;
    align-items: center;
    scale: 0;
    cursor: pointer;
    font-size: 1em;
    transition: 0.5s;
    transition-delay: 0s;
    z-index: 2;
}

.close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #666;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.searchBox.active .close {
    scale: 1;
    transition-delay: 0.5s;
}

.searchInput {
    position: absolute;
    left: 40px;
    width: calc(100% - 80px);
    height: 100%;
    display: flex;
    align-items: center;
}

.searchInput input {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 0 15px;
    background: transparent;
    color: #333;
}

.searchInput input::placeholder {
    color: #999;
}

.table-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.table-control-btn {
    padding: 8px 16px;
    border: 1px solid var(--pink);
    background: transparent;
    color: var(--pink);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.table-control-btn:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-2px);
}

.table-control-btn:active {
    transform: translateY(0);
}

/* 复合按钮样式 */
.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toggle-btn:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.toggle-btn:active {
    transform: translateY(0);
}

.toggle-btn[data-state="expanded"] {
    background: var(--pink);
    color: white;
}

.toggle-btn[data-state="expanded"]:hover {
    background: #d63384;
    border-color: #d63384;
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}

.toggle-btn:disabled {
    cursor: not-allowed;
    background: #f8d7da !important;
    border-color: #f5c6cb !important;
    color: #721c24 !important;
    transform: none !important;
    box-shadow: none !important;
}

.toggle-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.toggle-btn[data-state="expanded"] .toggle-icon {
    transform: rotate(180deg);
}

.toggle-text {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* 按钮动画效果 */
.toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.toggle-btn:hover::before {
    width: 300px;
    height: 300px;
}

.toggle-btn:active::before {
    width: 100px;
    height: 100px;
    transition: width 0.1s, height 0.1s;
}

.comparison-table-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    max-height: none;
    min-height: auto;
    background: transparent;
    border: none;
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

/* 表格滚动按钮样式 - iOS风格 */
.table-scroll-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.scroll-buttons-container {
    display: grid;
    grid-template-areas:
        ". up ."
        "left down right";
    grid-template-columns: 44px 44px 44px;
    grid-template-rows: 44px 44px;
    gap: 4px;
}

.scroll-btn.scroll-up {
    grid-area: up;
}

.scroll-btn.scroll-left {
    grid-area: left;
}

.scroll-btn.scroll-down {
    grid-area: down;
}

.scroll-btn.scroll-right {
    grid-area: right;
}

.table-scroll-buttons.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .table-scroll-buttons {
        display: block;
        right: 15px;
        bottom: 120px;
    }
}

.scroll-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dark-mode .scroll-btn {
    background: rgba(30, 30, 40, 0.95);
    color: #f1f5f9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode .scroll-btn:hover {
    background: rgba(40, 40, 50, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* 触摸活跃状态 */
.scroll-btn.touch-active {
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.dark-mode .scroll-btn.touch-active {
    opacity: 0.6;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* 长按状态 */
.scroll-btn.long-press {
    transform: scale(0.85);
    opacity: 0.6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    background: rgba(200, 200, 200, 0.8);
}

.dark-mode .scroll-btn.long-press {
    opacity: 0.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    background: rgba(60, 60, 70, 0.8);
}

/* 按钮聚焦状态 */
.scroll-btn:focus-visible {
    outline: 2px solid var(--primary, #4a84e8);
    outline-offset: 2px;
}

/* 按钮点击涟漪效果 */
.scroll-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 1;
}

.dark-mode .scroll-btn::after {
    background: rgba(255, 255, 255, 0.2);
}

.scroll-btn:active::after {
    width: 60px;
    height: 60px;
}

/* 按钮禁用状态 */
.scroll-btn:disabled,
.scroll-btn[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(200, 200, 200, 0.5);
    transform: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dark-mode .scroll-btn:disabled,
.dark-mode .scroll-btn[disabled] {
    opacity: 0.2;
    background: rgba(50, 50, 60, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* 按钮图标样式 */
.scroll-btn svg {
    width: 20px;
    height: 20px;
    z-index: 2;
    position: relative;
}

/* 确保所有按钮的过渡效果一致 */
.scroll-btn,
.scroll-btn svg,
.scroll-btn::after {
    transition: all 0.2s ease;
}

/* 手机端显示滚动按钮 */
@media (max-width: 768px) {
    .table-scroll-buttons {
        display: flex;
    }

    .comparison-table-wrapper {
        padding-right: 50px;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 100%;
}

@media (max-width: 768px) {
    .comparison-table {
        min-width: 100%;
        font-size: 12px;
    }
}

/* FAQ样式 */
.pricing-faq {
    margin: 0 40px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-faq-title {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-faq-title h2 {
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.pricing-faq .tab {
    position: relative;
    background: #fff;
    padding: 0 20px 20px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-faq .tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.pricing-faq .tab input {
    appearance: none;
}

.pricing-faq .tab label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.pricing-faq .tab label::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 2em;
    color: rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.pricing-faq .tab:hover label::after {
    color: #333;
    transform: scale(1.1);
}

.pricing-faq .tab input:checked~label::after {
    content: '+';
    color: #fff;
    transform: rotate(135deg) scale(1.2);
}

.pricing-faq .tab label h2 {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.25em;
    border-radius: 5px;
    margin-right: 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.pricing-faq .tab input:checked~label h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.2);
    font-size: 8em;
    justify-content: flex-end;
    padding: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-faq .tab label h3 {
    position: relative;
    font-weight: 500;
    color: #333;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pricing-faq .tab input:checked~label h3 {
    background: #fff;
    padding: 4px 12px;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.pricing-faq .tab .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-faq .tab input:checked~.content {
    max-height: 1000px;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-faq .tab .content p {
    position: relative;
    padding: 10px 0;
    color: #333;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.pricing-faq .tab input:checked~.content p {
    color: #fff;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.2s;
}

.pricing-faq .tab:nth-child(1) label h2 {
    background: linear-gradient(135deg, #FF6B6B 10%, #EE5A24 100%);
}

.pricing-faq .tab:nth-child(2) label h2 {
    background: linear-gradient(135deg, #70F570 10%, #49C628 100%);
}

.pricing-faq .tab:nth-child(3) label h2 {
    background: linear-gradient(135deg, #3C8CE7 10%, #00EAFF 100%);
}

.pricing-faq .tab:nth-child(4) label h2 {
    background: linear-gradient(135deg, #FF96F9 10%, #C32BAC 100%);
}

.pricing-faq .tab:nth-child(5) label h2 {
    background: linear-gradient(135deg, #FD6E6A 10%, #FFC600 100%);
}

/* 暗黑模式下的FAQ样式 */
.dark-mode .pricing-faq .tab {
    background: rgba(30, 30, 40, 0.98);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.dark-mode .pricing-faq-title h2 {
    color: #f1f5f9;
}

.dark-mode .pricing-faq .tab label h3 {
    color: #f1f5f9;
}

.dark-mode .pricing-faq .tab:hover label::after {
    color: #f1f5f9;
}

.dark-mode .pricing-faq .tab input:checked~label h3 {
    background: rgba(30, 30, 40, 0.98);
    color: #f1f5f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dark-mode .pricing-faq .tab .content p {
    color: #f1f5f9;
}

.dark-mode .pricing-faq .tab input:checked~.content p {
    color: #fff;
}

/* HUD circles 样式 */
.hud-circle {
    will-change: transform;
    transform: translateZ(0px);
}

.hud-circle:nth-child(1) {
    width: 50vw;
    height: 50vw;
    right: -25vw;
    top: -10vw;
}

.hud-circle:nth-child(2) {
    width: 30vw;
    height: 30vw;
    right: 10vw;
    bottom: -15vw;
    border: 2px dashed rgba(74, 132, 232, 0.15);
}

.hud-circle:nth-child(3) {
    width: 15vw;
    height: 15vw;
    left: -7.5vw;
    top: 30vw;
    border: 1px solid rgba(0, 229, 255, 0.1);
    animation-duration: 25s;
}

/* 主标题图片样式 */
.main-title-image img {
    max-width: 120%;
    height: auto;
    margin: 0 -10%;
}

/* 二年套餐标签样式 */
.pricing-tab .discount-text {
    color: var(--pink);
}

/* 套餐卡片 accent 变量 */
.pricing-card#standard {
    --accent: #3b82f6;
}

.pricing-card#professional {
    --accent: #10b981;
}

.pricing-card#premium {
    --accent: #8b5cf6;
}

.pricing-card#enterprise {
    --accent: #ef4444;
}

.pricing-card#nineStar {
    --accent: #ffc107;
}

/* 九星服务版徽章样式 */
.pricing-badge.custom-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

/* 九星服务版图片样式 */
.nine-star-card .pricing-header img {
    height: 40px;
}

/* 比较表格表头图片样式 */
.comparison-table-wrapper img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    object-fit: cover;
    border-radius: 8px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 800px;
    min-height: 300px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 0;
    padding: 0;
}

.comparison-section {
    padding: 0 10px;
    margin: 40px auto;
    max-width: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 8px 10px;
    font-size: 12px;
}

.comparison-table th {
    font-size: 14px;
    padding: 12px 10px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 40%;
    font-size: 11px;
}

.feature-name {
    font-size: 11px;
    padding-left: 20px;
}

.feature-subtitle {
    font-size: 10px;
}

.comparison-table tr {
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: none;
}

.comparison-table th {
    background: var(--text-main);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    padding: 16px 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-bottom: none;
}

.comparison-table th:first-child {
    border-top-left-radius: 8px;
}

.comparison-table th:last-child {
    border-top-right-radius: 8px;
}

.comparison-table th:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    width: 30%;
}

.comparison-table td {
    font-size: 13px;
    color: #666;
    background: white;
}

.comparison-table tr:hover td {
    background: rgba(228, 70, 125, 0.03);
}

.comparison-table .check {
    color: #22c55e;
    font-weight: bold;
}

.comparison-table .cross {
    color: #ccc;
}

.comparison-table .optional {
    color: #f59e0b;
    font-size: 14px;
    font-weight: bold;
}

.comparison-table .unlimited {
    color: #f59e0b;
    font-weight: bold;
}

.comparison-table .feature {
    font-weight: 600;
    color: #f59e0b;
}

.comparison-table .category-row {
    background: white;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
}

.comparison-table .category-row td {
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* 折叠控制样式 */
.category-row.collapsible {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.category-row.collapsible:hover {
    background: rgba(74, 132, 232, 0.1);
}

.category-row.collapsible .collapse-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
    color: #4a84e8;
    transition: transform 0.3s ease;
}

.category-row.collapsible.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

/* 功能行交互样式 */
.feature-group {
    transition: all 0.3s ease;
}

.feature-row {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.feature-row:hover {
    background: rgba(228, 70, 125, 0.03);
}

.feature-row.active {
    background: rgba(102, 126, 234, 0.05);
}

.feature-row.sub-feature td:first-child {
    padding-left: 40px;
}

.feature-row.sub-feature .feature-text {
    font-size: 13px;
    color: #666;
}

.dark-mode .feature-row.sub-feature .feature-text {
    color: #94a3b8;
}

.feature-row td {
    position: relative;
    vertical-align: middle;
    padding: 14px 16px;
}

.feature-row td:first-child {
    width: 30%;
}

.feature-container {
    position: relative;
    width: 100%;
}

.feature-name {
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #1e293b;
    gap: 8px;
    position: relative;
    padding-left: 25px;
}



/* 功能徽章样式 */
.feature-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 10px;
    /* 移除 margin-left，因为已经有 gap: 8px 提供间距 */
    vertical-align: middle;
}

/* 新功能徽章样式 */
.feature-badge.new-feature {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

/* 暗黑模式下的新功能徽章 */
.dark-mode .feature-badge.new-feature {
    background: linear-gradient(135deg, #ff8787, #ff5252);
    box-shadow: 0 2px 4px rgba(255, 82, 82, 0.4);
}

.feature-subtitle {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    font-weight: normal;
    line-height: 1.4;
}

.dark-mode .feature-subtitle {
    color: #94a3b8;
}

.feature-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #667eea;
    padding: 0;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.feature-info-btn svg {
    width: 12px;
    height: 12px;
}

.feature-note-header svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #667eea;
}

.feature-info-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.feature-info-btn:hover::before {
    width: 100%;
    height: 100%;
}

.feature-info-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.feature-info-btn:active {
    transform: scale(0.95);
}

.feature-row.active .feature-info-btn {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(102, 126, 234, 0);
    }
}

.feature-note {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    z-index: 100;
    font-size: 13px;
    line-height: 1.6;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 16px;
    overflow: hidden;
}

.feature-row.active .feature-note {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-note-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px 10px;
    background: rgba(102, 126, 234, 0.15);
    color: #4c51bf;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-note-header svg {
    flex-shrink: 0;
    color: #667eea;
}

.feature-note-header span {
    flex: 1;
}

.feature-note-content {
    padding: 18px;
    background: rgba(255, 255, 255, 0.4);
}

.feature-note-content p {
    margin: 0;
    color: #2d3748;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
}

.feature-note::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 12px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
    z-index: -1;
}

.feature-note strong {
    color: #ffd700;
    margin-right: 5px;
}

/* 暗黑模式适配 */
.dark-mode .comparison-table-wrapper {
    background: transparent;
    border: none;
}

.dark-mode .comparison-table th {
    background: #334155;
    color: #f1f5f9;
}

.dark-mode .comparison-table th:first-child {
    border-top-left-radius: 8px;
}

.dark-mode .comparison-table th:last-child {
    border-top-right-radius: 8px;
}

.dark-mode .comparison-table td {
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #1e293b;
}

.dark-mode .comparison-table tr:hover td {
    background: rgba(228, 70, 125, 0.1);
}

.dark-mode .comparison-table .category-row {
    background: rgba(74, 132, 232, 0.1);
    color: #4a84e8;
}

.dark-mode .comparison-table .category-row td {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .category-row.collapsible:hover {
    background: rgba(74, 132, 232, 0.15);
}

/* 暗黑模式下的功能行样式 */
.dark-mode .feature-row {
    color: #e2e8f0;
}

.dark-mode .feature-row:hover {
    background: rgba(228, 70, 125, 0.08);
}

.dark-mode .feature-row.active {
    background: rgba(102, 126, 234, 0.1);
}

.dark-mode .feature-name {
    color: #f1f5f9;
}

/* 合作伙伴页面样式 */
.partner-hero {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow: hidden;
    transform: translateZ(0);
    will-change: background, box-shadow;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



.partner-hero .hud-circle {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(228, 70, 125, 0.1) 0%, rgba(255, 165, 0, 0.08) 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
    box-shadow: 0 0 40px rgba(228, 70, 125, 0.15), 0 0 80px rgba(255, 165, 0, 0.08), inset 0 0 60px rgba(228, 70, 125, 0.05), inset 0 0 80px rgba(255, 165, 0, 0.03);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: rotateClockwise 28s linear infinite, pulseRipple 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.partner-hero:hover .hud-circle {
    animation-duration: 20s, 3s;
    animation-timing-function: linear, ease-in-out;
}

.partner-hero .tag-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.partner-hero .tag-line .dot {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
}

.partner-hero .tag-line .line {
    width: 30px;
    height: 1px;
    background: var(--pink);
}

.partner-hero .tag-badge {
    background: rgba(228, 70, 125, 0.1);
    color: var(--pink);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 12px;
    margin-bottom: 20px;
    display: inline-block;
}

.partner-hero .partner-title {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partner-hero .partner-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* 合作伙伴类型 */
.partner-types {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.type-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1px;
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--pink)), transparent);
    opacity: 0.8;
    z-index: 2;
    transition: height 0.3s ease, opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

.type-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 19px;
    z-index: -1;
    transition: background 0.3s ease;
}

.type-card.featured {
    transform: scale(1.05);
    background: var(--accent, var(--pink));
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.type-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.type-card:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--pink));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: cardGlow 2s ease-in-out infinite alternate;
}

.type-icon {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.type-icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.type-card:hover .type-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent, var(--pink));
}

.type-card h3 {
    font-size: 26px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin: 20px 25px 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.type-card:hover h3 {
    transform: scale(1.05);
}

.type-features {
    list-style: none;
    margin: 0 25px 30px;
    padding: 0;
    flex: 1;
}

.type-features li {
    padding: 12px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: color 0.3s ease;
}

.type-features li:last-child {
    border-bottom: none;
}

.type-card:hover .type-features li {
    color: var(--text-main);
}

.type-description {
    margin: 20px 25px 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    flex: 1;
    transition: color 0.3s ease;
}

.type-card:hover .type-description {
    color: var(--text-main);
}

.contact-btn {
    width: calc(100% - 50px);
    margin: 0 25px 30px;
    padding: 16px;
    background: var(--text-main);
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    clip-path: polygon(8px 0, 100% 0, 100% 70%, calc(100% - 8px) 100%, 0 100%, 0 30%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.contact-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.contact-btn:hover::before {
    transform: translateX(100%);
}

.contact-btn:hover {
    background: var(--accent, var(--pink));
    box-shadow: 6px 6px 0 var(--text-main), 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translate(-3px, -3px);
}

.contact-btn:hover span {
    transform: scale(1.08);
}

.contact-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 3px 3px 0 var(--text-main);
    transition: all 0.1s ease;
}

.contact-btn:active span {
    transform: scale(0.98);
}

/* 暗黑模式下的联系按钮 */
.dark-mode .contact-btn {
    background: var(--primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #1a1a1a !important;
}

.dark-mode .contact-btn:hover {
    background: var(--primary-light);
    box-shadow: 6px 6px 0 var(--primary-dark), 0 8px 16px rgba(0, 0, 0, 0.3);
    color: #1a1a1a !important;
}

/* 暗黑模式下的表格控制按钮 */
.dark-mode .table-control-btn {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.dark-mode .table-control-btn:hover {
    background: var(--primary);
    color: white;
}

.dark-mode .toggle-btn[data-state="expanded"] {
    background: var(--primary);
    color: white;
}

.dark-mode .toggle-btn[data-state="expanded"]:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* 经销合作商优势解读 */
.partner-advantages {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.partner-advantages h3 {
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1px;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    text-align: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 15px;
    z-index: -1;
    transition: background 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--pink));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: cardGlow 2s ease-in-out infinite alternate;
}

.advantage-icon {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.advantage-icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.advantage-card:hover .advantage-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent, var(--pink));
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 20px 15px;
    transition: color 0.3s ease;
}

.advantage-card:hover h4 {
    color: var(--text-main);
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px 10px;
    transition: color 0.3s ease;
}

.advantage-card:hover p {
    color: var(--text-main);
}

/* 暗黑模式下的合作伙伴页面样式 */
.dark-mode .partner-hero {
    background: rgba(30, 30, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dark-mode .partner-hero .tag-line {
    color: #94a3b8;
}

.dark-mode .partner-hero .partner-title {
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dark-mode .partner-hero .partner-subtitle {
    color: #94a3b8;
}

.dark-mode .type-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dark-mode .type-card::after {
    background: #1e293b;
}

.dark-mode .type-card h3 {
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dark-mode .type-features li {
    color: #94a3b8;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.dark-mode .type-card:hover .type-features li {
    color: #f1f5f9;
}

.dark-mode .type-description {
    color: #94a3b8;
}

.dark-mode .type-card:hover .type-description {
    color: #f1f5f9;
}

.dark-mode .advantage-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dark-mode .advantage-card::after {
    background: #1e293b;
}

.dark-mode .advantage-card h4 {
    color: #f1f5f9;
}

.dark-mode .advantage-card p {
    color: #94a3b8;
}

.dark-mode .advantage-card:hover h4 {
    color: #f1f5f9;
}

.dark-mode .advantage-card:hover p {
    color: #f1f5f9;
}

.dark-mode .partner-advantages h3 {
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 暗黑模式下的搜索框 */
.dark-mode .searchBox {
    background: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dark-mode .search svg {
    stroke: #94a3b8;
}

.dark-mode .close svg {
    stroke: #94a3b8;
}

.dark-mode .searchInput input {
    color: #f1f5f9;
}

.dark-mode .searchInput input::placeholder {
    color: #64748b;
}

.dark-mode .searchBox.active .close {
    color: #94a3b8;
}

.advantage-card p:last-child {
    margin-bottom: 30px;
}

/* 合作流程 */
.partner-process {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.partner-process h3 {
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1px;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    text-align: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 15px;
    z-index: -1;
    transition: background 0.3s ease;
}

.process-step:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--pink));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: cardGlow 2s ease-in-out infinite alternate;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(228, 70, 125, 0.3);
    animation: pulse 2s infinite;
    z-index: 2;
}

.process-icon {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-step:hover .process-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent, var(--pink));
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 20px 15px;
    transition: color 0.3s ease;
}

.process-step:hover h4 {
    color: var(--text-main);
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px 10px;
    transition: color 0.3s ease;
}

.process-step:hover p {
    color: var(--text-main);
}

.process-step p:last-child {
    margin-bottom: 30px;
}

/* 暗黑模式适配 */
.dark-mode .partner-hero {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
}



.dark-mode .partner-hero .hud-circle {
    background: radial-gradient(circle at 30% 30%, rgba(74, 132, 232, 0.15) 0%, rgba(0, 229, 255, 0.12) 30%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
    box-shadow: 0 0 40px rgba(74, 132, 232, 0.2), 0 0 80px rgba(0, 229, 255, 0.12), inset 0 0 60px rgba(74, 132, 232, 0.08), inset 0 0 80px rgba(0, 229, 255, 0.05);
}

.dark-mode .partner-hero .partner-title {
    color: #f1f5f9;
}

.dark-mode .partner-hero .partner-subtitle {
    color: #94a3b8;
}

.dark-mode .type-card::after {
    background: #2a2a2a;
}

.dark-mode .type-card h3 {
    color: #f1f5f9;
}

.dark-mode .type-features li {
    color: #94a3b8;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .type-card:hover .type-features li {
    color: #f1f5f9;
}

.dark-mode .type-description {
    color: #94a3b8;
}

.dark-mode .type-card:hover .type-description {
    color: #f1f5f9;
}

.dark-mode .advantage-card::after {
    background: #1e293b;
}

.dark-mode .advantage-card h4 {
    color: #f1f5f9;
}

.dark-mode .advantage-card:hover h4 {
    color: #f1f5f9;
}

.dark-mode .advantage-card p {
    color: #94a3b8;
}

.dark-mode .advantage-card:hover p {
    color: #f1f5f9;
}

.dark-mode .process-step::after {
    background: #1e293b;
}

.dark-mode .process-step h4 {
    color: #f1f5f9;
}

.dark-mode .process-step:hover h4 {
    color: #f1f5f9;
}

.dark-mode .process-step p {
    color: #94a3b8;
}

.dark-mode .process-step:hover p {
    color: #f1f5f9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .partner-hero .partner-title {
        font-size: 32px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .type-card.featured {
        transform: scale(1);
    }

    .type-card.featured:hover {
        transform: translateY(-12px);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .partner-advantages h3,
    .partner-process h3 {
        font-size: 24px;
    }

    .advantage-card h4,
    .process-step h4 {
        font-size: 16px;
    }

    .advantage-card p,
    .process-step p {
        font-size: 13px;
    }
}

/* 动画效果 */
@keyframes cardGlow {
    0% {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 12px 32px rgba(74, 132, 232, 0.3);
    }
}

@keyframes borderGlow {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(228, 70, 125, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(228, 70, 125, 0);
    }
}

@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 40px rgba(228, 70, 125, 0.15), 0 0 80px rgba(255, 165, 0, 0.08), inset 0 0 60px rgba(228, 70, 125, 0.05), inset 0 0 80px rgba(255, 165, 0, 0.03);
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
        box-shadow: 0 0 60px rgba(228, 70, 125, 0.2), 0 0 120px rgba(255, 165, 0, 0.12), 0 0 20px rgba(255, 215, 0, 0.1), inset 0 0 80px rgba(228, 70, 125, 0.08), inset 0 0 100px rgba(255, 165, 0, 0.05);
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 40px rgba(228, 70, 125, 0.15), 0 0 80px rgba(255, 165, 0, 0.08), inset 0 0 60px rgba(228, 70, 125, 0.05), inset 0 0 80px rgba(255, 165, 0, 0.03);
    }
}

.dark-mode .feature-info-btn {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    color: #667eea;
}

.dark-mode .feature-info-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

.dark-mode .feature-note {
    background: rgba(30, 30, 40, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #f1f5f9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-mode .feature-note::before {
    background: rgba(30, 30, 40, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-bottom: none;
}

.dark-mode .feature-note-header {
    background: rgba(102, 126, 234, 0.2);
    color: #a5b4fc;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.dark-mode .feature-note-content {
    background: rgba(30, 30, 40, 0.4);
}

.dark-mode .feature-note-content p {
    color: #e2e8f0;
}

.dark-mode .comparison-section {
    margin: 60px auto;
}

.dark-mode .comparison-title h2 {
    color: #fff;
}

.dark-mode .comparison-title p {
    color: #aaa;
}

.dark-mode .table-control-btn {
    border: 1px solid #4a84e8;
    background: transparent;
    color: #4a84e8;
}

.dark-mode .table-control-btn:hover {
    background: #4a84e8;
    color: white;
}

.dark-mode .toggle-btn {
    border: 1px solid #4a84e8;
    background: transparent;
    color: #4a84e8;
}

.dark-mode .toggle-btn:hover {
    background: #4a84e8;
    color: white;
}

.dark-mode .toggle-btn[data-state="expanded"] {
    background: #4a84e8;
    color: white;
}

.dark-mode .toggle-btn[data-state="expanded"]:hover {
    background: #3a6bc0;
    border-color: #3a6bc0;
}

.dark-mode .toggle-btn:disabled {
    background: rgba(74, 132, 232, 0.3) !important;
    border-color: rgba(74, 132, 232, 0.5) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* 暗黑模式下的搜索框样式 */
.dark-mode .searchBox {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1e293b;
}

.dark-mode .search {
    color: #94a3b8;
}

.dark-mode .searchInput input {
    background: #1e293b;
    color: #f1f5f9;
}

.dark-mode .searchInput input::placeholder {
    color: #64748b;
}

.dark-mode .close {
    color: #94a3b8;
}

.dark-mode .close:hover {
    color: #f1f5f9;
}

/* 暗黑模式适配 - 统一背景颜色 */
.dark-mode .comparison-table-wrapper {
    background: transparent;
    border: none;
}

.dark-mode .comparison-table {
    background: #1e293b;
}

.dark-mode .comparison-table tr {
    background: #1e293b;
}

.dark-mode .comparison-table th {
    background: #334155;
    color: #f1f5f9;
}

.dark-mode .comparison-table th:first-child {
    border-top-left-radius: 8px;
}

.dark-mode .comparison-table th:last-child {
    border-top-right-radius: 8px;
}

.dark-mode .comparison-table td {
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #1e293b;
}

.dark-mode .comparison-table tr:hover td {
    background: rgba(228, 70, 125, 0.1);
}

.dark-mode .pricing-faq-title h2 {
    color: #fff;
}

.dark-mode .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .faq-question {
    color: #fff;
}

.dark-mode .faq-answer {
    color: #aaa;
}

/* 版本套餐和合作伙伴按钮样式 */
.pricing-hero .button-container {
    display: flex;
    width: 100%;
    margin-top: 30px;
    gap: 0;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.pricing-hero .button-container button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 50%;
    transition: all 0.3s ease;
}

.pricing-hero .button-container button:first-child {
    background: #6366f1;
    color: white;
}

.pricing-hero .button-container button:last-child {
    background: #f43f5e;
    color: white;
}

.pricing-hero .button-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-hero .button-container button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pricing-hero .button-container button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 深色模式适配 */
.dark-mode .pricing-hero .button-container button:first-child {
    background: #4f46e5;
}

.dark-mode .pricing-hero .button-container button:last-child {
    background: #e11d48;
}

.dark-mode .pricing-hero .button-container button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark-mode .pricing-hero .button-container button:active {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 合作伙伴页面深色模式适配 */
.dark-mode .benefit-card {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .benefit-card h3 {
    color: #fff;
}

.dark-mode .benefit-card p {
    color: #aaa;
}

.dark-mode .step-card {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .step-card h4 {
    color: #fff;
}

.dark-mode .step-card p {
    color: #aaa;
}

.dark-mode .partner-steps h3 {
    color: #fff;
}

.dark-mode .partner-contact {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.dark-mode .partner-contact h3 {
    color: #fff;
}

.dark-mode .partner-contact p {
    color: #aaa;
}

.dark-mode .contact-btn {
    background: #fff;
    color: var(--text-main);
}

.dark-mode .contact-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 4px 4px 0 #fff;
}

.dark-mode .contact-btn:active {
    box-shadow: 2px 2px 0 #fff;
}

/* 内容区域样式 */
.content-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content-section {
    display: none;
    width: 100%;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 合作伙伴页面样式 */
.partner-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.partner-hero::before {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    right: -10vw;
    top: -10vw;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.partner-hero::after {
    content: '';
    position: absolute;
    width: 30vw;
    height: 30vw;
    left: 10vw;
    bottom: -10vw;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.partner-hero .tag-line {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.partner-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    margin: 20px 0 10px;
    position: relative;
    z-index: 2;
}

.partner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.partner-benefits {
    padding: 0 20px;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.8;
    z-index: 2;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.partner-steps {
    padding: 0 20px;
    margin-bottom: 60px;
}

.partner-steps h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-main);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.8;
    z-index: 2;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.partner-contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    border-radius: 0;
    margin: 0 20px 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-contact::before {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    right: -10vw;
    top: -10vw;
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.partner-contact h3 {
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: var(--text-main);
}

.partner-contact p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    padding: 16px 32px;
    background: var(--text-main);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    clip-path: polygon(8px 0, 100% 0, 100% 70%, calc(100% - 8px) 100%, 0 100%, 0 30%);
}

.contact-btn:hover {
    background: var(--primary-color);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--text-main);
}

.contact-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--text-main);
    transition: all 0.1s ease;
}

/* 合作伙伴标识墙样式 */
.partner-logos {
    padding: 60px 20px;
    background: var(--card-bg);
    margin-bottom: 60px;
}

.partner-logos h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-main);
}

.partner-logos p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.logo-item {
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.logo-item:hover .logo-placeholder {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* 轮播容器样式 */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: var(--text-main);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* 响应式轮播 */
@media (max-width: 768px) {
    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

/* 暗黑模式适配 */
.dark-mode .carousel-btn {
    background: rgba(30, 41, 59, 0.9);
    color: #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dark-mode .carousel-btn:hover {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.dark-mode .logo-placeholder {
    background: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dark-mode .logo-placeholder rect {
    fill: #334155;
}

.dark-mode .logo-placeholder text {
    fill: #94a3b8;
}

.dark-mode .logo-item:hover .logo-placeholder {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* 优化英雄区域视觉效果 */
.partner-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.partner-hero::before {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    right: -10vw;
    top: -10vw;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.partner-hero::after {
    content: '';
    position: absolute;
    width: 30vw;
    height: 30vw;
    left: 10vw;
    bottom: -10vw;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* 优化福利卡片设计 */
.benefit-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    opacity: 0.8;
    z-index: 2;
    transition: 0.3s;
}

.benefit-card:hover::before {
    opacity: 1;
    height: 6px;
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pricing-hero .button-container {
        flex-direction: column;
    }

    .pricing-hero .button-container button {
        width: 100%;
        margin-bottom: 10px;
    }

    .partner-title {
        font-size: 2rem;
    }

    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .logo-placeholder {
        padding: 15px;
    }

    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .partner-contact {
        margin: 0 10px 40px;
    }
}

@media (max-width: 480px) {
    .partner-hero {
        padding: 30px 15px;
    }

    .partner-title {
        font-size: 1.8rem;
    }

    .benefit-card,
    .step-card {
        padding: 20px;
    }

    .partner-contact {
        padding: 30px 15px;
    }

    .pricing-hero .button-container button {
        padding: 14px 20px;
        font-size: 14px;
    }

    .pricing-hero .button-container button svg {
        width: 18px;
        height: 18px;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }

    /* 九星服务版响应式布局 - 保持左右布局 */
    .nine-star-card .pricing-content {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        padding: 30px;
    }

    .nine-star-card .pricing-header {
        text-align: left;
        padding-right: 0;
    }

    .nine-star-card .pricing-header h3 {
        font-size: 24px;
    }

    .nine-star-card .pricing-current {
        font-size: 40px;
    }

    .nine-star-card .pricing-right {
        padding-left: 20px;
    }

    .nine-star-card .pricing-features {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 0 15px 40px;
    }

    /* 九星服务版响应式布局 */
    .pricing-grid-nine-star {
        padding: 0 15px;
    }

    .nine-star-card {
        width: 100%;
        max-width: 400px;
    }

    .nine-star-card .pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .nine-star-card .service-items-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nine-star-card .service-items-row .service-item {
        flex: 1 1 calc(50% - 5px);
    }

    .nine-star-card .pricing-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
        padding-top: 25px;
        align-items: center;
    }

    .nine-star-card .pricing-header {
        text-align: center;
    }

    .nine-star-card .pricing-price {
        text-align: center;
    }

    .nine-star-card .pricing-btn {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .pricing-hero .main-title {
        font-size: 42px;
    }

    .comparison-table {
        min-width: 100%;
    }

    .comparison-table th {
        padding: 18px 20px;
        font-size: 16px;
    }

    .comparison-table td {
        padding: 14px 16px;
        font-size: 12px;
    }

    .pricing-faq {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 30px 15px;
    }

    .pricing-hero .main-title {
        font-size: 36px;
    }

    .pricing-hero .subtitle {
        font-size: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 0 15px 40px;
    }

    .pricing-tabs {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 15px;
    }

    .pricing-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .comparison-section {
        padding: 0 15px;
    }

    .comparison-title h2 {
        font-size: 24px;
    }

    .comparison-table-wrapper {
        padding: 0 8px;
    }

    .comparison-table {
        min-width: 100%;
    }

    .comparison-table th {
        padding: 16px 18px;
        font-size: 14px;
    }

    .comparison-table td {
        padding: 12px 14px;
        font-size: 11px;
    }

    .pricing-faq {
        padding: 0 15px;
    }

    .pricing-faq-title h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .pricing-hero .main-title {
        font-size: 28px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 10px;
    }

    .comparison-table th {
        font-size: 12px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 40%;
    }

    .pricing-content {
        padding: 25px 20px;
    }

    .pricing-current {
        font-size: 36px;
    }

    .pricing-features li {
        font-size: 12px;
        padding: 10px 0;
    }

    .comparison-table {
        min-width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        font-size: 12px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .pricing-hero .main-title {
        font-size: 24px;
    }

    .pricing-tab {
        padding: 8px 16px;
        font-size: 12px;
    }

    .pricing-content {
        padding: 20px 15px;
    }

    .pricing-current {
        font-size: 32px;
    }

    .pricing-btn {
        padding: 12px;
        font-size: 14px;
    }

    .comparison-table {
        min-width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
        font-size: 9px;
    }

    .comparison-table th {
        font-size: 11px;
    }
}

/* 移动端功能说明横向显示 */
@media (max-width: 768px) {
    .feature-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .feature-name {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .feature-text {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .feature-note {
        position: static;
        max-width: 100%;
        margin: 10px 0 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        animation: none;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        width: 100%;
        transition: all 0.3s ease-out;
        max-height: 0;
        overflow: hidden;
    }

    .feature-row.active .feature-note {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 500px;
    }

    /* 添加下拉动画效果 */
    @keyframes slideDown {
        from {
            max-height: 0;
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            max-height: 500px;
            opacity: 1;
            transform: translateY(0);
        }
    }

    .feature-row.active .feature-note {
        animation: slideDown 0.3s ease-out forwards;
    }

    .feature-row {
        position: relative;
    }

    .feature-row td {
        position: relative;
        z-index: 1;
        padding-bottom: 15px;
    }

    .feature-note::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-row td {
        padding: 10px 12px;
    }

    .feature-note {
        font-size: 11px;
        padding: 10px 12px;
    }
}