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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    zoom: calc(100vw / 1440);
}

@media (min-width: 2400px) {
    body {
        zoom: calc(2400px / 1440);
    }
}

/* 自定义滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #70C030;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5BA028;
}

::-webkit-scrollbar-button {
    display: none;
}

.container {
    width: 85vw;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0;
}

/* 不可点击链接的光标样式 */
a[href="javascript:void(0)"],
a[href="#"] {
    cursor: default !important;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 85vw;
    max-width: 1800px;
    margin: 0 auto;
    min-height: 60px;
    overflow: visible;
}

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

.nav-logo img {
    height: 45px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #70C030;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    height: 60px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 0.9rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    transition: all 0.3s ease;
    padding: 1.5rem 2rem;
    border-radius: 0;
    position: relative;
    margin: -1rem 0;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.nav-link:hover {
    color: #70C030;
    background: transparent;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #70C030;
    border-radius: 0;
    animation: underlineAppear 0.3s ease;
    z-index: 1;
}

@keyframes underlineAppear {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.dropdown {
    position: relative;
}


.dropdown-menu {
    position: fixed;
    top: 60px; /* 导航栏高度 - 原来的垂直位置 */
    left: -9999px; /* 初始位置在屏幕外，避免闪烁 */
    transform: translateX(-50%) scaleY(0); /* 水平居中 + 垂直缩放 */
    transform-origin: top center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    z-index: 1002;
}


.dropdown-menu ul {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scaleY(1); /* 保持水平居中 + 显示 */
    transform-origin: top center;
}

/* 二级导航栏悬停时保持显示 - 由JavaScript控制 */

/* 三级导航栏悬停时保持显示 */
/* 这些规则由JavaScript控制，不需要CSS规则 */


.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 0;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
    margin: 0;
    white-space: nowrap;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(-15px);
    animation: slideInFromTop 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 为每个链接添加延迟动画 */
.dropdown-menu a:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu a:nth-child(2) { animation-delay: 0.15s; }
.dropdown-menu a:nth-child(3) { animation-delay: 0.2s; }
.dropdown-menu a:nth-child(4) { animation-delay: 0.25s; }
.dropdown-menu a:nth-child(5) { animation-delay: 0.3s; }
.dropdown-menu a:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInFromTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a:hover {
    background: rgba(112, 192, 48, 0.2);
    color: #70C030;
    transform: none;
    box-shadow: none;
    border-left: 3px solid #70C030;
}

/* 二级下拉菜单样式 */
.dropdown-submenu {
    position: relative;
    z-index: 1002;
}

.dropdown-submenu-content {
    position: fixed !important;
    /* left 和 top 由 JavaScript 控制 */
    left: var(--submenu-left, 0) !important;
    top: var(--submenu-top, 0) !important;
    right: auto !important;
    bottom: auto !important;
    background: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 1rem 0 !important;
    min-width: 150px !important;
    width: 150px !important;
    height: 200px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    display: none !important; /* 默认隐藏，由JavaScript控制 */
    visibility: hidden !important;
    opacity: 0 !important;
    list-style: none !important;
    z-index: 10001 !important;
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
    overflow-y: auto !important;
    pointer-events: none !important;
    transform: none !important;
    margin: 0 !important;
}

/* 强制显示三级导航的CSS规则 */
.dropdown-submenu-content.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: fixed !important;
    z-index: 10001 !important;
}



.dropdown-submenu-content li {
    list-style: none;
}

.dropdown-submenu-content a {
    display: block;
    padding: 0.8rem 1rem;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0.2rem 0.5rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-submenu-content a:hover {
    background: rgba(112, 192, 48, 0.2);
    color: #70C030;
    transform: none;
    box-shadow: none;
    border-left: 3px solid #70C030;
    margin-left: 0.3rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* 首页Banner样式 */
/* 首页banner使用与内页相同的样式 */
.page-banner {
    position: relative;
    top: 60px; /* 从导航栏高度之后开始显示 */
    width: 100%; /* 设置宽度为100% */
    aspect-ratio: 1920 / 800; /* 设置宽高比为1920:800 */
    margin: 0; /* 清除所有margin */
    padding: 0; /* 清除所有padding */
    scroll-margin-top: 60px; /* 确保跳转时banner不被导航栏遮挡 */
    z-index: 10; /* 确保banner不被其他模块遮挡 */
}

/* 首页banner特殊样式 - 21:9超宽比例 */
#home.page-banner {
    aspect-ratio: 21 / 9 !important;
}

.page-banner-swiper {
    height: 100%;
}

.banner-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover !important; /* 支持缩放效果 */
    background-position: center center !important; /* 确保图片居中 */
    background-repeat: no-repeat !important; /* 确保图片不重复 */
    overflow: hidden; /* 防止缩放时溢出 */
    transform: scale(1); /* 初始缩放值 */
    transition: transform 5s ease-out; /* 缓慢放大动画 */
}

/* 保留旧样式以兼容，但指向新的类名 */
.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: rgba(255, 255, 255, 0.9);
    color: #70C030;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 统计数据样式 */
.stats-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #70C030;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* 通用章节样式 */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #70C030;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

section {
    padding: 5rem 0;
}

/* 页面Banner样式（首页和内页通用） - 已在上方统一定义 */
/* 固定Banner样式（不轮播） */
.page-banner.fixed-banner {
    background-size: 100% 100% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Banner文字覆盖层样式 */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.banner-text {
    text-align: center;
    z-index: 3;
}

/* 页面内容区域 */
.page-content {
    margin-top: 160px; /* 补偿导航栏和banner的偏移 */
    padding: 2rem 0;
}

.content-header {
    text-align: center;
    margin-bottom: 2rem;
}

.content-header h1 {
    font-size: 2.5rem;
    color: #70C030;
    margin-bottom: 1rem;
}

.breadcrumb {
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #70C030;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 合作伙伴样式 */
.partners-section {
    background: #f8f9fa; /* 浅灰色 */
    margin-top: 60px; /* 补偿banner的relative定位偏移 */
}

.partners-category {
    margin-bottom: 3rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.partners-category h3 {
    font-size: 2.2rem;
    color: #70C030;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.partners-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #70C030, #8FD14F);
    border-radius: 2px;
}

/* 合作伙伴展示区域 */
.partners-showcase {
    position: relative;
    background: transparent; /* 移除背景色 */
    border-radius: 0; /* 移除圆角 */
    padding: 1rem 0; /* 减少padding，因为外层已有padding */
    box-shadow: none; /* 移除阴影 */
    overflow: hidden;
}

/* 移除装饰性伪元素 */

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 合作伙伴展示容器 - 2行7列网格布局 */
.partners-carousel-container {
    position: relative;
    padding: 1.5rem 0; /* 增加上下padding */
    background: transparent;
    overflow: visible; /* 改为visible，避免裁剪内容 */
    border: none; /* 移除外框 */
}

.partners-grid-wrapper {
    position: relative;
    overflow: visible; /* 改为visible，不需要滚动 */
    margin: 0; /* 移除边距，因为不再需要为导航按钮留空间 */
    padding: 0.5rem 0; /* 添加上下padding，确保内容不被裁剪 */
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7列，每行7个logo */
    grid-template-rows: repeat(2, 1fr); /* 2行 */
    gap: 1.2rem;
    width: 100%; /* 100%宽度，静态展示 */
    padding: 0; /* 去掉内边距，让logo卡片完全填满容器 */
    user-select: none; /* 防止文本选择 */
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 2/1;
    width: 100%;
    box-sizing: border-box;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-width: 90%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease; /* 只对transform设置过渡 */
}

.partner-card:hover .partner-logo {
    transform: scale(1.2); /* 增加放大倍数 */
}



/* 响应式设计 */
@media (max-width: 1400px) {
    .partners-grid {
        grid-template-columns: repeat(7, 1fr); /* 保持7列布局 */
        gap: 1rem;
    }
    
    .partners-grid-wrapper {
        margin: 0;
        padding: 0.4rem 0;
    }
    
    .partner-logo {
        max-height: 70px;
    }
    
}

@media (max-width: 1199px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr); /* 6列，每行6个logo */
        gap: 1rem;
    }
    
    .partners-grid-wrapper {
        margin: 0;
        padding: 0.4rem 0;
    }
    
    .partner-logo {
        max-height: 70px;
    }
    
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr); /* 4列，每行4个logo */
        gap: 0.8rem;
    }
    
    .partners-grid-wrapper {
        margin: 0;
        padding: 0.3rem 0;
    }
    
    .partner-logo {
        max-height: 60px;
    }
    
    .partners-showcase {
        padding: 0.5rem 0;
    }
    
    .partners-category h3 {
        font-size: 1.8rem;
    }
    
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr); /* 3列，每行3个logo */
        gap: 0.6rem;
    }
    
    .partners-grid-wrapper {
        margin: 0;
        padding: 0.3rem 0;
    }
    
    .partner-logo {
        max-height: 50px;
    }
}

