/**
 * 文件名: styles.css
 * 描述: 深圳市界元星衢科技有限公司官网样式表
 * 作者: 开发团队
 * 创建日期: 2024
 * 最后修改: 2024
 * 
 * 样式架构:
 * 1. CSS变量定义 (根元素变量)
 * 2. 全局基础样式
 * 3. 布局组件样式
 * 4. 各区块专用样式
 * 5. 动画效果
 * 6. 响应式断点
 * 
 * 颜色方案:
 * - 主色调: 蓝色 (#0066FF)
 * - 文字颜色: 深灰/灰色/浅灰
 * - 背景: 白色/浅灰
 */

/* ==================== CSS变量定义 ==================== */
/* 使用CSS变量方便全局主题颜色和样式的统一管理 */
:root {
    /* 主题颜色 */
    --primary-color: #0066FF;    /* 主色调 - 蓝色 */
    --primary-hover: #0052CC;    /* 主色调悬停状态 */
    
    /* 文字颜色 */
    --text-dark: #1A1A1A;        /* 深色文字 - 标题 */
    --text-gray: #666666;        /* 灰色文字 - 正文 */
    --text-light: #999999;       /* 浅色文字 - 辅助信息 */
    
    /* 背景颜色 */
    --bg-white: #FFFFFF;         /* 白色背景 */
    --bg-gray: #F7F8FA;          /* 浅灰背景 */
    
    /* 边框和阴影 */
    --border-color: #E5E7EB;     /* 边框颜色 */
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);        /* 基础阴影 */
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12); /* 悬停阴影 */
}

/* ==================== 全局基础样式 ==================== */

/* 重置所有元素的默认外边距和内边距 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 使用边框盒模型 */
}

/* 页面主体样式 */
body {
    /* 系统字体栈，优先使用系统默认字体以获得最佳性能 */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

/* 容器样式 - 用于限制内容最大宽度并居中 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== 导航栏样式 ==================== */

/* 固定导航栏 */
.navbar {
    position: fixed;           /* 固定定位，始终显示在页面顶部 */
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;             /* 确保导航栏始终在其他元素之上 */
    transition: all 0.3s ease; /* 平滑过渡效果 */
}

/* 导航栏内部容器 */
.navbar .container {
    display: flex;             /* Flex布局 */
    align-items: center;       /* 垂直居中 */
    justify-content: space-between; /* 两端对齐 */
    height: 70px;              /* 导航栏高度 */
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    gap: 32px;                 /* 菜单项之间的间距 */
    align-items: center;
}

/* 导航链接 */
.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease; /* 颜色过渡动画 */
}

.nav-link:hover {
    color: var(--primary-color);
}

/* 移动端菜单按钮 - 默认隐藏，在小屏幕显示 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

/* 移动端菜单按钮的三个横线 */
.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ==================== 主视觉区 (Hero Section) ==================== */

/* 英雄区 - 页面顶部的首屏区域 */
.hero {
    padding-top: 70px;        /* 为导航栏留出空间 */
    min-height: 100vh;         /* 最小高度为视口高度 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 渐变背景: 从蓝紫色到紫色 */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* 英雄区内容 */
.hero-content {
    text-align: center;
    padding: 80px 20px;
    z-index: 1;
}

/* 主标题 */
.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease; /* 向上渐入动画 */
}

/* 副标题 */
.hero-subtitle {
    font-size: 24px;
    margin-bottom: 48px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s backwards; /* 延迟动画 */
}

/* 按钮组 */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* 通用按钮样式 */
.btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* 主要按钮 - 实心蓝色 */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px); /* 向上移动 */
    box-shadow: var(--shadow-hover);
}

/* 次要按钮 - 透明背景带白色边框 */
.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* 英雄区轮播容器 */
.hero-slider {
    position: relative;
    height: 300px;
    overflow: hidden; /* 隐藏超出部分 */
}

/* 轮播轨道 - 包含所有幻灯片 */
.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease; /* 平滑滑动效果 */
}

/* 单个幻灯片 */
.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* 幻灯片内容 */
.slide-content {
    text-align: center;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.slide-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* 轮播指示器容器 */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    display: flex;
    gap: 8px;
}

/* 单个指示器 */
.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 激活状态的指示器 */
.indicator.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--bg-white);
}

/* ==================== 区块通用样式 ==================== */

