.ticket {
  position: relative;
  padding-top: 60px;
}
.layout {
  position: relative;
}
.ticket_top {
  padding-bottom: 20px;
  position: relative;
}
.ticket_top_title {
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ticket_top_text {
  font-size: 28px;
  font-weight: 700;
  /* display: flex;
    justify-content: center; */
  text-align: center;
}
.ticket_top_subtext {
  font-size: 18px;
  font-weight: 400;
  color: rgba(18, 18, 18, 0.5);
  text-align: center;
  padding-top: 15px;
}
.ticket_top_category {
  display: flex;
  justify-content: center;
  /* padding-top: 20px;
  width: 100%; */
  margin-bottom: 25px;
}
.ticket_button_list {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-bottom: 20px;
}

.ticket_button_list li {
  display: block;
}
.ticket_button_list li button {
  padding: 0 20px;
  border: 1px solid#e5e5e5;
  height: 44px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 22px;
  color: #111;
  white-space: nowrap;
}
.ticket_focus {
  border: 1px solid#333;
  background-color: #333 !important;
  font-weight: 600;
  color: #fff !important;
}
.ticket_slide_wrap {
  position: relative;
}
.sticket_slide {
  display: flex;
  gap: 20px;
}
.ticket_slide_item {
  display: block;

  width: 100%;
  border-radius: 11px;
}
.ticket_image {
  position: relative;
  max-height: 400px;
  height: 31.25vw;
  border-radius: 11px;
  overflow: hidden;
}
.ticket_image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    linear-gradient(180deg, transparent 68.5%, rgba(0, 0, 0, 0.6));
}

.ticket_image img {
  /* 이미지 영역안에 딱맞게 채우기 */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ticket_rank {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  z-index: 10;
}
.ticket_info {
  height: 28%;
  min-height: 154px;
  padding: 15px 20px;
}
.ticket_item_title {
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.ticket_place {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  padding: 2px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ticket_day {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.ticket_option {
  display: flex;
  gap: 5px;
  padding: 7px 0;
}
.ticket_option span {
  font-size: 11px;
  font-weight: 400;
}
.ticket_red {
  border: 1px solid #ef3e43;
  color: #ef3e43;
  padding: 5px;
  border-radius: 2px;
}
.ticket_blue {
  border: 1px solid #4a95ff;
  color: #4a95ff;
  padding: 5px;
  border-radius: 2px;
}

.ticket_slide_prev {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid#e5e5e5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.13);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 999;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 24px;
}

.ticket_slide_prev img {
  transform: rotate(180deg);
}
.ticket_slide_next {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid#e5e5e5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.13);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 999;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transform: translateX(50%) translateY(-50%);
  border-radius: 24px;
}
.ticket_footer {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  position: relative;
}
.ticket_moer_bt {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border: 1px solid#e5e5e5;
  height: 56px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  border-radius: 23px;
}

/* 반응형 */

@media all and (max-width: 1280px) {
}
@media all and (max-width: 1080px) {
}
@media all and (max-width: 1024px) {
  .ticket {
    padding-top: 20px;
    border-top: 8px solid#f0f4f4;
  }
  .ticket_top {
    padding-bottom: 15px;
  }
  .ticket_top_text {
    font-size: 20px;
  }
  .ticket_top_subtext {
    font-size: 15px;
    padding-top: 0;
  }
  .ticket_top_category {
    margin-bottom: 20px;
  }
  .ticket_button_list li button {
    height: 34px;
  }
  /* .ticket_image{
    width: 150px;
    height: 200px;
  }  */
  .ticket_info {
    padding: 10px;
  }
  .ticket_item_title {
    font-size: 15px;
    font-weight: 400;
  }
  .ticket_footer {
    padding-top: 0;
    padding-bottom: 20px;
  }
  .ticket_moer_bt {
    width: 100%;
    border-radius: 4px;
    height: 48px;
  }
}
@media all and (max-width: 960px) {
}
@media all and (max-width: 760px) {
}
