/* ====== 联系我们组件 ====== */

/* 上栏 — Logo */
.contact001 .layout .top-section {
  text-align: center;
  padding: 0.6rem 0 0.4rem;
}

#contact-map>div:nth-child(2)>div.tdt-bottom.tdt-left>div {
  display: none;
}

.contact001 .layout .top-section .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.5rem;
}

.contact001 .layout .top-section .logo-wrap img {
  max-width: 90%;
  height: auto;
  display: block;
}

/* ====== 中栏 — 左右布局 ====== */
.contact001 .layout .middle-section {
  display: flex;
  gap: 0;
  max-width: 10rem;
  margin: 0 auto;
  padding: 0.4rem 0.4rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.contact001 .layout .middle-section .contact-left,
.contact001 .layout .middle-section .contact-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.2rem;
}
.contact001 .layout .middle-section .contact-right {
    padding-left: 0.6rem;
}
/* 左右栏分隔线 */
.contact001 .layout .middle-section .col-divider {
  width: 2px;
  align-self: stretch;
  background: var(--ruifox-color-primary-1);
  opacity: 0.3;
  flex-shrink: 0;
}

/* 图标圆底 */
.contact001 .layout .middle-section .icon-circle {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--ruifox-color-primary-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.03rem;
}

.contact001 .layout .middle-section .icon-circle svg {
  width: 0.28rem;
  height: 0.28rem;
  color: #fff;
  display: block;
}

.contact001 .layout .middle-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.contact001 .layout .middle-section ul li {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.15rem;
  line-height: 1.6;
}

.contact001 .layout .middle-section ul li:last-child {
  margin-bottom: 0;
}

.contact001 .layout .middle-section ul li .label {
  font-size: 0.16rem;
  color: #999;
  font-weight: 500;
  white-space: nowrap;
}

.contact001 .layout .middle-section ul li .value {
  font-size: 0.16rem;
  color: #333;
  font-weight: 400;
  word-break: break-all;
}

/* ====== 下栏 — 地图 ====== */
.contact001 .layout .bottom-section {
  max-width: 10rem;
  margin: 0.4rem auto 0;
}

.contact001 .layout .bottom-section .map-box {
  width: 100%;
  height: 5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact001 .layout .bottom-section .map-box .contact-map {
  width: 100%;
  height: 100%;
}

.contact001 .layout .bottom-section .map-box .contact-map .contact-info-window {
  margin: 0.1rem;
}

.contact001 .layout .bottom-section .map-box .contact-map .contact-info-window h1 {
  font-size: 0.18rem;
  margin: 0 0 0.06rem;
  color: #333;
}

.contact001 .layout .bottom-section .map-box .contact-map .contact-info-window p {
  font-size: 0.14rem;
  margin: 0;
  color: #666;
}

/* ====== 响应式 ====== */
@media (max-width: 960px) {
  .contact001 .layout .top-section {
    padding: 0.4rem 0 0.3rem;
  }

  .contact001 .layout .top-section .logo-wrap {
    padding-bottom: 0.2rem;
  }

  .contact001 .layout .middle-section {
    flex-direction: column;
    padding: 0.3rem;
    border-radius: 8px;
  }

  .contact001 .layout .middle-section .col-divider {
    width: auto;
    height: 2px;
    align-self: stretch;
    margin: 0.15rem 0;
  }

  .contact001 .layout .middle-section .contact-left,
  .contact001 .layout .middle-section .contact-right {
    padding: 0.1rem;
  }


  .contact001 .layout .bottom-section {
    margin-top: 0.3rem;
  }

  .contact001 .layout .bottom-section .map-box {
    height: 3.5rem;
    border-radius: 8px;
  }

  .contact001 .layout .bottom-section .map-box .contact-map .contact-info-window h1 {
    font-size: 0.16rem;
  }

  .contact001 .layout .bottom-section .map-box .contact-map .contact-info-window p {
    font-size: 0.12rem;
  }
}

@media (max-width: 480px) {
  .contact001 .layout .top-section {
    padding: 0.3rem 0 0.2rem;
  }

  .contact001 .layout .middle-section {
    padding: 0.2rem;
  }

  .contact001 .layout .middle-section ul li .label,
  .contact001 .layout .middle-section ul li .value {
    font-size: 0.14rem;
  }

  .contact001 .layout .bottom-section .map-box {
    height: 2.5rem;
  }

  .contact001 .layout .bottom-section .map-box .contact-map .contact-info-window h1 {
    font-size: 0.14rem;
  }

  .contact001 .layout .bottom-section .map-box .contact-map .contact-info-window p {
    font-size: 0.12rem;
  }

  .contact001 .layout .middle-section .icon-circle {
    width: 0.4rem;
    height: 0.4rem;
  }

  .contact001 .layout .middle-section .icon-circle svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}