/* ==========================================
   全局样式设置
   ========================================== */

/* 重置浏览器默认样式，让所有浏览器显示效果一致 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 设置网页的基本字体和颜色 */
body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; /* 防止横向滚动条出现 */
}

/* 容器：限制内容宽度，让内容居中显示 */
.container {
    max-width: 1600px; /* 最大宽度1200像素 */
    margin: 0 auto; /* 左右自动边距，实现居中 */
    padding: 0 20px; /* 左右各20像素内边距 */
}

/* 平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 清除列表默认样式 */
ul {
    list-style: none;
}

/* 清除链接默认样式 */
a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   顶部导航栏样式
   ========================================== */

.header {
    position: fixed; /* 固定在页面顶部 */
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* 半透明白色背景 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 底部阴影效果 */
    z-index: 1000; /* 确保导航栏在最上层 */
    transition: all 0.3s ease; /* 添加过渡动画效果 */
}

/* 当页面滚动时，导航栏变为完全不透明 */
.header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

/* 导航栏容器 */
.navbar {
    display: flex; /* 使用弹性布局 */
    justify-content: space-between; /* 两端对齐 */
    align-items: center; /* 垂直居中 */
    height: 80px; /* 导航栏高度 */
    /* padding: 0 40px; */
}

/* Logo样式 */
.logo {
    flex-shrink: 0; /* 防止Logo被压缩 */
}

.logo img {
    height: 50px; /* Logo高度 */
    width: auto; /* 宽度自动，保持比例 */
    transition: transform 0.3s ease; /* 添加变换动画 */
}

/* Logo鼠标悬停效果 */
.logo img:hover {
    transform: scale(1.05); /* 放大5% */
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    gap: 40px; /* 菜单项之间的间距 */
    align-items: center;
    flex: 1; /* 占据剩余空间 */
    justify-content: right; /* 菜单居中 */
    margin-left: 60px; /* Logo和菜单之间的间距 */
}

.nav-item {
    position: relative; /* 为下划线动画做准备 */
}

/* 导航链接样式 */
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 10px 5px;
    transition: color 0.3s ease;
    position: relative;
}

/* 导航链接下方的动画下划线 */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6B35; /* 橙色 */
    transition: width 0.3s ease;
}

/* 鼠标悬停时，显示下划线 */
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* 鼠标悬停时，文字变色 */
.nav-link:hover,
.nav-link.active {
    color: #FF6B35;
}

/* 导航栏右侧区域 */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 语言切换器 */
.language-switcher {
    display: flex;
    align-items: center;
}

/* 语言链接 */
.lang-link {
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.lang-link:hover {
    color: #FF6B35;
}

/* 移动端菜单按钮（默认隐藏，在手机屏幕上才显示） */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* ==========================================
   Banner视频区域样式
   ========================================== */

.banner {
    position: relative;
    width: 100%;
    height: 75vh; /* 占满整个屏幕高度 */
    overflow: hidden;
    margin-top: 80px; /* 为固定的导航栏留出空间 */
}

/* 视频背景容器 */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 视频标签样式 */
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%); /* 居中显示 */
    object-fit: cover; /* 覆盖整个容器 */
}

/* 视频上方的深色遮罩层，让文字更清晰 */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(44, 62, 80, 0.4)); /* 渐变遮罩 */
}

/* Banner内容容器 */
.banner-content {
    position: relative;
    z-index: 10; /* 确保文字在视频上方 */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 内容靠左 */
    color: #fff;
}

/* Banner内容内部容器 */
.banner-content .container {
    text-align: left; /* 文字左对齐 */
    max-width: none; /* 移除最大宽度限制 */
    margin: 0; /* 移除自动居中 */
    padding-left: 180px; /* 和Logo图标左对齐 */
    padding-right: 20px;
}

/* Banner主标题 */
.banner-title {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Banner副标题（英文） */
.banner-subtitle {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    animation: fadeInUp 1.2s ease;
    line-height: 1.4;
    max-width: 650px; /* 限制文字宽度，让文字自然换行 */
}



/* 向下滚动提示器 */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    animation: bounce 2s infinite; /* 上下弹跳动画 */
    z-index: 10;
}

