/* wxavatar Technical Support */
/* about us start */
.banner_container {
    position: relative;
    overflow: hidden;
    /*height: calc(100vh - 0px);*/
    /* 满屏高度*/
    /*min-height: 600px;*/
    /* 最小高度保证内容可见 */
    /*max-height: 680px;*/
    /* 极大屏幕限制 */
    width: 100%;
    /*height: 100vh;*/
    /*margin-top: 70px;*/
}

.banner_container .slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.banner_container .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner_container .slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}



.banner_container .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    padding: 40px;
    border-radius: 8px;
    max-width: 80%;
}

.banner_container .slide-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner_container .slide-content p {
    font-size: 1.6rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 轮播指示点 */
.banner_container .dot-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.banner_container .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.3s;
    background-color: transparent;
}

.banner_container .dot.active {
    background-color: #fff;
}

.banner_container .dot:hover {
    background-color: #fff;
}

/* 轮播箭头 */
.banner_container .prev,
.banner_container .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.banner_container .prev:hover,
.banner_container .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.banner_container .prev {
    left: 20px;
}

.banner_container .next {
    right: 20px;
}

.about_container {
    position: relative;
    background-image: url('../image/about_bg.png');
    background-position: top right;
    overflow: hidden;
    background-repeat: no-repeat;
}

/* 轮播容器 */
.banner_container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* 黑色半透明底部图层 —— 整体居中定位 */
.banner-tab-layer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 84%;
    width: 100%;
    /*min-width: 60%;*/
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    border-radius: 10px 10px 0 0;
    z-index: 9;
}

/* tab 内部布局容器 */
.banner-tab-layer .tab-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0;
}

/* tab 样式 */
.banner-tab-layer .tab_list {
    position: relative;
    padding: 0 22px;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    flex: 1;
}

/* 分隔线：完美居中在两个tab之间 */
.banner-tab-layer .tab_list:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    opacity: .3;
    background: #fff;
}

/* 点击高亮样式 */
.banner-tab-layer .tab_list.active {
    color: #009933;
    font-weight: 500;
}

/* 悬停效果 */
.banner-tab-layer .tab_list:hover {
    color: #009933;
}

.ys-ban-pc,
.ys-ban-pc {
    display: block;
}

.ys-ban-ph,
.ys-ban-ph {
    display: none;
}

.about-main-box{
    padding: 5rem 0;
}
/* 顶部容器：标题+图片 + 介绍文字 */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    /*align-items: center;*/
    margin-bottom: 60px;
}

/* 左侧标题+图片区域 */
.about-main .left-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-main .nasdaq-tag {
    color: #009933;
    font-size: 22px;
    font-weight: 600;
}

.about-main .main-title {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    text-align: left;
    padding: 20px 0;
}

.about-main .image-wrapper {
    position: relative;
    width: 100%;
}

.about-main .circle-image {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
}

.about-main .green-dot {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #009933;
    border-radius: 50%;
}

/* 右侧介绍文字区域 */
.about-main .right-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 16px;
    color: #333333;
}

.about-main .right-section p{
    line-height:1.6;
}

/* 底部数据模块容器 */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-container .stat-card {
    background-color: #f5f5f5;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stats-container .stat-icon {
    width: 50px;
    height: 50px;
    fill: #009933;
    flex-shrink: 0;
}

.stats-container .stat-content {
    display: flex;
    flex-direction: column;
}

/* 数字容器：相对定位，给 + 号做基准 */
.stats-container .stat-number {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: #009933;
    line-height: 1.2;
    padding-right: 12px;
    /* 给 + 号留出空间 */
}

/* + 号：固定在右上角 */
.stats-container .stat-number .plus {
    position: absolute;
    top: 4px;
    font-size: 16px;
    line-height: 1;
}

.stats-container .stat-label {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

/* 动画触发前的初始状态 */
.stats-container .stat-number[data-target] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stats-container .stat-number.animate {
    opacity: 1;
    transform: translateY(0);
}

/* about us end */

/* Group Structure start */
/* 头部标题 */
.Group_Structure_section .header-section {
    text-align: center;
    margin-bottom: 2.5rem;
}

.Group_Structure_section .header-section h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.Group_Structure_section .header-section p {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: #555;
    line-height: 1.5;
}

/* ========== 核心：绝对等高布局 ========== */
.Group_Structure_section .content-container {
    display: grid;
    grid-template-columns: 38% 1fr;
    /*max-width: 1400px;*/
    margin: 0 auto;
    padding: 0 20px;
    height: 593px;
}

/* 左侧 Tab 栏：自动继承右侧高度 */
.Group_Structure_section .tab-list {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.Group_Structure_section .tab-item {
    flex: 1;
    /* 平均分配高度 */
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: #000;
    background: #f5f5f5;
    border: none;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    justify-content: center;
}

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

.Group_Structure_section .tab-item.active {
    background: #009933;
    color: #fff;
}

.Group_Structure_section .tab-item:hover:not(.active) {
    background: #e8e8e8;
}

/* 右侧图片区域：高度由图片决定 */
.Group_Structure_section .tab-content {
    position: relative;
    width: 100%;
}

.Group_Structure_section .tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.Group_Structure_section .tab-pane.active {
    opacity: 1;
    visibility: visible;
}

.Group_Structure_section .tab-pane img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}
/* Group Structure end */

/* Core Values start */
/* 容器样式 */
.CoreValues-container{
    padding: 4rem 8rem;
}
.CoreValues-container .values-container {
    margin: 0 auto;
    text-align: center;
}

/* 标题区域 */

.CoreValues-container .section-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.4;
}

/* 卡片网格布局 */
.CoreValues-container .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
}

