.InfoBodys {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.InfoBodys > .InfoPage:first-child {
  margin-top: 60px;
}

.InfoBodys > .InfoPage {
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.InfoBodys > .InfoPage > .BigTitle {
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: exclusion;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  box-sizing: border-box;
  padding: 40px;
  min-height: 234px;
}

.InfoBodys > .InfoPage > .BigTitle > span {
  max-width: 1200px;
  width: 90%;
  min-width: 690px;
}

.InfoBodys > .InfoPage > .BigTitle > span:first-child {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 20px;
}

.InfoBodys > .InfoPage > .swiper {
  margin-top: 40px;
  max-width: 1240px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
.InfoPage > .swiper > .swiper-BigImage {
  aspect-ratio: 302/201;
  width: 48.55%;
  max-width: 604px;
  max-height: 402px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 1s ease;
}

.InfoPage > .swiper > .swiper-menu {
  aspect-ratio: 301/64;
  width: 48.55%;
  display: flex;
  flex-direction: column;
}

.swiper-menu > .menu-imageBox {
  width: 100%;
  display: flex;
  align-items: center;
}
.menu-imageBox > .menu-image {
  flex: 1;
  margin-left: 30px;
  aspect-ratio: 1/1;
  max-width: 128px;
  height: 100%;
  border-radius: 10px;
  background-size: auto 100%;
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.menu-imageBox > .menu-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: multiply;
  border-radius: 10px;
  background: linear-gradient(0deg, #555555 0%, rgba(85, 85, 85, 0) 44%);
}

.menu-imageBox > .menu-image > span {
  z-index: 6;
  margin-bottom: 10px;
}

.menu-imageBox > .menu-image:first-child {
  margin-left: 0;
}

.menu-image > .menu-Progress {
  position: absolute;
  width: 83.375%;
  z-index: 6;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
  transition: all 0.1s ease;
  background: transparent;
}

.menu-image > .menu-Progress > i {
  background: #f4bf1e;
  border-radius: 2px;
  height: 4px;
  transform: scaleX(0);
  transform-origin: 0;
  display: block;
}
.current > .menu-Progress > i {
  transition: transform 10s linear;
  transform: scaleX(1);
}

.menu-textBox {
  min-height: 90px;
  margin-top: 30px;
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  flex-direction: column;
}

.menu-textBox > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.swiper-menu > .menu-demoPanel {
  margin-top: 60px;
  display: flex;
}
.menu-demoPanel > span {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #f4bf1e;
}
.menu-demoPanel > .menu-demoBox {
  margin-left: 10px;
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: #cccccc;
  font-size: 16px;
  line-height: 30px;
}
.menu-demoBox > span {
  box-sizing: border-box;
  margin-top: 10px;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
  background: linear-gradient(90deg, #333333 0%, rgba(51, 51, 51, 0) 100%);
}
.menu-demoBox > span:first-child {
  margin: 0;
}

.changeButtonBox {
  box-sizing: border-box;
  padding-top: 45px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}

.changeButtonBox > .button-Pic {
  margin-left: 20px;
  min-height: 36px;
  height: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.changeButtonBox > .button-Pic:first-child {
  margin: 0;
}

.changeButtonBox > .button-Pic:hover {
  aspect-ratio: 11/10;
}

@media screen and (max-width: 1240px) {
  .InfoBodys > .InfoPage:first-child {
    margin-top: 20px;
  }
  .InfoBodys > .InfoPage {
    margin-bottom: 20px;
  }

  .InfoBodys > .InfoPage > .swiper {
    margin-top: 20px;
    max-width: 1240px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
  }
  .InfoPage > .swiper > .swiper-BigImage {
    aspect-ratio: 302/201;
    width: 100%;
    max-width: unset;
    max-height: unset;
    margin-bottom: 20px;
  }

  .InfoPage > .swiper > .swiper-menu {
    aspect-ratio: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .swiper-menu > .menu-imageBox {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .menu-imageBox > .menu-image {
    margin-left: 20px;
    max-width: 172px;
    height: 100%;
  }

  .menu-textBox {
    border-radius: 10px 10px 0 0;
    min-height: 120px;
    margin-top: 20px;
    background-color: #2d2d2d;
  }
  .menu-textBox > span {
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }

  .swiper-menu > .menu-demoPanel {
    box-sizing: border-box;
    margin-top: unset;
    padding-top: 20px;
    padding-left: 30px;
    background-color: #2d2d2d;
    display: flex;
  }

  .changeButtonBox {
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    background-color: #2d2d2d;
    justify-content: start;
  }
}
