.footer-map-container {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  color: #333;
}

.address-map-container {
  position: relative;
  border-radius: 8px;
  background: #fff;
  padding: 56px;
}

.address-map-container-phone {
  display: none;
}

.close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.address-map-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.address-map-detail-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.map-container {
  min-width: 352px;
  height: 198px;
  background-color: lightgrey;
  margin-right: 32px;
  border-radius: 8px;
}

.map-image {
  width: 352px;
  height: 198px;
  border-radius: 8px;
}

.address-info-detail-container {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: space-around;
}

.address-info-main-text {
  max-width: 320px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px; /* 140% */
  margin-bottom: 12px;
  display: none;
  text-align: left;
}

.contact-us-container {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-us-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 12px;
}

.jump-to-detail {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.jump-to-right-arr-container {
  height: 24px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.jump-to-detail > a {
  color: #0eb2b0;
  font-size: 20px;
  line-height: 24px; /* 120% */
  font-weight: 400;
}

/*包含以下四种的链接*/
.jump-to-detail > a {
  text-decoration: none;
}
/*正常的未被访问过的链接*/
.jump-to-detail > a:link {
  text-decoration: none;
}
/*已经访问过的链接*/
.jump-to-detail > a:visited {
  text-decoration: none;
}
/*鼠标划过(停留)的链接*/
.jump-to-detail > a:hover {
  text-decoration: none;
}
/* 正在点击的链接*/
.jump-to-detail > a:active {
  text-decoration: none;
}

.contact-us-name-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.contact-us-name-icon {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.contact-us-name-text {
  color: #333;
  display: none;
}

.contact-us-scan-code {
  width: 80px;
  height: 80px;
}

.contact-us-scan-code > img {
  width: 80px;
  height: 80px;
}

.address-address-info-text {
  min-width: 271px;
  max-width: 320px;
  text-align: left;
  display: none;
}

.address-address-info-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.address-address-info-icon {
  height: 24px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

@media screen and (max-width: 992px) {
  .address-map-detail-container {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
  }
  .map-container {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .address-map-container {
    display: none;
  }
  .address-map-container-phone {
    display: block;
    position: relative;
    border-radius: 8px;
    background: #fff;
    width: 311px;
    min-height: 382px;
    padding: 32px 28px 40px;
  }
  .close-icon-phone {
    width: 24px;
    height: 24px;
    position: absolute;
    top: -36px;
    right: 0;
    cursor: pointer;
  }

  .scan-code-open-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }

  .scan-code-bc-svg,
  .scan-code-icon-svg {
    position: absolute;
    top: 0;
    right: 0;
  }

  .address-map-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .address-info-main-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 8px;
    text-align: center;
  }

  .address-map-phone {
    width: auto;
    height: 144px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 8px;
  }
  .address-address-info-icon {
    height: 18px;
  }
  .address-address-info-text {
    min-width: 236px;
    text-align: left;
    font-size: 12px;
  }
  .address-address-info-container {
    margin-bottom: 24px;
  }
  .jump-to-detail > a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .jump-to-right-arr-container {
    height: 20px;
  }

  .front-address-info-container {
    display: block;
  }

  .back-address-info-container {
    display: none;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .right-back-to-icon-container {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    color: #0eb2b0;
    font-size: 16px;
    line-height: 24px; /* 150% */
    font-weight: 400;
    cursor: pointer;
  }

  .right-back-to-svg-container {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
  }

  .contact-us-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
  }
  .contact-us-scan-code {
    width: 134px;
    height: 134px;
    margin-bottom: 8px;
  }

  .contact-us-scan-code > img {
    width: 134px;
    height: 134px;
  }
}

.show {
  display: block;
}
