/*联系我们开始*/

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  z-index:999;
}
.contact-container.show {
  visibility: visible;
}

.contact-container .contact {
  position: relative;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 80%;
  max-height: 80%;
}

.contact-container .contact img {
  max-width: 320px;
  max-height: 320px;
}

.contact-container .contact .contact-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 3px;
}

/*联系我们结束*/