.visitReservation {
  width: 100%;
  min-width: 1050px;
  padding: 78px 0 80px 0;
}
.visitReservation-main {
  width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.visitReservation-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 450px;
  height: 375px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  padding: 62px 0 42px;
  font-style: normal;
  font-family: SourceHanSansSC, SourceHanSansSC;
  font-weight: 400;
  text-align: center;
}
.visitReservation-main-container:hover {
  padding: 56px 0 36px;
  background: #F9F5EF;
  border: 6px solid rgba(188, 155, 115, 0.5);
}
.visitReservation-main-container > img {
  width: 120px;
  height: 120px;
}
.visitReservation-main-container-title {
  height: 21px;
  font-weight: bold;
  font-size: 21px;
  color: #BC9B73;
  line-height: 32px;
  text-align: justify;
  margin: 10px 0 9px;
}
.visitReservation-main-container-desc {
  height: 12px;
  font-size: 12px;
  color: #BC9B73;
  line-height: 18px;
}
.visitReservation-main-container-btn {
  margin-top: 50px;
  width: 315px;
  /*height: 64px;*/
  padding: 8px 0px;
  background: #FFFFFF;
  border: 1px solid #A88254;
  font-size: 18px;
  color: #C2996D;
  line-height: 27px;
  letter-spacing: 1px;
  cursor: pointer;
}
.visitReservation-main-container:hover .visitReservation-main-container-btn {
  background: #BC9B73;
  color: #FFFFFF;
}

.dialog{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 设置背景颜色为半透明黑色 */
  z-index: 9999; /* 设置 z-index 值确保遮罩层位于其他元素之上 */
  justify-content: center;
}
.content {
  position: absolute;
  top: 10%;
  left: 20%;
  z-index: 10000;
  background-color: #fff;
  width: 60%;
  height: 70%;
  padding: 1% 1% 5% 1%;
}
.content img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content .off{
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  display: inline;
  color: #bac0c2;
  float: right;
  border: 1px solid #bac0c2;
  /* padding: 5px 10px; */
  border-radius: 50%;
  cursor: pointer;
}

.content-hint{
  width: 100%;
  text-align: center;
}