/* @charset "UTF-8"; */

.img-box i {
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(54, 60, 80, 0.5);
}

body::-webkit-scrollbar-thumb {
  background-color: #0a5cab;
}

.swiper-pagination span {
  outline: none;
}

/*头部*/
.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(29, 36, 13, 0.1);
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  height: 5.625rem;
  padding: 0 3%;
}

.pc-header .logo {
  width: 25.875rem;
  height: 2.875rem;
  transition: 0.4s;
}

.pc-header .logo.logo2 {
  display: none;
  transition: 0.4s;
}

.pc-header .logo .img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  margin: auto;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.pc-header .nav {
  /* background: url(../img/h-line.png) right center no-repeat; */
  background-size: 0.1875rem 1.375rem;
  padding-right: 1.875rem;
  margin-right: 1.875rem;
}

.pc-header .nav li {
  position: relative;
  margin-right: 4.5rem;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.pc-header .nav li > a {
  width: 100%;
  font-size: 1.125rem;
  color: #fff;
  position: relative;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.pc-header .nav li > a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background-color: #169bd5;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2rem;
  z-index: 10;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.pc-header .nav li .sub {
  width: 150px;
  position: absolute;
  top: 150%;
  left: 50%;
  z-index: 1000;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding-top: calc(2.25rem + 15px);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.pc-header .nav li .sub .box {
  box-shadow: 0px 0px 5px #838383;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.pc-header .nav li .sub a {
  display: block;
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  border-bottom: 1px solid #e9e9e9;
}

.pc-header .nav li .sub a:last-child {
  border: none;
}

.pc-header .nav li .sub a:hover {
  background-color: #169bd5;
  color: #fff;
}

.pc-header .nav li.on > a {
  opacity: 1;
}

.pc-header .nav li.on > a::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.pc-header .nav li:hover > a {
  opacity: 1;
}

.pc-header .nav li:hover > a::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.pc-header .nav li:hover .sub {
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pc-header.on {
  background-color: #fff;
  padding-top: 1rem !important;
  padding-bottom: 1rem;
  box-shadow: 0px 0px 10px #ddd;
}

.pc-header.on .logo .img {
  opacity: 0;
  visibility: hidden;
}

.pc-header.on .nav {
  background-image: url(../img/h-line-hover.png);
}

.pc-header.on .nav li > a {
  color: #333;
}

.pc-header.on .nav li > a::after {
  bottom: -1rem;
}

.pc-header.on .nav li .sub {
  padding-top: 2rem;
}

.pc-header.on .search a {
  background-image: url(../img/search-icon-hover.png);
}

.pc-header .nav .btns {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 0.625rem 2rem;
}

.pc-header .nav .btns a,
.pc-header .nav .btns span {
  font-size: 1.125rem;
  color: #3e6089;
}

.pc-header .nav .btns a:hover {
  color: #0f3d7f;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

#header .btns-M {
  display: none;
}

/* 登录页 */
.page-login {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.page-login {
  position: relative;
}

.page-login .banner {
  width: 100%;
  height: 100%;
}

.page-login img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-login .login-box {
  width: 36.25rem;
  height: 40rem;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translate(0%, -50%);
  background: rgba(241, 247, 255, 0.8);
  box-shadow: 0 0 6px 0 rgba(1, 28, 57, 0.26);
  border-radius: 20px;
  z-index: 9;
  padding: 3.375rem 2.75rem;
  overflow: hidden;
}

.page-login .login-box .btn-close {
  width: 3.125rem;
  height: 3.5625rem;
  background: url(../img/bac-5.png) center no-repeat;
  /* background-color: #cfd5dd; */
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.page-login .login-box .btn-close .img-box {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

.page-login .login-box .btn-close .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-login .login-box .btn-close .img-box:hover {
  cursor: pointer;
  transition: 0.4s;
}

.page-login .login-box .box-top {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e1eeff;
}

.page-login .login-box .box-top h1 {
  font-size: 2.125rem;
  color: #0a5094;
  font-weight: bold;
}

.page-login .login-box .box-bottom {
  margin-top: 3rem;
}

.page-login .login-box .box-bottom .select-input {
  width: 100%;
  height: 4.5rem;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  border: 2px solid rgba(122, 143, 200, 0.18);
  overflow: hidden;
}

.page-login .login-box .box-bottom .select-input:last-child {
  margin-bottom: 2.375rem;
}

.page-login .login-box .box-bottom input[type='text'] {
  font-size: 1.25rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #9e9e9e;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 4.5rem;
  background-color: white;
  text-indent: 2.25rem;
}

.page-login .login-box .box-bottom input[type='text']:focus,
.page-login .login-box .box-bottom input[type='text']:hover {
  color: #000;
}

.page-login .login-box .box-bottom input[type='text']::-webkit-input-placeholder {
  font-size: 1.125rem;
  color: #999;
}

.page-login .login-box .box-bottom .select-input input[type='button'] {
  font-size: 1.25rem;
  color: #fff;
  width: 10rem;
  background-color: #0a5cab;
  transition: 0.4s;
}

.page-login .login-box .box-bottom .select-input input[type='button']:hover {
  cursor: pointer;
  transition: 0.4s;
}

.page-login .login-box .box-bottom .automatic .left-box input[type='checkbox'] {
  width: 1.375rem;
  height: 1.375rem;
  background: #ffffff;
  border-radius: 2px;
  border: 2px solid rgba(122, 143, 200, 0.18);
}

.page-login .login-box .box-bottom .automatic .left-box p {
  font-size: 1rem;
  color: #999999;
  /* margin-left: 0.625rem; */
}

.page-login .login-box .box-bottom .automatic .left-box a.blue {
  font-size: 1rem;
  color: #999999;
  /* margin-left: 0.625rem; */
  color: #0e264c;
}

.page-login .login-box .box-bottom .automatic .right-box {
  font-size: 1rem;
  color: #0e264c;
}

.page-login .login-box .box-bottom .denglu {
  width: 100%;
  height: 4.5rem;
  background: #3ba7f4;
  border-radius: 70px;
  border: 1px solid rgba(42, 120, 209, 0.9);
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 2.25rem;
  margin-bottom: 2.5rem;
  transition: 0.4s;
}

.page-login .login-box .box-bottom .denglu:hover {
  background-color: #0a5cab;
  transition: 0.4s;
}

/*首页*/
.HeaderTwo > .pc-header {
  background: linear-gradient(to right,
      rgba(9, 49, 104, 1),
      rgba(61, 109, 159, 0.5));
}

.HeaderTwo.on > .pc-header {
  background: #fff;
  transition: 0.4s;
}

.HeaderTwo.on > .pc-header .nav li > a {
  color: #000;
  transition: 0.4s;
}

.HeaderTwo.on > .pc-header .nav .btns {
  background: #3ba7f4;
  transition: 0.4s;
}

.HeaderTwo.on > .pc-header .nav .btns a,
.HeaderTwo.on > .pc-header .nav .btns span {
  color: #fff;
  transition: 0.4s;
}

.HeaderTwo.on > .pc-header .logo {
  display: none;
  transition: 0.4s;
}

.HeaderTwo.on > .pc-header .logo.logo2 {
  display: block;
  transition: 0.4s;
}

.main .banner {
  width: 100%;
  height: 100vh;
}

.main .banner .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .banner .pagination {
  position: absolute;
  z-index: 9;
  flex-direction: column;
  top: 50%;
  right: 10%;
  transform: translate(0%, -50%);
  align-items: flex-end;
  padding-right: 3%;
  height: fit-content;
}

.main .banner .pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: transparent;
  border: 2px solid #cccccc;
  margin-top: 1.25rem;
}

.main .banner .pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 5px;
  border: 0;
}

.main #index-cruise {
  width: 100%;
  height: 9.625rem;
  background-color: #3ba7f4;
}

.main #index-cruise .top-box {
  width: 100%;
  height: 100%;
}

.main #index-cruise .page-search {
  position: relative;
  z-index: 10;
  gap: 1.25rem;
}

.main #index-cruise .page-search .title {
  font-size: 1.5rem;
  color: #333;
  margin-right: 1rem;
}

.main #index-cruise .page-search .select-input input {
  width: 80%;
}

.main #index-cruise .page-search .select-input img {
  object-fit: contain;
  cursor: pointer;
}

.main #index-cruise .page-search .airline {
  height: 100%;
  background-color: #004d9c;
  display: flex;
  align-items: center;
}

.main #index-cruise .page-search .select-input::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 0.6875rem;
  background: url(../img/page-down.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  z-index: 10;
  margin: auto;
  transition: 0.4s;
  display: none;
  -webkit-transition: 0.4s;
}

.main #index-cruise .page-search .airline::before {
  content: '';
  display: block;
  width: 2.125rem;
  height: 1rem;
  background: url(../img/page-down2.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  z-index: 10;
  margin: auto;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.main #index-cruise .page-search .select-input .select {
  position: absolute;
  top: 150%;
  left: 0;
  z-index: 100;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.main #index-cruise .page-search .select-input .select .box {
  max-height: 160px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-top: none;
}

.main #index-cruise .page-search .select-input .select .box::-webkit-scrollbar {
  width: 3px;
  height: 10px;
  background-color: #eee;
  border-radius: 25px;
}

.main #index-cruise .page-search .select-input .select .box::-webkit-scrollbar-track {
  border-radius: 25px;
}

.main #index-cruise .page-search .select-input .select .box::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #3ba7f4;
}

.main #index-cruise .page-search .select-input .select .box a {
  display: block;
  width: 100%;
  line-height: 2.625rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  text-align: left;
  color: #999;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.main #index-cruise .page-search .select-input .select .box a:hover {
  background-color: #3ba7f4;
  color: #fff;
}

.main #index-cruise .page-search .select-input.on .select {
  top: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.main #index-cruise .page-search input {
  padding-left: 1rem;
  height: 2.625rem;
  font-size: 1.25rem;
  color: #fff;
  transition: 0.4s;
  background-color: transparent;
  cursor: pointer;
}

.main #index-cruise .page-search #SearchForFlightRoutes a {
  height: 2.625rem;
  font-size: 1.25rem;
  color: #fff;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  background-color: #004d9c;
  cursor: pointer;
  height: 100%;
  padding: 2.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  width: 14.6875rem;
}

.main #index-cruise .page-search .select-time input:hover {
  cursor: pointer;
  transition: 0.4s;
}

.main #index-cruise .page-search input::-webkit-input-placeholder {
  font-size: 1rem;
  color: #fff;
}

.main #index-cruise .page-search .select-time::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 0.6875rem;
  background: url(../img/page-down.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  z-index: 10;
  margin: auto;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.main #index-cruise .page-search .select-time .selector {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  flex-wrap: nowrap;
  width: 100%;
  z-index: 9;
}

.main #index-cruise .page-search .select-time .selector::-webkit-scrollbar {
  width: 3px;
  height: 10px;
  background-color: #eee;
  border-radius: 25px;
}

.main #index-cruise .page-search .select-time .selector::-webkit-scrollbar-track {
  border-radius: 25px;
}

.main #index-cruise .page-search .select-time .selector::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #3ba7f4;
}

.main #index-cruise .page-search .select-time .year-list,
.main #index-cruise .page-search .select-time .month-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-y: auto;
  flex-direction: column;
}

.main #index-cruise .page-search .select-time .year-list li,
.main #index-cruise .page-search .select-time .month-list li {
  width: 100%;
  line-height: 42px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.4s;
  padding-left: 20px;
}

.main #index-cruise .page-search .select-time .year-list li:hover,
.main #index-cruise .page-search .select-time .month-list li:hover {
  background-color: #3ba7f4;
  color: #fff;
  transition: 0.4s;
}

