
        .value-icon img {
        height: 100px;
        width: 100px;
        }
          .user-actions {
            display: flex;
            align-items: center;
            gap: 24px;

        }
        .user-actions a {
            color: #525252;
            text-decoration: none;
            font-size: 14px;
        }
        .user-actions .register-btn {
            background: linear-gradient(90deg, #00D499 0%, #00B88A 100%);
            padding: 2px 16px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.3s;
            color: #fff;
        }
        .user-actions .register-btn:hover {
            opacity: 0.9;
        }

    /* 移动端导航隐藏PC端样式 - 最高优先级 */
    @media (max-width: 768px) {
        .main-nav,
        .user-actions {
            display: none !important;
        }
    }
    /* 基础变量定义 */
    :root {
      --primary: #0066FF;
      --dark: #1D2129;
      --light: #F5F7FA;
      --neutral: #666666;
      --white: #FFFFFF;
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
    }

    /* 全局重置与基础样式 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Microsoft Yahei", sans-serif;
      color: #333333;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    a:hover {
      color: var(--primary);
    }
	
	
	 .title[data-v-1c9e1c26] {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 720px;
    word-break: break-word;
}
.banner-info .title[data-v-647329bc] {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 720px;
}

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 60px 0;
    }

    .section-title {
      font-size: 28px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 40px;
    }

    .text-center {
      text-align: center;
    }

    .text-gradient {
      background: linear-gradient(90deg, var(--primary), #00B4FF);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .card {
      background: var(--light);
      border-radius: 8px;
      padding: 24px;
      box-shadow: var(--shadow);
      text-align: center;
      transition: var(--transition);
    }

    .card:hover {
      transform: translateY(-5px);
    }



    .btn-primary {
      background: var(--primary);
      color: var(--white);
    }

    .btn-primary:hover {
      background: rgba(0, 102, 255, 0.9);
    }

    .btn-outline {
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
    }

    .btn-outline:hover {
      border-color: var(--primary);
    }


    /* 问题痛点区 */
    .problems {
      background: var(--white);
    }

    .problems-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .problem-card img {
      width: 80px;
      height: 80px;
      margin: 0 auto 16px;
    }

    .problem-card h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .problem-card p {
      font-size: 14px;
      color: var(--neutral);
    }

    /* 核心价值区 */
    .core-value {
      background: var(--light);
    }

    .core-value-desc {
      text-align: center;
      color: var(--neutral);
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .value-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 40px;
    }

    .value-item {
      text-align: center;
      padding: 16px;
    }

    .value-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px;
    }

    .value-icon.user {
      background: #E6F7FF;
      color: #52C41A;
    }

    .value-icon.time {
      background: #E6F4FF;
      color: var(--primary);
    }

    .value-icon.content {
      background: #E6F4FF;
      color: var(--primary);
    }

    .value-icon.channel {
      background: #E6F4FF;
      color: var(--primary);
    }

    .value-icon.target {
      background: #F9F0FF;
      color: #722ED1;
    }

    .value-item h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .value-item p {
      font-size: 12px;
      color: var(--neutral);
    }

    .value-cycle {
      text-align: center;
      margin-bottom: 40px;
    }

    .value-cycle img {
      width: 150px;
      height: 150px;
    }

    .value-steps {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }

    .step-item {
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .step-item.find {
      background: #E6F7FF;
      color: #52C41A;
    }

    .step-item.send {
      background: #E6F4FF;
      color: var(--primary);
    }

    .step-item.analyze {
      background: #F9F0FF;
      color: #722ED1;
    }

    .value-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      font-size: 12px;
      color: var(--neutral);
    }

    /* 功能介绍区 */
    .features {
      background: var(--primary);
      color: var(--white);
    }

    .features-content {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-item i {
      color: #95DE64;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border-radius: 8px;
      padding: 24px;
      width: 100%;
      max-width: 400px;
    }

    .feature-card p {
      margin-bottom: 16px;
    }

    .feature-card img {
      width: 70px;
      border-radius: 4px;
    }

    /* 选择理由区 */
    .reasons {
      background: var(--white);
    }

    .reasons-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .reason-card img {
      width: 80px;
      height: 80px;
      margin: 0 auto 16px;
    }

    .reason-card h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .reason-card p {
      font-size: 14px;
      color: var(--neutral);
    }

    /* 版本对比区 */
    .pricing {
      background: var(--light);
    }

    .pricing-table {
      width: 100%;
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border-collapse: collapse;
    }

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

    .pricing-table th {
      font-weight: 600;
    }

    .pricing-table th:nth-child(3) {
      background: #F0F5FF;
    }

    .pricing-table th:nth-child(4) {
      background: #FFFBE6;
    }

    .pricing-table th:nth-child(5) {
      background: var(--primary);
      color: var(--white);
    }

    .pricing-table td:nth-child(1) {
      color: var(--neutral);
    }

    .pricing-actions {
      text-align: center;
      margin-top: 24px;
    }

    .pricing-actions a {
      color: var(--primary);
    }
    
    .ms-btn-default {
    border: 1px solid #e5e5e5;
    color: #666;
    background-color: transparent;
}
.ms-btn {
    display: inline-block;
    padding: 9px 12px;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background: none;
    border: 1px solid transparent;
    border: 1px solid #e5e5e5;
    color: #666;
    background-color: transparent;
}

    /* 客户案例区 */
    .clients {
      background: var(--white);
    }

    .clients-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
    }

    .clients-grid img {
      height: 32px;
      filter: grayscale(100%);
      transition: var(--transition);
    }

    .clients-grid img:hover {
      filter: grayscale(0);
    }

    /* 资源下载区 */
    .resources {
      background: var(--dark);
      color: var(--white);
    }

    .resources-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .resource-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 24px;
    }

    .resource-card h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .resource-card h3 i {
      color: var(--primary);
    }

    .resource-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .resource-card ul li a {
      color: var(--neutral);
      font-size: 14px;
    }


 .banner-info .subTitle[data-v-1c9e1c26] {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 32px;
    max-width: 720px;
    opacity: .72;
}

    /* 联系表单区 */
    .contact {
      background: var(--dark);
      color: var(--white);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-desc {
      text-align: center;
      color: var(--neutral);
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .form-control {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      padding: 12px 16px;
      color: var(--white);
      font-size: 14px;
    }

    .form-control::placeholder {
      color: var(--neutral);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
    }

    .contact-form textarea {
      min-height: 100px;
      resize: vertical;
    }

 .layout-global-main {
    margin-top: 105px;
}

/* 导航高亮样式 */
.nav-1.active .title-txt {
    color: #0066FF;
    font-weight: 600;
}

.nav-1 {
    transition: color 0.3s;
}

.nav-1:hover .title-txt {
    color: #0066FF;
}
    /* 响应式适配 */
    @media (min-width: 768px) {
      .nav {
        display: flex;
      }

      .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
      }

      .hero-image {
        margin-top: 0;
      }

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

      .value-grid {
        grid-template-columns: repeat(5, 1fr);
      }

      .value-steps {
        flex-direction: row;
        justify-content: space-between;
      }

      .features-content {
        flex-direction: row;
        align-items: flex-start;
      }

      .features-list {
        flex: 1;
      }

      .feature-card {
        flex: 1;
      }

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

      .resources-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

    @media (min-width: 1024px) {
      .problems-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .reasons-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

/* ===== 手机端侧边导航样式（参考11.html） ===== */
@media (max-width: 768px) {
    /* 隐藏 PC 端导航和用户操作 */
    .main-nav,
    .user-actions {
        display: none !important;
    }
    
    .logo-icon[data-v-c496b69a] {
        padding-left: 16px;
        margin-left: -170px;
        /* margin-right: 100px; */
    }

    /* 头部基础样式 */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background: #fff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid #E5E6EB;
    }

    .header-box {
        padding: 0 16px;
        height: 50px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo适配 */
    .nav-box {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
    }

    .logo-icon {
        max-width: 90px;
        height: auto !important;
        width: auto !important;
    }

    /* 汉堡菜单按钮 */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        cursor: pointer;
        border: none;
        background: none;
        color: #000000;
        transition: all 0.3s ease;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-btn:hover {
        color: #165DFF;
    }

    .mobile-menu-btn i {
        font-size: 32px;
    }

    /* 移动端侧边导航 */
    .side-nav {
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        width: 70%;
        max-width: 280px;
        background-color: #fff;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 40;
        transition: left 0.3s ease;
        padding-top: 50px;
        overflow-y: auto;
    }

    .side-nav.show {
        left: 0;
    }

    .side-nav__menu {
        padding: 16px 24px;
    }

    .side-nav__menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #E5E6EB;
        transition: all 0.3s ease;
        font-size: 16px;
        color: #1D2129;
        text-decoration: none;
    }

    .side-nav__menu a:hover {
        color: #165DFF;
    }

    .side-nav__menu a.active {
        color: #165DFF;
        border-bottom: 2px solid #165DFF;
    }

    /* 移动端按钮样式 */
    .side-nav__auth .btn-primary {
        background-color: #165DFF;
        color: #fff;
        padding: 10px 24px;
        border-radius: 2px;
        text-align: center;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
    }

    .side-nav__auth .btn-primary:hover {
        background-color: rgba(22, 93, 255, 0.9);
    }

    .side-nav__auth .btn-outline {
        border: 1px solid #165DFF;
        color: #165DFF;
        padding: 10px 24px;
        border-radius: 2px;
        text-align: center;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        background: none;
    }

    .side-nav__auth .btn-outline:hover {
        background-color: rgba(22, 93, 255, 0.05);
    }

    .side-nav__auth {
        padding: 16px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* 遮罩层 */
    .nav-mask {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 30;
        display: none;
        transition: opacity 0.3s ease;
    }

    .nav-mask.show {
        display: block;
    }

    /* 页面内容下移 */
    .layout-global-main {
        margin-top: 50px;
    }
}

/* PC端样式保护 */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .side-nav {
        display: none !important;
    }

    .nav-mask {
        display: none !important;
    }

    .main-nav {
        display: block !important;
    }

    .user-actions {
        display: flex !important;
    }

    .header {
        position: relative;
    }

    .layout-global-main {
        margin-top: 105px;
    }
}