* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  /* css变量 */
  --m-auto: 0 auto;
  --mt-170: 170px;
  --mb-105: 105px;
}

[v-cloak] {
  display: none;
}

.tickets-detail {
  background-color: #fff;
}

.tickets-detail-banner {
  position: relative;
  color: #fff;
}

.tickets-detail-banner img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  vertical-align: middle;
}

.tickets-detail-banner .tickets-content {
  width: 1370px;
  margin: 60px auto 0;
  display: flex;

}

.tickets-detail-main {
  /* 清楚外边距合并 */
  overflow: hidden;
  background-color: #f7f7f7;
}

.tickets-detail-main>div {
  width: 1370px;
  margin: 0 auto;
}

.tickets-detail-content {
  margin: 0 auto;
  padding: 50px 0 75px 0;
  display: flex;
  flex-direction: column;
}

.tickets-detail-content-top {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.tickets-detail-content-left {
  width: 64%;
  margin-bottom: 70px;
}

.tickets-detail-content-left h2 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  padding-bottom: 20px;
  border-bottom: 1px solid #dedede;
}

.business-hours {
  margin-top: 35px;
}

.business-hours h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.business-hours p {
  font-size: 16px;
  line-height: 38px;
  color: #666;
  overflow: hidden;
}

.ticket-type {
  margin-top: 70px;
}

.ticket-type h4 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
}

.ticket-type-date,
.ticket-type-price,
.ticket-type .el-form-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 75px;
  /* background-color: #f4f4f4; */
  background-color: #ececec;
  margin-bottom: 5px;
  border-radius: 8px;
}

.ticket-type-date span {
  font-size: 16px;
  color: #333;
}

.el-form-item__error {
  padding-top: 2px;
}



.ticket-type .el-input__inner {
  border-radius: 8px;
  color: #333;
}

.ticket-type-date .el-input__inner {
  text-align: right;
}

.ticket-type-date .el-date-editor {
  width: 250px;
}

.ticket-type-date .el-input__prefix {
  color: #c7c7c7;
  padding-left: 10px;
}

.ticket-type .el-form-item {
  display: flex;
  justify-content: space-between;
}

.ticket-type .el-form-item__label {
  flex: 1;
  text-align: left;
  font-size: 16px;
  color: #333;
}

.ticket-type .el-form-item__content {
  width: 250px;
}

/* .ticket-type-date .el-date-editor .el-range-separator {
  line-height: 44px;
  width: 68px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #f4f5f6;
  border-radius: 20px;
  z-index: 2;
} */


.ticket-type-price>span {
  font-size: 16px;
  color: #333;
}

.ticket-type-price strong {
  font-size: 24px;
  color: #333;
  padding-left: 5px;
}

.ticket-type-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
}

.ticket-type-price .ticket-type-number {
  display: flex;
  align-items: center;
  height: 40px;
  margin-left: 35px;
}

.ticket-type-number button {
  width: 30px;
  height: 100%;
  font-size: 18px;
  color: #333;
  background-color: #fdd000;
  font-weight: 600;
}

.ticket-type-number button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.ticket-type-number button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.ticket-type-number span {
  width: 50px;
  height: 100%;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  margin: 0 1px;
  color: #333;
  background-color: #fdd000;
}

.tickets-detail-content-right {
  width: 32%;
  height: 400px;
  /* border: 10px solid #f4f4f4; */
  background-color: #fff;
  border-radius: 8px;
}

.tickets-detail-content-right-content {
  padding: 25px;
}

.tickets-detail-content-right-content h3 {
  text-align: center;
  font-size: 22px;
  margin-top: 5px;
  font-weight: 600;
  color: #333;
}

.cartinfo-list {
  display: flex;
  flex-direction: column;
}

.cartinfo-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #dedede;
}

.cartinfo-list-item span:first-child {
  flex-shrink: 0;
  padding-right: 15px;
}

.cartinfo-list-item span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cartinfo-list-item .price {
  font-size: 24px;
  font-weight: 600;
}

.cartinfo-buy-button {
  cursor: pointer;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  text-align: center;
  line-height: 50px;
  margin: 45px auto 0;
  height: 50px;
  background-color: #fdd000;
  border-radius: 8px;
}

.cartinfo-buy-button img {
  width: 24px;
  vertical-align: middle;
}

.cartinfo-buy-button span {
  font-size: 16px;
  color: #333;
  margin-left: 5px;
}

.tickets-detail-bottom {
  display: flex;
  justify-content: space-between;
}

