/* 全局基础样式与统一设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 1. 统一核心板块上下间距 */
.module-spacing,
.cpcontainer,
.about-us,
.team-center,
.partners-wrapper,
.news-wrapper,
.outer-container {
    padding: clamp(60px, 8vw, 80px) 20px; /* 平滑响应式间距 */
}

/* 平板端（768px及以下）统一间距 */
@media (max-width: 768px) {
    .module-spacing,
    .cpcontainer,
    .about-us,
    .team-center,
    .partners-wrapper,
    .news-wrapper,
    .outer-container {
        padding: clamp(40px, 6vw, 60px) 20px;
    }
}

/* 手机端（576px及以下）统一间距 */
@media (max-width: 576px) {
    .module-spacing,
    .cpcontainer,
    .about-us,
    .team-center,
    .partners-wrapper,
    .news-wrapper,
    .outer-container {
        padding: clamp(30px, 5vw, 40px) 15px;
    }
}

/* 2. 统一所有板块标题字体样式 */
.section-title,
.about-content h2.section-title,
.team-center h2,
.main-box .heading-text,
.form-container h2,
.anli-carousel h2.section-title {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 600;
    margin-bottom: clamp(25px, 4vw, 40px);
    text-align: center;
    color: #333;
}

/* 3. 统一文章标题字体大小（团队、新闻板块） */
.team-item h3,
.news-title a {
    font-size: 18px; /* 桌面端文章标题 */
    font-weight: 500;
    line-height: 1.5;
    color: #0a0b0d;
}

/* 平板端文章标题 */
@media (max-width: 768px) {
    .team-item h3,
    .news-title a {
        font-size: 16px; /* 平板端文章标题 */
    }
}

/* 手机端文章标题 */
@media (max-width: 576px) {
    .team-item h3,
    .news-title a {
        font-size: 15px; /* 手机端文章标题 */
    }
}

/* 解决方案容器样式 */
.solution-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    letter-spacing: 2px;
}

/* 标题下划线样式 */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #666;
    margin: 15px auto 0;
}

/* 团队中心标题补充样式 */
.team-center h2 {
    margin-bottom: 10px;
    color: #333;
}

/* 手机端解决方案项样式 */
@media (max-width: 575px) {
    .solution-item {
        width: 100% !important;
        margin-right: 0;
    }
    .solution-item:last-child {
        margin-right: 0;
    }
}

/* 解决方案信息项样式 */
.info-item {
    margin-bottom: 15px;
    text-align: left;
}

/* 信息项标签与值样式 */
@media (min-width: 1024px) {
    .label {
        font-weight: 100;
        color: #008000;
        font-size: 1.2rem;
    }
    .value {
        color: #333;
        font-size: 1.2rem;
    }
}

@media (min-width: 375px) and (max-width: 1023px) {
    .info-item {
        display: flex;
        flex-direction: column;
    }
    .label {
        margin-bottom: 5px;
        font-weight: bold;
        color: #008000;
        font-size: 1.2rem;
    }
    .value {
        color: #333;
        font-size: 1.2rem;
    }
}

/* 轮播基础样式 */
.carousel, .charging-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.solution-list, .charging-list {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    gap: 60px;
    margin-bottom: 1rem;
}

/* 轮播项基础样式 */
.solution-item, .charging-item {
    background-color: #fff;
    border-radius: 1.5vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f7f7f7;
}

.solution-item:hover, .charging-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.solution-img, .charging-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.solution-info, .charging-info {
    padding: 25px;
}

.solution-name, .charging-name {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.solution-item:hover .solution-name, 
.charging-item:hover .charging-name {
    color: #000;
}

.solution-desc, .charging-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* 轮播箭头导航 */
.arrow-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 1rem;
}

.prev-arrow, .next-arrow {
    width: 50px;
    height: 50px;
    background-color: #13943f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    color: #fff;
}

.prev-arrow:hover, .next-arrow:hover {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    transform: scale(1.1);
    color: #333;
}

.prev-arrow svg:hover, .next-arrow svg:hover {
    width: 24px;
    height: 24px;
    fill: #333;
}

