@charset "utf-8";
/* 투어특가 */
.tour {
  padding-top: 30px;
  padding-bottom: 90px;
}

.tour .section-slide {
  height: auto;
}
.sw-tour {
  height: auto;
}
.tour-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.tour-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* 1280px 일때 높이가 245이다 */
  /* 1280px이 100vw */
  /* 245px은 몇 vw 일까  */
  height: 19.14vw;
  max-height: 245px;
}
.tour-img img {
  /* absolute 를 영역 중앙에 배치 */
  position: absolute;
  left: 50%;
  top: 50%;
  /* 좌표, 영역말고 내용 즉, 보이는 부분만 이동 */
  transform: translate(-50%, -50%) scale(1.3);
  width: 100%;
}

.tour-info {
  padding: 20px;
  background: #fff;
}
.tour-info-list {
}
.tour-info-list li {
  position: relative;
  margin-bottom: 3px;
}

.tour-cate {
  position: absolute;
  left: 0;
  top: -39px;
  display: inline-block;
  background: #4a95ff;
  font-size: 14px;
  line-height: 32px;
  color: #fff;
  font-weight: 700;
  padding: 0 10px;
  border-radius: 3px;
}
.tour-title {
  font-size: 15px;
  line-height: 18px;
  color: #4a95ff;
  display: block;
  /* 1줄 말줄임 ...  */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tour-place {
}
.tour-price {
  color: #111;
  font-size: 16px;
  line-height: 24px;
}
.tour-price b {
  font-weight: 700;
  font-size: 20px;
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 1024px) {
  .tour-img {
    /* height: 138px; */
  }
  .tour-info {
    padding: 10px;
  }
  .tour-cate {
    top: -22px;
    line-height: 22px;
    padding: 0 7px;
    border-radius: 4px;
  }
  .tour-title {
    font-style: 13px;
    line-height: 15px;
  }
  .tour-price {
    font-size: 15px;
  }
  .tour-price > b {
    font-size: 15px;
    line-height: 18px;
  }
  .tour-img {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 760px) {
  .tour-img {
    height: 100px;
  }
}
