@charset "UTF-8";
.booking .form-container {
  margin-top: 10px;
  width: 260px;
  padding: 0 15px;
}
.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: #1d479c;
  font-size: 12px;
  font-weight: 500;
}
.booking .form-container .form-code .kaptcha-btn:active {
  color: #153371;
}
.booking .form-container .submit {
  background-color: #1d479c;
  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: #153371;
}

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

.hot-course .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px 15px 0;
}
.hot-course .list .item {
  display: flex;
  justify-content: space-between;
}
.hot-course .list .item:hover .img-con .img {
  transform: scale(1.1);
}
.hot-course .list .item:hover .content .name {
  color: #1d479c;
}
.hot-course .list .item .img-con {
  border-radius: 10px;
  height: 72px;
  overflow: hidden;
  width: 123px;
}
.hot-course .list .item .img-con .img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.24s linear;
}
.hot-course .list .item .content {
  padding-top: 2px;
}
.hot-course .list .item .content .name {
  color: #333;
  font-size: 14px;
  line-height: 17px;
  width: 125px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.24s ease;
}
.hot-course .list .item .content .price {
  color: #ff4500;
  font-size: 16px;
  margin-top: 8px;
}
.hot-course .list .item .content .price span {
  font-size: 12px;
}