.prev-arrow svg, .next-arrow svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* 大屏轮播布局（>1200px） */
@media (min-width: 1201px) {
    .solution-item {
        min-width: calc(25% - 22.5px); /* 四列布局 */
    }
    .charging-carousel {
        display: none; /* 大屏隐藏移动端轮播 */
    }
}

/* 中屏轮播布局（<=1200px） */
@media (max-width: 1200px) {
    .carousel {
        display: none; /* 中屏隐藏桌面端轮播 */
    }
    
    .charging-list {
        gap: 0;
    }
    
    .charging-item {
        min-width: 100%; /* 单列布局 */
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .charging-item:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        transform: translateY(-3px);
    }
    
    .charging-img {
        height: 180px;
    }
    
    .charging-info {
        padding: 18px;
    }
    
    .charging-name {
        font-size: 16px;
        margin-bottom: 10px;
        color: #222;
    }
    
    .arrow-container {
        gap: 15px;
        margin-top: 15px;
    }
    
    .prev-arrow, .next-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow svg, .next-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* 小屏轮播适配（<=576px） */
@media (max-width: 576px) {
    .solution-container {
        padding: 0 10px;
    }
    
    .prev-arrow, .next-arrow {
        width: 36px;
        height: 36px;
    }
    
    .arrow-container {
        margin-top: 20px;
    }
}

/* 解决方案按钮样式 */
.info-action {
    margin-top: 12px;
}

.view-more-btn {
    display: inline-block;
    padding: 6px 0px;
    font-size: 14px;
    color: #13943f;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    color: #13943f;
}

/* 产品中心背景样式 */
.cpwaper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
}

/* 保持原有样式，调整分类链接字体大小和边角半径 */

/* 全局分类链接基础样式调整 */
.category-link {
    font-size: 1.6rem !important; 
    border-radius: 30px !important; /* 边角宽度稍微增大 */
}

/* 平板设备适配 (768px 及以下) */
@media (max-width: 768px) {
    /* 1. 移除product-section背景 */
    .product-section {
        background-color: transparent !important;
    }

    /* 2. 分类导航样式 */
    .category-nav {
        width: 95% !important;
        margin: 0 auto !important;
    }
    
    .category-link {
        padding: 8px 18px !important;
		font-size: 1.2rem !important; 
    }

    /* 其他保持不变的样式 */
    .product-item.center {
        display: block !important;
        width: 100% !important;
        max-width: 500px !important;
        height: auto !important;
        opacity: 1 !important;
        z-index: 10 !important;
        margin: 0 auto !important;
    }

    .product-item.center .product-img {
        height: 350px !important;
        object-fit: contain !important;
        width: 100% !important;
        min-height: 350px !important;
        background-color: #fff !important;
        border: 1px solid #eee !important;
    }

    .product-container {
        overflow: visible !important;
        min-height: 500px !important;
        padding: 20px 0 !important;
    }

    .product-desc {
        font-size: 1.4rem !important;
        color: #333 !important;
        padding: 15px 0 !important;
        font-weight: 500 !important;
    }

    .header-container {
        flex-direction: column;
        align-items: center !important;
    }
    
    .product-center-title {
        margin-bottom: 15px;
        margin-right: 0;
        text-align: center !important;
    }
}

/* 手机设备适配 (576px 及以下) */
@media (max-width: 576px) {
    /* 1. 移除product-section背景 */
    .product-section {
        background-color: transparent !important;
        padding: 15px 10px !important;
    }

    /* 2. 分类导航样式 */
    .category-nav {
        width: 90% !important;
        padding: 8px 12px !important;
        gap: 8px !important;
    }
    
    .category-link {
        padding: 7px 12px !important;
    }

    /* 其他保持不变的样式 */
    .product-item.center {
        width: 100% !important;
        max-width: none !important;
    }

    .product-item.center .product-img {
        height: 300px !important;
        min-height: 300px !important;
        padding: 10px !important;
    }

    .product-container {
        min-height: 450px !important;
        padding: 15px 0 !important;
    }

    .product-desc {
        font-size: 1.2rem !important;
        padding: 12px 5px !important;
    }

    .category-item {
        flex: 0 0 calc(50% - 4px) !important;
    }

    .category-group {
        gap: 8px !important;
    }

    .header-container {
        gap: 15px;
        margin-bottom: 20px;
    }

    .product-center-title {
        font-size: 1.8rem;
        width: 100%;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
    }
}

