
.content {
  padding: 85px 5%;
  min-height: 1080px;
  background-size: cover;
}
.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 8px;
}
.tabs .tab-item {
  margin: 0 30px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  width: 300px;
  height: 80px;
  color: #fff;
  opacity: 0.6;
  font-size: 24px;
  cursor: pointer;
}
.tabs .tab-item.active {
  opacity: 1;
}
.tabs .tab-item.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #FECB00;
}
.data-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 1600px) {
  .data-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 2000px) {
  .data-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 2800px) {
  .data-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 3600px) {
  .data-list {
    grid-template-columns: repeat(8, 1fr);
  }
}
.hotel {
  background: #fff;
  padding: 20px;
}
.data-item {
  margin-bottom: 40px;
  height: 400px;
  display: flex;
  align-items: center;
  align-items: stretch;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
}
.data-item .item-box {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  transform-style: preserve-3d;
}
.data-item:hover .item-box {
  transform: rotateY(180deg);
}
.data-item:not(:nth-of-type(4n)) {
  margin-right: 2.66%;
}
.data-item .front,
.data-item .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #fff;
}
.data-item .front {
  z-index: 2;
}
.data-item .back {
  padding: 14px;
  transform: rotateY(180deg);
}
.data-item .back .title {
  padding: 0;
}
.data-item .back .desc {
  line-height: 1.8;
  margin-top: 10px;
	font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
}
.data-item .back .more,
.data-item .back .sign-btn {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  width: calc(100% - 16px);
  text-align: center;
}
.data-item .sign-btn {
  height: 40px;
  display: block;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 16px;
  color: #fff;
  background: #c00000;
}
.data-item .img {
  position: relative;
  height: 243px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center 0;
}
.data-item .img .tag {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 12px 0 12px;
  padding: 8px 20px;
  color: #fecb00;
  font-size: 16px;
  background: #c00000;
}
.data-item .title {
  display: flex;
  align-items: center;
  align-items: flex-start;
  flex: 1;
  margin: 33px 0 0;
  padding: 0 14px;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.data-item .title img {
  margin-right: 20px;
}
.data-item .view {
  padding: 0 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  display: none;
  justify-content: space-between;
  font-size: 20px;
  color: #000000;
  transition: all 0.3s;
}
.data-item .view .more {
  background: transparent;
  color: #000;
  border-left-color: #000;
  transition: all 0.3s;
}
.info-list {
  border: 1px solid #999;
  border-radius: 4px;
  padding: 16px;
}
.info-list .info-item {
  flex: 1;
  text-align: center;
  padding: 16px;
  line-height: 24px;
}
.info-list .info-item:not(:last-of-type) {
  border-right: 1px solid #999;
}
.info-list .info-item .label {
  font-size: 16px;
  font-weight: bold;
}
.info-list .info-item .value {
  font-size: 14px;
  color: #666;
}
.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 31px auto 0;
  width: 390px;
  height: 74px;
  border-radius: 8px;
  border: solid 2px #fcc000;
  font-size: 30px;
  font-weight: bold;
  color: #fcc000;
  transition: all 0.3s;
  cursor: pointer;
}
.load-more:hover {
  background: #fcc000;
  color: #000;
}


.accommodation {
	background: #fff;
	padding: 20px;
	font-size: 1.1em;
	max-width: 100%; /* 确保表格不会超过容器宽度 */
	overflow-x: auto; /* 允许水平滚动 */
	margin: 20px 0; /* 添加一些外边距 */
}

table {
    width: 100%; /* 表格宽度为100% */
    border-collapse: collapse; /* 合并表格线 */
}

th, td {
    border: 1px solid #ccc; /* 设置灰色边框 */
    padding: 8px; /* 单元格内边距 */
    text-align: left; /* 文本左对齐 */
}
