.room-container {
  background-color: #f7f7f7;
}

.room-container .qlgktop {
  position: relative;
  width: 100%;
}
.room-container .qlgktop img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  vertical-align: middle;
}
.room-container .qlgktop .header-t {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: calc(-1370px / 2);
  width: 1370px;
  color: #fff;
  /* height: 240px; */
  margin-bottom: 135px;
}
.qlgktop .header-t .title {
  font-size: 34px;
  font-weight: 700;
}
.qlgktop .header-t .line-t {
  width: 30px;
  height: 1px;
  background-color: #ffffff66;
  margin: 22px 0;
}
.qlgktop .header-t .describe {
  font-size: 18px;
}
.room-card {
  margin: 1% 0;
  display: flex;
  gap: 20px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.1);
  width: 74vw;
  height: 28vh;
}
.room-container .room-list {
  width: 73vw;
  margin-bottom: 2%;
}
.room-container .room-type-info {
  font-size: 14px;
}
.room-container .room-list-item-right-top h4 {
  font-weight: 700;
}
.room-card-container {
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 2% 0;
}
.room-image {
  width: 23vw;

  background: #f0f0f0; /* 占位背景色，可替换为真实图片 */
  border-radius: 4px;
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 0 0 6px;
}
.room-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-title {
  font-size: 1.1rem;
  padding: 16px 0 14px 0;
  font-weight: 600;
  border-bottom: 1px solid #e7e7e7;
  width: 94%;
  font-size: 24px;
}
.room-desc {
  font-size: 14px;
  color: #333333;
  padding: 16px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  width: 94%;
}
.room-price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.booking-btn {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 20%;
  height: 34px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: background 0.3s;
  align-self: flex-end;
  margin-top: auto;
}
.booking-btn img {
  width: 1vw;
}
.booking-btn p {
  color: #000;
}
.booking-btn:hover {
  background: #fdd000;
  border: 1px solid #fdd000;
}
@media screen and (max-width: 1400px) {
  .room-container .qlgktop .header-t {
    width: 1128px;
  }
}