.tickets-detail-bottom-left {
  border-top: 1px solid #dedede;
  width: 24%;
  padding-top: 30px;
}

.tickets-detail-bottom-left h4 {
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.tickets-detail-bottom-right {
  border-top: 1px solid #dedede;
  width: 72.5%;
  padding-top: 30px;
  font-size: 14px;
  color: #333;
  line-height: 34px;
  margin-bottom: 50px;
}

/* 选择支付 */
.tickets-detail-main .pay {
  /* margin-top: var(--mt-170); */
  margin-bottom: var(--mb-105);

}

.itemInfo {
  padding: 55px 0 0 0;
}
.itemInfo h3 {
  font-size: 30px;
  color: #333;
}
.itemInfo ul {
  display: flex;
}

.itemInfo .itemtab {
  margin: 35px 0 15px 0;

}
.info-main1, .info-main2 {
  font-size: 16px;

}

.itemtab >li{
  color: #666666;
}

.itemInfo li:first-child {
  padding-left: 30px;
  padding-right: 10px;
}

.info-main1 li:first-child {
  flex: 1;
}
.info-main1 li:nth-child(2) {
  flex: .5;
}

.info-main1 li:nth-child(3) {
  flex: .3;
}
.info-main1 li:nth-child(4) {
  flex: .2;
}

.item-content {
  align-items: center;
  height: 95px;
  background-color: #ececec;
  border-radius: 8px;
}

.f-d-c{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  row-gap: 5px;
}
.info-main1 .item-content, .info-main2 .item-content {
  color: #333;
}
.info-main1 .item-content li:nth-child(even) {
  font-size: 24px;
  font-weight: 600;
}
.info-main2 li {
  flex: 1 ;
}


.goodstotal {
  padding: 26px 0;
  border: 1px solid #e4e7ed;
  border-left: none;
  border-right: none;
  display: flex;
  justify-content: space-between;
}

.goodstotal span {
  font-size: 18px;
}

.goodstotal span:last-child {
  margin-right: 50px;
}

.userPayInfo {
  margin: 50px 0 33px 0;
}

.ydrInfo {
  margin-bottom: 33px;
}

.ydrInfo h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.ydrInfo div {
  display: flex;
  align-items: end;
  margin-bottom: 19px;
}

.ydrInfo div span {
  font-size: 16px;
  flex: 1;
}

.payChange {
  display: flex;
  margin-top: 50px;
}

.payChange div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 255px;
  height: 75px;
  border: 1px solid #dadada;
  cursor: pointer;
}

.payChange div span {
  font-size: 16px;
  margin-left: 13px;
}

.payChange div:not(:first-child) {
  margin-left: 30px;
}

/* 扫码支付 */

.tickets-detail-main .zf_pay {
  margin-bottom: var(--mb-105);
}

.zf_tit {
  display: flex;
  width: 100%;
  height: 85px;
  padding: 0 40px 0 20px;
  margin-bottom: 30px;
  border-radius: 6px;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
  background-color: #f4f4f4;
  background-color: #ececec;
  /* border: 1px solid #dadada; */
}

.zf_tit h4 {
  font-weight: 600;
  font-size: 22px;
}

.zf_tit p {
  font-size: 22px;
  font-weight: 600;
  flex: .2;
  text-align: right;
  height: 100%;
  line-height: 85px;
  border-left: 1px solid #d8d8d8;
}

.zf_content {
  width: 100%;
  /* border: 1px solid #f4f4f4; */
  border-radius: 6px;
  /* border: 10px solid #f4f4f4; */
  background-color: #fff;
  /* height: 500px; */
  /* background-color: #fff; */
  /* border: 1px solid #e09900; */
  /* background-color: #fff; */
}

.zf_center {
  display: flex;
  justify-content: center;
}

.zf_center>div {
  display: flex;
  flex-direction: column;
  width: 190px;
}

.zf_content_tit {
  padding-left: 20px;
  padding-top: 20px;
}

.zf_content_tit>span {
  font-size: 17px;
  font-weight: bold;
  display: inline-block;
  /* padding: 22px 13px; */
  /* margin-left: 30px; */
  margin-bottom: 30px;
  /* border-bottom: 4px solid #ff7323; */
}

.zf_center_code {
  width: 100%;
  height: 200px;
  /* border-radius: 4px; */
  /* box-shadow: 0px 0px 15px 5px rgb(214, 156, 9, 0.5); */
  /* box-shadow: 0px 0px 15px 5px rgb(218, 218, 218, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.zf_center_code img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  /* height: 188px; */
}

