/* 全局样式与变量定义 */

:root {
    --primary-color: #32228b;
    --primary-dark: #120064;
    --secondary-color: #4a3abf;
    --light-color: #f8f9fa;
    --gray-color: #666;
    --dark-gray: #333;
    --success-color: #32228b;
    --success-light: rgba(50, 34, 139, 0.1);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-color);
}

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

a:hover {
    color: var(--primary-dark);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: underline;
    padding: 0;
    background-color: transparent;
    font-weight: normal;
}

.btn-link:hover {
    color: var(--primary-dark);
}

.center-button {
    text-align: center;
    margin-top: 50px;
}


/* 导航栏样式 */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
    position: relative;
}

.main-nav ul li a {
    color: var(--dark-gray);
    padding: 5px 0;
    font-size: 1.1rem;
    position: relative;
    display: block;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a.active {
    color: var(--primary-color);
    font-weight: 500;
}


/* 下拉菜单样式 */

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}


/* 移动端菜单 */

.navbar {
    display: none;
    /* 桌面端导航默认隐藏，移动端不显示 */
}


/* 顶部固定导航（移动端） */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    /* 确保在内容上方 */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}


/* 菜单按钮样式 */

.menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    z-index: 1000;
}


/* 侧边栏导航 */

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    /* 默认隐藏在右侧 */
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1001;
    /* 高于遮罩层和导航栏 */
    padding-top: 70px;
    /* 预留顶部导航高度 */
}

.sidebar.active {
    right: 0;
    /* 显示侧边栏 */
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.nav-list {
    padding: 0 20px;
}

.nav-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.nav-list a {
    color: #333;
    font-size: 1rem;
    display: block;
    padding: 5px 0;
}

.nav-list a.active {
    color: #32228b;
    font-weight: bold;
}


/* 移动端子菜单样式 */

.nav-list .dropdown-menu {
    margin-left: 20px;
    margin-top: 10px;
    position: static;
    box-shadow: none;
    min-width: auto;
    padding: 0;
}


/* 遮罩层 */

.overlay {
    position: fixed;
    top: 0;
    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: 1000;
    /* 高于内容，低于侧边栏 */
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


/* 面包屑导航 */

.breadcrumb {
    padding: 20px 0;
    background-color: #f5f5f5;
    margin-top: 70px;
    /* 与固定导航栏隔开 */
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    color: var(--gray-color);
}

.breadcrumb-content a {
    color: var(--gray-color);
}

.breadcrumb-content a:hover {
    color: var(--primary-color);
}

.breadcrumb-content .divider {
    margin: 0 10px;
}

.breadcrumb-content .current {
    color: var(--primary-color);
}


/* 产品详情 */

.product-detail {
    padding: 80px 0;
}

.product-header {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background-color: var(--success-light);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.product-overview {
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.product-overview p {
    margin-bottom: 20px;
}

.products-image {
    margin: 40px 0;
    text-align: center;
}

.products-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}


/* 产品分类区域 - 响应式适配修改 */

.product-overview {
    padding: 40px 20px;
    /* 调整内边距，避免在小屏幕上拥挤 */
    margin: 0 auto 60px;
    /* 居中显示，底部留间距 */
    max-width: 1400px;
    /* 限制最大宽度，避免宽屏显示过宽 */
}


/* 产品分类网格基础样式 */

.products-grid {
    display: grid;
    gap: 25px;
    /* 基础间距 */
    padding: 0 10px;
    /* 左右留余白，避免贴边 */
}


/* 产品卡片样式优化 */

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    /* 确保内容垂直排列 */
    height: 100%;
    /* 卡片高度充满父容器，保持一致性 */
}

.product-card img {
    width: 100%;
    height: 200px;
    /* 基础图片高度 */
    object-fit: contain;
    /* 配电柜图片需完整显示，不裁剪 */
    background-color: #f9f9f9;
    /* 浅色背景衬托图片 */
    padding: 15px;
    /* 图片与边框留间距 */
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.03);
    /* 悬停时轻微放大图片，增强交互感 */
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    /* 内容区域自动填充剩余空间，确保卡片底部对齐 */
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    /* 标题下方加分割线，增强层次感 */
}

.card-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.7;
    /* 增加行高，提升长文本可读性 */
    flex-grow: 1;
    /* 让描述文本占满剩余空间，确保按钮（如有）在底部 */
}


