@charset "utf-8";

.about-industry {
  --ai-red: #ce0f17;
  --ai-bg: rgba(245, 245, 245, 1);
  --ai-text: #292929;
  --ai-circle: 140px;
  --ai-gap-x: 80px;
  --ai-gap-y: 20px;
  background: var(--ai-bg);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.about-industry .industry-main {
  position: relative;
}

.about-industry .industry-main > .about-title-block {
  margin-bottom: 100px;
}

.about-industry .industry-split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.about-industry .industry-rows {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ai-gap-y);
}

.about-industry .industry-aside {
  position: relative;
  flex: 0 0 420px;
  width: 420px;
  margin-top: -120px;
  padding-top: 0;
}

.about-industry .industry-map-bg {
  position: absolute;
  left: 50%;
  top: 40px;
  width: 520px;
  height: 465px;
  margin-left: -260px;
  background: url(../images/about/industry-map-bg.png) center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

.about-industry .industry-head-stat {
  position: relative;
  z-index: 1;
}

.about-industry .industry-num-wrap {
  position: relative;
  z-index: 1;
}

.about-industry .industry-num {
  font-size: clamp(72px, 8vw, 200px);
  font-weight: 700;
  line-height: 1;
  color: var(--ai-red);
  font-family: "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  margin: 0 0 12px;
}

.about-industry .industry-desc {
  margin: 16px 0 0;
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.about-industry .industry-desc::before {
  content: "|";
  margin-right: 8px;
  color: #ccc;
}

.about-industry .industry-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--ai-gap-x);
}

.about-industry .industry-item {
  width: var(--ai-circle);
  height: var(--ai-circle);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0;
  opacity: 0;
  transform: scale(0.85) translateY(24px);
}

.about-industry .industry-item.is-visible {
  opacity: 1;
  transform: none;
  transition: transform 0.35s ease;
}

.about-industry .industry-item.is-visible:hover {
  transform: scale(1.04);
}

.about-industry .industry-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  overflow: visible;
  color: var(--ai-red);
  transform-origin: center center;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-industry .industry-item.is-visible:hover .industry-ring {
  transform: rotate(360deg);
}

.about-industry .industry-ring-arc {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-dasharray: 413.54 20;
}

.about-industry .industry-ring-dot {
  fill: currentColor;
}

.about-industry .industry-item .label {
  position: relative;
  z-index: 1;
  max-width: 128px;
  font-family: "Noto Sans SC", "Noto Sans S Chinese", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  color: #292929;
  text-align: center;
}

@media only screen and (max-width: 1199px) {
  .about-industry .industry-aside {
    flex-basis: 320px;
    width: 320px;
    margin-top: 0;
  }

  .about-industry .industry-map-bg {
    width: 400px;
    height: 358px;
    margin-left: -200px;
    top: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .about-industry {
    padding: 72px 0 80px;
  }

  .about-industry .industry-split {
    flex-direction: column;
    align-items: stretch;
  }

  .about-industry .industry-aside {
    width: 100%;
    flex-basis: auto;
    order: -1;
    text-align: left;
    margin-top: 0;
    padding: 0 0 24px;
  }

  .about-industry .industry-map-bg {
    left: auto;
    right: -20px;
    top: 20px;
    margin-left: 0;
    width: 360px;
    height: 322px;
  }

  .about-industry {
    --ai-circle: 120px;
    --ai-gap-x: 28px;
    --ai-gap-y: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .about-industry {
    --ai-circle: 110px;
    --ai-gap-x: 16px;
    padding: 56px 0 64px;
  }

  .about-industry .industry-item .label {
    max-width: 82px;
    font-size: 14px;
    line-height: 22px;
  }

  .about-industry .industry-map-bg {
    width: 280px;
    height: 250px;
    top: 16px;
  }
}
