.part1 {
  background: url(../images/about/part1.jpg) center top no-repeat;
  height: 1151px;
  min-width: 100%;
  padding-top: 600px;
  margin: 0 auto;
  width: 1200px;
  text-align: center; /* 文字整体居中 */
}
  /* 容器：居中+固定宽度，适配PC端 */
        .about_container {
            width: 1200px;
            margin: 0 auto;
            padding: 60px 0;
            
        }
        /* 标题样式 */
        .about_title {
            font-size: 36px;
            color: #8c4b37; /* 原图标题棕红色 */
            margin-bottom: 10px;
            font-weight: bold;
        }
        .about_subtitle {
            font-size: 16px;
            color: #b88b7b;
            text-transform: uppercase; /* 英文大写 */
            margin-bottom: 40px;
            letter-spacing: 2px;
        }
        /* 内容段落样式 */
        .about_content p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
            text-align: left;
            padding: 0 80px; /* 左右留白，还原视觉间距 */
            text-indent: 2em;
            line-height: 2;
        }
        
        
.part2 img {
  /* 让图片本身按块级居中 */
  display: block;
  margin: 0 auto;
  /* 如果你想让图片最大不超出容器，自适应宽度 */
  max-width: 100%;
  height: auto;
}


.part3{
margin-top: 60px;

}


  /* 核心容器（前缀abs，避免冲突） */
        .abs-container {
            width: 80%;
            margin: 0 auto;
            max-width: 1200px;
        }

        /* 标题区 */
        .abs-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .abs-title h1 {
           font-size: 36px;
color: #8c4b37;
margin-bottom: 10px;
font-weight: bold;
        }
        .abs-title .sub {
           font-size: 16px;
color: #b88b7b;
text-transform: uppercase;
margin-bottom: 40px;
letter-spacing: 2px;
        }
        .abs-title .desc {
            font-size: 16px;
            color: #666;
        }

        /* 顶部介绍文本 */
        .abs-intro {
            text-align: center;
            font-size: 16px;
            color: #666;
            padding: 70px 20px;
            margin-bottom: 40px;
            border-bottom: 1px solid #eee;
            border-top: 1px solid #eee;
            line-height: 2;
        }

        /* 核心图片 */
        .abs-img {
            width: 100%;
            max-width: 800px;
            margin: 0 auto 40px;
            display: block;
            border-radius: 4px;
        }

        /* 内容卡片布局 */
        .abs-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        /* 卡片样式 - 新增边框 + 优化阴影 */
        .abs-card {
  background: rgba(255, 255, 255, 0.7); 
  padding: 30px 40px;
  border-radius: 30px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.01);
}

        .abs-card p {
            font-size: 16px;
            color: #666;
            margin-bottom: 16px;
            line-height: 1.8;
        }
        .abs-card p:last-child {
            margin-bottom: 0;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .abs-container {
                width: 90%;
            }
            .abs-intro {
                padding: 0 20px 30px;
            }
            .abs-cards {
                grid-template-columns: 1fr;
            }
        }
        
        
  .part4 {
  background: url(../images/about/part4.jpg) center top no-repeat;
  height: 1200px;
  min-width: 100%;
  padding-top: 700px;
  margin-top:-660px;

  
}      
        
        
        
       /* 容器样式 - 整体居中，限制最大宽度保证布局美观 */
        .service-container {
            max-width: 1300px;
            margin: 30px auto; /* 上下间距50px，左右自动居中 */
            display: flex;
            flex-wrap: wrap; /* 自动换行 */
            justify-content: center; /* 水平居中 */
            gap: 20px; /* 模块之间的间距 */
        }

        /* 每个服务模块样式 - 尺寸统一，改为水平布局 */
        .service-item {
            width: 301px; /* 统一宽度 */
            height: 150px; /* 统一高度 */
            padding: 10px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: flex; /* 改为水平flex布局 */
            align-items: center; /* 垂直居中 */
       
        }

        /* 图标容器（你替换图片的位置） */
        .service-icon {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0; /* 防止图标被压缩 */
        }

        /* 图标图片样式 */
        .service-icon img {
            width: 70%;
            height: 70%;
            object-fit: contain;
        }

        /* 文字内容容器 */
        .service-text {
            flex: 1; /* 占据剩余宽度 */
        }

        /* 服务标题样式 */
        .service-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* 服务描述样式 */
        .service-desc {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }

        /* 适配小屏幕 - 保证移动端显示正常 */
        @media (max-width: 992px) {
            .service-item {
                width: 200px;
                height: 160px;
                gap: 10px; /* 小屏幕缩小间距 */
            }
            .service-icon {
                width: 50px;
                height: 50px;
            }
            .service-title {
                font-size: 16px;
            }
        }  
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        