.newsArea .wrap > .right .item .Txt, .newsArea .wrap > .left .item .Txt, .bannerArea .arrowBox .arrow::before, .bannerArea .arrowBox .arrow, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.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: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: #fff; */
  border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #bca480;
  /* border-radius:  50%; */
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem {
  background-color: #fff;
}
.bannerArea .bannerItem .Img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.bannerArea .bannerItem .Img.current {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.bannerArea .bannerItem .Txt {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-bottom: 45px;
  padding-left: 27px;
  opacity: 0;
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt {
    padding-bottom: 68px;
  }
}
@media (max-width: 410px) {
  .bannerArea .bannerItem .Txt {
    padding-bottom: 45px;
  }
}
.bannerArea .bannerItem .Txt::before {
  content: "";
  width: 42px;
  height: 97px;
  display: block;
  background: url(../images/bannerIcon.png) no-repeat center center/100%;
}
@media (max-width: 410px) {
  .bannerArea .bannerItem .Txt::before {
    width: 30px;
    height: 70px;
  }
}
.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;
  text-align: center;
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: 26px;
  font-weight: normal;
  letter-spacing: 0.29px;
  font-family: "Noto Sans CJK TC";
  opacity: 0;
  padding-right: 9px;
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 23px;
    max-width: 430px;
  }
}
@media (max-width: 410px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 18px;
    max-width: 310px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 2.8px;
  margin: 25px 0 6px 0px;
  font-family: "lato";
  font-weight: 700;
  opacity: 0;
  max-height: 51px;
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 36px;
    line-height: 1.083;
    max-width: 430px;
    max-height: 78px;
  }
}
@media (max-width: 410px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 24px;
    max-width: 310px;
    max-height: 52px;
  }
}
@media (max-width: 310px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 20px;
    max-width: 310px;
    max-height: 52px;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerBtn {
  opacity: 0;
  padding-top: 30px;
}
.bannerArea .bannerItem .Txt .bannerBtn a {
  background-color: #437598;
  color: #fff;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 15px 20px;
  text-align: center;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #437598;
}
.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;
}
.bannerArea .slick-current .Txt {
  -webkit-animation: textSlideUpAnimation 0.8s 0.2s ease-in-out forwards;
          animation: textSlideUpAnimation 0.8s 0.2s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .subtitle {
  -webkit-animation: textSlideUpAnimation 0.8s 0.4s ease-in-out forwards;
          animation: textSlideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .title {
  -webkit-animation: textSlideUpAnimation 0.8s 0.8s ease-in-out forwards;
          animation: textSlideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
  -webkit-animation: textSlideUpAnimation 0.8s 1.2s ease-in-out forwards;
          animation: textSlideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .bannerBtn {
  -webkit-animation: textSlideUpAnimation 0.8s 1.6s ease-in-out forwards;
          animation: textSlideUpAnimation 0.8s 1.6s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .videoBtn::after {
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.bannerArea .socialBox {
  display: block;
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .socialBox .socialList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bannerArea .socialBox .socialList li {
  margin: 7.5px 0;
}
.bannerArea .socialBox .socialList li:first-child {
  margin-top: 0;
}
.bannerArea .socialBox .socialList li:last-child {
  margin-bottom: 0;
}
.bannerArea .socialBox .socialList li a {
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
}
.bannerArea .socialBox .socialList li a svg {
  width: 20px;
  height: 18px;
  display: inline-block;
  fill: #fff;
  margin-top: -2px;
  vertical-align: middle;
}
.bannerArea .socialBox .socialList li a:hover {
  color: #437598;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #437598;
}
.bannerArea .arrowBox {
  display: block;
  position: absolute;
  top: 50%;
  right: 50px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .arrowBox .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
  position: relative;
  margin: 10px 0;
  cursor: pointer;
}
.bannerArea .arrowBox .arrow::before {
  content: "";
  border-style: solid;
  display: block;
  z-index: 2;
  width: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bannerArea .arrowBox .arrowPrev::before {
  border-width: 0 5px 9px 5px;
  border-color: transparent transparent #fff transparent;
}
.bannerArea .arrowBox .arrowPrev:hover::before {
  border-color: transparent transparent #437598 transparent;
}
.bannerArea .arrowBox .arrowNext::before {
  border-width: 9px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
.bannerArea .arrowBox .arrowNext:hover::before {
  border-color: #437598 transparent transparent transparent;
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.5px;
}
.bannerArea .scrollDown span.line {
  width: 2px;
  height: calc(100% + 20px);
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 1;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #437598;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .slick-dots {
  width: 15px;
  margin: 0;
  bottom: 20%;
  right: 50px;
}
.bannerArea .slick-dots li {
  width: 100%;
  height: 15px;
  margin: 5px 0;
}
.bannerArea .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.bannerArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active button::before {
  border: 1px solid #fff;
  background-color: #fff;
  opacity: 1;
}

.newsArea {
  padding: 51px 0 73px;
  background: url(../images/news.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
.newsArea .ph, .newsArea .hide {
  display: none;
}
@media (max-width: 1180px) {
  .newsArea .ph {
    display: block;
  }
  .newsArea .pc {
    display: none;
  }
}
.newsArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1408px;
  padding: 0 2px 0 20px;
  color: #fff;
}
@media (max-width: 1180px) {
  .newsArea .wrap {
    width: 88.2%;
    padding: 0 10px;
  }
}
.newsArea .wrap > .left {
  width: 66.9%;
  padding-right: 15px;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left {
    width: 100%;
    padding: 0;
  }
  .newsArea .wrap > .left .slick-list {
    overflow: unset;
  }
  .newsArea .wrap > .left .slick-active .item .Txt {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .newsArea .wrap > .left .item {
    padding: 0 10px;
  }
}
.newsArea .wrap > .left .item {
  display: none;
}
.newsArea .wrap > .left .item:nth-of-type(1) {
  display: block;
}
.newsArea .wrap > .left .item .Txt {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.82)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  padding: 40px 45px;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left .item .Txt {
    background-image: none;
    padding: 20px 0;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.newsArea .wrap > .left .item .Txt .newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsArea .wrap > .left .item .Txt .leftBox {
  width: 12%;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left .item .Txt .leftBox {
    width: 100%;
  }
}
.newsArea .wrap > .left .item .Txt .leftBox .date {
  margin-bottom: 12px;
  font-family: "Montserrat";
  text-align: center;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left .item .Txt .leftBox .date {
    color: #437598;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Noto Sans CJK TC";
  }
}
.newsArea .wrap > .left .item .Txt .leftBox .date .day {
  font-weight: 600;
  font-size: 57px;
  letter-spacing: 6px;
  margin-bottom: 8px;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left .item .Txt .leftBox .date .day {
    font-size: 15px;
    letter-spacing: 1.1px;
  }
}
.newsArea .wrap > .left .item .Txt .leftBox .date .MY {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
}
.newsArea .wrap > .left .item .Txt .rightBox {
  width: 88%;
  padding: 0 66px 0 32px;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left .item .Txt .rightBox {
    padding: 0;
    width: 100%;
  }
}
.newsArea .wrap > .left .item .Txt .rightBox .title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 11px;
  max-height: 68px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left .item .Txt .rightBox .title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    max-height: 55px;
  }
}
.newsArea .wrap > .left .item .Txt .rightBox .text {
  line-height: 1.5625;
  letter-spacing: 1.1px;
  height: 56px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left .item .Txt .rightBox .text {
    display: none;
  }
}
.newsArea .wrap > .left .item .Txt .rightBox .date {
  line-height: 1.5625;
  letter-spacing: 1.1px;
  font-family: "Noto Sans CJK TC";
  font-weight: 100;
  color: #dadada;
  font-size: 16px;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .left .item .Txt .rightBox .date {
    color: #5d5d5d;
  }
}
.newsArea .wrap > .left .item .classTitle {
  padding: 0 0 4px 7px;
}
.newsArea .wrap > .right {
  width: 33%;
  padding-right: 12px;
}
@media (max-width: 1180px) {
  .newsArea .wrap > .right {
    display: none;
  }
}
.newsArea .wrap > .right .item {
  height: 100%;
  margin-bottom: 14px;
  overflow: hidden;
}
.newsArea .wrap > .right .item:hover .Txt {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.newsArea .wrap > .right .item .Txt {
  background-color: rgba(0, 0, 0, 0.74);
  padding: 66px 35px 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  height: 100%;
}
.newsArea .wrap > .right .item .Txt .dateBox {
  margin-bottom: 31px;
  font-family: "Montserrat";
  font-size: 15px;
  letter-spacing: 2.05px;
}
.newsArea .wrap > .right .item .Txt .dateBox span {
  font-family: "Noto Sans CJK TC";
  font-weight: normal;
}
.newsArea .wrap > .right .item .Txt .title {
  font-size: 21px;
  line-height: 1.47;
  margin-bottom: 14px;
  max-height: 62px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsArea .wrap > .right .item .Txt .text {
  line-height: 1.5;
  letter-spacing: 1.2px;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsArea .wrap > .right .item .classTitle {
  padding: 0 0 4px 3px;
}
.newsArea .item {
  position: relative;
}
.newsArea .item a {
  color: #fff;
}
@media (max-width: 1180px) {
  .newsArea .item a {
    color: #293c48;
  }
}
.newsArea .item .Txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 1180px) {
  .newsArea .item .Txt {
    position: static;
  }
}
.newsArea .item .title {
  font-family: "Noto Sans CJK TC";
  font-weight: normal;
  letter-spacing: 0.2px;
}
.newsArea .item .text {
  font-family: "Noto Sans CJK TC";
  font-weight: 100;
  color: #dadada;
  font-size: 16px;
}
.newsArea .item .classTitle {
  position: absolute;
  top: 0;
  right: 0;
  width: 158px;
  height: 48px;
  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;
  background-color: #437598;
  font-size: 16px;
  letter-spacing: 1px;
}
@media (max-width: 1180px) {
  .newsArea .item .classTitle {
    width: 116px;
    height: 37px;
    right: 10px;
    font-size: 15px;
    background-color: #678fa9;
  }
}
.newsArea .slick-dots {
  bottom: -40px;
}
.newsArea .slick-dots li button {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  border: 2px solid #437598;
  padding: 0;
}
.newsArea .slick-dots li button::before {
  display: none;
}
.newsArea .slick-dots li:not(.slick-active) button {
  border: 2px solid #437598;
}
.newsArea .slick-dots li.slick-active button {
  background-color: #437598;
}

.aboutArea {
  padding: 99px 0 14px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 60px 0 14px;
  }
}
.aboutArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  max-width: 100%;
}
@media (max-width: 1580px) {
  .aboutArea .wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.aboutArea .titleBox {
  width: 100%;
}
.aboutArea .Img {
  width: 56%;
  position: relative;
}
@media (max-width: 1180px) {
  .aboutArea .Img {
    width: 91.25%;
  }
}
.aboutArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: relative;
  z-index: 1;
}
.aboutArea .right {
  width: 44%;
  padding-left: 6.1vw;
  padding-top: 84px;
}
@media (max-width: 1580px) {
  .aboutArea .right {
    padding-top: 0;
  }
}
@media (max-width: 1366px) {
  .aboutArea .right {
    padding-left: 20px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .right {
    width: 100%;
    padding: 46px 43px;
  }
}
@media (max-width: 380px) {
  .aboutArea .right {
    padding: 40px 30px;
  }
}
.aboutArea .right .Txt {
  max-width: 556px;
  padding-right: 20px;
}
@media (max-width: 1366px) {
  .aboutArea .right .Txt {
    max-width: 100%;
  }
}
@media (max-width: 1180px) {
  .aboutArea .right .Txt {
    padding-right: 0;
  }
}
.aboutArea .right .Txt .subtitle {
  color: #437598;
  font-family: "Lato";
  font-weight: 600;
  font-size: 39px;
  letter-spacing: 0.2px;
  line-height: 1.128;
  margin-bottom: 16px;
}
@media (max-width: 1180px) {
  .aboutArea .right .Txt .subtitle {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .aboutArea .right .Txt .subtitle {
    max-width: 294px;
  }
}
@media (max-width: 380px) {
  .aboutArea .right .Txt .subtitle {
    font-size: 30px;
    max-width: 247px;
  }
}
.aboutArea .right .Txt .title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 400;
  color: #437598;
}
.aboutArea .right .Txt .text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.866;
  letter-spacing: 1.015px;
  height: 197px;
  overflow: auto;
  color: #5d5d5d;
}
.aboutArea .right .Txt .text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.aboutArea .right .Txt .text::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #dbdbdb;
}
.aboutArea .right .Txt .text::-webkit-scrollbar-thumb {
  background: #437598;
}
@media (max-width: 1366px) {
  .aboutArea .right .Txt .text {
    height: 180px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .right .Txt .text {
    height: auto;
    letter-spacing: 1px;
  }
}
.aboutArea .right .Txt .text .txt {
  margin-bottom: 27px;
}
@media (max-width: 1366px) {
  .aboutArea .right .Txt .text .txt {
    margin-bottom: 20px;
  }
}
.aboutArea .right .btn {
  padding-top: 37px;
}
@media (max-width: 1366px) {
  .aboutArea .right .btn {
    padding-top: 20px;
  }
}
.aboutArea [class*=Flower] {
  position: absolute;
  z-index: 0;
}
.aboutArea .topLeftFlower {
  width: 29.94vw;
  height: 33.95vw;
  top: -169px;
  left: 3.9vw;
  pointer-events: none;
  background: url(../images/leftTop1.png) left center/100% no-repeat;
}
@media (max-width: 1180px) {
  .aboutArea .topLeftFlower {
    display: none;
  }
}
.aboutArea .topRightFlower {
  width: 10.729vw;
  height: 6.66vw;
  top: -48px;
  left: 33vw;
  background: url(../images/leftTop2.png) left center/100% no-repeat;
  pointer-events: none;
}
@media (max-width: 1180px) {
  .aboutArea .topRightFlower {
    width: 206px;
    height: 128px;
    top: -17px;
    left: 0;
  }
}
.aboutArea .centerTopFlower {
  width: 6.875vw;
  height: 7.5vw;
  bottom: 16.14%;
  right: -7.3%;
  pointer-events: none;
  background: url(../images/centerTop.png) left center/100% no-repeat;
}
@media (max-width: 1180px) {
  .aboutArea .centerTopFlower {
    width: 132px;
    height: 144px;
    bottom: -85px;
    right: auto;
    left: -61px;
  }
}
.aboutArea .centerBottomFlower {
  width: 11.56vw;
  height: 8.8vw;
  bottom: -49px;
  right: -12.65%;
  pointer-events: none;
  background: url(../images/centerBottom.png) left center/100% no-repeat;
}
@media (max-width: 1180px) {
  .aboutArea .centerBottomFlower {
    width: 222px;
    height: 169px;
    bottom: -261px;
    right: auto;
    left: -97px;
  }
}
.aboutArea .rightTopFlower {
  width: 19.32vw;
  height: 19.47vw;
  bottom: 2.7vw;
  right: -12.76vw;
  pointer-events: none;
  background: url(../images/rightTop.png) left center/100% no-repeat;
}
@media (max-width: 1180px) {
  .aboutArea .rightTopFlower {
    display: none;
  }
}
.aboutArea .rightBottomFlower {
  width: 23.22vw;
  height: 20.98vw;
  bottom: -11.75vw;
  right: -6.56vw;
  pointer-events: none;
  background: url(../images/rightBottom.png) left center/100% no-repeat;
}
@media (max-width: 1180px) {
  .aboutArea .rightBottomFlower {
    width: 373px;
    height: 338px;
    bottom: 1%;
    right: -168px;
  }
}

.roomArea {
  padding: 50px 0 75px;
  position: relative;
  z-index: 1;
}
.roomArea .wrap {
  width: 90%;
  max-width: 1307px;
  padding-top: 5px;
}
@media (max-width: 1180px) {
  .roomArea .wrap {
    width: 100%;
  }
}
@media (max-width: 660px) {
  .roomArea .wrap {
    padding: 0;
  }
}
.roomArea .slick-list {
  overflow: unset;
}
@media (max-width: 1180px) {
  .roomArea .slick-list {
    overflow: hidden;
  }
}
.roomArea .roomItem {
  padding: 0 43px;
}
@media (max-width: 660px) {
  .roomArea .roomItem {
    padding: 0 20px;
  }
}
.roomArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.roomArea .Txt {
  padding: 35px 20px;
  background-color: #fff;
  text-align: center;
}
.roomArea .Txt .title a {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 23px;
  color: #437598;
}
.roomArea .Txt .text {
  height: 66px;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 596px;
  margin: 0 auto;
  letter-spacing: 1.05px;
}
.roomArea .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.roomArea .btn a {
  width: 237px;
}
@media (max-width: 1180px) {
  .roomArea .btn a {
    width: 179px;
  }
}
.roomArea .btn a .txt {
  padding-right: 0;
  padding-bottom: 4px;
}
.roomArea .slick-prev, .roomArea .slick-next {
  top: 31.6%;
  width: 52px;
  height: 109px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  background: #678fa9;
  z-index: 9;
  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: 1180px) {
  .roomArea .slick-prev, .roomArea .slick-next {
    width: 32px;
    height: 77px;
    padding-left: 0;
  }
}
@media (max-width: 660px) {
  .roomArea .slick-prev, .roomArea .slick-next {
    top: 20%;
  }
}
@media (max-width: 400px) {
  .roomArea .slick-prev, .roomArea .slick-next {
    top: 50px;
    width: 28px;
    height: 70px;
  }
}
@media (max-width: 320px) {
  .roomArea .slick-prev, .roomArea .slick-next {
    top: 30px;
  }
}
.roomArea .slick-prev::before, .roomArea .slick-next::before {
  font-size: 0;
  width: 26px;
  height: 26px;
  display: block;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width: 1180px) {
  .roomArea .slick-prev::before, .roomArea .slick-next::before {
    width: 19px;
    height: 19px;
  }
}
@media (max-width: 400px) {
  .roomArea .slick-prev::before, .roomArea .slick-next::before {
    width: 10px;
    height: 10px;
  }
}
.roomArea .slick-prev:hover, .roomArea .slick-prev:focus, .roomArea .slick-next:hover, .roomArea .slick-next:focus {
  background: #437598;
}
.roomArea .slick-prev {
  left: 15px;
  padding-left: 14px;
}
@media (max-width: 1180px) {
  .roomArea .slick-prev {
    left: 15px;
  }
}
@media (max-width: 660px) {
  .roomArea .slick-prev {
    left: 10px;
  }
}
@media (max-width: 400px) {
  .roomArea .slick-prev {
    padding-left: 8px;
  }
}
.roomArea .slick-prev::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.roomArea .slick-next {
  right: 16px;
  padding-right: 14px;
}
@media (max-width: 1180px) {
  .roomArea .slick-next {
    right: 16px;
  }
}
@media (max-width: 660px) {
  .roomArea .slick-next {
    right: 10px;
  }
}
@media (max-width: 400px) {
  .roomArea .slick-next {
    padding-right: 8px;
  }
}
.roomArea .slick-next::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}