/* 卡片基础样式 */
.CoreValues-container .value-card {
    position: relative;
    height: 329px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

/* 卡片默认状态：背景图+图标+标题 */
.CoreValues-container .card-default {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.CoreValues-container .card-icon {
    /*width: 80px;*/
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
}

.CoreValues-container .card-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.CoreValues-container .card-icon::after {
    /*content: '';*/
    /*position: absolute;*/
    /*bottom: 8px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    /*width: 10px;*/
    /*height: 10px;*/
    /*background-color: #00c853;*/
    /*border-radius: 50%;*/
}

.CoreValues-container .card-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* 卡片悬停状态：绿色蒙版+详细文案 */
.CoreValues-container .card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #009a44;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.CoreValues-container .value-card:hover .card-hover,
.CoreValues-container .value-card:active .card-hover {
    opacity: 1;
    visibility: visible;
}

.CoreValues-container .value-card:hover .card-default,
.CoreValues-container .value-card:active .card-default {
    opacity: 0;
}

.CoreValues-container .hover-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: left;
}

.CoreValues-container .hover-desc {
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: left;
    opacity: 0.95;
}

/* 发展历程主容器 */
.history-container {
    position: relative;
    width: 100%;
    padding: 2rem 8% 3rem;
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 100px;
    background: #fff;
}

/* ======================
   置顶独立标题区域
====================== */
.top-title-section {
    width: 100%;
    text-align: left;
    margin-bottom: 3rem;
}

.history-container .subtitle {
    color: #009933;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.history-container .main-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    padding: 0;
    margin: 0;
    text-align: left;
}

/* ======================
   主体布局：左图 + 右卡片
====================== */
.history-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
    width: 90%;
    min-height: 60vh;
    background: #f9f9f9;
}

/* 左侧图片 - 缩小尺寸 + 居左 */
.history-container .bg-image {
    padding: 20px;
    position: relative;
    z-index: 1;
    /*width: 38%;*/
    /*height: 420px;*/
    overflow: hidden;
    flex-shrink: 0;
}

.history-container .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
}

/* 右侧内容卡片容器 */
.content-right-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 绿色内容块 */
.history-container .content-card {
    color: rgba(240,240,240,.7);
    padding: 3rem 2.5rem;
    border-radius: 0 5rem 0 0;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    max-width: 520px;
    width: 100%;
}

.history-container .year-display {
    /*position: absolute;*/
    bottom: -1rem;
    left: 2rem;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    z-index: 1;
    /*user-select: none;*/
    /*pointer-events: none;*/
    
    color: rgba(240, 240, 240, .7);
    font-size: 8.3881vw;
}

.history-container .content-text {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    max-width: 90%;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    color: #333;
}
.history-container .history-description{
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}
/* ======================
   右侧时间轴：位置不变
====================== */
.history-container .timeline-right {
    position: absolute;
    top: 14%;
    right: 6%;
    z-index: 3;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.history-container .timeline-line {
    width: 1px;
    height: 100%;
    /* 改为虚线 + 柔和渐变颜色 */
    background: linear-gradient(to bottom, #cbd5e0, #a0aec0);
    position: relative;
    /* 向下移动 10px */
    top: 10px;
    /* 设为虚线样式 */
    border-right: 1px dashed #a0aec0;
    background: none;
}

.history-container .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    /*background-color: rgba(203,213,224,1);*/
    /*border: 2.5px solid #009933;*/
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 5;
    /*box-shadow: 0 2px 6px rgba(0,0,0,0.1);*/
}

/* 呼吸灯效果 */
.history-container .timeline-dot.active {
    background-color: #009933;
    border-color: #ffffff;
    animation: doubleBreath 1s infinite alternate ease-in-out;
}

@keyframes doubleBreath {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 158, 79, 0.6), 0 0 0 0 rgba(46, 158, 79, 0.4);
    }
    100% {
        box-shadow: 0 0 0 6px rgba(46, 158, 79, 0.5), 0 0 0 12px rgba(46, 158, 79, 0.3);
    }
}

.history-container .timeline-year {
    position: absolute;
    right: 32px;
    transform: translateY(-20%);
    font-size: 1.3rem;
    color: #999999;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    padding: 0 6px;
    /*backdrop-filter: blur(2px);*/
}

.history-container .timeline-year.active {
    color: #009933;
    font-size: 1.65rem;
    font-weight: 800;
}

.history-container .timeline-year:hover {
    color: #009933;
    /*transform: translateY(-50%) scale(1.02);*/
}

/* 上下箭头按钮 */
.history-container .timeline-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background-color: rgba(0, 0, 0, 0.45);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
    z-index: 6;
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
}

.history-container .timeline-arrow.up {
    top: -55px;
}

.history-container .timeline-arrow.down {
    bottom: -70px;
}

.history-container .timeline-arrow:hover {
    background-color: #009933;
    transform: translateX(-50%) scale(1.05);
}

/* 滑块装饰 */
.history-container .timeline-slider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    /*background: #009933;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: top 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    /*box-shadow: 0 0 0 2px white, 0 0 0 4px rgba(0,153,51,0.3);*/
    opacity: 0.9;
}

.history-container .slider-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

/* 动画类 */
.history-container .fade-out {
    opacity: 0;
    transform: translateY(8px);
}

.history-container .fade-in {
    opacity: 1;
    transform: translateY(0);
}
/* history-container end */

/* System Integration start */
/* 容器样式 */
.SystemIntegration_container {
    padding: 4rem 60px;
    margin: 0 auto;
}

/* 标题区域 */
.SystemIntegration_container .section-header {
    margin-bottom: 40px;
}

.SystemIntegration_container .section-subtitle {
    color: #009933;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.SystemIntegration_container .section-title {
   text-align: left;
   padding-left: 0;
}

