/* 检索框 */
.flights-searcher {
  position: relative;
  border-bottom: 1px solid #d4d7de;
}

#flights-searcher-placeholder{
  display: none;
}

#flights-searcher-placeholder.fixed{
  display: block;
  width: 100%;
  height: 161px;
}

.flights-searcher-box {
  width: 100%;
  padding-top: 0;
  border-radius: 0;
  background-color: #ebedf1;
  transition: transform .3s ease;
  border-bottom: 1px solid #d4d7de;
}

#flights-searcher-box.fixed{
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  background-color: white;
  box-shadow: 0 4px 16px -4px rgba(69, 88, 115, .2);
}

#flights-searcher-smart-placeholder.fixed{
  display: none
}


.flights-searcher-box-form {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}

/* 条件 + 结果 */
.flights-content {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  position: relative;
}

/* 结果列表 */
.flights-content-result {
  float: right;
  border: none;
  width: 840px;
  min-height: 100vh;
  margin-bottom: 20px;
}

.flights-content-result-nav{
  color: #ffffff;
  background: linear-gradient(to right, #095f70, #2c61fe);
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  line-height: 21px;
}

.flights-content-result-nav-list{
  background: hsla(0, 0%, 100%, .9);
  color: black;
  padding: 4px;
  width: 100%;
  margin-top: 6px;
  border-radius: 6px;
  display: flex;
}

.flights-content-result-nav-list-num{
  color: white;
  background-color: #2c61fe;
  border-radius: 6px;
  padding: 0px 8px;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  margin-right: 10px;
}

.flights-content-result-nav-list-edit{
  color: #2c61fe;
  font-size: 14px;
  margin-left:auto;
  line-height: 24px;
  margin-right: 6px;
  cursor: pointer;
}

.flights-content-result-nav-list-flight{
  line-height: 24px;
}

.flights-icon-small{
  width: 18px;
  margin: 0 10px;
}

.flights-content-result-tab {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0px;
  width: 100%;
}

.flights-content-result-tab-smart{
  display: none;
}

.flights-content-result-tab-smart-pulldown{
  display: none;
}

.flights-content-result-tab-baggage-pulldown{
  display: none;
}

.flights-content-result-tab-baggage-pulldown{
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.flights-content-result-tab-baggage-pulldown.show{
  opacity: 1;
  visibility: visible;
}

.flights-content-result-tab-baggage-pulldown-box{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  min-width: 670px;
  height: 100dvh;
  background-color: #fff;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.flights-content-result-tab-baggage-pulldown.show .flights-content-result-tab-baggage-pulldown-box{
  transform: translateX(0);
}

.flights-content-result-tab-baggage-pulldown-header{
  position: relative;
  height: 56px;
  border-bottom: 1px solid #e9edf5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.flights-content-result-tab-baggage-pulldown-title{
  font-size: 16px;
  font-weight: 500;
  color: #222;
  line-height: 1;
}

.flights-content-result-tab-baggage-pulldown-list{
  background: #fff;
  padding-bottom: env(safe-area-inset-bottom);
  padding: 16px 24px;
}

.baggage-list-title{
  font-size: 18px;
  font-weight: bold;
}

.baggage-list-title-sub{
  display: flex; 
  align-items: center;
  font-size: 12px;
}

.baggage-list-title-sub span{
  font-size: 12px;
  margin-left: 10px;
}

.baggage-lists{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 一行2个 */
  gap: 16px; /* 横向和纵向间距都一样 */
  margin-top: 10px;
  margin-bottom: 20px;
}

.baggage-lists-option{
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
  height: 100%; /* 配合 grid 拉齐高度 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.baggage-lists-btn{
  padding: 0 16px;
  border: none;
  border-radius: 6px;
  background: #2c61fe;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  line-height: 44px;
  width: 100%;
  text-align: center;
  margin-top: auto;
  transition: all 0.1s;
  -webkit-user-select: none;
  user-select: none;
}

.baggage-lists-btn:hover{
  background-color: #2953d6;
}

.baggage-lists-price{
  font-size: 14px;
}

.baggage-lists-price span:nth-child(1){
  font-weight: bold;
  font-size: 24px;
}

.baggage-lists-title{
  font-size: 14px;
}

.baggage-lists-service{
  margin: 6px 0;
}

.baggage-lists-service div{
  font-size: 14px;
  line-height: 24px;
}

.baggage-lists-service-box{
  display: flex;
  align-items: center;
}

.baggage-lists-service-right{
  color: #008856;
  width: 26px;
}

.baggage-lists-service-wrong{
  color: #ff7141;
  width: 26px;
}

.flights-content-result-tab-card {
  background: #fff;
  color: black;
  width: 20%;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari */
  user-select: none;
  text-align: center;
  padding-bottom: 10px;
  box-sizing: border-box !important;
}

.flights-content-result-tab-card ul{
  border-right: 1px solid #ddd;
}

.flights-content-result-tab-card ul li {
  list-style: none;
  font-size: 14px;
  word-break: break-all;
  font-weight: bold;
}

.flights-content-result-tab-card ul li:nth-child(2) {
  font-size: 14px;
  font-weight: 500;
  color: #6f7685;
}

.flights-date-range-button-date-text{
  margin-bottom: 4px;
}

/* login广告 */
.flights-content-result-login{
  background: url(/img/top/bgimg.png) right 30px center / 140px repeat, linear-gradient(90deg, #095f70, #2c61fe);
  color: white;
  font-size: 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.flights-content-result-login-word{
  display: flex;
  align-items: center;
  justify-content: center;
}

.flights-content-result-login-word img{
  width: 32px;
  margin-right: 10px;
}

.flights-content-result-login-btn{
  width: 105px;
  height: 32px;
  line-height: 32px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* 选中状态背景色 */
.flights-date-range-button.active {
  border-bottom: 2px solid #095f70;
  background-color: #ecf4fd;
}

.flights-content-result-tab-card.active ul li:nth-child(2) {
  border-bottom: 2px solid black;
}

.flights-content-result-tab-card.active ul li:nth-child(1) {
  color:#2c61fe
}

.flights-content-result-tab-card ul:hover{
  color:#2c61fe
}

.flights-date-range-button:hover{
  color:#2c61fe
}

/* 价格区间 */

.flights-date-range-container{
  width: 100%;
  margin-bottom: 10px;
}

.flights-date-range{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flights-date-range li{
  list-style: none;
  width: 13.5%;
}

.flights-date-range-button{
  padding: 8px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #818494;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
}

.flights-date-range-button.active{
  border: 2px solid #000000;
}

/*结果列表*/

.flights-content-result-lists {
  border-top: none;
  width: 100%;
  border-collapse: separate;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flights-content-result-list {
  background: #fff;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  overflow: hidden
}

.flights-content-result-list:hover{
  border: 1px solid #095f70;
}

.flights-content-result-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  width: 25%;
}

.flights-content-result-list-title-airline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 14px;
}

.flights-content-result-list-title-airline-logo {
  margin-right: 10px;
  margin-bottom: 4px;
}

.flights-content-result-list-title-airline-logo-mini {
  margin-right: 10px;
  height: 20px;
}

.flights-content-result-list-title-airline-icon{
  margin-left: 6px;
  height: 20px;
}

.flights-content-result-list-title-price {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  display: none;
}

.flights-content-result-list-title-price-num {
  color: #ff1d1c;
  font-weight: 700;
  font-size: 20px;
  margin-left: 10px;
}

.flights-content-result-list-line {
  height: 1px;
  width: calc(100% - 24px);
  margin: 0 auto;
  background-color: #d8d8d8;
}

.flights-content-result-list-flight {
  padding: 10px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.flights-content-result-list-flight-left {
  width: 40%;
}

.flights-content-result-list-flight-right {
  width: 35%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.flights-content-result-list-flight-right-word{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-right: 10px;
}

.flights-content-result-list-flight-right-des{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.flights-content-result-list-flight-left-airline-title {
  font-weight: bold;
  color: black;
  font-size: 16px;
  margin-bottom: 4px;
}

.flights-content-result-list-flight-left-airline-title span {
  font-weight: normal;
  color: black;
  font-size: 14px;
}

.flights-content-result-list-flight-left-airline-journey {
  display: flex;
}

.flights-content-result-list-flight-left-airline-journey-airport {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 14px;
  color: rgb(115, 115, 115);
  width: 30%;
  line-height: 20px;
}

.flights-content-result-list-flight-left-airline-journey-airport2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  font-size: 14px;
  color: rgb(115, 115, 115);
  width: 30%;
  line-height: 20px;
}

.flights-content-result-list-flight-left-airline-journey-airport span {
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin-bottom: 2px;
}

.flights-content-result-list-flight-left-airline-journey-airport2 span {
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin-bottom: 2px;
}

.flights-content-result-list-flight-left-airline-journey-airport-time_arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  font-size: 14px;
  color: rgb(115, 115, 115);
  line-height: 30px;
  padding: 0 10px;
}

.flights-content-result-list-flight-left-airline-journey-airport-time_arrow_line {
  height: 1px;
  width: 100%;
  background-color: #858585;
  position: relative;
}

.flights-content-result-list-flight-left-airline-journey-airport-time_arrow_line-transferNum{
  position: absolute;
  top:90%;
  left: 50%;
  transform: translate(-50%,-90%);
  white-space: nowrap;
}

.flights-content-result-list-flight-left-airline-journey-airport-time_arrow_line svg {
  position: absolute;
  top: -2px;
  right: -4px;
}

.flights-content-result-list-flight-right-seat {
  width: 100%;
  border-radius: 30px;
  border: 1px solid #2c61fe;
  color: #2c61fe;
  font-size: 14px;
  text-align: center;
  margin-bottom: 17px;
  -webkit-user-select: none; /* Safari */
  user-select: none;
  display: none;
}

.flights-content-result-list-flight-right-price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0px;
}

.flights-content-result-list-flight-right-headcount {
  font-size: 14px;
}

.flights-content-result-list-flight-right-btn {
  width: 60%;
  height: auto;
  background: #2c61fe;
  color: #fff;
  padding: 10px 12px;
  border: none;
  display: inline-block;
  text-align: center;
  font-size: 14px !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  margin-bottom: 10px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 100px;
}

.flights-content-result-list-flight-right-btn:hover{
  background-color: #2953d6;
}

.flights-content-result-list-flight-right-down {
  color: #2c61fe;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.flights-content-result-list-details {
  background-color: #f7f7f7;
}

.flights-content-result-list-details-airline{
  border-top: 1px dotted #d8d8d8;
  padding: 20px;
}

.flights-content-result-list-details-airline-title{
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
}

.flights-content-result-list-details-airline-title div:nth-child(1){
  font-size: 10pt;
  font-weight: 700;
  color: #2c61fe;
  margin-right: 50px;
}

.flights-content-result-list-details-airline-title div:nth-child(2){
  font-size: 10pt;
  margin-right: 20px;
}

.flights-content-result-list-details-airline-title div:nth-child(3){
  font-size: 10pt;
  margin-right: 20px;
}

.flights-content-result-list-details-airline-title div:nth-child(4){
  font-size: 10pt;
  color: #666;
}

.flights-content-result-list-details-airline-cabin{
  width: 100%;
  padding: 10px 0 4px 76px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flights-content-result-list-details-airline-cabin div:nth-child(2){
  margin-left: 4px;
}

.flights-content-result-list-details-airline-cabin-site{
  margin-left: 8px;
  color: #666;
}

.flights-content-result-list-details-airline-cabin-disclosure{
  margin-left: 8px;
  color:#d65a5a
}

.flights-content-result-list-details-airline-journey{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding: 10px 0 10px 76px;
}

.flights-content-result-list-details-airline-journey-date{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 12px;
  width: 24%;
  line-height: 16px;
}

.flights-content-result-list-details-airline-journey-date div span{
  font-size: 16px;
  line-height: 16px;
  margin-left: 12px;
}

.flights-content-result-list-details-airline-journey-arrow{
  height: 100%;
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.flights-content-result-list-details-airline-journey-arrow img{
  width: 12px;
}

.flights-content-result-list-details-airline-journey-arrow div{
  width: 2px;
  height: 40px;
  background-color: #2c61fe;
}

.flights-content-result-list-details-airline-journey-airport{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 12px;
  width: 50%;
}

.flights-content-result-list-details-airline-journey-time{
  font-size: 12px;
  line-height: 16px;
  width: 16%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flights-content-result-list-details-airline-journey-time img{
  width: 12px;
  margin-right: 4px;
}

/* 筛选条件 */
.flights-content-refine {
  width: 300px;
  float: left;
}

.flights-content-refine-box {
  width: 100%;
  background-color: #ebedf1;
  padding: 20px 15px;
  border-radius: 6px;
  border: 1px solid #d4d7de;
}

.flights-content-refine-box-title {
  padding: 8px 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
}

.flights-content-refine-box-title-option{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flights-content-refine-box-title-option-btn{
  font-size: 14px;
  margin-right: 10px;
  color: #2c61fe;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari */
  user-select: none;
}

.flights-content-refine-box-node{
  padding-bottom: 10px;
  border-bottom: 1px solid #d4d7de;
}

.flights-content-refine-box-node-time{
  background: #fff;
  border-radius: 52px;
  width: 85%;
  margin: 8px auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding: 8px;
  display: none;
}

.flights-content-refine-box-node-title{
  width: 85%;
  margin: 14px 10px;
  font-size: 12px;
  font-weight: bold;
  display: none;
}

.flights-content-refine-box-node-select{
  width: 100%;
  padding: 8px 10px;
  margin-left: auto;
  margin-right: auto;
}

.flights-content-refine-box-node-select-location{
  display: flex;
  font-size: 12px;
}

.flights-content-refine-box-node-select-location img{
  width: 18px;
  height: 16px;
  margin-right: 2px;
}

.flights-content-refine-box-node-time-btn{
  color: black;
  background: none;
  border-radius: 36px;
  font-family: HiraginoSans-W6;
  width: 48%;
  height: 36px;
  line-height: 36px;
  -webkit-user-select: none; /* Safari */
  user-select: none;
}

.flights-content-refine-box-node-time-btn.active{
  color: white;
  background: none;
  border-radius: 36px;
  font-family: HiraginoSans-W6;
  width: 48%;
  height: 36px;
  line-height: 36px;
  background: #095f70;
}

.flights-content-refine-box-node-time-btn:not(.active):hover {
  background: #fff;
  cursor: pointer;
}

.flights-content-refine-box-node-transfer{
  width: 100%;
  padding: 0px 10px 8px 10px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.checkbox-label-transfer{
  display: flex;
  margin-top: 10px;
  cursor: pointer;
}

.checkbox-label-transfer input{
  margin-right: 10px;
  width: 16px;
  cursor: pointer;
}

.checkbox-label-transfer:hover{
  opacity: 0.6;
}

.checkbox-label-airline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  cursor: pointer;
}

.checkbox-label-airline-name input{
  margin-right: 10px;
  width: 16px;
  cursor: pointer;
}

.checkbox-label-airline:hover{
  opacity: 0.6;
}

input[type="checkbox"]{
  transform: scale(1.4);   /* 1.4倍大小 */
}

.flights-content-refine-box-node-select-datepicker{
  display: flex;
  gap: 2px;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 18px;
}

.flights-content-card-radio {
  cursor: pointer;
  width: 20%;
}

.flights-content-card-radio input[type="radio"] {
  display: none; /* 隐藏原生radio的小圆点 */
}

.flights-content-card-radio .flights-content-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px;
  text-align: center;
  font-size: 10px;
  background: #ffffff;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000000;
  -webkit-user-select: none; /* Safari */
  user-select: none;
}

.flights-content-card-radio input[type="radio"]:checked + .flights-content-card {
  background: #095f70;
  color: #fff;
}

/* 手机用筛选菜单栏 */
.flights-smart-refine{
  display: none;
}

.flights-smart-refine-close{
  display: none;
}

/* 手机用检索航程一览 */
.flights-searcher-smart-flight{
  display: none;
  -webkit-user-select: none; /* Safari */
  user-select: none;
  background-color: white;
  transition: transform .3s ease;
}

input[type="radio"] {
  accent-color: #121826; /* 你想要的颜色 */
}

.flights-content-result-list-flight-left-logo-smart{
  display: none;
}

#flights-content-result-nav-list1{
  display: none;
}

#flights-content-result-nav-list2{
  display: none;
}

.flights-content-result-list-flight-left-baggage{
  font-size: 12px;
  color: #979797;
  margin-top: auto;
}

@media screen and (max-width: 767px){
  .flights-searcher-box-form {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    background-color: white;
  }

  .flights-content-result-tab-smart-pulldown{
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .flights-content-result-tab-smart-pulldown.show{
    opacity: 1;
    visibility: visible;
  }

  .flights-content-result-tab-smart-pulldown-box{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }

  .flights-content-result-tab-smart-pulldown.show .flights-content-result-tab-smart-pulldown-box{
    transform: translateY(0);
  }

  .flights-content-result-tab-smart-pulldown-header{
    position: relative;
    height: 56px;
    border-bottom: 1px solid #e9edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }

  .flights-content-result-tab-smart-pulldown-title{
    font-size: 16px;
    font-weight: 500;
    color: #222;
    line-height: 1;
  }

  .flights-content-result-tab-smart-pulldown-list{
    background: #fff;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .flights-content-result-tab-baggage-pulldown{
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .flights-content-result-tab-baggage-pulldown.show{
    opacity: 1;
    visibility: visible;
  }

  .flights-content-result-tab-baggage-pulldown-box{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: 100%;
    height: auto;
    background-color: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }

  .flights-content-result-tab-baggage-pulldown.show .flights-content-result-tab-baggage-pulldown-box{
    transform: translateY(0);
  }

  .flights-content-result-tab-baggage-pulldown-header{
    position: relative;
    height: 56px;
    border-bottom: 1px solid #e9edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }

  .flights-content-result-tab-baggage-pulldown-title{
    font-size: 16px;
    font-weight: 500;
    color: #222;
    line-height: 1;
  }

  .flights-content-result-tab-baggage-pulldown-list{
    background: #fff;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .baggage-lists-box{
    width: 100%;
    overflow-x: scroll;
  }

  .baggage-lists{
    width: 160%;
  }

  .sort-option{
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #222;
    border-bottom: 1px solid #e9edf5;
    box-sizing: border-box;
    cursor: pointer;
  }

  .sort-option:last-child{
    border-bottom: none;
  }

  .sort-option.active{
    color: #2563eb;
  }

  .sort-check{
    font-size: 20px;
    line-height: 1;
    color: #2563eb;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
  }

  .sort-option.active .sort-check{
    opacity: 1;
    transform: scale(1);
  }
  .flights-content-result-tab-smart{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 10px 10px 0 10px;
    font-size: 13px;
  }

  .flights-content-result-tab-smart-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .flights-content-result-tab-smart-svg{
    height: 13px;
    margin-right: 4px;
  }
  
  .flights-content-result-list-flight{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }

  .flights-content-result-list-flight-left{
    width: 60%;
    display: flex;
    flex-direction: column;
  }

  .flights-content-result-list-flight-left-logo-smart{
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    font-size: 14px;
  }

  .flights-date-range-container{
    display: none;
  }

  .flights-content-result-tab{
    display: none;
  }

  .flights-content-result-nav{
    padding: 10px;
    margin: 10px;
  }

  .flights-content-result-login{
    margin: 0 10px;
  }

  .flights-icon-small{
    margin: 0;
  }

  .flights-content-result-login{
    display: flex;
    flex-direction: column;
  }

  .flights-content-result-login-btn{
    width: 100%;
    margin-top: 10px;
  }

    /* 筛选条件 */
  .flights-content-refine {
    width: 100%;
    background-color: #ebedf1;
  }

  /* 条件 + 结果 */
  .flights-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 !important;
    position: relative;
  }

  /* 结果列表 */
  .flights-content-result {
    border: none;
    width: 100%;
    min-height: 100vh;
    margin-bottom: 20px;
  }

  .flights-content-result-tab-card ul li:nth-child(2) {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 0 4px 16px;
    color: #1ba1ff;
    font-weight: bold;
  }

  .flights-content-result-list-title{
    display: none;
  }

  .flights-content-result-list-flight-left-airline-journey-airport{
    display: flex;
    flex-direction: column;
    align-items: self-start;
  }

  .flights-content-result-list-flight-left-airline-journey-airport2{
    display: flex;
    flex-direction: column;
    align-items: self-end;
  }

  .flights-content-result-list-flight-left-airline-journey-airport span{
    font-size: 14px;
  }

  .flights-content-result-list-flight-left-airline-journey-airport2 span{
    font-size: 14px;
  }


  .flights-content-result-list-flight-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: auto;
  }

  .flights-content-result-list-flight-right-btn{
    font-size: 12px !important;
    padding: 8px 6px;
    margin-bottom: 0px;
  }

  .flights-content-result-list-flight-right-des{
    display: contents;
  }

  .flights-content-result-list-flight-right{
    width: 35%;
    display: flex;
    flex-direction: column;   /* 关键：纵向 */
    align-items: flex-end;    /* 右对齐 */
    justify-content: flex-start;
    gap: 6px;
  }

  /* 扁平化后，btn/down 会和 word 同级参与布局 */
  .flights-content-result-list-flight-right-btn{
    order: 1;                 /* 放最上 */
  }

  .flights-content-result-list-flight-right-word{
    order: 2;
  }

  .flights-content-result-list-flight-right-down{
    order: 3;
  }

  .flights-content-result-list-flight-right-price{
    font-size: 18px;
  }

  .flights-content-result-list-flight-right-word{
    margin-right: 0;
  }

  .flights-content-result-list-flight-right-down{
    font-size: 12px;
  }

  .flights-content-result-list-title-price-num{
    display: none;
  }
  
  .flights-content-result-list-flight-right-seat{
    font-size: 10px;
    margin-bottom:7px
  }

  .flights-content-result-list-details-airline{
    padding: 10px;
  }

  .flights-content-result-list-details-airline-journey-time{
    display: none;
  }

  .flights-content-result-list-flight-left-airline-title{
    font-size: 14px;
  }

  .flights-content-result-list-details-airline-journey-date div span{
    font-size: 12px;
    margin-left: 0;
  }

  .flights-content-result-list-flight-right-headcount{
    font-size: 12px;
    text-align: right;
  }

  .flights-content-result-list-details-airline-title div:nth-child(1){
    margin-right:10px
  }

  .flights-content-result-list-details-airline-cabin{
    width: 100%;
    padding: 10px 0 4px 36px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .flights-content-result-list-details-airline-journey{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0 10px 36px;
    min-height: 90px;
  }

  .flights-content-result-list-flight-left-airline-journey-airport-time_arrow{
    font-size: 12px;
    padding: 0;
  }
  
  .flights-content-result-list-title-airline-logo{
    height: 20px;
    margin: 0 10px 0 0;
  }

  .flights-content-result-list-title-airline{
    font-size: 12px;
  }

  .flights-smart-refine{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
  }

  .flights-smart-refine-node{
    text-align: center;
    width: 33.33%;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    user-select: none;
    color: black;
  }

  .flights-smart-refine-node.active{
    text-align: center;
    width: 33.33%;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    user-select: none;
    color: #1ba1ff;
    border-bottom: 2px solid #1ba1ff;
    font-weight: bold;
  }

  .flights-content-refine-box{
    border-bottom: none;
    padding: 0;
  }

  #flights-content-refine-box-node-time-smart{
    display: none;
  }

  #flights-content-refine-box-node-trans-smart{
    display: none;
  }

  #flights-content-refine-box-node-airline-smart{
    display: none;
  }

  .flights-content-refine-box-title{
    border-top: none;
  }

  .flights-smart-refine-close{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    color:#444444;
    border-top: 1px solid #ddd;
    padding: 5px 30px;
    font-size: 16px;
    font-weight: bold;
    background-color: white;
  }

  .flights-smart-refine-close-icon{
    width: 18px;
    margin-right: 4px;
  }

  #flights-searcher-box{
    display: none;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 1000;
    background: #ebedf1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  #flights-searcher-box.open{
    display: block;
    background-color: rgba(0, 0, 0, 0.45);
    height: 100dvh;
  }

    /* 默认状态 */
  #flights-searcher-box{
    margin-top: 0px;
  }

  .flights-searcher-smart-flight{
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    display: block;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    padding: 12px 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
  }

  #flights-searcher-smart-flight.fixed{
    position: fixed;
    top: -10px;
    /* left: 10px; */
    z-index: 9999;
    border: none;
    box-shadow: 0 4px 16px -4px rgba(69, 88, 115, .2);
    width: 100%;
  }

  #flights-searcher-smart-placeholder{
    display: none;
  }

  #flights-searcher-smart-placeholder.fixed{
    display: block;
    width: 100%;
    height: 82px;
  }

  #flights-searcher-placeholder.fixed{
    display: none;
  }

  .flights-searcher-smart-flight-left{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 65%;
    border-right: 1px solid #ddd;
  }

  .flights-searcher-smart-flight-left-outbound{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45%;
  }

   .flights-searcher-smart-flight-left-outbound div:nth-child(2){
    font-weight: bold;
   }

  .flights-searcher-smart-flight-left-inbound{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45%;
  }

  .flights-searcher-smart-flight-left-inbound div:nth-child(2){
    font-weight: bold;
   }

  .flights-searcher-smart-flight-left-arrow{
    width: 10%;
  }

  .flights-searcher-smart-flight-left-arrow div{
    background-color: #ddd;
    width: 100%;
    height: 3px;
  }

  .flights-searcher-smart-flight-middle{
    width: 20%;
    text-align: center;
    border-right: 1px solid #ddd;
  }

  .flights-searcher-smart-flight-middle-num{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flights-searcher-smart-flight-middle-icon{
    width: 16px;
  }

  .flights-searcher-smart-flight-right{
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .flights-searcher-smart-flight-right-icon{
    height: 18px;
  }

  .flights-content-result-lists{
    padding: 10px;
  }
}

.lang-en [data-i18n="flight.select_flight_togo1"]::after{
  content: "\00a0";
}

@media screen and (max-width: 768px) {
  #flights-searcher-box.open{
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #flights-searcher-box.open .flights-searcher-box-form{
    min-height: auto;
    max-height: none;
  }
}