/* 产品展示区样式 */
.product-showcase {
  background-image: url(../images/tmp1557739117_1878195_s.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding: 0 0 240px 0;
}
.product-inro {
  padding: 40px 0;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.product-item {
  background: #fff;
}

.product-item img {
  width: 100%;
  height: auto;
}

.more-product {
  text-align: center;
  margin-top: 30px;
}

/* 智能制造流程图样式 */
.smart-manufacturing {
  padding: 60px 0;
}

.flow-chart {
  margin: 30px auto;
}

.flow-chart img {
  width: 100%;
  min-width: 100%;
}

/* ESG发展区域样式 */
.esg-development {
  background-image: url(../images/tmp1665927400_2203623_s.png);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: left top;
}

.esg-inro {
  padding: 60px 0 120px 0;
  display: flex;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.esg-content {
  flex: 1;
  line-height: 1.8;
}
.esg-content h2 {
  text-align: center;
}
.esg-content p {
  text-indent: 2em;
}

.esg-image {
  flex: 1;
}

.esg-image img {
  width: 100%;
  /* border-radius: 8px; */
}

/* 页面标题样式 */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #333;
}

.product-item {
    position: relative;
    overflow: visible; /* 改为 visible 以显示放大窗口 */
    background-color: #fff;
    margin-bottom: 20px;
}

.product-item img {
    max-width: 100%;
    display: block;
}

/* 确保图片容器有固定尺寸 */
.product-item {
    margin: 0 auto;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 放大镜窗口样式 */
.zoomWindow {
    border: 1px solid #888 !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 放大镜镜头样式 */
.zoomLens {
    border: 1px solid #888 !important;
    background-color: rgba(255,255,255,0.4);
    cursor: crosshair;
}