/* 卡片网格布局 */
.SystemIntegration_container .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 卡片样式 */
.SystemIntegration_container .solution-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.SystemIntegration_container .card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.SystemIntegration_container .card-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    height: 100px; /* 改为自动高度 */
    max-height: calc(1.4em * 2); /* 两行高度：行高 × 行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示两行 */
    -webkit-box-orient: vertical;
    word-break: break-word; /* 防止长单词溢出 */
}

/* 按钮样式 */
.SystemIntegration_container .read-more-btn {
    width: fit-content;
    padding: 10px 30px;
    border: 1px solid #1a1a1a;
    border-radius: 25px;
    background-color: transparent;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.SystemIntegration_container .read-more-btn:hover {
    background-color: #009933;
    border-color: #009933;
    color: #ffffff;
}

.SystemIntegration_container .read-more-btn::after {
    content: "→";
    font-size: 1rem;
}
/* System Integration end */

/* System Integration start */
/* 容器样式 */
.SystemIntegration_container {
    padding: 4rem 60px;
    margin: 0 auto;
}

/* 标题区域 */
.SystemIntegration_container .section-header {
    margin-bottom: 40px;
}

.SystemIntegration_container .section-subtitle {
    color: #009933;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.SystemIntegration_container .section-title {
   text-align: left;
   padding-left: 0;
}

/* 卡片网格布局 */
.SystemIntegration_container .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 卡片样式 - 强制隐藏溢出，图片绝不遮挡外部内容 */
.SystemIntegration_container .solution-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    overflow: hidden; /* 关键：彻底裁切放大图片，不遮挡任何内容 */
    position: relative;
}

/* 图片：中心缩放 + 平滑动画 + 不溢出 */
.SystemIntegration_container .card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform-origin: center center; /* 从正中心放大 */
}

/* 悬停卡片：图片放大0.5倍，只在自身卡片内显示 */
.SystemIntegration_container .solution-card:hover .card-image {
    transform: scale(1.1);
}

.SystemIntegration_container .card-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    height: 100px;
    max-height: calc(1.4em * 2);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

/* 按钮默认样式 */
.SystemIntegration_container .read-more-btn {
    width: fit-content;
    padding: 10px 30px;
    border: 1px solid #1a1a1a;
    border-radius: 25px;
    background-color: transparent;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 悬停卡片 → 按钮变为 #009933 */
.SystemIntegration_container .solution-card:hover .read-more-btn {
    background-color: #009933;
    border-color: #009933;
    color: #fff;
}

.SystemIntegration_container .read-more-btn::after {
    content: "→";
    font-size: 1rem;
}
/* System Integration end */

/* solution_container start */
/* 卡片容器通用样式 */
.solution_container{
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}
.solution_container .solution-card {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 400px;
    background-color: #fff;
    margin-bottom: 20px;
    overflow: hidden; /* 关键：图片放大后绝不遮挡其他内容 */
    position: relative;
}

/* 图片：中心缩放 + 平滑动画 */
.solution_container .card-image {
    transition: transform 0.5s ease;
    transform-origin: center center;
}

/* 悬停卡片：图片放大0.5倍 */
.solution_container .solution-card:hover .card-image {
    /*transform: scale(1.1);*/
}

/* 奇数行：左图右文 */
.solution_container .solution-card:nth-child(odd) .card-image {
    order: 1;
    width: 55%;
    height: 100%;
    object-fit: cover;
}

.solution_container .solution-card:nth-child(odd) .card-content {
    order: 2;
    width: 45%;
    padding: 40px 60px;
}

/* 偶数行：左文右图 */
.solution_container .solution-card:nth-child(even) .card-image {
    order: 2;
    width: 55%;
    height: 100%;
    object-fit: cover;
}

.solution_container .solution-card:nth-child(even) .card-content {
    order: 1;
    width: 45%;
    padding: 40px 60px;
}

/* 内容区域样式 */
.solution_container .solution-tag {
    color: #009933;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.solution_container .solution-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: left;
}

.solution_container .li_list_sty li {
    list-style: none;
    /* 给li添加左侧间距，避免符号贴边 */
    padding-left: 15px;
    /* 相对定位，用于定位自定义符号 */
    position: relative;
    /* 行间距优化 */
    line-height: 1.6;
    margin-bottom: 8px;
}

/* 核心：自定义项目符号 */
.solution_container .li_list_sty li::before {
    content: ".";
    color: #333;
    position: absolute;
    left: 0;
    font-weight: 600;
    height: 10px;
    line-height: 20px;
}

/* 按钮默认样式 */
.solution_container .btn-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

/* 悬停卡片 → 按钮变为 #009933 */
.solution_container .solution-card:hover .btn-readmore {
    background-color: #009933;
    color: #ffffff;
    border-color: #009933;
}

.solution_container .btn-readmore::after {
    content: "→";
    font-size: 1rem;
    padding-left: 10px;
}
/* solution_container end */

/* News_list_container start */
/* 容器基础适配 */
.News_list_container {
    padding: 4rem 16rem;
    margin: 0 auto;
    
}

/* 顶部大图卡片样式 */
.News_list_container .top-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    width: 100%;
    flex-wrap: wrap;
}

.News_list_container .top-card:hover {
    background-color: #009933;
    color: #ffffff;
}

.News_list_container .top-card .card-image {
    width: 50%;
    overflow: hidden;
    min-height: 200px;
    height: 400px;
}

.News_list_container .top-card .card-image img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: fill;
    display: block;
}

.News_list_container .top-card .card-content {
    width: 43%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 280px;
    margin-left: 2%;
}

.News_list_container .top-card .date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.News_list_container .top-card:hover .date {
    color: #ffffff;
}

.News_list_container .top-card .title {
    font-size: clamp(18px, 3vw, 18px);
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-align: left;
}

.News_list_container .top-card:hover .title {
    color: #ffffff;
}

.News_list_container .top-card .desc {
    font-size: clamp(14px, 1.5vw, 15px);
    color: #444444;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.News_list_container .top-card:hover .desc {
    color: #ffffff;
}

