/* ================= 联系我们页 ================= */
.contact-main {
  padding: 112px 0 90px;
  background: #f5f6fc;
}
.contact-main .contact-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(80, 60, 160, 0.06);
  padding: 64px 0 70px;
  text-align: center;
}

/* 标题：CONCATC 水印 + 联系我们 */
.contact-main .contact-title-wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.contact-main .contact-title-wrap .watermark {
  width: 320px;
  top: -20px;
    position: relative;
}
.contact-main .contact-title-wrap .contact-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 4px;
  white-space: nowrap;
}

/* 微信二维码 */
.contact-main .contact-qr {
  width: 220px;
  height: 220px;
  margin: 44px auto 0;
}
.contact-main .contact-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 服务热线 */
.contact-main .contact-phone {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-main .contact-phone .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}
.contact-main .contact-phone .num {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 1px;
}
.contact-main .contact-phone .copy {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  cursor: pointer;
  object-fit: contain;
  transition: opacity 0.2s;
}
.contact-main .contact-phone .copy:hover {
  opacity: 0.7;
}

/* 联系信息列表 */
.contact-main .contact-info {
  margin: 44px auto 0;
  display: inline-block;
  text-align: left;
}
.contact-main .contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  color: #555555;
}
.contact-main .contact-info li:last-child {
  margin-bottom: 0;
}
.contact-main .contact-info li img {
  width: 22px;
  height: 22px;
  margin-right: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

/* 复制成功提示 */
.copy-toast {
  position: fixed;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 99999999;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  display: none;
}
