/* 首页特定样式 */

/* WriteBot AI Integration Styles */
:root {
    --model-slider-max-width: 100%;
    --model-item-width: 120px;
    --model-item-margin: 20px;
    --model-animation-duration: 120s;

    /* 优化为三色配色方案 - 减少青色，增强蓝紫色 */
    --primary-blue: #4B89DC;
    --secondary-blue: #3A70BD;
    --primary-purple: #9B7AD5;
    --secondary-purple: #7E68C1;
    --primary-teal: #5BC0BE;
    --secondary-teal: #41A3A0;

    /* 透明色 */
    --light-blue: rgba(75, 137, 220, 0.1);
    --light-purple: rgba(155, 122, 213, 0.1);
    --light-teal: rgba(91, 192, 190, 0.05);

    /* 辅助色 */
    --accent-orange: #FFB74D;
    --accent-green: #81C784;
    --accent-red: #E57373;
}

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

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

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

/* 优化的背景样式 - 减少青色，调整为以蓝色为主的渐变 */
body {
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

/* 移除波浪线条背景 */
body::before {
    content: none;
}

/* 增加明亮光点效果 - 更新为蓝紫色系，降低透明度 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.writebot-integration {
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.integration-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #444;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.integration-subtitle {
    font-size: clamp(0.7rem, 2vw, 1.12rem);
    font-weight: 400;
    margin-bottom: 50px;
    color: #666;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    z-index: 2;
    position: relative;
    letter-spacing: 0.2px;
}

.purple-text {
    background: linear-gradient(135deg, #4B89DC, #6B5CE7, #8B4FDF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    opacity: 1;
}

.container2 {
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}


/* 更新integration-visualization的位置：向上移动200px */
.integration-visualization {
    position: relative;
    width: 100%;
    height: clamp(100px, 60vh, 400px);
    max-width: 100%;
    transform-origin: center center;
    z-index: 1;

    overflow: hidden; /* 确保波浪曲线不会溢出 */
    border-radius: 8px; /* 添加圆角 */
    margin: 0 auto;
}

/* 添加背景网格线增强设计感 */
.integration-visualization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(50, 109, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(50, 109, 255, 0.02) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 0;
    pointer-events: none;
}

/* 添加径向渐变背景 */
.integration-visualization::after {
    content: none;
    /* 移除背景粒子径向渐变 */
}

/* 添加彩色波浪线背景 */
.colored-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.colored-waves img {
    will-change: transform; /* 性能优化，提前告知浏览器transform将会变化 */
    transform: translateZ(0); /* 启用GPU加速 */
    image-rendering: high-quality; /* 高质量图像渲染 */
}

/* 波浪动画效果 */
@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 中心节点和连接线位置提升，确保在波浪上方 */
.center-node, .connection-nodes {
    position: relative;
    z-index: 2;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.ai-box {
    width: clamp(20px, 10vw, 80px);
    height: clamp(20px, 10vw, 80px);
    background: linear-gradient(135deg, #B5C9F2, #4B89DC, #3A70BD);
    border-radius: clamp(12px, 2vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 25px rgba(75, 137, 220, 0.25),
        0 0 15px rgba(155, 122, 213, 0.5); /* 添加紫色光晕 */
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.ai-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220%;
    height: 220%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle, 
        rgba(75, 137, 220, 0.6) 0%, 
        rgba(75, 137, 220, 0.3) 40%, 
        rgba(75, 137, 220, 0) 70%
    );
    border-radius: 50%;
    animation: pulse-glow 4s infinite ease-in-out;
    z-index: -1;
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    filter: blur(1px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    transform-origin: center;
    animation: particle-pulse 2s infinite alternate ease-in-out;
}

@keyframes particle-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.particle-trail {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(155, 122, 213, 0));
    transform-origin: left center;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    filter: blur(1px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 3;
}

/* 移除center-node的所有动画效果，使其保持静态显示 */
.ai-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    /* 移除动画效果 */
}

.ai-box .fastgpt-logo {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* 使SVG图标变成白色 */
}

/* 优化connection-nodes的样式 */
.connection-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none; /* 允许点击穿透 */
}

/* 使节点具有响应性 */
.node {
    width: clamp(16px, 6vw, 48px);
    height: clamp(16px, 6vw, 48px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: absolute;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
    pointer-events: auto; /* 确保节点可点击 */
}

/* 节点位置 - 调整为使用百分比确保自适应 */
.node-left:nth-child(1) {
    top: 25%;
    left: calc(25% + 8vw);
}

/* 对应左上斜线 */
.node-left:nth-child(2) {
    top: 45%;
    left: calc(20% + 8vw);
}

/* 对应左中水平线 */
.node-left:nth-child(3) {
    top: 65%;
    left: calc(25% + 8vw);
}

/* 对应左下斜线 */
.node-left:nth-child(4) {
    top: 30%;
    left: calc(30% + 8vw);
}

/* 左上侧附加节点 */
.node-left:nth-child(5) {
    top: 60%;
    left: calc(30% + 8vw);
}

/* 右侧节点位置同样使用百分比 */
.node-right:nth-child(6) {
    top: 25%;
    right: calc(25% + 8vw);
}

/* 对应右上斜线 */
.node-right:nth-child(7) {
    top: 45%;
    right: calc(20% + 8vw);
}

/* 对应右中水平线 */
.node-right:nth-child(8) {
    top: 65%;
    right: calc(25% + 8vw);
}

/* 对应右下斜线 */
.node-right:nth-child(9) {
    top: 60%;
    right: calc(30% + 8vw);
}

/* 右上侧附加节点 */
.node-right:nth-child(10) {
    top: 30%;
    right: calc(30% + 8vw);
}

/* 添加响应式媒体查询 */
@media (max-width: 992px) {
    .node-left:nth-child(1) {
        top: 25%;
        left: calc(15% + 5vw);
    }
    .node-left:nth-child(2) {
        top: 45%;
        left: calc(10% + 5vw);
    }
    .node-left:nth-child(3) {
        top: 65%;
        left: calc(15% + 5vw);
    }
    .node-left:nth-child(4) {
        top: 30%;
        left: calc(20% + 5vw);
    }
    .node-left:nth-child(5) {
        top: 60%;
        left: calc(20% + 5vw);
    }
    .node-right:nth-child(6) {
        top: 25%;
        right: calc(15% + 5vw);
    }
    .node-right:nth-child(7) {
        top: 45%;
        right: calc(10% + 5vw);
    }
    .node-right:nth-child(8) {
        top: 65%;
        right: calc(15% + 5vw);
    }
    .node-right:nth-child(9) {
        top: 60%;
        right: calc(20% + 5vw);
    }
    .node-right:nth-child(10) {
        top: 30%;
        right: calc(20% + 5vw);
    }
}

@media (max-width: 768px) {
    .node {
        width: clamp(14px, 5vw, 40px);
        height: clamp(14px, 5vw, 40px);
    }
    .node i {
        font-size: clamp(8px, 2.5vw, 18px);
    }
    .node-left:nth-child(1) {
        top: 20%;
        left: calc(10% + 4vw);
    }
    .node-left:nth-child(2) {
        top: 40%;
        left: calc(5% + 4vw);
    }
    .node-left:nth-child(3) {
        top: 60%;
        left: calc(10% + 4vw);
    }
    .node-left:nth-child(4) {
        top: 25%;
        left: calc(15% + 4vw);
    }
    .node-left:nth-child(5) {
        top: 55%;
        left: calc(15% + 4vw);
    }
    .node-right:nth-child(6) {
        top: 20%;
        right: calc(10% + 4vw);
    }
    .node-right:nth-child(7) {
        top: 40%;
        right: calc(5% + 4vw);
    }
    .node-right:nth-child(8) {
        top: 60%;
        right: calc(10% + 4vw);
    }
    .node-right:nth-child(9) {
        top: 55%;
        right: calc(15% + 4vw);
    }
    .node-right:nth-child(10) {
        top: 25%;
        right: calc(15% + 4vw);
    }
}

@media (max-width: 480px) {
    .node {
        width: clamp(12px, 4vw, 32px);
        height: clamp(12px, 4vw, 32px);
    }
    .node i {
        font-size: clamp(6px, 2vw, 16px);
    }
    .node-left:nth-child(1) {
        top: 15%;
        left: calc(8% + 3vw);
    }
    .node-left:nth-child(2) {
        top: 35%;
        left: calc(4% + 3vw);
    }
    .node-left:nth-child(3) {
        top: 55%;
        left: calc(8% + 3vw);
    }
    .node-left:nth-child(4) {
        top: 20%;
        left: calc(12% + 3vw);
    }
    .node-left:nth-child(5) {
        top: 50%;
        left: calc(12% + 3vw);
    }
    .node-right:nth-child(6) {
        top: 15%;
        right: calc(8% + 3vw);
    }
    .node-right:nth-child(7) {
        top: 35%;
        right: calc(4% + 3vw);
    }
    .node-right:nth-child(8) {
        top: 55%;
        right: calc(8% + 3vw);
    }
    .node-right:nth-child(9) {
        top: 50%;
        right: calc(12% + 3vw);
    }
    .node-right:nth-child(10) {
        top: 20%;
        right: calc(12% + 3vw);
    }
    .node::after {
        font-size: 10px;
        padding: 3px 6px;
    }
}

.node:hover {
    transform: scale(1.2) translateZ(0);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 255, 255, 0.5);
}

.node i {
    font-size: clamp(10px, 3vw, 22px);
    transition: all 0.3s ease;
}

.node:hover i {
    transform: scale(1.2);
}

/* 给每个节点添加发光效果，与波浪线颜色匹配 */
.purple-node {
    background: linear-gradient(135deg, #a26bf9, #7030a0);
    box-shadow: 0 0 10px rgba(162, 107, 249, 0.5);
}

.blue-node {
    background: linear-gradient(135deg, #4B89DC, #1a56b0);
    box-shadow: 0 0 10px rgba(75, 137, 220, 0.5);
}

.green-node {
    background: linear-gradient(135deg, #40E0D0, #20b0a0);
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

.orange-node {
    background: linear-gradient(135deg, #FF9966, #db6a30);
    box-shadow: 0 0 10px rgba(255, 153, 102, 0.5);
}

.red-node {
    background: linear-gradient(135deg, #FF5252, #c41f1f);
    box-shadow: 0 0 10px rgba(255, 82, 82, 0.5);
}

.black-node {
    background: linear-gradient(135deg, #444, #222);
    box-shadow: 0 0 10px rgba(100, 100, 100, 0.5);
}

/* 节点标签显示 */
.node::after {
    content: attr(data-label);
    position: absolute;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 10;
}

.node:hover::after {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* 节点位置 - 调整间距使其更加分散 */
.node-left:nth-child(1) {
    top: 25%;
    left: 34%;
}

/* 对应左上斜线 */
.node-left:nth-child(2) {
    top: 45%;
    left: 28%;
}

/* 对应左中水平线 */
.node-left:nth-child(3) {
    top: 65%;
    left: 34%;
}

/* 对应左下斜线 */
.node-left:nth-child(4) {
    top: 30%;
    left: 40%;
}

/* 左上侧附加节点 */
.node-left:nth-child(5) {
    top: 60%;
    left: 40%;
}

/* 左下侧附加节点 */

.node-right:nth-child(6) {
    top: 25%;
    right: 34%;
}

/* 对应右上斜线 */
.node-right:nth-child(7) {
    top: 45%;
    right: 28%;
}

/* 对应右中水平线 */
.node-right:nth-child(8) {
    top: 65%;
    right: 34%;
}

/* 对应右下斜线 */
.node-right:nth-child(9) {
    top: 60%;
    right: 40%;
}

/* 右下侧附加节点 */
.node-right:nth-child(10) {
    top: 30%;
    right: 40%;
}

/* 右上侧附加节点 */

/* 节点颜色 */
.purple-node {
    background: linear-gradient(135deg, #9C5CEA, #7445AF);
}

.blue-node {
    background: linear-gradient(135deg, #4B89DC, #3A70BD);
}

.green-node {
    background: linear-gradient(135deg, #5BC0BE, #41A3A0);
}

.orange-node {
    background: linear-gradient(135deg, #FFB74D, #FFA726);
}

.red-node {
    background: linear-gradient(135deg, #E57373, #EF5350);
}

.black-node {
    background: linear-gradient(135deg, #4A4A4A, #333333);
}

/* 节点标签 */
.node::after {
    content: attr(data-label);
    position: absolute;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
}

/* 悬停时显示标签 */
.node:hover::after {
    opacity: 1;
    visibility: visible;
}

/* 公告条样式 */
.announcement-banner {
    background: linear-gradient(135deg, rgba(75, 137, 220, 0.1), rgba(155, 122, 213, 0.15));
    border-radius: 12px;
    padding: 10px 20px;
    margin-bottom: 40px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.announcement-banner:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(75, 137, 220, 0.15), rgba(155, 122, 213, 0.2));
    border-color: rgba(255, 255, 255, 0.7);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
}

.announcement-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.announcement-icon i {
    font-size: 0.65rem;
    z-index: 2;
}

.announcement-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(75, 137, 220, 0.5), rgba(155, 122, 213, 0.5));
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
    animation: pulse-announce 2s infinite;
}

@keyframes pulse-announce {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

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

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.announcement-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    text-align: center;
}

.announcement-highlight {
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 12px;
    font-weight: 500;
    font-size: 0.8rem;
}

/* CTA按钮 */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(75, 137, 220, 0.35);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(155, 122, 213, 0.5);
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-purple));
}

.primary-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(4px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--primary-blue), var(--primary-teal)) border-box;
    color: var(--primary-blue);
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.secondary-btn:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) padding-box,
        linear-gradient(135deg, var(--primary-blue), var(--primary-teal)) border-box;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(75, 137, 220, 0.15);
}

/* 移动设备适配 */
@media (max-width: 992px) {
    .writebot-integration {
        padding: 100px 0 60px;
    }

    .integration-subtitle {
        width: 90%;
    }

    .integration-visualization {
        height: 700px;
    }

    .node-left:nth-child(1) {
        top: 30%;
        left: 28%;
    }

    /* 左上斜线 */
    .node-left:nth-child(2) {
        top: 45%;
        left: 23%;
    }

    /* 左中水平线 */
    .node-left:nth-child(3) {
        top: 60%;
        left: 28%;
    }

    /* 左下斜线 */
    .node-left:nth-child(4) {
        top: 35%;
        left: 38%;
    }

    /* 左上侧附加节点 */
    .node-left:nth-child(5) {
        top: 55%;
        left: 38%;
    }

    /* 左下侧附加节点 */

    .node-right:nth-child(6) {
        top: 30%;
        right: 28%;
    }

    /* 右上斜线 */
    .node-right:nth-child(7) {
        top: 45%;
        right: 23%;
    }

    /* 右中水平线 */
    .node-right:nth-child(8) {
        top: 60%;
        right: 28%;
    }

    /* 右下斜线 */
    .node-right:nth-child(9) {
        top: 55%;
        right: 38%;
    }

    /* 右下侧附加节点 */
    .node-right:nth-child(10) {
        top: 35%;
        right: 38%;
    }

    /* 右上侧附加节点 */

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .writebot-integration {
        padding: 80px 0 40px;
    }

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

    .integration-visualization {
        height: 600px;
        margin-top: -100px;
    }

    .ai-box {
        width: 60px;
        height: 60px;
    }

    .ai-box .fastgpt-logo {
        width: 65%;
        height: 65%;
    }

    .node {
        width: 36px;
        height: 36px;
    }

    .node i {
        font-size: 1rem;
    }

    .node-left:nth-child(1) {
        top: 25%;
        left: 18%;
    }

    .node-left:nth-child(2) {
        top: 45%;
        left: 12%;
    }

    .node-left:nth-child(3) {
        top: 65%;
        left: 18%;
    }
    
    .node-left:nth-child(4) {
        top: 30%;
        left: 30%;
    }

    .node-left:nth-child(5) {
        top: 60%;
        left: 30%;
    }

    .node-right:nth-child(6) {
        top: 25%;
        right: 18%;
    }

    .node-right:nth-child(7) {
        top: 45%;
        right: 12%;
    }

    .node-right:nth-child(8) {
        top: 65%;
        right: 18%;
    }
    
    .node-right:nth-child(9) {
        top: 60%;
        right: 30%;
    }

    .node-right:nth-child(10) {
        top: 30%;
        right: 30%;
    }

    .announcement-content {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .integration-visualization {
        height: 500px;
        margin-top: -80px;
    }

    .ai-box {
        width: 50px;
        height: 50px;
    }

    .ai-box .fastgpt-logo {
        width: 70%;
        height: 70%;
    }

    .node {
        width: 30px;
        height: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .node i {
        font-size: 0.8rem;
    }

    .node-left:nth-child(1) {
        top: 25%;
        left: 15%;
    }

    /* 左上斜线 */
    .node-left:nth-child(2) {
        top: 45%;
        left: 10%;
    }

    /* 左中水平线 */
    .node-left:nth-child(3) {
        top: 65%;
        left: 15%;
    }

    /* 左下斜线 */
    .node-left:nth-child(4) {
        top: 30%;
        left: 28%;
    }

    /* 左上侧附加节点 */
    .node-left:nth-child(5) {
        top: 60%;
        left: 28%;
    }

    /* 左下侧附加节点 */

    .node-right:nth-child(6) {
        top: 25%;
        right: 15%;
    }

    /* 右上斜线 */
    .node-right:nth-child(7) {
        top: 45%;
        right: 10%;
    }

    /* 右中水平线 */
    .node-right:nth-child(8) {
        top: 65%;
        right: 15%;
    }

    /* 右下斜线 */
    .node-right:nth-child(9) {
        top: 60%;
        right: 28%;
    }

    /* 右下侧附加节点 */
    .node-right:nth-child(10) {
        top: 30%;
        right: 28%;
    }

    /* 右上侧附加节点 */

    .node::after {
        display: none;
    }

    .announcement-banner {
        padding: 10px 15px;
    }

    .announcement-content {
        gap: 8px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        padding: 10px 20px;
    }

    .secondary-btn {
        padding: 9px 20px;
    }

    .cta-buttons {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* 图片预览样式 */
.webflow-preview-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.webflow-preview-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    background-color: #0f1632;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(75, 137, 220, 0.2);
}

.webflow-preview-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 80px rgba(75, 137, 220, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 12px;
    pointer-events: none;
}

.webflow-preview-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(75, 137, 220, 0.5);
}

.webflow-preview-container:hover::after {
    opacity: 1;
}

.webflow-preview-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(75, 137, 220, 0.08) 0%, transparent 80%),
        radial-gradient(circle at 85% 85%, rgba(155, 122, 213, 0.08) 0%, transparent 80%),
        linear-gradient(rgba(75, 137, 220, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 137, 220, 0.05) 1px, transparent 1px);
    background-size: 300px 300px, 300px 300px, 24px 24px, 24px 24px;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease, background-size 0.8s ease;
}

.webflow-preview-container:hover::before {
    opacity: 1;
    background-size: 350px 350px, 350px 350px, 24px 24px, 24px 24px;
}

.workflow-interface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.workflow-header {
    height: 50px;
    background: rgba(30, 40, 80, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.webflow-preview-container:hover .workflow-header {
    background: rgba(35, 45, 90, 0.85);
}

.workflow-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.webflow-preview-container:hover .workflow-title {
    opacity: 1;
    transform: scale(1.05);
}

.workflow-controls {
    display: flex;
    gap: 10px;
}

.workflow-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(75, 137, 220, 0.2);
    border: 1px solid rgba(75, 137, 220, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workflow-btn:hover {
    background: rgba(75, 137, 220, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.workflow-btn:nth-child(2):hover {
    background: rgba(91, 192, 190, 0.4);
    border-color: rgba(91, 192, 190, 0.5);
}

.workflow-btn:nth-child(3):hover {
    background: rgba(155, 122, 213, 0.4);
    border-color: rgba(155, 122, 213, 0.5);
}

.workflow-content {
    flex: 1;
    display: flex;
}

.workflow-sidebar {
    width: 180px;
    padding: 15px;
    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.webflow-preview-container:hover .workflow-sidebar {
    background: rgba(25, 35, 70, 0.6);
}

.workflow-component {
    padding: 10px;
    background: rgba(75, 137, 220, 0.15);
    border: 1px solid rgba(75, 137, 220, 0.3);
    border-radius: 6px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: grab;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.workflow-component::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.workflow-component:hover::before {
    left: 100%;
}

.workflow-component:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: rgba(75, 137, 220, 0.25);
    border-color: rgba(75, 137, 220, 0.5);
}

.workflow-component:active {
    cursor: grabbing;
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.workflow-component i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.workflow-component:hover i {
    transform: scale(1.2);
}

.workflow-component span {
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.workflow-component:nth-child(2) {
    background: rgba(155, 122, 213, 0.15);
    border: 1px solid rgba(155, 122, 213, 0.3);
}

.workflow-component:nth-child(2):hover {
    background: rgba(155, 122, 213, 0.25);
    border-color: rgba(155, 122, 213, 0.5);
}

.workflow-component:nth-child(3) {
    background: rgba(91, 192, 190, 0.15);
    border: 1px solid rgba(91, 192, 190, 0.3);
}

.workflow-component:nth-child(3):hover {
    background: rgba(91, 192, 190, 0.25);
    border-color: rgba(91, 192, 190, 0.5);
}

.workflow-component:nth-child(4) {
    background: rgba(255, 183, 77, 0.15);
    border: 1px solid rgba(255, 183, 77, 0.3);
}

.workflow-component:nth-child(4):hover {
    background: rgba(255, 183, 77, 0.25);
    border-color: rgba(255, 183, 77, 0.5);
}

.workflow-component:nth-child(5) {
    background: rgba(229, 115, 115, 0.15);
    border: 1px solid rgba(229, 115, 115, 0.3);
}

.workflow-component:nth-child(5):hover {
    background: rgba(229, 115, 115, 0.25);
    border-color: rgba(229, 115, 115, 0.5);
}

.workflow-canvas {
    flex: 1;
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
}

.workflow-node {
    position: absolute;
    background: rgba(30, 40, 80, 0.8);
    border-radius: 8px;
    padding: 12px;
    min-width: 140px;
    min-height: 70px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s forwards;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: move;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.workflow-node::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 8px 0;
    transition: all 0.3s ease;
}

.workflow-node:hover::after {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
}

.workflow-node:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.workflow-node:nth-child(1) {
    top: 30px;
    left: 80px;
    background: linear-gradient(135deg, rgba(75, 137, 220, 0.8), rgba(53, 97, 154, 0.8));
    animation-delay: 0.1s;
}

.workflow-node:nth-child(2) {
    top: 140px;
    left: 50px;
    background: linear-gradient(135deg, rgba(155, 122, 213, 0.8), rgba(107, 82, 152, 0.8));
    animation-delay: 0.3s;
}

.workflow-node:nth-child(3) {
    top: 90px;
    left: 240px;
    background: linear-gradient(135deg, rgba(91, 192, 190, 0.8), rgba(65, 137, 135, 0.8));
    animation-delay: 0.5s;
}

.workflow-node:nth-child(4) {
    top: 200px;
    left: 260px;
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.8), rgba(196, 141, 59, 0.8));
    animation-delay: 0.7s;
}

.workflow-node-title {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.workflow-node-title::after {
    content: '●';
    font-size: 10px;
    opacity: 0.6;
    color: #4BD964;
}

.workflow-node:nth-child(2) .workflow-node-title::after {
    color: #5BC0BE;
}

.workflow-node:nth-child(3) .workflow-node-title::after {
    color: #9B7AD5;
}

.workflow-node:nth-child(4) .workflow-node-title::after {
    color: #FFB74D;
}

.workflow-node-param {
    font-size: 12px;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.workflow-node:hover .workflow-node-param {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.workflow-connection {
    position: absolute;
    background: none;
    z-index: 0;
    overflow: visible;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}

.connection-line {
    stroke: rgba(75, 137, 220, 0.6);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5;
    animation: dash 20s linear infinite;
    transition: stroke 0.3s ease, d 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke-width 0.3s ease, filter 0.3s ease;
}

.webflow-preview-container:hover .connection-line {
    stroke: rgba(75, 137, 220, 0.8);
}

.connection-line:nth-child(2) {
    stroke: rgba(155, 122, 213, 0.6);
    animation-delay: -5s;
}

.webflow-preview-container:hover .connection-line:nth-child(2) {
    stroke: rgba(155, 122, 213, 0.8);
}

.connection-line:nth-child(3) {
    stroke: rgba(91, 192, 190, 0.6);
    animation-delay: -10s;
}

.webflow-preview-container:hover .connection-line:nth-child(3) {
    stroke: rgba(91, 192, 190, 0.8);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.03);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes dash {
    to {
        stroke-dashoffset: 1000;
    }
}

@media (max-width: 768px) {
    .workflow-sidebar {
        width: 120px;
    }

    .workflow-component span {
        font-size: 12px;
    }

    .workflow-node {
        min-width: 120px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .workflow-sidebar {
        width: 80px;
        padding: 10px;
    }

    .workflow-component {
        padding: 8px;
    }

    .workflow-component span {
        display: none;
    }

    .workflow-component i {
        font-size: 18px;
    }

    .workflow-node {
        transform: scale(0.85);
        transform-origin: top left;
        min-width: 110px;
    }

    .workflow-node:hover {
        transform: scale(0.9) translateY(-5px);
    }
}

/* Features Section 相关样式 */
.features-section {
    padding: 0px 0 210px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(248, 251, 255, 0) 0%, rgba(243, 247, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(155, 122, 213, 0.07) 0%, transparent 8%),
        radial-gradient(circle at 85% 85%, rgba(75, 137, 220, 0.07) 0%, transparent 12%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    font-weight: 400;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(auto, auto);
    gap: 20px;
    width: 100%;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.feature-card:nth-child(1) {
    grid-column: span 5;
    grid-row: span 2;
    padding: 0;
    display: flex;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(75, 137, 220, 0.1);
    transition: all 0.3s ease;
}

.feature-card:nth-child(1):hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(75, 137, 220, 0.2);
}

.feature-card:nth-child(1) .feature-content {
    width: 40%;
    padding: 35px 0px 0px 35px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.feature-card:nth-child(1) .feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card:nth-child(1) .feature-description {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-gif-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('/static/images/fastgpt.gif');
    background-size: 74%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: all 0.5s ease;
}

.feature-card:nth-child(1):hover .feature-gif-background {
    transform: scale(1.05);
    opacity: 1;
}

/* Gradient overlay to ensure text readability */
.feature-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 45%;
    width: 15%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.feature-card:nth-child(n) .feature-icon-wrapper {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
}

.feature-card:nth-child(n) .feature-icon {
    width: 100%;
    height: 100%;
}

.feature-card:nth-child(9) {
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(75, 137, 220, 0.08), rgba(155, 122, 213, 0.12));
    border: 1px solid rgba(75, 137, 220, 0.15);
    padding: 40px;
}

.feature-card:nth-child(9):hover {
    background: linear-gradient(135deg, rgba(75, 137, 220, 0.12), rgba(155, 122, 213, 0.18));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.feature-card:nth-child(9) .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-right: 25px;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(75, 137, 220, 0.15), rgba(155, 122, 213, 0.2));
}

.feature-card:nth-child(9) .feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card:nth-child(9) .feature-description {
    font-size: 1.05rem;
    max-width: 650px;
}

.feature-card:nth-child(9) .feature-text-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
}

.feature-card:nth-child(2) {
    grid-column: span 5;
    grid-row: span 1;
}

.feature-card:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.feature-card:nth-child(4) {
    grid-column: span 5;
    grid-row: span 1;
}

.feature-card:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}

.feature-card:nth-child(6) {
    grid-column: span 4;
    grid-row: span 1;
}

.feature-card:nth-child(7) {
    grid-column: span 4;
    grid-row: span 1;
}

.feature-card:nth-child(8) {
    grid-column: span 4;
    grid-row: span 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    margin-top: 4px;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5),
    .feature-card:nth-child(6) {
        grid-column: span 4;
    }

    .feature-card:nth-child(7),
    .feature-card:nth-child(8),
    .feature-card:nth-child(9) {
        grid-column: span 4;
    }

    .feature-card:nth-child(1) {
        flex-direction: column;
    }

    .feature-card:nth-child(1) .feature-content {
        width: 100%;
        padding: 30px;
    }

    .feature-gif-background {
        position: relative;
        width: 100%;
        height: 160px;
        margin-top: auto;
    }

    .feature-card:nth-child(1)::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
        padding: 0 20px;
    }

    .feature-card:nth-child(n) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .features-section {
        padding: 80px 0;
    }

    .feature-gif-background {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 550px;
    }

    .feature-card:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .feature-card {
        padding: 25px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .feature-card:nth-child(1) .feature-content {
        padding: 25px;
    }

    .features-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .feature-gif-background {
        height: 120px;
    }

    .feature-card:nth-child(9) {
        flex-direction: column;
        padding: 30px;
    }

    .feature-card:nth-child(9) .feature-icon-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .feature-card:nth-child(9) .feature-title {
        margin-bottom: 15px;
        text-align: center;
    }

    .feature-card:nth-child(9) .feature-description {
        text-align: center;
        font-size: 0.95rem;
    }

    .feature-card:nth-child(9) .feature-text-container {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(n) {
        grid-column: span 1;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card:nth-child(1) .feature-content {
        padding: 20px;
    }

    .feature-gif-background {
        height: 100px;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
}

/* 添加container样式 */
.container {
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Webflow设计模块样式 */
.webflow-design-section {
    background: linear-gradient(135deg, #0d1b48 0%, #0a123a 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.webflow-design-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.webflow-design-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.webflow-container {
    max-width: var(--content-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.webflow-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.webflow-left-content {
    flex: 1;
    max-width: 600px;
}

.webflow-right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webflow-logo-container {
    margin-bottom: 30px;
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.webflow-logo {
    width: 50px;
    height: 50px;
}

.webflow-heading {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.webflow-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    letter-spacing: 0.9px;
}

.webflow-highlight {
    font-weight: 700;
    color: #4f86ff;
}

.webflow-cta-button {
    display: inline-block;
    background-color: white;
    color: #0a123a;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.webflow-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.webflow-preview-image {
    position: relative;
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.webflow-preview-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    background-color: #0f1632;
}

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

.webflow-feature-item {
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.webflow-feature-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.webflow-feature-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.webflow-feature-item:nth-child(1) .webflow-feature-icon {
    color: #38bdf8;
}

.webflow-feature-item:nth-child(2) .webflow-feature-icon {
    color: #818cf8;
}

.webflow-feature-item:nth-child(3) .webflow-feature-icon {
    color: #fb7185;
}

.webflow-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.webflow-feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/* 响应式样式 */
@media (max-width: 1024px) {
    .webflow-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .webflow-left-content {
        max-width: 100%;
    }

    .webflow-logo-container {
        margin: 0 auto 30px;
    }

    .webflow-preview-image {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .webflow-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .webflow-design-section {
        padding: 80px 0;
    }

    .webflow-content-wrapper {
        margin-bottom: 60px;
    }

    .webflow-container {
        padding: 0 20px;
    }

    .webflow-heading {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }

    .webflow-description {
        font-size: 16px;
    }
}

/* 添加弧线脉动动画 */
@keyframes arcPulse {
    0% {
        opacity: 0.4;
        width: 18%;
    }

    50% {
        opacity: 0.7;
        width: 22%;
    }

    100% {
        opacity: 0.4;
        width: 18%;
    }
}

/* 删除之前的arc-line样式，添加canvas的样式 */
.node-connections-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* 确保canvas不会阻止点击事件 */
}

/* AI积分计算标准模块 - 优化版 */
.tokens-pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tokens-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(75, 137, 220, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.tokens-pricing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(155, 122, 213, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.tokens-pricing-container {
    max-width: var(--content-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tokens-pricing-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.tokens-pricing-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    -webkit-background-clip: text;
    letter-spacing: 1px;
}

.tokens-pricing-title2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    letter-spacing: 1px;
}

.tokens-pricing-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.tokens-pricing-subtitle a#tokens-calculator-link {
    color: #4B89DC;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(75, 137, 220, 0.08);
    transition: all 0.3s;
    display: inline-block;
    margin-top: 5px;
}

.tokens-pricing-subtitle a#tokens-calculator-link:hover {
    color: #3672C5;
    background-color: rgba(75, 137, 220, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(75, 137, 220, 0.15);
}

.tokens-pricing-table {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 235, 245, 0.8);
}

.tokens-pricing-table:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.tokens-filter-bar {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(230, 235, 245, 0.8);
    background-color: #f9fafb;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.tokens-filter-group {
    display: flex;
    align-items: center;
    margin-right: 24px;
}

.tokens-filter-label {
    font-size: 0.95rem;
    color: #555;
    margin-right: 10px;
    font-weight: 500;
}

.tokens-filter-select {
    background-color: #fff;
    border: 1px solid #e6ebf5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

.tokens-filter-select:hover {
    border-color: #c0d0e5;
}

.tokens-search-box {
    margin-left: auto;
    position: relative;
}

.tokens-search-input {
    background-color: #fff;
    border: 1px solid #e6ebf5;
    border-radius: 8px;
    padding: 10px 14px 10px 40px;
    font-size: 0.95rem;
    width: 240px;
    transition: all 0.3s;
}

.tokens-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 0.95rem;
}

.tokens-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.tokens-table th,
.tokens-table td {
    padding: 18px 24px;
    text-align: left;
}

.tokens-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
    border-bottom: 1px solid #e6ebf5;
}

.tokens-table td {
    font-size: 0.97rem;
    color: #333;
    border-bottom: 1px solid #f0f3f9;
}

.tokens-table tr:last-child td {
    border-bottom: none;
}

.tokens-table tr {
    transition: all 0.2s ease;
}

.tokens-table tr:hover td {
    background-color: #f5f9ff;
}

.tokens-model-name {
    display: flex;
    align-items: center;
}

.tokens-model-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    object-fit: contain;
}

.tokens-model-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    min-width: 90px;
}

.tokens-model-type.text {
    background-color: rgba(245, 124, 0, 0.1);
    color: #F57C00;
}

.tokens-model-type.embed {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976D2;
}

.tokens-model-type.rerank {
    background-color: rgba(211, 47, 47, 0.1);
    color: #D32F2F;
}

.tokens-model-type.img {
    background-color: rgba(56, 142, 60, 0.1);
    color: #388E3C;
}

.tokens-token-value {
    font-family: 'Roboto Mono', monospace;
    letter-spacing: -0.5px;
}

.tokens-input-token,
.tokens-output-token {
    display: block;
}

.tokens-token-label {
    display: inline-block;
    font-size: 0.8rem;
    color: #777;
    margin-right: 4px;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 2px 6px;
    border-radius: 4px;
}

/* 计算器模态框样式 */
.tokens-calculator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tokens-calculator-modal.show {
    opacity: 1;
    visibility: visible;
}

.tokens-calculator-content {
    background-color: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.tokens-calculator-modal.show .tokens-calculator-content {
    transform: scale(1);
}

.tokens-calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: #f9fafb;
    border-bottom: 1px solid #e6ebf5;
}

.tokens-calculator-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tokens-calculator-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.tokens-calculator-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

.tokens-calculator-body {
    padding: 24px;
}

.tokens-calculator-input-group,
.tokens-calculator-model-select {
    margin-bottom: 20px;
}

.tokens-calculator-input-group label,
.tokens-calculator-model-select label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #444;
    font-size: 1rem;
}

.tokens-calculator-input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e6ebf5;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.2s;
}


.tokens-calculator-model-select select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e6ebf5;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    transition: all 0.2s;
}


.tokens-calculator-result {
    background: linear-gradient(135deg, #f8faff, #f5f7ff);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 235, 245, 0.8);
}

.tokens-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    align-items: center;
}

.tokens-result-item:last-child {
    margin-bottom: 0;
}

.tokens-result-label {
    font-weight: 500;
    color: #444;
}

.tokens-result-value {
    font-weight: 600;
    color: #4B89DC;
    font-family: 'Roboto Mono', monospace;
    background-color: rgba(75, 137, 220, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    min-width: 80px;
    text-align: center;
}

.tokens-calculate-button {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4B89DC, #5BC0BE);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.tokens-calculate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(75, 137, 220, 0.25);
    background: linear-gradient(135deg, #3e74bb, #4ba5a3);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .tokens-filter-bar {
        flex-wrap: wrap;
        gap: 15px;
    }

    .tokens-search-box {
        margin-left: 0;
        width: 100%;
    }

    .tokens-search-input {
        width: 100%;
    }

    .tokens-search-input:focus {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tokens-pricing-section {
        padding: 70px 0;
    }

    .tokens-filter-bar {
        padding: 15px 20px;
    }

    .tokens-filter-group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .tokens-filter-label {
        width: 30%;
    }

    .tokens-filter-select {
        flex: 1;
    }

    .tokens-table th,
    .tokens-table td {
        padding: 15px;
    }

    .tokens-model-type {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .tokens-pricing-title {
        font-size: 2rem;
    }

    .tokens-pricing-subtitle {
        font-size: 0.95rem;
    }

    .tokens-table thead {
        display: none;
    }

    .tokens-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #e6ebf5;
        border-radius: 8px;
    }

    .tokens-table td {
        display: block;
        text-align: right;
        padding: 12px 15px;
        position: relative;
        border-bottom: 1px solid #f0f3f9;
    }

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

    .tokens-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 500;
        color: #555;
    }

    .tokens-model-name {
        justify-content: flex-end;
    }

    .tokens-model-icon {
        margin-right: 0;
        margin-left: 12px;
        order: 2;
    }

    .tokens-calculator-content {
        width: 95%;
    }
}

/* 套餐模块样式 */
.pricing-plans-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 85% 15%, rgba(75, 137, 220, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(155, 122, 213, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.pricing-container {
    max-width: var(--content-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    letter-spacing: 1px;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 40px;
}

.pricing-toggle-label {
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.pricing-toggle-label.active {
    color: #333;
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
    position: relative;
    top: -1px;
}

.pricing-toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    border-radius: 13px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: solid 1px #d9d9d9;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.pricing-toggle .yearly {
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    border: solid 0px #4A4A4A;
}

.pricing-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

}

.pricing-toggle-switch.yearly .pricing-toggle-slider {
    transform: translateX(24px);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.pricing-plan {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 235, 245, 0.8);
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(75, 137, 220, 0.2);
}

.pricing-plan-popular {
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white),
        linear-gradient(135deg, #4B89DC, #9B7AD5);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 10px 30px rgba(75, 137, 220, 0.15);
}

.pricing-plan-popular::before {
    content: '推荐';
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 1;
}

.pricing-plan-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(230, 235, 245, 0.8);
}

.pricing-plan-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-plan-title img {
    width: 24px;
    height: 24px;
}

.pricing-plan-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.pricing-plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.pricing-plan-currency {
    font-size: 1.2rem;
    margin-right: 5px;
    color: #555;
}

.pricing-plan-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: normal;
}

.pricing-save-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    text-decoration: none;
    position: relative;
    top: -1px;
}

.pricing-plan-period {
    font-size: 0.9rem;
    color: #888;
}

.pricing-plan-features {
    padding: 25px 30px;
    flex: 1;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #444;
}

.pricing-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(75, 137, 220, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 2px;
}

.pricing-feature-icon i {
    font-size: 0.65rem;
    color: #4B89DC;
}

.pricing-plan-footer {
    padding: 25px 30px;
    text-align: center;
    border-top: 1px solid rgba(230, 235, 245, 0.5);
}

.pricing-plan-button {
    display: inline-block;
    width: 100%;
    padding: 12px 15px;
    background: white;
    color: #4B89DC;
    border: 1px solid rgba(75, 137, 220, 0.5);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.pricing-plan-button:hover {
    background: rgba(75, 137, 220, 0.05);
    border-color: #4B89DC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 137, 220, 0.1);
}

.pricing-plan-popular .pricing-plan-button {
    background: linear-gradient(135deg, #4B89DC, #9B7AD5);
    color: white;
    border: none;
}

.pricing-plan-popular .pricing-plan-button:hover {
    background: linear-gradient(135deg, #3e74bb, #8862c7);
    box-shadow: 0 5px 15px rgba(75, 137, 220, 0.2);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 0.95rem;
}

.pricing-guarantee i {
    color: #4B89DC;
    margin-right: 5px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-plan-popular {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem;
    }

    .pricing-plan-header {
        padding: 20px 25px;
    }

    .pricing-plan-features,
    .pricing-plan-footer {
        padding: 20px 25px;
    }
}

@media (max-width: 576px) {
    .pricing-title {
        font-size: 1.8rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-toggle-label {
        font-size: 0.9rem;
    }

    .pricing-plan-title {
        font-size: 1.3rem;
    }
}

/* 从aikonw.css添加的integration-grid相关样式 */
.integration-grid {
    display: flex;
    justify-items: center;
    width: 100%;
    align-content: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* 过滤模块样式优化 */
.filter-module {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.filter-module:hover {
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.filter-options {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(145deg, #f9fafc 0%, #f5f7fa 100%);
    border-bottom: 1px solid rgba(234, 236, 240, 0.5);
}

.filter-selectors {
    display: flex;
    gap: 16px;
}

.filter-group {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0px 10px;
    border: 1px solid #dfe2ea;
    border-color: #e2e8f0;
    background: #f7f8fa;
    border-radius: 8px;
}

.filter-group i {
    position: absolute;
    left: 12px;
    color: #6b7280;
    font-size: 14px;
    z-index: 1;
}

.tech-select {
    height: 40px;
    min-width: 140px;
    padding: 0 16px 0 24px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.2s ease;
}

.architecture-container{
    max-width: var(--content-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 180px 0;
    text-align: center;
}
.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 14px;
}

.tech-search {
    height: 40px;
    width: 240px;
    padding: 0 16px 0 38px;
    border-radius: 8px;
    border: 1px solid #dfe2ea;
    background: #fff;
    color: #1f2937;
    font-size: 14px;
    transition: all 0.2s ease;
}



/* 表格样式优化 */
.model-list {
    max-height: 550px;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db #f3f4f6;
}

.model-list::-webkit-scrollbar {
    width: 6px;
}

.model-list::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.model-list::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 6px;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: #4a5568;
}

thead {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

th,
td {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: solid 1px #edf2f7;
}

th {
    font-weight: 600;
    color: #374151;
    background: #f9fafb;
    width: 17%;
}

.dabody1 {
    width: 500px;
}

.tdbody {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #111827;
}

.tdbody img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

tr:hover .tdbody img {
    transform: scale(1.1);
}

.tdico,
.tdyuyin,
.tdsuoyin,
.tdcpx {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
}

.tdico {
    color: #1d4ed8;
    background: #eff6ff;
}

.tdyuyin {
    color: #047857;
    background: #ecfdf5;
}

.tdsuoyin {
    color: #b45309;
    background: #fffbeb;
}

.tdcpx {
    color: #0369a1;
    background: #f0f9ff;
}

tr:hover {
    background-color: #f9fafb;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .filter-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .filter-selectors {
        width: 100%;
    }

    .search-box {
        width: 100%;
    }

    .tech-search {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .filter-selectors {
        flex-direction: column;
        gap: 8px;
    }

    .tech-select {
        width: 100%;
    }

    th,
    td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .tdbody img {
        width: 16px;
        height: 16px;
    }
}

/* 保留部分原有样式以兼容其他地方的用法 */
select {
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 12px;
    border: none;
    background-color: transparent;
}

.tiles {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #111824;
    display: flex;
    align-items: center;
}

.sousuo {
    float: right;
    padding: 5px;
    background: #f7f8fa;
    border: 1px solid #dfe2ea;
    border-radius: 4px;
    font-size: 12px;
}

.title-bt {
    display: flex;
    gap: 40px;
}

/* 过滤动画效果 */
@keyframes filterPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

.filter-animation {
    animation: filterPulse 0.5s ease;
}

/* 结果计数样式 */
.filter-result-count {
    position: absolute;
    right: 80px;
    bottom: -45px;
    background: #4B89DC;
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(75, 137, 220, 0.25);
    z-index: 2;
    transition: all 0.3s ease;
}

@keyframes countUpdate {
    0% {
        transform: translateY(5px);
        opacity: 0;
    }

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

.count-updated {
    animation: countUpdate 0.4s ease;
}

/* 表格标题栏 */
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: linear-gradient(145deg, #f0f3f9 0%, #e8edf7 100%);
    border-bottom: 1px solid rgba(234, 236, 240, 0.5);
}

.table-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #4a5568;
    letter-spacing: 0.02em;
}

.table-title i {
    color: #4B89DC;
    margin-right: 10px;
    font-size: 16px;
}

.table-actions {
    display: flex;
    gap: 12px;
}

.pricing-header-logo {
    margin-right: 20px;
}

.refresh-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #6b7280;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.refresh-btn:hover {
    background: #fff;
    color: #4B89DC;
    transform: rotate(15deg);
    box-shadow: 0 4px 10px rgba(75, 137, 220, 0.15);
}

.refresh-btn:active {
    transform: scale(0.92) rotate(30deg);
}
.feature-title a{
    color: transparent;
}
/* 搜索提示 */
.search-tooltip {
    position: absolute;
    top: -30px;
    right: 0;
    background: rgba(55, 65, 81, 0.9);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.search-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(55, 65, 81, 0.9);
}

.search-box:hover .search-tooltip {
    opacity: 1;
    visibility: visible;
    top: -10px;
}

/* 表头图标 */
th i {
    margin-right: 6px;
    color: #6b7280;
    font-size: 12px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .table-actions {
        align-self: flex-end;
    }

    .search-tooltip {
        display: none;
    }
}

/* 微动画效果 */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.refresh-btn i.fa-spin {
    animation: spin 1s linear infinite;
}

/* 表格行样式增强 */
tbody tr {
    transition: all 0.2s ease-out;
    background-color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

tbody tr:nth-child(even) {
    background-color: rgba(249, 250, 251, 0.6);
}

tbody tr:hover {
    background-color: rgba(243, 244, 246, 0.8);
}

/* 表格行选中效果 */


/* 滑块特效 */
.sliding-glow {
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 80%,
            transparent 100%);
    pointer-events: none;
    transition: none;
    animation: slideGlow 3s ease infinite;
}

@keyframes slideGlow {
    0% {
        left: -120%;
    }

    100% {
        left: 120%;
    }
}



/* 空状态样式优化 */
.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
    display: none;
    animation: fadeIn 0.5s ease;
}

.empty-state i {
    font-size: 36px;
    color: #d1d5db;
    margin-bottom: 16px;
    opacity: 0.8;
}

.empty-state-message {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.empty-state-hint {
    font-size: 14px;
    color: #9ca3af;
}

/* 添加响应式自适应样式 */
@media (max-width: 1200px) {
    .integration-grid {
        padding: 0 15px;
    }

    .model-list {
        max-height: 500px;
    }

    .dabody1 {
        width: 400px;
    }

    th {
        width: 15%;
    }

    .filter-result-count {
        right: 60px;
    }
}

@media (max-width: 992px) {
    .integration-grid {
        padding: 0 10px;
    }

    .filter-module {
        border-radius: 12px;
    }

    .filter-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }

    .filter-selectors {
        width: 100%;
        justify-content: space-between;
    }

    .search-box {
        width: 100%;
    }

    .tech-search {
        width: 100%;
    }

    .model-list {
        max-height: 450px;
    }

    .dabody1 {
        width: 300px;
    }

    th {
        width: auto;
        padding: 10px 15px;
    }

    td {
        padding: 12px 15px;
    }

    .filter-result-count {
        right: 20px;
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .integration-grid {
        padding: 0;
    }

    .filter-module {
        border-radius: 10px;
    }

    .filter-selectors {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .filter-group {
        width: 100%;
    }

    .tech-select {
        width: 100%;
    }

    .model-list {
        max-height: 400px;
    }

    table {
        font-size: 13px;
    }

    th,
    td {
        padding: 10px;
    }

    .dabody1 {
        width: 180px;
    }

    .tdbody img {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

    .tdico,
    .tdyuyin,
    .tdsuoyin,
    .tdcpx {
        padding: 4px 8px;
        font-size: 12px;
    }

    .filter-result-count {
        bottom: -35px;
        right: 15px;
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media (max-width: 576px) {
    .integration-grid {
        overflow-x: auto;
    }

    .filter-module {
        min-width: 540px;
    }

    .dabody1 {
        width: 160px;
    }

    th,
    td {
        white-space: nowrap;
        padding: 8px;
    }

    .tdico,
    .tdyuyin,
    .tdsuoyin,
    .tdcpx {
        padding: 3px 6px;
        font-size: 11px;
    }

    .empty-state {
        padding: 30px 15px;
    }

    .empty-state i {
        font-size: 28px;
    }

    .empty-state-message {
        font-size: 14px;
    }
}

.pricing-header.enhanced-header {
    position: relative;
    padding: 120px 0 0px 0;
    margin-bottom: 60px;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    background: none;
}

.pricing-header-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    z-index: 0;
    background: linear-gradient(120deg, #4B89DC 0%, #9B7AD5 100%);
    opacity: 0.16;
    pointer-events: none;
    border-radius: 0;
}

.pricing-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem;
    }

    .pricing-header-logo {
        width: 40px;
        height: 40px;
    }

    .pricing-header.enhanced-header {
        padding: 48px 0 24px 0;
    }

    .pricing-header-bg {
        height: 32vh;
    }
}

/* 合作伙伴模块样式 */
.partners-section {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafcff 0%, #f7f9ff 100%);
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(155, 122, 213, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 90% 90%, rgba(75, 137, 220, 0.08) 0%, transparent 25%);
    pointer-events: none;
    z-index: 0;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.partners-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.75;
    filter: grayscale(100%);
}

.partner-logo:hover {
    transform: translateY(-5px);
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {

    max-height: 30px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .partners-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

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

    .partners-subtitle {
        font-size: 1rem;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .partner-logo {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }

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

    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo {
        height: 60px;
    }

    .partner-logo img {
        max-height: 40px;
    }
}


.solution-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.solution-tab {
    background-color: #f5f8ff;
    color: #4172c3;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(65, 114, 195, 0.1);
    border: 1px solid rgba(65, 114, 195, 0.1);
}

.solution-tab.active,
.solution-tab:hover {
    background-color: #4172c3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(65, 114, 195, 0.2);
}

.function-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.function-category {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.function-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.category-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}



.function-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.function-item {
    background-color: #f5f8ff;
    color: #4172c3;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.function-item:hover {
    background-color: white;
    border-color: rgba(65, 114, 195, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(65, 114, 195, 0.15);
}

.core-features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin: 0;
}

.core-feature {
    background: linear-gradient(135deg, #6D5BBA, #8580E0);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(109, 91, 186, 0.2);
    position: relative;
    overflow: hidden;
}

.core-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.core-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(109, 91, 186, 0.3);
}

.core-feature:hover::after {
    transform: translateX(100%);
}

.model-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 0;
}

.model-category-wrapper {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.model-category-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.model-section-title {
    color: #333;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.model-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    border-radius: 2px;
}

.model-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.model-item {
    background-color: #f5f8ff;
    color: #495dc2;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.model-item:hover {
    background-color: white;
    border-color: rgba(73, 93, 194, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(73, 93, 194, 0.15);
}

@media (max-width: 992px) {
    .solution-tabs {
        gap: 10px;
    }

    .solution-tab {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .function-categories {
        grid-template-columns: 1fr;
    }

    .model-section {
        grid-template-columns: 1fr;
    }


    .architecture-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .solution-tabs {
        justify-content: center;
        gap: 8px;
    }

    .solution-tab {
        padding: 8px 14px;
        font-size: 0.9rem;
        flex: 0 1 calc(33.33% - 10px);
        text-align: center;
    }

    .function-item {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .core-feature {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .function-h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .solution-tab {
        padding: 6px 10px;
        font-size: 0.85rem;
        flex: 0 1 calc(50% - 8px);
    }

    .function-category {
        padding: 15px;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .function-grid {
        gap: 8px;
    }

    .function-item {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    

}


    
    .architecture-section-block::before {
        left: -10px;
        width: 2px;
    }

/* 修改架构模块整体背景为透明 */
.architecture-unified-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: transparent;
    border-radius: 12px;
}

/* 调整arch-category样式，添加背景颜色和阴影 */
.arch-category {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.arch-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* 美化arch-category-title */
.arch-category-title {
    font-size: 18px;
    font-weight: bold;
    color: #4B89DC;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.arch-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #4B89DC, #9b7ad5);
    border-radius: 3px;
}

/* 优化arch-item的交互体验 */
.arch-item {
    padding: 12px;
    background-color: #EEF3FC;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.arch-item:hover {
    background-color: #DCE6F9;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(75, 137, 220, 0.15);
    color: #4B89DC;
}

.arch-item:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(75, 137, 220, 0.1);
}

/* 美化arch-tech-items部分 */
.arch-tech-items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.arch-tech-item {
    padding: 14px 30px;
    background-color: #FFA500;
    color: white;
    border-radius: 14px;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.2);
    width: 19%;
}

.arch-tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(255, 165, 0, 0.3);
}

.arch-tech-item:active {
    transform: translateY(-2px);
}

/* 美化模型部分 */
.arch-models {
    display: flex;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.arch-model-group {
    flex: 1;
}

.arch-model-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.arch-model-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #FFA500, #FFD700);
    border-radius: 3px;
}

.arch-model-item {
    padding: 12px 24px;
    background-color: #FFF5E1;
    border-radius: 14px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(255, 165, 0, 0.1);
}

.arch-model-item:hover {
    background-color: #FFE8B3;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.2);
}

/* 优化标题部分 */
.arch-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: left;
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.arch-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: linear-gradient(to bottom, #4B89DC, #9b7ad5);
    border-radius: 3px;
}

/* 架构内容基础布局 */
.architecture-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.arch-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 业务场景标签样式 */
.solution-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.solution-tab {
    padding: 12px 24px;
    background-color: #4B89DC;
    color: white;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-tab.active {
    background-color: #4B89DC;
    box-shadow: 0 4px 10px rgba(75, 137, 220, 0.3);
}

.solution-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(75, 137, 220, 0.2);
}

/* 涟漪动画效果 */
.tab-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* 产品能力样式 */
.arch-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.arch-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.arch-model-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .arch-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .arch-categories {
        grid-template-columns: 1fr;
    }
    
    .arch-models {
        flex-direction: column;
    }
    
    .solution-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .arch-tech-item {
        padding: 10px 20px;
    }
    
    .arch-model-item {
        padding: 10px 20px;
    }
}

/* 节点连接线样式 */
.node-connection {
    position: absolute;
    height: 2px;
    background: white;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* 连接线动画 */
@keyframes connection-pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}