/* 移动端（默认）：1列布局 */

.products-grid {
    grid-template-columns: 1fr;
}


/* 平板设备（768px - 1023px）：2列布局 */

@media (min-width: 768px) and (max-width: 1023px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        /* 增大间距 */
    }
    .product-card img {
        height: 180px;
        /* 平板端适当降低图片高度，适应屏幕比例 */
    }
    .card-content {
        padding: 18px;
    }
}


/* 桌面设备（1024px - 1399px）：2列布局（因配电柜描述较长，2列更易读） */

@media (min-width: 1024px) and (max-width: 1399px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    .product-card img {
        height: 220px;
        /* 桌面端提高图片高度，展示更多细节 */
    }
}


/* 大屏桌面（≥1400px）：4列布局（充分利用宽屏） */

@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    .product-card img {
        height: 190px;
        /* 4列布局时降低图片高度，避免卡片过高 */
    }
    .card-content h3 {
        font-size: 1.25rem;
        /* 略缩小标题，适配窄卡片 */
    }
}


/* 小屏移动端（<375px）：特殊优化 */

@media (max-width: 374px) {
    .product-card img {
        height: 160px;
        /* 极小屏幕进一步降低图片高度 */
        padding: 10px;
        /* 减少内边距，节省空间 */
    }
    .card-content {
        padding: 15px;
    }
    .card-content h3 {
        font-size: 1.1rem;
        /* 缩小标题字体 */
        margin-bottom: 10px;
    }
    .card-content p {
        font-size: 0.9rem;
        /* 缩小描述字体 */
    }
}


/* 网络机柜区域 - 响应式适配修改 */

section.products {
    padding: 60px 20px;
    /* 增加左右内边距，避免内容贴边 */
    max-width: 1600px;
    /* 限制最大宽度，避免宽屏显示过宽 */
    margin: 0 auto;
    /* 居中显示 */
}


/* 网络机柜网格基础样式 */

section.products .products-grid {
    display: grid;
    gap: 25px;
    /* 统一间距 */
    padding: 0 10px;
    /* 左右留余白 */
}


/* 网络机柜卡片样式优化 */

section.products .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* 确保卡片高度一致 */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    /* 增强悬停效果 */
}

section.products .product-card img {
    width: 100%;
    height: 220px;
    /* 增加图片高度，突出网络机柜细节 */
    object-fit: contain;
    /* 确保机柜图片完整显示，不裁剪 */
    background-color: #f5f5f5;
    /* 浅色背景衬托图片 */
    padding: 20px;
    /* 图片与边框留间距 */
    transition: transform 0.3s ease;
}

section.products .product-card:hover img {
    transform: scale(1.05);
    /* 悬停时轻微放大图片，增强交互感 */
}

section.products .card-content {
    padding: 20px;
    text-align: center;
    /* 标题居中，突出网络机柜类型 */
    background-color: white;
    flex-grow: 1;
    /* 填充剩余空间，确保卡片底部对齐 */
}

section.products .card-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    /* 标题下方加分割线 */
    margin-bottom: 0;
    /* 取消默认底边距 */
}


/* 移动端（默认）：1列布局 */

section.products .products-grid {
    grid-template-columns: 1fr;
}


/* 小屏平板（576px - 767px）：2列布局 */

@media (min-width: 576px) and (max-width: 767px) {
    section.products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    section.products .product-card img {
        height: 180px;
        /* 适当降低图片高度 */
        padding: 15px;
    }
}


/* 大屏平板（768px - 1023px）：2列布局（网络机柜数量少，2列更美观） */

@media (min-width: 768px) and (max-width: 1023px) {
    section.products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    section.products .product-card img {
        height: 200px;
    }
}


/* 桌面设备（1024px及以上）：3列布局（匹配网络机柜数量，充分利用空间） */

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