/* 通用区块 - 用于所有内容区块 */
.section {
    padding: 100px 0;
}

/* 浅灰色背景区块 */
.section-gray {
    background-color: var(--bg-gray);
}

/* 白色背景区块 */
.section-white {
    background-color: var(--bg-white);
}

/* 区块标题 */
.section-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

/* 区块副标题 */
.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
}

/* ==================== 公司介绍区 ==================== */

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    font-size: 18px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* ==================== 我们的产品区 ==================== */

/* 产品切换容器 */
.products-wrapper {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse;
}

/* 右侧产品图标导航 */
.products-nav {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

/* 单个产品图标导航项 */
.product-nav-item {
    width: 80px;
    height: 80px;
    padding: 16px;
    border-radius: 12px;
    background: var(--bg-gray);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-nav-item svg {
    width: 40px;
    height: 40px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.product-nav-item .product-nav-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

/* 激活状态的导航项 */
.product-nav-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.product-nav-item.active svg {
    color: var(--bg-white);
}

.product-nav-item.active .product-nav-label {
    color: var(--bg-white);
}

/* 悬停效果 */
.product-nav-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.product-nav-item:hover svg,
.product-nav-item:hover .product-nav-label {
    color: var(--bg-white);
}

/* 左侧产品内容区域 */
.products-content {
    flex: 1;
    min-height: 400px;
}

/* 单个产品内容 */
.product-content {
    display: none;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 48px;
    border: 1px solid var(--border-color);
    animation: fadeIn 0.4s ease;
}

/* 激活状态的产品内容 */
.product-content.active {
    display: block;
}

/* 大图标容器 */
.product-icon-large {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-large svg {
    width: 100%;
    height: 100%;
}

/* 产品标题 */
.product-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

/* 产品口号 */
.product-tagline {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 24px;
}

/* 产品描述 */
.product-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* 产品价值点列表 */
.product-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 单个价值点 */
.product-value-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

/* 价值点标签 */
.value-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* 价值点文字 */
.value-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ==================== 使命宣言区 ==================== */

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 60px;
}

.mission-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
}

.mission-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.8;
}

/* ==================== 企业文化价值观区 ==================== */

/* 价值观卡片容器 - 四列网格布局 */
.values-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4列等宽 */
    gap: 32px;
    margin-bottom: 60px;
}

/* 单个价值观卡片 */
.value-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer; /* 鼠标悬停显示手型 */
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

/* 悬停效果 */
.value-item:hover {
    transform: translateY(-4px); /* 向上浮动 */
    box-shadow: var(--shadow-hover);
}

/* 激活状态的价值观卡片 */
.value-item.active {
    border: 2px solid var(--primary-color);
}

/* 价值观图标 */
.value-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

/* 价值观标题 */
.value-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

/* 价值观描述 */
.value-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* 价值观详情容器 */
.values-detail {
    max-width: 900px;
    margin: 0 auto;
}

/* 价值观详情卡片 */
.value-detail {
    display: none; /* 默认隐藏 */
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    animation: fadeIn 0.3s ease; /* 渐入动画 */
}

/* 激活状态的详情卡片 */
.value-detail.active {
    display: block;
}

.value-detail h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-detail p {
    font-size: 18px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.value-detail h4 {
    font-size: 20px;
    margin: 24px 0 16px 0;
    color: var(--text-dark);
}

.value-detail ul {
    list-style: none;
    padding-left: 0;
}

.value-detail li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    padding-left: 24px;
    position: relative;
}

/* 列表项前面的圆点 */
.value-detail li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

/* ==================== 行为准则区（企业文化内） ==================== */

/* 行为准则区块 */
.conduct-section {
    margin-top: 80px;
    text-align: center;
}

.conduct-section-title {
    font-size: 32px;
    margin-bottom: 48px;
    color: var(--text-dark);
    font-weight: 600;
}

/* 行为准则网格 - 两列布局 */
.conduct-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

/* 单个行为准则卡片 */
.conduct-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.conduct-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.conduct-title {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conduct-list {
    list-style: none;
}

.conduct-list li {
    font-size: 16px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

/* 列表项前面的对勾 */
.conduct-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== 发展历程区 ==================== */

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

/* 时间轴单项 */
.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* 时间轴连接线 */
.timeline-item::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: -48px;
    width: 2px;
    background-color: var(--border-color);
}

/* 最后一项不显示连接线 */
.timeline-item:last-child::before {
    display: none;
}

/* 年份圆圈 */
.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%; /* 圆形 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    z-index: 1; /* 确保在连接线之上 */
}

