@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 0px #fff, 0 0 15px #048646;
  }
  50% {
    box-shadow: none;
  }
}
    .section {
      position: relative;
      width: 100%;
      max-width: 1300px;
      padding: 0px 15px;
    }

    .section h2 {
      color: #048646;
      font-size: .38rem;
      text-align: left;
      font-weight: 600;
    }

    .section p {
      color: #181818;
      font-size: .30rem;
      text-align: left;
      margin-top: 0px;
    }

    .factory {
      position: relative;
      width: 100%;
      margin-top:90px;
    }

    .factory img {
      width: 100%;
      display: block;
    }

    /* 标签基础样式 */
    .tag {
      position: absolute;
      background: linear-gradient(180deg, #2eb872, #048646);
      color: #fff;
      border-radius: 12px;
      padding: 4px 6px 2px;
      font-size: 3.5vw;
      font-weight: 500;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: all 0.35s ease;
      overflow: hidden;
      min-width: 18vw;
      line-height: 1.3;
      animation: glow 1.7s ease-in-out infinite;
    }

    .tag .title {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tag img.icon {
      width: 4vw;
      height: 4vw;
      margin-right: 4px;
    }

    .tag .detail {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      font-size: 3vw;
      line-height: 1.3;
      margin-top: 4px;
      transition: all 0.35s ease;
    }

    /* 点击展开样式 */
    .tag.active {
      padding-bottom: 12px;
    }
    .tag.active .detail {
      max-height: 40px;
      opacity: 1;
    }

    /* 中心大标签（企业优势） */
    .tag.center {
      background: linear-gradient(180deg, #43c581, #0c8a4a);
      font-size: 4vw;
      font-weight: bold;
      padding: 10px 12px;
      border-radius: 10px;
      text-align: center;
      line-height: 1.4;
      min-width: 28vw;
    }

    .tag.center .detail {
      max-height: none;
      opacity: 1;
      margin-top: 6px;
      font-size: 3vw;
    }

    /* 标签位置 (百分比相对背景缩放) */
    .tag1 { top: 24%; left: 0%; }
    .tag2 { top: 50%; left: -2.8%; }
    .tag3 { top: 0%; left: 10%; }
    .tag4 { top: -17%; left: 35%; }   /* 中间大标签 */
    .tag5 { top: 8%; right: 30%; }
    .tag6 { top: 29%; right: 10%; }
    .tag7 { bottom: 36%; right: 5%; }
    .tag8 { bottom: 13%; left: -2%; }
    .tag9 { bottom: 11%; right: 4%; }

    /* 平板和大屏幕优化 */
    @media (min-width: 768px) {
      .tag { font-size: 14px; min-width: 120px; }
      .tag img.icon { width: 18px; height: 18px; }
      .tag .detail { font-size: 13px; }
      .tag.center { font-size: 18px; min-width: 180px; }
      .tag.center .detail { font-size: 15px; }
    }