.main #index-cruise .page-search .select-time .main #index-cruise .page-search input:hover {
  border-left: 1px solid #ccc;
}

.main #index-cruise .page-search .select-time .main #index-cruise .page-search .searchkey {
  margin-right: 0;
}

.main #index-cruise .page-search .select-time .main #index-cruise .page-search .btn {
  width: 12.1875rem;
  height: 2.625rem;
  background: #3ba7f4;
  font-size: 1.25rem;
  color: #fff;
  line-height: 2.625rem;
  text-align: center;
}

.main #index-cruise .page-search .select-time .year-list::-webkit-scrollbar,
.main #index-cruise .page-search .select-time .month-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(54, 60, 80, 0.5);
}

.main #index-cruise .page-search .select-time .year-list::-webkit-scrollbar-thumb,
.main #index-cruise .page-search .select-time .month-list::-webkit-scrollbar-thumb {
  background-color: #0a5cab;
}

.main .index-special {
  padding-top: 4.625rem;
  background: url(../img/bac-2.png) center center no-repeat;
  background-size: cover;
  padding-left: 13.5%;
  min-height: 70rem;
}

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

.main .index-special > .top-box h1 {
  font-weight: bold;
  font-size: 2.75rem;
  color: #000000;
}

.main .index-special > .top-box h2 {
  font-size: 1.5rem;
  margin-top: 1.25rem;
  color: #666666;
  text-transform: uppercase;
}

.main .index-special .mySwiper2 {
  padding-top: 0.625rem;
}