/* 鼠标滚轮图标 */
.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

/* 滚轮 */
.wheel {
    width: 4px;
    height: 10px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}



/* ==========================================
   动画效果定义
   ========================================== */

/* 淡入向上动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 上下弹跳动画 */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* 滚轮滚动动画 */
@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 28px;
    }
}

/* ==========================================
   响应式设计（适配不同屏幕尺寸）
   ========================================== */

/* 平板电脑屏幕 (小于1024像素) */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .banner-title {
        font-size: 60px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
}

/* 手机屏幕 (小于768像素) */
@media (max-width: 768px) {
    /* 隐藏桌面版导航菜单 */
    .nav-menu {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    /* 显示移动端菜单按钮 */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Banner文字大小调整 */
    .banner-title {
        font-size: 40px;
        letter-spacing: 2px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    /* 产品网格调整为单列 */
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    /* 公司介绍区域调整为垂直布局 */
    .intro-wrapper {
        flex-direction: column;
    }
}

/* ==========================================
   Product System 产品系统区域样式
   ========================================== */

.product-system {
    padding: 80px 0;
    background-color: #fff;
}

/* 区域标题容器 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

/* 标题包装器（含装饰线） */
.section-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 标题上方的装饰线 */
.title-line {
    width: 340px;
    height: 3px;
    background-color: #333;
}

/* 区域标题 */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* 区域副标题 */
.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-top: 10px;
}

/* 产品网格容器 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 每行3个产品 */
    gap: 30px; /* 卡片之间的间距 */
}

/* 单个产品卡片 */
.product-card {
    display: block;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

/* a标签产品卡片去除默认样式 */
a.product-card:hover {
    text-decoration: none;
}

/* 产品卡片悬停效果 */
.product-card:hover {
    transform: translateY(-5px); /* 向上移动 */
}

/* 产品图片容器 */
.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片覆盖整个容器 */
    transition: transform 0.3s ease;
}

/* 图片悬停放大效果 */
.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* 产品信息区域 */
.product-info {
    padding: 20px;
}

/* 产品名称 */
.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

/* View More链接 */
.product-link {
    font-size: 13px;
    color: #333;
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    position: relative;
}

/* 用伪元素添加下划线，只在文字下方 */
.product-link::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 0;
    left: 0;
    width: calc(100% - 20px); /* 减去箭头的宽度 */
    height: 2px;
    background-color: #333;
    transition: background-color 0.3s ease;
}

.product-link:hover {
    color: #FF6B35;
}

/* 悬停时下划线也变色 */
.product-link:hover::before {
    background-color: #FF6B35;
}

.product-link span {
    transition: transform 0.3s ease;
}

/* 箭头悬停效果 */
.product-link:hover span {
    transform: translateX(5px);
}

/* ==========================================
   Company Introduction 公司介绍区域样式
   ========================================== */

.company-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* 介绍内容包装器 */
.intro-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* 左侧图片 */
.intro-image {
    flex: 0 0 45%; /* 占据45%宽度 */
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 右侧内容 */
.intro-content {
    flex: 1;
}

/* 公司名称标题 */
.intro-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

/* 公司介绍文字 */
.intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 30px 0;
    text-align: justify; /* 两端对齐 */
}

/* View More按钮 */
.btn-view-more {
    display: inline-block;
    background-color: #FF6B35;
    color: #fff;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* ==========================================
   Factory Display 工厂展示轮播区域样式
   ========================================== */

.factory-display {
    background-color: #1a1a1a; /* 深色背景 */
    padding: 80px 0 100px 0;
    position: relative;
    min-height: 900px; /* 固定最小高度900px */
}

/* 工厂展示标题 */
.factory-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 60px 0;
}

/* 轮播容器 */
.carousel-container {
    position: relative;
    width: 96%; /* 宽度96% */
    margin: 0 auto;
    padding: 0;
    height: 700px; /* 增加高度 */
}

/* 轮播项目列表容器 */
.carousel-slides {
    position: relative;
    overflow: hidden;
    height: 100%; /* 填满高度 */
}

