body{font-family: Source Han Sans, Source Han Sans;}
  @import url('/pc/static/css/css2.css');
        
     
        .reveal { 
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .gold-gradient-text {
            background: linear-gradient(to right, #EAB983, #F3E5AB, #EAB983);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .glass-nav {
            background: rgba(255, 255, 255, 0);
            transition: all 0.4s ease;
        }
        .glass-nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }

        .map-bg {
            background-image: radial-gradient(circle at center, rgba(198, 169, 98, 0.05) 0%, transparent 70%);
        }

        .card-hover:hover {
            transform: translateY(-5px);
            border-color: #EAB983;
            box-shadow: 0 10px 30px rgba(198, 169, 98, 0.1);
        }
        
        .org-line::after {
            content: '';
            position: absolute;
            bottom: -2rem;
            left: 50%;
            width: 1px;
            height: 2rem;
            background: #EAB983;
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #F9FAFB;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #EAB983;
            border-radius: 10px;
        }

        @keyframes pulse-gold {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(2); opacity: 0; }
            100% { transform: scale(1); opacity: 0; }
        }
        .pulse-dot {
            position: relative;
            width: 8px;
            height: 8px;
            background-color: #EAB983;
            border-radius: 50%;
        }
        .pulse-dot::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #EAB983;
            border-radius: 50%;
            animation: pulse-gold 2s infinite;
        }
     /* 菜单 */

/* 导航容器 */
.header-nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}
/* 滚动后白色背景类 */
.header-nav.scrolled{
    background:#ffffff;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
}
.lang-arrow{
    width: 10px;
    height: 10px;
    position: relative;
    transition:transform 0.2s ease;
}
/* 绘制向下三角 */
.lang-arrow::after{
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor; /* 颜色跟随文字自动变化 */
}
/* hover翻转向上 */
.lang-wrap:hover .lang-arrow{
    transform: rotate(180deg);
}

.nav-wrap{
    max-width:1500px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 30px;
}
/* Logo区域 */
.nav-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
.logo-icon{
    width:52px;
    height:52px;
}
.logo-text h1{
    font-size:34px;
    font-weight:600;
    color:#fff;
    line-height:1;
}
.logo-text p{
    font-size:14px;
    color:rgba(255,255,255,0.8);
    letter-spacing:1px;
}
/* 滚动后logo文字变色 */
.header-nav.scrolled .logo-text h1{
    color:#222;
}
.header-nav.scrolled .logo-text p{
    color:#666;
}
/* 导航菜单 */
.nav-main{
    display:flex;
    align-items:center;
    gap:42px;
}
.nav-list{
    display:flex;
    align-items:center;
    gap:38px;
}
.nav-item{
    position:relative;
}
.nav-item a{
    display:block;
    font-size:18px;
    color:#ffffff;
    text-decoration:none;
    padding:6px 0;
    transition:color 0.25s;
}
.header-nav.scrolled .nav-item a{
    color:#333;
}
.nav-item.active a{
    color:#FFC889 !important;
}
.nav-item.active::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:26px;
        height: 4px;
    border-radius: 4px;
    background:#FFC889;
}
.nav-item a:hover{
    color:#FFC889 !important;
}
/* 语言下拉 */
.lang-wrap{
  position: relative;
    cursor: pointer;
    display: flex;
    gap: 20px;
}
.lang-trigger{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:16px;
    color:#fff;
}
.lang-trigger span img{width:25px;}
.header-nav.scrolled .lang-trigger{
    color:#333;
}
.lang-arrow{
    transition:transform 0.2s;
}
.lang-wrap:hover .lang-arrow{
    transform:rotate(180deg);
}
.lang-dropdown{
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    background:#fff;
    box-shadow:0 4px 16px rgba(0,0,0,0.12);
    border-radius:6px;
    width:90px;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:all 0.25s ease;
    text-align:center;
}
.lang-wrap:hover .lang-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.lang-dropdown a{
    display:block;
    padding:10px 16px;
    color:#333;
    text-decoration:none;
    font-size:16px;
}
.lang-dropdown a:hover{
    background:#f7f3eb;
    color:#f2b864;
}
/* 移动端汉堡按钮 */
.mobile-menu-btn{
    display:none;
    width:25px;
    height:32px;
    position:relative;
}
.mobile-menu-btn span{
    display:block;
    width:100%;
    height:2px;
    background:#fff;
    position:absolute;
    transition:0.3s;
}
.header-nav.scrolled .mobile-menu-btn span{
    background:#333;
}
.mobile-menu-btn span:nth-child(1){top:8px;}
.mobile-menu-btn span:nth-child(2){top:15px;}
.mobile-menu-btn span:nth-child(3){top:22px;}
/* 移动端菜单面板 */
.mobile-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    padding:20px 30px;
    box-shadow:0 6px 12px rgba(0,0,0,0.08);
}
.mobile-menu.show{
    display:block;
}
.mobile-menu a{
    display:block;
    padding:12px 0;
    font-size:17px;
    color:#333;
    text-decoration:none;
    border-bottom:1px solid #eee;
}