.timeline-content {
    padding-top: 16px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ==================== 新闻动态区 ==================== */

/* 新闻容器外层包装 */
.news-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 48px;
    border: 1px solid var(--border-color);
}

/* 新闻列表容器 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 单个新闻项 */
.news-item {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: var(--bg-white);
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
}

/* 去掉最后一项的边框 */
.news-item:last-child {
    border-bottom: none;
}

/* 新闻项悬停效果 */
.news-item:hover {
    background-color: #f8fbff;
}

/* 新闻日期 */
.news-date {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052CC 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.news-item:hover .news-date {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* 日期数字 */
.news-day {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1;
}

/* 日期月份 */
.news-month {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* 新闻内容区 */
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 16px;
}

/* 新闻标题 */
.news-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: var(--primary-color);
}

/* 新闻摘要 */
.news-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 阅读更多链接 */
.news-read-more {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-read-more::after {
    content: "→";
    transition: transform 0.3s ease;
}

.news-item:hover .news-read-more {
    gap: 8px;
}

.news-item:hover .news-read-more::after {
    transform: translateX(4px);
}

/* 查看更多按钮容器 */
.news-more {
    text-align: center;
    margin-top: 48px;
}

/* ==================== 联系我们区 ==================== */

.contact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* 单个联系信息卡片 */
.contact-info {
    text-align: center;
    padding: 40px;
    background: var(--bg-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-gray);
}

/* ==================== 页脚 ==================== */

.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 24px 0;
}

/* 页脚内容区 - 三列布局 */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

/* 页脚链接组标题 */
.footer-links h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 24px;
}

/* 页脚链接 */
.footer-links a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* 页脚底部 */
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* ==================== 动画效果 ==================== */

/* 向上渐入动画 - 用于主视觉区元素 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 渐入动画 - 用于详情卡片 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== 响应式设计 ==================== */

/* 平板设备断点 (最大宽度1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px; /* 缩小主标题 */
    }

    /* 价值观卡片改为两列 */
    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 行为准则改为单列 */
    .conduct-grid {
        grid-template-columns: 1fr;
    }

    .conduct-section {
        margin-top: 60px;
    }
    
    /* 联系我们改为单列 */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    /* 产品卡片改为单列 */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* 产品切换布局调整 */
    .products-wrapper {
        flex-direction: column;
    }
    
    .products-nav {
        flex-direction: row;
        position: static;
        width: 100%;
        justify-content: center;
    }
    
    .product-nav-item {
        width: 100px;
        height: 100px;
    }
}

/* 手机设备断点 (最大宽度768px) */
@media (max-width: 768px) {
    /* 导航菜单在移动端变为下拉菜单 */
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    /* 激活状态显示菜单 */
    .nav-menu.active {
        display: flex;
    }

    /* 显示移动端菜单按钮 */
    .mobile-menu-btn {
        display: flex;
    }

    /* 激活状态的汉堡菜单动画 - 变为X */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* 价值观卡片改为单列 */
    .values-container {
        grid-template-columns: 1fr;
    }

    /* 缩小字体尺寸 */
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    /* 按钮改为垂直排列 */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* 按钮全宽 */
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
    }

    .mission-box {
        padding: 40px 20px;
    }

    .mission-text {
        font-size: 20px;
    }
    
    /* 产品卡片调整间距 */
    .product-card {
        padding: 32px 24px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-tagline {
        font-size: 16px;
    }
    
    /* 产品内容调整 */
    .product-content {
        padding: 32px 24px;
    }
    
    .product-icon-large {
        width: 72px;
        height: 72px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-tagline {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 16px;
    }
    
    /* 页脚改为单列 */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* 小屏手机断点 (最大宽度480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* 减少卡片内边距以适应小屏幕 */
    .value-item,
    .conduct-card,
    .product-card,
    .product-content {
        padding: 24px;
    }
    
    /* 产品导航调整 */
    .products-nav {
        gap: 16px;
    }
    
    .product-nav-item {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .product-nav-item svg {
        width: 32px;
        height: 32px;
    }
}