.zd_sys {
  padding: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 5px;
  width: 150px;
  margin: 0 auto;
}

.zd_sys p {
  font-size: 26px;
}


.zd_sys span {
  /* width: 127px; */
  font-size: 14px;
  line-height: 24px;
  color: #535354;
}

.zf_icon {
  /* padding-bottom: 15px; */
  text-align: center;
  /* margin-left: 75px;
   display: flex;
   flex-direction: column; */
  /* justify-content: space-around; */
}

.zf_icon img {
  /* width: 70%; */
  width: 120px;
}

.zf_center .el-loading-spinner .path {
  stroke: #e09900;
}

.zf_center .el-loading-spinner .el-loading-text {
  color: #e09900;
}

.zf_content .el-loading-mask {
  z-index: 1;
}

/* 支付成功 */
.tickets-detail-main .zf_success {
  background-color: #fff;
  height: 532px;
  display: flex;
  flex-direction: column;
  margin-top: var(--mt-170);
  margin-bottom: var(--mb-105);
}

.zf_success_tit {
  width: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px auto 67px;
}

.zf_success_tit img {
  width: 100px;
  height: 100px;
}

.zf_success_tit p {
  color: #292a29;
  font-size: 23px;
  margin: 22px 0;
}

.zf_success_tit div {
  display: flex;

}

.zf_success_tit div button {
  width: 115px;
  height: 40px;
  font-size: 16px;
  border-radius: 3px;
  color: #575856;
}

.zf_success_tit div button:last-child {
  margin-left: 12px;
}

.zf_success_tit div button:hover {
  color: #fff;
  background-color: #ff8800;
}

.zf_bot {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.zf_bot p {
  display: flex;
  font-size: 14px;
  margin-bottom: 15px;
}

.zf_bot p span {
  /* width: 100px; */
  /* text-align: right; */
  color: #9e9f9f;
  margin-right: 12px;
}

.zf_bot p em {
  color: #555555;
}


/* 酒店详情列表单独的 */

.tickets-detail .room-list {
  margin-top: 65px;
  margin-bottom: 100px;
  gap: 35px 0;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
}

.room-list-item {
  width: 100%;
  height: 260px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
}

.room-list-item:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}

.room-list-item-left {
  width: 34%;
  height: 100%;
}

.room-list-item-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.room-list-item-right {
  width: 62%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-list-item-right-top {
  padding: 50px 50px 0 0;
  flex: 1;
}

.room-list-item-right-top h4 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  padding-bottom: 25px;
  border-bottom: 1px solid #e7e7e7;
}

.room-type-info {
  display: flex;
  gap: 0 10px;
  margin-top: 20px;
}

.room-type-info span {
  padding: 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid#dadada;
}

.room-list-item-right-bottom {
  display: flex;
  justify-content: space-between;
}

.room-list-item-right-bottom strong {
  font-size: 28px;
  color: #333;
  font-weight: 600;
}

.room-list-item-right-bottom-booking {
  position: relative;
  width: 250px;
  height: 55px;
  padding: 0 35px 0 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #e7e7e7;
}

.room-list-item-right-bottom-booking::before {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: #fdd000;
  transition: .6s linear;
  z-index: -1;
}

.room-list-item:hover .room-list-item-right-bottom-booking {
  z-index: 1;
  background: transparent;
  border-color: transparent;
}

.room-list-item:hover .room-list-item-right-bottom-booking::before {
  width: 100%;
}

.room-list-item-right-bottom-booking span {
  font-size: 16px;
  color: #333;
}

.room-list-item-right-bottom-booking img {
  width: 23px;
  height: 13px;
  vertical-align: middle;
}

.el-date-table td.available:hover {
  color: #e09900 !important;
}

.el-date-table td.end-date span,
.el-date-table td.start-date span {
  background-color: #e09900 !important;
}

.el-select-dropdown__item.selected {
  color: #e09900 !important;
}

.banner-content {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: calc(-1370px / 2);
  width: 1370px;
  /* height: 240px; */
  margin-bottom: 60px;
}

.banner-content p {
  font-size: 18px;
}

.banner-content h2 {
  font-size: 50px;
  letter-spacing: 1px;
}


/* 通用的媒体查询 */
@media screen and (max-width: 1440px) {
  .tickets-detail-main>div {
    width: 85%;
  }

  .banner-content {
    width: 85%;
    margin-left: calc(-85% / 2);
  }

}

/* 单行省略号 */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 两行省略号 */
.ellipsis-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}