/* 以下为原有完整样式（未修改部分） */
/* 产品中心容器样式 */
.cpcontainer {
    position: relative;
    z-index: 1;
    background-image: url('https://cdn.hongjialixny.com/j1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* 改为随内容滚动 */
}

/* 产品中心内容容器 */
.product-center-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 产品中心标题与导航容器 */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

/* 产品中心标题样式 */
.product-center-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 30px;
}

/* 产品分类导航样式 */
.category-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 1.56vw;
    backdrop-filter: blur(10px);
    flex-grow: 1;
    min-width: 0;
}

.category-group {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.category-item {
    list-style: none;
    position: relative;
    flex: 0 0 auto;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.category-link::after {
    display: none;
}

.category-link:hover {
    color: #333;
}

.category-link.active {
    padding: 10px 25px;
    border: 1px solid rgba(150,150,150,0.4);
    color: #333;
    background-color: rgba(255,255,255,0.5);
}

/* 产品展示区域样式 */
.product-section {
    position: relative;
    border-radius: 1.56vw;
    padding: 30px;
}

/* 产品列表容器 */
.product-container {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    padding: 40px 0;
}

.product-list {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 10px 0;
    align-items: center;
}

/* 产品项样式 */
.product-item {
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.7;
    z-index: 1;
    text-align: center;
}

.product-item.left, .product-item.right {
    width: 460px;
    height: 460px;
    opacity: 0.85;
    z-index: 2;
}

.product-item.center {
    width: 520px;
    height: 520px;
    transform: scale(1.1);
    opacity: 1;
    z-index: 3;
}

.product-item.hidden {
    display: none;
}

.product-item:hover:not(.center) {
    transform: translateY(-5px) scale(1.05);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-desc {
    text-align: center;
    padding: 15px;
    color: #333;
    font-size: 1.6rem;
}

/* 产品切换箭头 */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #13943f;
    border: 1px solid #13943f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.7;
    color: #fff;
}

.has-more .nav-arrow {
    display: flex;
}

.nav-arrow:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    border: 1px solid #ddd;
    color: #666;
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

/* 箭头图标样式 */
.nav-arrow::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.3s ease;
}

.nav-arrow:hover::before {
    border-top-color: #666;
    border-left-color: #666;
}

.arrow-left::before {
    transform: rotate(-45deg);
    margin-left: 5px;
}

.arrow-right::before {
    transform: rotate(135deg);
    margin-right: 5px;
}

/* 产品分类显示控制 */
.product-category {
    display: none;
}

.product-category.active {
    display: block;
}

/* 电脑端原有响应式适配 (保持不变) */
@media (max-width: 1400px) {
    .product-item.left, .product-item.right {
        width: 400px;
        height: 400px;
    }
    .product-item.center {
        width: 460px;
        height: 460px;
    }
    .category-link {
        padding: 8px 16px;
    }
}

@media (max-width: 1200px) {
    .product-item.left, .product-item.right {
        width: 340px;
        height: 340px;
    }
    .product-item.center {
        width: 400px;
        height: 400px;
    }
    .category-group {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .nav-arrow {
        width: 50px;
        height: 50px;
    }
    .category-nav {
        padding: 15px 20px;
    }
    .product-container {
        min-height: 600px;
    }
}

/* 关于我们板块样式 */
.about-us {
    width: 100%;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
	min-height:672px
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://cdn.hongjialixny.com/j6.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* 改为随内容滚动 */
    z-index: 1;
    opacity: 0.9;
    transition: opacity 0.5s ease; /* 平滑过渡效果 */
}


/* 增强内容与背景的对比度 */
.about-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 15, 0.4);
    z-index: 1;
    backdrop-filter: blur(2px); /* 轻微模糊背景，增强文字可读性 */
}

.about-content {
    /* 确保内容在所有设备上都保持在合适的位置和大小 */
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}


.about-content {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
}

.about-content h2.section-title {
    margin-bottom: 30px;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s ease;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.about-content h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #fff;
}

