@font-face {
  font-family: "PingFang";
  src: url("../fonts/PingFang Regular.ttf");
}

/* 动态根字体大小 - 基于设计稿宽度1920px */
/* 在1920px宽度时，1rem = 100px */
/* 计算公式：设计稿宽度1920px / 100 = 19.2，所以 font-size = 100vw / 19.2 */
html {
  /* 设置最小和最大字体大小，避免极端情况 */
  /* 最小：移动端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);
}


body {
  margin: 0;
  padding: 0;
  font-family: 'PingFang';
}

.contact-container {
  /*margin: 1.5rem auto;*/
  padding: 0 3.6rem;
  background-color: #fff;
  margin: 1rem 0;
}

/* 标题区域 */
.title-section {
  width: 12rem;
  height: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding: 0.04rem 0;
}

.title {
  width: 12rem;
  margin: 0;
  color: #4F80C8;
  font-weight: 400;
  font-size: 0.24rem;
  line-height: 1.3333;
  text-align: left;
}

.divider {
  align-self: stretch;
  height: 0.02rem;
  flex-shrink: 0;
  background-color: #4F80C8;
}

/* 联系信息内容 */
.contact-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.3rem;
  margin: 0.4rem 0;
}

/* 联系项 */
.contact-item {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0.1rem;
  padding: 0.3rem 0.1rem;
  border-bottom: 0.01rem solid #E7E8EB;
}

.item-header {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  width: 1.4rem;
}

.icon {
  flex-shrink: 0;
}

.icon:nth-child(1) {
  width: 0.2rem;
  height: 0.2rem;
}

.icon:nth-child(2) {
  width: 0.22rem;
  height: 0.22rem;
}

.icon:nth-child(3) {
  width: 0.18rem;
  height: 0.24rem;
}

.label {
  color: #4F80C8;
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}

.value {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 1.4;
  text-align: left;
}

/* 响应式调整 */
/* @media screen and (max-width: 768px) {
  .contact-container {
    padding: 0 0.2rem;
  }

  .title-section,
  .title-wrapper,
  .title {
    width: 100%;
  }

  .contact-item {
    flex-wrap: wrap;
  }

  .value {
    flex: 1 1 100%;
    margin-top: 0.1rem;
  }
} */