@font-face {
  font-family: "PingFang";
  src: url("../fonts/PingFang-Bold.ttf");
}

body {
  font-family: "PingFang";
}

/* 动态根字体大小 - 基于设计稿宽度1920px */
/* 在1920px宽度时，1rem = 100px */
/* 计算公式：设计稿宽度1920px / 100 = 19.2，所以 font-size = 100vw / 19.2 */
html {
  font-size: calc(100vw / 19.2);
  /* 设置最小和最大字体大小，避免极端情况 */
  /* 最小：移动端320px时，font-size约为16.67px (320/19.2) */
  /* 最大：超大屏3840px时，font-size为200px (3840/19.2)，限制为10rem避免过大 */
  font-size: clamp(0.5rem, calc(100vw / 19.2), 10rem);
}

/* 针对超小屏幕的额外保护 */
@media (max-width: 320px) {
  html {
    font-size: 0.5rem;
  }
}

/* 针对超大屏幕的限制 */
@media (min-width: 3840px) {
  html {
    font-size: 10rem;
  }
}

/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'PingFang', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif; */
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
  background: #FFFFFF;
}


/* 集团简介内容 */
.intro-section {
  width: 100%;
  padding: 1.5rem 3.6rem;
  background: #FFFFFF;
}

.intro-container {
  max-width: 12rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.intro-image {
  width: 100%;
  max-width: 12rem;
  height: 6.44rem;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-text {
  width: 100%;
  max-width: 12rem;
}

.intro-text p {
  font-size: 0.16rem;
  line-height: 2em;
  color: rgba(0, 0, 0, 0.6);
  text-align: justify;
  font-weight: 400;
}