@charset "UTF-8";
.linkList .Img img, .facList .facItem, .newsArea .plusArrow, .roomArea .Txt .btnBox, .roomArea .Txt .text, .roomArea .Txt .title, .roomArea .Txt .classTitle, .popWin .close::before, .popWin .close::after, .popWin .close {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #2e2e2e;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 88vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  width: 46px;
  height: 46px;
  background-color: #000;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1181px) {
  .popWin .close:hover::before {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .popWin .close:hover::after {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin.show .inner {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.outerWrap {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  background-color: #2e2e2e;
  padding-top: 0px;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .outerWrap {
    padding-bottom: calc(55px + env(safe-area-inset-bottom));
  }
}
@media (max-width: 1180px) {
  .outerWrap {
    padding-top: 65px;
  }
}

.bgImg {
  background-image: url("../images/homeBg.png");
  background-repeat: no-repeat;
  background-position: top left;
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
@media (max-width: 640px) {
  .bannerArea .bannerBox {
    height: calc(100vh - 65px);
  }
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .arrow {
  position: absolute;
  z-index: 2;
}
.bannerArea .arrow .arrowIcon {
  width: 65px;
  height: 50px;
  fill: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 640px) {
  .bannerArea .arrow .arrowIcon {
    width: 50px;
    height: 35px;
  }
}
.bannerArea .arrow.arrowPrev {
  left: -5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .arrow.arrowPrev .arrowIcon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 640px) {
  .bannerArea .arrow.arrowPrev {
    left: -15px;
  }
}
.bannerArea .arrow.arrowNext {
  right: -5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .arrow.arrowNext .arrowIcon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 640px) {
  .bannerArea .arrow.arrowNext {
    right: -15px;
  }
}
@media (min-width: 1181px) {
  .bannerArea .arrow:hover {
    cursor: pointer;
  }
  .bannerArea .arrow:hover .arrowIcon {
    -webkit-animation: arrowEnlarge 0.9s ease-in-out infinite;
            animation: arrowEnlarge 0.9s ease-in-out infinite;
    fill: rgba(255, 255, 255, 0.5);
  }
}
.bannerArea .slick-current .bannerItem img {
  -webkit-animation: enlarge 10s ease-in-out forwards;
          animation: enlarge 10s ease-in-out forwards;
}
.bannerArea .bannerItem .Txt {
  width: 100%;
  padding: 110px 20px 85px 205px;
  margin-bottom: 75px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.bannerArea .bannerItem .Txt .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 880px;
}
.bannerArea .bannerItem .Txt .title {
  position: relative;
  display: block;
  width: auto;
  color: #fff;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1.3px;
  padding-bottom: 22px;
  margin-bottom: 13px;
  margin-left: 3px;
  opacity: 0;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 5px;
  }
}
.bannerArea .bannerItem .Txt .title::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.bannerArea .bannerItem .Txt .title::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-animation: moveRight 3s infinite linear;
          animation: moveRight 3s infinite linear;
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 66px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.5px;
  margin-top: 10px;
  opacity: 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 35px;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .subtitle {
    letter-spacing: 0;
  }
}
@media (max-width: 470px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 26px;
  }
}
@media (max-width: 380px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 22px;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
  }
}
.bannerArea .bannerItem .Txt .btnBox {
  opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  bottom: 150px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 5px);
  z-index: 1;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::after {
  content: "";
  border: 1px dashed #fff;
  border-radius: 50%;
  z-index: 1;
  width: 75%;
  height: 75%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 20px 85px 100px;
    margin-bottom: 20px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 60px 85px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 25px 85px;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 25px 110px;
  }
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Img {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bannerArea .bannerItem .Img img {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Img {
    height: calc(100vh - 65px);
  }
}
.bannerArea .bannerItem .cover {
  background-color: rgb(17, 17, 17);
  opacity: 0.302;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.bannerArea .bannerItem .bannerVideo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bannerArea .bannerItem .bannerVideo iframe {
  width: 100%;
  height: 100%;
}
.bannerArea .slick-current .Txt .title {
  -webkit-animation: slideUpAnimation 0.8s ease-in-out forwards;
          animation: slideUpAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .subtitle {
  -webkit-animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
  -webkit-animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .btnBox {
  -webkit-animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .videoBtn::after {
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.bannerArea .slick-arrow {
  top: 47%;
  left: auto;
}
.bannerArea .slick-arrow.slick-prev {
  right: 110px;
}
.bannerArea .slick-arrow.slick-next {
  right: 50px;
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  padding: 5px 20px 0;
  bottom: 17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 20px;
  z-index: 2;
}
.bannerArea .scrollDown .scrollDownIcon {
  display: block;
  width: 60px;
  height: 40px;
  fill: #fff;
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.9px;
}
@media (min-width: 1181px) {
  .bannerArea .scrollDown:hover .scrollDownIcon {
    -webkit-animation: scrolldown 0.8s infinite ease-in-out;
            animation: scrolldown 0.8s infinite ease-in-out;
  }
}
.bannerArea .slick-dots {
  bottom: 50%;
  right: 50px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.picTextArea .wrap {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.picTextArea .picTextBox {
  width: 100%;
  max-width: 100%;
}
.picTextArea .picText:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1180px) {
  .picTextArea .picText:not(:first-child) {
    position: relative;
  }
}
.picTextArea .picText {
  width: 100%;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.picTextArea .picText .Txt .top {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.2s ease-in-out;
  transition: all 0.5s 0.2s ease-in-out;
}
.picTextArea .picText .Txt .bottom {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.4s ease-in-out;
  transition: all 0.5s 0.4s ease-in-out;
}
.picTextArea .picText:first-child {
  opacity: 1;
}
.picTextArea .picText.show {
  opacity: 1;
}
.picTextArea .picText.show .Txt .top {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.picTextArea .picText.show .Txt .bottom {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.picTextArea .picText:nth-child(even) .Txt {
  left: 200px;
  top: 372px;
}
@media (max-width: 1280px) {
  .picTextArea .picText:nth-child(even) .Txt {
    left: 0;
    margin-left: 30px;
    top: auto;
    bottom: 125px;
  }
}
@media (max-width: 768px) {
  .picTextArea .picText:nth-child(even) .Txt {
    max-width: 100%;
    margin-left: 20px;
  }
}
.picTextArea .picText:nth-child(odd) .Txt {
  left: 57%;
  top: 328px;
}
@media (max-width: 1440px) {
  .picTextArea .picText:nth-child(odd) .Txt {
    left: 52%;
  }
}
@media (max-width: 1280px) {
  .picTextArea .picText:nth-child(odd) .Txt {
    left: 0;
    margin-left: 30px;
    top: auto;
    bottom: 125px;
  }
}
@media (max-width: 768px) {
  .picTextArea .picText:nth-child(odd) .Txt {
    margin-left: 0;
    padding: 0 20px;
    max-width: 100%;
  }
}
.picTextArea .picTextLink {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.picTextArea .Img {
  width: 100%;
}
.picTextArea .Img .cover {
  background-color: rgb(17, 17, 17);
  opacity: 0.302;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.picTextArea .Img img {
  display: block;
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
}
.picTextArea .Txt {
  position: absolute;
  max-width: 100%;
}
.picTextArea .Txt .titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .picTextArea .Txt .titleBox {
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .picTextArea .Txt .titleBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.picTextArea .Txt .number {
  font-size: 111px;
  font-weight: 400;
  line-height: 128px;
  color: #c9c9c9;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1180px) {
  .picTextArea .Txt .number {
    font-size: 85px;
    line-height: 1.2;
  }
}
@media (max-width: 640px) {
  .picTextArea .Txt .number {
    line-height: 1;
    font-size: 87px;
  }
}
@media (max-width: 460px) {
  .picTextArea .Txt .number {
    line-height: 0.5;
    font-size: 68px;
    width: auto;
  }
}
@media (max-width: 400px) {
  .picTextArea .Txt .number {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 5px;
  }
}
.picTextArea .Txt .right {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 20px;
  margin-top: -10px;
}
@media (max-width: 768px) {
  .picTextArea .Txt .right {
    margin-left: 10px;
  }
}
@media (max-width: 460px) {
  .picTextArea .Txt .right {
    margin-top: 0;
    margin-left: 5px;
  }
}
@media (max-width: 400px) {
  .picTextArea .Txt .right {
    margin-left: 0;
  }
}
.picTextArea .Txt .title {
  font-size: 60px;
  font-weight: 500;
  line-height: 69px;
  letter-spacing: 2px;
  color: #fff;
  width: 100%;
  text-align: start;
  margin-bottom: 5px;
}
@media (max-width: 1180px) {
  .picTextArea .Txt .title {
    line-height: 50px;
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .picTextArea .Txt .title {
    line-height: 40px;
    font-size: 40px;
    letter-spacing: 1.3px;
  }
}
@media (max-width: 460px) {
  .picTextArea .Txt .title {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 0;
  }
}
.picTextArea .Txt .subtitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  width: 100%;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 1.2px;
  padding-left: 5px;
}
@media (max-width: 1180px) {
  .picTextArea .Txt .subtitle {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .picTextArea .Txt .subtitle {
    font-size: 17px;
    padding-left: 0px;
  }
}
.picTextArea .Txt .subtitleLine {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-left: 12px;
  margin-right: 8px;
}
.picTextArea .Txt .bottom {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .picTextArea .Txt .bottom {
    margin-left: 0;
  }
}
.picTextArea .Txt .textEditor {
  font-size: 19px;
  font-weight: 300;
  color: #fff;
  max-width: 605px;
  letter-spacing: 0.2px;
}
@media (max-width: 768px) {
  .picTextArea .Txt .textEditor {
    font-size: 14px;
  }
}
.picTextArea .scrollDown {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.picTextArea .scrollDown .scrollDownIcon {
  display: block;
  width: 60px;
  height: 40px;
  fill: #fff;
}
.picTextArea .scrollDown span {
  display: block;
}
.picTextArea .scrollDown span.text {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.9px;
}

.aboutArea {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .aboutArea {
    padding: 60px 0;
  }
}
.aboutArea .aboutBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 960px) {
  .aboutArea .aboutBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.aboutArea .Img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 680px;
}
.aboutArea .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 1440px) {
  .aboutArea .Img {
    -ms-flex-negative: initial;
        flex-shrink: initial;
  }
}
@media (max-width: 960px) {
  .aboutArea .Img {
    margin: 0 auto 30px;
  }
}
.aboutArea .Txt {
  width: 100%;
  margin-bottom: 40px;
  padding-left: 70px;
}
.aboutArea .Txt .titleBox {
  margin-bottom: 0;
}
.aboutArea .Txt .btnBox {
  margin-top: 40px;
}
@media (max-width: 1440px) {
  .aboutArea .Txt {
    padding-left: 50px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .Txt {
    padding-left: 30px;
  }
}
@media (max-width: 960px) {
  .aboutArea .Txt {
    width: 100%;
    max-width: 680px;
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .aboutArea .Txt .btnBox {
    margin-top: 20px;
  }
}

.roomArea {
  padding: 50px 0 100px;
  background-color: #efefef;
}
@media (max-width: 768px) {
  .roomArea {
    padding: 40px 0 60px;
  }
}
.roomArea .roomBox {
  padding-bottom: 20px;
}
.roomArea .roomList {
  padding-top: 20px;
}
@media (max-width: 768px) {
  .roomArea .roomList {
    padding-top: 10px;
  }
}
.roomArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1180px) {
  .roomArea .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.roomArea .Img {
  width: 60%;
}
.roomArea .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 1180px) {
  .roomArea .Img {
    width: 100%;
    max-width: 630px;
    margin: 0 auto 10px;
  }
}
.roomArea .Txt {
  width: 40%;
  padding: 0px 0px 30px 75px;
}
@media (max-width: 1180px) {
  .roomArea .Txt {
    width: 100%;
    max-width: 630px;
    padding: 0 0 20px;
  }
}
.roomArea .Txt .classTitle {
  font-size: 18px;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media (max-width: 1180px) {
  .roomArea .Txt .classTitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .roomArea .Txt .classTitle {
    font-size: 15px;
  }
}
.roomArea .Txt .title {
  opacity: 0;
  padding-bottom: 10px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
@media (max-width: 768px) {
  .roomArea .Txt .title {
    padding-bottom: 5px;
  }
}
.roomArea .Txt .title a {
  display: block;
  font-size: 28px;
  font-weight: 400;
}
@media (max-width: 1180px) {
  .roomArea .Txt .title a {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .roomArea .Txt .title a {
    font-size: 22px;
  }
}
.roomArea .Txt .text {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  padding-top: 15px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .roomArea .Txt .text {
    padding-top: 10px;
  }
}
.roomArea .Txt .btnBox {
  margin-top: 30px;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.roomArea .Txt.show .classTitle,
.roomArea .Txt.show .title,
.roomArea .Txt.show .text,
.roomArea .Txt.show .btnBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.newsArea {
  position: relative;
  padding: 190px 0 55px;
}
@media (max-width: 1536px) {
  .newsArea {
    padding: 120px 0 55px;
  }
}
@media (max-width: 768px) {
  .newsArea {
    padding: 75px 0 55px;
  }
}
@media (max-width: 640px) {
  .newsArea {
    padding: 60px 0 55px;
  }
}
@media (max-width: 480px) {
  .newsArea {
    padding: 50px 0 35px;
  }
}
.newsArea .wrap {
  max-width: 1724px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsArea .wrapMax {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 190px 0 50px;
  top: 0;
  pointer-events: none;
}
@media (max-width: 414px) {
  .newsArea .wrapMax {
    margin: 150px 0 50px;
  }
}
.newsArea .wrap > .btnBox {
  display: none;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .btnBox {
    display: block;
  }
}
@media (max-width: 768px) {
  .newsArea .wrap > .btnBox .btn::after {
    content: "";
    position: absolute;
    right: 24px;
  }
}
.newsArea .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 250px;
  margin-top: 10px;
}
@media (max-width: 1180px) {
  .newsArea .btnBox {
    display: none;
  }
}
.newsArea .btnBox .btn {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsArea .btnBox .btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 48%;
  right: 29px;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 1;
}
@media (min-width: 1181px) {
  .newsArea .btnBox .btn:hover .btnIcon {
    background-color: #ffffff;
    border-radius: 50%;
    fill: #ffffff;
  }
  .newsArea .btnBox .btn:hover::after {
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    -webkit-transform: translateY(-25%) rotate(-135deg);
            transform: translateY(-25%) rotate(-135deg);
    top: 47%;
    right: 28px;
  }
  .newsArea .btnBox .btn:hover .btnIcon .arrowBtn {
    opacity: 0;
  }
  .newsArea .btnBox .btn:hover .hoverImg {
    opacity: 1;
  }
}
.newsArea .btnBox .btnIcon {
  position: relative;
  width: 50px;
  height: 50px;
  top: -2px;
  right: -2px;
  margin-right: -10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsArea .btnBox .hoverImg {
  position: absolute;
  top: 5px;
  right: 3px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation: around 3s infinite linear;
          animation: around 3s infinite linear;
}
.newsArea .topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 30px;
  width: 100%;
  max-width: 1500px;
  border-bottom: 1px solid #434343;
}
.newsArea .topBox .Txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1180px) {
  .newsArea .topBox .Txt {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.newsArea .topBox .titleBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 555px;
  text-align: start;
  margin-bottom: 0;
}
@media (max-width: 1180px) {
  .newsArea .topBox .titleBox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
}
.newsArea .topBox .titleBox .title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 2.2px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgb(137, 137, 137);
}
.newsArea .topBox .titleBox .title::after {
  content: "";
  position: absolute;
  position: absolute;
  display: block;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 1px;
  background-color: #fff;
  -webkit-animation: moveLeftRight 3s infinite ease-in-out;
          animation: moveLeftRight 3s infinite ease-in-out;
}
@media (max-width: 1180px) {
  .newsArea .topBox .titleBox .title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 450px) {
  .newsArea .topBox .titleBox .title {
    padding-bottom: 15px;
  }
}
.newsArea .topBox .titleBox .subtitle {
  color: #fff;
  font-size: 62px;
  font-weight: 500;
  line-height: 69px;
  letter-spacing: 1.3px;
  padding-top: 20px;
}
@media (max-width: 1366px) {
  .newsArea .topBox .titleBox .subtitle {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .newsArea .topBox .titleBox .subtitle {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .newsArea .topBox .titleBox .subtitle {
    line-height: 1.1;
  }
}
@media (max-width: 450px) {
  .newsArea .topBox .titleBox .subtitle {
    font-size: 28px;
    padding-top: 15px;
  }
}
.newsArea .topBox .informationBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1180px) {
  .newsArea .topBox .informationBox {
    width: 100%;
  }
}
.newsArea .topBox .informationBox .informationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1180px) {
  .newsArea .topBox .informationBox .informationList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.newsArea .topBox .informationBox .informationItem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 200px;
}
.newsArea .topBox .informationBox .informationItem::after {
  content: "";
  position: absolute;
  display: block;
  top: 4.5%;
  right: 0;
  width: 1px;
  height: 86%;
  background-color: rgb(137, 137, 137);
}
.newsArea .topBox .informationBox .informationItem:first-child::before {
  content: "";
  position: absolute;
  display: block;
  top: 4.5%;
  left: 0;
  width: 1px;
  height: 86%;
  background-color: rgb(137, 137, 137);
}
.newsArea .topBox .informationBox .informationItem .title {
  font-size: 19px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.9px;
  color: #b5b5b5;
}
@media (max-width: 480px) {
  .newsArea .topBox .informationBox .informationItem .title {
    font-size: 13px;
  }
}
.newsArea .topBox .informationBox .informationItem .information {
  position: relative;
  font-size: 62px;
  font-weight: 500;
  line-height: 69px;
  letter-spacing: 0;
  color: #fff;
  padding: 10px 0 5px;
}
@media (max-width: 768px) {
  .newsArea .topBox .informationBox .informationItem .information {
    font-size: 52px;
  }
}
@media (max-width: 480px) {
  .newsArea .topBox .informationBox .informationItem .information {
    line-height: 1.1;
    font-size: 35px;
    padding: 5px 0;
  }
}
.newsArea .topBox .informationBox .informationItem .information.plus::after {
  content: "";
  position: absolute;
  content: "+";
  position: absolute;
  top: -15px;
  right: -25px;
  font-size: 23px;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 480px) {
  .newsArea .topBox .informationBox .informationItem .information.plus::after {
    top: -3px;
    right: -17px;
    font-size: 19px;
  }
}
.newsArea .topBox .informationBox .informationItem .unit {
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.4px;
  color: #888888;
}
@media (max-width: 480px) {
  .newsArea .topBox .informationBox .informationItem .unit {
    font-size: 13px;
  }
}
.newsArea .newsBox {
  position: relative;
  padding: 20px;
  width: 100%;
}
@media (max-width: 414px) {
  .newsArea .newsBox {
    padding: 20px 0;
  }
}
.newsArea .slick-list {
  padding: 10px 0;
}
@media (max-width: 1180px) {
  .newsArea .slick-list {
    padding: 0;
  }
}
.newsArea .slick-slide:not(.slick-active) {
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1181px) {
  .newsArea .slick-current .outerFrame:hover {
    -webkit-transform: rotate(-4.4deg);
            transform: rotate(-4.4deg);
  }
}
.newsArea .currentFirst .newsItem .item.newsFocus .outerFrame {
  -webkit-animation: focusSwingLeft 0.6s ease-in-out;
          animation: focusSwingLeft 0.6s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.newsArea .currentFirst .newsItem .item.newsFocus .iconBox .favoriteIcon .default {
  opacity: 0;
}
.newsArea .currentFirst .newsItem .item.newsFocus .iconBox .favoriteIcon .hover {
  opacity: 1;
}
@media (min-width: 1181px) {
  .newsArea .currentFirst .newsItem:hover .iconBox .favoriteIcon .default {
    opacity: 0;
  }
  .newsArea .currentFirst .newsItem:hover .iconBox .favoriteIcon .hover {
    opacity: 1;
  }
}
.newsArea .currentSecond .newsItem .item.newsFocus .outerFrame {
  -webkit-animation: focusSwingRight 0.6s ease-in-out;
          animation: focusSwingRight 0.6s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.newsArea .currentSecond .newsItem .item.newsFocus .iconBox .bubblesIcon .default {
  opacity: 0;
}
.newsArea .currentSecond .newsItem .item.newsFocus .iconBox .bubblesIcon .hover {
  opacity: 1;
}
@media (min-width: 1181px) {
  .newsArea .currentSecond .newsItem:hover .outerFrame {
    -webkit-transform: rotate(4.4deg);
            transform: rotate(4.4deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .newsArea .currentSecond .newsItem:hover .iconBox .bubblesIcon .default {
    opacity: 0;
  }
  .newsArea .currentSecond .newsItem:hover .iconBox .bubblesIcon .hover {
    opacity: 1;
  }
}
.newsArea .currentThird .newsItem .item.newsFocus .outerFrame {
  -webkit-animation: focusSwingLeft 0.6s ease-in-out;
          animation: focusSwingLeft 0.6s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.newsArea .currentThird .newsItem .item.newsFocus .iconBox .airplaneIcon .default {
  opacity: 0;
}
.newsArea .currentThird .newsItem .item.newsFocus .iconBox .airplaneIcon .hover {
  opacity: 1;
}
@media (min-width: 1181px) {
  .newsArea .currentThird .newsItem:hover .outerFrame {
    -webkit-transform: rotate(-4.4deg);
            transform: rotate(-4.4deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .newsArea .currentThird .newsItem:hover .iconBox .airplaneIcon .default {
    opacity: 0;
  }
  .newsArea .currentThird .newsItem:hover .iconBox .airplaneIcon .hover {
    opacity: 1;
  }
}
.newsArea .arrow {
  position: absolute;
  top: 43%;
  z-index: 2;
  pointer-events: all;
}
@media (max-width: 480px) {
  .newsArea .arrow {
    top: 38%;
  }
}
@media (max-width: 414px) {
  .newsArea .arrow {
    top: 42%;
  }
}
.newsArea .arrow .arrowIcon {
  width: 65px;
  height: 50px;
  fill: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsArea .arrow.arrowPrev {
  left: -5px;
}
.newsArea .arrow.arrowPrev .arrowIcon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 480px) {
  .newsArea .arrow.arrowPrev {
    left: -15px;
  }
}
.newsArea .arrow.arrowNext {
  right: -5px;
}
.newsArea .arrow.arrowNext .arrowIcon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 480px) {
  .newsArea .arrow.arrowNext {
    right: -15px;
  }
}
@media (min-width: 1181px) {
  .newsArea .arrow:hover {
    cursor: pointer;
  }
  .newsArea .arrow:hover .arrowIcon {
    -webkit-animation: arrowEnlarge 0.9s ease-in-out infinite;
            animation: arrowEnlarge 0.9s ease-in-out infinite;
    fill: rgba(255, 255, 255, 0.5);
  }
}
.newsArea .newsItem {
  position: relative;
  padding: 30px 0;
}
@media (min-width: 1181px) {
  .newsArea .newsItem:hover .title a {
    color: #fff;
  }
  .newsArea .newsItem:hover .plusArrow {
    border-color: #fff;
    background-color: #fff;
  }
  .newsArea .newsItem:hover .plusArrow i {
    color: #fff;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsItem {
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .newsArea .newsItem {
    padding: 15px 0;
  }
}
.newsArea .item {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 57px;
}
@media (max-width: 1440px) {
  .newsArea .item {
    margin: 0 37px;
  }
}
@media (max-width: 768px) {
  .newsArea .item {
    margin: 0 20px;
  }
}
@media (max-width: 480px) {
  .newsArea .item {
    margin: 0 10px;
  }
}
.newsArea .outerFrame {
  padding: 13px 10px;
  border: 1px solid rgba(220, 220, 220, 0.4);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsArea .infoBox {
  padding: 10px 10px;
  background-color: #ffffff;
}
.newsArea .stateBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .newsArea .stateBox {
    padding-left: 0px;
  }
}
.newsArea .stateBox .dateBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 55px;
  padding-bottom: 10px;
  border-bottom: 1px solid #626262;
}
.newsArea .stateBox .year {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0;
  color: #626262;
  margin-top: 8px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.newsArea .stateBox .dayBox {
  color: #1b1b1b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 300;
}
.newsArea .stateBox .dayBox .moon {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0;
}
.newsArea .stateBox .dayBox .date {
  font-size: 30px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0;
}
.newsArea .stateBox .iconBox,
.newsArea .stateBox .markBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsArea .stateBox .iconBox .default,
.newsArea .stateBox .markBox .default {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.newsArea .stateBox .iconBox .hover,
.newsArea .stateBox .markBox .hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.newsArea .stateBox .markBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsArea .stateBox .favoriteIcon,
.newsArea .stateBox .bubblesIcon,
.newsArea .stateBox .airplaneIcon {
  margin: 0 10px;
}
@media (max-width: 414px) {
  .newsArea .stateBox .favoriteIcon,
  .newsArea .stateBox .bubblesIcon,
  .newsArea .stateBox .airplaneIcon {
    display: none;
  }
}
.newsArea .stateBox .favoriteIcon,
.newsArea .stateBox .bubblesIcon,
.newsArea .stateBox .airplaneIcon,
.newsArea .stateBox .labelIcon {
  width: 25px;
  height: 25px;
}
.newsArea .Img {
  width: 100%;
  display: block;
}
.newsArea .Img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.newsArea .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .newsArea .Txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.newsArea .newsInfoBox {
  border-right: 1px solid #ccc;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsArea .newsInfoBox .dateBox {
  text-align: center;
}
.newsArea .newsInfoBox .dateBox .date {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2;
}
.newsArea .newsInfoBox .dateBox .year {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .newsArea .newsInfoBox {
    padding: 0 30px;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsInfoBox {
    padding: 0 20px;
  }
  .newsArea .newsInfoBox .dateBox .date {
    font-size: 44px;
  }
  .newsArea .newsInfoBox .dateBox .year {
    font-size: 13px;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 640px) {
  .newsArea .newsInfoBox {
    padding: 0 10px;
  }
  .newsArea .newsInfoBox .dateBox .date {
    font-size: 40px;
  }
  .newsArea .newsInfoBox .dateBox .year {
    font-size: 12px;
    letter-spacing: 0px;
  }
}
@media (max-width: 480px) {
  .newsArea .newsInfoBox {
    width: 100%;
    border: none;
    padding: 0 10px 5px;
  }
  .newsArea .newsInfoBox .dateBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .newsArea .newsInfoBox .dateBox .date {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 500;
  }
  .newsArea .newsInfoBox .dateBox .date::before {
    content: ".";
  }
  .newsArea .newsInfoBox .dateBox .year {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.2;
  }
}
.newsArea .textBox {
  height: 125px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1180px) {
  .newsArea .textBox {
    height: 115px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 768px) {
  .newsArea .textBox {
    height: 110px;
  }
}
@media (max-width: 480px) {
  .newsArea .textBox {
    height: 105px;
  }
}
.newsArea .textBox .classTitle {
  min-width: 86px;
  height: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: #747474;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.3px;
  margin-top: 10px;
}
@media (max-width: 1180px) {
  .newsArea .textBox .classTitle {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .newsArea .textBox .classTitle {
    margin-bottom: 0px;
  }
}
.newsArea .textBox .title {
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 24px;
  letter-spacing: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.newsArea .textBox .title.ellipsis {
  height: 45px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .newsArea .textBox .title {
    padding-right: 0;
  }
}
@media (max-width: 1180px) {
  .newsArea .textBox .title {
    font-size: 20px;
    margin-bottom: 0;
  }
  .newsArea .textBox .title.ellipsis {
    height: 40px;
  }
}
@media (max-width: 768px) {
  .newsArea .textBox .title {
    font-size: 18px;
  }
}
.newsArea .textBox .text {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsArea .textBox .text.ellipsis {
  height: 30px;
  overflow: hidden;
}
.newsArea .plusArrow {
  position: absolute;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  right: 50px;
  top: 50%;
  margin-top: -25px;
}
.newsArea .plusArrow i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1440px) {
  .newsArea .plusArrow {
    right: 0px;
  }
}
@media (max-width: 1180px) {
  .newsArea .plusArrow {
    display: none;
  }
}
.newsArea .linkWrap {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.locationArea {
  padding: 80px 0 50px;
}
@media (max-width: 1440px) {
  .locationArea {
    padding: 70px 0 50px;
  }
}
@media (max-width: 1180px) {
  .locationArea {
    padding: 50px 0 50px;
  }
}
@media (max-width: 480px) {
  .locationArea {
    padding: 40px 0 50px;
  }
}
.locationArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1180px) {
  .locationArea .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .locationArea .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.locationArea .topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 70px;
}
@media (max-width: 1180px) {
  .locationArea .topBox {
    margin-bottom: 40px;
  }
}
.locationArea .titleBox {
  width: 100%;
  max-width: 555px;
  text-align: center;
  margin-bottom: 0;
}
.locationArea .titleBox .title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 2.2px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgb(137, 137, 137);
}
.locationArea .titleBox .title::after {
  content: "";
  position: absolute;
  position: absolute;
  display: block;
  left: 50%;
  bottom: -1px;
  width: 30px;
  height: 1px;
  background-color: #fff;
  -webkit-animation: moveLeftRight 3s infinite ease-in-out;
          animation: moveLeftRight 3s infinite ease-in-out;
}
@media (max-width: 450px) {
  .locationArea .titleBox .title {
    padding-bottom: 15px;
  }
}
.locationArea .titleBox .subtitle {
  font-size: 62px;
  font-weight: 500;
  line-height: 69px;
  letter-spacing: 1.3px;
  padding-top: 20px;
}
@media (max-width: 1366px) {
  .locationArea .titleBox .subtitle {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .locationArea .titleBox .subtitle {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .locationArea .titleBox .subtitle {
    line-height: 1.1;
  }
}
@media (max-width: 450px) {
  .locationArea .titleBox .subtitle {
    font-size: 28px;
    padding-top: 15px;
  }
}
.locationArea .mobileBox {
  position: relative;
  z-index: 1;
  display: none;
}
.locationArea .mobileBox .slick-disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 1180px) {
  .locationArea .mobileBox {
    display: block;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: 0 auto 35px;
  }
}
.locationArea .mobileBox .item {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.locationArea .mobileBox .item .Img {
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 50%;
  padding: 15px;
  margin-right: 10px;
}
.locationArea .mobileBox .item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.locationArea .mobileBox .item .mobileTrigger {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.locationArea .mobileBox .arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.locationArea .mobileBox .arrow .arrowIcon {
  width: 65px;
  height: 50px;
  fill: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 640px) {
  .locationArea .mobileBox .arrow .arrowIcon {
    width: 50px;
    height: 35px;
  }
}
.locationArea .mobileBox .arrow.arrowPrev {
  left: -45px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media (max-width: 768px) {
  .locationArea .mobileBox .arrow.arrowPrev {
    left: -25px;
  }
}
@media (max-width: 640px) {
  .locationArea .mobileBox .arrow.arrowPrev {
    left: -15px;
  }
}
.locationArea .mobileBox .arrow.arrowNext {
  right: -45px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 768px) {
  .locationArea .mobileBox .arrow.arrowNext {
    right: -25px;
  }
}
@media (max-width: 640px) {
  .locationArea .mobileBox .arrow.arrowNext {
    right: -15px;
  }
}
.locationArea .btttomBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1180px) {
  .locationArea .btttomBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1180px) {
  .locationArea .left,
  .locationArea .right {
    width: 100%;
  }
}
.locationArea .left {
  position: absolute;
  top: 0;
  width: 50%;
  max-width: 905px;
}
@media (max-width: 1180px) {
  .locationArea .left {
    width: 100%;
    max-width: 100%;
    left: -30px;
    top: -120px;
    pointer-events: none;
  }
}
.locationArea .left .Img {
  pointer-events: none;
  width: 100%;
}
@media (max-width: 1180px) {
  .locationArea .left .Img {
    opacity: 0.5;
  }
}
.locationArea .left .map {
  width: 100%;
  z-index: 0;
}
.locationArea .left .map.tpe, .locationArea .left .map.ntpc, .locationArea .left .map.hsz {
  position: absolute;
  opacity: 0.7;
  -webkit-animation: mapflashing 3s 4s infinite ease-in-out;
          animation: mapflashing 3s 4s infinite ease-in-out;
}
.locationArea .left .map.tpe {
  left: 0;
  z-index: 1;
}
.locationArea .left .map.ntpc {
  left: 0;
  z-index: 2;
}
.locationArea .left .map.hsz {
  left: 0;
  z-index: 3;
}
.locationArea .left .classBox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}
@media (max-width: 1180px) {
  .locationArea .left .classBox {
    display: none;
  }
}
.locationArea .left .classBoxRow {
  margin: 0;
}
.locationArea .left .classBoxRow .classLink {
  position: relative;
  width: 100%;
  height: 100%;
}
.locationArea .left .classIconBox {
  position: absolute;
  margin: 0;
}
.locationArea .left .classIconBox:nth-child(1) {
  top: 6%;
  left: 66%;
}
.locationArea .left .classIconBox:nth-child(2) {
  top: 16%;
  left: 64%;
}
.locationArea .left .classIconBox:nth-child(3) {
  top: 22%;
  left: 34%;
}
.locationArea .left .classIcon {
  width: 90px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1536px) {
  .locationArea .left .classIcon {
    width: 75px;
    height: 75px;
  }
}
.locationArea .left .classIcon.current {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation: swing 2s 0.6s ease-in-out infinite;
          animation: swing 2s 0.6s ease-in-out infinite;
}
.locationArea .left .classTrigger {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000000;
  border: 1px solid #000000;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1181px) {
  .locationArea .left .classTrigger:hover {
    background-color: #000000;
    border: 1px solid #fff;
  }
}
.locationArea .left .classTrigger .Img {
  width: 60px;
  height: 60px;
}
@media (max-width: 1536px) {
  .locationArea .left .classTrigger .Img {
    width: 40px;
    height: 40px;
  }
}
.locationArea .left .classTrigger .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.locationArea .left .classTrigger.current {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
  background-color: #000000;
  border: 1px solid #fff;
  scale: 1.2;
}
@media (max-width: 1536px) {
  .locationArea .left .classTrigger.current {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
  }
}
.locationArea .left .locationCr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  position: absolute;
  background-color: transparent;
  -webkit-transform: translateX(1px) translateY(3px);
          transform: translateX(1px) translateY(3px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
}
.locationArea .left .locationCr img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.locationArea .left .locationCr::before {
  content: "";
  position: absolute;
  display: block;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  border: 2px solid rgba(238, 238, 238, 0.2);
  top: 47.5%;
  left: 50%;
  -webkit-transform: translate(-49%, -43%);
          transform: translate(-49%, -43%);
}
.locationArea .left .locationCr::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(238, 238, 238, 0.1);
  top: 47.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  opacity: 0;
}
.locationArea .left .locationCr.current {
  background-color: transparent;
  opacity: 1;
  border: none;
}
.locationArea .left .locationCr.current::before {
  -webkit-animation: lightWaveM 1s ease-in-out infinite;
          animation: lightWaveM 1s ease-in-out infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.locationArea .left .locationCr.current::after {
  -webkit-animation: lightWaveL 1s ease-in-out infinite;
          animation: lightWaveL 1s ease-in-out infinite;
}
.locationArea .left .locationCr.current img {
  opacity: 1;
}
.locationArea .left .locationTitle {
  background-color: transparent;
  border: none;
  position: absolute;
  width: calc(100% + 20px);
  padding: 0;
  bottom: -30px;
  left: 50%;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1440px) {
  .locationArea .left .locationTitle {
    bottom: -10px;
  }
}
@media (max-width: 1280px) {
  .locationArea .left .locationTitle {
    bottom: -25px;
  }
}
.locationArea .left .locationTitle.current {
  background-color: transparent;
  bottom: 0;
  color: #fff;
}
.locationArea .right {
  width: 50%;
  max-width: 655px;
  margin-left: 54%;
  margin-right: 5%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /* 自定义滚动条样式 */
}
@media (max-width: 1180px) {
  .locationArea .right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.locationArea .right ::-webkit-scrollbar {
  width: 3px;
  -webkit-transform: translateX(45px);
          transform: translateX(45px);
}
.locationArea .right ::-webkit-scrollbar-track {
  background-color: #898989;
}
.locationArea .right ::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
}
.locationArea .right .locationBox {
  position: relative;
  width: 100%;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.locationArea .right .locationBox.hide {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.locationArea .right .locationList {
  height: 470px;
  overflow: hidden;
  overflow-y: auto;
}
.locationArea .right .locationList::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: calc(100% - 45px);
  height: 1px;
  background-color: #898989;
}
.locationArea .right .locationList::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: calc(100% - 45px);
  height: 1px;
  background-color: #898989;
}
.locationArea .right .item {
  margin-right: 45px;
  padding: 35px 0;
  border-bottom: 1px solid #434343;
}
.locationArea .right .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.locationArea .right .line,
.locationArea .right .tel,
.locationArea .right .address {
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.locationArea .right .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 23px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 1.1px;
  color: #ffffff;
}
.locationArea .right .infoText {
  position: relative;
  font-size: 19px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: 0.9px;
  width: 100%;
  max-width: 75px;
  color: #ffffff;
  margin-right: 15px;
}
.locationArea .right .infoText::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 12px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #898989;
}
.locationArea .right .plusCross {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #c0c0c0;
  background-color: #000;
  margin-left: 15px;
}
.locationArea .right .plusCross::before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 8px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #909090;
}
.locationArea .right .plusCross::after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #909090;
}
.locationArea .right .plusCross .round {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: conic-gradient(white 0deg 360deg), conic-gradient(white 0deg 120deg, transparent 120deg 360deg);
  background-size: 0% 0%, 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask: radial-gradient(circle 11px at center, transparent 11px, black 11px);
          mask: radial-gradient(circle 11px at center, transparent 11px, black 11px);
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  -webkit-transition: background-size 0.5s ease-in-out;
  transition: background-size 0.5s ease-in-out;
}
.locationArea .right .linkWrap {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.8px;
  color: #c0c0c0;
}
@media (min-width: 1181px) {
  .locationArea .right .linkWrap:hover {
    color: #ffffff;
  }
  .locationArea .right .linkWrap:hover .round {
    background-size: 100% 100%, 0% 0%;
    -webkit-animation: none;
            animation: none;
  }
}
.locationArea .right .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.8px;
  color: #c0c0c0;
}
.locationArea .right .progressBar {
  width: 3px;
  height: 100%;
  background-color: #898989;
  border-radius: 4px;
  position: absolute;
  right: -45px;
  top: 0px;
}
@media (max-width: 768px) {
  .locationArea .right .progressBar {
    right: -30px;
  }
}
@media (max-width: 680px) {
  .locationArea .right .progressBar {
    right: -12px;
  }
}
.locationArea .right .progressThumb {
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}

.catalogArea {
  padding: 50px 0;
}
.catalogArea .unClick {
  pointer-events: none;
}
.catalogArea .catalogBox {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding-bottom: 20px;
}
.catalogArea .catalogBox.hide {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.catalogList {
  margin: 0 -30px;
  position: relative;
}
.catalogList:not(.slick-slider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalogList:not(.slick-slider) .catalogItem {
  width: 33.33%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1180px) {
  .catalogList {
    margin: 0 -20px;
  }
}
@media (max-width: 768px) {
  .catalogList {
    margin: 0 0px;
  }
}
.catalogList .catalogItem {
  padding: 0;
}
.catalogList .item {
  position: relative;
  overflow: hidden;
  padding: 30px;
}
@media (max-width: 1180px) {
  .catalogList .item {
    padding: 20px;
  }
}
.catalogList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.catalogList .Txt {
  position: relative;
  padding: 12px 20px 20px;
  text-align: center;
}
@media (max-width: 1180px) {
  .catalogList .Txt {
    padding: 10px 0 0px;
  }
}
.catalogList .Txt .title {
  padding-bottom: 10px;
  font-size: 24px;
}
.catalogList .Txt .title a {
  display: block;
}
@media (max-width: 1180px) {
  .catalogList .Txt .title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .catalogList .Txt .title {
    font-size: 20px;
  }
}
.catalogList .Txt .text {
  font-size: 16px;
}
.catalogList .Txt .text.ellipsis {
  height: 75px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .catalogList .Txt .text {
    font-size: 14px;
  }
  .catalogList .Txt .text.ellipsis {
    height: 70px;
  }
}

.facArea {
  background-color: #2e2e2e;
  padding: 50px 0 80px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  .facArea {
    padding: 30px 0 20px;
  }
}
@media (max-width: 1180px) {
  .facArea .wrap {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .facArea .wrap {
    padding: 0 20px;
  }
}
.facArea .facBox {
  overflow: hidden;
  width: calc(100% + 50vw - 50%);
}
@media (max-width: 768px) {
  .facArea .facBox {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    overflow: visible;
  }
}
.facArea .controlBox {
  width: 100%;
  padding-left: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .facArea .controlBox {
    height: 50px;
    margin-bottom: 30px;
    padding: 0 40px;
  }
}
@media (max-width: 400px) {
  .facArea .controlBox {
    height: 20px;
  }
}
.facArea .arrowBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}
.facArea .arrowBox .slick-arrow {
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media (min-width: 769px) {
  .facArea .arrowBox .slick-arrow + .slick-arrow {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .facArea .arrowBox {
    width: 100%;
    position: absolute;
    left: 0;
  }
  .facArea .arrowBox .slick-arrow {
    position: absolute;
    left: -10px;
  }
  .facArea .arrowBox .slick-arrow.slick-next {
    left: auto;
    right: -10px;
  }
}
@media (max-width: 400px) {
  .facArea .arrowBox {
    display: none;
  }
}
.facArea .dotsBox {
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .facArea .dotsBox {
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .facArea .dotsBox {
    width: 100%;
  }
}
.facArea .slick-dots {
  position: relative;
  bottom: 0;
}
@media (max-width: 768px) {
  .facArea .slick-dots {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.facList {
  width: 100%;
  position: relative;
  padding: 20px 120px 0px 0;
}
@media (max-width: 768px) {
  .facList {
    padding: 20px 0 0;
  }
}
.facList .slick-list {
  overflow: visible;
}
@media (max-width: 400px) {
  .facList .slick-list {
    overflow: hidden;
  }
}
.facList .facItem {
  padding: 0 20px;
}
@media (min-width: 1181px) and (min-width: 1181px) {
  .facList .facItem:hover .Txt {
    background-color: rgba(0, 0, 0, 0.35);
    padding-bottom: 240px;
    -webkit-transition: all 0.5s 0s ease-out;
    transition: all 0.5s 0s ease-out;
    pointer-events: auto;
  }
  .facList .facItem:hover .Txt .text {
    opacity: 1;
    position: absolute;
    bottom: 165px;
    left: auto;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: opacity 0.3s 0.3s ease-in-out, -webkit-transform 0.5s 0.3s ease-in-out;
    transition: opacity 0.3s 0.3s ease-in-out, -webkit-transform 0.5s 0.3s ease-in-out;
    transition: opacity 0.3s 0.3s ease-in-out, transform 0.5s 0.3s ease-in-out;
    transition: opacity 0.3s 0.3s ease-in-out, transform 0.5s 0.3s ease-in-out, -webkit-transform 0.5s 0.3s ease-in-out;
  }
}
@media (max-width: 1180px) {
  .facList .facItem {
    padding: 0 15px;
  }
}
@media (max-width: 400px) {
  .facList .facItem {
    padding: 0 5px;
  }
}
.facList .item {
  width: 100%;
  max-width: 400px;
  position: relative;
}
.facList .Img {
  position: relative;
  width: 100%;
}
.facList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.facList .Txt {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px 50px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-transition: all 0.5s 0s ease-out;
  transition: all 0.5s 0s ease-out;
  z-index: 1;
}
.facList .Txt a {
  pointer-events: auto;
}
@media (max-width: 1180px) {
  .facList .Txt {
    height: auto;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 20px 20px 30px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 640px) {
  .facList .Txt {
    width: 100%;
    padding: 20px 20px 30px;
  }
}
.facList .title {
  width: 100%;
  max-width: 400px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}
.facList .title a {
  color: #fff;
  display: block;
}
@media (min-width: 1181px) {
  .facList .title a:hover {
    color: #fff;
  }
}
@media (max-width: 1180px) {
  .facList .title {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .facList .title {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .facList .title {
    font-size: 24px;
    font-weight: 500;
  }
}
.facList .text {
  width: 100%;
  height: 75px;
  color: #fff;
  display: block;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  padding: 0 20px;
  position: absolute;
  bottom: 165px;
  left: auto;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s 0s ease-in-out, -webkit-transform 0.5s 0s ease-in-out;
  transition: opacity 0.3s 0s ease-in-out, -webkit-transform 0.5s 0s ease-in-out;
  transition: opacity 0.3s 0s ease-in-out, transform 0.5s 0s ease-in-out;
  transition: opacity 0.3s 0s ease-in-out, transform 0.5s 0s ease-in-out, -webkit-transform 0.5s 0s ease-in-out;
}
@media (max-width: 1180px) {
  .facList .text {
    width: 100%;
    max-height: 75px;
    height: auto;
    bottom: 0;
    margin-top: 10px;
    padding: 0;
    position: relative;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
.facList .linkWrap {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1440px) {
  .facList .linkWrap {
    display: none;
  }
}
.facList .btnBox {
  margin-top: 20px;
}
@media (min-width: 1181px) {
  .facList .btnBox {
    display: none;
  }
}

.linkArea {
  position: relative;
  z-index: 4;
  padding: 75px 0 280px;
  text-align: center;
}
@media (max-width: 1180px) {
  .linkArea {
    padding: 75px 0 95px;
  }
}
@media (max-width: 768px) {
  .linkArea {
    padding: 35px 0 95px;
  }
}
.linkArea .wrap {
  position: relative;
  max-width: 100%;
  padding: 0;
}
.linkArea .decText {
  position: absolute;
  font-size: 500px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.1);
  z-index: -1;
  opacity: 0.3;
}
.linkArea .decText:nth-child(2) {
  top: 290px;
  left: 360px;
  -webkit-animation: flashing 4s 1s ease-in-out infinite;
          animation: flashing 4s 1s ease-in-out infinite;
}
.linkArea .decText:nth-child(3) {
  top: 405px;
  left: 765px;
  -webkit-animation: flashing 4s 2s ease-in-out infinite;
          animation: flashing 4s 2s ease-in-out infinite;
}
.linkArea .decText:nth-child(4) {
  top: 50px;
  left: 1265px;
  -webkit-animation: flashing 4s 3s ease-in-out infinite;
          animation: flashing 4s 3s ease-in-out infinite;
}
@media (max-width: 1536px) {
  .linkArea .decText:nth-child(2) {
    left: 260px;
  }
  .linkArea .decText:nth-child(3) {
    left: 665px;
  }
  .linkArea .decText:nth-child(4) {
    left: 1165px;
  }
}
@media (max-width: 1440px) {
  .linkArea .decText:nth-child(2) {
    left: 160px;
  }
  .linkArea .decText:nth-child(3) {
    left: 565px;
  }
  .linkArea .decText:nth-child(4) {
    left: 1065px;
  }
}
@media (max-width: 1280px) {
  .linkArea .decText {
    font-size: 400px;
  }
  .linkArea .decText:nth-child(2) {
    left: 110px;
  }
  .linkArea .decText:nth-child(3) {
    left: 515px;
  }
  .linkArea .decText:nth-child(4) {
    left: 915px;
  }
}
@media (max-width: 1180px) {
  .linkArea .decText:nth-child(2) {
    top: 0px;
  }
  .linkArea .decText:nth-child(3) {
    top: 115px;
  }
  .linkArea .decText:nth-child(4) {
    top: -140px;
  }
}
@media (max-width: 960px) {
  .linkArea .decText {
    font-size: 300px;
  }
  .linkArea .decText:nth-child(2) {
    left: 110px;
  }
  .linkArea .decText:nth-child(3) {
    left: 365px;
  }
  .linkArea .decText:nth-child(4) {
    left: 665px;
  }
}
@media (max-width: 768px) {
  .linkArea .decText {
    font-size: 232px;
  }
  .linkArea .decText:nth-child(2) {
    left: 0px;
  }
  .linkArea .decText:nth-child(3) {
    left: 265px;
  }
  .linkArea .decText:nth-child(4) {
    left: 515px;
  }
}
@media (max-width: 640px) {
  .linkArea .decText:nth-child(2) {
    left: -30px;
  }
  .linkArea .decText:nth-child(3) {
    left: 215px;
  }
  .linkArea .decText:nth-child(4) {
    top: -150px;
    left: 395px;
  }
}
@media (max-width: 480px) {
  .linkArea .decText:nth-child(3) {
    left: 45%;
  }
  .linkArea .decText:nth-child(4) {
    left: 85%;
  }
}
@media (max-width: 400px) {
  .linkArea .decText:nth-child(3) {
    left: 450;
  }
  .linkArea .decText:nth-child(4) {
    left: 80%;
  }
}

.linkList {
  position: relative;
  margin-left: 10%;
}
@media (max-width: 1440px) {
  .linkList {
    margin-left: 5%;
  }
}
@media (max-width: 768px) {
  .linkList {
    margin-left: 0;
  }
}
.linkList .linkItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 28%;
  height: 800px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-left: 10px;
  padding-right: 10px;
}
.linkList .linkItem.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.linkList .linkItem.top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.linkList .linkItem.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.linkList .linkItem.bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1440px) {
  .linkList .linkItem {
    height: 700px;
  }
}
@media (max-width: 1180px) {
  .linkList .linkItem {
    opacity: 1;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .linkList .linkItem {
    max-width: 100%;
    height: 400px;
    height: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 30px;
    padding-right: 30px;
  }
  .linkList .linkItem.top, .linkList .linkItem.bottom, .linkList .linkItem.center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.linkList .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}
@media (min-width: 1181px) {
  .linkList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.linkList .Img {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.linkList .Img .link {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.linkList .Img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.linkList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 640px) {
  .linkList .Img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1181px) {
  .linkList .Img:hover .overlay {
    background-color: transparent;
  }
}
@media (max-width: 1180px) {
  .linkList .Img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.linkList .Txt {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 20px;
}
.linkList .Txt .title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 20px;
}
.linkList .Txt .title a {
  color: #fff;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.linkList .swiper-button-next,
.linkList .swiper-button-prev {
  position: absolute;
  top: 30%;
  z-index: 3;
  display: none;
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .linkList .swiper-button-next,
  .linkList .swiper-button-prev {
    display: block;
  }
}
@media (max-width: 768px) {
  .linkList .swiper-button-next,
  .linkList .swiper-button-prev {
    top: 50%;
  }
}
.linkList .swiper-button-next .arrowIcon,
.linkList .swiper-button-prev .arrowIcon {
  width: 65px;
  height: 50px;
  fill: #fff;
}
.linkList .swiper-button-next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  right: -20px;
}
.linkList .swiper-button-next::after {
  content: "";
  position: absolute;
  display: none;
}
.linkList .swiper-button-prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: -20px;
}
.linkList .swiper-button-prev::after {
  content: "";
  position: absolute;
  display: none;
}