.partners-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* 删除重复的partner-card定义 */

.card-icon {
    font-size: 3rem;
    color: #70C030;
    margin-bottom: 1rem;
}

.partner-card h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.partner-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.partner-card button {
    background: #70C030;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.partner-card button:hover {
    background: #1e3f73;
}

.more-btn {
    text-align: center;
    margin-top: 2rem;
}

.more-btn button {
    background: transparent;
    color: #70C030;
    border: 2px solid #70C030;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-btn button:hover {
    background: #70C030;
    color: white;
}

/* 项目案例样式 */
.projects-section {
    background: white; /* 白色 */
}

.projects-map {
    margin-bottom: 4rem;
}

.projects-map h3 {
    font-size: 1.8rem;
    color: #70C030;
    margin-bottom: 2rem;
    text-align: center;
}

.china-map {
    background: transparent;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 中国地图容器样式 */
.china-map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h3 {
    font-size: 1.8rem;
    color: #70C030;
    margin-bottom: 0.5rem;
}

.map-header p {
    color: #666;
    font-size: 1rem;
}

.map-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.map-visual {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.china-outline {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #dee2e6;
    overflow: hidden;
}

.province-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #70C030;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.province-dot:hover {
    transform: scale(1.2);
    background: #1e3f73;
}

/* 高密度项目（50+） */
.province-dot[data-count="58"] {
    background: #dc3545;
    width: 24px;
    height: 24px;
}

.province-dot[data-count="45"] {
    background: #dc3545;
    width: 23px;
    height: 23px;
}

.province-dot[data-count="42"] {
    background: #dc3545;
    width: 22px;
    height: 22px;
}

/* 中密度项目（20-49） */
.province-dot[data-count="25"] {
    background: #ffc107;
    width: 20px;
    height: 20px;
}

/* 低密度项目（1-19） */
.province-dot[data-count="15"] {
    background: #28a745;
    width: 18px;
    height: 18px;
}

.province-dot[data-count="12"] {
    background: #28a745;
    width: 16px;
    height: 16px;
}

.province-dot[data-count="8"] {
    background: #28a745;
    width: 14px;
    height: 14px;
}

.province-dot[data-count="6"] {
    background: #28a745;
    width: 12px;
    height: 12px;
}

.province-dot[data-count="4"] {
    background: #28a745;
    width: 10px;
    height: 10px;
}

.province-dot[data-count="3"] {
    background: #28a745;
    width: 8px;
    height: 8px;
}

.province-dot[data-count="2"] {
    background: #28a745;
    width: 6px;
    height: 6px;
}

.province-dot[data-count="1"] {
    background: #28a745;
    width: 4px;
    height: 4px;
}

.dot-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    background: rgba(44, 90, 160, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.province-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.province-dot:hover .province-label {
    opacity: 1;
}

.province-label span {
    color: #70C030;
    font-size: 0.8rem;
}

.map-legend {
    flex: 0 0 200px;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.high {
    background: #dc3545;
    width: 16px;
    height: 16px;
}

.legend-dot.medium {
    background: #ffc107;
    width: 12px;
    height: 12px;
}

.legend-dot.low {
    background: #28a745;
    width: 8px;
    height: 8px;
}

/* 联系我们页面样式 */
.contact-page-wrapper {
    background: #f5f5f5;
    min-height: calc(100vh - 240px);
    margin-top: 0;
    padding: 0;
    display: flex;
    position: relative;
    top: 0;
}

.contact-container {
    display: flex;
    gap: 0;
    padding: 0;
    min-height: calc(100vh - 240px);
    align-items: stretch;
    width: 100%;
}

.contact-info {
    flex: 0 0 50%;
    background: transparent;
    padding: 40px;
    padding-left: 7.5vw;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 140px;
}

.company-info h2 {
    color: #333;
    font-size: 29px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    position: relative;
}

.company-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: -50px;
    height: 1px;
    background: #ddd;
}

.office-section {
    margin-bottom: 40px;
}

.office-section h3 {
    color: #70C030;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.office-section h3 i {
    color: #70C030;
    font-size: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 18px 0;
    background: transparent;
    border: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #70C030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 16px;
}

.contact-icon-img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 15px;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.contact-value {
    color: #666;
    font-size: 17px;
    line-height: 1.5;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.contact-value.hotline {
    color: #70C030;
    font-weight: 700;
    font-size: 22px;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.contact-map {
    flex: 0 0 50%;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    min-width: 0;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #666;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #4a7c59;
}

.map-placeholder p {
    font-size: 16px;
    margin: 0;
}

/* 地图信息窗体样式 */
.amap-info-content {
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .contact-page-wrapper {
        min-height: auto;
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .contact-info {
        flex: none;
        padding: 30px;
        display: block;
    }
    
    .contact-map {
        flex: none;
    }
    
    .map-container {
        height: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-left {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-right {
        flex: none;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        min-height: auto;
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .contact-info {
        flex: none;
        padding: 20px;
        display: block;
    }
    
    .company-info h2 {
        font-size: 24px;
    }
    
    .office-section h3 {
        font-size: 18px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon, .contact-icon-img {
        margin: 0 auto 10px auto;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex: none;
        padding: 15px;
    }
    
    .company-info h2 {
        font-size: 20px;
    }
    
    .contact-value.hotline {
        font-size: 18px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .map-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-legend {
        flex: none;
        width: 100%;
    }
    
    .china-outline {
        height: 300px;
    }
    
    .province-dot {
        width: 16px;
        height: 16px;
    }
    
    /* 移动端省份点大小调整 */
    .province-dot[data-count="58"] {
        width: 20px;
        height: 20px;
    }
    
    .province-dot[data-count="45"] {
        width: 19px;
        height: 19px;
    }
    
    .province-dot[data-count="42"] {
        width: 18px;
        height: 18px;
    }
    
    .province-dot[data-count="25"] {
        width: 16px;
        height: 16px;
    }
    
    .province-dot[data-count="15"] {
        width: 14px;
        height: 14px;
    }
    
    .province-dot[data-count="12"] {
        width: 12px;
        height: 12px;
    }
    
    .province-dot[data-count="8"] {
        width: 10px;
        height: 10px;
    }
    
    .province-dot[data-count="6"] {
        width: 8px;
        height: 8px;
    }
    
    .province-dot[data-count="4"] {
        width: 6px;
        height: 6px;
    }
    
    .province-dot[data-count="3"] {
        width: 5px;
        height: 5px;
    }
    
    .province-dot[data-count="2"] {
        width: 4px;
        height: 4px;
    }
    
    .province-dot[data-count="1"] {
        width: 3px;
        height: 3px;
    }
    
    .dot-pulse {
        width: 26px;
        height: 26px;
        top: -5px;
        left: -5px;
    }
}

.classic-cases h3 {
    font-size: 1.8rem;
    color: #70C030;
    margin-bottom: 2rem;
    text-align: center;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.case-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.case-image {
    font-size: 3rem;
    color: #70C030;
    margin-bottom: 1rem;
}

.case-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.case-card p {
    color: #666;
}

/* 解决方案样式 */
.solutions-section {
    background: #f8f9fa; /* 浅灰色 */
    padding-bottom: 0;
    margin-bottom: -40px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.solution-image {
    aspect-ratio: 4 / 3;
    height: auto;
    overflow: hidden;
    position: relative;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* 图片与文字之间的蒙版（覆盖在图片之上，文字之下） */
.solution-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.08) 100%);
    z-index: 1;
    pointer-events: none;
}

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

.solution-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; /* 改回底部 */
    padding: 1rem 1.25rem;
    z-index: 2;
    min-height: 60px; /* 确保所有卡片内容区域高度一致 */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 改回底部对齐 */
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.solution-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 0; /* 确保标题顶部对齐 */
    margin-bottom: 0.2rem; /* 减少标题与下方标签的间距 */
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
    font-weight: 700;
    flex-shrink: 0; /* 防止标题被压缩 */
}

.solution-content p { color: #f2f2f2; margin-bottom: 0.5rem; }

.solution-content ul {
    list-style: none;
    padding: 0;
}

.solution-content li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.solution-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.factory-types {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem; /* 改为下边距，放在标题上方 */
    min-height: 32px; /* 确保标签区域有固定高度 */
    order: -1; /* 使用flexbox order让子模块显示在标题上方 */
}


.more-solutions {
    background: linear-gradient(135deg, #70C030 0%, #8FD14F 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-solutions .solution-content {
    text-align: center;
}

.more-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.more-solutions h3 {
    color: white;
}

.more-solutions p {
    color: rgba(255, 255, 255, 0.9);
}

/* 服务支持样式 */
.services-section {
    background: #f8f9fa; /* 灰色 */
    padding-top: 80px;
    padding-bottom: 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: #70C030;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #70C030;
    font-weight: bold;
}

/* 关于我们样式 */
.about-section {
    background: url('内容修改/首页2.png') center center/cover no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

/* 浮动在线咨询模块 */
.floating-consultation {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 80px;
    background: #70C030;
    border-radius: 12px 0 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(112, 192, 48, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-consultation:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 6px 25px rgba(112, 192, 48, 0.4);
}

.consultation-icon {
    color: white;
    font-size: 18px;
    margin-bottom: 3px;
}

.consultation-text {
    color: white;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.consultation-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: #70C030;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.about-content {
    margin-bottom: 4rem;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro h3 {
    font-size: 2rem;
    color: #70C030;
    margin-bottom: 1rem;
}

.about-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.detail-btn {
    background: #70C030;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.detail-btn:hover {
    background: #1e3f73;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: #70C030;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
}

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

.join-us h3 {
    font-size: 2rem;
    color: #70C030;
    margin-bottom: 2rem;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.join-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.join-card h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.join-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.join-card button {
    background: #70C030;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.join-card button:hover {
    background: #1e3f73;
}

/* 联系我们样式 */
.contact-section {
    background: white; /* 白色 */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-old h3 {
    font-size: 1.5rem;
    color: #70C030;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #70C030;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #70C030;
}

.contact-form button {
    width: 100%;
    background: #70C030;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background: #1e3f73;
}

/* 页脚样式 */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer .container {
    padding: 0;
}

.partners-section .container {
    padding: 0;
}

.projects-section .container {
    padding: 0;
}

.services-section .container {
    padding: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
    width: 100%;
}

.footer-left {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    flex: 1;
}

.footer-right {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li a.footer-highlight {
    color: white;
    font-weight: 500;
}

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

.footer-logo img {
    height: 30px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #70C030;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 12px;
}

/* 右侧联系区域样式 */
.footer-contact {
    width: 100%;
}

.service-hotline {
    margin-bottom: 2rem;
}

.hotline-label {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.hotline-number {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
    white-space: nowrap;
}

.manager-name {
    font-size: 12px;
    font-weight: normal;
    color: #ccc;
    margin: 0.2rem 0 0 0;
}

.footer-qrcodes {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

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

.qrcode-placeholder {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.qrcode-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qrcode-item p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}


/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    position: relative;
    overflow-x: hidden; /* 禁止模态框左右滚动 */
    box-sizing: border-box; /* 确保padding包含在宽度内 */
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* 浮动联系按钮 */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.contact-btn {
    background: #25d366;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}


.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* 上浮出现动画 */
.fade-up-section {
    opacity: 0 !important;
    transform: translateY(60px) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.fade-up-section.fade-up-active {
    opacity: 1 !important;
    transform: translateY(0) translateZ(0) !important;
}

/* 为不同模块设置不同的延迟时间 */
.fade-up-section:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-up-section:nth-child(2) {
    transition-delay: 0.3s;
}

.fade-up-section:nth-child(3) {
    transition-delay: 0.5s;
}

/* 从中心缩放放大出现动画 */
.scale-up-section {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-up-section.scale-up-active {
    opacity: 1;
    transform: scale(1);
}

/* 大于1200px时使用更慢、更柔和的动画 */
@media (min-width: 1200px) {
    .scale-up-section {
        transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

/* 淡入浮现动画（原地出现，不移动） */
.fade-in-section {
    opacity: 0 !important;
    transition: opacity 0.8s ease-out !important;
    will-change: opacity;
}

.fade-in-section.fade-in-active {
    opacity: 1 !important;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #70C030;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(112, 192, 48, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: white;
    color: #70C030;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(112, 192, 48, 0.4);
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Swiper自定义样式 */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

/* 模态框内容样式 */
.modal-content-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1rem 0;
    padding-right: 0.5rem; /* 为滚动条留出空间 */
}

/* Markdown 预格式化显示 */
.md-pre {
    white-space: pre-wrap;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
}

.md-html img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}

.md-html h1, .md-html h2, .md-html h3, .md-html h4, .md-html h5 {
    color: #70C030;
    margin: 1rem 0 0.5rem;
}

.md-html p { margin: 0.75rem 0; line-height: 1.8; }
.md-html ul, .md-html ol { margin: 0.75rem 0 0.75rem 1.25rem; padding-left: 1.25rem; }
.md-html ol { list-style-type: decimal; }
.md-html ul { list-style-type: disc; }
.md-html li { margin: 0.35rem 0; line-height: 1.8; }
.md-html li ul, .md-html li ol { margin-top: 0.35rem; }

/* 合作伙伴详情页面的网格布局 */
.partners-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 每行4个logo */
    gap: 0.8rem; /* 减小间距确保完整显示 */
    margin-top: 1rem;
    overflow-x: hidden; /* 禁止左右滚动 */
    width: 100%; /* 确保宽度不超出容器 */
    padding: 0 0.5rem; /* 添加左右内边距 */
    box-sizing: border-box; /* 确保padding包含在宽度内 */
}

/* 响应式设计 - 确保小屏幕上也能完整显示 */
@media (max-width: 768px) {
    .partners-detail-grid {
        grid-template-columns: repeat(3, 1fr); /* 小屏幕显示3列 */
        gap: 0.6rem;
        padding: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .partners-detail-grid {
        grid-template-columns: repeat(2, 1fr); /* 超小屏幕显示2列 */
        gap: 0.5rem;
        padding: 0 0.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-left {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-right {
        flex: none;
        margin-top: 1rem;
    }
    
    .footer-qrcodes {
        gap: 1rem;
    }
    
    .qrcode-placeholder {
        width: 80px;
        height: 60px;
    }
    
    .hotline-number {
        font-size: 28px;
    }
}

/* 在线咨询弹窗样式 */
.consultation-btn {
    background: linear-gradient(135deg, #70C030 0%, #8FD14F 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.consultation-btn i {
    font-size: 18px;
}

.consultation-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.consultation-modal-content {
    background-color: #fff;
    margin: 1% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 95vh;
    overflow-y: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.consultation-modal-header {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.consultation-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.consultation-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #70C030;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.consultation-close:hover {
    opacity: 1;
}

.consultation-modal-body {
    padding: 0;
}

.consultation-modal-body .form-group {
    margin-bottom: 15px;
}

.consultation-modal-body .form-group input,
.consultation-modal-body .form-group select,
.consultation-modal-body .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f8f9fa;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.consultation-modal-body .form-group input:focus,
.consultation-modal-body .form-group select:focus,
.consultation-modal-body .form-group textarea:focus {
    outline: none;
    border-color: #70C030;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.consultation-modal-body .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 20px;
}

.cancel-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cancel-btn:hover {
    background: #545b62;
}

.submit-btn {
    background: linear-gradient(135deg, #70C030 0%, #8FD14F 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .consultation-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .consultation-modal-header {
        padding: 15px 20px;
    }
    
    .consultation-modal-body {
        padding: 20px;
    }
    
    .consultation-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cancel-btn,
    .submit-btn {
        width: 100%;
        padding: 14px;
    }
}

/* 加盟合作和人才招聘页面样式 */
.partnership-intro,
.recruitment-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.partnership-types {
    margin-bottom: 3rem;
}

.partnership-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partnership-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.partnership-card .card-header .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #70C030 0%, #8FD14F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.partnership-card .card-header .card-icon i {
    font-size: 24px;
    color: white;
}

.partnership-card .card-header h3 {
    color: #333;
    margin: 0;
    font-size: 24px;
    flex: 1;
}

.arrow-button {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.arrow-button:hover {
    background: #70C030;
    transform: scale(1.1);
}

.arrow-button:hover span {
    color: white;
}

.arrow-button span {
    font-size: 30px;
    font-weight: 900;
    color: #70C030;
    transition: color 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    margin-top: -5px;
    padding: 0;
}

.partnership-card .card-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.partnership-card .card-content ul {
    list-style: none;
    padding: 0;
}

.partnership-card .card-content ul li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.partnership-card .card-content ul li::before {
    content: "✓";
    color: #70C030;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cooperation-benefits {
    margin-bottom: 3rem;
}

.benefits-grid,
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item,
.culture-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover,
.culture-item:hover {
    transform: translateY(-3px);
}

.benefit-item i,
.culture-item i {
    font-size: 48px;
    color: #70C030;
    margin-bottom: 1rem;
}

.benefit-item h4,
.culture-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 18px;
}

.benefit-item p,
.culture-item p {
    color: #666;
    line-height: 1.6;
}

.job-positions {
    margin-bottom: 3rem;
    margin-top: -60px;
}

.job-category {
    margin-bottom: 3rem;
}

.job-category h3 {
    color: #333;
    border-bottom: 3px solid #70C030;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.job-item {
    background: #f5f5f5;
    border-radius: 0;
    padding: 2rem;
    border-top: 2px solid #e0e0e0;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.job-item:hover {
    transform: translateY(-3px);
    border-top: 2px solid #70C030 !important;
}

.job-item:hover .arrow-button {
    background: #70C030 !important;
}

.job-item:hover .arrow-button span {
    color: white !important;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.job-header h4 {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    flex: 1;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.job-summary {
    margin-bottom: 1rem;
}

.job-summary p {
    color: #999;
    margin: 0;
    line-height: 1.6;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.job-location {
    background: #70C030;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 12px;
}

.job-details p {
    color: #333;
    font-weight: bold;
    margin: 1rem 0 0.5rem 0;
}

.job-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.job-details ul li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.job-details ul li::before {
    content: "•";
    color: #70C030;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.company-culture,
.employee-benefits {
    margin-bottom: 3rem;
}

.cooperation-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.mode-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #70C030;
}

.mode-item h5 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 16px;
}

.mode-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.partnership-detail {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.partnership-detail h4 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 18px;
}

.partnership-detail h5 {
    color: #555;
    margin: 1rem 0 0.5rem 0;
    font-size: 16px;
}

.partnership-detail p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.partnership-detail ul,
.partnership-detail ol {
    color: #555;
    line-height: 1.6;
}

.partnership-detail ul li,
.partnership-detail ol li {
    margin-bottom: 0.5rem;
}

.section-title {
    margin-top: 1.5rem !important;
}

.cta-button {
    background: linear-gradient(135deg, #70C030 0%, #8FD14F 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .partnership-intro,
    .recruitment-intro {
        padding: 1.5rem;
    }
    
    .partnership-card {
        padding: 1.5rem;
    }
    
    .benefits-grid,
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .job-item {
        padding: 1.5rem;
    }
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem; /* 减小内边距 */
    background: white; /* 改为白色背景 */
    border-radius: 8px;
    transition: transform 0.3s ease;
    min-height: 100px; /* 减小最小高度 */
    aspect-ratio: 3/2; /* 设置固定宽高比 */
    border: 1px solid #f0f0f0; /* 添加淡边框 */
    box-sizing: border-box; /* 确保padding包含在宽度内 */
    max-width: 100%; /* 确保不超出网格列宽 */
}

.partner-item img {
    max-width: 90%; /* 增加logo最大宽度 */
    max-height: 70px; /* 调整最大高度适应新的容器高度 */
    width: auto; /* 宽度自适应 */
    height: auto; /* 高度自适应 */
    object-fit: contain; /* 保持原始比例 */
    border-radius: 4px;
}

.partner-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 合作伙伴网格的滚动条样式已移至统一的弹窗滚动条样式 */

/* 公司外景图片样式 */
.company-exterior-image {
    margin-bottom: 1.5rem;
}

.company-exterior-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.company-exterior-image img:hover {
    transform: scale(1.02);
}

/* 统一所有弹窗滚动条样式 */
.modal-content-body::-webkit-scrollbar {
    width: 6px;
}

.modal-content-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.modal-content-body::-webkit-scrollbar-thumb {
    background: #70C030;
    border-radius: 3px;
}

.modal-content-body::-webkit-scrollbar-thumb:hover {
    background: #1e3f73;
}

.contractors-list,
.designers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.contractor-item,
.designer-item {
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #70C030;
}

.cases-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.case-detail {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #70C030;
}

.case-detail h4 {
    color: #70C030;
    margin-bottom: 0.5rem;
}

.case-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #70C030;
    text-decoration: none;
    font-weight: bold;
}

.case-link:hover {
    text-decoration: underline;
}

.solution-features {
    margin: 1rem 0;
}

.feature-item,
.type-item {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: #e8f4fd;
    border-radius: 5px;
    color: #70C030;
}

.contact-info-old {
    margin-top: 2rem;
    padding: 1rem;
    background: #e8f4fd;
    border-radius: 8px;
    text-align: center;
}

.quick-contact-info {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #70C030;
    margin-top: 0.2rem;
}

.contact-method strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #70C030;
}

/* 省份项目展示样式 */
.province-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.province-item:hover {
    background: #e8f4fd;
    transform: translateY(-2px);
}

/* 解决方案弹窗样式 */
.solution-image-container {
    text-align: center;
    margin: 1.5rem 0;
}

.solution-image-container img {
    max-width: 640px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.feature-group {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #70C030;
}

.feature-group h5 {
    color: #70C030;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item {
    padding: 0.3rem 0;
    color: #666;
    margin-left: 1rem;
}

.factory-types {
    margin: 2rem 0;
}

.factory-type-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #70C030;
}

.factory-type-item h5 {
    color: #70C030;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.features-list {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #e8f4fd;
    color: #70C030;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
}

.platform-solutions {
    margin: 2rem 0;
}

.platform-solution-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #70C030;
}

.platform-solution-item h5 {
    color: #70C030;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.technical-specs {
    margin: 2rem 0;
}

.spec-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.spec-item:last-child {
    border-bottom: none;
}

.applications {
    margin: 2rem 0;
}

.applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.application-tag {
    background: #28a745;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

/* 加入我们详细页面样式 */
.join-options-detail {
    margin: 1.5rem 0;
}

.join-category {
    margin-bottom: 3rem;
}

.join-category h4 {
    color: #70C030;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.join-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.join-type-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #70C030;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-type-card:hover {
    background: #e8f4fd;
    transform: translateY(-2px);
}

.join-type-card h5 {
    color: #70C030;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.join-type-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.join-type-card button {
    background: #70C030;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.join-type-card button:hover {
    background: #1e3f73;
}

.recruitment-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #70C030;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.position-item {
    background: #e8f4fd;
    color: #70C030;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
}

.job-postings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.job-posting {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #70C030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-posting:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.job-posting h4 {
    color: #70C030;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}


.position-detail {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #70C030;
    margin-bottom: 1rem;
}

.position-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.position-header h5 {
    color: #70C030;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.position-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.position-content p {
    margin: 0.5rem 0;
    line-height: 1.5;
    color: #333;
}

.position-content .section-title {
    margin-top: 1.5rem;
}

.position-content strong {
    color: #70C030;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-text {
    flex: 1;
}

.contact-qr {
    flex-shrink: 0;
    text-align: center;
}

.contact-qr img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.detail-button {
    background: #70C030;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.detail-button:hover {
    background: #1e3f73;
}

/* 合作详情页面样式 */
.partnership-detail {
    margin: 1rem 0;
}

.partnership-detail h4,
.recruitment-detail h4 {
    color: #70C030;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.partnership-detail h5,
.recruitment-detail h5 {
    color: #333;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

/* 卡片下拉框内容向上移动样式 */
#designer-detail h4:first-child,
#contractor-detail h4:first-child,
#design-institute-detail h4:first-child {
    margin-top: calc(1.5rem - 25px);
}

/* 人才招聘页面卡片下拉框内容向上移动样式 */
#main-position-detail h4:first-child {
    margin-top: calc(1.5rem - 25px);
}

.partnership-detail ol,
.partnership-detail ul,
.recruitment-detail ol,
.recruitment-detail ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style-position: inside;
}

.partnership-detail li,
.recruitment-detail li {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 15px;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.partnership-detail p,
.recruitment-detail p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.cooperation-modes {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.mode-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #70C030;
}

.mode-item h5 {
    color: #70C030;
    margin-bottom: 0.5rem;
}

.mode-item p {
    color: #666;
    margin: 0;
}

.positions-detail {
    display: grid;
    gap: 1.5rem;
    margin: 1rem 0;
}

.position-detail {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #70C030;
}

.position-detail h5 {
    color: #70C030;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.position-detail p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* 响应式设计 - 将在mobile.css中详细定义 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-left {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-right {
        flex: none;
        margin-top: 1.5rem;
    }
    
    .footer-qrcodes {
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .contractors-list,
    .designers-list {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}

/* 数据格子悬停效果 */
.data-cell {
    background: transparent;
    box-sizing: border-box;
    position: relative;
}

.data-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.data-cell:hover::before {
    background-color: rgba(112, 192, 48, 0.8);
}

/* 确保文字内容在绿色背景之上 */
.data-cell > * {
    position: relative;
    z-index: 2;
}

/* 下方两个格子的特殊处理 - 绿色背景跟随格子移动 */
.data-cell[style*="transform: translateY(0px)"]::before {
    transform: translateY(0px);
}

/* 首页专用样式 - 只影响index.html */
/* 旧的首页hero-section样式已弃用，现在使用page-banner */

.hero-swiper {
    height: 100%;
    width: 100%;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.cta-button {
    background: linear-gradient(135deg, #70C030, #5AA02A);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(112, 192, 48, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 192, 48, 0.4);
    background: linear-gradient(135deg, #5AA02A, #70C030);
}

/* Swiper导航按钮样式（首页和内页通用） */
.page-banner-swiper .swiper-button-next,
.page-banner-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.page-banner-swiper .swiper-button-next:hover,
.page-banner-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.page-banner-swiper .swiper-button-next:after,
.page-banner-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper分页器样式 */
.page-banner-swiper .swiper-pagination-bullet,
.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.page-banner-swiper .swiper-pagination-bullet-active,
.hero-swiper .swiper-pagination-bullet-active {
    background: #70C030;
    transform: scale(1.2);
}

/* 首页合作伙伴轮播样式 - 只影响首页 */
#home ~ #partners .partners-carousel-container,
.partners-section .partners-carousel-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    height: auto; /* 自适应高度 */
}

#home ~ #partners .partners-grid-wrapper,
.partners-section .partners-grid-wrapper {
    overflow: hidden;
    width: 100%;
}

#home ~ #partners .partners-grid {
    display: grid;
    grid-template-columns: repeat(14, 1fr); /* 每行14个logo */
    grid-template-rows: repeat(2, 1fr); /* 2行 */
    gap: 40px; /* 设置40px间距 */
    width: 200%; /* 双倍宽度用于滚动 */
    transition: none; /* 移除过渡效果，使用连续滚动 */
    will-change: transform; /* 优化性能 */
    grid-auto-flow: column; /* 按列填充，确保正确的顺序 */
}

.partners-section .partners-carousel-container .partners-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 每行12个logo */
    grid-template-rows: repeat(2, 1fr); /* 2行 */
    gap: 0.8rem;
    width: 200%; /* 双倍宽度用于滚动 */
    transition: none; /* 移除过渡效果，使用连续滚动 */
    will-change: transform; /* 优化性能 */
    grid-auto-flow: column; /* 按列填充，确保正确的顺序 */
}

#home ~ #partners .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 80px; /* 固定高度 */
    min-width: 120px; /* 设置最小宽度确保卡片足够宽 */
    width: 100%; /* 使用100%宽度 */
    aspect-ratio: 4/3; /* 保持4:3比例 */
}

.partners-section .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 70px;
    aspect-ratio: 4/3; /* 改为4:3比例 */
}

#home ~ #partners .partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partners-section .partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

#home ~ #partners .partner-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
}

.partners-section .partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* 项目统计卡片样式 - 只影响首页 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #70C030, #5AA02A);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #70C030;
    margin-bottom: 0.5rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

/* 联系我们表单样式 - 只影响首页 */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #70C030;
    background: white;
    box-shadow: 0 0 0 3px rgba(112, 192, 48, 0.1);
}

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

.contact-form button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #70C030, #5AA02A);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(112, 192, 48, 0.3);
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 192, 48, 0.4);
    background: linear-gradient(135deg, #5AA02A, #70C030);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

/* 响应式设计 - 只影响首页 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .page-banner-swiper .swiper-button-next,
    .page-banner-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .page-banner-swiper .swiper-button-next:after,
    .page-banner-swiper .swiper-button-prev:after,
    .hero-swiper .swiper-button-next:after,
    .hero-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    #home ~ #partners .partners-grid {
        grid-template-columns: repeat(7, 1fr);
        width: 100%;
    }
    
    .partners-section .partners-carousel-container .partners-grid {
        grid-template-columns: repeat(6, 1fr);
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* 物流库案例卡片字体设置 */
.cases-grid .case-content h3,
.cases-grid .case-content p,
.cases-grid .case-stats div,
.content-section p {
    font-family: 'Source Han Sans CN', 'Noto Sans CJK SC', 'Microsoft YaHei', Arial, sans-serif !important;
}

