html {
  background-color: #fff;
}
.container .header {
  height: 14.87rem;
  position: relative;
  background-image: url(../images/header.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 0.4rem;
}
.container .header .header-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 0.37rem);
}
.container .header .header-bg .header-img {
  width: 100%;
  height: 100%;
}
.container .header .header-logo {
  width: 4.65rem;
  height: 0.7rem;
  margin: 0 auto;
  margin-bottom: 1.1rem;
}
.container .header .header-logo .logo-img {
  width: 100%;
  height: 100%;
}
.container .header .header-logo {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.container .header .header-title {
  width: 6.3rem;
  height: 3.12rem;
  margin: 0 auto;
}
.container .header .header-title .title-img {
  width: 100%;
  height: 100%;
}
.container .header .header-title {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.container .header .header-name {
  width: 4.9rem;
  height: 1.04rem;
  margin: 0 auto;
  margin-top: -0.2rem;
}
.container .header .header-name .txt-img {
  width: 100%;
  height: 100%;
}
.container .header .header-name {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.container .header .header-map {
  position: relative;
  width: 6.6rem;
  height: 4.14rem;
  margin: 0 auto;
  z-index: 10;
}
.container .header .header-map .map-img {
  width: 100%;
  height: 100%;
}
.container .header .header-map {
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -moz-animation-name: slidein;
  -webkit-animation-name: slidein;
  animation-name: slidein;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: infinite;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@-moz-keyframes slidein {
  from {
    margin-top: 0.2em;
  }
  to {
    margin-top: 0;
  }
}
@-webkit-keyframes slidein {
  from {
    margin-top: 0.2rem;
  }
  to {
    margin-top: 0;
  }
}
@keyframes slidein {
  from {
    margin-top: 0.2rem;
  }
  to {
    margin-top: 0;
  }
}
.container .header .header-icon {
  position: absolute;
  top: 1.18rem;
  right: 0.22rem;
  width: 1.65rem;
  height: 0.82rem;
}
.container .header .header-icon img {
  width: 100%;
  height: 100%;
}
.container .video {
  margin-top: -4.3rem;
  padding: 0 0.4rem;
}
.container .video .video-cen {
  position: relative;
  padding: 0.55rem 0.43rem 0.7rem 0.53rem;
  border-radius: 0.5rem;
  background-image: url(../images/tanmi.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.container .video .video-cen .video-title {
  margin-bottom: 0.28rem;
  text-align: center;
  font-size: 0.37rem;
  font-weight: bold;
  color: #FFFFFF;
}
.container .video .video-cen .arrow-left {
  position: absolute;
  top: 0rem;
  left: 0.5rem;
  width: 0.55rem;
  height: 0.46rem;
  opacity: 0.8;
}
.container .video .video-cen .arrow-left img {
  width: 100%;
  height: 100%;
}
.container .video .video-cen .arrow-right {
  position: absolute;
  bottom: 0rem;
  right: 0.5rem;
  width: 0.55rem;
  height: 0.46rem;
  opacity: 0.8;
}
.container .video .video-cen .arrow-right img {
  width: 100%;
  height: 100%;
}
.container .video .video-cen .video-type {
  display: block;
  width: 100%;
  height: 3rem;
  margin: 0 auto;
  border-radius: 0.25rem;
}
.container .entrances .main-venue {
  position: relative;
}
.container .entrances .main-venue .main-title {
  margin-top: 0.5rem;
  text-align: center;
}
.container .entrances .main-venue .main-title .main-txt {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  background-color: #fff;
  border: 0.1rem solid #2F2CD8;
  border-radius: 0.5rem;
  font-size: 0.43rem;
  font-weight: bold;
  color: #2F2CD8;
}
.container .entrances .main-venue .main-icon1 {
  position: absolute;
  top: 0.1rem;
  right: 0.22rem;
  width: 0.92rem;
  height: 0.92rem;
}
.container .entrances .main-venue .main-icon1 img {
  width: 100%;
  height: 100%;
}
.container .entrances .main-venue .main-box {
  position: relative;
  background-image: url(../images/main-venue.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 1.6rem 0.77rem 1rem 0.9rem;
  margin-top: -0.5rem;
}
.container .entrances .main-venue .main-box .main-box-zhibo {
  position: relative;
  width: 100%;
  height: 3rem;
  border-radius: 0.25rem;
  margin-bottom: 0.36rem;
}
.container .entrances .main-venue .main-box .main-box-zhibo .video-huifang {
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
}
.container .entrances .main-venue .main-box .main-box-zhibo .gray-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  opacity: 0.6;
  border-radius: 0.25rem;
  padding: 0.15rem 0.35rem;
}
.container .entrances .main-venue .main-box .main-box-zhibo .gray-list .a-gray {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .entrances .main-venue .main-box .main-box-zhibo .gray-list .gray-list-icon {
  display: inline-block;
  width: 0.4rem;
  height: 0.36rem;
  margin-right: 0.1rem;
}
.container .entrances .main-venue .main-box .main-box-zhibo .gray-list .gray-list-icon .gray-list-icon-img {
  width: 100%;
  height: 100%;
}
.container .entrances .main-venue .main-box .main-box-zhibo .gray-list .gray-list-txt {
  font-size: 0.33rem;
  font-weight: bold;
  color: #FFFFFF;
  vertical-align: baseline;
}
.container .entrances .main-venue .main-box .main-box-list {
  position: relative;
  z-index: 10;
}
.container .entrances .main-venue .main-box .main-box-list .main-ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.container .entrances .main-venue .main-box .main-box-list .main-ul .main-li {
  font-size: 0.2rem;
  font-weight: bold;
  color: #000000;
}
.container .entrances .main-venue .main-box .main-box-icon {
  position: absolute;
  bottom: 3rem;
  right: 0.6rem;
  width: 1.4rem;
  height: 2rem;
  z-index: 0;
}
.container .entrances .main-venue .main-box .main-box-icon .box-icon {
  width: 100%;
  height: 100%;
}
.container .entrances .at-venue {
  position: relative;
}
.container .entrances .at-venue .at-title {
  text-align: center;
}
.container .entrances .at-venue .at-title .at-txt {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  background-color: #fff;
  border: 0.1rem solid #2F2CD8;
  border-radius: 0.5rem;
  font-size: 0.43rem;
  font-weight: bold;
  color: #2F2CD8;
}
.container .entrances .at-venue .at-icon {
  position: absolute;
  top: -0.2rem;
  right: 0.5rem;
  width: 1rem;
  height: 0.7rem;
}
.container .entrances .at-venue .at-icon .at-icon-img {
  width: 100%;
  height: 100%;
}
.container .entrances .at-venue .at-box {
  position: relative;
  background-image: url(../images/at-venue.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0.9rem 0.82rem 1.5rem 0.87rem;
}
.container .entrances .at-venue .at-box .at-box-title {
  font-size: 0.43rem;
  font-weight: bold;
  color: #2F2CD8;
  text-align: center;
  margin-bottom: 0.32rem;
}
.container .entrances .at-venue .at-box .at-box-huifang {
  position: relative;
}
.container .entrances .at-venue .at-box .at-box-huifang .video-huifang {
  display: block;
  width: 100%;
  height: 3rem;
  margin: 0 auto;
  border-radius: 0.25rem;
  margin-bottom: 0.8rem;
}
.container .entrances .at-venue .at-box .at-box-huifang .gray-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  opacity: 0.6;
  border-radius: 0.25rem;
  padding: 0.15rem 0.35rem;
}
.container .entrances .at-venue .at-box .at-box-huifang .gray-list .a-gray {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .entrances .at-venue .at-box .at-box-huifang .gray-list .gray-list-icon {
  display: inline-block;
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.1rem;
}
.container .entrances .at-venue .at-box .at-box-huifang .gray-list .gray-list-icon .gray-list-icon-img {
  width: 100%;
  height: 100%;
}
.container .entrances .at-venue .at-box .at-box-huifang .gray-list .gray-list-txt {
  font-size: 0.33rem;
  font-weight: bold;
  color: #FFFFFF;
  vertical-align: baseline;
}
.container .entrances .at-venue .at-box .box-txt {
  font-size: 0.26rem;
  color: #000000;
  text-align: center;
}
.container .entrances .at-venue .at-box .at-icon-2 {
  position: absolute;
  bottom: 1.5rem;
  right: 0.1rem;
  width: 0.66rem;
  height: 0.66rem;
}
.container .entrances .at-venue .at-box .at-icon-2 .icon-2-img {
  width: 100%;
  height: 100%;
}
.container .entrances .at-venue .at-box .at-icon-horn {
  position: absolute;
  left: 0.42rem;
  top: -0.2rem;
  width: 1.16rem;
  height: 1.32rem;
}
.container .entrances .at-venue .at-box .at-icon-horn img {
  width: 100%;
  height: 100%;
}
.container .entrances .footer-btn {
  position: relative;
}
.container .entrances .footer-btn .btn-img {
  width: 100%;
  height: 2.28rem;
  background-image: url(../images/rectangles.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 0.65rem;
}
.container .entrances .footer-btn .btn-img p {
  font-size: 0.49rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  margin-left: -1rem;
}
.container .entrances .footer-btn .btn-pow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.6rem;
  height: 1.2rem;
}
.container .entrances .footer-btn .footer-icon {
  position: absolute;
  left: 0.4rem;
  top: 0;
  width: 0.32rem;
  height: 0.32rem;
}
.container .entrances .footer-btn .footer-icon img {
  width: 100%;
  height: 100%;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/anniu_jiantouxiangyou.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  right: 0.6rem;
}
.swiper-button-next,
.swiper-button-prev {
  top: 99%;
  width: 0.4rem;
  height: 0.4rem;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url(../images/anniu_jiantouxiangzuo.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0.6rem;
}