/* 超宽屏设备（1400px及以上）：增加间距，避免内容过宽 */

@media (min-width: 1400px) {
    section.products .products-grid {
        gap: 40px;
    }
    section.products .product-card img {
        height: 240px;
        /* 超宽屏增加图片高度，提升视觉比例 */
    }
}


/* 小屏移动端（<375px）：特殊优化 */

@media (max-width: 374px) {
    section.products .product-card img {
        height: 160px;
        /* 极小屏幕降低图片高度 */
        padding: 10px;
    }
    section.products .card-content {
        padding: 15px;
    }
    section.products .card-content h3 {
        font-size: 1.1rem;
        /* 缩小标题字体 */
    }
}


/* 页脚样式 - 全设备适配优化 */

.footer {
    background-color: #333;
    color: white;
    padding: clamp(50px, 10vw, 80px) 0 clamp(20px, 5vw, 30px);
    /* 上下内边距自适应 */
    margin-top: auto;
    /* 确保在内容不足时页脚能固定在底部 */
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 5vw, 30px);
    /* 左右内边距随屏幕宽度动态调整 */
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* 自动适配列数，最小列宽250px */
    gap: clamp(20px, 5vw, 40px);
    /* 间距自适应 */
    margin-bottom: clamp(30px, 8vw, 60px);
    /* 底部间距自适应 */
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 左对齐，保持视觉一致性 */
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
    filter: brightness(1.2);
    /* 略微提亮logo，在深色背景上更清晰 */
}

.footer-logo p {
    color: #ccc;
    font-size: clamp(0.9rem, 2vw, 1rem);
    /* 文字大小自适应 */
    line-height: 1.6;
    max-width: 300px;
    /* 限制最大宽度，避免在超宽屏幕上文字过散 */
}

.footer-links h3,
.footer-contact h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    /* 标题大小自适应 */
    margin-bottom: 18px;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #32228b;
    /* 用主色添加下划线，增强视觉层次 */
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
    /* 缩小间距，更紧凑 */
}

.footer-links ul li a {
    color: #ccc;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    display: inline-block;
    /* 确保hover效果只作用于文字区域 */
}

.footer-links ul li a:hover {
    color: #32228b;
    transform: translateX(3px);
    /* 轻微右移，增强交互感 */
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    /* 图标与文字顶部对齐 */
}

.footer-contact ul li i {
    margin-right: 10px;
    color: #32228b;
    font-size: 1.1rem;
    margin-top: 3px;
    /* 微调图标位置，与文字基线对齐 */
    flex-shrink: 0;
    /* 防止图标被压缩 */
}

.footer-contact ul li span {
    color: #ccc;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    flex-grow: 1;
    /* 文字区域自动填充剩余空间，避免换行时图标错位 */
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: clamp(20px, 5vw, 30px);
    display: flex;
    flex-direction: column;
    /* 默认垂直排列，适应小屏 */
    align-items: center;
    /* 居中对齐 */
    text-align: center;
    /* 文字居中 */
}

.footer-bottom p {
    color: #ccc;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin: 0;
}