.News_list_container .top-card .more-btn {
    width: fit-content;
    padding: 8px 20px;
    background-color: #009933;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.News_list_container .top-card:hover .more-btn {
    background-color: #ffffff;
    color: #009933;
}

.News_list_container .more-btn .arrow {
    transition: transform 0.3s ease;
}

.News_list_container .top-card:hover .more-btn .arrow {
    transform: translateX(4px);
}

/* 下方普通列表卡片样式 */
.News_list_container .list-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}

.News_list_container .list-card:hover {
    background-color: #009933;
    color: #ffffff;
}

/* 日期区域 + 右侧竖线 */
.News_list_container .list-card .date-section {
    display: flex;
    align-items: center;
    margin-right: 15px;
    position: relative;
    padding: 20px;
    
}

.News_list_container .list-card .date-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.News_list_container .list-card:hover .date-section::after {
    background-color: #ffffff;
}

.News_list_container .date-section .date-day {
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 700;
    line-height: 1;
    color: #009933;
    transition: color 0.3s ease;
}

.News_list_container .list-card:hover .date-day {
    color: #ffffff;
}

.News_list_container .date-section .date-month {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    color: #009933;
    margin-top: 4px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.News_list_container .list-card:hover .date-month {
    color: #ffffff;
}

/* 内容区域 */
.News_list_container .list-card .content-section {
    flex: 1;
    min-width: 200px;
    padding-right: 10px;
}

.News_list_container .content-section .card-title {
    font-size: clamp(16px, 3vw, 16px);
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.News_list_container .list-card:hover .card-title {
    color: #ffffff;
}

.News_list_container .content-section .card-desc {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #666666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.News_list_container .list-card:hover .card-desc {
    color: #ffffff;
}

/* 右侧箭头 */
.News_list_container .list-card .arrow-icon {
    transition: all 0.3s ease;
    margin-left: auto;
    color: #666666;
}

.News_list_container .list-card:hover .arrow-icon {
    border-color: #ffffff;
    transform: translateX(4px);
    color: #ffffff;
}
/* News_list_container end */

/* contact us start */
/* 联系我们 */
.ContactUs_container{
    padding: 4rem 0;
}
.ContactUs_container h1 {
    color: #009933;
    text-align: center;
    margin-bottom: 24px;
}
.ContactUs_banner_container {
    position: relative;
    overflow: hidden;
    /*height: calc(100vh - 0px);*/
    /* 满屏高度*/
    /*min-height: 600px;*/
    /* 最小高度保证内容可见 */
    /*max-height: 680px;*/
    /* 极大屏幕限制 */
    width: 100%;
    /*height: 100vh;*/
    /*margin-top: 70px;*/
}

.ContactUs_banner_container .slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.ContactUs_banner_container .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ContactUs_banner_container .slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.ContactUs_container_p{
    position: absolute;
    top: 40%;
    left: 10%;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
}
.ContactUs_container .user_form{
    margin-top: 80px;
}
.ContactUs_container .phone-hint {
    color: #666;
    display: block;
    margin-top: 4px;
    font-size: 12px;
}
.ContactUs_container .intro-text {
    color: #555;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}

.ContactUs_container .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 20px;
}

.ContactUs_container .form-group {
    flex: 1;
    min-width: 300px;
}

.ContactUs_container .form-group label {
    display: block;
    color: #222;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.ContactUs_container .form-group label .required {
    color: #ff0000;
}

.ContactUs_container .form-group input[type="text"],
.ContactUs_container .form-group input[type="email"],
.ContactUs_container .form-group input[type="tel"],
.ContactUs_container .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
}

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

.ContactUs_container .phone-input {
    display: flex;
    align-items: center;
}

.ContactUs_container .phone-prefix {
    padding:12.5px 10px;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    color: #555;
}

.ContactUs_container .phone-input input {
    /*border-radius: 0 4px 4px 0 !important;*/
}

.ContactUs_container .code-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ContactUs_container .code-group input {
    flex: 1;
}

.ContactUs_container .code-placeholder {
    width: 100px;
    height: 42px;
    background-color: #dddddd;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.ContactUs_container .submit-btn {
    display: block;
    width: 180px;
    padding: 14px;
    background-color: #009933;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 32px auto 40px;
    transition: background-color 0.2s;
}

.ContactUs_container .submit-btn:hover {
    background-color: #333333;
}

.ContactUs_container .contact-footer {
    text-align: center;
    color: #222244;
    font-size: 16px;
}

.ContactUs_container .contact-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.ContactUs_container .contact-footer a {
    color: #222244;
    text-decoration: none;
}

.ContactUs_container .contact-footer a:hover {
    text-decoration: underline;
}

.ContactUs_container .contact-footer .icon {
    margin-right: 8px;
    /*margin-top: 8px;*/
}
.ContactUs_container .contact-footer .icon img{
    width: 70%;
}

/* 电话地址外层容器 */
.tel_container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 6rem;
}

/* 卡片样式 */
.tel_container .card {
    background: #f5f5f5; /* 默认灰色背景 */
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 2px;
    cursor: pointer;
    height: 150px;
}

/* 鼠标悬浮效果 */
.tel_container .card:hover {
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
}

/* 左侧：标题 + 简介 */
.tel_container .card-left {
    width: 40%;
}

.tel_container .card-left h3 {
    font-size: 24px;
    color: #00a851; /* 原图绿色 */
    margin-bottom: 6px;
    font-weight: bold;
    text-transform: uppercase;
}

