    /* 现有的banner样式保持不变 */
    .banner {
        width: 100%;
        height: 100vh;
        background-image: url('/images/about/100000836.jpg');
        background-size: cover;
        background-position: center;
    }
  
    /* 公司简介部分样式 */
    .company-profile {
        padding: 120px 0;
        background-color: #fff;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: var(--font-size-30);
        color: var(--dark-color);
        margin-bottom: 30px;
    }
    .underline {
        width: 120px;
        height: 4px;
        background-color: var(--primary-color);
        margin: 0 auto;
    }
    .text-content {
        margin-bottom: 60px;
        color: var(--text-color);
    }
    
    .text-content p {
        font-size: var(--font-size-18);
        line-height: 2;
        margin-bottom: 6px;
        text-align: justify;
        text-indent: 36px;
    }
    
    .company-features {
        display: flex;
        justify-content: space-between;
        gap: 80px;
        margin-top: 60px;
    }
    
    .feature-item {
        flex: 1;
        text-align: center;
        padding: 30px 30px 0;
        border: 2px solid var(--gray-color-3);
        border-radius: 30px;
        transition: transform 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 20px auto 20px;
    }
    
    .feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .feature-item h3 {
        font-size: var(--font-size-26);
        color: var(--primary-color);
        margin-bottom: 40px;
        
    }
    
    .feature-item p {
        font-size: var(--font-size-22);
        color: var(--gray-color-2);
        margin: 0;
        font-weight: 400;
    }

    /* 技术实力部分样式 */
.technical-prowess {
    padding: 120px 0;
    background: url('/images/about/100000837.png');
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  
  .technical-prowess .container {
    position: relative;
    z-index: 1;
  }
  
  .technical-prowess .section-header h2 {
    color: #fff;
  }
  
  .technical-prowess .underline {
    background-color: #fff;
  }
  
  /* 专利数据统计样式 */
  .patent-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px 0;
    gap: 30px;
  }
  
  .stat-item {
    flex: 1;
    text-align: center;
    font-size: var(--font-size-26);
    color: #fff;
  }
  .stat-item .number {
    font-size: var(--font-size-40);
    margin: 0 5px;
  }
  
  /* 专利证书展示样式 */
  .patent-showcase {
    margin-top: 150px;
    text-align: center;
  }
  
  .patent-image {
    max-width: 100%;
    height: auto;
  }


/* 业务布局部分样式 */
  .business-layout {
    padding: 120px 0;
    background-color: #eef1f6;
  }
  
  .section-header-left {
    margin-bottom: 50px;
  }
  
  .section-header-left h2 {
    font-size: var(--font-size-40);
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: AlibabaPuHuiTiBold;
    font-weight: bold;
  }
  
  .section-header-left h3 {
    font-size: var(--font-size-30);
    color: var(--text-color);
  }
  .business-content {
    margin: 0 auto;
    width: 100%;
    height: 665px;
    position: relative;
  }
  .business-text {
    width: 380px;
    font-size: var(--font-size-16);
    color: var(--gray-color-2);
  }
  
  .business-text p {
    line-height: 1.8;
    text-align: justify;
  }
  /* 地图和点位样式更新 */
.business-map {
    position: absolute;
    width: 924px;
    height: 665px;
    right: 0;
    top: 0;
    transform-origin: top right;
  }
  
  .map-image {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .map-points {
    width: 100%;
    height: 100%;
  }
  
  /* 点位包装器 */
.point-wrapper {
    position: absolute;
    cursor: pointer;
  }
  
  /* 点位样式 */
  .point-icon {
    width: 9px;
    height: 9px;
    display: inline-block;
    position: relative;

  }
  .point-icon-logo {
    width: 62px;
    height: 12px;
  }
  .point-text-logo{
    font-size: var(--font-size-14);
    color: var(--primary-color);
    font-weight: 100;
  }
  .point-text {
    font-size: var(--font-size-14);
    color: var(--text-color);
    font-weight: 100;
  }
  /* 提示框样式重写 */
.point-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    min-width: 238px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none; /* 添加这行 */
    z-index: 100; /* Increased z-index to be higher than point-icon */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Optional: adds shadow for better visibility */

  }
  /* 提示框标题 */
  .point-tooltip h4 {
    color: var(--text-color);
    font-size: var(--font-size-16);
    font-weight: 500;
    margin-bottom: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d1d1d1;
  }
  
  /* 提示框内容 */
  .point-tooltip p {
    color: var(--text-color);
    font-size: var(--font-size-16);
    margin: 0;
    line-height: 2.6;
  }
  .point-tooltip .point-tooltip-img {
    width: 100%;
  }
  
  /* 显示动画 */
  .point-wrapper:hover .point-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
  }
  /* 使用固定的视口单位定位 */
