@charset "UTF-8";
.booking .form-container {
  margin-top: 10px;
  width: 260px;
}
.booking .form-container .form-item {
  width: 100%;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none !important;
  background-color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
  padding: 0;
}
.booking .form-container .form-item .label {
  width: 70px;
  text-align: right;
  margin-right: 10px;
  font-size: 16px;
  color: #333;
}
.booking .form-container .form-item input {
  flex: 1;
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 0 10px;
  box-sizing: border-box;
}
.booking .form-container .form-code {
  width: 100%;
  margin-bottom: 0;
  flex: 1;
  padding-left: 10px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #eee;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking .form-container .form-code .kaptcha-code {
  border: none;
  padding: 0;
}
.booking .form-container .form-code .kaptcha-btn {
  width: 80px;
  height: 30px;
  line-height: 30px;
  background: transparent;
  color: #1a4299;
  font-size: 12px;
  font-weight: 500;
}
.booking .form-container .form-code .kaptcha-btn:active {
  color: #132f6d;
}
.booking .form-container .select-course {
  position: relative;
  justify-content: flex-start;
  cursor: pointer;
}
.booking .form-container .select-course .down {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/pop-down.png") no-repeat center;
  transition: transform 0.2s ease;
}
.booking .form-container .select-course .down.active {
  transform: translateY(-50%) rotate(180deg);
}
.booking .form-container .select-course .current {
  display: block;
  height: 100%;
  flex: 1;
  color: #666;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #eee;
  line-height: 30px;
}
.booking .form-container .select-course .current.active {
  color: #333;
}
.booking .form-container .select-course .list {
  position: absolute;
  bottom: -228px;
  left: 80px;
  z-index: 10;
  display: none;
  width: 180px;
  max-height: 228px;
  overflow: auto;
  color: #333;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.booking .form-container .select-course .list .option {
  padding-left: 12px;
  line-height: 36px;
  text-align: left;
  cursor: pointer;
}
.booking .form-container .select-course .list .option:hover {
  background-color: rgba(26, 66, 153, 0.1);
}
.booking .form-container .submit {
  background-color: #1a4299;
  border-radius: 18px;
  color: #fff;
  width: 180px;
  height: 36px;
  line-height: 36px;
  margin: 0 auto 0;
  font-size: 14px;
  transform: translateX(40px);
}
.booking .form-container .submit:active {
  background-color: #132f6d;
}

.hot-activity .container {
  padding-bottom: 10px;
}
.hot-activity .activity-swiper {
  padding-top: 15px;
  padding-bottom: 25px;
}
.hot-activity .activity-swiper .activity-img {
  width: 256px;
  border-radius: 10px;
}
.hot-activity .activity-swiper .activity-pagination {
  bottom: 0;
}
.hot-activity .activity-swiper .activity-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #1a4299;
  opacity: 0.3;
  border-radius: 4px;
  margin: 0 5px;
}
.hot-activity .activity-swiper .activity-pagination .swiper-pagination-bullet-active {
  width: 17px;
  opacity: 1;
}

.hot-news .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 5px;
}
.hot-news .list .item {
  font-size: 14px;
  color: #333;
  line-height: 17px;
  padding-left: 20px;
  position: relative;
  transition: color 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hot-news .list .item::before {
  content: "＃";
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: 17px;
  color: #1a4299;
}
.hot-news .list .item:hover {
  color: #1a4299;
}

.hot-tag .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 10px;
  padding-top: 15px;
}
.hot-tag .list .item {
  background: #f8f8f8;
  border-radius: 15px;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 30px;
  padding: 0 10px;
  transition: all 0.2s ease;
}
.hot-tag .list .item:hover {
  background: #1a4299;
  color: #fff;
}

.hot-project .list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 5px;
}

.hot-project .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 28%;
  color: #333;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  transition: color 0.2s ease;
}

.hot-project .list .item:nth-child(3n+2) {
  width: 35%;
}

.hot-project .list .item:hover {
  color: #1a4299;
}

.hot-project .list .item .icon {
  width: 40px;
  height: 40px;
}

.hot-project .list .item .txt {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
}