.tel_container .card-left p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* 右侧：电话 + 地址（强制左对齐） */
.tel_container .card-right {
    width: 60%;
    text-align: left !important; /* 强制左对齐 */
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tel_container .card-right .phone,
.tel_container .card-right .address {
    color: #333;
    line-height: 1.5;
    white-space: nowrap; /* 不换行，保持排版整洁 */
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tel_container .card-right .phone img,
.tel_container .card-right .address img {
   vertical-align: middle;
   margin-right: 20px;
}
/* contact us end */

/* ESG start */
.esg_container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center; /* 文字整体居中 */
    overflow: hidden;
    margin: 5rem 0;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* 左侧背景图：自动缩放 + 靠左 */
.esg_bg_left {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 40%; /* 自动根据屏幕宽度缩放 */
    max-width: 500px; /* 最大尺寸，避免太大 */
    min-width: 200px; /* 最小尺寸，避免太小 */
    height: auto; /* 等比例，不变形 */
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

/* 右侧背景图：自动缩放 + 靠右 */
.esg_bg_right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40%; /* 自动根据屏幕宽度缩放 */
    max-width: 500px; /* 最大尺寸 */
    min-width: 200px; /* 最小尺寸 */
    height: auto; /* 等比例，不变形 */
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

/* 中间文字内容：居中 */
.esg_container .content {
    width: 100%;
    max-width: 650px;
    padding: 30px;
    z-index: 2;
    text-align: left;
    position: absolute;
    left: 50%;
}

/* 标题 */
.esg_container .title {
    font-size: clamp(24px, 5vw, 42px);
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: left;
    padding: 0;
}

.esg_container .title-green {
    color: #009933;
}

/* 描述 */
.esg_container .desc {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: #333;
    margin: 20px 0;
    text-align: left;
}

/* 主容器：高度自适应，不限制、不出现滚动条 */
.Building_container {
    width: 100%;
    max-width: 100vw;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* 头部标题 */
.Building_container .header-section {
    text-align: left;
    padding: 40px 20px;
    box-sizing: border-box;
}

.Building_container .header-title01 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: #333;
    padding: 0;
    margin: 0;
}
.Building_container .header-title01 span {
    color: #009933;
}
.Building_container .header-title02 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: #009933;
    margin: 0 0 10px 0;
    padding: 0;
}

/* 卡片外层：全屏渐变背景 + 高度自适应，不截断 */
.Building_container .card-wrapper {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 80px 20px;
    box-sizing: border-box;
    overflow: visible;
}

/* 卡片内层：自动高度 */
.Building_container .card-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    height: auto;
    min-height: auto;
    box-sizing: border-box;
}

/* 背景渐变 */
.Building_container .card-wrapper.first {
    background: linear-gradient(to right, #f5f5f5, #ffffff);
}
.Building_container .card-wrapper.gray {
    background: linear-gradient(to right, #ffffff, #f5f5f5);
}

/* 卡片内容 */
.Building_container .card-content {
    flex: 1;
    min-width: 280px;
    height: auto;
}

.Building_container .card-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    text-align: left;
}

/* 图标 */
.Building_container .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #009933;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.Building_container .icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.Building_container .tag-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.Building_container .card-tag {
    color: #009933;
    font-weight: 500;
    line-height: 1.2;
    font-size: clamp(14px, 2vw, 22px);
    margin-left: 10px;
}

.Building_container .card-desc {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #555;
    line-height: 1.7;
}

/* 图片区域 */
.Building_container .card-image {
    /*flex: 1;*/
    /*min-width: 280px;*/
    overflow: hidden;
    transition: transform 0.3s ease;
}
.Building_container .card-image img {
    /*width: 100%;*/
    /*height: auto;*/
    display: block;
    object-fit: cover;
}
.Building_container .card-image:hover {
    transform: scale(1.02);
}
/* ESG end*/

/* Global start */
.Global_container {
    padding: 5rem 0;
    max-width: 1400px;
    margin: 5rem auto;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 400px;
}
.Global_container .global_bg_left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-80%);
    /*width: 180px;*/
    /*height: 180px;*/
    background-image: url('../image/global_bg_left.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    width: 287px;
    height: 254px;
}
.Global_container .global_bg_right {
    position: absolute;
    right: 40px;
    /*width: 120px;*/
    /*height: 120px;*/
    background-image: url('../image/global_bg_right.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    bottom: 0;
    width: 388px;
    height: 99px;
}
.Global_container .Global_container_left {
    padding: 4rem;
    flex: 1;
    margin-left: 120px;
    margin-right: 120px;
    padding: 20px;
    position: relative;
    z-index: 2;
}
.Global_container .Global_container_left h1 {
    text-align: left;
    padding: 20px;
    font-size: 46px;
    color: #009933;
}

.Global_container p {
    font-size: 16px;
    color: #212121;
    padding: 20px;
    text-align: left;
    line-height: 1.8;
}
/* Global end */

/* Global_zgs_wrapper start */
/* 主容器 */
.Global_zgs_wrapper {
    /*max-width: 1400px;*/
    /*margin: 40px auto;*/
    /*padding: 0 20px;*/
}

/* 地图盒子：宽度100% 相对定位 */
.Global_zgs_wrapper .map-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

/* 地图容器：100%铺满 */
.Global_zgs_wrapper .map-container {
    width: 100%;
    height: 100%;
}

/* 地图IFrame */
.Global_zgs_wrapper #map {
    width: 100%;
    height: 100%;
    border: 0;
}

/* 悬浮信息面板：绿色半透明 + 右侧悬浮 */
.Global_zgs_wrapper .info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    /*width: 320px;*/
    background: rgba(1, 153, 52, 0.85);
    backdrop-filter: blur(5px);
    padding: 25px;
    color: #fff;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题样式 */
.Global_zgs_wrapper .info h1 {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    padding: 0;
}

/* 信息行样式 */
.Global_zgs_wrapper .info-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ffffff;
}

.Global_zgs_wrapper .info-row img {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* 图标变白色 */
}

