@font-face {
  font-family: DingTalk-JinBuTi;
  src: url(/imgs/DingTalkJinBuTi.ttf);
}

/* 仅PC端样式（≥1200px） */
@media screen and (min-width: 1200px) {
  .a {
    color: #ffffff;
  }

  .footer {
    padding: 40px 0 20px 0;
    display: flex;
    background-color: #131227;
    color: #fff;
    justify-content: center;
    height: auto;
  }

  .footer-inner {
    width: 100%;
    max-width: 1200px;
  }

  .footer-cols {
    display: flex;
    padding-bottom: 30px;
    white-space: nowrap;
  }

  .footer-col {
    width: 85px;
    margin-left: 1vw;
  }

  .col-title {
    font-size: 16px;
  }

  .col-links {
    font-size: 14px;
    opacity: .6;
    margin-top: 20px;
    line-height: 2;
  }

  .contact-col {
    width: auto;
  }

  .col-contacts {
    font-size: 12px;
    opacity: .6;
    margin-top: 20px;
    line-height: 2;
    max-width: 560px;
  }

  .qr-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .qr-title {
    width: 132px;
    height: 24px;
  }

  .qr-img {
    width: 130px;
    height: 130px;
    margin-top: 20px;
  }

  .qr-desc {
    font-size: 12px;
    opacity: .6;
    margin-top: 10px;
  }

  .friend-wrap {
    margin-left: 1vw;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .friend-header {
    display: flex;
    align-items: center;
  }

  #friend-toggle {
    width: 26px;
    cursor: pointer;
    margin-left: 8px;
  }

  .friend-links {
    font-size: 15px;
    opacity: .6;
    margin-top: 20px;
    line-height: 2;
    display: flex;
    gap: 20px;
  }

  .beian {
    height: 20px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 20px;
  }

  .beian-wrap {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: .4;
  }

  /* 顶部PC表单横幅 */
  #pc-form-container {
    width: 100%;
    line-height: 0;
  }

  #pc-form-container.fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
  }

  #pc-form-container.at-bottom {
    position: relative;
    z-index: 0;
  }

  .pc-form-inner {
    position: relative;
  }

  .pc-form-bg {
    width: 100%;
    display: block;
  }

  .cont9TitleImgDesc {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cont9TitleImgDescTitle {
    font-size: 28px;
    color: #fff;
    height: 28px;
    line-height: 28px;
    margin-right: 22px;
  }

  .cont9TitleImgDescInput input {
    border: none;
    outline: none;
    height: 48px;
    width: 167px;
    border-radius: 30px;
    margin-right: 20px;
    font-size: 18px;
    line-height: 48px;
    padding: 0 22px;
  }

  .cont9TitleImgDescSubmit {
    padding: 0 40px !important;
    color: #fff;
    background-color: #121227;
    cursor: pointer;
  }

  .pc-form-close-wrap {
    position: absolute;
    top: 20%;
    right: 24px;
  }

  #pc-form-close {
    width: 29px;
    cursor: pointer;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1550px) {
  .cont9TitleImgDescTitle {
    font-size: 24px;
  }

  .cont9TitleImgDescInput input {
    height: 40px;
    font-size: 14px;
    width: 125px;
    margin-right: 10px;
    line-height: 40px;
  }
}

/* 弹窗通用样式 */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 90vw;
  max-height: 90vh;
  padding: 12px;
  position: relative;
}

.modal-content img {
  max-width: 80vw;
  max-height: 80vh;
  display: block;
}

.modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: #00000066;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}