/* ========== 通用基础 ========== */
html { overflow-x: hidden; }
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #333;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

/* ========== 弹窗 ========== */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 500px;
    max-width: 90%;
    height: 450px;
    margin: auto;
}
.popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== Hero 区块 ========== */
.hero-bg {
    background-color: #17151B;
    height: 700px;
    color: #fff;
    position: relative;
}
#aurora-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
    justify-content: space-between;
}
.hero-left {
    flex: 1;
    max-width: 900px;
    padding-right: 50px;
    text-align: left;
}
.logo {
    width: 150px;
    margin-bottom: 60px;
    display: block;
}

.know-what {
    background: linear-gradient(90deg, #00E6A0, #9EB0FF);
    background-clip: text;           
    -webkit-background-clip: text;    
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 24px;
}

.main-title {
    background: linear-gradient(90deg, #684DEE, #9EB0FF, #00E6A0);
    background-clip: text;           
    -webkit-background-clip: text;    
    -webkit-text-fill-color: transparent;
    font-size: 48px;

}
.desc {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
}

/* ----- Hero 搜索 ----- */
.search-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}
.search-box-wrapper {
    position: relative;
    width: 560px;
    border-radius: 28px;
}
.search-box-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(90deg, #684DEE, #9EB0FF, #00E6A0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}
.search-input-new {
    width: 70%;
    height: 56px;
    background: transparent;
    border: none;
    border-radius: 28px;
    padding: 0 140px 0 24px;
    color: #fff;
    font-size: 16px;
    outline: none;
    position: relative;
    z-index: 2;
}
.search-input-new::placeholder { color: #aaa; }
.ai-mode-button {
    position: absolute;
    right: 6px;
    top: 6px;
    height: 44px;
    padding: 0 20px;
    background: linear-gradient(90deg, #E0E7FF, #D1FBEF);
    border: 1px solid #fff;
    border-radius: 22px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    transition: all 0.3s ease;
}
.ai-mode-button:hover {
    background: linear-gradient(90deg, #D1FBEF, #E0E7FF);
    border-color: #D1FBEF;
}
.ai-icon { display: inline-block; height: 24px; }

.free-trial-button-new {
    height: 56px;
    padding: 0 30px;
    background: #4216FB;
    color: #fff;
    border: none;
    border-radius: 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}
.free-trial-button-new:hover { background: #3A12F0; }

/* ----- Hero 合作伙伴 ----- */
.partners-section { margin-top: 20px; }
.trusted-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}
.partners-logos-new {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: visible;
}
.partners-logos-new img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
}

/* ----- Hero 右侧表单 ----- */
.hero-right {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}
.hero-right .form-container {
    width: 100%;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
}
.hero-right iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ========== Section 通用 ========== */
.section1,
.section2,
.section3,
.section4 {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 50px;
}
.section1-bg {
    width: 100%;
    background-color: #17151B;
    height: 950px;
}
.section1-bg-top {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #17151B;
    display: block;
}
.section1-bg-bottom {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: block;
}

.section4-bg {
    background-color: #17151B;
    height: 500px;
}
.section2,
.section3 { background-color: #fff; }
.section4 {
    background: transparent;
    position: relative;
    top: -200px;
}

/* ----- 标题/文字 ----- */
h2 { font-size: 40px; margin-bottom: 20px; }
p { font-size: 18px; margin-top: 0; }

.section1 h2 { margin-top: 50px !important; }
.section1 p { color: #fff; }

/* ----- 图片 ----- */
.section1-img,
.section-img { width: 902px; margin-top: 30px; }

/* ----- 按钮 ----- */
.cta-button {
    cursor: pointer;
    width: 216px;
    height: 64px;
    background: #4216FB;
    border-radius: 35px;
    border: none;
    color: #fff;
    margin-top: 20px;
    font-size: 18px;
}
.cta-button:hover { background-color: #6845FC !important; }

/* ========== 页脚 ========== */
.huise { background-color: #17151B; }
.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 900px;
    color: #585858;
    margin: 0 auto;
}
.foot p { font-size: 14px; }

/* ========== 工具类 ========== */
.jianbian {
    background: linear-gradient(to right, #684DEE, #00E6A0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.desc { max-width: 880px; }   /* 与 banner3 对齐用 */

/* ----- 优势部分 ----- */
.advantages-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;       
    align-items: center;
    margin-bottom: 40px;
}

.advantage-card {
    flex: 1; /* 确保每个卡片占据相等的空间 */
    margin-top: 30px;
    text-align: center; /* 文本居中 */
    border: 1px solid #00E6A0;
    border-radius: 10px;
    box-shadow: inset 0 20px 30px -15px #017451 , inset 20px 0 30px -15px #017451;
    height: 120px;
    padding: 10px;

}

.advantage-card img {
    width: 50px; /* 设置图标大小 */
    height: auto;
    margin-bottom: 10px; /* 图标和标题之间的间距 */
}

.advantage-card h3 {
    font-size: 18px; /* 标题字体大小 */
    color:#fff;
    
}

.advantage-card p {
    font-size: 14px; /* 描述字体大小 */
    color: #fff;
    margin: 5px 0 0; /* 描述和标题之间的间距 */
}

  /* 对比表 */
        .comparison-container {
            max-width: 1300px;
            margin: 80px auto;
            font-family: Arial, sans-serif;
            background-color: #17151B;
            color: #fff;
        }

        .container {
            background-color: #17151B;
            padding: 40px;
            text-align: center;
            height: 1050px;
        }

        .comparison-table {
            width: 100%;
            border-radius: 16px;
            overflow: visible;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 30px;
            background-color: rgba(23, 21, 27, 0.6);
            border-collapse: separate;
            border-spacing: 0;
        }

        .comparison-table th {
            padding: 24px 20px;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            border: none;
            border-bottom: 2px solid rgba(91, 218, 230, 0.3);
            letter-spacing: 0.5px;
            width: 250px;
            background-color: rgba(23, 21, 27, 0.9);
        }

        .comparison-table td {
            padding: 20px;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 16px;
            line-height: 1.6;
            width: 250px;
            transition: background-color 0.2s ease;
        }

        .comparison-table tbody tr:hover td {
            background-color: rgba(91, 218, 230, 0.05);
        }

        .comparison-table tbody tr:hover td.appgrowing {
            background: linear-gradient(135deg, rgba(91, 218, 230, 0.25) 0%, rgba(0, 230, 160, 0.2) 100%);
            box-shadow: 
                inset 20px 0 30px -15px rgba(91, 218, 230, 0.8),
                inset 0 20px 30px -15px rgba(91, 218, 230, 0.8);
        }

        .highlight-text {
            color: #5bdae6;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(91, 218, 230, 0.3);
        }

        .appgrowing {
            background: linear-gradient(135deg, rgba(91, 218, 230, 0.15) 0%, rgba(0, 230, 160, 0.12) 100%);
            border-left: 4px solid #5bdae6;
            border-right: 4px solid #5bdae6;
            font-weight: 500;
            position: relative;
            box-shadow: inset 20px 0 30px -15px rgba(91, 218, 230, 0.6);
        }

        /* AppGrowing表头特殊样式 */
        thead .appgrowing {
            border-top: 4px solid #5bdae6;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }

        /* AppGrowing最后一行特殊样式 */
        tbody tr:last-child .appgrowing {
            border-bottom: 4px solid #5bdae6;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }

        .appgrowing img {
            width: 150px;
            filter: drop-shadow(0 4px 12px rgba(91, 218, 230, 0.4));
        }

.disclaimer {
    font-size: 10px!important;
    color: #c0bdbd;
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}




/* 新增容器样式 */
.content-wrapper {
    max-width: 902px;
    margin: 0 auto;
    position: relative;
    top: -300px;
    
}