.point-wrapper:nth-child(1) { left: 136px; top: 140px; } /* 乌鲁木齐 */
.point-wrapper:nth-child(2) { right: 339px; top: 240px; } /* 北京 */
.point-wrapper:nth-child(3) { right: 236px; top: 248px; } /* 大连 */
.point-wrapper:nth-child(4) { right: 380px; top: 283px; } /* 阳泉 */
.point-wrapper:nth-child(5) { right: 296px; top: 346px; } /* 徐州 */
.point-wrapper:nth-child(6) { right: 188px; top: 364px; } /* 常州 */
.point-wrapper:nth-child(7) { right: 273px; top: 395px; } /* 昆山 */
.point-wrapper:nth-child(8) { right: 226px; top: 396px; } /* 上海*/
.point-wrapper:nth-child(9) { right: 366px; top: 372px; } /* 南阳  */
.point-wrapper:nth-child(10) { left: 455px; top: 533px; } /* 柳州 */
.point-wrapper:nth-child(11) { right: 237px; bottom: 184px; } /* 温州 */
.point-wrapper:nth-child(12) { left: 474px; bottom: 94px; } /* 来宾 */
.point-wrapper:nth-child(13) { left: 436px; bottom: 80px; } /* 南宁 */
.point-wrapper:nth-child(14) { left: 475px; bottom: 60px; } /* 北海 */
  

/* 荣誉资质部分样式 */
.honors{
    padding: 120px 0;
    background-color: #ffff;
}
.honors .section-header-left{
    position: relative;
}

.honor-carousel {
    width: 100%;
    overflow: hidden;
    margin: 100px auto 0;
  }
  
  .swiper-slide{
    width: 100%;
    height: 100%;
  }
  .carousel-pagination {
    position: absolute;
    right: 20px;
    bottom: 0px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
    .carousel-button-prev,
    .carousel-button-next {
        width: 31px;
        height: 31px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
/* 禁用状态样式 */
/* .carousel-button-prev.disabled,
.carousel-button-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
} */

/* 新闻动态部分样式 */
  .news-updates {
    padding: 120px 0;
    background-image: url('/images/about/100000853.jpg');
    background-size: cover;
    background-position: center;
  }
  .news-updates-container {
    display: flex;
    justify-content: space-between;
    gap: 200px;
  }
  
  /* 新闻网格布局 */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
  
  /* 新闻项样式 */
  .news-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease;
  }
  
  .news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  /* 日期样式 */
  .news-date {
    display: flex;
    flex-direction: column;
    min-width: 100px;
  }
  
  .news-date .day {
    font-size: var(--font-size-30);
    color: var(--dark-color);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
  }
  
  .news-date .year {
    font-size: var(--font-size-16);
    color: var(--gray-color-2);
  }
  .news-date .line {
    width: 60%;
    height: 3px;
    background-color: var(--light-gray-color);
    margin-top: 48px;
  }
  
  /* 新闻内容样式 */
  .news-content {
    flex: 1;
  }
  
  .news-content h4 {
    font-size: var(--font-size-18);
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    min-height: 50px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
  }
  
  .news-content p {
    font-size: var(--font-size-16);
    color: var(--gray-color-3);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* 分页器样式 */
  .news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
  }
  
  .news-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b4b5b6;
    text-decoration: none;
    font-size: var(--font-size-16);
    transition: all 0.3s ease;
    
  }
  .news-pagination .prev-page,
  .news-pagination .next-page {
    background-image: url('/images/about/100000854.png');
    background-size: cover;
    background-position: center;
    width: 17px;
    height: 14px;
    transform: rotate(180deg);
  } 
  .news-pagination .next-page {
    transform: rotate(0deg);
  } 
  
  .news-pagination a:hover,
  .news-pagination a.active {
    color: var(--primary-color);
  }
 
