* {
  margin: 0;
  padding: 0;
}
a 
{
	text-decoration: none; 
}

/* 未访问的链接 */
a:link {
  color: #000000;
}

/* 已访问的链接 */
a:visited {
  color: #000000;
}

/* 鼠标悬停的链接 */
a:hover {
  color: red;
}

.left-icon {
  position: absolute;
  left: 30px;
  top: 120px;
  z-index: 100;
  display: flex;
  gap: 20px;
}
.banner {
  position: relative;
  height: 240px;
}
.right-icon {
  position: absolute;
  right: -17px;
  top: 120px;
}
.right-icon a {
  color: #000;
  text-decoration: none;
  margin-right: 50px;
}
.float-out {
  position: absolute;
  top: 46px;
  right: 42px;
  padding-top: 3px;
  background: red;
  width: 200px;
  height: 360px;
  border-radius: 7px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.3s ease;
  z-index: 1000;
}
.gallery {
  padding-bottom: 25px;
}
.gallery:hover .float-out {
  opacity: 0.9;
  visibility: visible;
}
.float-in {
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 200px;
  height: 360px;
  border-radius: 7px;
}
li {
  list-style: none;
}
.float-in li {
  margin-left: 40px;
  padding-top: 30px;
  color: #000;
}
.banner .title {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.footer {
  width: 100%;
  height: 296px;
  background-color: #0e0e0e;
}
.footer p {
  color: #666666;
  font-size: 14px;
}
.footer span {
  color: #bbbbbb;
  font-size: 14px;
}
.footer h6 {
  padding-top: 30px;
  color: #ffffff;
  font-size: 16px;
}
.footer-container {
  position: relative;
  display: flex;
  margin: 0 auto;
  width: 1200px;
}
.footer-left-top {
  padding-left: 30px;
  padding-top: 30px;
}
.footer-left-bottom {
  padding-left: 30px;
  padding-top: 40px;
}
.last {
  padding-top: 55px;
}
.local {
  position: absolute;
  z-index: 0;
  top: 76px;
  left: -13px;
}
.local2 {
  position: absolute;
  z-index: 1;
  top: 76px;
  left: 8px;
}
.footer-left {
  position: relative;
}
.footer-mid {
  position: relative;
  padding-top: 53px;
  padding-left: 20px;
}
.footer-left-bottom2 {
  padding-left: 30px;
  padding-top: 21px;
}
.lab {
  display: flex;
  z-index: 1000;
  gap: 15px;
  padding-top: 27px;
}
.lab-item1 {
  color: #999999;
  width: 50px;
  height: 22px;
  border: 1px solid #999999;
  text-align: center;
  line-height: 20px;
}
.lab-item2 {
  color: #999999;
  width: 87px;
  height: 22px;
  border: 1px solid #999999;
  text-align: center;
  line-height: 20px;
}
.lab-item3 {
  color: #999999;
  width: 58px;
  height: 22px;
  border: 1px solid #999999;
  text-align: center;
  line-height: 20px;
}
.footer-right {
  padding-left: 165px;
}
.lab div:hover {
  color: #fff;
  background: red;
  border: 1px solid red;
}
.footer-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}
.icon-img {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.icon-img1 {
  background: #3b5a9a;
  width: 31px;
  height: 31px;
  border-radius: 50%;
}
.icon-img2 {
  background: #17a9e1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.icon-img3 {
  background: #17a9e1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.footer-bottom-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden; /* 圆形裁剪 */
  cursor: pointer;
}

.icon-img,
.icon-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.icon-img img,
.icon-img1 img {
  max-width: 60%;
  max-height: 60%;
  transition: filter 0.3s ease;
}

/* 默认状态：显示 icon-img，隐藏 icon-img1 */
.icon-img {
  opacity: 1;
  z-index: 2;
}

.icon-img1 {
  opacity: 0;
  transform: translateY(100%); /* 初始位置在下方 */
  z-index: 1;
}

/* 悬停时切换图层 */
.footer-bottom-icon:hover .icon-img {
  opacity: 1;
  transform: translateY(-100%);
}

.footer-bottom-icon:hover .icon-img1 {
  opacity: 1;
  transform: translateY(0); /* 滑入显示 */
}
.footer-bottom-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.left-icon {
  position: absolute;
  left: 30px;
  top: 120px;
  z-index: 100;
  display: flex;
  gap: 20px; /* 设置图标之间的垂直间距为 20px */
}
.ledt-icon a {
  margin: 0 20px;
}
.icon-img,
.icon-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* 第二个 */
.icon-img {
  opacity: 1;
  z-index: 2;
}

.icon-img2 {
  opacity: 0;
  transform: translateY(100%); /* 初始位置在下方 */
  z-index: 1;
}
.footer-bottom-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden; /* 圆形裁剪 */
  cursor: pointer;
}

.icon-img,
.icon-img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 主图层：始终静止显示 */
.icon-img {
  z-index: 2;
  opacity: 1;
}

.icon-img img,
.icon-img2 img {
  max-width: 60%;
  max-height: 60%;
  transition: filter 0.3s ease;
}

/* 悬停时显示的图层 */
.icon-img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%); /* 初始隐藏在下方 */
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1;
}

.footer-bottom-icon:hover .icon-img2 {
  transform: translateY(0); /* 向上滑入 */
  opacity: 1;
}
/* 第三个 */
.icon-img {
  opacity: 1;
  z-index: 2;
}