/* 单个轮播项 */
.carousel-slide {
    display: none; /* 默认隐藏 */
    animation: fadeIn 0.5s ease;
    height: 100%; /* 填满高度 */
}

/* 激活的轮播项 */
.carousel-slide.active {
    display: block;
    height: 100%; /* 填满高度 */
}

/* 轮播内容 */
.carousel-content {
    display: flex;
    gap: 40px;
    align-items: stretch; /* 改为stretch让子元素填满高度 */
    height: 100%;
}

/* 左侧文字卡片 */
.factory-info-card {
    flex: 0 0 28%; /* 宽度为33%，约为三分之一 */
    background-color: #fff;
    padding: 40px 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 文字和指示器分开 */
    height: 100%; /* 填满高度 */
}

/* 卡片文字内容 */
.card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
     /* 文字居中 */
}

.factory-info-card p {
    font-size: 24px; /* 增加文字大小 */
    line-height: 1.5;
    color: #333;
    margin: 0 0 20px 0;
    width: 100%;
}

.factory-info-card p:last-child {
    margin-bottom: 0;
}

/* 右侧图片 */
.factory-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%; /* 填满高度 */
}

.factory-image img {
    width: 100%;
    height: 100%; /* 填满容器高度 */
    object-fit: cover; /* 图片覆盖整个容器 */
    display: block;
}

/* 轮播指示器容器 */
.carousel-indicators {
    display: flex;
    justify-content: center; /* 靠左对齐 */
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
}

/* 单个指示器（横条形） */
.indicator {
    width: 8px; /* 横条宽度 */
    height: 8px; /* 横条高度 */
    border-radius: 8px;
    background-color: #ddd; /* 改为浅灰色 */
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block; /* 确保显示 */
}

/* 激活的指示器 */
.indicator.active {
    background-color: #333; /* 激活时为深色 */
}

/* 指示器悬停效果 */
.indicator:hover {
    background-color: #999;
}

/* ==========================================
   Choose Us 选择我们区域样式
   ========================================== */

.choose-us {
    padding: 60px 0;
    background-color: #fff;
}

/* Choose us容器包装器 */
.choose-us .container {
    position: relative;
    height: 500px; /* 增加高度到500px */
    overflow: hidden;
    border-radius: 30px; /* 圆角 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景图片 */
.choose-us-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.choose-us-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 深色遮罩层 */
.choose-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
    border-radius: 30px; /* 圆角 */
}

/* 内容容器 */
.choose-us-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

/* Choose us标题 */
.choose-us-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* Choose us文字 */
.choose-us-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

/* Contact Us按钮 */
.btn-contact {
    display: inline-block;
    background-color: #FF6B35;
    color: #fff;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-contact:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* 淡入动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================
   Case Center 案例中心区域样式
   ========================================== */

.case-center {
    background-color: #1a1a1a; /* 深色背景 */
    padding: 80px 0;
}

/* 案例中心标题 */
.case-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 60px 0;
}

/* 案例容器 */
.case-container {
    width: 100%; /* 宽度100% */
    margin: 0;
    padding: 0;
    position: relative;
}

/* 案例网格（横向滚动） */
.case-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 40px;
    user-select: none;
}

/* 隐藏滚动条 */
.case-grid::-webkit-scrollbar {
    display: none; /* 完全隐藏滚动条 */
}

/* Firefox */
.case-grid {
    scrollbar-width: none; /* 隐藏Firefox滚动条 */
}

/* IE/Edge */
.case-grid {
    -ms-overflow-style: none; /* 隐藏IE/Edge滚动条 */
}

/* 单个案例卡片 */
.case-card {
    flex: 0 0 450px; /* 增加宽度到450px */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* 禁止案例图片拖拽 */
.case-card img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

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

/* 案例图片容器 */
.case-image {
    position: relative; /* 为overlay定位 */
    width: 100%;
    height: 350px; /* 增加高度到350px */
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

/* 案例遮罩层（标题区域） */
.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent); /* 渐变遮罩 */
}

/* 案例名称 */
.case-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* 文字阴影 */
}

/* ==========================================
   Our Partner 合作伙伴区域样式
   ========================================== */