/* 大屏幕 (1440px 及以上) */
@media screen and (min-width: 1440px) and (max-width: 1919px)  {
    .section-header h2 {
        font-size: var(--font-size-28);
    }
    .underline {
        width: 110px;
    }
    .text-content p {
        font-size: var(--font-size-16);
    }
    
    .feature-item h3 {
        font-size: var(--font-size-22);
        
    }
    .company-features {
        gap: 70px;
    }
    .feature-item p {
        font-size: var(--font-size-20);
    }

    /* 技术实力部分样式 */
    
    .stat-item {
        font-size: var(--font-size-24);
    }
    .stat-item .number {
        font-size: var(--font-size-38);
    }

    /* 业务布局部分样式 */
    .section-header-left h2 {
        font-size: var(--font-size-34);
    }
    
    .section-header-left h3 {
        font-size: var(--font-size-24);
    }
    .business-map {
        transform: scale(0.9);
    }

    /* 新闻动态部分样式 */
    
  .news-date .day {
    font-size: var(--font-size-28);
  }
  .news-date .year {
    font-size: var(--font-size-16);
  }
  .news-date .line {
      margin-top: 40px;
  }
  
  .news-content h4 {
    font-size: var(--font-size-16);
  }
  
  .news-content p {
    font-size: var(--font-size-14);
  }
  

}


/* 中等屏幕 (1280px - 1439px) */
@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .section-header h2 {
        font-size: var(--font-size-24);
    }
    .underline {
        width: 100px;
    }
    .text-content p {
        font-size: var(--font-size-14);
    }
    
    .feature-item {
        padding: 20px 20px 0;
    }
    .feature-item h3 {
        font-size: var(--font-size-18);
    }
    .feature-item p {
        font-size: var(--font-size-16);
    }
    .company-features {
        gap: 40px;
    }
    .feature-icon {
        width: 45px;
        height: 45px;
    }

    
    /* 技术实力部分样式 */
    
    .stat-item {
        font-size: var(--font-size-22);
    }
    .stat-item .number {
        font-size: var(--font-size-34);
    }
    /* 业务布局部分样式 */
    .section-header-left h2 {
        font-size: var(--font-size-28);
    }
    
    .section-header-left h3 {
        font-size: var(--font-size-20);
    }
    .business-text {
      font-size: var(--font-size-14);
      width: 300px;
    }
    .point-tooltip h4,
    .point-tooltip p{
        font-size: var(--font-size-14);
    }
    .point-text {
        font-size: var(--font-size-12);
    }
    .business-map {
        transform: scale(0.75);
    }
    /* 荣誉资质部分样式 */
    .honor-carousel {
        margin: 80px auto 0;
    }
    
    /* 新闻动态部分样式 */
    .news-pagination, {
        gap: 20px;
    }
    .news-item{
        padding: 20px;
        gap: 10px;
    }
    .news-updates-container{
        gap: 150px;
    }
    .news-date .day {
        font-size: var(--font-size-24);
    }
    .news-date .year {
        font-size: var(--font-size-16);
    }
    .news-date .line {
        margin-top: 30px;
    }
    .news-content h4 {
        font-size: var(--font-size-14);
    }
    
    .news-content p {
        font-size: var(--font-size-12);
    }
    
}

