@charset "utf-8";

body,
html {
  width: 100%;
  overflow-x: hidden;
  font: calc(100vw / 120) arial;
}

/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
fieldset,
lengend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td,
/* table elements 表格元素 */
div {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:focus {
  outline: none;
}

/* 设置默认字体 */
body,
button,
input,
select,
textarea {
  font: 12px/1 'Microsoft YaHei', Tahoma, Helvetica, Arial, '\5b8b\4f53',
    sans-serif;
  /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

body,
a {
  color: #666;
}

h1 {
  font-size: 18px;
  /* 18px / 12px = 1.5 */
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 14px;
}

h4,
h5,
h6 {
  font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

i,
em,
b {
  font-style: normal;
}

address,
cite,
dfn,
em,
var {
  font-style: normal;
}

/* 将斜体扶正 */
code,
kbd,
pre,
samp,
tt {
  font-family: 'Courier New', Courier, monospace;
}

/* 统一等宽字体 */
small {
  font-size: 12px;
}

/* 小于 12px 的中文很难阅读，让 small 正常化 */
/* 重置列表元素 */
ul,
ol {
  list-style: none;
}

/* 重置浏览器默认样式 select */
select,
option {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* 重置input焦点问题 */
[contenteditable='true'],
input,
textarea {
  -webkit-user-select: auto !important;
  -khtml-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  -o-user-select: auto !important;
  user-select: auto !important;
}

/* 重置文本格式元素 */
a,
s {
  text-decoration: none;
  outline: none;
  blur: expression(this.onFocus=this.blur());
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

/*a:hover { text-decoration: underline;}*/
abbr[title],
acronym[title] {
  /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
  border-bottom: 1px dotted;
  cursor: help;
}

q:before,
q:after {
  content: '';
}

/* 重置表单元素 */
legend {
  color: #000;
}

/* for ie6 */
fieldset,
img {
  border: none;
  /* img 搭车：让链接里的 img 无边框  注：optgroup 无法扶正*/
}

button,
input,
select,
textarea {
  font-size: 100%;
  /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th,
table td {
  border: 1px solid #ddd;
}

/* 重置 hr */
hr {
  border: none;
  height: 1px;
}

/* 表单 在浏览器上的默认样式*/
input,
input:focus,
button,
button:focus,
textarea,
textarea:focus {
  outline: none;
  border: none;
}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html {
  overflow-y: scroll;
}

/* ie7以下两个以上的 li浮动产生的空白间隙bug */
li {
  +vertical-align: top;
  _vertical-align: top;
}

/* ie下li元素的内联元素底部产生空白 */
li * {
  *zoom: 1;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* ie下图片标签上有空白 */
img {
  vertical-align: middle;
  *vertical-align: top;
}

/* ie下input标签文本居中 */
input {
  vertical-align: middle;
}

input[type='number'] {
  -moz-appearance: textfield;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 以下为自用公共样式 */
/* 浮动 */
.fl,
.fl-li li,
.fl-a {
  float: left;
  _display: inline;
}

.fr,
.fr-li li,
.fr-a {
  float: right;
  _display: inline;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}

.padd {
  padding: 0.1px;
}

.opacity {
  filter: alpha(opacity=80);
  /* IE */
  -moz-opacity: 0.8;
  /* 老版Mozilla */
  -khtml-opacity: 08;
}

/* 清除浮动 */
.cb:after {
  content: '.';
  display: block;
  height: 0px;
  overflow: hidden;
  visibility: hidden;
  clear: both;
}

/* 内联块级元素 */
.ib,
.flexslider .hd ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.transition {
  transition: all 0.5s cubic-bezier(0, 0.93, 1, 1);
  -webkit-transition: all 0.5s cubic-bezier(0, 0.93, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0, 0.93, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0, 0.93, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0, 0.93, 1, 1);
}

.db {
  display: block;
}

.th {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.es {
  overflow: hidden;
  display: -webkit-box;
  text-align: justify;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.es.es-1 {
  -webkit-line-clamp: 1;
}

.es.es-3 {
  -webkit-line-clamp: 3;
}

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

.w {
  width: 100%;
}

.h {
  height: 100%;
}

.pr {
  position: relative;
}

.oh {
  overflow: hidden;
}

.br {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#BF000000, endColorstr=#BF000000);
}

.bg {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  padding-left: 13.5%;
  padding-right: 13.5%;
}

.container2 {
  padding-left: 15%;
  padding-right: 11.5%;
}

.df {
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.fz {
  font-size: 0;
}

.align-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.df-between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
}

.df-justify-center {
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}

.df-flex-auto {
  -webkit-box-flex: auto;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: auto;
  /* OLD - Firefox 19- */
  -webkit-flex: auto;
  /* Chrome */
  -ms-flex: auto;
  /* IE 10 */
  flex: auto;
}

.df-flex-1 {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
}

.flex-flow {
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

.df-shrink {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.title {
  line-height: 1.5;
}

.text-center {
  text-align: center;
}

.hide {
  display: none;
}

/*公共样式结束*/
/*header*/
.mobile-logo {
  display: none;
}

.mobile-btn-all {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 3%;
  z-index: 99999999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
}

.mobile-btn-all a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.3s;
}

.mobile-btn-all a svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.mobile-btn-all #btn-close {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

.mobile-btn-all.on #btn-close {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.mobile-btn-all.on #btn-close svg {
  fill: #fff;
}

.mobile-btn-all.on #btn-open {
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
}

.mobile-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(51, 51, 51, 0.3);
  transition: all 0.55s cubic-bezier(0.4, 0, 0, 1);
}

.mobile-nav ul {
  width: 85%;
  height: 100%;
  padding: 5%;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav ul li {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.mobile-nav ul li > a {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
}

.mobile-nav ul li:nth-of-type(4) > a {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  background: url(../img/icon58.png) right center no-repeat;
}

.mobile-nav ul li.on > a {
  background: url(../img/icon59.png) right center no-repeat;
}

.mobile-nav ul li .sub {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.4s ease-out, opacity 0.4s ease-out;
}

.mobile-nav ul li.on .sub {
  opacity: 1;
  transition: height 0.4s ease-in, opacity 0.4s ease-in;
}

.mobile-nav ul li .sub a {
  display: flex;
  font-size: 16px;
  color: #666;
  margin-top: 16px;
}

.mobile-nav ul li .sub a:first-child {
  margin-top: 24px;
}

.mobile-nav.on {
  opacity: 1;
  left: 0;
  visibility: visible;
}

.mobile-nav ul .button {
  background-color: #3ba7f4;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mobile-nav ul .button a {
  color: #fff;
  font-size: 1.25rem;
}

/*header*/

/*footer*/
@media (max-width: 1440px) {
  .zd-fz-12 {
    font-size: 12px !important;
  }

  .zd-fz-13 {
    font-size: 13px !important;
  }

  .zd-fz-14 {
    font-size: 14px !important;
  }

  .zd-fz-15 {
    font-size: 15px !important;
  }

  .zd-fz-16 {
    font-size: 16px !important;
  }

  .zd-fz-17 {
    font-size: 17px !important;
  }

  .zd-fz-18 {
    font-size: 18px !important;
  }

  .zd-fz-19 {
    font-size: 19px !important;
  }

  .zd-fz-20 {
    font-size: 20px !important;
  }

  html,
  body {
    font-size: calc(100vw / 100);
  }

  .container,
  .container2 {
    padding-left: 6%;
    padding-right: 6%;
  }

  .main .index-special {
    padding-left: 6%;
  }

  .main .index-special .mySwiper2 .swiper-slide .bottom-box {
    padding: 0 1rem;
    padding-top: 3rem;
  }

  .main .index-Popular .mySwiper3 {
    width: calc(100% - 6%);
  }

  .main
    .index-Popular
    .mySwiper4
    .swiper-wrapper
    .swiper-slide
    .grid-item
    .img-box {
    width: 14rem;
  }

  .main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box {
    padding: 0 1rem;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .main .index-Popular {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: 0rem;
  }

  .main .index-Popular .Popular-top-box .tab-box::after {
    width: calc(100% - 12%);
  }

  .MainThree .page-box7 .top-box {
    padding-left: 12%;
  }

  /* 关于我们 */
  .MainThree .page-box7 .bottom-box,
  .MainThree .page-box7 .top-box {
    padding-left: 6%;
  }

  .MainThree .page-box6 {
    margin-bottom: 4rem;
  }
}

@media (max-width: 1024px) {
  .ipad-fz-12 {
    font-size: 12px !important;
  }

  .ipad-fz-13 {
    font-size: 13px !important;
  }

  .ipad-fz-14 {
    font-size: 14px !important;
  }

  .ipad-fz-15 {
    font-size: 15px !important;
  }

  .ipad-fz-16 {
    font-size: 16px !important;
  }

  .ipad-fz-17 {
    font-size: 17px !important;
  }

  .ipad-fz-18 {
    font-size: 18px !important;
  }

  .ipad-fz-19 {
    font-size: 19px !important;
  }

  .ipad-fz-20 {
    font-size: 20px !important;
  }

  .none,
  .page-chronicle-box .img-box,
  .page-details-box .details-page-right {
    display: none;
  }

  html,
  body {
    font-size: 80%;
  }

  .mobile-btn-all {
    opacity: 1;
    visibility: visible;
  }

  #header .pc-header {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .mobile-logo {
    width: 17vw;
    position: absolute;
    top: 50%;
    left: 3%;
    z-index: 100;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #header .btns-M {
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.625rem 1.5rem;
    display: block;
    position: absolute;
    left: 80%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: 0.4s;
    -webkit-transition: 0.4s;
  }

  #header .btns-M a,
  #header .btns-M span {
    font-size: 16px;
    color: #3e6089;
  }

  #header {
    height: 5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 0px 10px #ddd;
    background-color: #182d5c;
  }

  .container,
  .container2 {
    padding-left: 3%;
    padding-right: 3%;
  }

  .main .index-special {
    padding-left: 3%;
  }

  .main #index-cruise {
    height: 7rem;
  }

  .main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box {
    padding: 1rem;
    padding-top: 1.5rem;
  }

  .main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide {
    gap: 1rem;
  }

  .main
    .index-Popular
    .mySwiper4
    .swiper-wrapper
    .grid-item
    .bottom-box
    .price-box {
    margin-top: 1.5rem;
  }

  .main .index-Popular .mySwiper3 {
    width: calc(100% - 3%);
  }

  .main .index-brand .bottom-box ul,
  .main .index-brand,
  .main .index-Popular,
  .main .index-journey,
  #footer > .top-box {
    padding-bottom: 2rem;
  }

  .main .index-brand .top-box .brand-title h1 {
    margin-bottom: 2rem;
  }

  .main .index-journey,
  .main .index-Popular,
  .main .index-Popular .mySwiper3,
  #footer {
    padding-top: 2rem;
  }

  .main .index-journey > .bottom-box,
  .main .index-Popular .mySwiper4 .btns,
  .main .index-Popular .Popular-top-box .tab-box {
    margin-top: 2rem;
  }

  .main .index-Popular .Popular-top-box .tab-box::after {
    width: calc(100% - 6%);
  }

  /* 购买支付_提交页 */
  .MainTwo > .page-box1 ul li {
    width: 12rem;
    height: 12rem;
  }

  .MainTwo > .page-box1 ul li i {
    font-size: 3.5rem;
  }

  .MainTwo > .page-box1 ul li::after {
    right: -3rem;
  }

  .MainTwo {
    padding-bottom: 2rem;
  }

  .MainTwo > .page-box1 {
    padding-top: 2rem;
    margin-bottom: 2rem;
  }

  .MainTwo .page-box2 {
    margin-bottom: 2rem;
  }

  .MainTwo .page-box3 {
    padding: 2rem;
  }

  /* 购买支付_下单页 */
  .MainTwo .page-box4 {
    padding: 2rem;
  }

  .MainTwo .page-box4 .btns-box,
  .MainTwo .page-box4 .information-box {
    margin-top: 2rem;
  }

  .MainTwo .page-box4 .ul-box ul li,
  .MainTwo .page-box4 .information-box .box1 {
    padding: 1rem;
  }

  /* 关于我们 */
  .MainTwo .page-information {
    padding-bottom: 0;
  }

  .MainThree .banner-gywm {
    height: 25rem;
  }

  .MainThree .page-box5 {
    padding-top: 3rem;
  }

  .MainThree .page-box6 {
    padding-top: 2rem;
  }

  .MainThree .page-box6,
  .MainThree .page-box7 .top-box,
  .MainThree .page-box7 .bottom-box {
    margin-bottom: 2rem;
  }

  .MainThree .page-box7 .top-box {
    padding-left: 3%;
  }

  /* 关于我们_联系我们 */
  .MainThree .color-box .page-box9 .img-box {
    height: 28rem;
  }

  /* 关于我们_人在旅途 */
  .MainThree .color-box {
    padding-top: 0rem;
    padding-bottom: 2rem;
  }

  .MainThree .color-box .page-box10 ul li h1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .page-paging-box {
    margin-top: 2rem;
  }

  /* 关于我们_人在旅途_详情页 */
  .MainThree .color-box.pd-Two,
  .MainThree .color-box .page-box11 .page-box12 .left-box {
    padding: 2rem;
  }

  .MainThree .color-box .page-box11 .page-box12 .left-box .tab-box p,
  .MainThree .color-box .page-box11 .page-box12 .left-box .title-box,
  .MainThree .color-box .page-box11 .page-box12 .left-box .title-box .img-box {
    margin-top: 2rem;
  }

  /* 我的订单 */
  .MainTwo .page-box13 .page-right,
  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box {
    padding: 2rem 1rem;
  }

  .MainTwo .page-box13 .page-right .title-box ul li .top-box {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    height: auto;
  }
  .MainTwo .page-box13 .page-right .title-box ul li .top-box p {
    color: #333;
  }

  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box h1 {
    font-size: 1.125rem;
  }

  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box h3 {
    padding-left: 1.5rem;
  }

  .MainTwo .page-box13,
  .MainTwo .page-box13 .page-right .page-paging-box {
    margin-top: 2rem;
  }
  .MainFive .page-bac .page-box28 .bottom-box ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.MainTwo .page-box13 .page-right .title-box ul li .top-box .orderNumber {
  width: fit-content;
}

@media (max-width: 768px) {
  [wap='hide'] {
    display: none !important;
  }

  .mb-fz-12 {
    font-size: 12px !important;
  }

  .mb-fz-13 {
    font-size: 13px !important;
  }

  .mb-fz-14 {
    font-size: 14px !important;
  }

  .mb-fz-15 {
    font-size: 15px !important;
  }

  .mb-fz-16 {
    font-size: 16px !important;
  }

  .mb-fz-17 {
    font-size: 17px !important;
  }

  .mb-fz-18 {
    font-size: 18px !important;
  }

  .mb-fz-19 {
    font-size: 19px !important;
  }

  .mb-fz-20 {
    font-size: 20px !important;
  }

  .container,
  .container2 {
    padding-left: 3%;
    padding-right: 3%;
  }

  .mobile-btn-all {
    opacity: 1;
    visibility: visible;
  }

  #header .pc-header {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .mobile-logo {
    width: 40%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 3%;
    z-index: 100;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  #header .btns-M {
    left: 65%;
  }

  #header {
    height: 5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 0px 4px #ddd;
  }

  .page-login .login-box {
    width: 90%;
    right: 50%;
    top: 55%;
    transform: translate(50%, -50%);
    height: auto;
    padding: 2.5rem;
  }

  .page-login .login-box .box-bottom input[type='text'] {
    text-indent: 1rem;
  }

  .page-login .login-box .box-bottom .select-input input[type='button'] {
    width: 8rem;
  }

  .main #index-cruise {
    height: auto;
    padding: 10px;
  }

  .main #index-cruise .page-search {
    flex-wrap: wrap;
  }
  .MainFive .page-box17 .main #index-cruise .page-search {
    padding-left: 0;
  }
  .main #index-cruise .page-search .select-input input,
  .main #index-cruise .page-search #SearchForFlightRoutes a {
    width: 100%;
  }

  .main #index-cruise .page-search > div {
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid #fff;
  }

  .main #index-cruise .page-search input {
    height: 4rem;
  }

  .main #index-cruise .page-search .airline {
    width: 100%;
    height: 4rem;
    margin-top: 1rem;
    border-bottom: 0;
  }

  .main #index-cruise .page-search button {
    padding: 0;
    width: 100%;
    height: 100%;
    text-indent: 1.5rem;
  }

  .main #index-cruise .page-search .select-time .month-list {
    display: none;
  }

  .main .index-special {
    padding-top: 2rem;
    min-height: auto;
    padding-bottom: 2rem;
    padding-right: 3%;
  }

  .main .index-special > .top-box {
    margin-bottom: 2rem;
  }

  .main .index-special .mySwiper2 .swiper-slide {
    height: auto;
  }

  .main .index-special .mySwiper2 .swiper-slide .float-box {
    display: none;
  }

  .main .index-special .mySwiper2 .switch {
    padding-right: 0;
    justify-content: center;
    margin-top: 2rem;
  }

  .main .index-special .mySwiper2 .swiper-slide .bottom-box {
    padding: 10px;
  }

  .main .index-special .mySwiper2 .swiper-slide .bottom-box .title {
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
  }

  .main .index-special .mySwiper2 .swiper-slide .bottom-box .title ul {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }

  .main .index-special .mySwiper2 .swiper-slide .bottom-box .title ul li {
    margin-top: 10px;
    width: 32%;
    margin-left: 0px;
  }

  .main .index-special .mySwiper2 .swiper-slide .bottom-box .title ul li + li {
    margin-left: 0px;
  }

  .main .index-special .mySwiper2 .swiper-slide .bottom-box .title ul::after {
    content: '';
    display: block;
    width: 32%;
    height: 0;
  }

  .main .index-special .mySwiper2 .swiper-slide .bottom-box .price-box {
    margin-top: 10px;
  }

  .main .index-Popular .mySwiper3 {
    width: 94%;
    float: none;
  }

  .main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide {
    flex-wrap: nowrap;
    overflow-y: auto;
    padding: 10px 1px;
  }

  .main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide .grid-item {
    width: 100%;
  }

  .main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box {
    width: 100%;
  }

  .main
    .index-Popular
    .mySwiper4
    .swiper-wrapper
    .swiper-slide
    .grid-item
    .img-box {
    display: none;
  }

  .main .index-Popular .mySwiper4 .btns {
    width: 100%;
    justify-content: center;
  }

  .main .index-Popular .Popular-top-box .tab-box {
    overflow-y: auto;
    width: 100%;
    padding-bottom: 10px;
  }

  .main .index-Popular .Popular-top-box .tab-box .tabItem {
    width: 33% !important;
    flex-shrink: 0;
    margin-right: 1rem;
  }

  .main .index-Popular .Popular-top-box .tab-box .tabItem .img-box {
    margin: 0 auto;
  }

  .main .index-Popular .Popular-top-box .tab-box::after {
    width: 290%;
  }

  .main .index-Popular .Popular-top-box .tab-box .tabItem:last-child {
    margin-right: 0px;
  }

  .main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box h1 {
    font-size: 1.5rem;
  }

  .main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide .grid-item {
    width: 100%;
    height: 17rem;
    flex-shrink: 0;
  }

  .main
    .index-Popular
    .mySwiper4
    .swiper-wrapper
    .swiper-slide
    .grid-item
    .img-box {
    width: 12rem;
  }

  .main .index-brand .top-box {
    padding-top: 4rem;
  }

  .main .index-brand .top-box .title-box h1,
  .main .index-brand .top-box .brand-title h1 {
    font-size: 2.5rem;
  }

  .main .index-brand .top-box .title-box h2 {
    font-size: 1.5rem;
    line-height: 50px;
  }

  .main .index-brand .top-box .brand-title h2.wap {
    font-size: 1.5rem;
  }

  .main .index-brand .bottom-box ul {
    padding: 0 3%;
    padding-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-y: auto;
  }

  .main .index-brand .bottom-box ul li {
    width: 33%;
    flex-shrink: 0;
  }

  .main .index-brand .top-box .brand-title h2 {
    display: none;
  }

  .main .index-brand .top-box .brand-title h2.wap {
    display: block;
  }

  .main .index-journey > .bottom-box {
    margin: 0;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .main .index-journey > .bottom-box .page-box1,
  .main .index-journey > .bottom-box .page-box2 {
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
  }

  .main .index-journey > .bottom-box .page-box1 {
    width: 49%;
    padding: 1rem 10px;
    height: auto;
    min-height: 25rem;
    justify-content: space-between;
  }

  .main .index-journey > .bottom-box .page-box1 h2 {
    line-height: 1.5;
    margin-top: 1rem;
  }

  .main .index-journey > .bottom-box .page-box1 a {
    position: inherit;
    margin-top: 1rem;
  }

  .main .index-journey {
    padding-bottom: 0px;
  }

  /* footer */
  #footer > .top-box {
    flex-direction: column;
    align-items: flex-start;
  }

  #footer > .top-box .left-box {
    margin-bottom: 2rem;
  }

  #footer > .top-box .right-box {
    width: 100%;
  }

  #footer > .top-box .right-box::after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  #footer > .bottom-box {
    margin-top: 2rem;
    flex-direction: column;
  }

  #footer > .bottom-box .left-box ul li {
    padding-left: 2rem;
  }

  #footer > .bottom-box .body-box {
    margin-top: 2rem;
  }

  #footer > .bottom-box .body-box ul {
    justify-content: space-between;
  }

  #footer > .bottom-box .body-box ul li + li {
    margin: 0;
  }

  #footer > .bottom-box .right-box {
    margin-top: 2rem;
  }

  #footer > .bottom-box {
    padding-bottom: 2rem;
  }

  #footer > .footer-bottom p {
    line-height: 1.5;
  }

  #footer > .top-box .right-box p {
    font-size: 0.875rem;
  }

  /* 购买支付_提交页 */
  .MainTwo .banner {
    margin-top: 5rem;
    height: 15rem;
  }

  .MainTwo .banner img {
    object-fit: cover;
  }

  .MainTwo > .page-box1 ul {
    flex-wrap: wrap;
    padding-top: 20px;
    position: relative;
    justify-content: center;
    margin: 0 -10px;
  }

  .MainTwo > .page-box1 ul li {
    width: 27%;
    height: 9rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    margin: 0 10px;
  }

  .MainTwo > .page-box1 ul li .img-box {
    width: 2.5rem;
    height: 2.5rem;
  }

  .MainTwo > .page-box1 ul li p {
    margin-top: 1rem;
    font-size: 1.125rem;
  }

  .MainTwo > .page-box1 ul li i {
    font-size: 2.5rem;
    margin-top: 0rem;
  }

  .MainTwo > .page-box1 ul li::after {
    display: none;
  }

  .MainTwo .page-box3,
  .MainTwo .page-box3 .title-box {
    padding: 1rem;
  }

  .MainTwo .page-box3 .title-box .title h1 {
    margin-top: 1rem;
  }

  .MainTwo .page-box3 .title-box .title h1 {
    margin-bottom: 1rem;
  }

  /* 购买支付_下单页 */
  .MainTwo .page-box4 {
    padding: 10px;
  }

  .MainTwo .page-box4 .tab-box {
    margin-top: 10px;
  }

  .MainTwo .page-box4 .ul-box ul li .left-box {
    display: none;
  }

  .MainTwo .page-box4 .ul-box ul li,
  .MainTwo .page-box4 .information-box .box1 {
    padding: 10px;
  }

  .MainTwo .page-box4 .ul-box ul li .right-box .bottom-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .MainTwo .page-box4 .ul-box ul li .right-box .bottom-box p {
    background-size: contain;
  }

  .MainTwo .page-box4 .ul-box ul li .right-box .bottom-box p:last-child {
    margin-top: 1rem;
  }

  .MainTwo .page-box4 .btns-box,
  .MainTwo .page-box4 .information-box {
    margin-top: 1rem;
  }

  .MainTwo .page-box4 .ul-box ul li + li,
  .MainTwo .page-box4 .information-box .box1 {
    margin-top: 1rem;
  }

  .MainTwo .page-box4 .information-box .box1 ul {
    flex-direction: column;
  }

  .MainTwo .page-box4 .information-box .box1 ul li {
    width: 100%;
    display: flex;
  }

  .MainTwo .page-box4 .information-box .box1 ul li + li {
    margin-top: 1rem;
  }

  .MainTwo .page-box4 .information-box .box1 ul li p {
    margin-top: 1rem;
  }

  /* 关于我们 */
  .MainThree .page-box5 {
    flex-direction: column;
  }

  .MainThree .page-box5 .left-box {
    margin-right: 0px;
    padding-top: 0rem;
    height: 5rem;
  }

  .MainThree .page-box5 .left-box .title-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
  }

  .MainThree .page-box5 .left-box i {
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
  }

  .MainThree .page-box5 .right-box .top-box {
    margin-top: 2rem;
  }

  .MainThree .page-box6 {
    padding-right: 40px;
  }

  .MainThree .page-box7 .bottom-box .btns .prev,
  .MainThree .page-box7 .bottom-box .btns .next {
    width: 3.5rem;
    height: 3.5rem;
  }

  .MainThree .banner-gywm {
    height: auto;
    margin-top: 5rem;
  }

  .MainThree .banner-gywm .title-box h1 {
    font-size: 2rem;
  }

  .MainThree .banner-gywm .title-box h2 {
    font-size: 1rem;
  }

  .MainThree .banner-gywm .title-box {
    left: 3%;
  }

  /* 关于我们_常见问题 */
  .MainThree .color-box {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .MainThree .color-box .page-box8 .title-box {
    padding: 10px;
  }

  .MainThree .color-box .page-box8 .tabs-box {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .MainThree .color-box .page-box8 .tabs-box li {
    width: calc(100% / 3);
    padding: 20px 30px;
  }

  .MainThree .color-box .page-box8 .tabs-box li a {
    font-size: 1.125rem;
    white-space: nowrap;
  }

  .MainThree .color-box .page-box8 .title-box h1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  /* 关于我们_联系我们 */
  .MainThree .color-box .page-box9 .top-box {
    padding: 10px;
  }

  .MainThree .color-box .page-box9 .top-box h1 {
    font-size: 1.5rem;
  }

  .MainThree .color-box .page-box9 ul li,
  .MainThree .color-box .page-box9 .img-box {
    margin-top: 2rem;
  }

  .MainThree .color-box .page-box9 ul {
    flex-direction: column;
  }

  .MainThree .color-box .page-box9 ul li {
    width: 100%;
    margin-top: 1rem;
  }

  .MainThree .color-box .page-box9 .img-box {
    height: 15rem;
  }

  .MainThree .color-box .page-box9 ul li h2 {
    margin-bottom: 1rem;
  }

  /* 关于我们_人在旅途 */

  .MainThree .color-box .page-box10 ul li .img-box {
    height: auto;
  }

  /* 关于我们_人在旅途_详情页 */
  .MainThree .color-box .page-box12 {
    flex-direction: column;
  }
  .MainThree .color-box .page-box12 img {
    max-width: 100%;
    height: auto;
  }

  .MainThree .color-box.pd-Two {
    padding: 2rem 10px;
  }

  .MainThree .color-box .page-box11 .page-box12 .left-box {
    padding: 10px;
  }

  .MainThree .color-box .page-box11 .page-box12 .left-box .tab-box p,
  .MainThree .color-box .page-box11 .page-box12 .left-box .title-box,
  .MainThree .color-box .page-box11 .page-box12 .left-box .title-box .img-box {
    margin-top: 1rem;
  }

  .MainThree .color-box .page-box11 .page-box12 .left-box .title-box .img-box {
    flex-direction: column;
  }

  .MainThree
    .color-box
    .page-box11
    .page-box12
    .left-box
    .title-box
    .img-box
    .left,
  .MainThree
    .color-box
    .page-box11
    .page-box12
    .left-box
    .title-box
    .img-box
    .right {
    width: 100%;
    margin: 10px 0px;
    height: 19.5rem;
  }

  .MainThree .color-box .page-box11 .page-box12 .right-box {
    width: 100%;
    margin-left: 0px;
    margin-top: 2rem;
  }

  /* 我的订单 */
  .MainTwo .page-box13 {
    flex-direction: column;
  }

  .MainTwo .page-box13 .page-left {
    width: 100%;
  }

  .MainTwo .page-box13 .page-right {
    margin-top: 2rem;
  }

  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .left-box {
    display: none;
  }

  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box {
    padding: 10px;
    flex-direction: column;
  }

  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .right-box {
    width: 100%;
    align-items: flex-start;
  }

  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box h1,
  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box h2,
  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box h3,
  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box p {
    margin-bottom: 10px;
  }

  .MainTwo .page-box13 .page-right .title-box ul li .bottom-box .right-box p {
    margin-top: 1rem;
  }

  /* 我的订单_订单详情 */
  .MainTwo .page-box13 .page-box14 .dd-xqy ul li .top-box {
    flex-direction: column;
    padding: 10px;
    height: auto;
    align-items: flex-start;
  }

  .MainTwo .page-box13 .page-right .dd-xqy ul li .top-box p,
  .MainTwo .page-box13 .page-right .dd-xqy ul li .top-box em,
  .MainTwo .page-box13 .page-right .dd-xqy ul li .top-box i,
  .MainTwo .page-box13 .page-right .dd-xqy ul li .top-box a {
    margin-top: 10px;
  }

  .MainTwo .page-box13 .page-right .dd-xqy ul li .bottom-box .body-box p {
    margin: 0px;
  }

  .MainTwo .page-box13 .page-right .xxr-box .box1 {
    padding: 10px;
  }

  .MainTwo .page-box13 .page-right .xxr-box .box1 ul {
    flex-direction: column;
    align-items: center;
  }

  .MainTwo .page-box13 .page-right .xxr-box .box1 ul li {
    display: flex;
    width: 100%;
    margin-top: 1rem;
    align-items: center;
  }

  .MainTwo .page-box13 .page-right .xxr-box .box1 ul li h2 {
    flex-shrink: 0;
  }

  .MainTwo .page-box13 .page-right .xxr-box .box1 ul li p {
    margin-top: 0px;
  }

  .MainTwo .page-box13 .page-right .xxr-box .box1 ul li:first-child {
    margin-top: 0px;
  }

  /* paging */
  .page-paging-box {
    justify-content: center;
    gap: 5px;
  }

  .page-paging-box a {
    margin-right: 0px;
  }

  /* 我的订单_联系人 */
  .MainTwo .page-box14 .page-box15 ul li .input-box,
  .MainTwo .page-box14 .page-box15 ul li .select-input,
  .MainTwo .page-box14 .page-box15 ul li,
  .MainTwo .page-box14 .page-box15 ul li > div {
    width: 100%;
  }

  .MainTwo .page-box14 .page-box15 ul li p {
    min-width: auto;
  }

  .MainTwo .page-box14 .page-box16,
  .MainTwo .page-box14 .page-box15 {
    padding: 10px;
  }

  .MainTwo .page-box14 .page-box15 ul li + li,
  .MainTwo .page-box14 .page-box15 ul .btns {
    margin-top: 1rem;
  }

  .MainFive .page-box17 .page-box18 {
    padding: 10px;
    padding-bottom: 2rem;
  }

  .MainFive .page-box17 .page-box18 .page-box19 > ul > li {
    width: 100%;
    height: auto;
    padding: 10px;
  }

  .MainFive
    .page-box17
    .page-box18
    .page-box19
    > ul
    > li
    .bottom-box
    .left-box
    h1 {
    background-size: contain;
  }

  .MainFive
    .page-box17
    .page-box18
    .page-box19
    > ul
    > li
    .top-box
    .title-box
    h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .MainFive .page-box17 .page-box18 .page-box19 > ul > li .bottom-box {
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .MainFive
    .page-box17
    .page-box18
    .page-box19
    > ul
    > li
    .bottom-box
    .left-box {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .img-box {
    display: none;
  }

  .MainFive .page-box17 .page-box18 .page-box19 .page-paging-box {
    margin-top: 2rem;
  }

  .MainFive
    .page-box17
    .page-box18
    .page-box19
    > ul
    > li
    .bottom-box
    .left-box
    ul {
    width: 100%;
    /* justify-content: space-between; */
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 8px;
  }

  .MainFive
    .page-box17
    .page-box18
    .page-box19
    > ul
    > li
    .bottom-box
    .left-box
    ul
    li
    + li {
    margin-left: 0px;
  }

  .MainFive .margin-b {
    padding-bottom: 2rem;
  }

  .MainFive .page-box17 .main #index-cruise {
    height: auto;
  }

  .MainFive .page-box17 .main #index-cruise .page-search button {
    padding: 0;
  }

  .MainFive .page-box17 .page-box18 .tab-box a::after,
  .MainFive .page-box17 .page-box18 .tab-box a:last-child::after {
    width: 1.75rem;
    background-size: 50%;
  }

  .MainFive .page-box17 .page-box18 .page-box19 {
    margin-top: 1rem;
  }

  /* 邮轮航线列表页_购买弹窗 */
  .MainFive .margin-b.pd {
    padding-top: 2rem !important;
  }

  .MainFive .page-box20 {
    padding: 10px;
  }

  .MainFive .page-box20 .page-box21 .left-box {
    display: none;
  }

  .MainFive .page-box20 .page-box21 .right-box {
    width: 100%;
    padding: 10px;
  }

  .MainFive .page-box20 .page-box21 .right-box .top-box h1,
  .MainFive .page-box20 .page-box21 .right-box .top-box h2,
  .MainFive .page-box20 .page-box21 .right-box .top-box h3 {
    margin-bottom: 1rem;
  }

  .MainFive .page-box20 .page-box21 .right-box .bottom-box .left h1 {
    font-size: 1.75rem;
    margin-top: 1rem;
  }

  .MainFive .page-box20 .page-box21 .right-box .bottom-box .left p {
    font-size: 0.875rem;
  }

  .MainFive .page-box20 .page-box22 > ul > li {
    padding: 10px;
  }

  .MainFive .page-box20 .page-box22 ul li .img-box {
    display: none;
  }

  .MainFive .page-box20 .page-box22 ul li .right-box .top-box {
    padding-bottom: 1rem;
  }

  .MainFive
    .page-box20
    .page-box22
    ul
    li
    .right-box
    .top-box
    > .df:first-child {
    flex-direction: column;
    align-items: flex-start;
  }

  .MainFive .page-box20 .page-box22 ul li .right-box .top-box > .df {
    flex-direction: column;
    margin-top: 0px;
  }

  .MainFive .page-box20 .page-box22 ul li .right-box .top-box .title-box p {
    margin-top: 1rem;
  }

  .MainFive .page-box20 .page-box22 ul li .right-box .top-box ul.df {
    flex-direction: column;
  }

  .MainFive
    .page-box20
    .page-box22
    ul
    li
    .right-box
    .top-box
    > .df
    .left
    ul
    li
    p,
  .MainFive
    .page-box20
    .page-box22
    ul
    li
    .right-box
    .top-box
    > .df
    .left
    ul
    li:last-child
    p {
    background-size: contain;
  }

  .MainFive
    .page-box20
    .page-box22
    ul
    li
    .right-box
    .top-box
    > .df
    .left
    ul
    li:last-child
    p {
    margin-left: 0px;
  }

  .MainFive
    .page-box20
    .page-box22
    ul
    li
    .right-box
    .top-box
    > .df
    .left
    ul
    li
    p,
  .MainFive .page-box20 .page-box22 ul li .right-box .top-box > .df .right {
    margin-top: 1rem;
  }

  .MainFive .page-box20 .page-box22 ul li .right-box .bottom-box {
    margin-top: 1rem;
  }

  .MainFive .page-box20 .page-box22 ul li .right-box .bottom-box ul {
    flex-direction: column;
  }

  .MainFive .page-box20 .page-box22 ul li .right-box .bottom-box ul li {
    width: 100%;
  }

  .MainFive .page-box20 .page-box22 ul li .right-box .bottom-box ul li + li {
    margin-top: 1rem;
  }

  .MainFive .page-box23 {
    padding: 10px;
  }

  .MainFive .page-box23 .body-box ul li {
    flex-direction: column;
  }

  .MainFive .page-box23 .body-box,
  .MainFive .page-box24 .myDiv,
  .MainFive .page-box24 .myDiv .arrow {
    margin-top: 2rem;
  }

  .MainFive .page-box23 .body-box ul li .right-box {
    margin-top: 2rem;
  }

  .MainFive .page-box24 {
    padding: 2rem 10px;
  }

  .MainFive .page-box25 {
    height: auto;
    justify-content: flex-start;
  }

  .MainFive .page-box25 ul {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .MainFive .page-box25 ul li + li {
    margin-left: 0px;
    margin-top: 10px;
  }

  .MainFive .page-box25 ul a {
    margin-left: 0px;
    margin-top: 10px;
  }

  /* 邮轮航线列表页_详细信息 */
  .MainFive .page-bac {
    padding: 10px;
  }

  .MainFive .page-bac .page-box26 .mySwiper6 {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }

  .MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul {
    grid-template-columns: 31% 31% 31%;
  }

  .MainFive
    .page-bac
    .page-box26
    .mySwiper6
    .swiper-wrapper
    .swiper-slide
    ul
    li {
    height: 4.5rem;
  }

  .MainFive .page-bac .page-box27 .bottom-box .left-box {
    display: none;
  }

  .MainFive .page-bac .page-box27 .bottom-box,
  .MainFive .page-bac .page-box28 {
    margin-top: 2rem;
  }

  .MainFive .page-bac .page-box27 .bottom-box .right-box {
    padding: 10px;
  }

  .MainFive .page-bac .page-box28 .bottom-box ul {
    flex-wrap: wrap;
  }

  .MainFive .page-bac .page-box28 .bottom-box ul li {
    width: 100%;
  }

  .MainFive .page-bac .page-box28 .bottom-box,
  .MainFive .page-bac .page-box28 .bottom-box ul li,
  .MainFive .page-bac .page-box28 .bottom-box ul li h1,
  .MainFive .page-bac .page-box28 .bottom-box ul li .bottom {
    margin-top: 1rem;
  }

  .MainFive .page-bac .page-box28 .arrow {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  /* 邮轮品牌列表页_详情 */
  .MainFive .page-bac .page-box29 .top-box {
    flex-direction: column;
  }

  .MainFive .page-bac .page-box29 .top-box .img-box {
    width: 100%;
    height: 18.5rem;
  }

  .MainFive .page-bac .page-box29 .top-box .right-box ul {
    padding: 10px;
    flex-wrap: wrap;
    position: relative;
  }

  .MainFive .page-bac .page-box29 .top-box .right-box ul li {
    padding-left: 0px;
    width: calc(100% / 3);
    text-align: left;
    border-left: 0px;
    margin-top: 10px;
  }

  .MainFive .page-bac .page-box29 .top-box .right-box ul::after {
    content: '';
    display: block;
    width: calc(100% / 3);
    height: 0;
  }

  .MainFive .page-bac .page-box29 .top-box .right-box .bottom {
    margin-top: 2rem;
    flex-direction: column;
  }

  .MainFive .page-bac .page-box29 .top-box .right-box .bottom a {
    margin-top: 2rem;
  }
  .MainFive .page-bac .page-box29 .bottom-box p {
    margin-top: 0;
  }

  .MainFive .page-bac .page-box29 .bottom-box {
    padding: 10px;
  }
  .main .index-Popular .mySwiper4 .swiper-wrapper {
    gap: 0;
  }
  .MainFive .page-bac .page-box28 .bottom-box ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .dialog-box {
    flex-direction: column;
  }
  .dialog-box .left {
    gap: 1rem;
  }
  .dialog-box .left li {
    gap: 1rem;
    font-size: 12px;
    justify-content: flex-start;
  }
  .dialog-box .left li p {
    white-space: nowrap;
  }
  .dialog-box .left li span {
    font-size: 14px;
  }
  .dialog-box .right {
    height: 3rem;
    font-size: 1rem;
    margin-top: 2rem;
    margin-left: 0;
  }
  .ending-class {
    width: 50%;
  }
  .ending-class .layui-menu-body-panel {
    width: 60%;
  }
  .w50-class {
    width: 50%;
  }
  .main .banner,
  .default-banner,
  .MainFive .banner,
  .ny-mySwiper {
    height: auto;
    padding-top: 5rem;
  }
  .MainThree .page-box7 .bottom-box {
    padding: 0 10px;
  }
  .MainThree .page-box7 .bottom-box .btns {
    display: none;
  }
  .MainThree .color-box .page-box11 .page-box12 .right-box ul li a p {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .MainThree .color-box .page-box11 .page-box12 .right-box ul li a em {
    font-size: 1rem;
  }
  .MainThree .color-box .page-box11 .page-box12 .right-box ul li:last-child {
    padding-bottom: 0;
  }
  .MainTwo .page-box13 .page-right .title-box ul li .top-box .orderNumber {
    width: 100%;
  }
  .ny-banner-text-box .cn {
    font-size: 2rem;
  }
  .ny-banner-text-box .en {
    font-size: 1.25rem;
  }
  .ny-banner-text-box .outline {
    font-size: 1rem;
  }
  .MainThree .color-box .page-box8 {
    flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  [pc='hide'] {
    display: none !important;
  }
}
.default-banner {
  width: 100%;
  height: auto;
}

.defaultContactInfo,
.eitdCode-box {
  display: none;
}

.sexOptions {
  /* text-indent: 1.5rem; */
  padding: 0 1.3rem;
  font-size: 1.125rem;
  color: #000;
  appearance: none;
  -webkit-appearance: none; /* Safari 和 Chrome */
  -moz-appearance: none; /* Firefox */
  background: #fff url(/img/page-down.png) center center no-repeat;
  background-size: cover;
}

.popup-box .agreement-box .agreement {
  width: 100%;
}

/* 登录  自定义勾选框 */
/* 隐藏默认复选框 */
input[type='checkbox'] {
  display: none;
}

/* 自定义复选框容器 */
.custom-checkbox-container {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none; /* 防止文本被选中 */
}

/* 自定义复选框样式 */
.custom-checkbox,
.agreement-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(122, 143, 200, 0.18);
  border-radius: 2px;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.3s;
  background: #fff;
}
.custom-checkbox-active {
  border-color: #3ba7f4;
  background-color: #e7f3ff;
}
.custom-checkbox-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: 6px;
  height: 10px;
  border: solid #3ba7f4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.brand-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.call-phone {
  position: fixed;
  right: 10px;
  bottom: 30%;
  z-index: 10;
}
.call-phone a {
  display: block;
  width: 50px;
  height: 50px;
}
.call-phone a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