.our-partner {
    padding: 80px 0;
    background-color: #fff;
}

/* 合作伙伴包装器 */
.partner-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* 左侧介绍 */
.partner-intro {
    flex: 0 0 35%;
}

/* 合作伙伴标题 */
.partner-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

/* 合作伙伴文字 */
.partner-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 30px 0;
}

/* 右侧Logo墙 */
.partner-logos {
    flex: 1;
}

/* Logo墙图片 */
.logo-wall {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   Contact Us 联系我们表单区域样式
   ========================================== */

.contact-form {
    background-color: #fff; /* 外层背景色改为白色 */
    padding: 60px 0; /* 上下内边距 */
}

.contact-content {
    /*max-width: 1200px; */
    /* 容器宽度设置为1200px */
    margin: 0 auto; /* 居中显示 */
    text-align: center; /* 标题居中 */
    background-color: #f5f5f5; /* 灰色背景只在容器内 */
    padding: 50px 80px; /* 容器内部上下左右内边距 */
    border-radius: 8px; /* 添加圆角效果 */
}

/* 表单标题 */
.contact-title {
    font-size: 32px; /* 增大标题字体 */
    font-weight: 700; /* 加粗 */
    color: #1a1a1a; /* 深黑色 */
    margin: 0 0 15px 0; /* 底部间距 */
}

/* 表单副标题 */
.contact-subtitle {
    font-size: 28px; /* 增大副标题字体 */
    color: #333;
    margin: 0 0 20px 0; /* 底部间距 */
    text-align: left; /* 副标题靠左对齐 */
}

/* 分隔线 */
.contact-divider {
    width: 100%; /* 分隔线100%宽度 */
    margin: 0 0 15px 0; /* 底部间距，去掉auto让它靠左 */
    border: none;
    border-top: 1px solid #d0d0d0; /* 分隔线颜色 */
}

/* 表单描述 */
.contact-desc {
    font-size: 14px; /* 增大描述文字 */
    color: #888; /* 灰色 */
    margin: 0 0 30px 0; /* 底部间距 */
    text-align: left; /* 描述靠左对齐 */
}

/* 表单样式 */
.contact-form-fields {
    text-align: left;
}

/* 表单行 */
.form-row {
    display: flex;
    gap: 25px; /* 增加输入框之间的间距，从20px到25px */
    margin-bottom: 25px; /* 调整底部间距 */
}

/* 表单组 */
.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 14px; /* 增大标签字体 */
    color: #333;
    margin-bottom: 8px; /* 标签和输入框之间的间距 */
    font-weight: 600; /* 加粗标签文字 */
}

.form-group input {
    width: 100%;
    padding: 10px 12px; /* 稍微减少内边距 */
    border: 1px solid #e0e0e0; /* 调整边框颜色为更浅的灰色 */
    border-radius: 3px; /* 减小圆角 */
    font-size: 13px; /* 稍微减小输入框字体 */
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6B35;
}

/* 提交按钮 */
.btn-submit {
    display: inline-block;
    background-color: #FF6B35;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* 联系表单区域 - 移动端响应式 */
@media (max-width: 768px) {
    .contact-form {
        padding: 40px 0;
    }
    
    .contact-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-subtitle {
        font-size: 20px;
    }
    
    .contact-desc {
        font-size: 13px;
    }
    
    /* 表单行改为垂直布局 */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px; /* 防止iOS缩放 */
    }
    
    .btn-submit {
        width: 100%;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
}

/* ==========================================
   News 新闻区域样式
   ========================================== */

.news-section {
    padding: 60px 0; /* 减少上下内边距 */
    background-color: #fff;
}

/* 新闻头部 */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px; /* 调整底部间距 */
}

/* 新闻标题 */
.news-title {
    font-size: 40px; /* 增大标题字体 */
    font-weight: 700;
    color: #1a1a1a; /* 使用更深的黑色 */
    margin: 0;
}

/* View More链接 */
.news-view-more {
    font-size: 14px; /* 调整字体大小 */
    color: #333; /* 调整颜色为深色 */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.news-view-more:hover {
    color: #FF6B35;
}

