@font-face {
  font-family: 'iconfont';  /* Project id 5165069 */
  src: url('//at.alicdn.com/t/c/font_5165069_i5r2gy2ahb.woff2?t=1778296296922') format('woff2'),
  url('//at.alicdn.com/t/c/font_5165069_i5r2gy2ahb.woff?t=1778296296922') format('woff'),
  url('//at.alicdn.com/t/c/font_5165069_i5r2gy2ahb.ttf?t=1778296296922') format('truetype');
}
@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/Poppins-Regular.otf');
}

@font-face {
  font-family: InstrumentSerif;
  src: url('../fonts/InstrumentSerif-Regular.ttf');
}
@font-face {
  font-family: Kalnia;
  src: url('../fonts/Kalnia-Medium.ttf');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: Poppins-Regular !important;
  background: #FFE7FD;
}
input,
textarea {
  font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
}
:root {
  --mainC: #1F4397;
}
.iconfont {
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
/* 修改滚动条的样式 */
::-webkit-scrollbar {
  width: 8px;
  /* 滚动条宽度 */
  height: 8px;
  /* 滚动条高度 */
}
/* 修改滚动条滑块的样式 */
::-webkit-scrollbar-thumb {
  background-color: #5648B7;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bulrAnmkey {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
  }
}
.bulrAnm {
  -webkit-animation: bulrAnmkey 1s ease both;
  animation: bulrAnmkey 1s ease both;
  -ms-animation: bulrAnmkey 1s ease both;
  animation-delay: 0.3s;
}
.he_fadeup1 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}
.he_fadeup2 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.4s;
}
.he_fadeup3 {
  -webkit-animation: fadeIniup 1s ea     se both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.5s;
}
.he_fadeup4 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.6s;
}
.he_fadeup5 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.7s;
}
.cpthActive.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%) !important;
}
.cpth {
  -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
  -webkit-transition: 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}
