   .swiper-container {
       width: 100vw;
       height: 100vh;
   }

   .slide_section {
       width: 100%;
       height: 100%;
   }

   .slide_end {
       height: 2.59rem;
       background-color: #000;
   }

   /* 第一屏============================================================ */
   .banner_swiper {
       position: absolute;
       bottom: 0;
       height: calc(100vh - 0.4rem);
   }

   .banner_slide {
       background-size: cover;
       background-position: top;
       background-repeat: no-repeat;
   }

   /* 指示器位置 */
   .banner-pagination {
       position: absolute;
       top: 10%;
       right: 30px;
       width: auto !important;
       height: 100px !important;
       left: auto !important;
   }

   .swiper-pagination-bullet {
       opacity: 1;
       width: 7px;
       height: 7px;
       background: #DEDEDE;
       margin: 0 5px;
       transition: all 0.3s ease-in-out;
   }

   .swiper-pagination-bullet-active {
       background: #FFFFFF;
       width: 0.31rem;
       border-radius: 10px;
   }

   .banner_txt_con {
       position: absolute;
       top: 50%;
       left: 1.36rem;
       transform: translateY(-50%);
   }

   .banner_txt {
       width: 5rem;
       height: 2.4rem;
       background-image: url(../images/banner_txt.png);
       background-size: contain;
       background-repeat: no-repeat;
   }

   .banner_txt-2 {
       width: 4.9rem;
       height: 0.55rem;
       background-image: url(../images/banner_txt-2.png);
       background-size: contain;
       background-repeat: no-repeat;
   }

   /* 机票 */
   .banner_slide {
       perspective: 30rem;
   }

   .card-container {
       position: relative;
       width: 100%;
       height: 100%;
       transform-style: preserve-3d;
       transition: transform 1.3s cubic-bezier(0.4, 0.2, 0.2, 1);
   }

   /* 卡片翻转效果 */
   .card-container.flipped {
       transform: rotateY(-180deg);
   }

   .card-front,
   .card-back {
       position: absolute;
       backface-visibility: hidden;
   }

   /* 正面 */
   .card-front {
       top: 10%;
       right: 0;
       width: 12.26rem;
       height: 7.28rem;
       transform: rotateY(0deg);
       cursor: pointer;
   }

   .plane_ticket_front {
       width: 100%;
       height: 100%;
       background-size: contain;
       background-repeat: no-repeat;
       background-position: bottom;
       backface-visibility: hidden;
       animation: handfront 2.3s ease-in-out infinite;
   }

   @keyframes handfront {

       0%,
       100% {
           transform: translateY(0);
       }

       50% {
           transform: translateY(0.1rem);
       }
   }

   .plane_ticket_front .hand_icon {
       position: absolute;
       bottom: 0.4rem;
       left: 45%;
       width: 0.94rem;
       height: 0.78rem;
       animation: handIcon 1.6s ease-in-out infinite;
   }

   @keyframes handIcon {

       0%,
       100% {
           transform: scale(1);
       }

       50% {
           transform: scale(1.1);
       }
   }

   .tip_txt {
       position: absolute;
       bottom: 0rem;
       left: 45%;
       color: #fff;
       font-size: 0.24rem;
       animation: handTxt 1.6s ease-in-out infinite;
   }

   @keyframes handTxt {

       0%,
       100% {
           opacity: 0.4;
       }

       50% {
           opacity: 1;
       }
   }

   /* 反面 */
   .card-back {
       top: 10%;
       left: 0;
       width: 12.26rem;
       height: 7.28rem;
       background-size: contain;
       background-repeat: no-repeat;
       background-position: bottom;
       backface-visibility: hidden;
       transform: rotateY(180deg);
   }

   .card_back_info {
       position: absolute;
       right: 0.8rem;
       top: 50%;
       transform: translateY(-50%);
       max-width: 2.46rem;

       h1 {
           font-family: 'NotoSansCJKscMedium';
           text-align: center;
           font-size: 0.40rem;
           line-height: 125%;
           font-weight: bold;
           color: #000;
       }
   }


   .b_tag_list {
       margin-top: 0.24rem;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .b_tag_en {
       margin-right: 0.065rem;
       width: 0.67rem;
       height: 0.28rem;
   }

   .b_tag_item {
       display: flex;
       align-items: center;
       justify-content: center;
       box-sizing: border-box;
       padding: 0 0.1rem;
       height: 0.28rem;
       margin-right: 0.065rem;
       color: #ffffff;
       font-size: 0.14rem;
       white-space: nowrap;
       border: 1px solid #ffffff;
       border-radius: 0.04rem;
       background: rgba(0, 0, 0, 1);
   }

   .b_tag_item img {
       margin-right: 0.021rem;
       width: 0.12rem;
       height: 0.1rem;
   }

   .banner_discount_code {
       justify-content: center;
       color: #000;
       margin: 0.14rem auto;
   }

   .btns {
       display: flex;
       flex-direction: column;
       align-items: center;
   }

   .btns button {
       margin: 0 0.13rem;
       width: 2.11rem;
       height: 0.6rem;
       text-align: center;
       line-height: 0.29rem;
       font-weight: 600;
       font-size: 0.24rem;
       border-radius: 0.50rem;
   }

   .btns button:nth-child(1) {
       margin-bottom: 0.2rem;
       background-color: #000;
       color: #fff;
   }

   .btns button:nth-child(2) {
       color: #000;
       border: 1px solid #000;
   }


   .prev_icon {
       position: absolute;
       bottom: 0.6rem;
       left: 50%;
       transform: translateX(-50%);
       width: 0.24rem;
       height: 0.12rem;
       z-index: 9;
       cursor: pointer;
       animation: handprev 2.3s ease-in-out infinite;
   }

   @keyframes handprev {

       0%,
       100% {
           transform: translateX(-50%) translateY(0);
       }

       50% {
           transform: translateX(-50%) translateY(0.1rem);
       }
   }

   /* 第二屏================================================================ */
   .scenic_spot_con {
       position: relative;
       width: 100%;
       height: 100%;
       background-color: #222222;
   }

   .scenic_spot_bg {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
   }

   .overlay::after {
       display: block;
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.3);
       z-index: 1;
   }

   .scenic_spot_bg_big {
       position: absolute;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
       z-index: 1;
   }

   .benefit_list_con {
       position: absolute;
       bottom: 1.4rem;
       right: 1.29rem;
       display: flex;
       align-items: center;
   }

   .slide_list {
       display: flex;
       align-items: center;
       justify-content: start;
       width: 11.6rem;
       height: 1.68rem;
       border-radius: 0.11rem;
       z-index: 9;
       overflow: hidden;
   }

   .slide_item {
       flex: none;
       box-sizing: border-box;
       margin-right: 0.2rem;
       width: 2.7rem;
       height: 1.68rem;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
       border-radius: 0.11rem;
       cursor: pointer;
   }

   .slide_active {
       border: 1px solid #fff;
       transition: all 0.3s ease-in-out;
   }

   .all_benefit_btn {
       position: relative;
       width: 0.77rem;
       height: 1.68rem;
       box-sizing: border-box;
       padding-top: 0.1rem;
       color: #fff;
       font-size: 0.25rem;
       writing-mode: vertical-lr;
       text-orientation: upright;
       text-align: center;
       letter-spacing: 0.09rem;
       line-height: 0.74rem;
       font-weight: bold;
       background: rgba(0, 0, 0, 0.65);
       border-radius: 0.94rem;
       border: 1px solid #fff;
       cursor: pointer;
       transition: all 0.2s ease-in-out;
       z-index: 9;
   }


   .all_benefit_btn:hover {
       background: rgba(0, 0, 0, 1);
       box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
   }

   /*  */
   .scenic_spot_content {
       position: absolute;
       top: 1.8rem;
       left: 1.3rem;
       z-index: 99;
   }

   .section_title {
       font-family: 'DFYaSongGB5HK-W9';
       font-size: 0.5rem;
       color: #FFFFFF;
   }

   .tag_list {
       margin-top: 0.62rem;
       display: flex;
       align-items: center;
   }

   .tag_item {
       display: flex;
       align-items: center;
       box-sizing: border-box;
       padding: 0 0.08rem;
       height: 0.34rem;
       margin-right: 0.08rem;
       color: #ffffff;
       font-size: 0.18rem;
       border: 1px solid #ffffff;
       border-radius: 0.04rem;
       background-color: rgba(0, 0, 0, 0.5);
   }

   .tag_item img {
       margin-right: 0.021rem;
       width: 0.18rem;
       height: 0.18rem;
   }

   .tag_en {
       margin-right: 0.08rem;
       width: 1.12rem;
       height: 0.34rem;
       background-size: contain;
       background-position: center;
       background-repeat: no-repeat;
       border-radius: 0.03rem;
   }

   .scenic_spot_title {
       margin: 0.23rem 0;
       width: 5.56rem;
       color: #ffffff;
       font-size: 0.3rem;
       font-weight: 600;
   }

   .scenic_spot_title .discount_tag {
       display: inline-block;
       box-sizing: border-box;
       padding: 0.04rem 0.08rem;
       font-size: 0.16rem;
       color: #ffffff;
       font-weight: 400;
       background-color: #00AAB3;
       border-radius: 0.03rem;
       transform: translateY(-0.06rem);
   }

   .scenic_spot_introduce {
       width: 5.56rem;
       color: #ffffff;
       font-size: 0.22rem;
       text-align: justify;
   }

   .benefits_details {
       margin: 0.2rem 0;
       color: #ffffff;
       font-size: 0.22rem;
       line-height: 0.22rem;
       text-decoration: underline;
       cursor: pointer;
   }

   .discount_code {
       margin-top: 0.11rem;
       display: flex;
       align-items: center;
   }

   .discount_code span {
       font-family: 'NotoSansCJKscMedium';
       color: #fff;
       font-size: 0.18rem;
   }

   .reservation_icon {
       margin-left: 0.19rem;
       width: 0.23rem;
       height: 0.26rem;
       cursor: pointer;
   }

   .exchange_btn {
       margin-top: 0.2rem;
       display: flex;
       align-items: center;
       cursor: pointer;
   }

   .exchange_btn span {
       font-weight: 600;
       color: #ffffff;
       font-size: 0.22rem;
   }

   .exchange_btn span:hover {
       text-decoration: underline;
   }

   .exchange_btn img {
       margin-left: 0.1rem;
       width: 0.29rem;
       height: 0.29rem;
       animation: leftAndRight 2s infinite ease-out;
   }

   @keyframes leftAndRight {
       0% {
           transform: translateX(0);
       }

       50% {
           transform: translateX(0.08rem);
       }

       100% {
           transform: translateX(0);
       }
   }

   /* 弹窗 */
   .overlay_detail {
       display: flex;
       align-items: center;
       justify-content: center;
       height: 100%;
       cursor: pointer;
   }

   .block_box {
       position: relative;
       box-sizing: border-box;
       padding: 0.76rem 0 0 0.92rem;
       width: 9rem;
       height: 7rem;
       border-radius: 0.2rem;
       background-color: #fff;
   }

   .benefit_title {
       font-family: 'NotoSansCJKscMedium';
       font-size: 0.28rem;
       font-weight: bold;
   }

   .benefit_content {
       margin-top: 0.27rem;
       width: 7.16rem;
       height: 4.5rem;
       overflow-y: auto;
       overflow-x: hidden;
   }

   .benefit_content_pre {
       font-family: 'NotoSansCJKscMedium';
       color: #000;
       line-height: 0.35rem;
       white-space: wrap !important;
   }

   .benefit_content_pre h3 {
       font-size: 0.24rem;
       font-weight: bold;
   }

   .benefit_content_pre p span {
       font-size: 0.25rem !important;
       white-space: wrap !important;
   }

   .confirm_btn {
       position: absolute;
       bottom: 0.3rem;
       left: 50%;
       transform: translateX(-50%);
       width: 2.3rem;
       height: 0.63rem;
       color: #fff;
       font-size: 0.2rem;
       background-color: #000;
       border-radius: 0.73rem;
       transition: all 0.2s ease-in-out;
   }

   .confirm_btn:hover {
       transform: translateX(-50%) translateY(-3px);
       box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
   }

   /* 第三屏================================================ */
   .experience_swiper {
       position: relative;
       width: 100%;
       height: 100%;
   }

   .experience_slide {
       background-size: cover;
       background-position: top;
       background-repeat: no-repeat;
       cursor: pointer;
   }

   .swiper-button-prev,
   .swiper-container-rtl .swiper-button-next {
       background-image: url(../images/swiper_icon.png);
       width: 0.6rem !important;
       height: 0.6rem !important;
       background-size: contain;
       left: 1.25rem;
   }

   .swiper-button-next,
   .swiper-container-rtl .swiper-button-prev {
       transform: rotate(180deg);
       background-image: url(../images/swiper_icon.png);
       width: 0.6rem !important;
       height: 0.6rem !important;
       background-size: contain;
       right: 1.25rem;
   }

   .experienc-pagination {
       position: absolute;
       bottom: 1.48rem !important;
       left: 2.54rem !important;
       width: auto !important;
       right: auto !important;
   }

   .experience_introduce {
       position: absolute;
       bottom: 2.1rem;
       left: 2.54rem;
   }

   .experience_title {
       display: flex;
       align-items: center;

       h1 {
           font-family: 'DFYaSongGB5HK-W9';
           color: #fff;
           font-size: 0.5rem;
       }
   }

   .experience_title img {
       margin-right: 0.2rem;
       width: 0.49rem;
       object-fit: contain;
   }

   .experience_introduce p {
       margin-top: 0.3rem;
       font-size: 0.26rem;
       color: #fff;
   }

   .flight_info {
       position: absolute;
       bottom: 1.48rem;
       right: 2.53rem;
       width: 5.41rem;
       height: 3.26rem;
       border-radius: 0.12rem;
       border: 1px solid #fff;
       background: rgba(255, 255, 255, 0.25);
   }

   .flight_info_txt {
       margin: 0.45rem 0 0 0.53rem;
       color: #fff;
   }

   .flight_info_txt p:nth-child(1) {
       letter-spacing: 0.01rem;
       font-size: 0.24rem;
   }

   .flight_info_txt p:nth-child(2) {
       font-size: 0.4rem;
       line-height: 170%;
       font-weight: 600;
   }

   .flight_info_txt p:nth-child(3) {
       font-size: 0.3rem;
   }

   .flight_info_txt p:nth-child(4) {
       margin-top: 0.06rem;
       letter-spacing: 0.01rem;
       font-size: 0.16rem;
   }

   .book_btn {
       display: block;
       margin: 0.3rem auto;
       width: 4.36rem;
       height: 0.58rem;
       color: #fff;
       font-size: 0.24rem;
       background-color: #000;
       border-radius: 0.22rem;
       transition: all 0.3s ease;
   }

   .book_btn:hover {
       transform: translateY(-3px);
       box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
   }


   /* 第四屏================================================================ */
   .explain_con {
       position: relative;
       width: 100%;
       height: 100vh;
       background-image: url(../images/explain_bg.png);
       background-size: cover;
       background-repeat: no-repeat;

       h1 {
           margin: 1.4rem 0 0 1.27rem;
           font-family: 'DFYaSongGB5HK-W9';
           font-size: 0.5rem;
           color: #fff;
       }
   }

   .route_bg {
       margin: 0 auto;
       width: 16.43rem;
       height: 5.21rem;
       background-size: cover;
       background-repeat: no-repeat;
       background-image: url(../images/route_bg.png);
   }

   .view_detail {
       display: block;
       margin: 0.6rem auto 0 auto;
       width: 2.78rem;
       height: 0.58rem;
       color: #fff;
       font-size: 0.24rem;
       font-weight: bold;
       border-radius: 1.46rem;
       background: none;
       border: 1px solid #fff;
       transition: all 0.3s ease;

   }

   .view_detail:hover {
       transform: translateY(-3px);
       box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
   }


   /* 第五屏====================================================== */
   .fqa_con {
       position: relative;
       width: 100%;
       height: 100vh;
       background-image: url(../images/fqa_bg.png);
       background-size: cover;
       background-repeat: no-repeat;

       h1 {
           margin: 1.4rem auto 0 auto;
           font-family: 'DFYaSongGB5HK-W9';
           text-align: center;
           font-size: 0.5rem;
           color: #fff;
       }
   }


   .faq_swiper_con {
       margin: 0 auto;
       position: relative;
       margin-top: 0.61rem;
       width: 8rem;
       height: 2.8rem;
   }

   .faq_swiper {
       width: 100%;
       height: 100%;
       border-radius: 0.2rem;
   }

   .problem-pagination {
       position: absolute;
       bottom: -0.44rem;
       left: 50%;
       transform: translateX(-50%);
   }

   .fqa-next {
       right: -2rem;
   }

   .fqa-prev {
       left: -2rem;
   }

   .faq_card {
       box-sizing: border-box;
       padding: 0.28rem 0.21rem 0 0.21rem;
       width: 100%;
       height: 100%;
       border-radius: 0.2rem;
       background: rgba(0, 1, 27, 0.2);
       cursor: pointer;
   }

   .question_text {
       font-family: 'DFYaSongGB5HK-W9';
       font-size: 0.25rem;
       color: #fff;
   }

   .question_text .q {
       font-size: 0.44rem !important;
   }

   .answer_text {
       display: flex;
       margin-top: 0.26rem;
       text-align: justify;
       font-size: 0.2rem;
       line-height: 0.33rem;
       color: #fff;
   }

   .answer_text .a {
       margin-left: 0.02rem;
       font-family: 'DFYaSongGB5HK-W9';
       font-size: 0.44rem !important;

   }

   .answer_text .a_txt {
       margin-left: 0.085rem;
   }

   .clause {
       position: absolute;
       bottom: 0.5rem;
       left: 1.27rem;
       width: 80%;
   }

   .clause pre {
       margin: 0 auto;
       white-space: normal;
       font-size: 0.15rem !important;
       line-height: 0.2rem;
   }

   .clause pre p span,
   .clause pre p,
   .clause pre strong {
       color: #fff !important;
   }