.about-us:hover .about-content h2 {
    transform: translateY(-10px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s ease 0.1s;
    color: #fff;
    text-align: left;
    margin-bottom: 6rem;
    letter-spacing: 2px;
    background-color: rgba(0,0,0,0.2);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1.8;
}

/* 数据统计样式 */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 20px 0;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
    letter-spacing: 2px;
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}
.stat-item .number {
        font-size: 40px; /* 适当缩小数字大小 */
    }
    
    .stat-item .desc {
        font-size: 1.2rem; /* 适当缩小描述文字 */
    }

/* 平板设备 (768px 及以下) - 一排显示两个 */
@media (max-width: 768px) {
    .stat-item {
        flex: 0 0 calc(50% - 1rem); /* 计算宽度，减去间距的一半 */
        max-width: calc(50% - 1rem);
        padding: 25px 15px;
    }
    
    .stat-item .number {
        font-size: 20px; /* 适当缩小数字大小 */
    }
    
    .stat-item .desc {
        font-size: 1.2rem; /* 适当缩小描述文字 */
    }
}

/* 手机设备 (576px 及以下) - 保持一排两个但优化大小 */
@media (max-width: 576px) {
    .stats {
        gap: 1.5rem; /* 减小间距 */
        padding: 15px 0;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.75rem); /* 计算宽度，适应更小间距 */
        max-width: calc(50% - 0.75rem);
        min-width: auto; /* 取消最小宽度限制 */
        padding: 20px 10px;
    }
    
    .stat-icon {
        font-size: 1.8rem; /* 缩小图标 */
        margin-bottom: 10px;
    }
    
    .stat-item .number {
        font-size: 20px; /* 进一步缩小数字 */
    }
    
    .stat-item .desc {
        font-size: 1rem; /* 进一步缩小描述文字 */
    }
}

/* 保持原有的动画和交互效果 */
.about-us:hover .stat-item {
    transform: translateY(-8px);
    opacity: 1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(4) {
    transition-delay: 0.4s;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2);
    color: #fff;
}

.stat-item:hover .number {
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.stat-item:hover .desc {
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
    

/* 按钮容器样式 */
.button-container {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    padding: 20px;
    margin: 1rem auto 0rem;
}

/* 自定义按钮样式 */
.custom-btn {
    background-color: #13943f;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #0e7a33;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 新闻模块样式 */
.news-wrapper {
    background-color: #f6f7fa;
}

.news-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 10px;
    flex-wrap: wrap;
    letter-spacing: 0px;
}

.news-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 300px;
    border: 1px solid #f6f7fa;
    border-radius: 1.56vw;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    background-color: rgba(255, 255, 255, .6);
}

/* 新闻卡片响应式布局 */
@media (max-width: 1200px) {
    .solution-item, .news-card {
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    .team-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .solution-item, .news-card, .team-item {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .solution-item {
        width: 100%;
    }
    .solution-list {
        gap: 60px;
    }
}

/* 新闻卡片交互样式 */
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #ccc;
    background-color: #fff;
}

.news-image-container {
    position: relative;
}

.news-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 20px;
}

/* 新闻标签样式 */
.news-type {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgba(0,0,0,0.2);
    font-size: 16px;
    color: #fff;
    padding: 0.52vw 1.3vw;
    border-bottom-right-radius: 1.56vw;
}

.company-news {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: #13943f;
    font-size: 16px;
    color: #fff;
    padding: 0.52vw 1.3vw;
    border-bottom-right-radius: 1.56vw;
    z-index: 10;
}

.other-news {
    background: #13943f;
}

.item_a {
    padding: 4rem 1.56vw 2rem;
}

/* 新闻列表项样式 */
.news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.news-heading {
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 1px;
    color: #0a0b0d;
}

.news-heading a {
    color: #0a0b0d;
    font-size: 14px;
    font-weight: 1;
}

.news-heading a:hover {
    color: #13943f;
}

.news-date {
    margin: 0;
    white-space: nowrap;
    color: #545B66;
    font-size: 14px;
}

/* 新闻标题与描述样式 */
.news-title {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #282C33;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #282C33;
}

.news-time {
    font-size: 14px;
    color: #545B66;
    margin-bottom: 15px;
    display: block;
}

.news-card:nth-child(3) .news-title {
    margin-bottom: 12px;
}

.news-card:nth-child(3) .news-time {
    margin-bottom: 15px;
}

.news-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #545B66;
}