/* 响应式设计 */

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    .navbar {
        padding: 15px 30px;
    }
    .navbar.scrolled {
        padding: 10px 30px;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-button {
        display: block;
    }
    .mobile-menu {
        display: block;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .advantages-grid,
    .products-grid,
    .cases-grid,
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .about {
        padding: 80px 0;
    }
    .about::after {
        display: none;
    }
    .about-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .about-image {
        position: static;
        transform: none;
        width: 100%;
    }
    .contact-content {
        flex-direction: column;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* 响应式调整：桌面端显示传统导航 */

@media (min-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }
    .header {
        display: none;
        /* 桌面端隐藏移动端导航 */
    }
    .sidebar,
    .overlay {
        display: none;
        /* 桌面端隐藏侧边栏和遮罩层 */
    }
    .main-nav .nav-links {
        display: flex;
        gap: 25px;
    }
    .main-nav a {
        color: #333;
        font-size: 1rem;
    }
    .main-nav a.active {
        color: #32228b;
        font-weight: bold;
    }
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        min-width: 200px;
        display: none;
    }
    .dropdown {
        position: relative;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .main {
        margin-top: 70px;
        /* 适配桌面端导航高度 */
    }
}


/* 全局图片基础样式 */

img {
    max-width: 100%;
    /* 确保所有图片不会超出容器宽度 */
    height: auto;
    /* 保持图片原始比例，避免变形 */
    display: block;
    /* 消除图片底部默认空白间隙 */
}


/* 产品头部图片适配 */

.product-image {
    width: 100%;
    /* 容器占满父元素宽度 */
    overflow: hidden;
    /* 隐藏超出容器的部分 */
    border-radius: 8px;
    /* 保持圆角效果 */
}

.product-image img {
    object-fit: cover;
    /* 图片填充容器，裁剪多余部分（保持核心内容可见） */
    transition: transform 0.3s ease;
    /* 添加缩放过渡效果 */
}


/* 系统架构图适配 */

.architecture-image {
    width: 100%;
    /* 容器占满父元素宽度 */
    margin: 30px auto;
    /* 上下留出间距，水平居中 */
    overflow: hidden;
    /* 防止图片溢出容器 */
    border-radius: 8px;
    /* 添加圆角，与整体风格统一 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* 轻微阴影，增强层次感 */
}

.architecture-image img {
    object-fit: contain;
    /* 系统架构图需完整显示，采用包含模式 */
    padding: 15px;
    /* 图片与容器间留出空白，避免紧贴边框 */
    background-color: #f9f9f9;
    /* 浅色背景，突出图片内容 */
}


/* 页脚Logo图片适配 */

.footer-logo img {
    max-height: 40px;
    /* 限制最大高度，避免在小屏幕上过大 */
    width: auto;
    /* 保持比例 */
    margin: 0 auto 20px;
    /* 水平居中，底部留出间距 */
}


/* 分设备响应式调整 */


/* 移动端（<768px） */

@media (max-width: 767px) {
    .product-header {
        flex-direction: column;
        /* 产品信息与图片垂直排列 */
    }
    .product-image {
        order: -1;
        /* 图片显示在标题上方，优先展示 */
        margin-bottom: 20px;
        /* 与标题保持间距 */
    }
    .product-image img {
        height: 200px;
        /* 固定移动端图片高度，避免过高 */
    }
    .architecture-image {
        padding: 10px;
        /* 减少内边距，节省空间 */
    }
    .architecture-image img {
        padding: 10px;
        /* 图片内边距同步减少 */
    }
}


/* 平板设备（768px-1023px） */

@media (min-width: 768px) and (max-width: 1023px) {
    .product-header {
        flex-direction: row;
        /* 水平排列 */
        align-items: center;
        /* 垂直居中对齐 */
    }
    .product-image {
        flex: 0 0 40%;
        /* 图片占40%宽度 */
        order: 1;
        /* 图片在右侧 */
    }
    .product-image img {
        height: 280px;
        /* 平板端图片高度适中 */
    }
    .architecture-image {
        max-width: 90%;
        /* 略小于容器宽度，避免边缘拥挤 */
    }
}


/* 桌面设备（≥1024px） */

@media (min-width: 1024px) {
    .product-image {
        flex: 0 0 45%;
        /* 图片占45%宽度 */
    }
    .product-image img {
        height: 320px;
        /* 桌面端图片高度更高，展示更多细节 */
    }
    /* 桌面端添加悬停效果，提升交互体验 */
    .product-image img:hover,
    .architecture-image img:hover {
        transform: scale(1.03);
        /* 轻微放大，便于查看细节 */
    }
    .architecture-image {
        max-width: 80%;
        /* 限制最大宽度，避免过宽导致内容稀疏 */
    }
}


/* 超大型设备（≥1440px） */

@media (min-width: 1440px) {
    .product-image img {
        height: 380px;
        /* 超宽屏幕下图片更高 */
    }
    .architecture-image {
        max-width: 70%;
        /* 进一步限制宽度，保持内容紧凑 */
    }
}