/* 新闻容器 */
.news-container {
    position: relative; /* 为按钮定位 */
    overflow: hidden;
    padding: 0 60px; /* 为左右按钮留出空间 */
}

/* 新闻网格 */
.news-grid {
    display: flex; /* 改为flex布局支持滚动 */
    gap: 25px; /* 卡片之间的间距 */
    overflow-x: auto; /* 横向滚动 */
    scroll-behavior: smooth; /* 平滑滚动 */
    scrollbar-width: none; /* 隐藏Firefox滚动条 */
    -ms-overflow-style: none; /* 隐藏IE/Edge滚动条 */
}

/* 隐藏Chrome/Safari滚动条 */
.news-grid::-webkit-scrollbar {
    display: none;
}

/* 新闻卡片 */
.news-card {
    background-color: #fff;
    /* border: 1px solid #e8e8e8; */
     /* 添加浅色边框 */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex: 0 0 calc(33.333% - 17px); /* 每个卡片固定宽度，不压缩 */
    min-width: 300px; /* 最小宽度 */
}

.news-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

/* 新闻图片 */
.news-image {
    display: block;
    width: 100%;
    height: 200px; /* 固定图片高度 */
    overflow: hidden;
    border-radius: 8px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

/* 新闻内容 */
.news-content {
    padding: 0px; /* 调整内边距 */
}

/* 新闻标签 */
.news-tag {
    display: inline-block;
    font-size: 14px; /* 调整标签字体 */
    color: #333; /* 调整颜色为深色 */
    margin-bottom: 8px; /* 调整间距 */
    font-weight: 600;
}

/* 新闻卡片标题 */
.news-card-title {
    font-size: 16px; /* 调整标题字体大小 */
    font-weight: 700; /* 加粗标题 */
    color: #1a1a1a; /* 使用更深的黑色 */
    margin: 0 0 12px 0; /* 调整底部间距 */
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 新闻摘要 */
.news-excerpt {
    font-size: 13px; /* 调整摘要字体 */
    color: #666;
    line-height: 1.6;
    margin: 0 0 12px 0; /* 调整底部间距 */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 改为限制2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 新闻日期 */
.news-date {
    font-size: 12px;
    color: #999;
}

/* 新闻切换按钮 */
.news-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-nav-btn:hover {
    background-color: #FF6B35;
    border-color: #FF6B35;
}

.news-nav-btn:hover span {
    color: #fff;
}

.news-nav-btn span {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    line-height: 1;
    transition: color 0.3s ease;
}

/* 左侧按钮 */
.news-nav-prev {
    left: 0;
}

/* 右侧按钮 */
.news-nav-next {
    right: 0;
}

/* ==========================================
   Footer Contact 底部联系方式区域样式
   ========================================== */

.footer-contact {
    background-color: #fff; /* 白色背景 */
    padding: 0;
}

/* Contact us标题（白色背景区域） */
.footer-contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a; /* 深黑色 */
    text-align: center;
    margin: 0;
    padding: 60px 0 30px 0; /* 上下内边距 */
}

/* 橙色背景区域 */
.contact-info-bg {
    background-color: #f15a24; /* 橙色背景 */
    padding: 60px 0;
}

/* 联系信息容器 */
.contact-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* 单个联系信息项 */
.contact-info-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

/* 中间两个项目添加分隔线 */
.contact-info-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* 联系图标 */
.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

/* 联系文字 */
.contact-text {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

/* ==========================================
   Footer 页脚区域样式
   ========================================== */

.footer {
    background-color: #f15a24; /* 橙色背景 */
    padding: 40px 0 30px 0;
    color: #fff;
}

/* 页脚内容 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 改为顶部对齐 */
    flex-wrap: wrap;
    gap: 30px;
}

/* 左侧区域（导航 + 版权） */
.footer-left {
    flex: 1;
}

/* 导航链接 */
.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px; /* 与版权信息的间距 */
}

.footer-link {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    opacity: 0.8;
}

/* 版权信息（在导航链接下方） */
.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    font-size: 11px; /* 稍微减小字体 */
    color: #fff;
    margin: 3px 0;
    line-height: 1.5;
}

