.deep-processing {
  max-width: 100%;
  width:100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.deep-processing h2 {
color: #2a2a2a;
  font-size: 28px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
  width: 70%; /* 占据父容器25%宽度 */
  position: relative;
  left: 0; /* 从左侧开始 */
}

.image-row {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.image-item {
  width: 300px;
  margin: 0 15px;
  margin-bottom: 20px;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
    align-items: center;
  }
  
  .image-item {
    margin-bottom: 30px;
  }
}