.Global_zgs_wrapper .info-row a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== 响应式适配 ========== */
/* 平板端 */
@media (max-width: 992px) {
    .Global_zgs_wrapper .info {
        width: 280px;
        padding: 20px;
    }
    .Global_zgs_wrapper .info h1 {
        font-size: 24px;
    }
}

/* 手机端 */
@media (max-width: 768px) {
    .Global_zgs_wrapper .map-box {
        height: auto;
        min-height: 600px;
    }
    /* 手机端信息面板全屏显示 */
    .Global_zgs_wrapper .info {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    .Global_zgs_wrapper .map-container {
        height: 350px;
    }
}

/* ========== 地图信息窗口样式 ========== */
.Global_zgs_wrapper .myinfowindow {
    width: 240px;
    min-height: 50px;
    padding: 10px;
}

.Global_zgs_wrapper .myinfowindow h5 {
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    font-size: 14px;
    font-weight: bold;
    width: 220px;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
    margin: 0 0 5px 0;
}

.Global_zgs_wrapper .myinfowindow div {
    margin-top: 5px;
    min-height: 40px;
    line-height: 20px;
    font-size: 13px;
    color: #6f6f6f;
}

/* Google Maps信息窗口样式 */
.Global_zgs_wrapper .gm-style .gm-style-iw-c {
    padding: 10px;
    max-width: 300px !important;
}

.Global_zgs_wrapper .gm-style .gm-style-iw-d {
    overflow: auto !important;
}
/* Global_zgs_wrapper end */

/* 主容器卡片 */
.Investor_top_container {
    
    width: 100%;
    max-width: 1600px;
    margin: 4rem auto;
    background-color: #f7f8fa;
    border-radius: 16px;
    overflow: hidden;
}

/* 顶部渐变标题栏 */
.Investor_top_container .header-bar {
    height: 120px;
    /* 还原从深绿到透明的水平渐变 */
    background: linear-gradient(90deg, #4CAF50 0%, rgba(76, 175, 80, 0.8) 50%, rgba(76, 175, 80, 0) 100%);
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

/* 标题文字样式 */
.Investor_top_container .header-text {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* 下方空白内容区 */
.Investor_top_container .content-area {
    height: 400px;
    background-color: #f6f7f9;
}

/* Investor_top_container end */

/* Investor_card_container start */
/* 容器样式，控制整体宽度 */
.Investor_card_container {
    /*max-width: 1600px;*/
    /*margin: 0 auto;*/
    padding: 4rem 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 通用卡片样式 */
.Investor_card_container .card {
    display: flex;
    align-items: center;
    gap: 100px;
    width: 100%;
}

/* 卡片内容区（文字+按钮+背景装饰） */
.Investor_card_container .card-content {
    flex: 1;
    position: relative;
    padding: 40px 0;
}

/* 背景装饰元素 - 统一基础样式 */
.Investor_card_container .bg-decoration {
    position: absolute;
    top: 20px;
    width: 300px;
    height: 80px;
    z-index: 0;
}

/* 奇数卡片：1、3、5... 使用相同背景图 + 居左 */
.Investor_card_container .card:nth-child(odd) .bg-decoration {
    top: -130px;
    left: 10%;
    right: auto;
    /* 奇数卡片背景图（可替换为你的图片地址） */
    background-image: url('../image/Investor_bg_left.png');
    background-size: contain;
    /*background-position: center;*/
    background-repeat: no-repeat;
    width: 394px;
    height: 152px;
}

/* 新增：奇数卡片文字区域整体右移，靠近图片 */
.Investor_card_container .card:nth-child(odd) .content-text {
    margin-left: auto; /* 核心：让文字区域靠右对齐，靠近图片 */
    max-width: 520px; /* 保持原有宽度不变 */
}

/* 偶数卡片：2、4、6... 使用相同背景图 + 居右 */
.Investor_card_container .card:nth-child(even) .bg-decoration {
    top: -130px;
    left: auto;
    right: 10%;
    /* 偶数卡片背景图（可替换为你的图片地址） */
    background-image: url('../image/Investor_bg_right.png');
    background-size: contain;
    /*background-position: center;*/
    background-repeat: no-repeat;
    width: 394px;
    height: 152px;
}
/* ====================================================== */

/* 文字内容容器，确保在装饰层上方 */
.Investor_card_container .content-text {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.Investor_card_container .content-text h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: #222222;
    margin-bottom: 16px;
    text-align: left;
}

.Investor_card_container .content-text p {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #444444;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* 财务报告列表样式 */
.Investor_card_container .report-list {
    list-style: none;
    margin-bottom: 50px;
}

.Investor_card_container .report-list li {
    font-size: 0.95rem;
    color: #444444;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.Investor_card_container .report-list li::before {
    content: "→";
    color: #009933;
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* 绿色按钮样式 */
.Investor_card_container .btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.Investor_card_container .btn-explore:hover {
    background-color: #009933;
    color: #ffffff;
    border-color: #009933;
}

.Investor_card_container .btn-explore::after {
    content: "→";
    font-size: 1rem;
    padding-left: 10px;
}

/* 图片容器样式 */
.Investor_card_container .card-image {
    flex: 1;
    overflow: hidden;
}

.Investor_card_container .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Investor_card_container end */

/* 移动端自适应 */
@media (max-width: 800px) {
    .Global_zgs_wrapper  {
        flex-direction: column;
        align-items: stretch;
    }

    .Global_zgs_wrapper .map-box {
        height: 400px;
    }
}



/* Global_zgs_wrapper end */

/* 响应式适配 */
/* 手机端适配 */
@media (max-width: 1366px) {
    .esg_container .content {
        background: rgba(255,255,255,0.85); /* 手机端加半透背景，保证文字可读 */
        border-radius: 20px;
        margin-right: 80px;
    }
}
@media (max-width: 1200px) {
    .history-container .bg-image {
        width: 45%;
        height: 380px;
    }
}
@media (max-width: 992px) {
    .history-body {
        gap: 2rem;
    }
    .history-container .bg-image {
        width: 48%;
        height: 360px;
    }
    .News_list_container{
        padding: 2rem 1rem;
    }
    .about-main .top-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-main .image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .SystemIntegration_container{
        padding: 1rem;
    }
    .SystemIntegration_container .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .SystemIntegration_container .section-title {
        font-size: 2.5rem;
    }
    .News_list_container .top-card {
        flex-direction: column;
    }
    .News_list_container .top-card .card-image,
    .News_list_container .top-card .card-content {
        width: 100%;
        height: auto;
        margin-left: 0;
    }
    
    .Investor_card_container .card {
        flex-direction: column;
        gap: 30px;
    }

    /* 偶数卡片在移动端反转顺序，让图片在上 */
    .Investor_card_container .card:nth-child(even) {
        flex-direction: column-reverse;
    }

    .Investor_card_container .card-content, .card-image {
        width: 100%;
    }

    .Investor_card_container .content-text {
        max-width: 100%;
    }

    .Investor_card_container .bg-decoration {
        width: 250px;
    }
    
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .ys-ban-pc,
    .ys-ban-pc {
        display: none;
    }

    .ys-ban-ph,
    .ys-ban-ph {
        display: block;
    }
    .about-main  {
       display: block;
    }
    
    .Group_Structure_section .content-container {
        grid-template-columns: 1fr;
        padding: 0;
        height: 400px;
    }

    .Group_Structure_section .tab-list {
        flex-direction: row;
        overflow-x: auto;
    }

    .Group_Structure_section .tab-item {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px;
        font-size: 1rem;
        border-right: 1px solid #fff;
        border-bottom: none;
    }

    .Group_Structure_section .tab-content {
        min-height: 300px;
    }
    
    .CoreValues-container .section-title {
        font-size: 2.5rem;
    }

    .CoreValues-container .section-subtitle {
        font-size: 1.3rem;
        margin-bottom: ;
    }

    .CoreValues-container .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 50px;
    }

    .CoreValues-container .value-card {
        height: 320px;
    }

    .CoreValues-container .card-title {
        font-size: 2rem;
    }

    .CoreValues-container .hover-title {
        font-size: 1.8rem;
    }

    .CoreValues-container .hover-desc {
        font-size: 1.1rem;
    }
    
    .SystemIntegration_container .cards-grid {
        grid-template-columns: 1fr;
    }
    .SystemIntegration_container .section-title {
        font-size: 2rem;
    }
    .SystemIntegration_container .section-subtitle {
        font-size: 1.2rem;
    }
    .SystemIntegration_container .card-title {
        font-size: 1.2rem;
    }
    
    .solution_container .solution-card {
        flex-direction: column;
        min-height: auto;
    }

    /* 所有行在移动端统一为上图下文 */
    .solution_container .solution-card:nth-child(odd) .card-image,
    .solution-card:nth-child(even) .card-image {
        order: 1;
        width: 100% !important;
        height: 300px !important;
    }

    .solution-card:nth-child(odd) .card-content,
    .solution-card:nth-child(even) .card-content {
        order: 2 !important;
        width: 100% !important;
        padding: 0 !important;
        /*text-align: center;*/
    }

    .solution-title {
        font-size: 24px;
    }

    .solution_container{
        padding: 20px;
    }
    .solution_container .solution-tag {
        font-size: 16px;
        margin-top: 20px;
        text-align: left;
    }
    .solution_container .solution-title{
        font-size: 20px;
    }
    
    .News_list_container .list-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    .News_list_container .top-card .card-content {
        padding: 20px 15px;
        margin-left: 0;
    }
    .News_list_container .list-card {
        padding: 16px 15px;
    }
    .News_list_container .list-card .date-section{
        padding: 0;
    }
    
    .ContactUs_container .form-row{margin-bottom:5px;gap:unset;}
    .ContactUs_container{padding:0; margin-top:0px;}
    .ContactUs_container .contact-footer{font-size:12px;}
    .ContactUs_container .contact-footer .icon{margin-right:0;}
    
    .tel_container{
        padding: 20px;
    }
    .tel_container .card {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
        height: auto;
    }

    .tel_container .card-left,
    .tel_container .card-right {
        width: 100%;
    }

    .tel_container .card-right .phone,
    .tel_container .card-right .address {
        white-space: normal; /* 小屏幕自动换行 */
        font-size: 14px;
    }

    .tel_container .card-left h3{
        font-size: 18px;
    }
    .tel_container .card-left p{
        font-size: 14px;
    }
    .tel_container .card-right .phone img, .tel_container .card-right .address img{
        height: 20px;
    }
    .esg_container {
        justify-content: center; /* 手机端内容居中 */
        text-align: center;
        padding: 40px 20px;
    }
    .esg_container .content {
        background: rgba(255,255,255,0.85); /* 手机端加半透背景，保证文字可读 */
        border-radius: 20px;
        margin-right: 0;
    }
    
    .Building_container .card-inner {
        flex-direction: column;
        gap: 24px;
        padding: 30px 20px;
    }
    .Building_container .card-wrapper {
        padding: 0;
    }
    
    .Building_container .card-content, .card-image {
        min-width: 100%;
    }
    
    .Building_container .header-title {
        font-size: 24px;
    }
    
    .Building_container .card-title {
        font-size: 24px;
    }
    
    .Global_container .Global_container_left{
        margin-left: 0;
        margin-right: 0;
    }
    
    .Investor_top_container .header-text {
        font-size: 1.8rem;
    }
    .Investor_top_container .header-bar {
        height: 100px;
        padding: 0 1.5rem;
    }
    .Investor_top_container .content-area {
        height: 300px;
    }
    
    .history-container {
        padding: 1.5rem 5% 2rem;
    }

    /* 标题适配 */
    .top-title-section {
        margin-bottom: 2rem;
    }
    .history-container .main-title {
        font-size: 2.4rem;
    }
    .history-container .subtitle {
        font-size: 1rem;
    }

    /* 主体改为垂直布局 */
    .history-body {
        flex-direction: column;
        gap: 1.8rem;
        min-height: auto;
    }

    /* 移动端图片：全屏宽度 + 更小高度 */
    .history-container .bg-image {
        width: 100%;
        height: 280px;
        border-radius: 16px;
    }
    .history-container .bg-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    /* 移动端卡片 */
    .history-container .content-card {
        padding: 2rem 1.5rem;
        min-height: 200px;
        border-radius: 1.2rem;
    }
    .history-container .content-text {
        font-size: 1.3rem;
        /*transform: translateY(-6px);*/
        max-width: 100%;
    }
    .history-container .year-display {
        font-size: 3.8rem;
        left: 1.2rem;
        bottom: 0.8rem;
    }

    /* 手机端时间轴 */
    .history-container .timeline-right {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        width: 100%;
        margin: 0.5rem 0 1rem;
        padding: 1rem 0 2.2rem;
    }
    .history-container .timeline-line {
        width: 100%;
        height: 4px;
        background: #d4d9e2;
        border-radius: 4px;
        position: relative;
        margin: 12px 0;
    }
    .history-container .timeline-dot {
        width: 15px;
        height: 15px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
        border-width: 2.5px;
        background-color: white;
        z-index: 8;
    }
    .history-container .timeline-dot.active {
        background-color: #009933;
        animation: doubleBreath 1s infinite alternate;
    }
    .history-container .timeline-year {
        position: absolute;
        top: 100%;
        left: 0;
        transform: translateX(-30%);
        white-space: nowrap;
        font-size: 0.85rem;
        font-weight: 600;
        color: #2c3e2f;
        backdrop-filter: blur(3px);
        padding: 0.2rem 0.55rem;
        border-radius: 24px;
        transition: all 0.2s;
        pointer-events: auto;
        cursor: pointer;
        margin-top: 8px;
        line-height: 1.3;
    }
    .history-container .timeline-year.active {
        color: #009933;
        font-size: 1rem;
        font-weight: 800;
        transform: translateX(-50%) scale(1.02);
    }

    /* 隐藏桌面端箭头与滑块 */
    .history-container .timeline-arrow,
    .history-container .timeline-slider {
        display: none;
    }
    .esg_container {
       
        margin: 0 0;
       
    }
    .esg_container .content{
        left: 0;
    }
    /* 左侧背景图 - 固定居左 */
    .esg_container .esg_bg_left {
        display: none;
    }
    
    /* 右侧背景图 - 固定居右 */
    .esg_container .esg_bg_right {
        display: none;
    }
    .Building_container .card-image img{
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-main .main-title {
        font-size: 28px;
    }

    .about-main .nasdaq-tag {
        font-size: 18px;
    }

    .about-main .right-section {
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stats-container .stat-card {
        padding: 25px 20px;
    }

    .stats-container .stat-number {
        font-size: 28px;
    }
    
    .Investor_card_container .container {
        padding: 20px 16px;
        gap: 40px;
    }

    .Investor_card_container .content-text h2 {
        font-size: 1.6rem;
    }

    .Investor_card_container .card-content {
        padding: 20px 0;
    }
    
    /* 奇数卡片：1、3、5... 使用相同背景图 + 居左 */
    .Investor_card_container .card:nth-child(odd) .bg-decoration {
        top: 0;
        left: 0;
        right: auto;
        /* 奇数卡片背景图（可替换为你的图片地址） */
        background-image: url('../image/Investor_bg_left.png');
        background-size: contain;
        /*background-position: center;*/
        background-repeat: no-repeat;
        width: 259px;
        height: 100px;
    }
    /* 偶数卡片：2、4、6... 使用相同背景图 + 居右 */
    .Investor_card_container .card:nth-child(even) .bg-decoration {
        top: 0;
        left: auto;
        right:0;
        /* 偶数卡片背景图（可替换为你的图片地址） */
        background-image: url('../image/Investor_bg_right.png');
        background-size: contain;
        /*background-position: center;*/
        background-repeat: no-repeat;
        width: 259px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .CoreValues-container .values-container {
        padding: 2rem 1rem;
    }
    
    .CoreValues-container .section-title {
        font-size: 2rem;
    }
    
    .CoreValues-container .section-subtitle {
        font-size: 1.1rem;
    }
    
    .CoreValues-container .value-card {
        height: 280px;
    }
    
    .CoreValues-container .card-title {
        font-size: 1.8rem;
    }
    
    .CoreValues-container .hover-title {
        font-size: 1.6rem;
    }
    
    .CoreValues-container .hover-desc {
        font-size: 1rem;
    }
    
    .News_list_container{
        padding: 1rem 0;
    }
    .News_list_container .list-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    .News_list_container .list-card .date-section::after {
        display: none;
    }
    .News_list_container .list-card .content-section {
        width: 100%;
        padding-right: 0;
    }
    .News_list_container .list-card .arrow-icon {
        margin-left: 0;
        align-self: flex-end;
    }
    .history-container .main-title {
        font-size: 2rem;
    }
    .history-container .content-text {
        font-size: 1.15rem;
    }
    .history-container .year-display {
        font-size: 3rem;
    }
    .history-container .timeline-year {
        font-size: 0.75rem;
        padding: 0.15rem 0.45rem;
        margin-top: 6px;
    }
    .history-container .timeline-year.active {
        font-size: 0.9rem;
    }
    .history-container .bg-image {
        height: 220px;
    }
}
/* 平板端适配：768px-1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .Building_container .card-inner {
        gap: 30px;
    }
}