/* 响应式断点 */
@media (max-width:1200px){
    .nav-list{
        gap:26px;
    }
	.nav-item a {
    display: block;
    font-size: 14px;}
}
@media (max-width:992px){
    .nav-list{
        display:none;
    }
    .mobile-menu-btn{
        display:block;
    }
}
@media (max-width:768px){
    .icon-circle { 
    margin-top: 5px !important;
}
    .desc-text {
    font-size: 10px !important; }
    .nav-wrap{
        padding:14px 20px;
    }
    .logo-text h1{
        font-size:26px;
    }
}
   /* 菜单 */
 .backdrop-blur-md {
    --tw-backdrop-blur: blur(0px) !important;}

.data-section-main{background:#f7f7f7;padding: 2rem 0px 4rem;}

.data-section{
    max-width:1500px;
    margin:0 auto;
}
.data-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
}
.data-item{
        padding: 48px 0px 15px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: flex-start;
}
.texcal{text-align:left}
/* 竖分隔线 */
.data-item:not(:nth-child(3n))::after{
    content:"";
    position:absolute;
    right:0;
    top:25%;
    height:50%;
    width:1px;
    background:#dddddd;
}

.icon-circle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px; 
    border-radius:50%;
    vertical-align:middle;
    margin-right:12px;    margin-top: 14px;
}
.number-text{
    font-size:3.2rem;letter-spacing: 3px;
    font-weight:700;
    color:#00532E;
    display:inline-block;
    vertical-align:middle;
}
.desc-text{ 
    font-size:18px;
    color:#666;    text-align: center;
}


   .service-wrap {  width: 100%;  margin: 0 auto;padding-top:0rem  }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 14.3rem 14.3rem;
  gap: 16px; /* 你自己实际的间距值 */
}

.service-item {
  height: 14.3rem;
  overflow: hidden;
  position: relative;text-align:center
}

/* 跨行高度 = 两个卡片高度 + 中间gap空隙 */
.service-item.item-hk {
  grid-row: span 2 !important;
  height: calc(14.3rem * 2 + 16px);
}

    
    /* 卡片通用样式 */
    .service-item {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 4px;
    }
    .service-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
.service-item .text {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #fff;
    font-size: 20px;
    gap: 6px;
    bottom: 1rem;
}
.service-item {
  overflow: hidden; /* 裁剪图片放大溢出部分 */
  transition: transform 0.3s ease;
}
.service-item:hover {
  transform: scale(1.04); /* 整体卡片轻微放大，数值越大放大越多 */
}