/* 平板及小屏幕 (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px){
    .section-header h2 {
        font-size: var(--font-size-24);
        margin-bottom: 20px;
    }
    .underline {
        width: 90px;
    }
    .text-content p {
        font-size: var(--font-size-14);
    }
    .feature-item {
        padding: 20px 20px 0;
    }
    .feature-item h3 {
        font-size: var(--font-size-16);
        
    }
    .feature-item p {
        font-size: var(--font-size-14);
    }
    .company-features {
        gap: 40px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    
    /* 技术实力部分样式 */
    
    .stat-item {
        font-size: var(--font-size-18);
    }
    .stat-item .number {
        font-size: var(--font-size-28);
    }


    /* 业务布局部分样式 */
    .section-header-left h2 {
        font-size: var(--font-size-22);
        margin-bottom: 10px;
    }
    
    .section-header-left h3 {
        font-size: var(--font-size-18);
        
    }
    .business-text {
      font-size: var(--font-size-12);
      width: 260px;
    }
    .point-tooltip h4,
    .point-tooltip p{
        font-size: var(--font-size-14);
    }
    .point-text {
        font-size: var(--font-size-12);
    }
    .business-map {
        transform: scale(0.65);
    }
    /* 荣誉资质部分样式 */
    .honor-carousel {
        margin: 80px auto 0;
    }


    /* 新闻动态部分样式 */
    .news-pagination{
        gap: 20px;
    }
    .news-grid {
        gap: 20px;
    }
    .news-item{
        padding: 20px;
        gap: 10px;
    }
    .news-updates-container{
        gap: 100px;
    }
    .news-date .day {
        font-size: var(--font-size-20);
    }
    .news-date .year {
        font-size: var(--font-size-12);
    }
    .news-date .line {
        margin-top: 30px;
    }
    .news-content h4 {
        font-size: var(--font-size-12);
    }
    
    .news-content p {
        font-size: var(--font-size-10);
    }
}
/* 平板及小屏幕 (1024px - 1279px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .company-features {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-item {
        padding: 30px;
    }
    .section-header h2 {
        font-size: var(--font-size-26);
        margin-bottom: 20px;
    }
    .underline {
        width: 100px;
    }
    .feature-item h3 {
        font-size: var(--font-size-22);
        
    }
    .feature-item p {
        font-size: var(--font-size-20);
    }


    /* 技术实力部分样式 */
    
    .stat-item {
        font-size: var(--font-size-18);
        flex: 0 0 45%;
    }
    .stat-item .number {
        font-size: var(--font-size-28);
    }


    /* 业务布局部分样式 */
    .section-header-left h2 {
        font-size: var(--font-size-26);
    }
    
    .section-header-left h3 {
        font-size: var(--font-size-24);
        
    }
    .business-text {
      font-size: var(--font-size-18);
      width: 100%;
    }
    .point-tooltip h4,
    .point-tooltip p{
        font-size: var(--font-size-14);
    }
    .point-text {
        font-size: var(--font-size-12);
    }
    .business-content {
        width: 100%;
        height: 965px;
        overflow: hidden;
        overflow-x: scroll;
    }
    
    .business-map {
        position: unset;
        width: 924px;
        height: 665px;
        transform: scale(1);
    }
    /* 荣誉资质部分样式 */
    .honor-carousel {
        margin: 80px auto 0;
    }

    /* 新闻动态部分样式 */
    .news-grid,
    .news-updates-container {
        flex-direction: column;
    }
    .news-updates-container {
        gap: 20px;
    }
    .news-item{
        padding: 20px;
        gap: 10px;
    }
    .news-date .day {
        font-size: var(--font-size-24);
    }
    .news-date .year {
        font-size: var(--font-size-14);
    }
    .news-content h4 {
        font-size: var(--font-size-16);
    }
    .news-content p {
        font-size: var(--font-size-14);
    }
  
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .company-features {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-item {
        padding: 30px;
    }
    .section-header h2 {
        font-size: var(--font-size-26);
        margin-bottom: 20px;
    }
    .underline {
        width: 100px;
    }
    .feature-item h3 {
        font-size: var(--font-size-22);
        
    }
    .feature-item p {
        font-size: var(--font-size-20);
    }
   
    /* 技术实力部分样式 */
    
    .stat-item {
        font-size: var(--font-size-18);
        /* 每行显示两个 */
        flex: 0 0 45%;

    }
    .stat-item .number {
        font-size: var(--font-size-28);
    }

    /* 业务布局部分样式 */
    .section-header-left h2 {
        font-size: var(--font-size-26);
    }
    
    .section-header-left h3 {
        font-size: var(--font-size-24);
        
    }
    .business-text {
      font-size: var(--font-size-18);
      width: 100%;
    }
    .point-tooltip h4,
    .point-tooltip p{
        font-size: var(--font-size-14);
    }
    .point-text {
        font-size: var(--font-size-12);
    }
    .business-content {
        width: 100%;
        height: 965px;
        overflow: hidden;
        overflow-x: scroll;
    }
    
    .business-map {
        position: unset;
        width: 924px;
        height: 665px;
        transform: scale(1);
    }
    /* 荣誉资质部分样式 */
    .carousel-container {
        margin: 60px auto 0;
    }
    .carousel-button-prev,
    .carousel-button-next {
        width: 20px;
        height: 20px;
    }

    /* 新闻动态部分样式 */
    .news-grid,
    .news-updates-container {
        flex-direction: column;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-updates-container {
        gap: 20px;
    }
    .news-item{
        padding: 20px;
        gap: 10px;
    }
    .news-date .day {
        font-size: var(--font-size-24);
    }
    .news-date .year {
        font-size: var(--font-size-14);
    }
    .news-content h4 {
        font-size: var(--font-size-16);
    }
    .news-content p {
        font-size: var(--font-size-14);
    }

}



@media screen and (max-width: 479px) {
    .company-features {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-item {
        padding: 30px;
    }
    .section-header h2 {
        font-size: var(--font-size-26);
        margin-bottom: 20px;
    }
    .underline {
        width: 100px;
    }
    .feature-item h3 {
        font-size: var(--font-size-20);
        
    }
    .feature-item p {
        font-size: var(--font-size-18);
    }
   
    .feature-icon {
        width: 45px;
        height: 45px;
    }

    /* 技术实力部分样式 */
    
    .stat-item {
        font-size: var(--font-size-16);
        /* 每行显示两个 */
        flex: 0 0 45%;
    }
    .stat-item .number {
        font-size: var(--font-size-24);
    }

    /* 业务布局部分样式 */
    .section-header-left h2 {
        font-size: var(--font-size-24);
    }
    
    .section-header-left h3 {
        font-size: var(--font-size-22);
        
    }
    .business-text {
      font-size: var(--font-size-16);
      width: 100%;
    }
    .point-tooltip h4,
    .point-tooltip p{
        font-size: var(--font-size-14);
    }
    .point-text {
        font-size: var(--font-size-12);
    }
    .business-content {
        width: 100%;
        height: 965px;
        overflow: hidden;
        overflow-x: scroll;
    }
    
    .business-map {
        position: unset;
        width: 924px;
        height: 665px;
        transform: scale(1);
    }
    
    /* 荣誉资质部分样式 */
    .honor-carousel{
        margin: 60px auto 0;
    }
    .carousel-pagination {
        gap: 15px;
    }
    .carousel-button-prev,
    .carousel-button-next {
        width: 25px;
        height: 25px;
    }

    /* 新闻动态部分样式 */
    .news-grid,
    .news-updates-container {
        flex-direction: column;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-updates-container {
        gap: 20px;
    }
    .news-item{
        padding: 20px;
        gap: 10px;
    }
    .news-date .day {
        font-size: var(--font-size-24);
    }
    .news-date .year {
        font-size: var(--font-size-14);
    }
    .news-content h4 {
        font-size: var(--font-size-16);
    }
    .news-content p {
        font-size: var(--font-size-14);
    }
}

@media screen and (max-width: 398px)  {
    .stat-item {
        font-size: var(--font-size-16);
        /* 每行显示一个 */
        flex: 1 1 100%;
    }
    .stat-item .number {
        font-size: var(--font-size-24);
    }
}