
/*大标题*/
#home {
/*    height: auto !important;*/
    /*            min-height: 550px !important;*/
    height: 550px;
    width: 100%;
}

/* 移动端微调顶部边距，避免文字溢出（不改变样式） */
@media (max-width: 768px) {
    #home .space-y-8 {
        margin-top: clamp(-80px, -10vw, -150px) !important;
        width: 100% !important;
    }
}

@media (max-width: 580px) {
    #home .absolute.h-\[600px\] {
        /*                min-height: 450px !important;*/
    }

        #home .absolute.h-\[600px\] img {
            min-height: unset !important;
        }

    #home .space-y-8 ul {
        display: none;
    }

    #home .space-y-8 h1 {
        position: absolute;
        top: 25px;
        /* color: #fff; */
        font-size: 20px !important;
    }
    /* 保留你原有hover效果，不新增任何样式 */
    #home a:hover {
        background: #0077ffcc !important;
    }

    /* 去除移动端点击高亮，不影响样式 */
    #home a {
        -webkit-tap-highlight-color: transparent;
        text-decoration: none;
        display: none
    }

    #home {
        height: 133px !important
    }

    .text-centers h2 {
        margin-top: 20px !important
    }
}


/*痛点*/
.highlight-term {
    color: #007bff; /* 蓝色 */
    font-size: 1.2em; /* 字号放大，相对于父元素的1.25倍 */
    font-weight: bold; /* 加粗，可选 */
}

.section-container {
    max-width: 1300px;
    margin: 0px auto;
    height: auto;
    padding: 20px;
    padding-bottom: 100px
}

.text-centers {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 10px;
}

    .text-centers h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 400;
        color: #333;
        margin-top: 50px;
        margin-bottom: 15px;
    }

    .text-centers p {
        font-size: 1.2rem;
        color: #666;
    }


.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 关键：固定为3列 */
    gap: 36px; /* 卡片之间的间距 */
}

.card {
    background-color: #fff;
    border: 1px solid #dadde6;
    padding: 30px 48px; /* 上下内边距调整得更舒适一些 */
    height: 160px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        border-color: #c9d1d9;
    }

/*
         * 核心修改点：标题样式
         * color: #007bff; 确保蓝色
         * font-weight: bold; 确保加粗
         */