.animate-on-scroll {
  /* 初始状态：透明 + 偏移 */
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* 1.8秒慢动画（时长可调） */
  transform-origin: center center;
  /* skew倾斜中心点（避免变形偏移） */
  transform: translateY(60px) skewY(1deg);
}
/* 动画触发后的状态 */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0) skew(0);
  /* 重置偏移和skew */
}
.animate-img {
  overflow: hidden;
  transition: 3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.animate-img img {
  transform: scale(1.2, 1.2);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.animate-img .img {
  transform: scale(1.2, 1.2);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.animate-img.active {
  opacity: 1;
}
.animate-img.active img {
  transform: scale(1);
}
.animate-img.active .img {
  transform: scale(1);
}
.img-popup-layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999;
  cursor: zoom-out;
}
.img-popup-layer img {
  position: absolute;
  width: auto;
  max-height: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
header {
  width: 100%;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 1vw 3vw;
  align-items: center;
  -webkit-transition: all 0.5s;
}
header .logo {
  width: 18vw;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul li {
  margin-left: 3vw;
  transition: 0.3s all;
}
header nav ul li a {
  color: white;
  font-size: 16px;
  position: relative;
  text-transform: uppercase;
  transition: 0.3s all;
}
header nav ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  bottom: -10px;
  left: 0;
  transition: all 0.3s;
}
header nav ul li ul {
  position: absolute;
  display: block;
  padding-top: 15px;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s all;
  transform: translateY(-1vw);
}
header nav ul li ul li {
  min-width: 8vw;
  margin-left: 0;
  margin-top: 8px;
}
header nav ul li ul li a {
  font-size: 14px;
}
header nav ul li ul li a::before {
  content: inherit;
}
header nav ul li ul li:hover {
  letter-spacing: 1px;
}
header nav ul li:hover ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
header nav ul li:hover a:before {
  transform: scaleX(1);
}
header nav ul li:nth-child(6) {
  margin-right: 1vw;
}
header nav ul li:nth-child(7),
header nav ul li:nth-child(8) {
  border: 1px solid white;
  border-radius: 5vw;
  padding: 5px 15px;
  margin-left: 1vw;
}
header nav ul li:nth-child(7) a::before,
header nav ul li:nth-child(8) a::before {
  content: inherit;
}
header nav ul li:nth-child(7):hover,
header nav ul li:nth-child(8):hover {
  background: linear-gradient(180deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
}

header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 10vw;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(77, 60, 150, 0.6) 0%, rgba(77, 60, 150, 0) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 100%);
  mask-image: linear-gradient(180deg, black 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
header.active::before {
  height: 25vw;
  transition: 0.5s all;
}
footer {
  width: 100%;
  padding: 2vw;
  position: relative;
  z-index: 2;
}
footer .footer {
  width: 100%;
  height: 35.7vw;
  background: url('../images/img11.png') center no-repeat;
  background-size: contain !important;
  position: relative;
  padding: 4vw 3vw;
}
footer .footer .footerHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .footer .footerHead .logo {
  width: 8vw;
}
footer .footer .footerHead .nav {
  display: flex;
}
footer .footer .footerHead .nav a {
  display: block;
  color: white;
  font-size: 0.9vw;
  position: relative;
  text-transform: uppercase;
  margin-left: 3vw;
}
footer .footer .footerCenter {
  width: 100%;
  display: flex;
  margin-top: 3vw;
}
footer .footer .footerCenter .emailBox {
  padding-top: 4vw;
}
footer .footer .footerCenter .emailBox .email .t {
  color: white;
  font-size: 0.9vw;
}
footer .footer .footerCenter .emailBox .email .t i {
  margin-right: 0.5vw;
}
footer .footer .footerCenter .emailBox .email .d {
  font-size: 1.1vw;
  font-weight: 400;
  color: white;
  line-height: 2;
}
footer .footer .footerCenter .emailBox .des {
  font-size: 0.9vw;
  line-height: 2;
  color: white;
  margin-top: 6vw;
}
footer .footer .footerCenter .emailBox .des a {
  color: white;
}
footer .footer .footerCenter .openimg {
  margin-left: 8vw;
}
footer .footer .footerCenter .openimg .tit {
  display: inline-flex;
  align-items: center;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  font-size: 1.3vw;
  padding: 0.5vw 1.5vw 0.5vw 1vw;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
}
footer .footer .footerCenter .openimg .tit img {
  width: 1.2vw;
  margin-right: 1vw;
}
footer .footer .footerCenter .openimg .openimgBox {
  margin-top: 1vw;
}
footer .footer .footerCenter .openimg .openimgBox .its {
  color: white;
  margin-top: 0.5vw;
  display: flex;
  position: relative;
}
footer .footer .footerCenter .openimg .openimgBox .its .it {
  width: 30%;
  font-size: 0.9vw;
}
footer .footer .footerCenter .openimg .openimgBox .its:nth-child(1) {
  padding-bottom: 1vw;
}
footer .footer .footerCenter .openimg .openimgBox .its:nth-child(1) .it {
  font-size: 1.1vw;
  font-weight: 500;
}
footer .footer .footerCenter .openimg .openimgBox .its:nth-child(1)::before {
  content: '';
  position: absolute;
  width: 82%;
  height: 1px;
  bottom: 0;
  border-bottom: 1px dashed white;
}
footer .footer .footerCenter .openimg .des {
  color: white;
  margin-top: 2.5vw;
}
footer .footer .footerCenter .openimg .des .t {
  font-size: 1.1vw;
  font-weight: 500;
}
footer .footer .footerCenter .openimg .des .d {
  font-size: 0.9vw;
  line-height: 1.7;
}
footer .footer .footerBottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 6vw;
}
footer .footer .footerBottom .info {
  color: white;
  font-size: 0.75vw;
  opacity: 0.8;
}
footer .footer .footerBottom .info a {
  color: white;
}
footer .footer .footerBottom .firends {
  position: absolute;
  right: 2vw;
  bottom: 2vw;
}
footer .footer .footerBottom .firends a {
  display: block;
  color: white;
  font-size: 0.9vw;
  margin-top: 1.5vw;
}
footer .footer .footerBottom .firends a i {
  font-size: 1.2vw;
  margin-right: 1vw;
  position: relative;
  top: 0.15vw;
}
.videoBoxs {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: rgba(55, 52, 56, 0.7);
  z-index: 999;
  display: none;
}

.videoBoxs .videos {
  width: 50vw;
  position: absolute;
  top: 50%;
  left: 50%;
  background: white;
  border-radius: 10px;
  padding: 10px;
  transform: translate(-50%, -50%);
}
.videoBoxs .videos video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.videoBoxs .videos .close {
  color: white;
  position: absolute;
  right: -2vw;
  top: -2vw;
  font-size: 1.2vw;
  cursor: pointer;
}
.index .videoBoxs .videos{
  width: 20vw;
}
.videoBoxs.active {
  display: block;
}
.moreBox {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  --elastic-ease-out: linear(0, 0.5737 7.6%, 0.8382 11.87%, 0.9463 14.19%, 1.0292 16.54%, 1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%, 1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%, 1.0219 42.57%, 0.9995 46.99%, 0.9872 51.63%, 0.9842 58.77%, 1.0011 81.26%, 1);
  --smooth-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --color-ease: cubic-bezier(0.216, 0.62, 0.356, 1);
  transition: transform 0.45s var(linear(0, 0.5737 7.6%, 0.8382 11.87%, 0.9463 14.19%, 1.0292 16.54%, 1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%, 1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%, 1.0219 42.57%, 0.9995 46.99%, 0.9872 51.63%, 0.9842 58.77%, 1.0011 81.26%, 1));
  -webkit-tap-highlight-color: transparent;
}
.moreBox .btn {
  border-radius: 5px;
  color: white;
  font-size: 0.9vw;
  height: 3vw;
  line-height: 3vw;
  padding: 0 2vw;
  font-weight: 500;
  border-right: 1px dashed white;
  transition: transform 0.15s, opacity 0.15s ease-out;
  background: linear-gradient(180deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
}
.moreBox .icon {
  border-radius: 5px;
  color: white;
  font-size: 1.2vw;
  font-weight: 100;
  padding: 0 1vw;
  height: 3vw;
  line-height: 3vw;
  transition: transform 0.15s, opacity 0.15s ease-out;
  background: linear-gradient(180deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
}
.moreBox:hover .btn {
  border-right: transparent;
  transform: translateX(-0.25rem) translateY(-0.125rem) rotate(-2.5deg);
}
.moreBox:hover .icon {
  transform: translateX(0.25rem) translateY(0.125rem) rotate(2.5deg);
}
.index {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.index #box {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.3;
  pointer-events: none;
}
.index .f1 {
  width: 100%;
  height: 98vh;
  position: relative;
  padding: 0 1vw;
  overflow: hidden;
  z-index: 2;
}
.index .f1 .videos {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 0 0 2vw 2vw;
  overflow: hidden;
}
.index .f1 .videos video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.index .f1 .txt {
  position: absolute;
  bottom: 2vw;
  left: 3vw;
  z-index: 1;
  color: white;
  font-family: Kalnia;
  font-size: 7vw;
  line-height: 1;
}
.index .f1 .txt span {
  color: #E3007E;
}
.index .f2 {
  width: 100%;
  height: 70vh;
  position: relative;
  margin-top: 100vh;
  z-index: 2;
}
.index .f2 .text {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
}
.index .f2 .text .tit {
  font-family: Kalnia;
  font-size: 1.5vw;
  color: #432883;
  text-transform: uppercase;
}
.index .f2 .text .des {
  width: 78%;
  font-size: 1.6vw;
  color: #333333;
  margin: 2vw auto 1vw auto;
}
.index .f2 .text .info {
  font-size: 1.6vw;
  color: #432883;
}
.index .f2 .text .more {
  width: 10vw;
  margin: 2vw auto 0 auto;
  cursor: pointer;
}
.index .f2 .img {
  width: 15vw;
  position: absolute;
  left: 10vw;
  border-radius: 0.5vw;
  overflow: hidden;
  bottom: 25vh;
}
.index .f2 .img2 {
  width: 18vw;
  position: absolute;
  right: 10vw;
  border-radius: 0.5vw;
  overflow: hidden;
  bottom: 5vh;
}
.index .f3 {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  z-index: 2;
}
.index .f3 .left {
  width: 40%;
  padding-left: 5vw;
  padding-top: 15vw;
}
.index .f3 .left .tit {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
}
.index .f3 .left .year {
  color: #333333;
  font-size: 3vw;
  margin-top: 5vw;
}
.index .f3 .left .st {
  color: #432883;
  font-style: italic;
  font-size: 3vw;
}
.index .f3 .left .imgBox {
  display: flex;
  margin-top: 3vw;
}
.index .f3 .left .imgBox .img {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  margin-right: 1vw;
  border: 2px solid transparent;
  cursor: pointer;
  background-size: cover !important;
}
.index .f3 .left .imgBox .active {
  border: 2px solid #FF78D2;
}
.index .f3 .right {
  width: 60%;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 1vw;
  padding-top: 10vw;
}
.index .f3 .right .imgBox {
  width: 24vw;
  height: 35vw;
  position: relative;
  flex-shrink: 0;
}
.index .f3 .right .imgBox .img {
  width: 100%;
  height: 100%;
  border-radius: 1vw;
  background-size: cover !important;
  transform-origin: right center;
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transform: translate(25%) translateZ(-60px) rotateY(90deg) scale(0.5);
}
.index .f3 .right .imgBox.active .img {
  transform: translate(0) translateZ(0) rotateY(0) scale(1) !important;
}
.index .f4 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 10;
  pointer-events: none;
  padding: 5vw;
}
.index .f4 .f4Video {
  width: 100%;
  height: 40vw;
  position: relative;
  overflow: hidden;
}
.index .f4 .f4Video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5vw;
}
.index .f4 .f4Video .playBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6vw;
  height: 6vw;
  background-size: cover !important;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.index .f4 .f4Video .playBox .playBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('../images/play1.png') center no-repeat;
  background-size: cover !important;
  animation: playAnm 5s linear infinite;
}
.index .f4 .f4Video .playBox i {
  color: white;
  font-size: 2vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes playAnm {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.index .f5 {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5vw;
  z-index: 2;
  overflow: hidden;
}
.index .f5 .left {
  width: 20%;
  padding-top: 2vw;
  position: relative;
  display: flex;
}
.index .f5 .left .item {
  position: relative;
  padding-right: 4vw;
}
.index .f5 .left .item .img {
  width: 8vw;
  border-radius: 0.5vw;
  position: relative;
  background: white;
  padding: 1vw;
  margin: 0 auto 4vw auto;
}
.index .f5 .left .item:nth-child(1) {
  padding-top: 5vw;
}
.index .f5 .center {
  width: 50%;
  position: relative;
}
.index .f5 .center .f5Img {
  width: 8vw;
  position: relative;
  background: white;
  padding: 1vw;
  border-radius: 0.5vw;
  margin: 0 auto;
}
.index .f5 .center .text {
  margin: 3vw auto;
  text-align: center;
}
.index .f5 .center .text .tit {
  font-family: Kalnia;
  font-size: 1.5vw;
  color: #432883;
  text-transform: uppercase;
}
.index .f5 .center .text .des {
  width: 78%;
  font-size: 1.6vw;
  color: #333333;
  margin: 2vw auto 1vw auto;
}
.index .f5 .center .text .moreBox {
  margin: 3vw auto 0 auto;
}
.index .f5 .right {
  width: 25%;
  padding-top: 2vw;
  position: relative;
  display: flex;
}
.index .f5 .right .item {
  position: relative;
}
.index .f5 .right .item .img {
  width: 8vw;
  position: relative;
  border-radius: 0.5vw;
  background: white;
  padding: 1vw;
  margin: 0 auto 4vw auto;
}
.index .f5 .right .item:nth-child(2) {
  padding-top: 5vw;
  padding-left: 4vw;
}
.index .f6 {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 6vw 5vw;
}
.index .f6 .tit {
  font-family: Kalnia;
  font-size: 1.5vw;
  color: #432883;
  text-transform: uppercase;
}
.index .f6 .f6Box {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
}
.index .f6 .f6Box .item {
  width: 19%;
  height: 25vw;
  border-radius: 20px;
  position: relative;
  background: linear-gradient(180deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  padding: 2vw;
  color: white;
  cursor: pointer;
  transition: 0.5s all;
}
.index .f6 .f6Box .item .logos {
  width: 100%;
  height: 3vw;
}
.index .f6 .f6Box .item .logos img {
  width: auto;
  height: 3vw;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  transition: .3s all;
}
.index .f6 .f6Box .item:nth-child(2) .logos img{
  height: 5vw;
}
.index .f6 .f6Box .item .txt {
  width: 100%;
  position: absolute;
  bottom: 2vw;
  left: 0;
  padding: 0 2vw;
}
.index .f6 .f6Box .item .txt .t {
  font-weight: bold;
  font-size: 1.2vw;
}
.index .f6 .f6Box .item .txt .d {
  font-size: 0.9vw;
  line-height: 1.5;
  margin-top: 1vw;
}
.index .f6 .f6Box .item .txt .moreBox {
  height: 0;
  transition: 0.3s all;
  overflow: hidden;
  justify-content: inherit;
}
.index .f6 .f6Box .item .txt .moreBox .btn {
  padding: 0 1vw;
}
.index .f6 .f6Box .item:hover {
  background: linear-gradient(180deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 62.92%);
}
.index .f6 .f6Box .item:hover .logos img{
  filter: inherit;
}
.index .f6 .f6Box .item:hover .txt {
  bottom: 1vw;
}
.index .f6 .f6Box .item:hover .txt .moreBox {
  opacity: 1;
  height: 5vw;
}
.index .f7 {
  width: 100%;
  position: relative;
  padding: 2vw 5vw 6vw 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.index .f7 .left {
  width: 45%;
  position: relative;
}
.index .f7 .left .circle {
  width: 100%;
  height: 40vw;
  position: relative;
}
.index .f7 .left .circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circleAnm 15s linear infinite;
}
@keyframes circleAnm {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.index .f7 .left .cat {
  width: 100%;
  position: absolute;
  top: -4vw;
  pointer-events: none;
  z-index: 2;
}
.index .f7 .left .playBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6vw;
  height: 6vw;
  background-size: cover !important;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.index .f7 .left .playBox .playBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('../images/play1.png') center no-repeat;
  background-size: cover !important;
  animation: playAnm 5s linear infinite;
}
.index .f7 .left .playBox i {
  color: white;
  font-size: 2vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes playAnm {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.index .f7 .left .catItem {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}
.index .f7 .left .catItem .its {
  border-radius: 5vw;
  border: 1px solid #FA5BBA;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9vw;
  z-index: 2;
  position: absolute;
  padding: 0.5vw 1vw;
  color: #666666;
}
.index .f7 .left .catItem .its:nth-child(1) {
  left: 24.5vw;
  top: 3vw;
}
.index .f7 .left .catItem .its:nth-child(2) {
  left: 7vw;
  top: 8vw;
}
.index .f7 .left .catItem .its:nth-child(3) {
  left: 24vw;
  top: 13vw;
}
.index .f7 .left .catItem .its:nth-child(4) {
  left: 5vw;
  top: 22vw;
}
.index .f7 .left .catItem .its:nth-child(5) {
  left: 23vw;
  top: 26vw;
}
.index .f7 .right {
  width: 53%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%), rgba(55, 52, 56, 0.6);
  backdrop-filter: blur(25px);
  padding: 3vw;
  color: white;
}
.index .f7 .right .tit {
  font-family: Kalnia;
  font-size: 1.5vw;
  position: relative;
  padding-left: 1vw;
}
.index .f7 .right .tit::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 1.5vw;
  background: #BF004D;
  left: 0;
  top: 0.3vw;
}
.index .f7 .right .its {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index .f7 .right .its .it {
  width: 30%;
  margin-top: 2vw;
}
.index .f7 .right .its .it .t {
  font-size: 1.1vw;
  font-weight: 400;
}
.index .f7 .right .its .it .d {
  font-size: 1vw;
  opacity: 0.9;
  margin-top: 0.5vw;
}
.index .f7 .right .its .it:last-child {
  width: 100%;
}
.index .f7 .right .des {
  border-top: 1px solid white;
  padding-top: 2vw;
  margin-top: 2vw;
  font-size: 1vw;
  line-height: 1.5;
}
.bookabooth {
  width: 100%;
  position: relative;
}
.bookabooth .f1 {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 10vw 5vw 5vw 5vw;
}
.bookabooth .f1 .left {
  width: 50%;
  position: sticky;
  top: 10vw;
  display: inline-block;
  float: left;
}
.bookabooth .f1 .left .splitTextTit {
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kalnia;
  font-size: 8vw;
  line-height: 1;
  /* 初始状态：左边隐藏，模糊 */
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
}
.bookabooth .f1 .left .txt {
  margin-top: 5vw;
}
.bookabooth .f1 .left .txt .t {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
}
.bookabooth .f1 .left .txt .d {
  width: 30vw;
  font-size: 2.5vw;
  margin-top: 1.5vw;
}
.bookabooth .f1 .right {
  width: 50%;
  position: relative;
  display: inline-block;
}
.bookabooth .f1 .right .bookaboothBox {
  border-radius: 0.5vw;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 3vw 2vw;
  position: relative;
  color: white;
  display: flex;
  overflow: hidden;
}

.bookabooth .f1 .right .bookaboothBox .cat {
  width: 13vw;
  position: absolute;
  right: 0;
  top: 1.5vw;
  pointer-events: none;
}
.bookabooth .f1 .right .bookaboothBox .cat img{
  position: relative;
}
.bookabooth .f1 .right .bookaboothBox .tit {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 2vw;
}
.bookabooth .f1 .right .bookaboothBox .tit img {
  width: 1.8vw;
  margin-right: 2vw;
}
.bookabooth .f1 .right .bookaboothBox .txt {
  margin-top: 2vw;
  font-size: 1vw;
  line-height: 2;
}
.bookabooth .f1 .right .bookaboothForm {
  border-radius: 0.5vw;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0px);
  padding: 0.5vw 2vw 2vw 2vw;
  margin-top: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .tit {
  font-size: 1.5vw;
  margin-top: 2vw;
}
.bookabooth .f1 .right .bookaboothForm .inputBox {
  width: 100%;
  position: relative;
  margin-top: 1.5vw;
}
.bookabooth .f1 .right .bookaboothForm .inputBox .t {
  font-size: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .inputBox .inputs {
  width: 100%;
  border-radius: 0.5vw;
  border: 1px solid #D1D5DC;
  padding: 0.5vw 1vw;
  margin-top: 0.8vw;
}
.bookabooth .f1 .right .bookaboothForm .inputBox .inputs input {
  width: 100%;
  height: 100%;
  border: transparent;
  background: transparent;
  font-size: 0.9vw;
  -webkit-appearance: auto;
  font-family: Poppins-Regular;
  outline: none;
}
.bookabooth .f1 .right .bookaboothForm .inputItem {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.bookabooth .f1 .right .bookaboothForm .inputItem .inputBox {
  width: 48%;
}
.bookabooth .f1 .right .bookaboothForm .checkItem {
  color: #364153;
}
.bookabooth .f1 .right .bookaboothForm .checkItem .checkBox {
  font-size: 0.9vw;
  margin-top: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .checkItem .checkBox input {
  -webkit-appearance: auto;
  border: 1px solid #767676;
  width: 1vw;
  height: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .checkItem .checkBox label {
  margin-left: 0.5vw;
  position: relative;
  top: -0.1vw;
}
.bookabooth .f1 .right .bookaboothForm .checkItem .checkBox .inputs {
  width: 90%;
  border-radius: 0.5vw;
  border: 1px solid #D1D5DC;
  padding: 0.5vw 1vw;
  margin-top: 0.8vw;
  margin-left: 1.8vw;
}
.bookabooth .f1 .right .bookaboothForm .checkItem .checkBox .inputs input {
  width: 100%;
  height: 100%;
  border: transparent;
  background: transparent;
  font-size: 0.9vw;
  -webkit-appearance: auto;
  font-family: Poppins-Regular;
  outline: none;
}
.bookabooth .f1 .right .bookaboothForm .checkItem2 {
  display: flex;
  flex-wrap: wrap;
}
.bookabooth .f1 .right .bookaboothForm .checkItem2 .checkBox {
  width: 60%;
}
.bookabooth .f1 .right .bookaboothForm .checkItem2 .checkBox:nth-child(odd) {
  width: 40%;
}
/*.bookabooth .f1 .right .bookaboothForm .checkItem2 .checkBox:last-child {*/
/*  width: 100%;*/
/*}*/
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox {
  border: 2px solid #E5E7EB;
  border-radius: 0.5vw;
  padding: 1.5vw;
  margin-top: 1vw;
  display: flex;
  /* 选中状态：红色边框 */
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox:has(input:checked) {
  border: 2px solid #F6339A;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox input {
  -webkit-appearance: auto;
  border: 1px solid #767676;
  width: 1vw;
  height: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label {
  margin-left: 0.5vw;
  position: relative;
  top: -0.2vw;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .t {
  font-size: 1.1vw;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .t span {
  color: #6A7282;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .usd {
  font-size: 1.5vw;
  color: #E60076;
  margin: 0.5vw 0;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .txt .d {
  font-size: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .txt .d2 {
  font-size: 0.9vw;
  color: #6A7282;
  line-height: 1.7;
  padding-left: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox:nth-child(2) label .usd {
  color: #9810FA;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .radioBox:nth-child(2) label .txt .d2 {
  padding-left: 0;
}
.bookabooth .f1 .right .bookaboothForm .radioItem .info {
  font-size: 0.9vw;
  color: #99A1AF;
  margin-top: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .radioItem2 {
  display: flex;
  flex-wrap: wrap;
}
.bookabooth .f1 .right .bookaboothForm .radioItem2 .t {
  width: 100%;
  font-size: 1vw;
  margin-top: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .radioItem2 .radioBox {
  width: 50%;
  border: transparent;
  padding: 0;
  /* 选中状态：红色边框 */
}
.bookabooth .f1 .right .bookaboothForm .radioItem2 .radioBox:has(input:checked) {
  border: transparent;
}
.bookabooth .f1 .right .bookaboothForm .radioItem2 .radioBox label {
  margin-left: 0.5vw;
  position: relative;
  top: 0vw;
}
.bookabooth .f1 .right .bookaboothForm .conditions {
  margin-top: 5vw;
  font-size: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .conditions input {
  -webkit-appearance: auto;
  border: 1px solid #767676;
  width: 1vw;
  height: 1vw;
}
.bookabooth .f1 .right .bookaboothForm .conditions label {
  position: relative;
  margin-left: 0.5vw;
  top: -0.15vw;
}
.bookabooth .f1 .right .bookaboothForm .conditions label span {
  color: #E60076;
  cursor: pointer;
}
.bookabooth .f1 .right .bookaboothForm .moreBox {
  margin: 1vw 0 0 0;
  justify-content: inherit;
}
.conditionsModal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.conditionsModal .modalBox {
  width: 60%;
  height: 80vh;
  position: absolute;
  background: white;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 0.5vw;
  overflow: hidden;
  box-sizing: border-box;
}
.conditionsModal .modalBox .titBox {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1.2vw;
  padding: 1vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.conditionsModal .modalBox .titBox .tit i {
  color: #F6339A;
  font-weight: normal;
}
.conditionsModal .modalBox .titBox .close {
  font-size: 1vw;
  cursor: pointer;
}
.conditionsModal .modalBox .des {
  width: 100%;
  height: 64vh;
  overflow-y: scroll;
  padding: 1vw;
  font-size: 0.9vw;
  line-height: 2;
}
.conditionsModal .modalBox .btnBox {
  width: 100%;
  display: flex;
  justify-content: right;
  padding: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.conditionsModal .modalBox .btnBox .closeBtn {
  background: #F3F4F6;
  font-size: 0.9vw;
  padding: 0.5vw 1vw;
  border-radius: 0.5vw;
  margin-right: 1vw;
  cursor: pointer;
}
.conditionsModal .modalBox .btnBox .sureBtn {
  font-size: 0.9vw;
  padding: 0.5vw 1vw;
  color: white;
  border-radius: 0.5vw;
  cursor: pointer;
  background: linear-gradient(180deg, #5648B7 0%, #FA5BBA 100%), #F6339A;
}
.conditionsModal.active {
  display: block;
}
.products {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.products .f1 {
  padding: 10vw 5vw 2vw 5vw;
}
.products .f1 .splitTextTit {
  width: 50%;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kalnia;
  font-size: 8vw;
  line-height: 1;
  /* 初始状态：左边隐藏，模糊 */
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
}
.products .f1 .tit {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
  margin-top: 5vw;
  opacity: 0;
}
.products .f1 .searchBox {
  width: 100%;
  margin-top: 2vw;
  padding: 1.5vw;
  border-radius: 0.5vw;
  position: relative;
  border: 1px solid #E8E8E8;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
}
.products .f1 .searchBox .cat {
  width: 18vw;
  position: absolute;
  right: -4vw;
  top: -11vw;
}
.products .f1 .searchBox .searchs {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 0.5vw;
  border: 1px solid #E8E8E8;
  background: #FFF;
  padding: 0.8vw 1vw;
}
.products .f1 .searchBox .searchs i {
  color: #AAAAAA;
  font-size: 1vw;
  cursor: pointer;
}
.products .f1 .searchBox .searchs input {
  width: 80%;
  margin-left: 1vw;
  font-size: 0.9vw;
  border: transparent;
  outline: none;
  background: transparent;
  font-family: Poppins-Regular;
}
.products .f1 .searchBox .searchs input::placeholder {
  color: #AAAAAA;
}
.products .f1 .searchBox .groupsBox {
  width: 100%;
  margin-top: 2vw;
}
.products .f1 .searchBox .groupsBox .t {
  color: #999999;
  font-size: 1vw;
  text-transform: uppercase;
}
.products .f1 .searchBox .groupsBox .groups {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: .5vw;
  margin-top: 0.8vw;
}
.products .f1 .searchBox .groupsBox .groups .group {
  border-radius: 5vw;
  border: 1px solid #DCDCDC;
  background: #FFF;
  font-size: 0.85vw;
  margin-right: 0.5vw;
  padding: 0.5vw 0.8vw;
  cursor: pointer;
  color: #555555;
  transition: 0.3s all;
}
.products .f1 .searchBox .groupsBox .groups .group span {
  opacity: 0.6;
}
.products .f1 .searchBox .groupsBox .groups .group:last-child {
  margin-right: 0;
}
.products .f1 .searchBox .groupsBox .groups .group.active {
  color: white;
  background: linear-gradient(180deg, #5648B7 0%, #FA5BBA 100%);
}
.products .f1 .searchBox .groupsBox .groups .group:hover {
  color: white;
  background: linear-gradient(180deg, #5648B7 0%, #FA5BBA 100%);
}
.products .f2 {
  width: 100%;
  position: relative;
  padding: 0 5vw;
}
.products .f2 .titHead {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  opacity: 0;
}
.products .f2 .titHead .t {
  font-size: 1vw;
  font-weight: bold;
}
.products .f2 .titHead .d {
  color: #999999;
  font-size: 0.9vw;
}
.products .f2 .f2Box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  margin-top: 2vw;
}
.products .f2 .f2Box .item {
  width: 18.2%;
  background: white;
  border-radius: 0.5vw;
  position: relative;
  transition: 0.3s all;
  opacity: 0;
}
.products .f2 .f2Box .item .icon {
  width: 5vw;
  position: absolute;
  z-index: 1;
  top: -0.2vw;
  left: -0.2vw;
}
.products .f2 .f2Box .item .img {
  width: 100%;
  height: 8vw;
  position: relative;
  background: #F8F8F8;
  padding: 1vw 0;
  border-radius: 0.5vw 0.5vw 0 0;
}
.products .f2 .f2Box .item .img img {
  width: auto;
  height: 6vw;
  margin: 0 auto;
  border-radius: 0.5vw;
}
.products .f2 .f2Box .item .text {
  width: 100%;
  height: 16vw;
  position: relative;
  padding: 1vw;
}
.products .f2 .f2Box .item .text .types {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products .f2 .f2Box .item .text .types .its{
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: .3vw;
}
.products .f2 .f2Box .item .text .types .t {
  display: inline-block;
  border-radius: 5vw;
  border: 1px solid #FFCCD3;
  background: #FFF1F2;
  font-size: 0.7vw;
  color: #C70036;
  padding: 0.1vw 0.5vw;
}
.products .f2 .f2Box .item .text .types .d {
  font-size: 0.7vw;
  color: #aaaaaa;
}
.products .f2 .f2Box .item .text .name {
  font-weight: bold;
  font-size: 1vw;
  margin: .8vw 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products .f2 .f2Box .item .text .des {
  width: 100%;
  color: #999999;
  font-size: 0.8vw;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products .f2 .f2Box .item .text .more {
  width: calc(100% - 2vw);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #E3007E;
  margin-top: 1vw;
  padding-top: 1vw;
  font-size: 0.8vw;
  position: absolute;
  bottom: 1vw;
}
.products .f2 .f2Box .item .text .more i {
  margin-left: 0.5vw;
}
.products .f2 .f2Box .item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.products .f3 {
  width: 100%;
  position: relative;
  padding: 3vw 5vw;
  display: flex;
  justify-content: space-between;
}
.products .f3 .item {
  width: 49%;
  background: white;
  border-radius: 0.5vw;
  overflow: hidden;
  padding: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products .f3 .item .txt .name {
  font-size: 1.5vw;
  font-weight: bold;
}
.products .f3 .item .txt .des {
  color: #6A7282;
  font-size: 0.9vw;
  margin: 1vw 0 1.5vw 0;
}
.products .f3 .item .txt .btn {
  color: #E60076;
  font-size: 0.9vw;
}
.products .f3 .item .txt .btn i {
  margin-right: 0.5vw;
  font-size: 1vw;
}
.products .f3 .item .icon {
  width: 3.5vw;
  height: 3.5vw;
  background: #FDF2F8;
  border-radius: 50%;
  font-size: 1.2vw;
  text-align: center;
  line-height: 3.5vw;
}
.products .f3 .item:nth-child(2) {
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
}
.products .f3 .item:nth-child(2) .txt .name {
  color: white;
}
.products .f3 .item:nth-child(2) .txt .des {
  color: white;
}
.products .f3 .item:nth-child(2) .txt .btn {
  background: white;
  color: #5648B7;
  border-radius: 5vw;
  padding: 0.5vw 1vw;
}
.products .f3 .item:nth-child(2) .icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.products .f4 {
  width: 100%;
  position: relative;
  padding: 2vw 5vw 0 5vw;
  display: inline-block;
}
.products .f4 .left {
  width: 25%;
  border-radius: 0.5vw;
  border: 1px solid #E8E8E8;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  padding: 1vw;
  display: inline-block;
  float: left;
  margin-right: 2%;
}
.products .f4 .left .head {
  display: flex;
}
.products .f4 .left .head .img {
  width: 6vw;
  height: 6vw;
  background: white;
  border-radius: 0.5vw;
  padding: 0.3vw;
}
.products .f4 .left .head .img img {
  width: 100%;
  border-radius: 0.5vw;
}
.products .f4 .left .head .txt {
  width: calc(100% - 6vw);
  margin-left: 0.5vw;
}
.products .f4 .left .head .txt .types {
  display: flex;
  flex-wrap: wrap;
  gap: .5vw;
}
.products .f4 .left .head .txt .types .type {
  border-radius: 5vw;
  border: 1px solid #D4D4D8;
  background: #F4F4F5;
  font-size: 0.7vw;
  padding: 0.2vw 0.4vw;
}
.products .f4 .left .head .txt .name {
  font-size: 1.2vw;
  font-weight: bold;
  margin: 0.5vw 0;
}
.products .f4 .left .head .txt .address {
  font-size: 0.8vw;
  color: #888888;
}
.products .f4 .left .head .txt .address i {
  color: #E3007E;
  font-size: .9vw;
}
.products .f4 .left .text {
  margin: 1vw 0;
}
.products .f4 .left .text .tit {
  font-size: 1vw;
  font-weight: 500;
}
.products .f4 .left .text .des {
  max-height: 11vw;
  overflow-y: scroll;
  font-size: 0.8vw;
  color: #666666;
  line-height: 1.5;
  margin-top: 0.5vw;
}
.products .f4 .left .text .videos {
  width: 100%;
  height: 9vw;
  background-size: cover !important;
  border-radius: 1vw;
  position: relative;
  margin-top: 1vw;
}
.products .f4 .left .text .videos .play {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: white;
  font-size: 1.3vw;
  line-height: 4vw;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
}
.products .f4 .left .contact .tit {
  font-weight: bold;
  font-size: 1vw;
}
.products .f4 .left .contact .its {
  display: flex;
  margin-top: 1vw;
}
.products .f4 .left .contact .its .icon {
  font-size: 1vw;
  color: #E3007E;
}
.products .f4 .left .contact .its .it {
  margin-left: 1vw;
}
.products .f4 .left .contact .its .it .t {
  color: #AAAAAA;
  text-transform: uppercase;
  font-size: .9vw;
}
.products .f4 .left .contact .its .it .d {
  font-size: 0.9vw;
  font-weight: 500;
}
.products .f4 .left .followUs {
  margin-top: 3vw;
}
.products .f4 .left .followUs .tit {
  font-weight: bold;
  font-size: 1.2vw;
}
.products .f4 .left .followUs .follow {
  display: flex;
  margin-top: 1vw;
}
.products .f4 .left .followUs .follow .icon {
  width: 3vw;
  height: 3vw;
  border-radius: 1vw;
  border: 1px solid #E8E8E8;
  background: #FFF;
  line-height: 3vw;
  text-align: center;
  font-size: 1.2vw;
  margin-right: 1vw;
}
.products .f4 .right {
  width: 73%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}
.products .f4 .right .item {
  width: 31.5%;
  background: white;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
  opacity: 0;
}
.products .f4 .right .item .imgBox {
  width: 100%;
  height: 15vw;
  position: relative;
  overflow: hidden;
}
.products .f4 .right .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.products .f4 .right .item .text {
  position: relative;
  padding: 1vw;
}
.products .f4 .right .item .text .t {
  font-size: 1vw;
  font-weight: 500;
}
.products .f4 .right .item .text .d {
  color: #888888;
  font-size: 0.8vw;
  margin-top: 0.5vw;
  line-height: 1.5;
}
.products .f4 .right .item:hover .imgBox .img {
  transform: scale(1.1);
}
.hallPlan {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hallPlan .f1 {
  width: 100%;
  padding: 10vw 5vw 2vw 5vw;
}
.hallPlan .f1 .splitTextTit {
  width: 50%;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kalnia;
  font-size: 8vw;
  line-height: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
}
.hallPlan .f1 .tit {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
  margin-top: 5vw;
}
.hallPlan .f1 .f1Box {
  width: 100%;
  position: relative;
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
}
.hallPlan .f1 .f1Box .item {
  width: 49.5%;
  text-align: center;
  cursor: pointer;
}
.hallPlan .f1 .f1Box .item .img {
  width: 100%;
  border-radius: 1vw;
  overflow: hidden;
}
.hallPlan .f1 .f1Box .item .name {
  font-size: 0.9vw;
  margin-top: 1vw;
}
.hallPlan .f2 {
  width: 90%;
  height: 40vw;
  border-radius: 0.5vw;
  position: relative;
  margin: 3vw auto;
  overflow: hidden;
}
.hallPlan .f2 .txt {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hallPlan .f2 .txt .icon {
  color: white;
  font-size: 1.5vw;
  font-weight: 500;
}
.hallPlan .f2 .txt .icon img {
  width: 4vw;
  margin: 0 auto 0.5vw auto;
}
.hallPlan .f2 .txt .moreBox {
  margin: 1vw auto;
}
.visitor {
  width: 100%;
  position: relative;
}
.visitor .f1 {
  width: 100%;
  padding: 10vw 5vw 2vw 5vw;
}
.visitor .f1 .splitTextTit {
  width: 50%;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kalnia;
  font-size: 8vw;
  line-height: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
}
.visitor .f1 .tit {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
  margin-top: 5vw;
}
.visitor .f1 .f1Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5vw;
}
.visitor .f1 .f1Box .left {
  width: 30%;
}
.visitor .f1 .f1Box .left .t {
  font-size: 2.5vw;
}
.visitor .f1 .f1Box .left .d {
  font-size: 0.9vw;
  color: #666666;
  line-height: 1.5;
  margin: 3vw 0;
}
.visitor .f1 .f1Box .left .info {
  line-height: 1.5;
  color: #E3007E;
  font-size: 0.9vw;
}
.visitor .f1 .f1Box .left .info img {
  width: 1.2vw;
  margin-bottom: 1vw;
}
.visitor .f1 .f1Box .center {
  width: 30%;
  height: 24vw;
  position: relative;
  opacity: 0;
  overflow: hidden;
}
.visitor .f1 .f1Box .center .f1Swiper {
  width: 17vw;
  height: 24vw;
  position: relative;
  border-radius: 1vw;
  cursor: pointer;
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.visitor .f1 .f1Box .center .f1Swiper .t {
  width: 80%;
  left: 10%;
  position: absolute;
  color: white;
  bottom: 1vw;
  font-size: 0.9vw;
  z-index: 3;
}
.visitor .f1 .f1Box .center .f1Swiper .t::before {
  content: '';
  position: absolute;
  width: 0.3vw;
  height: 0.3vw;
  background: white;
  border-radius: 50%;
  left: -0.7vw;
  top: 0.4vw;
}
.visitor .f1 .f1Box .center .f1Swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.visitor .f1 .f1Box .center .f1Swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
}
.visitor .f1 .f1Box .center .f1Swiper .swiper-slide::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(227, 0, 126, 0) 37.4%, rgba(227, 0, 126, 0.65) 100%);
}
.visitor .f1 .f1Box .center .f1Swiper .swiper-pagination {
  bottom: inherit;
  top: 1vw;
}
.visitor .f1 .f1Box .center .f1Swiper .swiper-pagination .swiper-pagination-bullet {
  width: 4vw;
  height: 2px;
  background: white;
  border-radius: 0;
}
.visitor .f1 .f1Box .center .f1Swipers {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 5vw;
}
.visitor .f1 .f1Box .center .f2Swipers {
  position: absolute;
  transform: rotate(-5deg) scale(0.8);
  top: 0;
  left: 1.5vw;
}
.visitor .f1 .f1Box .center .f3Swipers {
  position: absolute;
  transform: rotate(5deg) scale(0.8);
  top: 0;
  right: 1.5vw;
}
.visitor .f1 .f1Box .right {
  width: 30%;
}
.visitor .f1 .f1Box .right .tits {
  padding-bottom: 1vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.visitor .f1 .f1Box .right .tits .t {
  font-weight: 500;
  font-size: 2vw;
}
.visitor .f1 .f1Box .right .tits .d {
  font-size: 2vw;
  color: #432883;
  font-style: italic;
}
.visitor .f1 .f1Box .right .its {
  padding: 2vw 0 1vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.visitor .f1 .f1Box .right .its .t {
  font-size: 1vw;
  color: #E3007E;
}
.visitor .f1 .f1Box .right .its .d {
  font-weight: bold;
  font-size: 2vw;
}
.visitor .f2 {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 8vw 5vw;
}
.visitor .f2 .left {
  width: 50%;
  position: sticky;
  top: 10vw;
  display: inline-block;
  float: left;
}
.visitor .f2 .left .txt .t {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
}
.visitor .f2 .left .txt .d {
  width: 30vw;
  font-size: 2.5vw;
  margin-top: 1.5vw;
}
.visitor .f2 .right {
  width: 50%;
  position: relative;
  display: inline-block;
}
.visitor .f2 .right .bookaboothBox {
  border-radius: 0.5vw;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 3vw 2vw;
  position: relative;
  color: white;
  display: flex;
  overflow: hidden;
}
.visitor .f2 .right .bookaboothBox .cat {
  width: 13vw;
  position: absolute;
  right: 0;
  top: 1.5vw;
  pointer-events: none;
}
.visitor .f2 .right .bookaboothBox .tit {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 2vw;
}
.visitor .f2 .right .bookaboothBox .tit img {
  width: 1.8vw;
  margin-right: 2vw;
}
.visitor .f2 .right .bookaboothBox .txt {
  margin-top: 2vw;
  font-size: 1vw;
  line-height: 2;
}
.visitor .f2 .right .bookaboothForm {
  border-radius: 0.5vw;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0px);
  padding: 0.5vw 2vw 2vw 2vw;
  margin-top: 1vw;
}
.visitor .f2 .right .bookaboothForm .tit {
  font-size: 1.5vw;
  margin-top: 2vw;
}
.visitor .f2 .right .bookaboothForm .tits {
  font-size: 1.5vw;
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
}
.visitor .f2 .right .bookaboothForm .tits .addBtn {
  font-size: 1vw;
  cursor: pointer;
}
.visitor .f2 .right .bookaboothForm .addInputList {
  position: relative;
}
.visitor .f2 .right .bookaboothForm .addInputList .addInput {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2vw;
}
.visitor .f2 .right .bookaboothForm .addInputList .addInput .deleteIcon {
  font-size: 1vw;
  cursor: pointer;
  position: absolute;
  right: 0;
  z-index: 2;
  top: 1.5vw;
}
.visitor .f2 .right .bookaboothForm .radioItem2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5vw;
}
.visitor .f2 .right .bookaboothForm .radioItem2 .t {
  width: 100%;
  font-size: 1vw;
  margin-top: 1vw;
}
.visitor .f2 .right .bookaboothForm .radioItem2 .radioBox {
  width: 35%;
  border: transparent;
  padding: 0;
}
.visitor .f2 .right .bookaboothForm .radioItem2 .radioBox input{
  -webkit-appearance: auto;
  border: 1px solid #767676;
  width: 1vw;
  height: 1vw;
}
.visitor .f2 .right .bookaboothForm .radioItem2 .radioBox:has(input:checked) {
  border: transparent;
}
.visitor .f2 .right .bookaboothForm .radioItem2 .radioBox label {
  margin-left: 0.5vw;
  position: relative;
  top: -.15vw;
}
.visitor .f2 .right .bookaboothForm .inputBox {
  width: 100%;
  position: relative;
  margin-top: 1.5vw;
}
.visitor .f2 .right .bookaboothForm .inputBox .t {
  font-size: 1vw;
}
.visitor .f2 .right .bookaboothForm .inputBox .inputs {
  width: 100%;
  border-radius: 0.5vw;
  border: 1px solid #D1D5DC;
  padding: 0.5vw 1vw;
  margin-top: 0.8vw;
}
.visitor .f2 .right .bookaboothForm .inputBox .inputs input {
  width: 100%;
  height: 100%;
  border: transparent;
  background: transparent;
  line-height: 1.5 !important;
  font-size: 0.9vw;
  -webkit-appearance: auto;
  font-family: Poppins-Regular;
  outline: none;
}
.visitor .f2 .right .bookaboothForm .inputItem {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.visitor .f2 .right .bookaboothForm .inputItem .inputBox {
  width: 48%;
}
.visitor .f2 .right .bookaboothForm .checkItem {
  color: #364153;
}
.visitor .f2 .right .bookaboothForm .checkItem .checkBox {
  font-size: 0.9vw;
  margin-top: 1vw;
}
.visitor .f2 .right .bookaboothForm .checkItem .checkBox input {
  -webkit-appearance: auto;
  border: 1px solid #767676;
  width: 1vw;
  height: 1vw;
}
.visitor .f2 .right .bookaboothForm .checkItem .checkBox label {
  margin-left: 0.5vw;
  position: relative;
  top: -0.1vw;
}
.visitor .f2 .right .bookaboothForm .checkItem .checkBox .inputs {
  width: 90%;
  border-radius: 0.5vw;
  border: 1px solid #D1D5DC;
  padding: 0.5vw 1vw;
  margin-top: 0.8vw;
  margin-left: 1.8vw;
}
.visitor .f2 .right .bookaboothForm .checkItem .checkBox .inputs input {
  width: 100%;
  height: 100%;
  border: transparent;
  background: transparent;
  font-size: 0.9vw;
  -webkit-appearance: auto;
  font-family: Poppins-Regular;
  outline: none;
}
.visitor .f2 .right .bookaboothForm .checkItem2 {
  display: flex;
  flex-wrap: wrap;
}
.visitor .f2 .right .bookaboothForm .checkItem2 .checkBox {
  width: 60%;
}
.visitor .f2 .right .bookaboothForm .checkItem2 .checkBox:nth-child(odd) {
  width: 40%;
}
/*.visitor .f2 .right .bookaboothForm .checkItem2 .checkBox:last-child {*/
/*  width: 100%;*/
/*}*/
.visitor .f2 .right .bookaboothForm .conditions {
  margin-top: 5vw;
  font-size: 1vw;
}
.visitor .f2 .right .bookaboothForm .conditions input {
  -webkit-appearance: auto;
  border: 1px solid #767676;
  width: 1vw;
  height: 1vw;
}
.visitor .f2 .right .bookaboothForm .conditions label {
  position: relative;
  margin-left: 0.5vw;
  top: -0.15vw;
}
.visitor .f2 .right .bookaboothForm .conditions label span {
  color: #E60076;
  cursor: pointer;
}
.visitor .f2 .right .bookaboothForm .submit {
  margin-top: 1vw;
  justify-content: inherit;
}
.visitor .f3 {
  width: 100%;
  position: relative;
  padding: 0 5vw;
}
.visitor .f3 .cat {
  width: 15vw;
  position: absolute;
  left: 23vw;
  z-index: 2;
  top: -8vw;
}
.visitor .f3 .tit {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
}
.visitor .f3 .f3Box {
  width: 100%;
  position: relative;
  display: flex;
  margin-top: 3vw;
}
.visitor .f3 .f3Box .left {
  width: 30%;
  border-radius: 1vw;
  border-right: 1px dashed white;
  background: linear-gradient(180deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  padding: 2vw;
  color: white;
}
.visitor .f3 .f3Box .left .tabBox {
  display: flex;
  font-size: 1.5vw;
  border-bottom: 1px dashed white;
  padding-bottom: 1vw;
}
.visitor .f3 .f3Box .left .tabBox .tab {
  cursor: pointer;
  margin-right: 2vw;
}
.visitor .f3 .f3Box .left .tabBox .active {
  font-weight: bold;
}
.visitor .f3 .f3Box .left .itemBox .item {
  display: none;
}
.visitor .f3 .f3Box .left .itemBox .item .its {
  margin-top: 2vw;
}
.visitor .f3 .f3Box .left .itemBox .item .its .t {
  font-weight: 400;
  font-size: 1.1vw;
}
.visitor .f3 .f3Box .left .itemBox .item .its .d {
  font-size: 0.9vw;
  margin-top: 0.5vw;
  line-height: 1.7;
  opacity: .8;
}
.visitor .f3 .f3Box .left .itemBox .item .tit2 {
  font-size: 0.9vw;
  margin: 1vw 0;
  line-height: 1.5;
}
.visitor .f3 .f3Box .left .itemBox .item .imgs .img {
  width: 100%;
  height: 2.2vw;
  overflow: hidden;
  border-radius: 0.5vw;
  margin-bottom: 1vw;
}
.visitor .f3 .f3Box .left .itemBox .item .imgs .img.active {
  height: auto;
}
.visitor .f3 .f3Box .left .itemBox .item.active {
  display: block;
}
.visitor .f3 .f3Box .right {
  width: 70%;
  border-radius: 1vw;
  background: linear-gradient(180deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  padding: 1vw;
}
.visitor .f3 .f3Box .right .f3Swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.visitor .f3 .f3Box .right .f3Swiper .swiper-slide {
  width: 100%;
  height: 30vw;
}
.visitor .f3 .f3Box .right .f3Swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
  border-radius: 1vw;
  background-size: cover !important;
}
.visitor .f3 .f3Box .right .f3Swiper .swiper-pagination-bullet {
  background: white;
  opacity: 1;
}
.visitor .f3 .f3Box .right .f3Swiper .swiper-pagination-bullet-active {
  width: 2vw;
  border-radius: 5px;
}
.visitor .f4 {
  width: 100%;
  position: relative;
  padding: 5vw;
}
.visitor .f4 .tit {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
}
.visitor .f4 .des {
  font-size: 1vw;
  line-height: 1.5;
  margin: 1vw 0;
}
.visitor .f4 .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2vw;
}

.visitor .f4 .item .img img {
  width: auto;
  height: 17.5vw;
  border-radius: 0.5vw;
  object-fit: inherit;
}
.visitor .f4 .item .img:nth-child(2) {
  margin: 0 1vw;
}
.contact {
  width: 100%;
  position: relative;
}
.contact .f1 {
  width: 100%;
  padding: 10vw 5vw 0 5vw;
}
.contact .f1 .splitTextTit {
  width: 50%;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kalnia;
  font-size: 8vw;
  line-height: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
}
.contact .f1 .f1Box {
  width: 100%;
  position: relative;
  padding: 5vw 0;
  display: flex;
  justify-content: space-between;
}
.contact .f1 .f1Box .item {
  width: 49%;
  position: relative;
  border-radius: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  overflow: hidden;
  opacity: 0;
}
.contact .f1 .f1Box .item .imgBox {
  width: 20vw;
  height: 20vw;
  position: relative;
  overflow: hidden;
}
.contact .f1 .f1Box .item .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  background-size: cover !important;
}
.contact .f1 .f1Box .item .cat {
  width: 15vw;
  position: absolute;
  bottom: -8vw;
  pointer-events: none;
  left: 11.6vw;
}
.contact .f1 .f1Box .item .textBox {
  width: calc(100% - 16vw);
  padding: 0 0 0 4vw;
}
.contact .f1 .f1Box .item .textBox .name {
  color: #E3007E;
  font-size: 1.2vw;
  font-weight: 500;
}
.contact .f1 .f1Box .item .textBox .des {
  font-size: 0.9vw;
  color: #666666;
  margin-top: 0.5vw;
}
.contact .f1 .f1Box .item .textBox .its {
  margin: 1.5vw 0;
}
.contact .f1 .f1Box .item .textBox .its .it {
  display: flex;
  align-items: center;
  color: #444444;
  font-size: 0.9vw;
  margin-bottom: 0.5vw;
}
.contact .f1 .f1Box .item .textBox .its .it .icon {
  width: 1.8vw;
  height: 1.8vw;
  border-radius: 50%;
  text-align: center;
  line-height: 1.8vw;
  background: rgba(250, 91, 186, 0.15);
  color: #E3007E;
  margin-right: 0.5vw;
}
.contact .f1 .f1Box .item .textBox .qrcodeBox {
  width: 100%;
  display: flex;
}
.contact .f1 .f1Box .item .textBox .qrcodeBox .qrcode {
  width: 5vw;
  text-align: center;
  font-size: 0.85vw;
  color: #666666;
  margin-right: 1vw;
}
.contact .f1 .f1Box .item .textBox .qrcodeBox .qrcode p {
  margin-top: 0.5vw;
}
.contact .f1 .f1Box .item:hover .imgBox .img {
  transform: scale(1.1);
}
.contact .f2 {
  width: 100%;
  position: relative;
  padding: 0 5vw 6vw 5vw;
}
.contact .f2 .tit {
  font-family: Kalnia;
  color: #432883;
  font-size: 1.5vw;
  text-transform: uppercase;
  opacity: 0;
}
.contact .f2 .f2Box {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  margin-top: 2vw;
}
.contact .f2 .f2Box .item {
  width: 31.8%;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
  background: white;
  opacity: 0;
}
.contact .f2 .f2Box .item .imgBox {
  width: 100%;
  height: 28vw;
  position: relative;
  overflow: hidden;
}
.contact .f2 .f2Box .item .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  background-size: cover !important;
}
.contact .f2 .f2Box .item .imgBox .qrcode {
  position: absolute;
  bottom: 0;
  right: 0;
}
.contact .f2 .f2Box .item .imgBox .qrcode .icon {
  width: 3.5vw;
  height: 3.5vw;
  background: white;
  color: #E3007E;
  font-size: 1.5vw;
  text-align: center;
  line-height: 3.5vw;
  border-radius: 1vw 0 0 0;
  position: relative;
  cursor: pointer;
}
.contact .f2 .f2Box .item .imgBox .qrcode .icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -1vw;
  width: 1vw;
  height: 1vw;
  background: url('../images/Exclude.png') center no-repeat;
  background-size: cover;
}
.contact .f2 .f2Box .item .imgBox .qrcode .icon::after {
  content: '';
  position: absolute;
  bottom: 3.5vw;
  right: 0;
  width: 1vw;
  height: 1vw;
  background: url('../images/Exclude.png') center no-repeat;
  background-size: cover;
}
.contact .f2 .f2Box .item .imgBox .qrcode .qrcodeImg {
  width: 17vw;
  position: absolute;
  left: -19.5vw;
  bottom: 2vw;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.contact .f2 .f2Box .item .imgBox .qrcode .icon:hover + .qrcodeImg {
  opacity: 1;
  pointer-events: auto;
}
.contact .f2 .f2Box .item .textBox {
  width: 100%;
  padding: 1vw;
}
.contact .f2 .f2Box .item .textBox .name {
  font-weight: 500;
  font-size: 1.1vw;
}
.contact .f2 .f2Box .item .textBox .phone {
  font-size: 0.9vw;
  color: #666666;
  margin-top: 1vw;
}
.contact .f2 .f2Box .item .textBox .phone i {
  color: #E3007E;
  font-size: 1vw;
  margin-right: 0.5vw;
}
.contact .f2 .f2Box .item .textBox .email {
  font-size: 0.9vw;
  color: #666666;
  margin-top: 0.5vw;
}
.contact .f2 .f2Box .item .textBox .email i {
  color: #E3007E;
  font-size: 1vw;
  margin-right: 0.5vw;
}
.contact .f2 .f2Box .item:hover .imgBox .img {
  transform: scale(1.1);
}
.news {
  width: 100%;
  position: relative;
}
.news .f1 {
  width: 100%;
  padding: 10vw 5vw 15vw 5vw;
}
.news .f1 .splitTextTit {
  width: 50%;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kalnia;
  font-size: 8vw;
  line-height: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
}
.news .f1 .f1Box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5vw;
  gap: 1vw;
}
.news .f1 .f1Box .item {
  width: 24.1%;
  height: 30vw;
  position: relative !important;
  border-radius: 1vw;
  overflow: hidden;
  transform: translateY(0);
  will-change: transform;
  z-index: 10;
  opacity: 0;
}
.news .f1 .f1Box .item .imgBox {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  background-size: cover !important;
}
.news .f1 .f1Box .item .text {
  width: 90%;
  position: absolute;
  left: 5%;
  bottom: 1vw;
  border-radius: 1vw;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.7) 0%, rgba(250, 91, 186, 0.7) 100%);
  backdrop-filter: blur(10px);
  padding: 1vw;
}
.news .f1 .f1Box .item .text .name {
  font-weight: 500;
  font-size: 1.1vw;
  color: white;
}
.news .f1 .f1Box .item .text .its {
  display: flex;
  align-items: center;
  margin-top: 1vw;
}
.news .f1 .f1Box .item .text .its .icon {
  width: 1.2vw;
  margin-right: 1vw;
}
.news .f1 .f1Box .item .text .its .it {
  width: 100%;
  background: white;
  border-radius: 0.3vw;
  padding: 0.2vw 0.8vw;
  color: #666666;
  font-size: 0.9vw;
}
.news .f1 .f1Box .item:hover .imgBox {
  transform: scale(1.1);
}
.news .f1 .f1Box .item:nth-child(4n+1) {
  top: 0;
}
.news .f1 .f1Box .item:nth-child(4n+2) {
  top: 3vw;
}
.news .f1 .f1Box .item:nth-child(4n+3) {
  top: 6vw;
}
.news .f1 .f1Box .item:nth-child(4n) {
  top: 9vw;
}
.gallery {
  width: 100%;
  position: relative;
}
.gallery .f1 {
  width: 100%;
  padding: 10vw 5vw 5vw 5vw;
}
.gallery .f1 .splitTextTit {
  width: 100%;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kalnia;
  font-size: 8vw;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(15px);
  opacity: 0.8;
  text-align: center;
}
.gallery .f1 .des {
  width: 75%;
  font-size: 1.6vw;
  line-height: 1.5;
  text-align: center;
  margin: 2vw auto 3vw auto;
}
.gallery .f1 .yearBox {
  width: 100%;
  display: flex;
  justify-content: center;
}
.gallery .f1 .yearBox .year {
  font-size: 1vw;
  background: white;
  border-radius: 5vw;
  transition: 0.3s all;
  margin: 0 1vw;
  padding: 0.5vw 2.5vw;
  cursor: pointer;
}
.gallery .f1 .yearBox .year:hover {
  color: white;
  background: linear-gradient(180deg, #5648B7 0%, #FA5BBA 100%);
}
.gallery .f1 .yearBox .year.active {
  color: white;
  background: linear-gradient(180deg, #5648B7 0%, #FA5BBA 100%);
}
.gallery .f1 .f1Box {
  width: 100%;
  position: relative;
  margin-top: 5vw;
  column-count: 5;
  column-gap: 1.5vw;
}
.gallery .f1 .f1Box .img {
  min-height: 10vw;
  background: white;
  border-radius: 0.5vw;
  padding: 0.2vw;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 1.5vw;
  cursor: pointer;
}
.gallery .f1 .f1Box .videos .play {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: white;
  font-size: 1.3vw;
  line-height: 4vw;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(86, 72, 183, 0.85) 0%, rgba(250, 91, 186, 0.85) 100%);
}
.gallery .f1 .f1Box .img img {
  width: 100%;
  border-radius: 0.5vw;
  display: block;
}
.empty{
  text-align: center;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 1440px) {
  header nav ul li a{
    font-size: 14px;
  }
}
@media screen and (max-width: 1366px) {
  header nav ul li {
    margin-left: 2vw;
  }
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .sp_header {

    height: 50px;

    overflow: hidden;

    background: #432883;

    position: fixed;

    z-index: 999;

    width: 100%;

    top: 0;

  }

  .sp_logo {
    padding: 10px;
    float: left;
  }

  .sp_logo img {
    margin: auto;
    width: 210px;
    transition: .35s all ease-in-out;
  }

  .sp_nav {
    width: 50px;
    height: 50px;
    float: right;
    position: relative;
    cursor: pointer;
    margin: 0 2vw;
  }

  .sp_nav span {

    display: block;

    background: white;

    width: 30px;

    height: 2px;

    position: absolute;

    left: 10px;

    transition: all ease .35s

  }

  .sp_nav span:nth-of-type(1) {

    top: 15px;

  }

  .sp_nav span:nth-of-type(2) {

    top: 25px

  }

  .sp_nav span:nth-of-type(3) {

    top: 35px

  }

  .sp_nav_se span:nth-of-type(1) {

    top: 25px;

    transform: rotate(45deg)

  }

  .sp_nav_se span:nth-of-type(2) {

    width: 0

  }

  .sp_nav_se span:nth-of-type(3) {

    top: 25px;

    transform: rotate(-45deg)

  }
  .nav_sp_logo{
    width: 40px !important;
    position: fixed;
    z-index: 999;
  }
  .sp_flex{
    display: flex;
  }
  .sp_black{
    width: 50px;
    height: 100%;
    position: fixed;
    background: black;
    right: -100%;
    top: 0;
    transition: top ease .35s
  }
  .sjj_nav {
    position: fixed;
    z-index: 999;
    background: white;
    width: 85%;
    height: 100%;
    font-size: 14px;
    line-height: 40px;
    top: 0;
    right: -100%;
    padding-top: 15vw;
    overflow: auto;
    overflow-x: hidden;
    transition: right ease .35s
  }
  .sp_flex .mengBan{
    width: 15%;
    height: 100%;
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 999;
    top: 0;
    right: -100%;
    transition: right ease .35s
  }
  .nav_show2 {

    right: 85% !important;

  }
  .nav_show {

    right: 0;

  }
  .sp_bottom{
    width: 100%;
    margin: 8vw auto;
    display: inline-block;
    text-align: center;
  }
  .sp_bottom .sp_serach{
    width: 31vw;
    height: 12vw;
    background-color: #ffffff;
    border-radius: 30px;
    border: 1px solid #777777;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    margin-right: 5vw;
  }
  .sp_bottom .sp_serach i{
    color: black;
    font-size: 16px;
    margin-right: 2vw;
  }
  .sp_bottom .sp_lag{
    width: 31vw;
    height: 12vw;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 30px;
    border: 1px solid #777777;
    text-align: center;
  }
  .sp_bottom .sp_lag i{
    color: black;
    font-size: 16px;
    margin-right: 2vw;
  }
  .sjj_nav > ul > li:first-child {

    overflow: hidden;

    border-top: 0

  }

  .sjj_nav > ul > li:first-child > a {

    /*float: left;*/

    /*width: calc(100% - 70px)*/

  }

  .sjj_nav > ul > li:first-child .language {

    float: right;

    width: 70px;

    overflow: hidden;

    line-height: 30px;

    margin-top: 5px

  }

  .sjj_nav > ul > li:first-child .language a {

    width: 35px;

    float: left;

    border-left: 1px #ddd solid;

    text-align: center;

    color: #999

  }

  .sjj_nav ul li i {

    position: absolute;

    top: 5px;

    right: 0;

    height: 30px;

    padding: 0 7px

  }

  .sjj_nav ul li i svg {

    transform: rotate(-90deg);

    transition: all ease .35s

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    transform: rotate(0)

  }

  .sjj_nav ul li {

    border-top: 1px #ddd solid;

    position: relative;

    line-height: 55px;

    font-size: 14px

  }
  .sjj_nav ul li.active{
    background: #f3f3f3;
  }
  .sjj_nav > ul > li:last-child {

    border-bottom: 1px #ddd solid

  }

  .sjj_nav ul li ul {
    background: #f3f3f3;
    display: none;
    border-top: 1px #ddd solid;
    padding: 10px 0;
  }

  .sjj_nav ul li a {

    color: rgba(0, 0, 0, .8);

    width: 80%;

    display: block;

    font-size: 16px;

    padding-left: 25px;
    text-transform: uppercase;
  }
  .sjj_nav ul li ul li{
    border: transparent;
    line-height: 30px;
  }
  .sjj_nav ul li ul li a {

    color: rgba(0, 0, 0, .5);

    display: block;

    text-align: left;

    font-size: 14px;
    padding-left: 45px;

  }

  .sjj_nav ul li i svg {

    width: 20px;

    height: 20px;

    fill: #432883;

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    fill: #432883;

  }

  .sjj_nav ul li ul li > ul {

    margin-left: 10px

  }
  .sjj_nav .iconBox{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 15vw;
  }
  .sjj_nav .iconBox .icon{
    width: 50px;
    margin: 0 3vw;
    display: inline-block;
  }
  .sp_flex .sjj_nav .close{
    position: absolute;
    right: 4vw;
    top: 1vw;
    font-size: 22px;
    color: #432883;
  }
  .sp_flex .sjj_nav .bgImg{
    position: absolute;
    width: 70vw;
    top: 60vw;
    z-index: -1;
    right: 0;
  }
  header{
    padding: 0;
    left: 0;
  }
  main{
    margin-top: 50px;
  }
  .moreBox .btn {
    font-size: 12px;
    height: 8vw;
    line-height: 8vw;
    padding: 0 5vw;
  }
  .moreBox .icon {
    font-size: 12px;
    height: 8vw;
    line-height: 8vw;
    padding: 0 3vw;
  }
  .index .f1 {
    height: 80vw;
  }
  .index .f1 .txt {
    left: 5vw;
    bottom: 5vw;
    line-height: 1.2;
  }
  .index .f2 {
    height: auto;
    margin-top: 0;
    padding: 10vw 5vw;
  }
  .index .f2 .text {
    position: relative;
    left: inherit;
    top: inherit;
    transform: inherit;
  }
  .index .f2 .img {
    width: 100%;
    position: relative;
    left: inherit;
    bottom: inherit;
    margin: 5vw auto;
  }
  .index .f2 .img2 {
    width: 100%;
    position: relative;
    left: inherit;
    right: inherit;
    bottom: inherit;
    margin: 0 auto;
  }
  .index .f2 .text .tit {
    font-size: 20px;
  }
  .index .f2 .text .des {
    width: 100%;
    font-size: 14px;
    margin: 3vw auto;
  }
  .index .f2 .text .info {
    font-size: 16px;
  }
  .index .f3 {
    width: 100%;
    height: auto;
    display: block;
    padding: 5vw;
  }
  .index .f3 .left {
    width: 100%;
    padding: 0;
  }
  .index .f3 .left .tit {
    font-size: 20px;
  }
  .index .f3 .left .year {
    font-size: 18px;
  }
  .index .f3 .left .st {
    font-size: 18px;
  }
  .index .f3 .left .imgBox {
    display: none;
  }
  .index .f3 .right {
    width: 100%;
    flex-wrap: wrap;
    padding-top: 0;
    gap: 3vw;
    margin-top: 5vw;
  }
  .index .f3 .right .imgBox {
    width: 48%;
    height: 60vw;
    flex-shrink: inherit;
  }
  .index .f3 .right .imgBox .img {
    transform: inherit;
  }
  .index .f4 {
    position: relative;
    transform: inherit;
    top: inherit;
    left: inherit;
    padding: 0;
    margin-top: 10vw;
    border-radius: 1vw;
    overflow: hidden;
    pointer-events: all;
  }
  .index .f4 .f4Video {
    height: 50vw;
  }
  .index .f4 .f4Video .playBox {
    width: 15vw;
    height: 15vw;
  }
  .index .f4 .f4Video .playBox i {
    font-size: 5vw;
  }
  .index .f5 {
    height: auto;
    padding: 10vw 5vw;
    display: block;
  }
  .index .f5 .center {
    width: 100%;
  }
  .index .f5 .center .text .tit {
    font-size: 20px;
  }
  .index .f5 .center .text .des {
    width: 100%;
    font-size: 14px;
  }
  .index .f6 {
    padding: 10vw 5vw;
  }
  .index .f6 .tit {
    font-size: 20px;
  }
  .index .f6 .f6Box {
    flex-wrap: wrap;
  }
  .index .f6 .f6Box .item:nth-child(1) {
    margin-left: 26%;
  }
  .index .f6 .f6Box .item {
    width: 48%;
    height: 65vw;
    border-radius: 1vw;
    margin-top: 3vw;
    padding: 3vw;
  }
  .index .f6 .f6Box .item .logos {
    height: 8vw;
  }
  .index .f6 .f6Box .item .logos img {
    height: 8vw;
  }
  .index .f6 .f6Box .item:nth-child(2) .logos img{
    height: 13vw;
  }
  .index .f6 .f6Box .item .txt {
    padding: 0 3vw;
    bottom: 3vw;
  }
  .index .f6 .f6Box .item .txt .t {
    font-size: 16px;
  }
  .index .f6 .f6Box .item .txt .d {
    font-size: 14px;
  }
  .index .f6 .f6Box .item .txt .moreBox {
    opacity: 1;
    margin-top: 2vw;
    height: 8vw;
    justify-content: center;
    display: flex;
  }
  .index .f6 .f6Box .item:hover .txt {
    bottom: 3vw;
  }
  .index .f6 .f6Box .item:hover .txt .moreBox {
    height: 8vw;
  }
  .index .f7 {
    padding: 10vw 5vw;
    display: block;
  }
  .index .f7 .left {
    width: 100%;
  }
  .index .f7 .left .circle {
    height: 75vw;
  }
  .index .f7 .left .cat {
    top: -15vw;
  }
  .index .f7 .left .catItem .its {
    font-size: 12px;
    padding: 1vw 2vw;
  }
  .index .f7 .left .catItem .its:nth-child(1) {
    left: 56vw;
    top: -1vw;
  }
  .index .f7 .left .catItem .its:nth-child(2) {
    left: 6vw;
    top: 12vw;
  }
  .index .f7 .left .catItem .its:nth-child(3) {
    left: 54vw;
    top: 21vw;
  }
  .index .f7 .left .catItem .its:nth-child(4) {
    left: 2vw;
    top: 43vw;
  }
  .index .f7 .left .catItem .its:nth-child(5) {
    left: 52vw;
    top: 52vw;
  }
  .index .f7 .left .playBox {
    width: 20vw;
    height: 20vw;
  }
  .index .f7 .left .playBox i {
    font-size: 7vw;
  }
  .videoBoxs .videos {
    width: 90%;
    padding: 5px;
  }
  .videoBoxs .videos .close {
    font-size: 14px;
    top: -7vw;
  }
  .index .f7 .right {
    width: 100%;
    margin-top: 10vw;
    padding: 5vw;
  }
  .index .f7 .right .tit {
    font-size: 20px;
    padding-left: 3vw;
  }
  .index .f7 .right .tit::before {
    height: 4.5vw;
    top: 1.3vw;
  }
  .index .f7 .right .its .it {
    margin-top: 5vw;
  }
  .index .f7 .right .its .it .t {
    font-size: 14px;
  }
  .index .f7 .right .its .it .d {
    font-size: 12px;
  }
  .index .f7 .right .des {
    padding-top: 5vw;
    margin-top: 5vw;
    font-size: 14px;
  }
  footer .footer {
    padding: 5vw;
    height: auto;
    border-radius: 8vw;
    background-position: left;
    background-size: cover !important;
  }
  footer .footer .footerHead .logo {
    width: 20vw;
  }
  footer .footer .footerHead .nav {
    display: none;
  }
  footer .footer .footerCenter {
    display: block;
  }
  footer .footer .footerCenter .emailBox .email .t {
    font-size: 14px;
  }
  footer .footer .footerCenter .emailBox .email .d {
    font-size: 14px;
  }
  footer .footer .footerCenter .emailBox .des {
    font-size: 12px;
  }
  footer .footer .footerCenter .openimg {
    margin-left: 0;
    margin-top: 5vw;
  }
  footer .footer .footerCenter .openimg .tit {
    font-size: 14px;
    padding: 1vw 3vw 1vw 2vw;
  }
  footer .footer .footerCenter .openimg .tit img {
    width: 4.2vw;
  }
  footer .footer .footerCenter .openimg .openimgBox {
    margin-top: 3vw;
  }
  footer .footer .footerCenter .openimg .openimgBox .its:nth-child(1) .it {
    font-size: 14px;
    padding-bottom: 2vw;
  }
  footer .footer .footerCenter .openimg .openimgBox .its {
    margin-top: 2vw;
  }
  footer .footer .footerCenter .openimg .openimgBox .its .it {
    font-size: 12px;
  }
  footer .footer .footerCenter .openimg .des {
    margin-top: 5vw;
  }
  footer .footer .footerCenter .openimg .des .t {
    font-size: 16px;
  }
  footer .footer .footerCenter .openimg .des .d {
    font-size: 14px;
  }
  footer .footer .footerBottom .info {
    font-size: 12px;
    margin-top: 10px;
  }
  footer .footer .footerBottom {
    display: block;
  }
  footer .footer .footerBottom .firends {
    position: relative;
    right: initial;
    bottom: initial;
  }
  footer .footer .footerBottom .firends a {
    font-size: 12px;
  }
  footer .footer .footerBottom .firends a i {
    font-size: 3vw;
    margin-right: 3vw;
  }
  .bookabooth .f1 {
    display: block;
  }
  .bookabooth .f1 .left {
    width: 100%;
    display: block;
    position: relative;
    top: inherit;
    float: inherit;
  }
  .bookabooth .f1 .left .splitTextTit {
    width: 100%;
    font-size: 14vw;
  }
  .bookabooth .f1 .left .txt .t {
    font-size: 22px;
  }
  .bookabooth .f1 .left .txt .d {
    width: 100%;
    font-size: 16px;
  }
  .bookabooth .f1 .left .txt{
    margin-bottom: 10vw;
  }
  .bookabooth .f1 .right {
    width: 100%;
    display: block;
  }
  .bookabooth .f1 .right .bookaboothBox {
    padding: 5vw;
  }
  .bookabooth .f1 .right .bookaboothBox .tit {
    font-size: 18px;
  }
  .bookabooth .f1 .right .bookaboothBox .tit img {
    width: 5vw;
  }
  .bookabooth .f1 .right .bookaboothBox .txt {
    font-size: 12px;
    margin-top: 3vw;
  }
  .bookabooth .f1 .right .bookaboothBox .cat {
    width: 22vw;
    right: -4vw;
    top: 3.5vw;
    transform: scale(1.5);
    position: relative;
  }
  .bookabooth .f1 .right .bookaboothBox .cat img{
    width: 100%;
  }
  .bookabooth .f1 .right .bookaboothForm {
    margin-top: 5vw;
    padding: 1vw 3vw 3vw 3vw;
  }
  .bookabooth .f1 .right .bookaboothForm .tit {
    font-size: 16px;
    margin-top: 5vw;
  }
  .bookabooth .f1 .right .bookaboothForm .inputBox {
    margin-top: 3vw;
  }
  .bookabooth .f1 .right .bookaboothForm .inputBox .t {
    font-size: 14px;
  }
  .bookabooth .f1 .right .bookaboothForm .inputBox .inputs {
    padding: 0;
    margin-top: 2vw;
  }
  .bookabooth .f1 .right .bookaboothForm .inputBox .inputs input {
    font-size: 14px;
    padding: 2vw 3vw;
  }
  .bookabooth .f1 .right .bookaboothForm .checkItem .checkBox {
    width: 100% !important;
    font-size: 14px;
    margin-top: 2vw;
  }
  .bookabooth .f1 .right .bookaboothForm .checkItem .checkBox input {
    width: 3.5vw;
    height: 3.5vw;
  }
  .bookabooth .f1 .right .bookaboothForm .checkItem .checkBox label {
    margin-left: 1vw;
    top: -0.3vw;
  }
  .bookabooth .f1 .right .bookaboothForm .checkItem .checkBox .inputs {
    padding: 0;
    margin-top: 2vw;
  }
  .bookabooth .f1 .right .bookaboothForm .checkItem .checkBox .inputs input {
    font-size: 14px;
    padding: 2vw 3vw;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem .radioBox {
    padding: 3vw;
    margin-top: 3vw;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem .radioBox input {
    width: 3.5vw;
    height: 3.5vw;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label {
    margin-left: 2vw;
    top: -1vw;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .t {
    font-size: 15px;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .usd {
    font-size: 20px;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .txt .d {
    font-size: 14px;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem .radioBox label .txt .d2 {
    font-size: 12px;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem .info {
    font-size: 14px;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem2 .t {
    font-size: 14px;
  }
  .bookabooth .f1 .right .bookaboothForm .radioItem2 .radioBox {
    padding: 0;
  }
  .bookabooth .f1 .right .bookaboothForm .conditions {
    font-size: 13px;
  }
  .bookabooth .f1 .right .bookaboothForm .conditions input {
    width: 3.5vw;
    height: 3.5vw;
  }
  .conditionsModal .modalBox {
    width: 90%;
    height: 90vh;
  }
  .conditionsModal .modalBox .titBox {
    font-size: 18px;
    padding: 3vw;
  }
  .conditionsModal .modalBox .titBox .close {
    font-size: 14px;
  }
  .conditionsModal .modalBox .des {
    height: 75vh;
    padding: 3vw;
    font-size: 14px;
  }
  .conditionsModal .modalBox .btnBox {
    padding: 3vw;
  }
  .conditionsModal .modalBox .btnBox .closeBtn {
    font-size: 14px;
    padding: 2vw 5vw;
    margin-right: 3vw;
  }
  .conditionsModal .modalBox .btnBox .sureBtn {
    font-size: 14px;
    padding: 2vw 5vw;
  }
  .bookabooth .f1 .right .bookaboothForm .moreBox {
    margin: 5vw 0 0 0;
  }
  .products .f1 {
    padding: 10vw 5vw 5vw 5vw;
  }
  .products .f1 .splitTextTit {
    width: 100%;
    font-size: 14vw;
  }
  .products .f1 .tit {
    font-size: 22px;
  }
  .products .f1 .searchBox {
    margin-top: 5vw;
    padding: 3vw;
  }
  .products .f1 .searchBox .searchs {
    padding: 2vw 3vw;
  }
  .products .f1 .searchBox .searchs i {
    font-size: 14px;
  }
  .products .f1 .searchBox .searchs input {
    font-size: 14px;
    margin-left: 3vw;
  }
  .products .f1 .searchBox .groupsBox {
    margin-top: 3vw;
  }
  .products .f1 .searchBox .groupsBox .t {
    font-size: 14px;
  }
  .products .f1 .searchBox .groupsBox .groups {
    flex-wrap: wrap;
    gap: 1.5vw;
    margin-top: 3vw;
  }
  .products .f1 .searchBox .groupsBox .groups .group {
    font-size: 12px;
    padding: 1vw 2vw;
  }
  .products .f2 {
    padding: 5vw;
  }
  .products .f2 .titHead .t {
    font-size: 16px;
  }
  .products .f2 .titHead .d {
    font-size: 12px;
  }
  .products .f2 .f2Box {
    gap: 5vw;
    margin-top: 5vw;
  }
  .products .f2 .f2Box .item {
    width: 47%;
  }
  .products .f2 .f2Box .item .icon {
    width: 15vw;
  }
  .products .f2 .f2Box .item .img {
    height: 25vw;
    padding: 3.5vw;
  }
  .products .f2 .f2Box .item .img img {
    height: 18vw;
  }
  .products .f2 .f2Box .item .text {
    padding: 3vw 3vw 10vw 3vw;
    height: auto;
  }
  .products .f2 .f2Box .item .text .types{
    display: block;
  }
  .products .f2 .f2Box .item .text .types .its{
    gap: 5px;
  }
  .products .f2 .f2Box .item .text .types .t {
    font-size: 10px;
    padding: 0.5vw 2vw;
    display: inline-block;
  }
  .products .f2 .f2Box .item .text .types .d {
    font-size: 12px;
    margin-top: 5px;
  }
  .products .f2 .f2Box .item .text .name {
    font-size: 14px;
    margin: 3vw 0;
  }
  .products .f2 .f2Box .item .text .des {
    font-size: 12px;
  }
  .products .f2 .f2Box .item .text .more {
    font-size: 12px;
    margin-top: 2vw;
    padding-top: 2vw;
    bottom: 2vw;
  }
  .products .f3 {
    padding: 5vw;
    display: block;
  }
  .products .f3 .item {
    width: 100%;
    margin-top: 5vw;
    padding: 5vw;
  }
  .products .f3 .item .txt .name {
    font-size: 16px;
  }
  .products .f3 .item .txt .des {
    font-size: 14px;
  }
  .products .f3 .item .txt .btn {
    font-size: 14px;
    margin-top: 3vw;
    display: inline-block;
  }
  .products .f3 .item:nth-child(2) .txt .btn {
    padding: 1vw 2vw;
  }
  .products .f3 .item .txt .btn i {
    font-size: 16px;
  }
  .products .f3 .item .icon {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    position: absolute;
    right: 5vw;
    bottom: 5vw;
    font-size: 14px;
  }
  .products .f1 .searchBox .cat {
    width: 24vw;
    right: -5vw;
    top: -15vw;
  }
  .products .f4 {
    padding: 0 5vw 10vw 5vw;
    display: block;
  }
  .products .f4 .left {
    width: 100%;
    display: block;
    float: inherit;
    margin-right: 0;
    padding: 3vw;
  }
  .products .f4 .left .head .img {
    width: 20vw;
    padding: 0.5vw;
  }
  .products .f4 .left .head .txt {
    margin-left: 3vw;
  }
  .products .f4 .left .head .txt .types .type {
    font-size: 12px;
    padding: 0.5vw 2vw;
    margin-right: 1vw;
  }
  .products .f4 .left .head .txt .name {
    font-size: 16px;
    margin: 2vw 0;
  }
  .products .f4 .left .head .txt .address {
    font-size: 12px;
  }
  .products .f4 .left .head .txt .address i {
    font-size: 12px;
  }
  .products .f4 .left .text {
    margin: 3vw 0;
  }
  .products .f4 .left .text .tit {
    font-size: 14px;
  }
  .products .f4 .left .text .des {
    max-height: 41vw;
    font-size: 12px;
  }
  .products .f4 .left .text .videos {
    margin-top: 3vw;
    height: 45vw;
  }
  .products .f4 .left .text .videos .play {
    width: 15vw;
    height: 15vw;
    line-height: 15vw;
    font-size: 18px;
  }
  .products .f4 .left .contact .tit {
    font-size: 14px;
  }
  .products .f4 .left .contact .its {
    margin-top: 2vw;
  }
  .products .f4 .left .contact .its .icon {
    font-size: 14px;
  }
  .products .f4 .left .contact .its .it {
    margin-left: 3vw;
  }
  .products .f4 .left .contact .its .it .t {
    font-size: 12px;
  }
  .products .f4 .left .contact .its .it .d {
    font-size: 12px;
  }
  .products .f4 .left .followUs .tit {
    font-size: 14px;
  }
  .products .f4 .left .followUs .follow .icon {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 14px;
  }
  .products .f4 .right {
    width: 100%;
    margin-top: 5vw;
    gap: 5vw;
  }
  .products .f4 .right .item {
    width: 47%;
    height: auto;
    margin-bottom: 0;
  }
  .products .f4 .right .item .imgBox {
    height: 30vw;
  }
  .products .f4 .right .item .text {
    padding: 3vw;
  }
  .products .f4 .right .item .text .t {
    font-size: 14px;
  }
  .products .f4 .right .item .text .d {
    font-size: 12px;
  }
  .hallPlan .f1 {
    padding: 10vw 5vw 5vw 5vw;
  }
  .hallPlan .f1 .splitTextTit {
    width: 100%;
    font-size: 14vw;
  }
  .hallPlan .f1 .tit {
    font-size: 22px;
  }
  .hallPlan .f1 .f1Box {
    margin-top: 3vw;
    display: block;
  }
  .hallPlan .f1 .f1Box .item {
    width: 100%;
    margin-top: 5vw;
  }
  .hallPlan .f1 .f1Box .item .name {
    font-size: 14px;
  }
  .hallPlan .f2 {
    height: 50vw;
  }
  .hallPlan .f2 .txt .icon {
    font-size: 14px;
  }
  .hallPlan .f2 .txt .icon img {
    width: 12vw;
  }
  .hallPlan .f2 .txt .moreBox {
    margin: 5vw auto;
  }
  .visitor .f1 {
    padding: 10vw 5vw 5vw 5vw;
  }
  .visitor .f1 .splitTextTit {
    width: 100%;
    font-size: 14vw;
  }
  .visitor .f1 .tit {
    font-size: 22px;
  }
  .visitor .f1 .f1Box {
    display: block;
  }
  .visitor .f1 .f1Box .left {
    width: 100%;
  }
  .visitor .f1 .f1Box .left .t {
    font-size: 16px;
  }
  .visitor .f1 .f1Box .left .d {
    font-size: 14px;
  }
  .visitor .f1 .f1Box .left .info {
    font-size: 14px;
  }
  .visitor .f1 .f1Box .left .info img {
    width: 5vw;
  }
  .visitor .f1 .f1Box .center {
    width: 100%;
    height: 100vw;
    margin: 10vw auto;
  }
  .visitor .f1 .f1Box .center .f1Swiper {
    width: 70vw;
    height: 100vw;
    border-radius: 5vw;
  }
  .visitor .f1 .f1Box .center .f1Swiper .t {
    font-size: 14px;
    bottom: 3vw;
  }
  .visitor .f1 .f1Box .center .f1Swiper .t::before {
    width: 1vw;
    height: 1vw;
    left: -2.7vw;
    top: 1.6vw;
  }
  .visitor .f1 .f1Box .right {
    width: 100%;
  }
  .visitor .f1 .f1Box .right .tits {
    padding-bottom: 3vw;
  }
  .visitor .f1 .f1Box .right .tits .t {
    font-size: 16px;
  }
  .visitor .f1 .f1Box .right .tits .d {
    font-size: 20px;
  }
  .visitor .f1 .f1Box .right .its {
    padding: 3vw 0;
  }
  .visitor .f1 .f1Box .right .its .t {
    font-size: 16px;
  }
  .visitor .f1 .f1Box .right .its .d {
    font-size: 22px;
  }
  .visitor .f2 {
    padding: 10vw 5vw;
    display: block;
  }
  .visitor .f2 .left {
    width: 100%;
    display: block;
    float: inherit;
    top: inherit;
    position: relative;
    margin-bottom: 10vw;
  }
  .visitor .f2 .left .txt .t {
    font-size: 22px;
  }
  .visitor .f2 .left .txt .d {
    width: 100%;
    font-size: 16px;
  }
  .visitor .f2 .right {
    width: 100%;
    display: block;
  }
  .visitor .f2 .right .bookaboothBox {
    padding: 5vw;
  }
  .visitor .f2 .right .bookaboothBox .tit {
    font-size: 18px;
  }
  .visitor .f2 .right .bookaboothBox .tit img {
    width: 5vw;
  }
  .visitor .f2 .right .bookaboothBox .txt {
    font-size: 12px;
    margin-top: 3vw;
  }
  .visitor .f2 .right .bookaboothBox .cat {
    width: 15vw;
    right: -4vw;
    top: 11.5vw;
    transform: scale(2);
    position: relative;
  }
  .visitor .f2 .right .bookaboothForm {
    margin-top: 5vw;
    padding: 1vw 3vw 3vw 3vw;
  }
  .visitor .f2 .right .bookaboothForm .tit {
    font-size: 16px;
    margin-top: 5vw;
  }
  .visitor .f2 .right .bookaboothForm .inputBox {
    margin-top: 3vw;
  }
  .visitor .f2 .right .bookaboothForm .inputBox .t {
    font-size: 14px;
  }
  .visitor .f2 .right .bookaboothForm .inputBox .inputs {
    padding: 0;
    margin-top: 2vw;
  }
  .visitor .f2 .right .bookaboothForm .inputBox .inputs input {
    font-size: 14px;
    padding: 2vw 3vw;
  }
  .visitor .f2 .right .bookaboothForm .checkItem .checkBox {
    width: 100% !important;
    font-size: 14px;
    margin-top: 2vw;
  }
  .visitor .f2 .right .bookaboothForm .checkItem .checkBox input {
    width: 3.5vw;
    height: 3.5vw;
  }
  .visitor .f2 .right .bookaboothForm .checkItem .checkBox label {
    margin-left: 1vw;
    /*top: -0.3vw;*/
  }
  .visitor .f2 .right .bookaboothForm .checkItem .checkBox .inputs {
    padding: 0;
    margin-top: 2vw;
  }
  .visitor .f2 .right .bookaboothForm .checkItem .checkBox .inputs input {
    font-size: 14px;
    padding: 2vw 3vw;
  }
  .visitor .f2 .right .bookaboothForm .radioItem .radioBox {
    padding: 3vw;
    margin-top: 3vw;
  }
  .visitor .f2 .right .bookaboothForm .radioItem .radioBox input {
    width: 3.5vw;
    height: 3.5vw;
  }
  .visitor .f2 .right .bookaboothForm .radioItem .radioBox label {
    margin-left: 0;
    font-size: 12px;
    /*top: -0.5vw;*/
  }
  .visitor .f2 .right .bookaboothForm .radioItem .radioBox label .t {
    font-size: 15px;
  }
  .visitor .f2 .right .bookaboothForm .radioItem .radioBox label .usd {
    font-size: 20px;
  }
  .visitor .f2 .right .bookaboothForm .radioItem .radioBox label .txt .d {
    font-size: 14px;
  }
  .visitor .f2 .right .bookaboothForm .radioItem .radioBox label .txt .d2 {
    font-size: 12px;
  }
  .visitor .f2 .right .bookaboothForm .radioItem .info {
    font-size: 14px;
  }
  .visitor .f2 .right .bookaboothForm .radioItem2 .t {
    font-size: 14px;
  }
  .visitor .f2 .right .bookaboothForm .radioItem2 .radioBox {
    width: 50%;
    padding: 0;
  }
  .visitor .f2 .right .bookaboothForm .conditions {
    font-size: 13px;
  }
  .visitor .f2 .right .bookaboothForm .conditions input {
    width: 3.5vw;
    height: 3.5vw;
  }
  .visitor .f2 .right .bookaboothForm .moreBox {
    margin: 5vw 0 0 0;
  }
  .visitor .f2 .right .bookaboothForm .tits {
    font-size: 15px;
    margin-top: 5vw;
  }
  .visitor .f2 .right .bookaboothForm .tits .addBtn {
    font-size: 14px;
  }
  .visitor .f2 .right .bookaboothForm .addInputList .addInput .deleteIcon {
    font-size: 14px;
  }
  .visitor .f2 .right .bookaboothForm .addInputList .addInput {
    padding-bottom: 5vw;
  }
  .visitor .f3 .tit {
    font-size: 22px;
  }
  .visitor .f3 .f3Box {
    display: block;
  }
  .visitor .f3 .f3Box .left {
    width: 100%;
    padding: 3vw;
    border-right: transparent;
    border-bottom: 1px dashed white;
  }
  .visitor .f3 .f3Box .left .tabBox {
    font-size: 16px;
  }
  .visitor .f3 .f3Box .left .itemBox .item .its {
    margin-top: 2vw;
  }
  .visitor .f3 .f3Box .left .itemBox .item .its .t {
    font-size: 14px;
  }
  .visitor .f3 .f3Box .left .itemBox .item .its .d {
    font-size: 12px;
  }
  .visitor .f3 .f3Box .right {
    width: 100%;
    padding: 3vw;
  }
  .visitor .f3 .f3Box .right .f3Swiper .swiper-slide {
    height: 40vw;
  }
  .visitor .f3 .cat {
    width: 40vw;
    left: inherit;
    top: -24vw;
    right: -13vw;
  }
  .visitor .f4 {
    padding: 10vw 5vw;
  }
  .visitor .f4 .tit {
    font-size: 22px;
  }
  .visitor .f4 .des {
    font-size: 14px;
  }
  .visitor .f4 .item {
    display: block;
  }
  .visitor .f4 .item .img {
    margin-top: 3vw;
  }
  .visitor .f4 .item .img:nth-child(2) {
    margin: 3vw 0;
  }
  .visitor .f4 .item .img img {
    height: auto;
  }
  .contact .f1 {
    padding: 10vw 5vw 5vw 5vw;
  }
  .contact .f1 .splitTextTit {
    width: 100%;
    font-size: 14vw;
  }
  .contact .f1 .f1Box {
    display: block;
  }
  .contact .f1 .f1Box .item {
    width: 100%;
    margin-top: 5vw;
  }
  .contact .f1 .f1Box .item .imgBox {
    width: 70vw;
    height: 60vw;
  }
  .contact .f1 .f1Box .item .textBox .name {
    font-size: 18px;
  }
  .contact .f1 .f1Box .item .textBox .des {
    font-size: 14px;
  }
  .contact .f1 .f1Box .item .textBox .its {
    margin: 3vw 0;
  }
  .contact .f1 .f1Box .item .textBox .its .it {
    font-size: 12px;
  }
  .contact .f1 .f1Box .item .textBox .its .it .icon {
    width: 5vw;
    height: 5vw;
    line-height: 5vw;
    margin-right: 3.5vw;
  }
  .contact .f1 .f1Box .item .textBox .its .it p {
    width: calc(100% - 5vw);
  }
  .contact .f1 .f1Box .item .textBox .qrcodeBox .qrcode {
    width: 18vw;
    font-size: 12px;
    margin-right: 3vw;
  }
  .contact .f2 {
    padding: 0 5vw 5vw 5vw;
  }
  .contact .f2 .tit {
    font-size: 22px;
  }
  .contact .f2 .f2Box {
    gap: 5vw;
    margin-top: 5vw;
  }
  .contact .f2 .f2Box .item {
    width: 47%;
  }
  .contact .f2 .f2Box .item .imgBox {
    height: 45vw;
  }
  .contact .f2 .f2Box .item .imgBox .qrcode .icon {
    width: 10vw;
    height: 10vw;
    line-height: 10vw;
    font-size: 18px;
  }
  .contact .f2 .f2Box .item .imgBox .qrcode .qrcodeImg {
    width: 32vw;
    left: -26.5vw;
    bottom: 1vw;
  }
  .contact .f2 .f2Box .item .textBox {
    padding: 3vw;
  }
  .contact .f2 .f2Box .item .textBox .name {
    font-size: 16px;
  }
  .contact .f2 .f2Box .item .textBox .phone {
    font-size: 12px;
    margin-top: 3vw;
  }
  .contact .f2 .f2Box .item .textBox .phone i {
    font-size: 14px;
    margin-right: 1vw;
  }
  .contact .f2 .f2Box .item .textBox .email {
    font-size: 12px;
    margin-top: 2vw;
  }
  .contact .f2 .f2Box .item .textBox .email i {
    font-size: 14px;
    margin-right: 1vw;
  }
  .news .f1 .splitTextTit {
    width: 100%;
    font-size: 14vw;
  }
  .news .f1 .f1Box {
    gap: 3vw;
  }
  .news .f1 .f1Box .item {
    width: 48%;
    height: 60vw;
    top: 0 !important;
  }
  .news .f1 .f1Box .item:nth-child(2n) {
    top: 5vw !important;
  }
  .news .f1 .f1Box .item .text {
    padding: 1vw;
    bottom: 3vw;
  }
  .news .f1 .f1Box .item .text .name {
    font-size: 14px;
  }
  .news .f1 .f1Box .item .text .its {
    margin-top: 2vw;
  }
  .news .f1 .f1Box .item .text .its .icon {
    width: 4vw;
  }
  .news .f1 .f1Box .item .text .its .it {
    font-size: 12px;
    padding: 1vw;
  }
  .gallery .f1 .splitTextTit {
    font-size: 14vw;
  }
  .gallery .f1 .des {
    width: 100%;
    font-size: 14px;
    margin: 5vw auto;
  }
  .gallery .f1 .yearBox .year {
    font-size: 14px;
    padding: 1vw 5vw;
  }
  .gallery .f1 .f1Box {
    column-count: 2;
  }
  .index .f5 .left{
    width: 100%;
    display: block;
  }
  .index .f5 .left .item:nth-child(1){
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
    margin-top: 3vw;
  }
  .index .f5 .left .item .img{
    width: 20vw;
    margin: 0 auto;
  }
  .gallery .f1 .f1Box .videos .play{
    width: 10vw;
    height: 10vw;
    line-height: 10vw;
    font-size: 16px;
  }
  .visitor{
    overflow: hidden;
  }
  .index .videoBoxs .videos{
    width: 90vw;
  }
  .gallery .f1 .f1Box .img{
    min-height: 17vw;
  }
  .index .f1 .imgBg{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0 0 2vw 2vw;
    overflow: hidden;
    background-size: cover !important;
  }
}
