    * {
      box-sizing: border-box;
    }

    .pl-25 {
      padding-left: 25px;
    }

    .pr-25 {
      padding-right: 25px;
    }

    .tickets {
      background-color: #f7f7f7;
    }
    .tickets-banner{
      position: relative;
      color: #fff;
    }

    .tickets-banner img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      vertical-align: middle;
    }

    .tickets-content {
      width: 1370px;
      margin: 60px auto 0;
      display: flex;

    }

    .tickets-content-left {
      width: 22%;
    }

    .tickets-category a {
      position: relative;
      display: block;
      height: 30px;
      font-size: 16px;
      color: #333;
      margin-bottom: 15px;
    }

    .tickets-category a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 45px;
      height: 1px;
      background-color: #dadada;
    }

    .tickets-category a.category-active::after {
      background-color: #b80000;
    }
    .tickets-category a.category-active{
      font-weight: 600;
    }

    .tickets-category div a {
      display: block;
      height: 100%;
      line-height: 30px;
      font-size: 16px;
    }

    .tickets-content-right {
      width: 78%;
      display: flex;
      flex-wrap: wrap;
      gap: 55px 70px;
      margin-bottom: 100px;
    }

    .tickets-item {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: calc((100% - 70px) / 2);
      height: 460px;
      background-color: #fff;
      border: 1px solid #dadada;
      border-radius: 8px;
      overflow: hidden;

      transition: all .5s ease;
    }

    .tickets-item:hover {
      box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);

    }

    .tickets-item:hover .tickets-item-img img {
      transform: scale(1.2);
    }

    .tickets-item h4 {
      margin-top: 15px;
      margin-bottom: 15px;
      font-size: 22px;
      height: 56px;
      line-height: 28px;
      color: #333;
      font-weight: 500;
    }

    .tickets-item .tickets-item-img {
      width: 100%;
      height: 245px;
      overflow: hidden;

    }

    .tickets-item .tickets-item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      vertical-align: middle;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      transition: all .5s ease;

    }



    .elipsis-two {
      display: -webkit-box;
      text-overflow: ellipsis;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
    }

    .tickets-item p {
      /* 两行省略号 */
      font-size: 14px;
      color: #333;
      height: 56px;
      line-height: 28px;
    }



    .ticket-buy {
      margin-top: 20px;
      transition: all 2s;
      border-top: 1px dashed #dadada;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      position: relative;
    }

    .ticket-buy::before {
      content: "";
      display: block;
      height: 100%;
      width: 0;
      position: absolute;
      top: 0;
      left: 0;
      background-color: #fdd000;
      transition: .6s linear;
      z-index: -1;
    }

    .tickets-item:hover .ticket-buy {
      z-index: 1;
      background: transparent;
    }


    .tickets-item:hover .ticket-buy::before {
      width: 100%;
    }

    .ticket-buy div {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      height: 50px;
      line-height: 50px;

    }

    .ticket-buy span {
      font-size: 16px;
      color: #333;
    }

    .tickets-arrow {
      width: 23px;
      height: 13px;
    }
    .banner-content{
      position: absolute;
      left: 50%;
      bottom: 0;
      margin-left: calc(-1370px / 2);
      width: 1370px;
      /* height: 240px; */
      margin-bottom: 135px;
    }
    .banner-content h2{
      font-size: 50px;
      letter-spacing: 1px;
      /* margin-bottom: 40px; */
    }
    .banner-content p{
      font-size: 18px;
    }
    .banner-content .line{
      width: 30px;
      height: 1px;
      background-color: rgba(255, 255, 255, .3);
      margin: 20px 0;
    }
    @media screen and (max-width: 1440px) {
      .tickets-content{
        width: 85%;
      }
      .banner-content {
        width: 85%;
        margin-left: calc(-85% / 2);

      }
    }