/* 图片内部再叠加放大效果（可选，层次感更强） */
.service-item img {
  transition: transform 0.3s ease;
}
.service-item:hover img {
  transform: scale(1.08);
}
  @media screen and (min-width:320px) and (max-width:1500px){.data-section{padding-left:15px;padding-right:15px}}
  
   @media screen and (min-width:320px) and (max-width:1000px){.data-item {
    padding: 48px 0px 15px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
}}
  
 @media screen and (min-width:1000px) and (max-width:3000px)
{
     .data-grid .data-item:nth-child(2),
.data-grid .data-item:nth-child(5) {
    display: flex;
    justify-content: center;
}
  .data-grid .data-item:nth-child(3),
.data-grid .data-item:nth-child(6) {justify-content: flex-end;}
}
/* 优化体验：鼠标移入加快、移出回弹顺滑 */
.service-item,
.service-item img {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
    /* 移动端 <1024px 自动变成单列竖排 */
    @media (max-width: 1023px) {
      .service-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .service-item.item-hk {
        grid-row: span 1;height:16rem
      }
    }
	
	
	
	
	.mb-20 {  margin-bottom: 3.2rem !important; }
.bagback{background: rgba(255,255,255,0.1);}
.lunbozi{color:#FFC889 !important; font-family: Source Han Sans, Source Han Sans;line-height:1.4;text-align: left;
font-style: normal  !important;
text-transform: none;letter-spacing:5px;}
.text-lg {  font-size: 1.4rem  !important; }
.bg-secondary {
    --tw-bg-opacity: 1;
    background-color: #DBAE7C  !important;
}
.lunboanr{border-radius:10px  !important;}

.hover\:bg-accent:hover {
    --tw-bg-opacity: 1;
    background-color: #ffc889  !important;
}
.lunbian{ color: #ffc889  !important;border-radius:10px  !important;
border: 2px solid #FFC889;border-color:#FFC889 !important;}
.bottm-lb{bottom:-1.5rem !important;background: rgba(255,255,255,0.2) !important; 
border-radius: 10px !important; 
border: 1px solid rgba(255,255,255,0.7) !important; }
.text-sm {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}.mb-12 {
    margin-bottom: 5rem !important;
}
.lunboxz{color: rgba(255,255,255,0.7) !important;}
 
.countera{font-size: 3.8rem !important;color:#00532E !important;font-family: Source Han Sans, Source Han Sans;}
.bg-primary{background:#F7F7F7 !important;}
.text-neutral-400aa{color:#666 !important;padding-top:1rem}
.py-28 {
    padding-top: 4rem   !important; 
    padding-bottom: 5rem   !important; 
}
.gywmb{background:url(/pc/static/picture/gybg.png) !important;background-repeat: no-repeat;background-position: top center;    background-repeat: no-repeat !important;}
.btzic {color:#3D3D3D !important; }
.btzic span{color:#EAB983 !important; }
.text-neutral-600 {
    --tw-text-opacity: 1;
    color: #666 !important;
}
.py-32 {
    padding-top: 5rem !important;
    padding-bottom: 7rem !important;
}
.text-baseaa p{font-size:18px;line-height:2;color: #666666;padding-top:10px}
.py-32aa { 
padding-top: 2rem !important;
    padding-bottom: 5rem !important;
}
.bg-neutral-50{background: #F7F7F7 !important; }
 .zt-lvse{color:#007541 !important; }
.zt-lvsebg{background:#C6DDD3 !important; Border-radius:4px !important; }
.bg-f7f7 {  background:#F7F7F7 !important;}
.bg-secondaryaaa {
    --tw-bg-opacity: 1;
    background-color: #DBAE7C !important;
    border-radius: 0px !important;
    width: 68px !important;
    height: 15px !important;
    background: #EAB983 !important;    margin-top:-1rem !important;
}

.business-rule-boxa{
  background:#f7f7f7;
 
}
.business-rule-box{
  
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
  padding:46px 0px;
}
/* 左侧图片容器 */
.rule-img-wrap{
  width:100%;
}
.rule-img-wrap img{
  width:100%;
  height:auto;
  border-radius:0 40px 40px 0;
  display:block;
  object-fit:cover;
}
/* 右侧文字区域 */
.rule-text-wrap h2{
  font-size:52px;
  color:#222222;
  margin-bottom:24px;
  font-weight:bold;
}
.rule-text-wrap p{
  font-size:20px;
  color:#555555;
  line-height:1.8;
  margin-bottom:26px;
}
.rule-text-wrap p:last-child{
  margin-bottom:0;
}

/* 响应式适配 */
@media (max-width:1024px){
  .business-rule-box{
    grid-template-columns:1fr;
    gap:30px;
  }
  .rule-img-wrap img{
    border-radius:0 24px 24px 0;
  }
  .rule-text-wrap h2{
    font-size:38px;
  }
  .rule-text-wrap p{
    font-size:18px;
  }
}
.globalys{color:#E7B073 !important;}
.border-secondary {
    --tw-border-opacity: 1;
    border-color: #E7B073 !important;
}
.footerwz {
    color: rgba(255, 255, 255, 0.8)  !important;
    
    font-size: 13px !important;
    line-height: 2 !important;
    max-width: 250px;
}
@media (max-width:768px){
  .business-rule-box{
    padding:24px 16px;
  }
  .rule-text-wrap h2{
    font-size:30px;
    margin-bottom:16px;
  }
  .rule-text-wrap p{
    font-size:16px;
    margin-bottom:20px;
  }
}
.ditutop{padding-top:3rem;}

.biaotizs{ 
font-family: Source Han Sans, Source Han Sans;
font-weight: 500;
font-size: 18px !important;
color: #000000 !important;
line-height: 26px;
text-align: left;
font-style: normal;
text-transform: none;padding-top:0.6rem !important}
.lg\:grid-cols-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* 加上间距、对齐配置 */
  gap: 1rem;
  align-items: start; /* 元素顶部对齐，不会拉伸高度 */
}
.max-w-7xl{max-width:1500px !important}
.justifyst{justify-content: flex-start !important}
.hover\:bg-secondary:hover{background:#eab983 !important}
.text-primaryaaa { font-weight:500; color: #333!important; }
.text-hs{color:#EAB983 !important}
.bg-lvse{background:#007541 !important}
.borderr6{border-radius:6px !important}
.bg-footer {
    background: #222 !important;
}

/* 默认顶部未滚动状态样式 */
.hdcx {
    display: none;
}
.hdyc {
    display: block;
}

/* 滚动后 头部带有scrolled类，样式互换 */
#mainHeader.scrolled .hdcx {
    display: block;
}
#mainHeader.scrolled .hdyc {
    display: none;
}


@media (min-width: 1024px) {
    .lg\:gap-8 {
        gap: 4rem  !important; 
    }    .lg\:text-4xl {
        font-size: 2.65rem;
        line-height: 2rem;
    }
}

/* 响应式适配 */
@media (max-width:992px){
    .data-grid{grid-template-columns: repeat(2,1fr);}
    .data-item:nth-child(3n)::after{display:none;}
    .data-item:not(:nth-child(2n))::after{
        content:"";
        position:absolute;
        right:0;
        top:25%;
        height:50%;
        width:1px;
        background:#dddddd;
    }
}
@media (max-width:640px){
 .desc-text {
    margin-top: 12px;
    font-size: 16px;
    color: #666;
}
    .data-item::after{display:none !important;}
   .data-item {
    padding: 10px 0px;
}
	.number-text {font-size:1.6rem}
	.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;}
}
  /* 整体容器 桌面端左右布局 */
        .about-container {
		padding-top:3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 45px;
            align-items: start;
        }
        /* 左侧文字区域 */
        .text-wrap .title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 28px;
        }
        .title span {
            color: #e6b86e; /* 杉火 暖黄色字体 */
        }
.title .dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    vertical-align: top;
    margin-left: 6px;
    /* 外圈渐变边框 */
    background: linear-gradient(140deg, #48a868, #007541);
    padding: 3px; /* 控制圆环粗细 */
}
/* 内部白色镂空圆，盖住中间区域 */
.title .dot span {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
}

        .text-wrap p {
            font-size: 16px;
            line-height: 1.8;
            color: #333333;
            margin-bottom: 26px;
            text-align: justify;
        }
        /* 右侧图片容器布局 */
        .img-wrap {
            display: flex;
            flex-direction: column;
            gap: 16px;padding-top:6rem
        }
        .img-top {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
        }
        .img-bottom-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .img-item {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
        }
        img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* 移动端响应式适配：768px以下切换上下布局 */
        @media screen and (max-width: 768px) {
			
            .about-container {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .text-wrap .title {
                font-size: 32px;
            }
         
		
        }

/* 外层最大宽度限制 */
.wrap-main{
    max-width: 1500px;
    margin: 0 auto;
}
/* 页面标题 */
.page-title{
    text-align: center;
    margin-bottom: 48px;
	padding-top:5rem
}
.page-title h2{
    font-size: 2.5rem;
    color: #222222;
    font-weight: 700;
    margin-bottom: 6px;
}
.page-title p{
    font-size: 1.1rem;
    color: #666666;
}

.zjtp{padding:23px 20px}
.zjtzi{font-family: Source Han Sans, Source Han Sans;
font-weight: 400;
font-size: 13px;
color: #666666;
line-height: 17px;
text-align: left;
font-style: normal;
text-transform: none;}
.zt33{color:#333 !important;font-size:1.6rem !important;border-color:#EAB983 !important;}

/* 网格容器 */
.team-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
/* 单张卡片 */
.team-card{
    border-radius:10px 10px 0px 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column; 
}
/* 卡片上半部分 头像渐变区域 */
.card-top{
    height: 265px;
    background-color: #f4dcc1; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-top img{
    height: 165px;
    width: auto;
}
/* 卡片下半文字区 */
.card-bottom{
       background-color: #f4dcc1;
    /* 你指定的渐变 */
    background-image: linear-gradient( 180deg, rgba(97,51,0,0) 0%, #613300 80.71%);
	 
    color: #fff;
    padding: 16px 14px;
    flex: 1;
}
.name-en{
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.job-cn{
     font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 12px;
    line-height: 1.4;
}
.desc{

text-align: justify;
font-style: normal;
text-transform: none;
background:#f7f7f7;padding:0.8rem;
height:25rem;
border-radius:0px 0px 10px 10px
}
 
 .desc p{
    font-family: Source Han Sans, Source Han Sans;
font-weight: 500;
font-size: 0.85rem;
color: #3D3D3D;
line-height: 1.6;
 }
.py-24 {
    padding-top: 4rem !important;
    padding-bottom: 6rem;
}
.divge{height:6rem;width:100%;clear:both}
.youshiz{font-family: Source Han Sans, Source Han Sans;
font-weight: 500;
font-size: 16px !important;letter-spacing: 3px;
color: #999999;
line-height: 2;
text-align: center;
font-style: normal;
text-transform: none;}

.text-3xl { 
    line-height: 1.4 !important;
}

/* 响应式适配 */
@media (max-width: 1260px) {
    .team-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 800px) {
	.px-10aa {
    padding-left: 1.2rem  !important;font-size:14px !important;
    padding-right: 1.2rem !important;
}.gap-3aa {
    gap: 0.5rem !important;display: flex;
    justify-content: center !important;    margin-bottom: 1.2rem !important;
    align-items: center;
}.mb-20 {
    margin-bottom: 2.2rem !important;
}
.p-10ab {
    padding: 1.5rem !important;
}

	.card-green-tag {
   font-size: 16px !important;
    width: 110px !important;    line-height: 40px !important;
}.white-card { 
    padding: 20px !important;
}.ditutop {
    padding-top: 0rem !important;
}
	.mb-24 {
    margin-bottom: 4rem !important;;
}
	.dajia{font-size:17px !important;padding:18px !important;}
	.wid50hei50{width:50px !important;height:50px !important;}
	.pading18{padding:18px !important;}
	.page-title{ 
    margin-bottom: 8px; 
}.shcapitaltagcontainer { 
    margin-bottom: 25px;
}.shcapitaldesctext { 
    font-size: 20px; 
margin-bottom: 25px;}
    .team-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .card-top{
        height: 200px;
    }
}
@media (max-width: 460px) {
	
    .team-grid{
        grid-template-columns: 1fr;
    }
    
    .page-title h2{
        font-size: 23px;
    }
}
 @media screen and (min-width:320px) and (max-width:750px){
	 .nav-main { 
    gap: 30px;
}.lunbozi { 
    font-size: 36px !important;
}
.sjyycc{display:none !important}
.lunbozide{font-size: 20px !important;}
	 .logo-text .hdyc,.logo-text .hdcx{height:40px}
 .page-title p{ font-size: 0.9rem; }
 .page-title{padding-top:3.5rem}
 .img-wrap { 
    padding-top: 0rem;
}
  .desc p{ 
font-size: 0.85rem;
line-height:1.6 
 }
 .name-en {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0px;
}
 }
  @media screen and (min-width:320px) and (max-width:1500px){
  .wrap-main{padding-left:15px;padding-right:15px;}
  }
.youshia  {font-family: Source Han Sans, Source Han Sans;
font-weight: 700;
font-size: 1.2rem;
color: #EAB983;
line-height: 2;
letter-spacing: 1px;
text-align: left;
font-style: normal; 
text-transform: none;}
#investment-strategy{background-color: #F7F7F7 !important;}
.top40{margin-top:2.8rem}
.tzcelei{background:rgba(0, 117, 65, 0.1)!important;border-radius: 10px 10px 10px 10px;border: 1px solid #007541 !important;font-size:1.5rem;color:#007541;padding:1.2rem;text-align:center;font-weight:700}
 .tzceliez{color:#999;font-size:14px}
 .border-gold{color:#EAB983 !important;   border-color: #EAB983 !important;}
 .hover\:border-gold:hover { 
    border-color: #EAB983 !important;
}
 .jiagoutb{width: 4.5rem;margin: 0 auto 1.2rem;}
        .shcapitaltitlewrap {
            text-align: center;
            margin-bottom: 40px;
        }
        .shcapitalmaintitle {
            font-size: 36px;
            color: #333;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .shcapitalsubtitle {
            font-size: 16px;
            color: #999;
            letter-spacing: 0.5px;
        }
      
        .shcapitaltagcontainer {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 50px;
        }
        .shcapitaltagbox {font-family: Source Han Sans, Source Han Sans;
            border: 1px solid #EAB983;
            background: #fff;
            padding: 1rem  2.1rem;
            font-size: 17px;
            color: #333;
            border-radius: 3px;
            white-space: nowrap;
        }
       .shcapitaltagbox:hover{background:#EAB983;color:#fff}
        .shcapitaldesctext {
            text-align: center;
            font-size: 22px;
            color: #333;
            margin-bottom: 45px;
            font-weight: 500;
        }
 
        .shcapitalcontentcontainer {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px; 
			align-items: stretch;
        }
       
        .shcapitalimgwrapper img {
           width: 100%;
    height: 100%;
    object-fit: cover;  
    display: block;
    border-radius: 4px;
        }
         
        .shcapitalconditionwrapper {
          display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    justify-content: space-between;
        }
  
        .shcapitalconditionitem {
            background-color: #EAB983;
            padding: 1.55rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 16px;
        }
 
        .shcapitaliconcircle {
            width: 56px;
            height: 56px;
            flex-shrink: 0;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4a76a;
            font-size: 18px;
        }
 
        .shcapitalconditiontxt {
            font-size: 2rem;
            color: #fff;
        }
 
        @media (max-width: 992px) {
            .shcapitalcontentcontainer {
                grid-template-columns: 1fr;
            }
            .shcapitalmaintitle {
                font-size: 28px;
            }
            .shcapitaldesctext {
                font-size: 18px;
            }
            .shcapitalconditiontxt {
                font-size: 17px;
            }
        }
   
        @media (max-width: 576px) {
           
            .shcapitalmaintitle {
                font-size: 24px;
            }
            .shcapitaltagbox {
                padding: 10px 18px;
                font-size: 14px;
            }
            .shcapitalconditionitem {
                padding: 16px 20px;
            }
        }  
		
		
		
 /* 企业文化 */
		.page-title-box-main{background:#F7F7F7}
        .page-title-box {
            text-align: center;
            margin-bottom: 50px;
        }
        .main-title {
            font-size: 28px;
            color: #222222;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .sub-title {
            font-size: 14px;
            color: #888888;
        }
        /* 使命愿景两栏布局 */
        .mission-vision-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        /* 通用卡片样式 */
        .white-card {
            background: #fff;
            border-radius: 6px;
            padding: 24px 28px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
     .card-green-tag {
    display: inline-block;
    background-color: #007541;
    color: #fff;
    font-size: 19px;
    width: 140px;
    border-radius: 20px;
    margin-bottom: 16px;
    height: 40px;
    line-height: 42px;
    text-align: center;
}
        .card-text-list p {
            font-size: 1rem;
            color: #3D3D3D;
            line-height: 1.7;
            margin-bottom: 8px;
            list-style: none;
            position: relative;
            padding-left: 14px;    font-weight: 700;
        }
        .card-text-list p::before {
            content: "·";
            position: absolute;
            left: 0;
            color: #555;
        }
        /* 核心价值观区域 */
       .core-value-title {
    text-align: center;
    font-size: 26px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 35px;
}
        .core-value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }
        .value-item {
            padding: 20px 22px;
        }
        .value-item h3 {
            font-size: 24px;font-weight:700;
            color: #333;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        .value-item h3::before {
            content: "";
            width: 4px;
            height: 24px;
            background-color: #EAB983;
            margin-right: 10px;
        }
        .value-item p {
            font-size: 13px;
            color: #666;
            line-height: 1.7;
        }
        /* 底部三栏：商业准则、合规理念、ESG */
        .bottom-three-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .bottom-card .card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 6px 6px 0 0;
            display: block;
        }
        .bottom-card-content {
            padding: 20px;
        }
        .bottom-card h3 {
            text-align: center;
            font-size: 26px; 
            margin-bottom: 15px;
			color: #3D3D3D; font-weight:700;
letter-spacing: 1px;
        }
        .bottom-card p {
            font-size: 1rem;
            color: #555;
            line-height: 1.75;
            text-align: justify;
        }
.white-card2 {
    background: #fff;
    border-radius: 10px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
        /* 响应式适配 */
        @media (max-width: 992px) {
            .mission-vision-row {
                grid-template-columns: 1fr;
            }
            .core-value-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .bottom-three-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .core-value-grid {
                grid-template-columns: 1fr;
            }
            .bottom-three-grid {
                grid-template-columns: 1fr;
            }
          
            .main-title {
                font-size: 24px;
            }
        }
		
		
		
/* 整体容器 严格限制最大宽度，居中，左右预留安全边距杜绝溢出 */
.news-timeline-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 单条新闻条目 三栏弹性布局，总宽度永远不会超出父容器 */
.news-item {
    display: grid;
    grid-template-columns: 130px 1fr 320px;
    gap: 40px;
    padding: 30px 10px;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

/* 悬浮激活样式 */
.news-item:hover {
    background-color: #fcf6eb;
    border-radius: 16px;
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(220, 180, 120, 0.17);
}

/* 左侧日期区域 */
.news-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
}

.news-item:hover .news-date-box {
    background: #e6c394;
    padding: 12px 6px;
    border-radius: 10px;
}

.day-num {
    font-size: 76px;
    font-weight: 300;
    color: #222222;
    line-height: 1;
}

.news-item:hover .day-num {
    color: #ffffff;
}

.year-month {
    font-size: 24px;
    color: #444444;
    margin-top: 8px;
}

.news-item:hover .year-month {
    color: #ffffff;
}

/* 中间内容主体区域 */
.news-content-area {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    width: 100%;
    overflow: visibility;
}

/* 标题 桌面端单行省略 */
.news-title {
    font-size: 30px;
    font-weight: 600;
    color: #222222;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    width: 100%;
}

.news-item:first-child .news-title,
.news-item:hover .news-title {
    color: #b47e3c;
}

/* 绿色圆角标签 + 左侧分割线 修复溢出问题 */
.news-tag {
    font-size: 14px;
    color: #007541;
    background: #00754129;
    border: 1px solid #208948;
    padding: 2px 8px;
    border-radius: 6px;
    width: fit-content;
    position: relative;
    margin-left: 0px;
}

.news-tag::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: #cccccc;
    z-index: 2;
}

/* 新闻描述文字 */
.news-desc {
    font-size: 18px;
    color: #666666;
    line-height: 1.7;
    margin-top: 6px;
    width: 100%;
}

/* 右侧图片容器 固定比例，不会撑开宽度 */
.news-img-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.news-item:hover .news-img-box img {
    transform: scale(1.06);
}
.nerbot{margin-bottom:6rem}
/* 分页区域 */
.pagination-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.page-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.25s ease;
}

.page-btn.active {
    background: #e6c394;
    color: #fff;
    border-color: #e6c394;
}

.page-btn:not(.active):hover {
    background: #f5f5f5;
}

/* ========== 平板适配 768px ~ 992px ========== */
@media screen and (max-width: 992px) {
    .news-item {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 16px;
    }

    .news-date-box {
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
        width: fit-content;
    }

    .day-num {
        font-size: 52px;
    }

    .year-month {
        font-size: 20px;
    }

    .news-title {
        font-size: 26px;
    }

    .news-desc {
        font-size: 17px;
    }

    .news-img-box {
        height: 220px;
    }
}

/* ========== 手机端适配 <768px 极致优化 ========== */
@media screen and (max-width: 768px) {
    .news-timeline-wrap {
        padding: 0 15px;
    }

    .news-item {
        padding: 24px 12px;
        gap: 20px;
    }

    .day-num {
        font-size: 44px;
    }

    .year-month {
        font-size: 18px;
    }

    /* 手机标题取消单行省略，自动换行 */
    .news-title {
        font-size: 22px;
        white-space: normal;
        line-height: 1.4;
    }

    .news-tag {
        font-size: 14px;
        padding: 3px 12px;
    }

    .news-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .news-img-box {
        height: 180px;
        border-radius: 10px;
    }

    .pagination-box {
        gap: 6px;
    }

    .page-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

 
@media screen and (max-width: 480px) {
    .news-item {
        padding: 20px 10px;
    }
    .news-title {
        font-size: 20px;
    }
    .news-img-box {
        height: 160px;
    }
}



  .mai-bga {
        background-color: #F7F7F7;
        color: #333;
        padding: 60px 20px 70px;
        margin: 0 auto;
    }
    /* 标题区域 */
    .banner-title-sy {
        text-align: center;
        margin-bottom: 32px;
    }
    .main-title-sy {
        font-size: clamp(2rem, 5vw, 3.8rem);
        font-weight: 700;
        line-height: 1.3;
        color: #333;
        margin-bottom: 34px;
    }
    .desc-textaa {
        font-size: clamp(1rem, 2vw, 1.3rem);
        color: #666;
        line-height: 1.8;
        max-width: 920px;
        margin: 0 auto;
    }
    /* 按钮组 */
    .btn-groupaa {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 4rem 0px;
    }
    .btnaa {
        width: clamp(200px, 26vw, 280px);
        height: 72px;
        font-size: 1.25rem;
        border-radius: 2px;
        border: none;
        cursor: pointer;
        /* 统一过渡：所有变化都顺滑动画 */
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
    }
    .btn-primary {
        background-color: #e6b880;
        color: #fff;
        border: 1px solid #e6b880;
    }
    .btn-outline {
        background-color: transparent;
        color: #e6b880;
        border: 2px solid #e6b880;
    }

    /* 鼠标悬浮核心特效 */
    .btnaa:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 8px 20px rgba(230, 184, 128, 0.35);
    }
    /* 实心按钮hover加深底色 */
    .btn-primary:hover {
        background-color: #ddac6e;
    }
    /* 镂空按钮hover背景填充 */
    .btn-outline:hover {
        background-color: #e6b880;
        color: #ffffff;
    }
    /* 鼠标按下按压回弹效果 */
    .btnaa:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 2px 8px rgba(230, 184, 128, 0.2);
    }

    .icooaa {
        margin: 0 auto;
        width: 25px
    }
    /* 底部三栏联系信息 */
    .contact-wrapaa {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 40px 20px;
        text-align: center;
    }
    .contact-itemaa .icon {
        font-size: 28px;
        color: #e6b880;
        margin-bottom: 10px;
        height: 28px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    .contact-itemaa .label {
        font-size: 1rem;
        color: #888;
        margin-bottom: 2px;
    }
    .contact-itemaa .content {
        font-size: 1.05rem;
        color: #333;
        line-height: 1.6;
        font-weight:600;
    }
    /* 移动端适配 */
    @media (max-width: 768px) {
        .contact-itemaa .label {
            margin-bottom: 0px;
        }
        .btnaa {
            height: 50px;
            width: 45% !important;
            font-size: 18px !important;
        }
        .contact-wrapaa {
            display: flex;
            gap: 20px 20px;
            text-align: center;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .btn-groupaa {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 3rem 0px;
        }
    }