@font-face {
  font-family: "PingFang";
  src: url("../fonts/PingFang Regular.ttf");
}

html {
  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;
}

/* 标题区域 */
.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-top: 0.6rem;
}

/* 联系项 */
.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;
}

.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;
}