@charset "UTF-8";
@font-face {
  font-family: "Infra";
  src: url(../fonts/Infra-Regular.otf) format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Infra";
  src: url(../fonts/Infra-Medium.otf) format("opentype");
  font-weight: bold;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.clearfix:after {
  content: " ";
  display: table;
  height: 0;
  clear: both;
  visibility: hidden;
}

p {
  margin: 0;
  padding: 0;
}

a, a:hover, a:visited {
  color: #000;
  text-decoration: none;
}

.slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-color: #000;
}

body {
  font-family: "Infra", "PingFang SC", "Helvetica Neue", "Hiragino Sans GB", "冬青黑体", "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  overflow: hidden;
}
body.zh .en {
  display: none;
}
body.zh .zh {
  display: inline-block;
}
body.en .zh {
  display: none;
}
body.en .en {
  display: inline-block;
}
body.en .wrapper .float-w {
  padding-bottom: 140px;
}

.hide {
  display: none !important;
}

img, video {
  vertical-align: middle;
}

.shadow {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
}
.shadow.open {
  display: block;
  -webkit-animation-name: shadowShow;
  animation-name: shadowShow;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.shadow.close {
  display: block;
  -webkit-animation-name: shadowHide;
  animation-name: shadowHide;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ticket-w {
  position: fixed;
  z-index: 12;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
}
.ticket-w .btn-close-ticket {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  right: 0;
  top: 0;
  z-index: 2;
}
.ticket-w .btn-close-ticket img {
  width: 20px;
}
.ticket-w .ticket--w {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.ticket-w .ticket--w img {
  max-height: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
}

.display-pc {
  display: block;
}

.not-display-pc {
  display: none;
}

.marquee {
  animation-name: marquee;
  animation-fill-mode: both;
  animation-timing-function: linear;
}
.marquee.running {
  animation-iteration-count: infinite;
}

.wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wrapper .logo {
  position: absolute;
  left: 20px;
  top: 20px;
  height: 100px;
  z-index: 6;
}
.wrapper .menu-open {
  position: absolute;
  left: 20px;
  bottom: 46px;
  cursor: pointer;
  z-index: 6;
}
.wrapper .menu-open .b-menu {
  display: inline-block;
  padding-left: 0;
  padding-top: 0;
  position: relative;
  user-select: none;
  width: 46px;
  height: 40px;
  float: left;
  z-index: 21;
  cursor: pointer;
}
.wrapper .menu-open .b-menu .b-bun {
  background-color: #fff;
  position: relative;
  width: 46px;
  height: 4px;
  float: left;
}
.wrapper .menu-open .b-menu .b-bun--top {
  top: 0;
  transition: all 0.4s;
}
.wrapper .menu-open .b-menu .b-bun--middle {
  top: 13px;
}
.wrapper .menu-open .b-menu .b-bun--bottom {
  transition: all 0.4s;
  top: 26px;
}
.wrapper .menu-open .b-menu.open .b-bun--top {
  top: 15px;
  transform: rotate(30deg) scale(1.25);
}
.wrapper .menu-open .b-menu.open .b-bun--middle {
  visibility: hidden;
}
.wrapper .menu-open .b-menu.open .b-bun--bottom {
  top: 7px;
  transform: rotate(-30deg) scale(1.25);
}
.wrapper .points {
  position: absolute;
  z-index: 6;
  right: 20px;
  top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}
.wrapper .points a {
  color: #fff;
  margin-left: 15px;
}
.wrapper .search {
  position: absolute;
  z-index: 6;
  right: 20px;
  top: 40px;
  cursor: pointer;
  display: none;
}
.wrapper .search img {
  height: 40px;
}
.wrapper .slogan {
  position: absolute;
  right: 20px;
  bottom: 46px;
  z-index: 6;
}
.wrapper .slogan img.zh {
  height: 80px;
}
.wrapper .slogan img.en {
  height: 100px;
}
.wrapper .footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 26px;
  width: 100%;
  background-color: #000;
  z-index: 3;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 10px;
}
.wrapper .footer a {
  color: #fff;
}
.wrapper .footer .share {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .footer .share .social {
  height: 16px;
  margin-right: 26px;
  cursor: pointer;
}
.wrapper .footer .share .social.wx {
  height: 13px;
}
.wrapper .footer .share .btn-contact {
  cursor: pointer;
}
.wrapper .footer .lang-w span {
  transition: opacity 0.4s;
  cursor: pointer;
  margin: 0 2px;
}
.wrapper .bg-slides {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.wrapper .bg-slides .nav {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  cursor: pointer;
  z-index: 2;
}
.wrapper .bg-slides .nav.nav-prev {
  left: 0;
}
.wrapper .bg-slides .nav.nav-next {
  right: 0;
}
.wrapper .bg-slides .nav:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.wrapper .bg-slides .hint {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 46px;
  height: 40px;
  z-index: 1;
  display: none;
  text-align: center;
}
.wrapper .bg-slides .hint img {
  height: 40px;
  margin: 0 auto;
}
.wrapper .bg-slides .swiper-slide {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.wrapper .bg-slides .swiper-slide .video {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.wrapper .bg-slides .swiper-slide .video.v-full video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: relative;
  top: 0;
  left: 0;
}
.wrapper .bg-slides .swiper-slide .video.v-small-h video {
  max-width: 600px;
  width: 100%;
}
.wrapper .bg-slides .swiper-slide .video.v-small-v video {
  max-height: 600px;
  height: 100%;
}
.wrapper .float-w {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 26px);
  z-index: 5;
  padding-top: 142px;
  padding-bottom: 120px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: padding-top 0.4s, padding-bottom 0.4s, height 0.4s;
}
.wrapper .float-w.low {
  z-index: 2;
}
.wrapper .float-w .float--w {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.wrapper .float-w .float--w:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.wrapper .float-w .float--w:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.wrapper .float-w .float--w .breadcrumb {
  height: 20px;
  padding: 0 20px 1px;
  font-size: 14px;
  line-height: 19px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper .float-w .float--w .breadcrumb .btn-close {
  cursor: pointer;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .float-w .float--w .breadcrumb .btn-close img {
  height: 14px;
}
.wrapper .float-w .float--w .breadcrumb .breadcrumb-w {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.wrapper .float-w .float--w .breadcrumb .breadcrumb-w .item {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.wrapper .float-w .float--w .breadcrumb .breadcrumb-w .item.active {
  color: #fff;
}
.wrapper .float-w .float--w .breadcrumb .breadcrumb-w .ar {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 10px;
  padding-bottom: 2px;
}
.wrapper .float-w .float--w .breadcrumb:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.wrapper .float-w .float--w .intro-bar {
  width: 100%;
  height: 20px;
  padding: 0 20px 1px;
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  position: relative;
}
.wrapper .float-w .float--w .intro-bar:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.wrapper .float-w .float--w .intro-bar span {
  margin-right: 100px;
  margin-left: 200px;
}
.wrapper .float-w .float--w .intro-bar:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  z-index: 2;
}
.wrapper .float-w .float--w .travel-info {
  height: 20px;
  padding: 0 20px 1px;
  border-bottom: 1px #fff solid;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.wrapper .float-w .float--w .travel-info:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  z-index: 2;
  background-color: #fff;
}
.wrapper .float-w .float--w .buy-bar {
  height: 20px;
  font-size: 14px;
  line-height: 19px;
  position: relative;
}
.wrapper .float-w .float--w .buy-bar:before {
  content: " ";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.wrapper .float-w .float--w .buy-bar .buy-bar-w {
  width: 100%;
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.4s;
  padding-bottom: 1px;
}
.wrapper .float-w .float--w .buy-bar .buy-bar-w:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.wrapper .float-w .float--w .buy-bar .buy-ways {
  width: 100%;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .float-w .float--w .buy-bar .buy-ways .way {
  width: calc(100% / 3);
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-right: 1px #fff solid;
  color: #fff;
  transition: background-color 0.4s;
}
.wrapper .float-w .float--w .buy-bar .buy-ways .way:last-child {
  border-right: none;
}
.wrapper .float-w .float--w .buy-bar .buy-ways .way:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.wrapper .float-w .float--w .s-page-w {
  height: calc(100% - 20px);
  width: 100%;
  position: relative;
  overflow-y: scroll;
}
.wrapper .float-w .float--w .s-page-w .qrcode--w {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .float-w .float--w .s-page-w .qrcode--w img {
  height: 100%;
}
.wrapper .float-w .float--w .s-page-w .about--w {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  padding: 0 20px;
}
.wrapper .float-w .float--w .s-page-w .scroll-div {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
}
.wrapper .float-w .float--w .s-page-w .scroll-div .mCSB_scrollTools {
  visibility: hidden;
}
.wrapper .float-w .float--w .s-page-w .scroll-div .mCSB_container {
  height: 100%;
}
.wrapper .float-w .float--w .s-page-w .scroll-div .scroll-div-w {
  width: auto;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.wrapper .float-w .float--w .s-page-w .scroll-div .scroll-div-w img {
  height: 100%;
  margin-right: 5px;
}
.wrapper .float-w .float--w .s-page-w .gallery-div {
  width: 100%;
  overflow-y: scroll;
  margin-top: 1px;
}
.wrapper .float-w .float--w .s-page-w .gallery-div img, .wrapper .float-w .float--w .s-page-w .gallery-div video {
  width: 100%;
  margin-bottom: 5px;
}
.wrapper .float-w .float--w .s-page-w .gallery-div .item:last-child {
  margin-bottom: 0;
}
.wrapper .float-w .float--w .s-page-w .h-roll-div {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  position: relative;
  margin-top: 1px;
}
.wrapper .float-w .float--w .s-page-w .h-roll-div .h-roll-w {
  height: 100%;
}
.wrapper .float-w .float--w .s-page-w .h-roll-div .h-roll-w .item:last-child {
  margin-right: 0;
}
.wrapper .float-w .float--w .s-page-w .h-roll-div .h-roll-w img {
  height: 100%;
  float: left;
  margin-right: 5px;
}
.wrapper .float-w .float--w .s-page-w .h-roll-div .h-roll-w .video-in-w {
  height: 100%;
  float: left;
  position: relative;
  margin-right: 5px;
}
.wrapper .float-w .float--w .s-page-w .h-roll-div .h-roll-w .video-in-w .btn-play {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  width: 56px;
  height: 56px;
}
.wrapper .float-w .float--w .s-page-w .h-roll-div .h-roll-w .video-in-w video {
  margin-right: 0;
}
.wrapper .float-w .float--w .s-page-w .h-roll-div .h-roll-w video {
  height: 100%;
  margin-right: 5px;
}
.wrapper .float-w .float--w .s-page-w .s-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  top: calc(50% - 22px);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.wrapper .float-w .float--w .s-page-w .s-nav img {
  width: 24px;
}
.wrapper .float-w .float--w .s-page-w .s-nav.s-nav-prev {
  left: 0;
}
.wrapper .float-w .float--w .s-page-w .s-nav.s-nav-prev img {
  transform: rotate(90deg);
}
.wrapper .float-w .float--w .s-page-w .s-nav.s-nav-next {
  right: 0;
}
.wrapper .float-w .float--w .s-page-w .s-nav.s-nav-next img {
  transform: rotate(-90deg);
}
.wrapper .float-w .float--w .s-page-w .video-1-w {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: hidden;
}
.wrapper .float-w .float--w .s-page-w .video-1-w .intro-w {
  padding: 20px;
  border-right: 1px #fff solid;
  height: 100%;
  font-size: 14px;
}
.wrapper .float-w .float--w .s-page-w .video-1-w .video--w {
  width: 100%;
}
.wrapper .float-w .float--w .s-page-w .video-1-w .video--w .video-b-w {
  width: 100%;
  position: relative;
}
.wrapper .float-w .float--w .s-page-w .video-1-w .video--w .video-b-w .btn-play {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  width: 56px;
  height: 56px;
}
.wrapper .float-w .float--w .s-page-w .video-1-w .video--w .video-b-w video {
  width: 100%;
}
.wrapper .float-w .float--w .list-w {
  height: calc(100% - 20px);
  width: 100%;
  position: relative;
  overflow-y: scroll;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.wrapper .float-w .float--w .list-w .col {
  cursor: pointer;
  transition: background-color 0.4s;
  width: calc(100% / 6);
  margin-bottom: -1px;
  height: calc(50% + 1px);
  border-right: 1px #fff solid;
  border-top: 1px #fff solid;
  border-bottom: 1px #fff solid;
  position: relative;
}
.wrapper .float-w .float--w .list-w .col:nth-child(6n) {
  border-right: none;
}
.wrapper .float-w .float--w .list-w .col:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.wrapper .float-w .float--w .list-w .col.empty:hover {
  background-color: transparent;
}
.wrapper .float-w .float--w .list-w .col.col-no-break {
  border-right: 1px #fff solid;
  height: 100%;
  border-bottom: none;
  border-top: none;
}
.wrapper .float-w .float--w .list-w .col.col-no-break:last-child {
  border-right: none;
}
.wrapper .float-w .float--w .list-w .col.col-no-hover {
  cursor: default;
}
.wrapper .float-w .float--w .list-w .col.col-no-hover:hover {
  background-color: transparent;
}
.wrapper .float-w .float--w .list-w .col.lc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.wrapper .float-w .float--w .list-w .col.col-1 {
  width: 100%;
  height: 100%;
}
.wrapper .float-w .float--w .list-w .col.col-2 {
  width: 50%;
  height: 100%;
}
.wrapper .float-w .float--w .list-w .col.col-3 {
  width: calc(100% / 3);
  height: 100%;
}
.wrapper .float-w .float--w .list-w .col.col-4 {
  width: 25%;
  height: 100%;
}
.wrapper .float-w .float--w .list-w .col.col-5 {
  width: 20%;
  height: 100%;
}
.wrapper .float-w .float--w .list-w .col.col-6 {
  width: calc(100% / 6);
  height: 100%;
}
.wrapper .float-w .float--w .list-w .col.prd .cover-w {
  height: calc(100% - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .float-w .float--w .list-w .col.prd .cover-w img {
  max-width: 90%;
  max-height: 80%;
}
.wrapper .float-w .float--w .list-w .col.prd .prd-info {
  height: 60px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 14px;
  line-height: 18px;
  border-top: 1px #fff solid;
}
.wrapper .float-w .float--w .list-w .col.prd .prd-info .name {
  width: 100%;
}
.wrapper .float-w .float--w .list-w .col.prd .prd-info .name span {
  width: 100%;
  height: 36px;
  overflow-y: hidden;
}
.wrapper .float-w .float--w .row-w {
  height: calc(100% - 40px);
  width: 100%;
  position: relative;
}
.wrapper .float-w .float--w .row-w .row-scroll-w {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.wrapper .float-w .float--w .row-w .row--w {
  width: 100%;
  height: 100%;
}
.wrapper .float-w .float--w .row-w .row--w .item {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px #fff solid;
}
.wrapper .float-w .float--w .row-w .row--w .item:last-child {
  border-bottom: none;
}
.wrapper .float-w .float--w .row-w .row--w .item .item-col {
  font-size: 14px;
  line-height: 20px;
  padding-left: 20px;
}
.wrapper .float-w .float--w .row-w .row--w .item.not-show-pc {
  display: none;
}
.wrapper .float-w .float--w .row-w .row--w.col-oo .item .item-col.col-name {
  width: 30%;
}
.wrapper .float-w .float--w .row-w .row--w.col-oo .item .item-col.col-company {
  width: 50%;
}
.wrapper .float-w .float--w .row-w .row--w.col-oo .item .item-col.col-origin {
  width: 20%;
}
.wrapper .float-w .float--w .row-w .row--w.col-oo .item .item-col.col-date {
  width: 200px;
}
.wrapper .float-w .float--w .row-w .row--w.col-oo .item .item-col.col-city {
  width: 220px;
}
.wrapper .float-w .float--w .row-w .row--w.col-oo .item .item-col.col-base {
  width: 220px;
}
.wrapper .float-w .float--w .row-w .row--w.col-oo .item .item-col.col-event {
  width: calc(100% - 860px);
}
.wrapper .float-w .float--w .row-w .row--w.col-oo .item .item-col.col-cont {
  width: 220px;
}
.wrapper .float-w .float--w .row-w .row--w.col-global .item .item-col.col-dist {
  width: 200px;
}
.wrapper .float-w .float--w .row-w .row--w.col-global .item .item-col.col-corp {
  width: 200px;
}
.wrapper .float-w .float--w .row-w .row--w.col-global .item .item-col.col-company {
  width: 30%;
}
.wrapper .float-w .float--w .row-w .row--w.col-global .item .item-col.col-addr {
  width: calc(70% - 400px);
}
.wrapper .float-w .float--w .row-w .row--w.col-mainland .item .item-col.col-dist {
  width: 10%;
}
.wrapper .float-w .float--w .row-w .row--w.col-mainland .item .item-col.col-name {
  width: 100px;
}
.wrapper .float-w .float--w .row-w .row--w.col-mainland .item .item-col.col-email {
  width: 200px;
}
.wrapper .float-w .float--w .row-w .row--w.col-mainland .item .item-col.col-company {
  width: 30%;
}
.wrapper .float-w .float--w .row-w .row--w.col-mainland .item .item-col.col-addr {
  width: calc(60% - 300px);
}
.wrapper .float-w .float--w .row-w.event-rows .item {
  cursor: pointer;
  transition: background-color 0.4s;
}
.wrapper .float-w .float--w .row-w.event-rows .item.highlight {
  background-color: rgba(255, 255, 255, 0.5);
}
.wrapper .float-w .float--w .source-row {
  border-top: 1px #fff solid;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 20px;
}
.wrapper .float-w .float--w .source-row .item-col {
  font-size: 14px;
  line-height: 18px;
  padding-left: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-left: 1px #fff solid;
  display: flex;
  align-items: center;
  height: 19px;
  padding-bottom: 2px;
}
.wrapper .float-w .float--w .source-row .item-col:first-child {
  border-left: none;
}
.wrapper .float-w .float--w .source-row.col-oo .item-col.col-name {
  width: 30%;
  border-left: none;
}
.wrapper .float-w .float--w .source-row.col-oo .item-col.col-company {
  width: 50%;
}
.wrapper .float-w .float--w .source-row.col-oo .item-col.col-origin {
  width: 20%;
}
.wrapper .float-w .float--w .source-row.col-oo .item-col.col-date {
  width: 200px;
}
.wrapper .float-w .float--w .source-row.col-oo .item-col.col-city {
  width: 220px;
}
.wrapper .float-w .float--w .source-row.col-oo .item-col.col-base {
  width: 220px;
}
.wrapper .float-w .float--w .source-row.col-oo .item-col.col-event {
  width: calc(100% - 860px);
}
.wrapper .float-w .float--w .source-row.col-oo .item-col.col-cont {
  width: 220px;
}
.wrapper .float-w .float--w .source-row.col-global .item-col.col-dist {
  width: 200px;
}
.wrapper .float-w .float--w .source-row.col-global .item-col.col-corp {
  width: 200px;
}
.wrapper .float-w .float--w .source-row.col-global .item-col.col-company {
  width: 30%;
}
.wrapper .float-w .float--w .source-row.col-global .item-col.col-addr {
  width: calc(70% - 400px);
}
.wrapper .float-w .float--w .source-row.col-mainland .item-col.col-dist {
  width: 10%;
}
.wrapper .float-w .float--w .source-row.col-mainland .item-col.col-name {
  width: 100px;
}
.wrapper .float-w .float--w .source-row.col-mainland .item-col.col-email {
  width: 200px;
}
.wrapper .float-w .float--w .source-row.col-mainland .item-col.col-company {
  width: 30%;
}
.wrapper .float-w .float--w .source-row.col-mainland .item-col.col-addr {
  width: calc(60% - 300px);
}
.wrapper .float-w .float--w .search-bar {
  height: 20px;
  padding: 0 20px 1px;
  font-size: 14px;
  line-height: 19px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper .float-w .float--w .search-bar.with-res {
  border-bottom: 1px #fff solid;
}
.wrapper .float-w .float--w .search-bar input {
  font-size: 14px;
  line-height: 19px;
  height: 20px;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  width: 300px;
  color: #fff;
}
.wrapper .float-w .float--w .search-bar input::placeholder {
  color: #fff;
  font-size: 14px;
  line-height: 19px;
}
.wrapper .float-w .float--w .search-bar input:focus::-webkit-search-cancel-button {
  display: none;
}
.wrapper .float-w .float--w .search-bar .btn-close {
  cursor: pointer;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .float-w .float--w .search-bar .btn-close img {
  height: 14px;
}
.wrapper .float-w.with-intro .float--w .s-page-w {
  height: calc(100% - 40px);
}
.wrapper .float-w.with-intro .float--w .list-w {
  height: calc(100% - 40px);
}
.wrapper .float-w.with-intro .float--w .row-w {
  height: calc(100% - 60px);
}
.wrapper .float-w.travel-detail-w .float--w .s-page-w .h-roll-div {
  margin-top: 0;
}
.wrapper .float-w.travel-detail-w .float--w .s-page-w .gallery-div {
  margin-top: 0;
}
.wrapper.expanded .logo {
  display: none;
}
.wrapper.expanded .points {
  display: none;
}
.wrapper.expanded .menu-open {
  display: none;
}
.wrapper.expanded .slogan {
  display: none;
}
.wrapper.expanded .footer {
  display: none;
}
.wrapper.expanded .float-w {
  padding-top: 0;
  padding-bottom: 0;
  height: calc(100% + 2px);
  margin-top: -1px;
}

@media screen and (max-width: 960px) {
  body {
    -webkit-text-size-adjust: 100% !important;
  }
  body.en .wrapper .float-w {
    padding-bottom: 70px;
  }
  body.en .wrapper .float-w .float--w .row-w.event-rows .row--w .item .item-col {
    line-height: 12px;
  }
  body.en .wrapper.expanded .float-w {
    padding-bottom: 0;
  }

  .ticket-w .ticket--w {
    align-items: center;
  }
  .ticket-w .ticket--w img {
    height: 100%;
    max-height: 100%;
    max-width: none;
  }

  .display-pc {
    display: none;
  }

  .display-600 {
    display: block;
  }

  .not-display-600 {
    display: none;
  }

  .wrapper .logo {
    left: 10px;
    top: 10px;
    height: 50px;
  }
  .wrapper .menu-open {
    position: absolute;
    left: 10px;
    bottom: 30px;
  }
  .wrapper .menu-open .b-menu {
    width: 32px;
    height: 26px;
  }
  .wrapper .menu-open .b-menu .b-bun {
    width: 32px;
    height: 2px;
  }
  .wrapper .menu-open .b-menu .b-bun--middle {
    top: 8px;
  }
  .wrapper .menu-open .b-menu .b-bun--bottom {
    top: 16px;
  }
  .wrapper .menu-open .b-menu.open .b-bun--top {
    top: 11px;
  }
  .wrapper .menu-open .b-menu.open .b-bun--bottom {
    top: 7px;
  }
  .wrapper .points {
    right: 10px;
    top: 15px;
    font-size: 14px;
    flex-direction: column;
  }
  .wrapper .points a {
    margin-left: 10px;
  }
  .wrapper .search {
    right: 10px;
    top: 20px;
  }
  .wrapper .search img {
    height: 20px;
  }
  .wrapper .slogan {
    right: 10px;
    bottom: 30px;
  }
  .wrapper .slogan img.zh {
    height: 40px;
  }
  .wrapper .slogan img.en {
    height: 50px;
  }
  .wrapper .footer {
    height: 20px;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 9px;
    line-height: 1.2;
  }
  .wrapper .footer .share .social {
    display: none;
  }
  .wrapper .bg-slides {
    background-color: #000;
  }
  .wrapper .bg-slides .nav {
    display: none;
  }
  .wrapper .bg-slides .hint {
    bottom: 32px;
    height: 15px;
  }
  .wrapper .bg-slides .hint img {
    height: 13px;
  }
  .wrapper .bg-slides .swiper-slide .video {
    display: none;
  }
  .wrapper .bg-slides .swiper-slide .video-resp {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
  }
  .wrapper .float-w {
    height: calc(100% - 20px);
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .wrapper .float-w .float--w .breadcrumb {
    height: 25px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 24px;
  }
  .wrapper .float-w .float--w .breadcrumb .btn-close {
    height: 25px;
  }
  .wrapper .float-w .float--w .breadcrumb .breadcrumb-w .ar {
    font-size: 15px;
    margin: 0 4px;
    padding-bottom: 1px;
  }
  .wrapper .float-w .float--w .breadcrumb .breadcrumb-w .item {
    white-space: nowrap;
  }
  .wrapper .float-w .float--w .breadcrumb .breadcrumb-w .item.active-resp {
    color: #fff;
  }
  .wrapper .float-w .float--w .breadcrumb .breadcrumb-w .item span {
    white-space: nowrap;
  }
  .wrapper .float-w .float--w .breadcrumb .breadcrumb-w .item .not-show-resp {
    display: none;
  }
  .wrapper .float-w .float--w .intro-bar {
    height: 25px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 24px;
  }
  .wrapper .float-w .float--w .travel-info {
    height: 25px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 24px;
  }
  .wrapper .float-w .float--w .buy-bar {
    height: 25px;
    font-size: 13px;
    line-height: 23px;
  }
  .wrapper .float-w .float--w .buy-bar .buy-bar-w {
    height: 23px;
  }
  .wrapper .float-w .float--w .buy-bar .buy-ways {
    height: 23px;
  }
  .wrapper .float-w .float--w .buy-bar .buy-ways .way {
    height: 25px;
  }
  .wrapper .float-w .float--w .s-page-w {
    height: calc(100% - 25px);
  }
  .wrapper .float-w .float--w .s-page-w .qrcode--w {
    align-items: flex-start;
  }
  .wrapper .float-w .float--w .s-page-w .qrcode--w img {
    height: auto;
    max-height: 100%;
    width: 100%;
  }
  .wrapper .float-w .float--w .s-page-w .about--w {
    font-size: 13px;
    padding: 0 10px;
  }
  .wrapper .float-w .float--w .s-page-w .scroll-div {
    width: 100%;
    height: 100%;
    overflow-x: scroll;
  }
  .wrapper .float-w .float--w .s-page-w .scroll-div .mCSB_scrollTools {
    visibility: hidden;
  }
  .wrapper .float-w .float--w .s-page-w .scroll-div .mCSB_container {
    height: 100%;
  }
  .wrapper .float-w .float--w .s-page-w .scroll-div .scroll-div-w {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .wrapper .float-w .float--w .s-page-w .scroll-div .scroll-div-w img {
    height: 100%;
    margin-right: 5px;
  }
  .wrapper .float-w .float--w .s-page-w .s-nav {
    display: none;
  }
  .wrapper .float-w .float--w .s-page-w .video-1-w {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    overflow-y: scroll;
  }
  .wrapper .float-w .float--w .s-page-w .video-1-w .intro-w {
    width: 100% !important;
    padding: 20px 10px;
    border-right: none;
    height: auto;
    font-size: 13px;
  }
  .wrapper .float-w .float--w .s-page-w .video-1-w .video--w {
    width: 100% !important;
  }
  .wrapper .float-w .float--w .s-page-w .video-1-w .video--w .video-b-w {
    width: 100%;
    position: relative;
  }
  .wrapper .float-w .float--w .s-page-w .video-1-w .video--w .video-b-w .btn-play {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    width: 56px;
    height: 56px;
  }
  .wrapper .float-w .float--w .s-page-w .video-1-w .video--w .video-b-w video {
    width: 100%;
  }
  .wrapper .float-w .float--w .list-w {
    height: calc(100% - 25px);
  }
  .wrapper .float-w .float--w .list-w .col {
    width: 50%;
    height: calc(50% + 1px);
  }
  .wrapper .float-w .float--w .list-w .col:nth-child(2n) {
    border-right: none;
  }
  .wrapper .float-w .float--w .list-w .col.col-no-break {
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
    border-top: 1px #fff solid;
    height: auto;
  }
  .wrapper .float-w .float--w .list-w .col.col-no-break:nth-child(2n) {
    border-right: none;
  }
  .wrapper .float-w .float--w .list-w .col.lc {
    padding-left: 10px;
    font-size: 13px;
  }
  .wrapper .float-w .float--w .list-w .col.empty.not-show-resp {
    display: none !important;
  }
  .wrapper .float-w .float--w .list-w .col.col-1 {
    width: 100%;
    height: 100%;
    border-right: none !important;
    border-bottom: none !important;
  }
  .wrapper .float-w .float--w .list-w .col.col-2 {
    width: 100%;
    height: 50%;
    border-right: none !important;
    border-bottom: none !important;
  }
  .wrapper .float-w .float--w .list-w .col.col-3 {
    width: 100%;
    height: calc(100% / 3);
    border-right: none !important;
    border-bottom: none !important;
  }
  .wrapper .float-w .float--w .list-w .col.col-4 {
    width: 50%;
    height: calc(50% + 1px);
  }
  .wrapper .float-w .float--w .list-w .col.col-5 {
    width: 50%;
    height: calc(50% + 1px);
  }
  .wrapper .float-w .float--w .list-w .col.col-6 {
    width: 50%;
    height: calc(50% + 1px);
  }
  .wrapper .float-w .float--w .list-w .col.prd .cover-w {
    height: calc(100% - 45px);
  }
  .wrapper .float-w .float--w .list-w .col.prd .prd-info {
    height: 45px;
    padding: 0 10px;
    font-size: 11px;
    line-height: 12px;
  }
  .wrapper .float-w .float--w .list-w .col.prd .prd-info .name span {
    height: 24px;
    overflow-y: hidden;
  }
  .wrapper .float-w .float--w .row-w {
    height: calc(100% - 25px);
  }
  .wrapper .float-w .float--w .row-w .row--w .item {
    height: auto;
    padding: 8px 0;
    align-items: center;
  }
  .wrapper .float-w .float--w .row-w .row--w .item .item-col {
    font-size: 11px;
    line-height: 14px;
    padding-left: 10px;
  }
  .wrapper .float-w .float--w .row-w .row--w .item .item-col.col-name {
    width: 25%;
  }
  .wrapper .float-w .float--w .row-w .row--w .item .item-col.col-company {
    width: 55%;
  }
  .wrapper .float-w .float--w .row-w .row--w .item .item-col.col-origin {
    width: 20%;
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w .item {
    float: left;
    width: 50%;
    height: calc(50% + 1px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-top: 1px #fff solid;
    border-bottom: 1px #fff solid;
    border-right: 1px #fff solid;
    margin-bottom: -1px;
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w .item:nth-child(2n) {
    border-right: none;
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w .item .item-col {
    width: 100% !important;
    white-space: normal;
    line-height: 13px;
    padding-right: 10px;
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w .item.not-show-pc {
    display: flex;
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w.col-oo .item .item-col:nth-child(1), .wrapper .float-w .float--w .row-w.event-rows .row--w.col-oo .item .item-col:nth-child(3) {
    margin-bottom: 5px;
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w.col-oo .item .item-col:last-child {
    margin-bottom: 0;
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w.col-global .item {
    height: calc(33.33% + 1px);
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w.col-global .item .item-col:nth-child(2) {
    margin-bottom: 10px;
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w.col-mainland .item {
    height: calc(33.33% + 1px);
  }
  .wrapper .float-w .float--w .row-w.event-rows .row--w.col-mainland .item .item-col:nth-child(1), .wrapper .float-w .float--w .row-w.event-rows .row--w.col-mainland .item .item-col:nth-child(4) {
    margin-bottom: 10px;
  }
  .wrapper .float-w .float--w .source-row {
    height: 25px;
  }
  .wrapper .float-w .float--w .source-row .item-col {
    font-size: 13px;
    line-height: 23px;
    height: 23px;
    padding-bottom: 1px;
    padding-left: 10px;
  }
  .wrapper .float-w .float--w .source-row .item-col.col-name {
    width: 25%;
  }
  .wrapper .float-w .float--w .source-row .item-col.col-company {
    width: 55%;
  }
  .wrapper .float-w .float--w .source-row .item-col.col-origin {
    width: 20%;
  }
  .wrapper .float-w .float--w .source-row.not-show-resp {
    display: none;
  }
  .wrapper .float-w .float--w .search-bar {
    height: 25px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 24px;
  }
  .wrapper .float-w .float--w .search-bar input {
    height: 25px;
    font-size: 13px;
    line-height: 24px;
  }
  .wrapper .float-w .float--w .search-bar input::placeholder {
    font-size: 13px;
    line-height: 24px;
  }
  .wrapper .float-w .float--w .search-bar .btn-close {
    height: 25px;
  }
  .wrapper .float-w.with-intro .float--w .s-page-w {
    height: calc(100% - 50px);
  }
  .wrapper .float-w.with-intro .float--w .list-w {
    height: calc(100% - 50px);
  }
  .wrapper .float-w.with-intro .float--w .row-w {
    height: calc(100% - 75px);
  }
  .wrapper .float-w.with-intro .float--w .row-w.event-rows {
    height: calc(100% - 49px);
  }
}

/*# sourceMappingURL=pidan.css.map */