.news-more {
    font-size: 14px;
    color: #13943f;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-more:hover {
    color: #13943f;
    text-decoration: underline;
}

/* 合作伙伴模块样式 */
.partners-wrapper {
    overflow: hidden;
    background: linear-gradient(90deg,#dcdcdc,#c8c8c8),url('/static/j5.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* 改为随内容滚动 */
    background-blend-mode: overlay;
    position: relative;
}

.partners-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.fullscreen-container {
    width: 100vw;
    height: 450px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* 滚动渐变遮罩 */
.gradient-mask-left, .gradient-mask-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: clamp(40px,10vw,80px);
    z-index: 10;
    pointer-events: none;
}

.gradient-mask-left {
    left: 0;
    background: linear-gradient(to right,#edeef2,transparent);
}

.gradient-mask-right {
    right: 0;
    background: linear-gradient(to left,#edeef2,transparent);
}

/* 滚动内容样式 */
.scroll-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: clamp(20px,5vh,40px) 0;
    will-change: transform;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    width: 200%;
    animation: scrollRight 40s linear infinite;
}

.scroll-content-wrapper:hover .scroll-content {
    animation-play-state: paused;
}

.scroll-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 clamp(10px,2vw,20px);
    overflow: hidden;
    margin: 15px 0;
}

.scroll-items-container {
    display: flex;
    gap: clamp(20px,3vw,40px);
    width: 100%;
    padding: 0 clamp(40px,10vw,80px);
    align-items: center;
}

/* 合作伙伴案例项 */
.case-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    flex: 0 0 auto;
    background-color: rgba(255,255,255,1);
    border-radius: 8px;
    padding: clamp(15px,3vh,20px);
    min-width: clamp(140px,20vw,240px);
    height: clamp(100px,20vh,140px);
    transition: all 0.3s ease;
}

.case-item:hover {
    background-color: rgba(255,255,255,1);
    transform: scale(1.05);
}

.case-item img {
    max-width: clamp(50px,10vw,80px);
    max-height: clamp(40px,8vh,60px);
    object-fit: contain;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.case-item:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.case-item span {
    color: #333;
    font-family: system-ui,sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: clamp(14px,2vw,16px);
}

/* 团队展示样式 */
.team-center {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
}

.line {
    width: 60px;
    height: 4px;
    background-color: #999;
    margin: 0 auto 40px auto;
}

/* 团队网格布局 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 60px;
    flex-shrink: 0;
    width: 100%;
}

.team-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 团队职位与描述 */
.team-item .position {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.team-item p {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* 轮播圆点指示器 */
.dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #333;
    transform: scale(1.2);
}

/* 招商加盟模块 */
/* 3. 加盟模块核心样式 */
.main-box {
    max-width: 1600px;
    width: 95%;
    margin: clamp(50px, 10vw, 80px) auto;
    padding: clamp(50px, 8vw, 80px) 20px;
    box-sizing: border-box;
    text-align: center;
    border-radius: clamp(8px, 2vw, 25px);
    background-color: #fff;
    transition: all 0.3s ease; /* 平滑过渡效果 */
    border: 1px solid #f7f7f7;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.main-box:hover {
    transform: translateY(-5px);
    border-color: #eaeaea;
}

.heading-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 30px;
    font-weight: bold;
}

.highlight {
    color: #13943f;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #13943f;
    border-radius: 2px;
}

.info-text {
    font-size: 16px;
    margin: 0 auto 40px;
    line-height: 1.8;
    max-width: 1200px;
    padding: 0 15px;
    color: #777;
    letter-spacing: 2px;
}

.action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
}

.phone-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: #13943f;
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #e1f0d8;
    border-radius: 25px;
    background-color: #fff;
    transition: all 0.3s ease;
    min-width: 280px;
    justify-content: center;
}

.phone-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    vertical-align: middle;
    filter: invert(34%) sepia(93%) saturate(300%) hue-rotate(90deg) brightness(90%) contrast(90%);
}