/* 右侧二维码 */
.footer-qrcode {
    width: 100px; /* 增大二维码 */
    height: 100px;
}

.qrcode-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
    padding: 8px;
    border-radius: 4px;
}

/* ==========================================
   Page Header 页面头部样式
   ========================================== */

.page-header {
    background-color: #f5f5f5;
    padding: 80px 0 40px 0;
    margin-top: 80px; /* 为固定导航栏留出空间 */
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    text-align: center;
}

.page-breadcrumb {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0;
}

/* ==========================================
   Cases Page 案例页面样式
   ========================================== */

.case-center-page {
    padding: 60px 0;
    background-color: #fff;
}

.case-intro {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.case-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.case-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card-page {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.case-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.case-image-page {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.case-image-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card-page:hover .case-image-page img {
    transform: scale(1.1);
}

.case-overlay-page {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px 20px;
    color: #fff;
}

.case-name-page {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
}

.case-desc-page {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================
   Contact Page 联系页面样式
   ========================================== */

.contact-info-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.info-icon svg {
    width: 50px;
    height: 50px;
    color: #f15a24;
}

.info-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.info-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 5px 0;
}

/* ==========================================
   Map Section 地图区域样式
   ========================================== */

.map-section {
    padding: 60px 0;
    background-color: #fff;
}

.map-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
}

.map-container {
    width: 100%;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    border: 2px dashed #ccc;
    box-sizing: border-box;
}

.map-placeholder p {
    font-size: 18px;
    margin: 10px 0;
    padding: 0 20px;
    text-align: center;
}

.map-placeholder p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #f15a24;
}

/* ==========================================
   响应式设计调整
   ========================================== */

@media (max-width: 1024px) {
    /* 案例网格调整为3列 */
    .case-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* 新闻网格调整为2列 */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* 案例网格调整为2列 */
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 合作伙伴区域调整为垂直布局 */
    .partner-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .partner-intro {
        flex: 1;
        text-align: center;
    }
    
    /* 表单行调整为垂直布局 */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    /* 新闻网格调整为1列 */
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Page Hero 页面顶部Banner样式（统一风格）
   ========================================== */

.page-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.page-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 页面面包屑导航 */
.page-breadcrumb-nav {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.page-breadcrumb-nav .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.page-breadcrumb-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.page-breadcrumb-nav a:hover {
    color: #FF6B35;
}

.page-breadcrumb-nav span {
    color: #999;
}

/* 响应式 */
@media (max-width: 992px) {
    .page-hero {
        height: 350px;
    }
    
    .page-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 280px;
    }
    
    .page-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

/* ==========================================
   Case Center Page 案例中心页面样式
   ========================================== */

.case-center-page {
    padding: 80px 0;
    background-color: #fff;
}

.case-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.case-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* 案例网格（页面版） */
.case-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 案例卡片（页面版） */
.case-card-page {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image-page {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.case-image-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card-page:hover .case-image-page img {
    transform: scale(1.05);
}

.case-overlay-page {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.case-name-page {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.case-desc-page {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================
   Contact Info Section 联系信息区域样式
   ========================================== */

.contact-info-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff5f2;
    border-radius: 50%;
    color: #FF6B35;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.info-text {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

/* ==========================================
   Map Section 地图区域样式
   ========================================== */

.map-section {
    padding: 80px 0;
    background-color: #fff;
}

.map-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0 0 40px 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ==========================================
   Form 表单样式扩展
   ========================================== */

.form-group-full {
    flex: 1 1 100%;
}

.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

/* ==========================================
   响应式设计 - 子页面
   ========================================== */

@media (max-width: 1024px) {
    .case-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .case-grid-page {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-wrapper {
        flex-direction: column;
    }
    
    .intro-image {
        flex: 1;
    }
}

/* ==========================================
   成功提示框样式
   ========================================== */

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    color: white;
    transform: scale(0.8);
    animation: successPopIn 0.4s ease forwards;
}

.success-content h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    font-weight: 600;
    color: white;
}

.success-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0 25px;
    color: rgba(255, 255, 255, 0.9);
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.close-success-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@keyframes successPopIn {
    0% {
        transform: scale(0.5) translateY(-50px);
        opacity: 0;
    }
    70% {
        transform: scale(1.05) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ==========================================
   首页完整移动端响应式样式
   ========================================== */

@media (max-width: 768px) {
    /* 全局容器 */
    .container {
        padding: 0 15px;
    }
    
    /* 产品系统区域 */
    .product-system {
        padding: 50px 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .title-line {
        width: 100px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    /* 公司介绍区域 */
    .company-intro {
        padding: 50px 0;
    }
    
    .intro-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-image {
        flex: none;
        width: 100%;
    }
    
    .intro-title {
        font-size: 22px;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    /* 工厂展示区域 */
    .factory-display {
        padding: 50px 0;
        min-height: auto;
    }
    
    .factory-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .carousel-container {
        width: 100%;
        height: auto;
    }
    
    .carousel-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .factory-info-card {
        flex: none;
        width: 100%;
        padding: 20px;
    }
    
    .factory-info-card .card-text p {
        font-size: 14px;
    }
    
    .factory-image {
        flex: none;
        height: 250px;
    }
    
    /* Choose Us区域 */
    .choose-us {
        padding: 40px 0;
    }
    
    .choose-us .container {
        height: 350px;
        border-radius: 15px;
    }
    
    .choose-us-overlay {
        border-radius: 15px;
    }
    
    .choose-us-title {
        font-size: 28px;
    }
    
    .choose-us-text {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .btn-contact {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    /* 案例中心区域 */
    .case-center {
        padding: 50px 0;
    }
    
    .case-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .case-grid {
        padding: 10px 15px;
    }
    
    .case-card {
        flex: 0 0 280px;
    }
    
    .case-image {
        height: 220px;
    }
    
    .case-name {
        font-size: 15px;
    }
    
    /* 合作伙伴区域 */
    .our-partner {
        padding: 50px 0;
    }
    
    .partner-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .partner-intro {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .partner-title {
        font-size: 28px;
    }
    
    .partner-text {
        font-size: 14px;
    }
    
    .partner-logos {
        width: 100%;
    }
    
    /* 新闻区域 */
    .news-section {
        padding: 50px 0;
    }
    
    .news-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    
    .news-title {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .news-nav-btn {
        display: none;
    }
    
    .news-card {
        flex: none;
        width: 100%;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-card-title {
        font-size: 16px;
    }
    
    /* 底部联系方式区域 */
    .footer-contact-title {
        font-size: 28px;
        padding: 40px 0 20px 0;
    }
    
    .contact-info-bg {
        padding: 40px 0;
    }
    
    .contact-info-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info-item {
        width: 100%;
        padding: 15px 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .contact-info-item:last-child {
        border-bottom: none;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    /* Footer底部 */
    .footer {
        padding: 30px 0 20px 0;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-copyright p {
        font-size: 10px;
    }
    
    .footer-qrcode {
        width: 80px;
        height: 80px;
    }
}

/* 超小屏幕适配 (480px以下) */
@media (max-width: 480px) {
    /* Banner */
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 14px;
    }
    
    /* 产品区域 */
    .section-title {
        font-size: 24px;
    }
    
    .product-image {
        height: 180px;
    }
    
    /* 公司介绍 */
    .intro-title {
        font-size: 20px;
    }
    
    /* 工厂展示 */
    .factory-title {
        font-size: 24px;
    }
    
    .factory-image {
        height: 200px;
    }
    
    /* Choose Us */
    .choose-us .container {
        height: 300px;
    }
    
    .choose-us-title {
        font-size: 24px;
    }
    
    .choose-us-text {
        font-size: 13px;
    }
    
    /* 案例 */
    .case-title {
        font-size: 24px;
    }
    
    .case-card {
        flex: 0 0 260px;
    }
    
    .case-image {
        height: 200px;
    }
    
    /* 合作伙伴 */
    .partner-title {
        font-size: 24px;
    }
    
    /* 新闻 */
    .news-title {
        font-size: 24px;
    }
    
    .news-image {
        height: 160px;
    }
    
    /* 底部 */
    .footer-contact-title {
        font-size: 24px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-link {
        font-size: 11px;
    }
}
