/* body {
    background: rgb(255 247 242 / 55%);
} */
@media (max-width: 768px) {

body {
    background: rgb(255 247 242 / 55%);
}
    
}
/* 导航栏容器 */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

/* Logo样式 */
.mobile-logo {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
}

/* 汉堡按钮 */
.menu-btn {
    position: absolute;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1010;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* 汉堡按钮激活状态（变为X） */
.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 菜单容器 */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 1005;
    overflow-y: auto;
}

/* 菜单激活状态（滑入显示） */
.mobile-menu.active {
    transform: translateX(0);
}

/* 背景遮罩 */
.menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1004;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 菜单项样式 */
.menu-items {
    padding-top: 10px;
}

.menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    color: #333333;
    font-size: 16px;
    transition: background-color 0.2s;
}

.menu-link:hover {
    background-color: #f5f5f5;
}

/* 下拉箭头 */
.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.menu-item.has-children.active .arrow-icon {
    transform: rotate(180deg);
}

/* 子菜单样式 */
.submenu {
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.menu-item.has-children.active .submenu {
    max-height: 500px; /* 足够大的值以容纳所有子项 */
    overflow: scroll;
    
}

.submenu-item {
    border-bottom: 1px solid #eeeeee;
}

.submenu-link {
    display: block;
    padding: 14px 16px 14px 32px;
    color: #666666;
    font-size: 15px;
    transition: background-color 0.2s;
}

.submenu-link:hover {
    background-color: #f0f0f0;
}

/* 内容区域样式（仅用于演示） */
.content {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
/* 关键：底部固定footer样式 */
.mobile-footer { /* 重命名类名，避免与header混淆 */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px; /* 与body的padding-bottom、menu的bottom一致 */
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* 顶部阴影，区分内容区 */
    z-index: 1008; /* 高于菜单和遮罩，确保不被遮挡 */
    display: flex;
    justify-content: space-around; /* 子元素均匀分布 */
    align-items: center; /* 子元素垂直居中 */
    padding: 0 16px;
}

/* footer子元素样式优化 */
.mobile-footer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    font-size: 14px;
}

.mobile-footer i {
    margin-bottom: 4px; /* 图标与文字间距 */
    font-size: 18px;
}


/* 主容器 */
.mobile-container {
    padding: 20px;
    background:linear-gradient(172deg, #FF7A00 15.59%, #edaf73 36.34%, #5CD329 127.09%);
    background-size: cover;
    background-repeat: no-repeat;

}

/* 内容卡片 */
.content-card {
    padding: 30px 20px;
    max-height: 400px;
    height: 350px;
}

/* 标题样式 */
.main-title {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sub-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* 描述文本 */
.description {
    font-size: 16px;
    color: #222222;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}



.phone-input::placeholder {
    color: #999999;
}

/* 按钮样式 */
.consult-btn {
    width: 100%;
    height: 55px;
    border-radius: 5px;
    border: none;
    background-color: #000000;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.consult-btn:active {
    transform: scale(0.98);
}

/* 电话咨询 */
.phone-consult {
    margin-top: 25px;
    font-size: 14px;
    color: #333333;
    text-align: center;
}

.phone-number {
    color: #FF5722;
    font-weight: 600;
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 320px) {
    .main-title {
        font-size: 24px;
    }

    .sub-title {
        font-size: 18px;
    }

    .phone-input, .consult-btn {
        height: 50px;
    }
}


.header-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
    color: #1a1a1a;
    margin-top: 16px;
}
.header-title2{
    font-size: 18px;  font-weight: normal;color: #666666; text-align: center;
}

/* 导航栏样式 */
.nav-container {
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.nav-bar {
       display: flex;
    gap: 8px;
    white-space: nowrap;
    justify-content: space-evenly;
    margin-top: 30px;
    flex-wrap: wrap;
}

.nav-item {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    color: #666;
    width: 18%;
    text-align: center;
    border: 1px solid #D8D8D8;
}

.nav-item.active {
    background-color: #FD663A;
    color: white;
    box-shadow: 0px 0px 5px 0px rgba(253, 102, 58, 0.3);
    border: 0px;
    background: radial-gradient(223% 81% at 0% 46%, rgba(255, 124, 1, 0.78) 59%, rgba(253, 124, 1, 3) 90%);
}

.secondary-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding-left: 4px;
}

.secondary-nav-item {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    background-color: #f0f2f5;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-nav-item:hover {
    background-color: #e5e6eb;
}

.secondary-nav-item.aigc {
    position: relative;
}

.secondary-nav-item.aigc::after {
    content: "NEW";
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff4d4f;
    color: white;
    font-size: 10px;
    padding: 1px 3px;
    border-radius: 3px;
}

/* 内容区域样式 */
.content-container {
    background-color: white;
    margin: 12px;
    border-radius: 12px;
    padding: 20px 16px;
    min-height: 195px;
    box-shadow: 0px 0px 5px 0px rgba(253, 102, 58, 0.3);

}

.content-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.content-section.active {
    display: block;
}

.section-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FD663A;
    text-align: left;
}

.section-description {
    font-size: 14px;
    line-height: 2;
    color: #666;
    margin-bottom: 24px;
}

.section-item {
    margin-bottom: 24px;
}

.item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

/* 截图区域样式 */
.screenshot-container {
    margin-top: 24px;
    position: relative;
}

.screenshot {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body {
        /* 隐藏滚动条但保留滚动功能 */
        -ms-overflow-style: none;  /* IE和Edge */
        scrollbar-width: none;  /* Firefox */
    }

    /* Chrome, Safari 和 Opera */
    body::-webkit-scrollbar {
        display: none;
    }

    /* 如果需要完全禁止滚动，可以使用下面的样式 */

    body {
      overflow-x: hidden !important;
    }

}


/* 导航栏样式 */


.nav-tabs {
    display: flex;
    padding: 12px 0;
    min-width: max-content;
}

.nav-tab {
    padding: 0px 16px;
    margin: 0 8px;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-tab.active {
    border-bottom: 2px solid #1a73e8;
}

/* 内容区域样式 */
.content-container {
    padding: 16px;
}


.news-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* 新闻卡片样式 */
.news-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.news-card:hover {
    transform: translateY(-2px);
}

.news-content {
    display: flex;
    padding: 16px;
}

.news-text {
    flex: 1;
    padding-right: 16px;
}

.news-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.5;
}

.news-meta {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.news-source {
    display: flex;
    align-items: center;
}

.news-source::after {
    content: "•";
    margin: 0 6px;
}

.news-time {
    display: flex;
    align-items: center;
}

.news-image {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 图标样式 */
.icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    opacity: 0.7;
}



/* 容器样式，居中显示 */
.form-container {
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
/* 标题样式 */
.form-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
/* 表单组样式，包含标签和输入框 */
.form-group {
    margin-bottom: 15px;
}
/* 标签样式 */
.form-label {
    display: inline-block;
    width: 80px;
    margin-right: 10px;
    font-size: 14px;
}
/* 输入框样式 */
.form-input {
    width: calc(100% - 100px);
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
/* 按钮样式 */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #0070f3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}
.submit-btn:hover {
    background-color: #005ccc;
}












/* 导航标签样式 */
.tabs {
    display: flex;
    padding-top: 36px;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    scrollbar-width: none; /* 隐藏滚动条 */
}

.tabs::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

.tab {
    padding: 8px 16px;
    font-size: 15px;
    color: #666;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 8px;
    transition: all 0.3s ease;
}



/* 内容区域样式 */
.content-wrapper {
    display: flex;
    width: 400%; /* 四个内容区域的总宽度 */
    transition: transform 0.3s ease;
}

.mobile-content {
    width: 100%;
    padding: 16px; /* 减小移动端内边距 */
}

.content-title {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 12px;
    color: #666666;
    text-align: center;
    line-height: 1.5;
}

.content-desc {
    font-size: clamp(14px, 4vw, 15px); /* 响应式字体大小 */
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.content-image img {
    width: 80%;
    height: auto;
    display: block;
    object-fit: cover; /* 确保图片比例正确 */
    margin: auto;
}
.mobile-container {
    width: 100%;
    max-width: 100%; /* 修改为100%以适应全屏 */
    margin: 0; /* 移除自动外边距 */
    box-sizing: border-box; /* 确保内边距不增加总宽度 */
}



/* 标题样式 */
.section-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin: 30px 0 24px;
    color: #333;
}

/* 案例卡片容器 */
.cases-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none; /* 隐藏滚动条 */
}

.cases-container::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

/* 案例卡片样式 */
.case-card {
    flex: 0 0 350px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.case-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.case-content {
    padding: 16px;
}

.case-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 14px;
    color: #333;
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 9px;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #f1f1f1;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #ff4d4f;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #888;
}
.main-title {
    margin-bottom: var(--size_10);
    color: white;
    font-size: 18px;
}
.sub-title {
    color: white;
    font-size: 16px;
}
.slogan {
    position: absolute;
    left: 10%;
    top: 35%;
    width: 80%;
    text-align: center;
}




/* 选项卡样式 - 优化部分 */
.tabs-container {
    position: relative;
    margin: 24px 0;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* 开启移动端平滑滚动 */
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 0 8px 4px; /* 增加左右内边距，避免选项卡贴边 */
}

.tabs::-webkit-scrollbar {
    display: none; /* 隐藏Chrome等浏览器的滚动条 */
}

/* 添加滚动提示 */
.tabs-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: -1px;
    width: 30px;
    background: linear-gradient(to right, rgba(245, 247, 250, 0), rgba(245, 247, 250, 1));
    pointer-events: none;
    z-index: 10;
}

.tab {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s;
    flex-shrink: 0; /* 防止选项卡被压缩 */
}

.tab.active {
    color: #2d7ff9;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #2d7ff9;
    border-radius: 3px 3px 0 0;
}

/* 内容区域样式 */
.content {
    display: none;
}

.content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-box {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 24px;
}

.content-image {
    position: relative;
    background-color: #e8f3ff;
    padding: 24px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    margin-right: 16px;
    z-index: 2;
}


.phone-screen {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px;
    overflow: hidden;
}

.phone-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
}

.background-elements {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-color: rgba(45, 127, 249, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.content-text {
    padding: 24px;
}

.content-text h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.content-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.highlight-box {
    display: inline-flex;
    align-items: center;
    background-color: #e8f3ff;
    border-radius: 4px;
    padding: 4px 8px;
    margin-top: 8px;
    font-size: 14px;
    color: #2d7ff9;
}

.highlight-box svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

/* 按钮样式 */
.action-button {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #2d7ff9;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 24px;
}

.action-button:hover {
    background-color: #1a6ef9;
}

.action-button:active {
    transform: scale(0.98);
}

/* 响应式调整 */
@media (max-width: 480px) {
    
    

    .tab {
        padding: 12px 16px;
        font-size: 15px;
    }

    .content-image {
        flex-direction: column;
        padding: 16px;
    }

    .phone-mockup {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .background-elements {
        right: 0;
        width: 160px;
        height: 160px;
    }
}



/* 动态列表容器 */
/* 移动端分页容器样式 */
.news-list .listpage.page_comm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* 页码间距，避免拥挤 */
    margin: 20px 0;
    padding: 10px;
}
/* 页码和按钮基础样式 */
.news-list .listpage.page_comm a {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px; /* 移动端字体适配 */
}
/* 当前页高亮样式 */
.news-list .listpage.page_comm a.cur {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}
/* 禁用状态样式 */
.news-list .listpage.page_comm a.notcur {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: #eee;
    color: #999;
}
        .news-list {
            width: 100%;
            padding: 15px;
                margin-top: 35px;
        }
        .news-list h2 {
            text-align: center;
            font-size: 18px;
            margin-bottom: 20px;
            color: #333;
        }
        /* 单个动态项 */
        .news-item {
            align-items: flex-start;
            margin-bottom: 10px;
            border-bottom: 1px solid #eee;
            margin-top: 20px;
        }
        .news-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        /* 动态左侧内容（图标/图片） */
        .news-left {
            flex-shrink: 0;
            margin-right: 15px;
            width:44%;
            position: absolute;
        }
        .news-tag {
            width: 155px;
            height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;
            text-align: center;
            font-size: 14px;
        }
        .news-tag span {
            display: block;
        }
        .news-tag .year {
            font-size: 16px;
            font-weight: bold;
        }
        .news-tag .period {
            margin-top: 5px;
        }
        .news-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
        }
        /* 动态右侧内容 */
        .news-right {
            padding-right: 18px;
            width:50%;
            margin-left: 172px;
            height:95px;
        }
        .news-title {
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 8px;
            color: #333;
        }
        .news-title a {
            color: #333;
            text-decoration: none;
        }
        .news-title a:hover {
            color: #007AFF;
        }
        .news-date {
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
        }
        .news-label {
            display: inline-block;
            font-size: 12px;
            color: #007AFF;
            background-color: rgba(0, 122, 255, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        