.phone-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(19, 148, 63, 0.1);
}

.link-primary, .link-secondary {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-color: #13943f;
    border: 1px solid #13943f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.link-primary:hover, .link-secondary:hover {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #333;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .link-primary, .link-secondary, .phone-contact {
        width: 100%;
        max-width: 280px;
    }
    
    .phone-icon {
        width: 20px;
        height: 20px;
    }
}
/* 留言表单样式 */
.outer-container {
    background-size: cover;
	background-image: url(https://cdn.hongjialixny.com/j1.jpg);
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-attachment: scroll; /* 改为随内容滚动 */
}

.form-container {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    padding: 60px;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.92);
    border-radius: 1.56vw;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(5px);
}

.form-container input[type="text"], .form-container textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    height: 53px;
    transition: border-color 0.3s ease;
    background-color: #f7f7f7;
}

.form-container input[type="text"]:focus, .form-container textarea:focus {
    border-color: #999;
    outline: none;
    box-shadow: 0 0 0 3px rgba(247,247,247,0.5);
}

.form-container textarea {
    height: 160px;
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #555;
    font-size: 15px;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
    accent-color: #666;
}

.form-container button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 1;
    text-align: center;
    color: #fff;
    background-color: #13943f;
    border: 1px solid #13943f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.form-container button:hover {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #333;
}

.form-container button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* 案例中心样式 */
.anli-carousel {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.anli-carousel-content {
    overflow: hidden;
}

.anli-carousel .anli-list {
    display: flex;
    transition: transform 0.5s ease;
    gap: 60px;
    margin-bottom: 1.5rem;
}

.anli-carousel .anli-item {
    flex-shrink: 0;
    width: 100%;
    max-width: calc((100% - 180px) / 4);
    border-radius: 1.5vw;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 案例项响应式布局 */
@media (max-width: 1200px) {
    .anli-carousel .anli-item {
        max-width: calc((100% - 120px) / 3);
    }
}

@media (max-width: 992px) {
    .anli-carousel .anli-item {
        max-width: calc((100% - 60px) / 2);
    }
}

@media (max-width: 576px) {
    .anli-carousel .anli-item {
        max-width: 100%;
    }
    .anli-carousel .anli-list {
        gap: 30px;
    }
}

.anli-carousel .anli-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #ccc;
}

.anli-carousel .anli-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 480 / 350;
    object-fit: cover;
}

.anli-carousel .anli-text {
    padding: 1.5vw;
}

.anli-carousel .anli-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.anli-carousel .anli-more {
    font-size: 14px;
    color: #13943f;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: color 0.3s ease;
}

.anli-carousel .anli-more:hover {
    color: #13943f;
    text-decoration: underline;
}

/* 案例轮播箭头 */
.anli-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 3rem;
}

.anli-arrow {
    width: 50px;
    height: 50px;
    background-color: #13943f;
    border: 1px solid #13943f;
    color: #fff;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    user-select: none;
    border-radius: 1.5vw;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.anli-arrow:hover {
    background-color: #fff;
    transform: scale(1.1);
    border: 1px solid #f2f2f2;
    color: #333;
}

/* 案例轮播响应式 */
@media (max-width: 768px) {
    .anli-arrow {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
    .anli-carousel .anli-list {
        gap: 30px;
    }
    .anli-arrows {
        margin-top: 20px;
    }
}

/* 滚动动画 */
@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 按钮交互样式补充 */
.custom-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 1;
    text-align: center;
    color: #fff;
    background-color: #13943f;
    border: 1px solid #13943f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.custom-btn:hover {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #333;
}

.custom-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* 响应式补充 */
@media (max-width: 768px) {
    .main-box {
        padding: 60px 15px;
        background: #f7f7f7;
    }
    .link {
        width: 80%;
        box-sizing: border-box;
        text-align: center;
    }
    .form-container {
        padding: 40px;
    }
    .form-container h2 {
        font-size: 18px;
    }
    .custom-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-box {
        padding: 40px 10px;
        margin: 60px auto;
        border-radius: 12px;
    }
    .link {
        width: 90%;
        padding: 12px 20px;
    }
    .highlight::after {
        height: 2px;
    }
    .custom-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 120px;
    }
}