.card-title {
    color: #363f4e; /* 标题蓝色 */
    font-weight: bold !important; /* 标题加粗 */
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

.card-description {
    color: #666;
    font-size: 15px;
    line-height: 22px;
}

/* 响应式调整：在小屏幕上自动换行 */
@media (max-width: 1080px) {
    .cards-wrapper {
        /* 在屏幕变窄时，自动调整为1列 */
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card {
        height: auto;
        padding: 30px;
    }
}


/*核心优势*/

/* ========== 你原有样式（完全保留，一行未改） ========== */
/* --- 主容器：控制整体宽度、居中和内部间距 --- */
.main-wrapper {
    width: 1300px;
    margin: 0 auto; /* 水平居中 */
    padding-top: 20px; /* 顶部内边距，与页面顶部拉开距离 */
}

/* --- Tab 栏样式：平均分配宽度 --- */
.tab-container {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab {
    flex: 1; /* 关键：让每个 Tab 平均分配宽度 */
    text-align: center; /* 文字居中 */
    padding: 18px 0; /* 上下内边距 */
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

    .tab:hover {
        color: #007bff;
    }

    .tab.active {
        color: #007bff;
        border-bottom-color: #007bff;
        font-weight: 500;
    }

/* --- 内容区域样式 --- */
/* 关键修复：给内容区的父容器添加内边距来创建间距 */
.content-wrapper {
    padding-top: 20px; /* 使用 padding 代替 margin 来确保间距稳定 */
}

.content-area {
    /*            background: unset !important;*/
    /*            padding: 50px;*/
    background: #f0f4fd /* 请确保图片路径正确 */
}

/* 每个 Tab 对应的内容面板（默认隐藏） */
.content-panel-youshi {
    display: none;
    background: unset !important;
    box-shadow: unset !important;
    padding:30px 15px
}

    /* 激活的内容面板显示 */
    .content-panel-youshi.active {
        display: flex;
        align-items: center;
        gap: 50px;
        padding: 30px 15px
    }

.text-content {
    margin-top: 10px;
    flex: 1;
    color: #333;
}

    .text-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #222;
    }

    .text-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: #666;
    }

.buttons button {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-consult {
    background-color: #007bff;
    color: #fff;
    margin-right: 15px;
}

    .btn-consult:hover {
        background-color: #0056b3;
    }

.btn-trial {
    background-color: #fff;
    color: #007bff;
    border: 1px solid #007bff;
}

    .btn-trial:hover {
        background-color: #f0f7ff;
    }

.image-content {
    flex: 1;
    text-align: right;
}

    .image-content img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

/* ========== 新增移动端适配样式（仅768px以下生效） ========== */
@media (max-width: 568px) {
    #m-navigation {
    position:unset;
    }
    /* 主容器适配 */
    .main-wrapper {
        width: 100% !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }

    /* Tab导航容器（新增箭头） */
    .tab-nav-container {
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        width: 100% !important;
    }

    /* 移动端Tab容器 */
    .tab-container {
        flex: 1 !important;
        overflow: hidden !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }

    .tabs {
        display: flex !important;
        width: max-content !important;
        transition: transform 0.3s ease !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .tab {
        flex: none !important;
        width: auto !important;
        padding: 12px 18px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    /* 移动端Tab切换箭头 */
    .tab-arrow {
        display: block !important;
        width: 36px !important;
        height: 36px !important;
        border: none !important;
        background: #fff !important;
        color: #007bff !important;
        font-size: 18px !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
        cursor: pointer !important;
        z-index: 10 !important;
        margin: 0 5px !important;
        flex-shrink: 0 !important;
    }

        .tab-arrow:disabled {
            opacity: 0.3 !important;
            cursor: not-allowed !important;
        }

    /* 内容面板适配：移动端改为上下布局 */
    .content-panel-youshi.active {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    .text-content {
        flex: none !important;
        width: 100% !important;
        margin-top: 0 !important;
        margin: 0px 10px 0 20px !important;
    }

        .text-content h2 {
            font-size: 22px !important;
            margin-bottom: 15px !important;
        }

        .text-content p {
            font-size: 14px !important;
            margin-bottom: 20px !important;
            line-height: 1.5 !important;
        }

    .buttons button {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }

    .image-content {
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
    }

        .image-content img {
            max-width: 100% !important;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        }

    /* 顶部标题适配 */
    .text-centers {
        width: 100% !important;
        padding: 0 15px !important;
        margin-bottom: 10px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
}

/* 小屏手机适配（480px以下） */
@media (max-width: 580px) {
    #m-navigation {
        position: unset !important;
    }
    .tab {
        padding: 10px 15px !important;
        font-size: 13px !important;
    }

    .tab-arrow {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }

    .buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .btn-consult {
        margin-right: 0 !important;
        flex: 1 !important;
        min-width: 120px !important;
    }

    .btn-trial {
        flex: 1 !important;
        min-width: 120px !important;
    }
}

/*行业场景*/
/* 主容器 - 背景图区域 */
.industry-hero {
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
}

/* 主标题 */
.industry-main-title {
    width: 1300px;
    margin: 0 auto 40px auto;
    color: #fff;
    font-size: 36px;
    line-height: 50px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* Tab 栏容器 */
.industry-tab-wrapper {
    width: 1300px;
    background-color: transparent; /* 移除背景色 */
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.industry-tab-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid grey; /* 统一灰色底边框 */
}

.industry-tab-item {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    color: #fff; /* 固定白色字体 */
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent; /* 默认透明边框 */
    background-color: transparent; /* 移除item背景色 */
}

    .industry-tab-item:hover {
        background-color: rgba(255, 255, 255, 0.1); /* hover淡色背景（可选，不影响核心需求） */
    }

    .industry-tab-item.active {
        border-bottom: 1px solid #fff; /* 激活态白色下边框 */
        color: #fff; /* 保持白色字体 */
        font-weight: 500;
        background-color: transparent; /* 确保激活态无背景 */
    }

/* 内容区域 */
.industry-content-wrapper {
    width: 1300px;
    /*            background-color: #fff;*/
    padding: 30px;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
}

.industry-content-panel {
    display: none;
    color: #333;
    width: 550px;
    color: #fff
}

    .industry-content-panel.active {
        display: block;
    }

    .industry-content-panel h3 {
        font-size: 24px;
        margin-top: 0;
        color: #fff;
        font-weight: 600;
        line-height: 60px;
    }

    .industry-content-panel li {
        font-size: 14px !important;
        line-height: 1.6;
        color: #fff !important
    }

/* 按钮容器 */
.industry-btn-group {
    margin-top: 70px;
}

.industry-btn {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    border: 2px solid #007bff;
}

.industry-btn-consult {
    background-color: transparent;
    margin-right: 15px;
    color: #fff !important;
    background: hsla(0, 0%, 100%, .12);
    border: 1px solid #fff;
    border-radius: 2px;
    font-size: 13px
}


.industry-btn-trial {
    background-color: transparent;
    color: #fff !important;
    background: hsla(0, 0%, 100%, .12);
    border: 1px solid #fff;
    border-radius: 2px;
    font-size: 13px
}

/* 移动端适配样式 */
@media (max-width: 768px) {

    /* 主容器调整 */
    .industry-hero {
        padding: 20px 15px;
        /*                min-height: auto;*/
        /*                justify-content: flex-start;*/
    }

    /* 主标题适配 */
    .industry-main-title {
        width: 100%;
        font-size: 24px;
        line-height: 36px;
        margin: 0 auto 25px auto;
        text-align: center;
    }

    /* Tab栏适配 */
    .industry-tab-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .industry-tab-list {
        width: max-content;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }

    .industry-tab-item {
        padding: 12px 20px;
        font-size: 15px;
        white-space: nowrap;
        flex: none;
    }

    /* 内容区域适配 */
    .industry-content-wrapper {
        width: 100%;
        padding: 20px 15px;
    }

    .industry-content-panel {
        width: 100%;
    }

        .industry-content-panel h3 {
            font-size: 20px;
            line-height: 40px;
            text-align: center;
        }

        .industry-content-panel ul {
            padding-left: 20px;
            margin: 0;
        }

        .industry-content-panel li {
            font-size: 13px !important;
            line-height: 1.5 !important;
            padding: 8px 0 !important;
        }

            /* 数据高亮文字适配 */
            .industry-content-panel li span {
                font-size: 20px !important;
                margin: 0 2px !important;
            }

    /* 按钮组适配 */
    .industry-btn-group {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .industry-btn {
        width: 100%;
        padding: 11px 0;
        font-size: 14px !important;
        margin-right: 0 !important;
    }

    /* 移除横向滚动条样式（优化体验） */
    .industry-tab-wrapper::-webkit-scrollbar {
        display: none;
    }
}

/* 平板适配（769px-1200px） */
@media (min-width: 769px) and (max-width: 1200px) {
    .industry-main-title,
    .industry-tab-wrapper,
    .industry-content-wrapper {
        width: 100%;
    }

    .industry-main-title {
        font-size: 30px;
        line-height: 42px;
    }

    .industry-content-panel {
        width: 100%;
    }

    .industry-btn-group {
        display: flex;
        justify-content: center;
    }
}


/*立即解锁*/

/* 移动端适配样式 */
@media (max-width: 768px) {
    section [style*="background-color: #005EE3"]

{
    padding: 30px 20px !important; /* 移除左侧330px内边距，改为左右20px */
    margin-bottom: 0 !important; /* 取消负边距，避免布局错乱 */
}

section[style*="background-color: #005EE3"] > div {
    width: 100% !important; /* 宽度100%适配屏幕 */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* 内容居中 */
    text-align: center !important;
}

section[style*="background-color: #005EE3"] p {
    font-size: 20px !important; /* 缩小字体 */
    margin: 0 0 15px 0 !important; /* 调整margin */
}

section[style*="background-color: #005EE3"] button {
    padding: 8px 30px !important; /* 增大点击区域 */
    font-size: 16px !important;
    width: 100% !important;
    max-width: 250px !important; /* 限制最大宽度 */
}

}

/* 平板适配（769px-1200px） */
@media (min-width: 430px) and (max-width: 1200px) {
    section[style*="background-color: #005EE3"] {
        padding: 20px 20px 40px 20px !important; /* 移除左侧330px内边距 */
    }

        section[style*="background-color: #005EE3"] > div {
            width: 100% !important;
        }
}