.main .index-special .mySwiper2 .swiper-slide {
  width: 100%;
  height: 47.25rem;
  background: #ffffff;
  box-shadow: 0px 6px 8px 0px rgba(34, 109, 162, 0.38);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.main .index-special .mySwiper2 .swiper-slide:hover {
  margin-top: -0.625rem;
  transition: 0.4s;
}

.main .index-special .mySwiper2 .swiper-slide .top-box {
  height: clamp(300px, 28.5rem, 30.5rem);
}

.main .index-special .mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box {
  height: 18.0625rem;
  padding: 1.875rem;
  padding-top: 3.125rem;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box h1 {
  font-weight: bold;
  font-size: 1.625rem;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box h2 {
  font-size: 1rem;
  color: #2d7fba;
  margin-top: 0.625rem;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box .title {
  margin-top: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #cccccc;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box .title h3 {
  font-size: 1rem;
  color: #666666;
  text-indent: 1.5rem;
  background: url(../img/icon6.png) left center no-repeat;
  background-size: 1rem;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box .title ul {
  width: 100%;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box .title ul li {
  border-radius: 1.0625rem;
  border: 1px solid #cccccc;
  width: calc(100% / 5);
  height: 2.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.875rem;
  transition: 0.4s;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box .title ul li:hover {
  border: 1px solid #4ea7e6;
  transition: 0.4s;
}

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

.main .index-special .mySwiper2 .swiper-slide .bottom-box .title ul li p {
  font-weight: bold;
  font-size: 1rem;
  color: #333333;
}

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

.main .index-special .mySwiper2 .swiper-slide .bottom-box .price-box p {
  font-weight: bold;
  font-size: 1rem;
  color: #333333;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box .price-box p i {
  font-size: 1.5rem;
  color: #337eb3;
}

.main .index-special .mySwiper2 .swiper-slide .bottom-box .price-box p em {
  font-size: 2.375rem;
  color: #337eb3;
  margin-right: 0.4375rem;
}

.main .index-special .mySwiper2 .swiper-slide .float-box {
  width: 4.75rem;
  height: 4.75rem;
  background: url(../img/icon7.png) center no-repeat;
  background-size: cover;
  border-radius: 50%;
  /* animation: rotate 10s linear infinite; */
  position: absolute;
  top: 26.5rem;
  right: 2rem;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.main .index-special .mySwiper2 .switch {
  margin-top: 3.75rem;
  justify-content: flex-end;
  padding-right: 13.5%;
}

.main .index-special .mySwiper2 .switch a {
  width: 2.5rem;
  height: 1rem;
  background: url(../img/icon9.png) center center no-repeat;
  background-size: cover;
  border-radius: 50%;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.main .index-special .mySwiper2 .switch a.next {
  background: url(../img/icon8.png) center center no-repeat;
  background-size: cover;
  margin-left: 3.375rem;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.main .index-special .mySwiper2 .switch a.prev.swiper-button-disabled {
  width: 1.5rem;
  background: url(../img/icon10.png) center center no-repeat;
  background-size: cover;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.main .index-special .mySwiper2 .switch a.next.swiper-button-disabled {
  width: 1.5rem;
  background: url(../img/icon11.png) center center no-repeat;
  background-size: cover;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

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

.main .index-Popular .Popular-top-box .tab-box::after {
  content: '';
  display: block;
  width: calc(100% - 27%);
  height: 2px;
  background-color: #479ad5;
  position: absolute;
  top: 4rem;
}

.main .index-Popular .Popular-top-box .top-box h1 {
  font-weight: bold;
  font-size: 2.75rem;
  color: #000000;
}

.main .index-Popular .Popular-top-box .top-box h2 {
  font-size: 1.5rem;
  color: #666666;
  text-transform: uppercase;
  margin-top: 1rem;
}

.main .index-Popular .Popular-top-box .tab-box {
  margin-top: 3.5rem;
  display: flex;
  justify-content: space-between;
}

.main .index-Popular .Popular-top-box .tab-box .tabItem {
  cursor: pointer;
  transition: 0.4s;
  margin-right: 3%;
}

.main .index-Popular .Popular-top-box .tab-box .tabItem .txt {
  position: relative;
  padding-bottom: 4.75rem;
}

.main .index-Popular .Popular-top-box .tab-box .tabItem .txt::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 3.3rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #b8e2ff url(../img/icon12.png) center center no-repeat;
  background-size: cover;
  transform: translate(-50%, 0);
  z-index: 9;
}

.main .index-Popular .Popular-top-box .tab-box .tabItem.active .txt::after {
  width: 2.25rem;
  height: 2.25rem;
  background: #b8e2ff url(../img/icon13.png) center no-repeat;
  background-size: cover;
  border-radius: 50%;
  top: 2.9rem;
}

.main .index-Popular .Popular-top-box .tab-box .tabItem .txt p {
  font-size: 1.25rem;
  color: #000000;
  text-align: center;
}

.main .index-Popular .Popular-top-box .tab-box .tabItem .img-box {
  width: 6.875rem;
  height: 6.875rem;
  box-shadow: 0 3px 9px 0 rgba(65, 155, 220, 0.36);
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  transition: 0.4s;
}

.main .index-Popular .Popular-top-box .tab-box .tabItem:hover .img-box {
  /* margin-top: -0.625rem; */
  /* transition: 0.4s; */
  box-shadow: 0 3px 9px 0 rgba(65, 155, 220, 1);
}

.main .index-Popular .Popular-top-box .tab-box .tabItem .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .index-Popular .mySwiper3 {
  width: calc(100% - 13.5%);
  padding-top: 4.625rem;
  float: right;
  overflow: hidden;
}

.main .index-Popular .mySwiper3 > .swiper-wrapper > .swiper-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.main .index-Popular .mySwiper3 > .swiper-wrapper > .swiper-slide.active {
  display: flex;
}

.main .index-Popular .mySwiper4 {
  width: 100%;
  height: 45rem;
  padding-top: 4.625rem;
}

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

.main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide {
  background-color: white;
  height: 47% !important;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide .grid-item {
  height: 19.1875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  background: #ffffff;
  box-shadow: 0 0 10px 0 rgba(162, 162, 162, 0.36);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: 0.4s;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide .grid-item:hover {
  /* margin-top: -10px; */
  /* transition: 0.4s; */
}

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

.main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide .grid-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .swiper-slide .grid-item .title-box {
  width: 100%;
  height: 100%;
  padding-left: 1.875rem;
  padding-top: 3rem;
  padding-right: 0rem;
  padding-bottom: 2.25rem;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box {
  width: 100%;
  height: 100%;
  padding: 0rem 1.625rem;
  padding-top: 3rem;
  padding-bottom: 2.25rem;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box h1 {
  font-weight: bold;
  font-size: 1.625rem;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  text-align: justify;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box h2 {
  font-size: 1rem;
  color: #666;
  margin-top: 0.625rem;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .title {
  margin-top: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #cccccc;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .title h3 {
  font-size: 1rem;
  color: #666666;
  text-indent: 1.5rem;
  background: url(../img/icon6.png) left center no-repeat;
  background-size: 1rem;
}

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

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .title ul li {
  border-radius: 1.0625rem;
  border: 1px solid #cccccc;
  width: calc(100% / 5);
  height: 2.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.875rem;
  transition: 0.4s;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .title ul li:hover {
  border: 1px solid #4ea7e6;
  background: rgba(65, 171, 246, 0.34);
  transition: 0.4s;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .title ul li + li {
  margin-left: 0.4375rem;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .title ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  font-size: 1rem;
  color: #333333;
  transition: 0.4s;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .title ul li:hover a {
  color: #0f5a9e;
  transition: 0.4s;
}

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

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .price-box p {
  font-weight: bold;
  font-size: 1rem;
  color: #333333;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .price-box p i {
  font-size: 1.5rem;
  color: #337eb3;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .price-box p em {
  font-size: 2.375rem;
  color: #337eb3;
  margin-right: 0.4375rem;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .price-box a {
  display: flex;
  width: 7.1875rem;
  height: 3.125rem;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  color: #ffffff;
  border-radius: 4px;
  background-color: #004d9c;
  transition: all 0.35s ease-in-out;
}

.main .index-Popular .mySwiper4 .swiper-wrapper .grid-item .bottom-box .price-box a:hover {
  background-color: #3ba7f4;
}

.main .index-Popular .mySwiper4 .btns {
  width: calc(100% - 13.5%);
  justify-content: flex-end;
  margin-top: 5.25rem;
}

.main .index-Popular .mySwiper4 .btns .prev {
  width: 2.5rem;
  height: 1rem;
  background: url(../img/icon14.png) center center no-repeat;
  background-size: cover;
  cursor: pointer;
  transition: 0.4s;
}

.main .index-Popular .mySwiper4 .btns .next {
  width: 2.5rem;
  height: 1rem;
  background: url(../img/icon15.png) center center no-repeat;
  background-size: cover;
  cursor: pointer;
  transition: 0.4s;
  margin-left: 1rem;
}

.main .index-Popular .mySwiper4 .btns .prev.swiper-button-disabled {
  background: url(../img/icon16.png) center center no-repeat;
  background-size: cover;
  transition: 0.4s;
}

.main .index-Popular .mySwiper4 .btns .next.swiper-button-disabled {
  background: url(../img/icon17.png) center center no-repeat;
  background-size: cover;
  transition: 0.4s;
}

.main .index-brand {
  padding-bottom: 5rem;
}

.main .index-brand .top-box {
  padding-top: 5.725rem;
  min-height: 46rem;
  background: url(../img/bac-3.png) center center no-repeat;
  background-size: cover;
}

.main .index-brand .top-box .title-box h1 {
  font-weight: bold;
  font-size: 3.125rem;
  color: #ffffff;
}

.main .index-brand .top-box .title-box h2 {
  font-size: 1.875rem;
  color: #ffffff;
  line-height: 100px;
}

.main .index-brand .top-box .brand-title {
  position: absolute;
  bottom: 15%;
}

.main .index-brand .top-box .brand-title h1 {
  font-weight: bold;
  font-size: 2.75rem;
  color: #000000;
  margin-bottom: 5rem;
}

.main .index-brand .top-box .brand-title h2 {
  font-size: 2.125rem;
  color: #333333;
  line-height: 1.5;
}

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

.main .index-brand .top-box .brand-title h3 {
  font-size: 1.625rem;
  color: #666666;
  line-height: 1.5;
}

.main .index-brand .bottom-box ul {
  padding: 0 1.25rem;
  padding-bottom: 5rem;
}

.main .index-brand .bottom-box ul li {
  width: calc(100% / 7);
  transition: 0.4s;
}

.main .index-brand .bottom-box ul li:hover {
  margin-top: -0.625rem;
  transition: 0.4s;
}

.main .index-brand .bottom-box ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.main .index-brand .bottom-box ul li a img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.main .index-brand .bottom-box .more-box {
  text-align: center;
  margin-top: 6rem;
}

.main .index-brand .bottom-box .more-box a {
  font-size: 0.875rem;
  color: #004d9c;
  position: relative;
  text-transform: uppercase;
  transition: 0.4s;
}

.main .index-brand .bottom-box .more-box a::after {
  content: '';
  display: block;
  width: 1.875rem;
  height: 0.75rem;
  background: url(../img/icon25.png) center center no-repeat;
  background-size: 100%;
  position: absolute;
  left: 110%;
  top: 50%;
  transform: translate(0%, -50%);
  transition: 0.4s;
}

.main .index-brand .bottom-box .more-box a:hover::after {
  margin-left: 0.625rem;
  transition: 0.4s;
}

.main .index-journey {
  width: 100%;
  background: url(../img/bac-4.jpg) center center no-repeat;
  background-size: cover;
  padding-top: 6.25rem;
  padding-bottom: 10.625rem;
}

.main .index-journey > .top-box h1 {
  font-weight: bold;
  font-size: 2.75rem;
  color: #000000;
}

.main .index-journey > .top-box h2 {
  font-size: 1.5rem;
  margin-top: 1.25rem;
  color: #666666;
  text-transform: uppercase;
}

.main .index-journey > .bottom-box {
  margin: 0 -0.875rem;
  margin-top: 4.5rem;
}

.main .index-journey > .bottom-box .page-box1,
.main .index-journey > .bottom-box .page-box2 {
  width: calc(100% / 3);
  margin: 0 0.875rem;
  padding: 0 3rem;
  height: 42.75rem;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-radius: 1.25rem;
  background-position: center !important;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
}

.main .index-journey > .bottom-box .page-box1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main .index-journey > .bottom-box .page-box1::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(8, 84, 157, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.main .index-journey > .bottom-box .page-box1:hover::after {
  background: rgba(0, 34, 66, 0.6);
}

.main .index-journey > .bottom-box .page-box1:hover,
.main .index-journey > .bottom-box .page-box2:hover {
  margin-top: -0.625rem;
  z-index: 1;
}

.main .index-journey > .bottom-box .page-box1 h1 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.main .index-journey > .bottom-box .page-box1 h2 {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.875rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 2;
}

.main .index-journey > .bottom-box .page-box1 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  width: 7.1875rem;
  height: 3.125rem;
  border-radius: 4px;
  border: 1px solid #ffffff;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  position: absolute;
  bottom: 20%;
  transition: 0.4s;
  z-index: 2;
}

.main .index-journey > .bottom-box .page-box1 a:hover {
  background-color: #004d9c;
  transition: 0.4s;
}

.main .index-journey > .bottom-box .page-box1 a img {
  width: 1.5rem;
  height: 1rem;
  object-fit: scale-down;
}

.main .index-journey > .bottom-box .page-box2 {
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(34, 109, 162, 0.23);
  padding: 3.1875rem 1.5rem;
}

.main .index-journey > .bottom-box .page-box2 ul li a {
  display: block;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 2.25rem;
  padding-top: 2.5rem;
  transition: 0.4s;
}

.main .index-journey > .bottom-box .page-box2 ul li:first-child a {
  padding-top: 0;
}

.main .index-journey > .bottom-box .page-box2 ul li:last-child a {
  border-bottom: 0;
}

.main .index-journey > .bottom-box .page-box2 ul li a h1 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #004d9c;
}

.main .index-journey > .bottom-box .page-box2 ul li a p {
  font-size: 1.25rem;
  color: #333333;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.main .index-journey > .bottom-box .page-box2 ul li:hover a p {
  color: #004d9c;
  transition: 0.4s;
}

.main .index-journey > .bottom-box .page-box2 ul li a em {
  font-size: 1.25rem;
  color: #666666;
  transition: 0.4s;
}

.main .index-journey > .bottom-box .page-box2 ul li:hover a em {
  color: #004d9c;
  transition: 0.4s;
}

#footer {
  background-color: #182d5c;
  padding-top: 4.375rem;
}

#footer > .top-box {
  padding-bottom: 2.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  align-items: flex-end;
}

#footer > .top-box .left-box h1 {
  font-weight: bold;
  font-size: 2.75rem;
  color: #ffffff;
  line-height: 1.5;
}

#footer > .top-box .left-box h2 {
  font-size: 2.125rem;
  color: #ffffff;
  line-height: 1.5;
}

#footer > .top-box .right-box {
  min-width: 15rem;
  display: flex;
  transition: 0.4s;
}

#footer > .top-box .right-box p {
  margin-left: 7px;
  font-size: 0.75rem;
  color: #ffffff;
  transition: 0.4s;
}

#footer > .top-box .right-box:hover p {
  margin-left: 0.625rem;
  transition: 0.4s;
}

#footer > .top-box .right-box::after {
  content: '';
  width: 1.375rem;
  height: 0.625rem;
  background: url(../img/icon28.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
}

#footer > .bottom-box {
  margin-top: 5rem;
  padding-bottom: 2.5rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#footer > .bottom-box .left-box ul li {
  padding-left: 4rem;
  margin-bottom: 1.75rem;
  background: url(../img/icon29.png) left center no-repeat;
  background-size: contain;
}

#footer > .bottom-box .left-box ul li:nth-child(2) {
  background: url(../img/icon30.png) left center no-repeat;
  background-size: contain;
}

#footer > .bottom-box .left-box ul li:last-child {
  background: url(../img/icon31.png) left center no-repeat;
  background-size: contain;
  margin-bottom: 0;
}

#footer > .bottom-box .left-box ul li p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
}

#footer > .bottom-box .left-box ul li p em {
  color: #fff;
  margin-left: 1rem;
}

#footer > .bottom-box .body-box ul li a {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  transition: 0.4s;
}

#footer > .bottom-box .body-box ul li:hover a {
  color: #3faefc;
  transition: 0.4s;
}

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

#footer > .bottom-box .right-box {
  display: flex;
  align-items: flex-end;
}

#footer > .bottom-box .right-box .footer-logo {
  width: 16.5625rem;
  height: 5rem;
}

#footer > .bottom-box .right-box .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#footer > .footer-bottom {
  width: 100%;
  height: 5.5rem;
}

#footer > .footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

#footer > .footer-bottom p a {
  color: rgba(255, 255, 255, 0.6);
}

/* 购买支付_提交页 */
.HeaderThree > .pc-header {
  background-color: #fff;
}

.HeaderThree > .pc-header .nav li > a {
  color: #333333;
  transition: 0.4s;
}

.HeaderThree > .pc-header .nav li > a:hover,
.HeaderThree > .pc-header .nav li.on > a {
  color: #3ba7f4;
  transition: 0.4s;
}

.HeaderThree > .pc-header .nav .btns {
  background-color: #3ba7f4;
}

.HeaderThree > .pc-header .nav .btns a,
.HeaderThree > .pc-header .nav .btns span {
  color: #fff;
}

.MainTwo {
  background-color: #f4f7ff;
  padding-bottom: 2.25rem;
}

.MainTwo .banner {
  width: 100%;
  height: 22.25rem;
}

.MainTwo .banner img {
  width: 100%;
  height: 100%;
  object-fit: initial;
}

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

.MainTwo > .page-box1 ul li {
  width: 15.125rem;
  height: 15.125rem;
  background: url(../img/bac-8.png) center center no-repeat;
  background-size: 100%;
  flex-direction: column;
  position: relative;
}

.MainTwo > .page-box1 ul li::after {
  content: '';
  display: block;
  width: 2.25rem;
  height: 1.375rem;
  background: url(../img/icon38.png) center center no-repeat;
  background-size: 100%;
  position: absolute;
  right: -17%;
}

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

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

.MainTwo > .page-box1 ul li .img-box img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.MainTwo > .page-box1 ul li p {
  font-size: 1.5rem;
  color: #093e82;
  margin-top: 1.75rem;
}

.MainTwo > .page-box1 ul li i {
  font-size: 6.25rem;
  font-style: oblique;
  background: linear-gradient(180deg, #0a5cab, #e6effb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 0.625rem;
  margin-top: -1rem;
}

.MainTwo .page-box2 {
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px #eef3ff;
  border-radius: 1.25rem;
  border: 2px solid #eef3ff;
  height: 25.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1.375rem;
}

.MainTwo .page-box2 .title-box {
  margin-top: 1.25rem;
}

.MainTwo .page-box2 .title-box p {
  font-size: 1.625rem;
  color: #182d5c;
  line-height: 36px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.MainTwo .page-box3 {
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px #eef3ff;
  border-radius: 1.25rem;
  border: 2px solid #eef3ff;
  padding: 2.25rem;
}

.MainTwo .page-box3 > h1 {
  font-size: 1.625rem;
  color: #000000;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.MainTwo .page-box3 .title-box {
  background-color: #f6f9ff;
  padding: 1.75rem;
  margin-top: 1.75rem;
}

.MainTwo .page-box3 .title-box .title + .title {
  margin-top: 2rem;
}

.MainTwo .page-box3 .title-box .title h1 {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.MainTwo .page-box3 .title-box .title p {
  font-size: 1rem;
  color: #666666;
  line-height: 2;
}

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

.MainTwo .page-box4 {
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px #eef3ff;
  border-radius: 1.25rem;
  border: 2px solid #eef3ff;
  padding: 2.25rem;
  padding-bottom: 5rem;
}

.MainTwo .page-box4 .tab-box h1 {
  font-size: 1.625rem;
  color: #000000;
}

.MainTwo .page-box4 .ul-box {
  margin-top: 1.5rem;
}

.MainTwo .page-box4 .ul-box ul li {
  background: linear-gradient(to bottom, #f1f5fe, #ffffff);
  border: 2px solid #eef3ff;
  padding: 2.25rem;
  border-radius: 0px 0px 0.625rem 0.625rem;
  transition: 0.4s;
}

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

.MainTwo .page-box4 .ul-box ul li .left-box {
  border-radius: 0.25rem;
  overflow: hidden;
  margin-right: 1.875rem;
}

.MainTwo .page-box4 .ul-box ul li .left-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  max-width: 15.875rem;
}

.MainTwo .page-box4 .ul-box ul li:hover .left-box img {
  transform: scale(1.1);
  transition: 0.4s;
}

.MainTwo .page-box4 .ul-box ul li .right-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.MainTwo .page-box4 .ul-box ul li .right-box .title-box h1 {
  font-size: 1.25rem;
  color: #333333;
  margin-bottom: 0.75rem;
  font-weight: bold;
  transition: 0.4s;
}

.MainTwo .page-box4 .ul-box ul li:hover .right-box .title-box h1 {
  color: #3ba7f4;
  transition: 0.4s;
}

.MainTwo .page-box4 .ul-box ul li .right-box .title-box h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #999999;
}

.MainTwo .page-box4 .ul-box ul li .right-box .title-box h3 {
  width: fit-content;
  padding: 0.5rem 1rem;
  background: #edf4ff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #c7daed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #3ba7f4;
  margin-bottom: 1rem;
}

.MainTwo .page-box4 .ul-box ul li .right-box .bottom-box p {
  font-size: 1.125rem;
  color: #333333;
  text-indent: 1.5rem;
  background: url(../img/icon39.png) left bottom no-repeat;
  background-size: auto;
}

.MainTwo .page-box4 .ul-box ul li .right-box .bottom-box p:last-child {
  background: none;
}

.MainTwo .page-box4 .ul-box ul li .right-box .bottom-box p i {
  font-size: 2rem;
  color: #3ba7f4;
  font-weight: bold;
}

.MainTwo .page-box4 .information-box {
  margin-top: 2.75rem;
}

.MainTwo .page-box4 .information-box .information-box1 {
  align-items: flex-end;
}

.MainTwo .page-box4 .information-box .information-box1 h1 {
  font-size: 1.625rem;
  color: #000000;
}

.MainTwo .page-box4 .information-box .information-box1 a {
  font-size: 1rem;
  color: #2763a1;
  padding-right: 1.5rem;
  background: url(../img/icon40.png) right center no-repeat;
  background-size: contain;
}

.MainTwo .page-box4 .information-box .box1 {
  background: linear-gradient(to bottom, #f1f5fe, #ffffff);
  border: 2px solid rgba(220, 232, 243, 1);
  padding: 1.75rem 2rem;
  border-radius: 0px 0px 0.625rem 0.625rem;
  margin-top: 2rem;
  transition: 0.4s;
}

.MainTwo .page-box4 .information-box .box1 ul li {
  width: calc(100% / 3);
}

.MainTwo .page-box4 .information-box .box1 ul li h2 {
  padding: 0.875rem 0.625rem;
  background: #3ba7f4;
  border-radius: 0.375rem 0px 0.375rem 0;
  width: max-content;
  font-size: 1.125rem;
  color: #ffffff;
}

.MainTwo .page-box4 .information-box .box1 ul li p {
  text-indent: 1rem;
  font-size: 1.25rem;
  color: #333333;
  margin-top: 1.25rem;
}

.MainTwo .page-box4 .btns-box {
  margin: 0 -2rem;
  margin-top: 4rem;
}

.MainTwo .page-box4 .btns-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 3.5rem;
  font-size: 1rem;
  color: #243c72;
  background: #edf4ff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #c9dbed;
  margin: 0 2rem;
}

.MainTwo .page-box4 .btns-box a.tj {
  background: #3ba7f4;
  color: #fff;
  border: 0;
}

/* 关于我们 */
.HeaderFour.on .pc-header {
  background: #fff;
}

.HeaderFour.on .pc-header .logo {
  display: none;
}

.HeaderFour.on .pc-header .logo.logo2 {
  display: block;
}

.HeaderFour.on > .pc-header .nav li > a {
  color: #000;
  transition: 0.4s;
}

.HeaderFour.on > .pc-header .nav .btns {
  background: #3ba7f4;
  transition: 0.4s;
}

.HeaderFour.on > .pc-header .nav .btns a,
.HeaderFour.on > .pc-header .nav .btns span {
  color: #fff;
  transition: 0.4s;
}

.MainThree .banner-gywm {
  width: 100%;
  height: 36.875rem;
}

.MainThree .banner-gywm img {
  width: 100%;
  height: 100%;
}

.MainThree .banner-gywm .title-box {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(0%, -50%);
}

.MainThree .banner-gywm .title-box h1 {
  font-size: 4.75rem;
  color: #fff;
  line-height: 1.5;
}

.MainThree .banner-gywm .title-box h2 {
  font-size: 1.875rem;
  color: #fff;
  font-weight: 100;
  text-transform: uppercase;
}

.MainThree .page-box5 {
  padding-top: 6.25rem;
  background-color: #f2f5fd;
}

.MainThree .page-box5 .left-box {
  margin-right: 7rem;
}

.MainThree .page-box5 .left-box i {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #4f739a;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}

.MainThree .page-box5 .left-box i::after,
.MainThree .page-box5 .left-box i::before {
  content: '';
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  margin: auto;
  border-radius: 50%;
  background: rgba(22, 155, 213, 0.4);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: boderScale 3s infinite;
}

.MainThree .page-box5 .left-box i::before {
  animation-delay: 0.75s;
}

@keyframes boderScale {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

#banner .dot-btn .icon::before {
  animation-delay: 0.75s;
}

.MainThree .page-box5 .left-box {
  padding-top: 3.5rem;
}

.MainThree .page-box5 .left-box h1 {
  font-size: 1.625rem;
  color: #000000;
  line-height: 1.5;
}

.MainThree .page-box5 .right-box .top-box p,
.MainThree .page-box5 .right-box .title p,
.MainThree .page-box5 .right-box .title em {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.85;
}

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

.MainThree .page-box5 .right-box .title em {
  position: relative;
  padding-left: 10px;
  display: block;
}

.MainThree .page-box5 .right-box .title em::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 9;
  background-color: #000;
  border-radius: 50%;
}

.MainThree .page-box6 {
  background: linear-gradient(to bottom, #f2f5fd, #ffffff);
  width: 100%;
  height: auto;
  padding-top: 4rem;
}

.MainThree .page-box6 img {
  width: 100%;
  height: 100%;
  /* object-fit: scale-down; */
}

.MainThree .page-box7 .top-box {
  padding-left: 15%;
  margin-bottom: 4rem;
}

.MainThree .page-box7 .top-box h1 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #000000;
  line-height: 1.5;
}

.MainThree .page-box7 .top-box h2 {
  font-size: 1.25rem;
  color: #000;
  text-transform: uppercase;
}

.MainThree .page-box7 .bottom-box {
  margin-bottom: 8.875rem;
  padding-left: 15%;
}

.MainThree .page-box7 .bottom-box .mySwiper5 .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-height: 25rem;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.MainThree .page-box7 .bottom-box .btns {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.MainThree .page-box7 .bottom-box .btns .prev {
  width: 4.5rem;
  height: 4.5rem;
  background: #bae5fb url(../img/icon78.png) center center no-repeat;
  border-radius: 50%;
  cursor: pointer;
}

.MainThree .page-box7 .bottom-box .btns .next {
  width: 4.5rem;
  height: 4.5rem;
  background: #bae5fb url(../img/icon79.png) center center no-repeat;
  border-radius: 50%;
  cursor: pointer;
}

.MainThree .page-box7 .bottom-box .btns .prev:hover {
  background: #182d5c url(../img/icon45.png) center center no-repeat;
  border-radius: 50%;
}

.MainThree .page-box7 .bottom-box .btns .next:hover {
  background: #182d5c url(../img/icon46.png) center center no-repeat;
  border-radius: 50%;
}

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

.MainThree .color-box .page-box8 {
  box-shadow: 0 0 7px 0 #eef3ff;
  border-radius: 0 0 1.25rem 1.25rem;
  background-color: #fff;
}

.MainThree .color-box .page-box8 .tabs-box {
  border-bottom: 1px solid #ebf1f6;
  flex-direction: column;
}

.MainThree .color-box .page-box8 .tabs-box li {
  transition: 0.4s;
  width: max-content;
  padding: 2.75rem 6.1875rem;
  cursor: pointer;
}

.MainThree .color-box .page-box8 .tabs-box li:hover,
.MainThree .color-box .page-box8 .tabs-box li.on {
  background-color: #3ca7f5;
  transition: 0.4s;
}

.MainThree .color-box .page-box8 .tabs-box li a {
  font-size: 1.25rem;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.MainThree .color-box .page-box8 .tabs-box li:hover a,
.MainThree .color-box .page-box8 .tabs-box li.on a {
  color: #fff;
  transition: 0.4s;
}

.MainThree .color-box .page-box8 .title-box {
  padding: 3.5rem 5.25rem;
}

.MainThree .color-box .page-box8 .title-box h1 {
  font-weight: bold;
  font-size: 1.875rem;
  color: #000000;
  margin-bottom: 3rem;
}

.MainThree .color-box .page-box8 .title-box p {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.5;
}

/* 关于我们_联系我们 */
.MainThree .color-box .page-box9 {
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px #eef3ff;
  border-radius: 1.25rem;
  overflow: hidden;
}

.MainThree .color-box .page-box9 .top-box {
  padding: 2rem;
  padding-top: 3.5rem;
  padding-left: 3.5rem;
}

.MainThree .color-box .page-box9 .top-box h1 {
  font-size: 2.25rem;
  color: #000;
  line-height: 1.5;
}

.MainThree .color-box .page-box9 ul {
  justify-content: space-around;
}

.MainThree .color-box .page-box9 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 6.125rem;
}

.MainThree .color-box .page-box9 ul li .img-bac {
  display: block;
  width: 7.25rem;
  height: 7.25rem;
  background: #d3ecff url(../img/icon47.png) center center no-repeat;
  background-size: inherit;
  border-radius: 50%;
  border: 2px solid #0b5cab;
}

.MainThree .color-box .page-box9 ul li h2 {
  font-size: 1.5rem;
  color: #0b5cab;
  margin-top: 0.875rem;
  margin-bottom: 1.75rem;
}

.MainThree .color-box .page-box9 ul li p {
  font-size: 1.125rem;
  color: #333333;
}

.MainThree .color-box .page-box9 ul li:nth-child(2) .img-bac {
  background: #d3ecff url(../img/icon48.png) center center no-repeat;
  background-size: inherit;
}

.MainThree .color-box .page-box9 ul li:nth-child(3) .img-bac {
  background: #d3ecff url(../img/icon49.png) center center no-repeat;
  background-size: inherit;
}

.MainThree .color-box .page-box9 .img-box {
  width: 100%;
  height: 32.5rem;
  margin-top: 4.625rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.MainThree .color-box .page-box9 .img-box img {
  width: 100%;
  height: 100%;
}

/* 关于我们_人在旅途 */
.MainThree .color-box .page-box10 ul {
  flex-wrap: wrap;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.MainThree .color-box .page-box10 ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.MainThree .color-box .page-box10 ul li .img-box {
  width: 100%;
  height: 20.3125rem;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.MainThree .color-box .page-box10 ul li .img-box span {
  opacity: 0;
  position: absolute;
  display: block;
  left: 0;
  bottom: -10px;
  width: 4rem;
  height: 4rem;
  z-index: 1;
  background: #182d5c url(../img/icon57.png) center center no-repeat;
  border-radius: 4px;
  overflow: hidden;
  transition: 0.4s;
}

.MainThree .color-box .page-box10 ul li:hover .img-box span {
  opacity: 1;
  bottom: 0;
  transition: 0.4s;
}

.MainThree .color-box .page-box10 ul li .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.MainThree .color-box .page-box10 ul li:hover .img-box img {
  transform: scale(1.1);
  transition: 0.4s;
}

.MainThree .color-box .page-box10 ul li h1 {
  font-weight: bold;
  font-size: 1.25rem;
  color: #000000;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.MainThree .color-box .page-box10 ul li em {
  font-size: 1rem;
  color: #666666;
}

.MainThree .color-box .page-box10 ul li i {
  position: absolute;
  top: 1.25rem;
  right: 0.875rem;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  background-color: #d0dff2;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.375rem;
  color: #169bd5;
  font-style: italic;
}

/* 翻页 */
.page-paging-box {
  text-align: center;
  margin-top: 5.625rem;
}

.page-paging-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  *zoom: 1;
  font-size: 0.875rem;
  color: #666;
  background-color: #fff;
  border-radius: 1.0625rem;
  width: 5.125rem;
  height: 2.25rem;
  border: 1px solid #cccccc;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  margin-right: 1rem;
  cursor: pointer;
}

.page-paging-box a.yema {
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
}

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

.page-paging-box a:hover,
.page-paging-box a.curr {
  background-color: #3ba7f4;
  color: #fff;
}

/* 关于我们_人在旅途_详情页 */
.MainThree .color-box .tabs {
  font-size: 1rem;
  color: #333333;
}

.MainThree .color-box .tabs a {
  font-size: 1rem;
  color: #333333;
  transition: 0.4s;
}

.MainThree .color-box .tabs a:hover,
.MainThree .color-box .tabs a.on {
  color: #169bd5;
  transition: 0.4s;
}

.MainThree .color-box .tabs i {
  margin: 0 4px;
}

.MainThree .color-box.pd-Two {
  padding-top: 1.75rem;
}

.MainThree .color-box .page-box11 .page-box12 .left-box {
  width: 100%;
  background-color: #fff;
  padding: 4.875rem 2.875rem;
  box-shadow: 0 0 7px 0 rgba(1, 28, 57, 0.04);
  border-radius: 0 0 1.25rem 1.25rem;
  border: 2px solid #eef3ff;
  padding-bottom: 2rem;
}

.MainThree .color-box .page-box11 .page-box12 .left-box .tab-box h1 {
  font-weight: bold;
  font-size: 1.625rem;
  color: #000000;
  line-height: 1.5;
}

.MainThree .color-box .page-box11 .page-box12 .left-box .tab-box p {
  font-size: 0.875rem;
  color: #000000;
  margin-top: 2.25rem;
}

.MainThree .color-box .page-box11 .page-box12 .left-box .tab-box p em {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/icon50.png) center center no-repeat;
  background-size: contain;
  margin-right: 10px;
}

.MainThree .color-box .page-box11 .page-box12 .left-box .tab-box p i {
  margin-left: 10px;
}

.MainThree .color-box .page-box11 .page-box12 .left-box .title-box {
  margin-top: 3.25rem;
}

.MainThree .color-box .page-box11 .page-box12 .left-box .title-box p {
  font-size: 1.125rem;
  color: #000000;
  line-height: 2;
  /* text-align: center; */
  word-break: break-all;
}

.MainThree .color-box .page-box11 .page-box12 .left-box .title-box .img-box {
  margin-top: 2.25rem;
}

.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: 48%;
  height: 21rem;
  border-radius: 1.375rem;
  overflow: hidden;
}

.MainThree .color-box .page-box11 .page-box12 .left-box .title-box .img-box .left img,
.MainThree .color-box .page-box11 .page-box12 .left-box .title-box .img-box .right img {
  width: 100%;
  height: 100%;
}

.MainThree .color-box .page-box11 .page-box12 .right-box {
  background-color: #fff;
  box-shadow: 0px 0px 7px 0px rgba(1, 28, 57, 0.04);
  border-radius: 0px 0px 1.25rem 1.25rem;
  border: 2px solid #eef3ff;
  width: 22.25rem;
  margin-left: 1.25rem;
  height: max-content;
}

.MainThree .color-box .page-box11 .page-box12 .right-box .tab {
  padding-left: 1.25rem;
  padding-top: 1.5rem;
}

.MainThree .color-box .page-box11 .page-box12 .right-box .tab h1 {
  font-size: 1.75rem;
  color: #000000;
  display: inline-block;
  padding-bottom: 1.75rem;
  border-bottom: 2px solid #169bd5;
}

.MainThree .color-box .page-box11 .page-box12 .right-box ul li:last-child {
  /* padding-bottom: 3rem; */
}

.MainThree .color-box .page-box11 .page-box12 .right-box ul li a {
  padding: 1.25rem;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  border-bottom: 1px solid #ebebeb;
  transition: 0.4s;
}

.MainThree .color-box .page-box11 .page-box12 .right-box ul li:last-child a {
  border-bottom: 0;
}

.MainThree .color-box .page-box11 .page-box12 .right-box ul li a p {
  font-size: 1.125rem;
  color: #000;
  margin-bottom: 1.375rem;
  text-transform: uppercase;
  transition: 0.4s;
}

.MainThree .color-box .page-box11 .page-box12 .right-box ul li a em {
  font-size: 0.875rem;
  color: #000000;
}

.MainThree .color-box .page-box11 .page-box12 .right-box ul li:hover a {
  background-color: #e7f8ff;
  transition: 0.4s;
}

.MainThree .color-box .page-box11 .page-box12 .right-box ul li:hover a p {
  color: #0b1f48;
  transition: 0.4s;
}

.MainThree .color-box .page-box12 {
  margin-top: 1.75rem;
}

/* 我的订单 */
.MainTwo .page-box13 {
  margin-top: 3.5rem;
}

.MainTwo .page-box13 .page-left {
  width: 18.75rem;
  height: fit-content;
  border-radius: 1.25rem;
  border: 2px solid #0a5cab;
  padding: 1.375rem;
  margin-right: 1.375rem;
}

.MainTwo .page-box13 .page-left .top-box {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d7dff8;
}

.MainTwo .page-box13 .page-left .top-box .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: #3ba7f4;
  border-radius: 20px 20px 20px 20px;
  border: 2px solid #0a5cab;
  overflow: hidden;
  margin-right: 1rem;
}

.MainTwo .page-box13 .page-left .top-box .title h1 {
  font-size: 1.125rem;
  color: #0a5cab;
}

.MainTwo .page-box13 .page-left .top-box .title p {
  color: #0a5cab;
  display: inline-block;
  padding: 4px 8px 4px 12px;
  border-radius: 0.75rem;
  text-indent: 10px;
  border: 1px solid rgba(13, 98, 174, 0.35);
  background: #d4e3fd url(../img/icon52.png) 5px center no-repeat;
  margin-top: 0.625rem;
}

.MainTwo .page-box13 .page-left .bottom-box ul li {
  margin-top: 1.25rem;
  padding-left: 7px;
}

.MainTwo .page-box13 .page-left .bottom-box ul li a {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: #333333;
  background: url(../img/icon55.png) right center no-repeat;
  transition: 0.4s;
}

.MainTwo .page-box13 .page-left .bottom-box ul li:hover a {
  color: #3ba7f4;
  margin-left: 10px;
  transition: 0.4s;
}

.MainTwo .page-box13 .page-left .bottom-box ul li a i {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background: #e7f0ff url(../img/icon53.png) center center no-repeat;
  margin-right: 10px;
  background-size: 42%;
}

.MainTwo .page-box13 .page-left .bottom-box ul li:nth-child(2) a i {
  background: #e7f0ff url(../img/icon54.png) center center no-repeat;
  background-size: 42%;
}

.MainTwo .page-box13 .page-right {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 7px 0px rgba(1, 28, 57, 0.04);
  border-radius: 1.25rem;
  border: 2px solid #eef3ff;
  padding: 2.25rem 2rem;
  padding-bottom: 5.625rem;
}

.MainTwo .page-box13 .page-right .tab h1 {
  font-size: 1.625rem;
  color: #000000;
}

.MainTwo .page-box13 .page-right .title-box ul li {
  border-radius: 0px 0px 10px 10px;
  border: 1px solid rgba(10, 92, 171, 0.14);
  margin-top: 1.375rem;
  overflow: hidden;
}

.MainTwo .page-box13 .page-right .title-box ul li:first-child {
  margin-top: 1.75rem;
}

.MainTwo .page-box13 .page-right .title-box ul li .top-box {
  height: 2.875rem;
  background-color: #dbe9ff;
  padding: 0 1.5rem;
}

.MainTwo .page-box13 .page-right .title-box ul li .top-box p,
.MainTwo .page-box13 .page-right .title-box ul li .top-box .orderNumber,
.MainTwo .page-box13 .page-right .title-box ul li .top-box i {
  font-size: 1rem;
  color: #000000;
}

.MainTwo .page-box13 .page-right .title-box ul li .top-box a {
  font-size: 1rem;
  color: #177ac1;
  white-space: nowrap;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box {
  padding: 1.75rem 1.25rem 1.75rem 1.75rem;
  background: linear-gradient(to bottom, #f5f8ff, #ffffff);
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .left-box {
  width: 12.5rem;
  height: 9.375rem;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 1.5rem;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .left-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.MainTwo .page-box13 .page-right .title-box ul li:hover .bottom-box .left-box img {
  transform: scale(1.1);
  transition: 0.4s;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box h1 {
  font-size: 1.25rem;
  color: #333333;
  line-height: 1.5;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box h2 {
  font-size: 1rem;
  color: #999999;
  line-height: 1.5;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box h3 {
  font-size: 1rem;
  color: #333333;
  background: url(../img/icon56.png) left center no-repeat;
  padding-left: 1.25rem;
  line-height: 1.5;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .body-box p {
  display: inline-block;
  font-size: 1rem;
  color: #3ba7f4;
  background-color: #edf4ff;
  padding: 6px 1.25rem;
  border-radius: 4px;
  border: 1px solid #c9dbed;
  line-height: 1.5;
  width: max-content;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .right-box {
  width: max-content;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .right-box h1 {
  font-size: 1.125rem;
  color: #2763a1;
  line-height: 1.5;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .right-box p {
  font-size: 1rem;
  color: #333333;
}

.MainTwo .page-box13 .page-right .title-box ul li .bottom-box .right-box em {
  font-size: 1.75rem;
  color: #3ba7f4;
  font-weight: bold;
}

.MainTwo .page-box13 .page-right .page-paging-box {
  margin-top: 4rem;
}

/* 我的订单_订单详情 */
.MainTwo .page-box13 .page-right .dd-xqy ul li .bottom-box .body-box h3,
.MainTwo .page-box13 .page-right .dd-xqy ul li .bottom-box .body-box p {
  margin-top: 0.625rem;
}

.MainTwo .page-box13 .page-right .dd-xqy ul li .bottom-box .right-box {
  justify-content: flex-end;
}

.MainTwo .page-box13 .page-right .dd-xqy ul li .bottom-box .right-box p {
  font-size: 1.125rem;
}

.MainTwo .page-box13 .page-right .xxr-box {
  margin-top: 2.25rem;
}

.MainTwo .page-box13 .page-right .xxr-box .box1 {
  background: linear-gradient(to bottom, #f1f5fe, #ffffff);
  border: 2px solid #dce8f3;
  padding: 1.75rem 2rem;
  border-radius: 0px 0px 0.625rem 0.625rem;
  margin-top: 2rem;
  transition: 0.4s;
}

.MainTwo .page-box13 .page-right .xxr-box > .df {
  align-items: flex-end;
}

.MainTwo .page-box13 .page-right .xxr-box > .df > a {
  font-size: 1rem;
  color: #2763a1;
  padding-right: 2.75rem;
  background: url(../img/icon40.png) right 1.75rem center no-repeat;
  transition: 0.4s;
}

.MainTwo .page-box13 .page-right .xxr-box > .df > a:hover {
  background: url(../img/icon40.png) right 0.75rem center no-repeat;
  transition: 0.4s;
}

.MainTwo .page-box13 .page-right .xxr-box .box1 ul li {
  width: calc(100% / 3);
}

.MainTwo .page-box13 .page-right .xxr-box .box1 ul li h2 {
  padding: 0.625rem 1rem;
  background: #3ba7f4;
  border-radius: 0.375rem 0px 0.375rem 0;
  width: max-content;
  font-size: 1.125rem;
  color: #ffffff;
}

.MainTwo .page-box13 .page-right .xxr-box .box1 ul li p {
  text-indent: 1rem;
  font-size: 1.25rem;
  color: #333333;
  margin-top: 1.25rem;
}

.MainTwo .page-box13 .page-box14 {
  padding-bottom: 3.5rem;
}

.MainTwo .page-box13 .page-right .dd-xqy ul li .bottom-box .body-box p {
  padding: 0.375rem 1.5rem;
}

/* 我的订单_联系人 */
.MainTwo .page-box14 .page-box15 {
  background: linear-gradient(to bottom, #f1f5fe, #ffffff);
  border-radius: 0px 0px 0.625rem 0.625rem;
  border: 1px solid rgba(10, 92, 171, 0.14);
  padding: 2.125rem 1.625rem;
  padding-bottom: 2.75rem;
  margin-top: 1.75rem;
}

.MainTwo .page-box14 .page-box15 ul li {
  min-height: 3.1875rem;
  align-items: center;
  width: max-content;
}

.MainTwo .page-box14 .page-box15 ul li label {
  font-size: 1.125rem;
  color: #333333;
  font-weight: 400;
  min-width: 5.5rem;
  margin-right: 1.125rem;
}

.MainTwo .page-box14 .page-box15 ul li .input-box,
.MainTwo .page-box14 .page-box15 ul li .select-input {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  border: 1px solid rgba(10, 92, 171, 0.22);
  height: 100%;
  width: 17.5rem;
  height: 3.1875rem;
  overflow: hidden;
  background-color: #fff;
}

.MainTwo .page-box14 .page-box15 ul li .select-input {
  overflow: visible;
  position: relative;
}

.MainTwo .page-box14 .page-box15 ul li .input-box input {
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  color: #000;
  background: #ffffff;
  /* text-indent: 1.5rem; */
  padding: 0 1.3rem;
}

.MainTwo .page-box14 .page-box15 ul li .select-input input {
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  color: #000;
  background: #ffffff;
  /* text-indent: 1.5rem; */
  padding: 0 1.3rem;
}

.MainTwo .page-box14 .page-box15 ul li .select-input .select {
  position: absolute;
  top: 150%;
  left: 0;
  z-index: 100;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.MainTwo .page-box14 .page-box15 ul li .select-input .select .box {
  max-height: 160px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-top: none;
}

.MainTwo .page-box14 .page-box15 ul li .select-input .select .box a {
  display: block;
  width: 100%;
  line-height: 42px;
  padding-left: 20px;
  font-size: 14px;
  text-align: left;
  color: #999;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

.MainTwo .page-box14 .page-box15 ul li .select-input .select .box a:hover {
  background-color: #3ba7f4;
  color: #fff;
}

.MainTwo .page-box14 .page-box15 ul li .select-input.on .select {
  top: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.MainTwo .page-box14 .page-box15 ul li p {
  font-size: 1.125rem;
  color: #333333;
  min-width: 13.5rem;
}

.MainTwo .page-box14 .page-box15 ul li a.btn,
.MainTwo .page-box14 .page-box15 ul li button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.625rem;
  height: 2.75rem;
  border-radius: 4px;
  border: 1px solid rgba(10, 92, 171, 0.22);
  font-size: 1rem;
  color: #2f99e5;
  background-color: #ddf1ff;
  flex-shrink: 0;
  margin-top: 4px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.MainTwo .page-box14 .page-box15 ul li + li {
  margin-top: 1.75rem;
  position: relative;
}

.MainTwo .page-box14 .page-box15 ul li .page-down-bottom {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  object-fit: contain;
}

.MainTwo .page-box14 .page-box15 ul .btns {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.MainTwo .page-box14 .page-box15 ul .btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.625rem;
  height: 3.125rem;
  background: #3ba7f4;
  border-radius: 4px;
  font-size: 1rem;
  color: #ffffff;
}

.MainTwo .page-box14 .page-box16 {
  margin-top: 1.75rem;
  padding: 2.125rem 1.625rem;
}

.MainTwo .margin-b {
  margin-bottom: 3.125rem;
}

.MainTwo .page-box14 .page-box15 ul li em {
  display: inline-block;
  width: 100%;
  /* text-align: center; */
  font-size: 0.875rem;
  color: #182d5c;
  margin-top: 1rem;
  padding-left: 6.7rem;
}

.MainTwo .tab.tab-box16 {
  margin-top: 3.5rem;
}

/* 邮轮航线列表页 */
.MainFive .banner {
  width: 100%;
  height: 36.875rem;
}

.MainFive .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.MainFive .margin-b {
  background-color: #f4f7ff;
  padding-bottom: 4.5rem;
}

.MainFive .page-box17 {
  background-color: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  overflow: hidden;
}

.MainFive .page-box17 .main #index-cruise {
  background-color: transparent;
  height: 7rem;
}

.MainFive .page-box17 .main #index-cruise .page-search {
  border-bottom: 1px solid #ebf1f6;
  padding-left: 1.625rem;
}

.MainFive .page-box17 .main #index-cruise .page-search button {
  height: 2.625rem;
  font-size: 1.25rem;
  color: #fff;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  background-color: #3ca7f5;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  text-align: left;
  text-align: center;
  white-space: nowrap;
}

.MainFive .page-box17 .main #index-cruise .page-search .airline::before {
  display: none;
}

.MainFive .page-box17 .main #index-cruise .page-search .select-time .year-list,
.MainFive .page-box17 .main #index-cruise .page-search .select-time .month-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-y: auto;
  flex-direction: column;
}

.MainFive .page-box17 .page-box18 {
  padding: 0 1.625rem;
  padding-top: 1.875rem;
  padding-bottom: 5rem;
}

.MainFive .page-box17 .page-box18 .tab-box a {
  display: flex;
  align-items: center;
  width: 13.125rem;
  height: 3.25rem;
  text-indent: 2.75rem;
  background-color: #f4f7ff;
  font-size: 1.125rem;
  color: #333333;
  border-radius: 4px;
  border: 1px solid rgba(202, 206, 216, 0.59);
  position: relative;
  cursor: pointer;
}

.MainFive .page-box17 .page-box18 .tab-box a:last-child {
  margin-left: 1.25rem;
}

.MainFive .page-box17 .page-box18 .tab-box a.on {
  background: #f4f7ff url(../img/icon66.png) 0.875rem center no-repeat;
  background-size: 10%;
}

.MainFive .page-box17 .page-box18 .tab-box a {
  background: #f4f7ff url(../img/icon67.png) 0.875rem center no-repeat;
  background-size: 10%;
}

.MainFive .page-box17 .page-box18 .tab-box a::after {
  content: '';
  display: block;
  width: 2.75rem;
  height: 1.375rem;
  position: absolute;
  right: 0;
  background: url(../img/icon68.png) center center no-repeat;
  background-size: 30%;
  border-left: 1px solid #cfcfcf;
}

.MainFive .page-box17 .page-box18 .tab-box a.desActive::after {
  background: url(../img/icon69.png) center center no-repeat;
  background-size: 30%;
}

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

.MainFive .page-box17 .page-box18 .page-box19 > ul {
  flex-wrap: wrap;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li {
  width: 49.5%;
  height: 21.5rem;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(162, 162, 162, 0.36);
  border: 2px solid transparent;
  border-radius: 1.25rem;
  padding: 1.25rem;
  margin-top: 1.625rem;
  transition: 0.4s;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li:hover {
  box-shadow: none;
  border: 2px solid #3ca7f5;
  transition: 0.4s;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .img-box {
  width: 17.8125rem;
  height: 13.9375rem;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 1.125rem;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .img-box img {
  width: 100%;
  height: 100%;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box {
  border-bottom: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
  width: 100%;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box h1 {
  font-weight: bold;
  font-size: 1.625rem;
  color: #000000;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box h2 {
  width: max-content;
  font-size: 1rem;
  color: #004d9c;
  padding: 0.375rem 0.875rem;
  border: 1px solid #76bdf1;
  background-color: #e9f5fe;
  border-radius: 0.9375rem;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box > div {
  align-items: flex-end;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box > div p {
  font-weight: bold;
  font-size: 1rem;
  color: #333333;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box > div p i {
  font-size: 1.5rem;
  color: #337eb3;
  font-weight: bold;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box > div p em {
  font-size: 2.375rem;
  color: #337eb3;
  font-weight: bold;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.1875rem;
  height: 3.125rem;
  background-color: #004d9c;
  border-radius: 0.25rem;
  font-weight: bold;
  font-size: 1.125rem;
  color: #ffffff;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .top-box .title-box > div a:hover {
  background-color: #3ca7f5;
}

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

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .bottom-box .left-box h1 {
  font-size: 1rem;
  color: #666666;
  padding-left: 1.75rem;
  background: url(../img/icon6.png) left center no-repeat;
  background-size: contain;
  margin-right: 0.875rem;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .bottom-box .left-box ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 2.125rem;
  border-radius: 1.0625rem;
  border: 1px solid #cccccc;
  cursor: pointer;
  transition: 0.4s;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .bottom-box .left-box ul li:hover {
  border: 1px solid #76bdf1;
  transition: 0.4s;
}

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

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .bottom-box .left-box ul li p {
  font-weight: bold;
  font-size: 1rem;
  color: #333333;
}

.MainFive .page-box17 .page-box18 .page-box19 > ul > li .bottom-box .right-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 2.125rem;
  font-size: 1rem;
  border-radius: 1.0625rem;
  border: 1px solid #76bdf1;
  background-color: #bee2fc;
  color: #0f5a9e;
}

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

/* 邮轮航线列表页_购买弹窗 */
.MainFive .page-box20 {
  background-color: #fff;
  box-shadow: 0px 0px 7px 0px #eef3ff;
  border-radius: 0px 0px 1.25rem 1.25rem;
  border: 2px solid #eef3ff;
  padding: 1.5rem;
  padding-top: 2.25rem;
  padding-bottom: 3.5625rem;
}

.MainFive .page-box20 .page-box21 {
  border-radius: 1.25rem;
  border: 2px solid #3ca7f5;
  overflow: hidden;
}

.MainFive .page-box20 .page-box21 .left-box {
  width: 50%;
  height: 30.3125rem;
  overflow: hidden;
}

.MainFive .page-box20 .page-box21 .left-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.MainFive .page-box20 .page-box21:hover .left-box img {
  transform: scale(1.1);
  transition: 0.4s;
}

.MainFive .page-box20 .page-box21 .right-box {
  width: 50%;
  padding: 3.5rem 3.375rem 4.375rem 2.375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.MainFive .page-box20 .page-box21 .right-box .top-box h1 {
  font-weight: bold;
  font-size: 1.75rem;
  color: #000000;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.MainFive .page-box20 .page-box21 .right-box .top-box h2 {
  font-size: 1rem;
  color: #004d9c;
  width: max-content;
  padding: 7px 14px;
  border-radius: 15px;
  border: 1px solid #76bdf1;
  background-color: #e9f5fe;
  margin-bottom: 2.75rem;
}

.MainFive .page-box20 .page-box21 .right-box .top-box h3 {
  font-weight: bold;
  font-size: 1rem;
  color: #333333;
}

.MainFive .page-box20 .page-box21 .right-box .top-box h3 em {
  font-size: 1.5rem;
  color: #337eb3;
}

.MainFive .page-box20 .page-box21 .right-box .top-box h3 i {
  font-size: 2.375rem;
  color: #337eb3;
  margin-right: 4px;
}

.MainFive .page-box20 .page-box21 .right-box .bottom-box .left p {
  font-size: 1.125rem;
  color: #000000;
}

.MainFive .page-box20 .page-box21 .right-box .bottom-box .left h1 {
  font-weight: bold;
  font-size: 2.25rem;
  color: #000000;
  margin-top: 1.25rem;
}

.MainFive .page-box20 .page-box21 .right-box .bottom-box .right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.25rem;
  height: 4rem;
  background: #3ca7f5;
  border-radius: 4px;
  border: 1px solid #3ca7f5;
}

.MainFive .page-box20 .page-box21 .right-box .bottom-box .right a {
  font-weight: bold;
  font-size: 1.25rem;
  color: #ffffff;
}

.MainFive .page-box20 .page-box22 {
  margin-top: 2.25rem;
}

.MainFive .page-box20 .page-box22 > ul > li {
  background: #f4f9fc;
  border-radius: 1.25rem;
  border: 1px solid rgba(178, 191, 199, 0.59);
  background-color: #f4f9fc;
  padding: 1rem;
  padding-right: 2.25rem;
}

.MainFive .page-box20 .page-box22 > ul > li + li {
  margin-top: 1.25rem;
}

.MainFive .page-box20 .page-box22 ul li .img-box {
  width: 23.375rem;
  height: 17.75rem;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 1.75rem;
  position: relative;
}

.MainFive .page-box20 .page-box22 ul li .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.MainFive .page-box20 .page-box22 ul li .img-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #182d5c;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #3ca7f5;
  position: absolute;
  left: 0.875rem;
  top: 0.875rem;
  font-style: italic;
}

.MainFive .page-box20 .page-box22 ul li .right-box {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #cadde8;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box .title-box h1 {
  font-weight: bold;
  font-size: 1.625rem;
  color: #333333;
  line-height: 1.5;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box .title-box p {
  font-size: 1.125rem;
  color: #333333;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box .title-box p em {
  font-size: 2.25rem;
  color: #3ca7f5;
  font-weight: bold;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box > .df {
  margin-top: 2rem;
}

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

.MainFive .page-box20 .page-box22 ul li .right-box .top-box > .df .left ul li p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #333333;
  padding-left: 2.5rem;
  background: url(../img/icon64.png) left center no-repeat;
  background-size: contain;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box > .df .left ul li p em {
  font-weight: bold;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box > .df .left ul li:last-child p {
  background: url(../img/icon71.png) left center no-repeat;
  background-size: contain;
  margin-left: 3.25rem;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box .right button {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background: url(../img/icon72.png) center center no-repeat;
  background-size: 50%;
  border-radius: 2px;
  border: 1px solid #73819e;
  cursor: pointer;
  transition: 0.4s;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box .right button.add {
  background: url(../img/icon74.png) center center no-repeat;
  background-size: 50%;
  cursor: pointer;
  transition: 0.4s;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box .right button:hover {
  background: #182d5c url(../img/icon73.png) center center no-repeat;
  background-size: 50%;
  transition: 0.4s;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box .right button.add:hover {
  background: #182d5c url(../img/icon75.png) center center no-repeat;
  background-size: 50%;
  transition: 0.4s;
}

.MainFive .page-box20 .page-box22 ul li .right-box .top-box .right p {
  font-size: 1.375rem;
  color: #14507c;
  margin: 0 1.5rem;
}

.MainFive .page-box20 .page-box22 ul li .right-box .bottom-box ul li p {
  font-size: 1.125rem;
  color: #333333;
}

.MainFive .page-box20 .page-box22 ul li .right-box .bottom-box ul li h1 {
  font-size: 1.375rem;
  color: #333333;
  margin-top: 0.875rem;
}

.MainFive .page-box23 {
  margin-top: 1.875rem;
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px rgba(1, 28, 57, 0.04);
  border-radius: 0px 0px 20px 20px;
  border: 2px solid #eef3ff;
  padding: 2.75rem 2.25rem 3.1875rem 1.75rem;
}

.MainFive .page-box23 .top-box h1,
.MainFive .page-box24 .top-box h1 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #000000;
}

.MainFive .page-box23 .top-box h2,
.MainFive .page-box24 .top-box h2 {
  font-size: 1.25rem;
  color: #000000;
  text-transform: uppercase;
  margin-top: 1.125rem;
}

.MainFive .page-box23 .body-box {
  margin-top: 5rem;
  font-size: 1.25rem;
}

.MainFive .page-box23 .body-box img {
  max-width: 100%;
  height: auto;
}

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

.MainFive .page-box23 .body-box ul li .left-box {
  padding-left: 4.75rem;
  margin-right: 1.875rem;
}

.MainFive .page-box23 .body-box ul li .left-box h1 {
  font-size: 1.625rem;
  color: #000000;
}

.MainFive .page-box23 .body-box ul li .left-box i {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #182d5c;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  top: 0%;
  left: 1.5rem;
  transform: translate(0%, 0%);
}

.MainFive .page-box23 .body-box ul li .left-box i::after,
.MainFive .page-box23 .body-box ul li .left-box i::before {
  content: '';
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  margin: auto;
  border-radius: 50%;
  background: rgba(22, 155, 213, 0.4);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: boderScale2 3s infinite;
}

.MainFive .page-box23 .body-box ul li .left-box i::before {
  animation-delay: 0.75s;
}

@keyframes boderScale2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.MainFive .page-box23 .body-box ul li .right-box > .pr {
  width: 100%;
  background-color: #f4f9fc;
  border-radius: 1.25rem;
  border: 1px solid rgba(178, 191, 199, 0.59);
  padding: 0 1.75rem;
  padding-top: 4rem;
  padding-bottom: 2.125rem;
}

.MainFive .page-box23 .body-box ul li .right-box h1 {
  width: max-content;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 10px 1.75rem;
  background: #3ca7f5;
  border-radius: 1.4375rem;
  border: 1px solid #80a1b9;
  position: absolute;
  left: 0;
  top: -10px;
}

.MainFive .page-box23 .body-box ul li .right-box .title p {
  font-size: 1.125rem;
  color: #333333;
}

.MainFive .page-box23 .body-box ul li .right-box .title .title-top {
  border-bottom: 1px solid #b2c3ce;
  padding-bottom: 1.75rem;
}

.MainFive .page-box23 .body-box ul li .right-box .title .title-bottom {
  padding-top: 1.75rem;
}

.MainFive .page-box24 {
  margin-top: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px rgba(1, 28, 57, 0.04);
  border-radius: 0px 0px 20px 20px;
  border: 2px solid #eef3ff;
  padding: 2.75rem 2.25rem 3.1875rem 1.75rem;
}

.MainFive .page-box24 .myDiv {
  margin-top: 3rem;
}

.MainFive .page-box24 .myDiv h1 {
  color: #000;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2;
}

.MainFive .page-box24 .myDiv p {
  color: #000;
  font-size: 1rem;
  line-height: 2;
}

.MainFive .arrow {
  width: 3.375rem;
  height: 1.375rem;
  background: #fff url(../img/icon76.png) center center no-repeat;
  background-size: cover;
  transition: background 0.4s ease-in-out;
  margin: 0 auto;
  margin-top: 4.5rem;
  cursor: pointer;
  display: none;
}

.MainFive .on .arrow {
  background: #fff url(../img/icon77.png) center center no-repeat;
  background-size: cover;
  transition: background 0.4s ease-in-out;
}

.MainFive .arrow.on {
  background: #fff url(../img/icon77.png) center center no-repeat;
  background-size: cover;
  transition: background 0.4s ease-in-out;
}

.MainFive .page-box24 .myDiv .none {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: height 0.4s ease-out, opacity 0.4s ease-out;
}

.MainFive .page-box24 .myDiv.on .none {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: height 0.4s ease-out, opacity 0.4s ease-out;
}

.MainFive .page-box25 {
  width: 100%;
  height: 7.5rem;
  background-color: #1c3a7d;
  justify-content: flex-end;
}

.MainFive .page-box25 ul li + li {
  margin-left: 5rem;
}

.MainFive .page-box25 ul li p {
  font-size: 1.125rem;
  color: #ffffff;
}

.MainFive .page-box25 ul li p em {
  font-size: 1.625rem;
  font-weight: bold;
}

.MainFive .page-box25 ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.25rem;
  height: 4rem;
  background-color: #3ca7f5;
  border-radius: 4px;
  border: 1px solid rgba(17, 115, 187, 0.59);
  font-weight: bold;
  font-size: 1.25rem;
  color: #ffffff;
  margin-left: 3.5rem;
}

/* 邮轮航线列表页_详细信息 */
.MainFive .page-box20 .page-box22 > ul > li:nth-child(n + 5) {
  /* display: none; */
}

.MainFive .page-box20 .page-box22 > ul > li {
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.MainFive .page-box20 .page-box22 > ul.show-all > li {
  display: flex;
}

.arrow {
  cursor: pointer;
}

/* 邮轮品牌列表页 */
.MainFive .page-bac {
  background-color: #fff;
  box-shadow: 0px 0px 7px 0px rgba(1, 28, 57, 0.04);
  border-radius: 0px 0px 1.25rem 1.25rem;
  border: 2px solid #eef3ff;
  padding: 2.625rem 1.625rem 3.75rem 1.625rem;
}

.MainFive .page-bac .page-box26 .top-box h1,
.MainFive .page-bac .page-box27 .top-box h1,
.MainFive .page-bac .page-box28 .top-box h1 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #000000;
  line-height: 1.5;
}

.MainFive .page-bac .page-box26 .top-box h2,
.MainFive .page-bac .page-box27 .top-box h2,
.MainFive .page-bac .page-box28 .top-box h2 {
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.5;
  text-transform: uppercase;
}

.MainFive .page-bac .page-box26 .mySwiper6 {
  margin-top: 3.75rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #d3d7e3;
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul {
  width: 100%;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 19% 19% 19% 19% 19%;
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li {
  background: #ffffff;
  height: 7.75rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
  margin-bottom: 1.25rem;
  cursor: pointer;
  border: 2px solid rgba(11, 92, 171, 0.1);
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li::after {
  content: '';
  inset: 0;
  position: absolute;
  background-color: rgba(60, 167, 245, 0.41);
  opacity: 0;
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li.active {
  background: rgba(60, 167, 245, 0.41);
  border: 2px solid rgba(10, 84, 157, 0.66);
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li.active::after {
  opacity: 1;
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li:hover {
  background: rgba(60, 167, 245, 0.41);
  border: 2px solid rgba(10, 84, 157, 0.66);
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li a {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li:hover a {
  background: rgba(60, 167, 245, 0.42);
  transition: 0.4s;
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.MainFive .page-bac .page-box26 .mySwiper6 .swiper-wrapper .swiper-slide ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.MainFive .page-bac .page-box26 .switch {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
  margin: 0 -14px;
}

.MainFive .page-bac .page-box26 .switch .prev:hover {
  background: #182d5c url(../img/icon80.png) center center no-repeat;
  border: none;
}

.MainFive .page-bac .page-box26 .switch .next:hover {
  background: #182d5c url(../img/icon81.png) center center no-repeat;
  border: none;
}

.MainFive .page-bac .page-box26 .switch .prev {
  width: 4.5rem;
  height: 4.5rem;
  background: #fff url(../img/icon78.png) center center no-repeat;
  border: 2px solid transparent;
  margin: 0 14px;
  cursor: pointer;
  background-size: 20%;
  border-radius: 50%;
  border: 2px solid rgba(60, 167, 245, 0.42);
}

.MainFive .page-bac .page-box26 .switch .next {
  width: 4.5rem;
  height: 4.5rem;
  background: #fff url(../img/icon79.png) center center no-repeat;
  border: 2px solid transparent;
  margin: 0 14px;
  cursor: pointer;
  background-size: 20%;
  border-radius: 50%;
  border: 2px solid rgba(60, 167, 245, 0.42);
}

.MainFive .page-bac .page-box27 .top-box {
  margin-top: 3.5rem;
}

.MainFive .page-bac .page-box27 .bottom-box {
  margin-top: 3.5rem;
  background-color: #f4f9fc;
}

.MainFive .page-bac .page-box27 .bottom-box .left-box {
  width: 50%;
  height: 30rem;
  border-radius: 10px;
  overflow: hidden;
}

.MainFive .page-bac .page-box27 .bottom-box .left-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.MainFive .page-bac .page-box27 .bottom-box .right-box {
  height: fit-content;
  padding: 3rem 2.125rem 4rem 1.75rem;
  overflow-y: auto;
}

.MainFive .page-bac .page-box27 .bottom-box .right-box h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  line-height: 1.5;
}

.MainFive .page-bac .page-box27 .bottom-box .right-box p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.5;
  text-align: justify;
}

.MainFive .page-bac .page-box27 .bottom-box .right-box::-webkit-scrollbar {
  width: 3px;
  height: 10px;
  background-color: #eee;
  border-radius: 25px;
}

.MainFive .page-bac .page-box27 .bottom-box .right-box::-webkit-scrollbar-track {
  border-radius: 25px;
}

.MainFive .page-bac .page-box27 .bottom-box .right-box::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #3ba7f4;
}

.MainFive .page-bac .page-box28 {
  margin-top: 3.375rem;
}

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

.MainFive .page-bac .page-box28 .bottom-box ul {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.MainFive .page-bac .page-box28 .bottom-box ul li {
  border-radius: 1.25rem;
  border: 1px solid #d2d9de;
  background-color: #f4f9fc;
  padding: 1rem;
  margin-top: 1.25rem;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .img-box {
  /* width: 23.375rem; */
  /* height: 17.75rem; */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .img-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #182d5c;
  border-radius: 50%;
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  font-size: 1.5rem;
  color: #3ca7f5;
  font-style: italic;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .img-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.125rem;
  height: 3rem;
  background: #182d5c;
  border-radius: 4px;
  overflow: hidden;
  font-weight: bold;
  font-size: 1.125rem;
  color: #ffffff;
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translate(-50%, 0);
  transition: 0.4s;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .img-box a:hover {
  background: #3ca7f5;
  transition: 0.4s;
}

.MainFive .page-bac .page-box28 .bottom-box ul li h1 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #333333;
  margin-top: 1.75rem;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container {
  display: flex;
  flex-direction: column;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container .stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container .stars .recommend {
  width: 2.125rem;
  height: 2.25rem;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container .stars .recommend img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container .stars p {
  font-size: 1.125rem;
  color: #333333;
  margin-right: 0.75rem;
  margin-left: 0.5rem;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container .stars .star {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  margin-right: 0.375rem;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container .stars .star:last-child {
  margin-right: 0;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container .stars .star .star-bg {
  width: 100%;
  height: 100%;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .rating-container .stars .star .star-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 1.375rem;
  border-radius: 10px;
  border: 1px solid #d2e1ea;
  background-color: #fff;
  margin-top: 1.375rem;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .bottom > div {
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .bottom > div:nth-child(1) {
  border-right: 1px solid #cdd8de;
  border-bottom: 1px solid #cdd8de;
  padding-top: 0;
  padding-bottom: 1.125rem;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .bottom > div:nth-child(2) {
  border-left: 1px solid #cdd8de;
  border-bottom: 1px solid #cdd8de;
  padding-top: 0;
  padding-bottom: 1.125rem;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .bottom > div:nth-child(3) {
  border-right: 1px solid #cdd8de;
  border-top: 1px solid #cdd8de;
  padding-top: 1.125rem;
  padding-bottom: 0;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .bottom > div:nth-child(4) {
  border-left: 1px solid #cdd8de;
  border-top: 1px solid #cdd8de;
  padding-top: 1.125rem;
  padding-bottom: 0;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .bottom > div p {
  font-size: 1.125rem;
  color: #333333;
}

.MainFive .page-bac .page-box28 .bottom-box ul li .bottom > div h2 {
  font-size: 1.375rem;
  color: #333333;
  margin-top: 0.875rem;
  word-break: break-all;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}

.MainFive .page-bac .page-box28 .bottom-box ul.show-all li {
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  display: block;
}

/* 邮轮品牌列表页_详情 */
.MainFive .page-bac .page-box29 .top-box .img-box {
  width: 31.4375rem;
  height: 23.875rem;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 1.625rem;
}

.MainFive .page-bac .page-box29 .top-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.MainFive .page-bac .page-box29 .top-box .right-box h1 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #333333;
  margin-top: 1.5rem;
  line-height: 1.5;
}

.MainFive .page-bac .page-box29 .top-box .right-box h2 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #337eb3;
  margin-top: 1.375rem;
}

.MainFive .page-bac .page-box29 .top-box .right-box h2 em {
  font-size: 2.375rem;
}

.MainFive .page-bac .page-box29 .top-box .right-box h2 i {
  font-size: 1rem;
  color: #333333;
}

.MainFive .page-bac .page-box29 .top-box .right-box ul {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(158, 172, 181, 0.66);
  padding: 1.75rem 2.25rem;
  padding-left: 0;
  margin-top: 1.75rem;
}

.MainFive .page-bac .page-box29 .top-box .right-box ul li {
  width: calc(100% / 5);
  border-left: 1px solid #cccccc;
  padding: 0;
  padding-left: 2rem;
}

.MainFive .page-bac .page-box29 .top-box .right-box ul li:first-child {
  border-left: 0;
}

.MainFive .page-bac .page-box29 .top-box .right-box ul li p {
  font-size: 1.125rem;
  color: #333333;
}

.MainFive .page-bac .page-box29 .top-box .right-box ul li h3 {
  font-size: 1.375rem;
  color: #333333;
  margin-top: 0.875rem;
  word-break: break-all;
  line-height: 1.5;
}

.MainFive .page-bac .page-box29 .top-box .right-box .bottom {
  margin-top: 2.5rem;
}

.MainFive .page-bac .page-box29 .top-box .right-box .bottom p {
  font-size: 1.125rem;
  color: #182d5c;
}

.MainFive .page-bac .page-box29 .top-box .right-box .bottom h4 {
  font-weight: bold;
  font-size: 2.25rem;
  color: #333;
  margin-top: 0.6875rem;
}

.MainFive .page-bac .page-box29 .top-box .right-box .bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.25rem;
  height: 4rem;
  background: #3ca7f5;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.25rem;
  color: #ffffff;
}

.MainFive .page-bac .page-box29 .bottom-box {
  border-radius: 10px;
  border: 1px solid rgba(178, 191, 199, 0.59);
  background-color: #f4f9fc;
  margin-top: 3.5rem;
  padding: 2.75rem 2.5rem;
  padding-bottom: 3.875rem;
}

.MainFive .page-bac .page-box29 .bottom-box h1 {
  font-size: 1.5rem;
  color: #000000;
  text-transform: uppercase;
}

.MainFive .page-bac .page-box29 .bottom-box p {
  font-size: 1rem;
  color: #000000;
  line-height: 2;
  margin-top: 2.5rem;
}

.bookNow-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;

  /* position: fixed; */
  /* top: 5.625rem; */
}

.bookNow-box .bookNow {
  font-size: 1.25rem;
  width: fit-content;
  font-weight: bold;
  color: #ffffff;
  background: #3ca7f5;
  border-radius: 4px;
  border: 1px solid #3ca7f5;
  padding: 1.4rem 2rem;
  cursor: pointer;
}

.fj_dialog {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: none;
  max-height: 40vh;
  overflow: hidden;
  overflow-y: scroll;
  z-index: 1;
}

.dialog-box {
  width: 100%;
  height: 100%;
  background-color: #1c3a7d;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.25rem;
  padding: 2rem 0;
  box-shadow: 0 7px 30px 0 rgba(100, 100, 111, 0.2);
}

.dialog-box .left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dialog-box .left li {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  font-size: 16px;
  color: #ffffff;
}

.dialog-box .left li span {
  font-weight: bold;
  font-size: 20px;
  padding: 0 6px;
}

.dialog-box .right {
  margin-left: 3.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.25rem;
  height: 4rem;
  background: #3ca7f5;
  border-radius: 4px;
  border: 1px solid #3ca7f5;
  font-weight: bold;
  font-size: 1.25rem;
  color: #ffffff;
}

.ny-mySwiper {
  height: 36.875rem;
}

.ny-mySwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text-box {
  position: absolute;
  bottom: 15%;
  color: #ffffff;
  line-height: 1.3;
}

.ny-banner-text-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  line-height: 1.3;
}

.banner-text-box .cn {
  font-size: 4.75rem;
  font-weight: 300;
}

.ny-banner-text-box .cn {
  font-weight: 500;
  font-size: 4rem;
}

.ny-banner-text-box .en {
  font-size: 3rem;
  font-weight: 300;
}

.banner-text-box .en {
  font-size: 4.125rem;
  font-weight: 300;
}

.ny-banner-text-box .outline,
.banner-text-box .outline {
  font-size: 1.875rem;
}

@media screen and (max-width: 769px) {
  .banner-text-box .cn {
    font-size: 2.25rem;
    font-weight: 300;
  }

  .ny-banner-text-box .cn {
    font-weight: 500;
    font-size: 1.875rem;
  }

  .ny-banner-text-box .en {
    font-size: 1.875rem;
    font-weight: 300;
  }

  .banner-text-box .en {
    font-size: 1.875rem;
    font-weight: 300;
  }

  .ny-banner-text-box .outline,
  .banner-text-box .outline {
    font-size: 1rem;
  }
}

.ritchText img {
  max-width: 100%;
  height: auto;
}

.popup-box {
  display: none;
}

.popup-box .agreement-box {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(10px) brightness(90%);
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1001;
  padding: 5%;
  display: flex;
  justify-content: center;
}

.popup-box .agreement-box .agreement {
  width: 80%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-box .agreement-box .agreement h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  color: #000;
}

.popup-box .agreement-box .agreement .content-box {
  height: 75%;
  overflow-y: scroll;
  line-height: 1.5;
  font-size: 1rem;
  word-break: break-all;
  color: #000;
}

.popup-box .agreement-box .agreement .agreement-msg {
  font-size: 1rem;
  line-height: 1.5;
}

.popup-box .agreement-box .agreement .agreement-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.popup-box .agreement-box .agreement .agreement-btns .btns {
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  color: white;
  background-color: #004d9c;
  font-size: 1rem;
  border-radius: 6px;
}

.popup-box .agreement-box .agreement .agreement-btns .btns.cancel {
  background-color: #999;
}

.page-box27-content,
.ritchText {
  line-height: 1.5;
}

.paging {
  display: flex;
  justify-content: space-between;
}

.paging a {
  width: 45%;
  color: #333;
  margin-top: 3rem;
  font-size: 1.25rem;
  cursor: pointer;
}

.paging a:hover {
  color: #3ca7f5;
}

.qrcodes-box {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.qrcodes-box .qrcodes {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.qrcodes-box .qrcodes .box {
  width: 10rem;
  height: 10rem;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  padding: 5px;
}

.qrcodes-box .qrcodes .box img {
  width: 100%;
  height: 100%;
}

.qrcodes-box .qrcodes span {
  font-size: 1rem;
  color: #fff;
}

.travelTime-box {
  align-items: center;
  margin: 3rem 0 0 0;
  gap: 1rem;

}

.travelTime-box p {
  font-weight: bold;
  font-size: 1rem;
}

.travelTime {
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}

.travelTime li {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.0625rem;
  border: 1px solid #cccccc;
  cursor: pointer;
  transition: 0.4s;
  font-weight: bold;
  font-size: 1rem;
  color: #333333;
  padding: 0.5rem 1rem;
}

.travelTime li:hover,
.travelTime li.active {
  border: 1px solid #76bdf1;
  color: #76bdf1;
}

@media screen and (max-width: 768px) {
  .travelTime-box {
    flex-direction: column;
    align-items: start;
  }
}