.icon-img3 {
  opacity: 0;
  transform: translateY(100%); /* 初始位置在下方 */
  z-index: 1;
}
.footer-bottom-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden; /* 圆形裁剪 */
  cursor: pointer;
}

.icon-img,
.icon-img3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 主图层：始终静止显示 */
.icon-img {
  z-index: 2;
  opacity: 1;
}

.icon-img img,
.icon-img3 img {
  max-width: 60%;
  max-height: 60%;
  transition: filter 0.3s ease;
}

/* 悬停时显示的图层 */
.icon-img3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%); /* 初始隐藏在下方 */
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1;
}

.footer-bottom-icon:hover .icon-img3 {
  transform: translateY(0); /* 向上滑入 */
  opacity: 1;
}
.footer-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}

/* 基本样式 */
.nextrooms {
  height: auto;padding-bottom: 40px;
  background: #fbfbfb;
}
.nextrooms h5 {
  padding: 40px 0 20px 0;
  text-align: center;
  font-size: 36px;
}
.nextrooms h6 {
  text-align: center;
  font-size: 36px;
}
.nextrooms-img {
  display: flex;
  width: 94%;
  flex-wrap: wrap;
  gap: 25px;
  padding-top: 60px;
  max-width: 1290px;
  margin: 0 auto;
}
.nextrooms-img a{display: block;}
.nextrooms-img a:hover{text-decoration: none;}
.nextrooms-img-item {
  max-width: 375px;width:100%; 
  height: 450px;
  background-color: #fff;

}
.max-img {
  max-width: 375px;width: 100%;
  height: 288px;
  overflow: hidden;
}
.pic:hover {
  color: red;
}
.max-img img {
  transition: transform 0.3s ease;width: 100%;display: block;
}

.max-img:hover img {
  transform: scale(1.05);
}
.room-info {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
.room-info-content {
  display: flex;
  gap: 7px;
}
.room-info-content div {
  border: 1px solid #000;
  padding: 0 10px;
}
.tips-info {
  display: flex;
  justify-content: center;
  padding-top: 20px;padding-bottom: 30px;
}
.tips-info-content {
  display: flex;
  gap: 7px;
}
.tips-info-content div {
/*  border: 1px solid #000;
*/  padding: 0 10px;
}
ul.pagination li{display: inline-block;border: 1px solid #000;padding: 0 10px;margin: 0 5px;}
ul.pagination li.active{background-color: black;color: #fff;}
ul.pagination li.active a{color: #fff;}

.tips {
  height: auto;
  background: #fbfbfb;
}
.tips-content {
  position: relative;
  max-width: 1290px;width: 94%;
  height: 172px;
  margin: 0 auto;
  border-top: 1px solid #c3c3c3;
}
.tips-top {
  display: flex;
  gap: 20px;
  align-items: center;
}
.tips-bottom {
  padding-top: 20px;
  display: flex;
  gap: 90px;
  align-items: center;
  width:86%;
}
.linecolor {
  width: 35px;
  height: 1px;
  background: #707070;
  transition: width 0.5s ease;
}

.arr:hover ~ .linecolor {
  width: 65px;
}
.arr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  transition: background-color 0.5s ease;
}
.arr:hover {
  background-color: #000;
}
.lab-img {
  position: absolute;
  top: 50%;width: 12%;
  transform: translateY(-50%);
  right: 0;
}
.tips-content-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.all {
  padding-top: 50px;
}
.tips h5 {
  padding: 40px 0 20px 0;
  text-align: center;
  font-size: 36px;
}
.tips h6 {
  text-align: center;
  font-size: 36px;
}
.all a{display: block;}
  .tips-date{color: #979797; font-size: 24px}
  .tips-top p.tips-tit{display: -webkit-box;-webkit-line-clamp:2;overflow: hidden;text-overflow: ellipsis;-webkit-box-orient: vertical;color: #3f3f3f; font-size: 18px}
.tips-des{color: #707070; font-size: 14px}


@media screen and (max-width: 1270px) {
  .nextrooms-img{display: block;overflow: hidden;}
  .nextrooms-img a{float: left;width: calc(33% - 11px );margin-right: 20px;}
  .nextrooms-img-item{height: auto;padding-bottom: 20px;margin-bottom: 20px;}
  .nextrooms-img a:nth-child(3n){float: right;margin-right: 0;}



}


@media screen and (max-width:1024px) {
  .nextrooms-img a{;width: calc(50% - 10px );margin-right: 0;}
  .max-img{height: auto;}
  .nextrooms-img-item{height: auto;padding-bottom: 20px;margin-bottom: 20px;}
  .nextrooms-img a:nth-child(3n){float: left;}
  .nextrooms-img a:nth-child(2n){float: right;}

  .max-img{max-width: 100%;}  
  .nextrooms-img-item{max-width: 100%;margin-bottom: 30px;}


}

@media screen and (max-width:768px) {

  .tips-bottom{width: 100%;}
  .tips-date{font-size: 20px;width: 58px;}
  .tips-top{gap:10px;}
  .lab-img{display: none;}
  .tips-top p.tips-tit{width: 70%;}
  .tips-des{display: -webkit-box;-webkit-line-clamp:3;overflow: hidden;text-overflow: ellipsis;-webkit-box-orient: vertical;}
  .nextrooms h5{font-size: 30px;}
}

@media screen and (max-width:468px) {
  .nextrooms-img a{width: 100%;}
  
}
