@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Lato:wght@300;400&family=Montserrat&family=Noto+Serif+TC:wght@400;500&family=Playfair+Display&display=swap");
.artistsArea .right .Img img, .artistsArea .right .item a:before, .productArea .proList .favorites .icon_heart, .productArea .proList .favorites, .bannerArea .arrowBox .arrow::after, .bannerArea .arrowBox .arrow::before, .bannerArea .arrowBox .arrow, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .loadingArea .moon,
.loadingArea .xiangyun_lt,
.loadingArea .xiangyun_rt {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.productArea .titleBox em, .newsArea .titleBox em {
  padding-top: 5px;
}
.productArea .titleBox em:before, .newsArea .titleBox em:before {
  display: none;
}
.productArea .titleBox em:after, .newsArea .titleBox em:after {
  content: "";
  width: 1px;
  height: 25px;
  display: block;
  margin: 15px auto;
  background-color: #aaaaaa;
}

.artistsArea .left .Txt .text {
  color: #272727;
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 2.04px;
}

.artistsArea .left .Txt p {
  color: #acacac;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 3.5px;
  padding-top: 25px;
}

@-webkit-keyframes listShow {
  0% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes listShow {
  0% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes round2 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes round2 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
body {
  overflow: hidden;
}

.loadingArea .loadLogo {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin: auto;
  text-align: center;
}

.loadingArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  opacity: 1;
  background-color: #ffffff;
}
.loadingArea:before, .loadingArea:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.loadingArea:before {
  background-color: rgba(102, 106, 115, 0.12);
  z-index: 1;
}
.loadingArea:after {
  z-index: -1;
  background-image: url(../images/loading/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  -webkit-animation: somethingShow 1s 1s forwards;
          animation: somethingShow 1s 1s forwards;
}
.loadingArea .moon,
.loadingArea .xiangyun_lt,
.loadingArea .xiangyun_rt {
  position: absolute;
  z-index: 3;
  opacity: 0;
}
.loadingArea .moon {
  right: 20%;
  top: 20%;
  -webkit-animation: somethingShow 1s 1.7s forwards;
          animation: somethingShow 1s 1.7s forwards;
}
.loadingArea .xiangyun_lt {
  left: -200px;
  top: 10%;
  -webkit-animation: xiangyun_lt 1s 2.2s forwards;
          animation: xiangyun_lt 1s 2.2s forwards;
}
.loadingArea .xiangyun_rt {
  right: -200px;
  bottom: 10%;
  -webkit-animation: xiangyun_rt 1s 2.2s forwards;
          animation: xiangyun_rt 1s 2.2s forwards;
}
.loadingArea .loadLogo {
  opacity: 0;
  -webkit-animation: somethingShow 1.5s 0.5s forwards;
          animation: somethingShow 1.5s 0.5s forwards;
  z-index: 99;
}
.loadingArea.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-animation: logoFadeOut 1.5s 3s forwards;
          animation: logoFadeOut 1.5s 3s forwards;
}

@-webkit-keyframes xiangyun_lt {
  from {
    left: -200px;
    opacity: 0;
  }
  to {
    left: -90px;
    opacity: 1;
  }
}

@keyframes xiangyun_lt {
  from {
    left: -200px;
    opacity: 0;
  }
  to {
    left: -90px;
    opacity: 1;
  }
}
@-webkit-keyframes xiangyun_rt {
  from {
    right: -200px;
    opacity: 0;
  }
  to {
    right: -90px;
    opacity: 1;
  }
}
@keyframes xiangyun_rt {
  from {
    right: -200px;
    opacity: 0;
  }
  to {
    right: -90px;
    opacity: 1;
  }
}
@-webkit-keyframes somethingShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes somethingShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes logoFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logoFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes progressBarAnimation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progressBarAnimation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progressCircleAnimation {
  0% {
    stroke-dashoffset: 153.86;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes progressCircleAnimation {
  0% {
    stroke-dashoffset: 153.86;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-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%);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.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;
}

#gmap_s {
  width: 100%;
  height: 400px;
}

header {
  border-bottom: 0;
}
header.sticky {
  border-bottom: 1px solid #eeeeee;
}

.bannerArea {
  margin-bottom: 40px;
}
.bannerArea .wrap {
  width: 100%;
  max-width: 100%;
  padding: 0 35px;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerList .slick-slide.slick-current .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerList .slick-slide.slick-current .Txt .subtitle {
  -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerList .slick-slide.slick-current .Txt .text {
  -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerList .slick-slide.slick-current .Txt .bannerBtn {
  -webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .bannerList .slick-slide.slick-current .Txt .videoBtn::after {
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.bannerArea .bannerItem .Txt {
  max-width: 490px;
  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;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bannerArea .bannerItem .Txt.right {
  left: auto;
  right: 23.9%;
}
.bannerArea .bannerItem .Txt.left {
  left: 23.9%;
  right: auto;
}
.bannerArea .bannerItem .Txt .title,
.bannerArea .bannerItem .Txt .subtitle {
  color: #234784;
  font-family: "Cormorant Garamond";
  font-size: 104px;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .subtitle {
  margin-left: 45px;
  padding-bottom: 30px;
  margin-bottom: 15px;
  position: relative;
  line-height: 0.6;
}
.bannerArea .bannerItem .Txt .subtitle:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background-color: #adadad;
  width: 45px;
  height: 1px;
  display: block;
}
.bannerArea .bannerItem .Txt .text {
  color: #676767;
  font-family: "Cormorant Garamond";
  display: block;
  font-size: 17px;
  line-height: 21px;
  margin-top: 10px;
  opacity: 0;
  padding-left: 45px;
}
.bannerArea .bannerItem .Txt .bannerBtn {
  opacity: 0;
  padding-top: 30px;
}
.bannerArea .bannerItem .Txt .bannerBtn a {
  background-color: #2c3b6e;
  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: #2c3b6e;
}
.bannerArea .bannerItem .Txt .bannerVideo {
  display: none;
}
.bannerArea .bannerItem .Txt .bannerVideo.show {
  display: block;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  bottom: 150px;
  right: 0;
}
.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 .socialBox {
  display: none;
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 2;
  -webkit-transform: translateY(calc(-50% + 0.5px));
          transform: translateY(calc(-50% + 0.5px));
}
.bannerArea .socialBox.show {
  display: block;
}
.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: #2c3b6e;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #2c3b6e;
}
.bannerArea .arrowBox {
  display: none;
  position: absolute;
  top: 50%;
  right: 50px;
  z-index: 2;
  -webkit-transform: translateY(calc(-50% + 0.5px));
          transform: translateY(calc(-50% + 0.5px));
}
.bannerArea .arrowBox.show {
  display: block;
}
.bannerArea .arrowBox .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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 .arrow::after {
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  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 #2c3b6e transparent;
}
.bannerArea .arrowBox .arrowNext::before {
  border-width: 9px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
.bannerArea .arrowBox .arrowNext:hover::before {
  border-color: #2c3b6e transparent transparent transparent;
}
.bannerArea .arrowBox .progressCircle {
  width: 50px;
  height: 50px;
  display: none;
  fill: none;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  opacity: 1;
  position: relative;
  z-index: 3;
  stroke-dashoffset: 0;
  stroke-dasharray: 153.86;
  stroke: #2c3b6e;
  stroke-width: 3px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.bannerArea .arrowBox .progressCircle.show {
  display: block;
}
.bannerArea .arrowBox .progressCircle.active {
  -webkit-animation: progressCircleAnimation linear forwards;
          animation: progressCircleAnimation linear forwards;
}
.bannerArea .progressBox {
  width: 100%;
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 2;
}
.bannerArea .progressBox .wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bannerArea .progressBox .progressBar {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: none;
  margin-left: 0;
  position: relative;
}
.bannerArea .progressBox .progressBar.show {
  display: block;
}
.bannerArea .progressBox .progressBar.notFull {
  margin-left: 30px;
}
.bannerArea .progressBox .progressBar .path {
  width: 100%;
  height: 2px;
  display: inline-block;
  fill: #2c3b6e;
  vertical-align: middle;
  position: absolute;
  z-index: 2;
}
.bannerArea .progressBox .progressBar .path rect {
  width: 100%;
  height: 2px;
}
.bannerArea .progressBox .progressBar .path.active rect {
  -webkit-animation: progressBarAnimation linear forwards;
          animation: progressBarAnimation linear forwards;
}
.bannerArea .progressBox .slidePageBox {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: none;
}
.bannerArea .progressBox .slidePageBox.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bannerArea .progressBox .slidePageBox span {
  color: #fff;
  display: inline-block;
  font-size: 20px;
}
.bannerArea .progressBox .slidePageBox span.current {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.bannerArea .progressBox .slidePageBox span.total {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.bannerArea .progressBox .slidePageBox i {
  color: #fff;
  display: inline-block;
  font-size: 30px;
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: none;
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}
.bannerArea .scrollDown.show {
  display: block;
}
.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: #2c3b6e;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 1600px) {
  .bannerArea .bannerItem .Txt.right {
    right: 15%;
  }
  .bannerArea .bannerItem .Txt.left {
    left: 15%;
  }
  .bannerArea .bannerItem .Txt .title,
.bannerArea .bannerItem .Txt .subtitle {
    font-size: 90px;
  }
}
@media (max-width: 1300px) {
  .bannerArea .bannerItem .Txt.right {
    right: 5%;
  }
  .bannerArea .bannerItem .Txt.left {
    left: 7%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    max-width: 350px;
  }
  .bannerArea .bannerItem .Txt .title,
.bannerArea .bannerItem .Txt .subtitle {
    font-size: 65px;
  }
  .bannerArea .bannerItem .Txt .text {
    font-size: 15px;
    line-height: 19px;
  }
  .bannerArea .slick-dots {
    bottom: 20px;
  }
  .bannerArea .slick-prev, .bannerArea .slick-next {
    width: 70px;
  }
  .bannerArea .slick-prev:before, .bannerArea .slick-next:before {
    width: 70px;
  }
}
@media (max-width: 768px) {
  .bannerArea .wrap {
    padding: 0 15px;
  }
  .bannerArea .bannerItem .Txt {
    max-width: 300px;
  }
  .bannerArea .bannerItem .Txt.right {
    right: 20px;
  }
  .bannerArea .bannerItem .Txt.left {
    left: 20px;
  }
  .bannerArea .bannerItem .Txt .title,
.bannerArea .bannerItem .Txt .subtitle {
    font-size: 55px;
  }
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .subtitle {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .bannerArea .bannerItem .Txt .subtitle:before {
    display: none;
  }
  .bannerArea .bannerItem .Txt .text {
    display: none;
  }
}
@media (max-width: 414px) {
  .bannerArea {
    margin-bottom: 25px;
  }
}

.newsArea {
  padding: 65px 0;
  background-image: url(../images/bg/texture2.png);
  position: relative;
}
.newsArea:after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  background-image: url(../images/bg/mountain_1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 973px;
  height: 1010px;
  display: block;
  opacity: 0.17;
  pointer-events: none;
}
.newsArea .wrap {
  position: relative;
  z-index: 1;
}
.newsArea .newsList_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
}
.newsArea .newsList_box .newsList_left,
.newsArea .newsList_box .newsList_right {
  width: 50%;
}
.newsArea .newsList_box .ribbon {
  color: #ffffff;
}
.newsArea .newsList_box .ribbon:before, .newsArea .newsList_box .ribbon:after {
  border-color: #ffffff;
}
.newsArea .newsList_box .newsList_left {
  padding-right: 45px;
  position: relative;
}
.newsArea .newsList_box .newsList_left:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 1px;
  height: calc(100% - 37.5px);
  background-color: #cecece;
}
.newsArea .newsList_box .newsList_right {
  padding-left: 45px;
  margin-top: -35px;
  position: relative;
}
.newsArea .newsList_box .newsList_right:hover .arrows {
  opacity: 1;
}
.newsArea .newsList_box .newsList_right .arrows {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  opacity: 0;
  z-index: 2;
}
.newsArea .newsList_box .newsList_right .arrows.arrowPrev {
  top: -20px;
}
.newsArea .newsList_box .newsList_right .arrows.arrowPrev:before {
  background-image: url(../images/icon/prevArrow.png);
}
.newsArea .newsList_box .newsList_right .arrows.arrowNext {
  bottom: -20px;
}
.newsArea .newsList_box .newsList_right .arrows.arrowNext:before {
  background-image: url(../images/icon/nextArrow.png);
}
.newsArea .newsList_box .newsList_right .arrows:before {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -5.5px;
  width: 22px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.newsArea .newsList .Img {
  border: 3px solid #ffffff;
  -webkit-box-shadow: 1px 2px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 2px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: border-color 0.5s;
  transition: border-color 0.5s;
}
.newsArea .newsList .Img:hover {
  border: 5px solid #153066;
}
.newsArea .newsList.newsList_one {
  margin: -25px;
}
.newsArea .newsList.newsList_one .item {
  position: relative;
  margin: 25px;
}
.newsArea .newsList.newsList_one .Img {
  position: relative;
}
.newsArea .newsList.newsList_one .Img:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 160px;
  content: "";
  background: rgba(0, 0, 0, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgb(19, 19, 19)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(19, 19, 19)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(19, 19, 19) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#131314", endColorstr="#131314", GradientType=0 );
}
.newsArea .newsList.newsList_one .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  pointer-events: none;
}
.newsArea .newsList.newsList_one .Txt .left {
  width: 85px;
  padding-right: 20px;
}
.newsArea .newsList.newsList_one .Txt .right {
  width: calc(100% - 85px);
  padding-left: 25px;
  position: relative;
}
.newsArea .newsList.newsList_one .Txt .right:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  width: 1px;
  height: 88px;
  background-color: rgba(255, 255, 255, 0.4);
}
.newsArea .newsList.newsList_one .Txt .date,
.newsArea .newsList.newsList_one .Txt .newIcon,
.newsArea .newsList.newsList_one .Txt .title a {
  color: #ffffff;
}
.newsArea .newsList.newsList_one .Txt .date {
  font-family: "Montserrat";
}
.newsArea .newsList.newsList_one .Txt .date span {
  display: block;
  text-align: center;
}
.newsArea .newsList.newsList_one .Txt .date .ym {
  font-size: 13px;
  letter-spacing: 2.08px;
}
.newsArea .newsList.newsList_one .Txt .date .day {
  font-size: 50px;
  letter-spacing: 5px;
  padding-top: 10px;
}
.newsArea .newsList.newsList_one .Txt .title {
  font-size: 19px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 2.28px;
  height: 75px;
  padding-top: 15px;
}
.newsArea .newsList.newsList_two {
  margin-left: -20px;
  margin-right: -20px;
}
.newsArea .newsList.newsList_two .slick-slide {
  position: relative;
}
.newsArea .newsList.newsList_two .slick-slide.slick-active:after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background-color: #cecece;
}
.newsArea .newsList.newsList_two .slick-slide.slick-active + .slick-active + .slick-active + .slick-active:after {
  background-color: transparent;
}
.newsArea .newsList.newsList_two .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 20px;
}
.newsArea .newsList.newsList_two .Img {
  width: 140px;
}
.newsArea .newsList.newsList_two .Txt {
  width: calc(100% - 140px);
  padding-left: 24px;
}
.newsArea .newsList.newsList_two .Txt .innerBox {
  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;
}
.newsArea .newsList.newsList_two .Txt .title {
  color: #363636;
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 2.04px;
  padding-top: 15px;
  padding-bottom: 10px;
  height: 52px;
}
.newsArea .newsList.newsList_two .Txt p {
  color: #8d8d8d;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 3.5px;
  height: 42px;
}
.newsArea .newsList.newsList_two .Txt .date {
  color: #274271;
  font-size: 13px;
  font-family: "Montserrat";
  letter-spacing: 2.08px;
}
.newsArea .newsList.newsList_two .Txt .date:before {
  content: "";
  width: 22px;
  height: 1px;
  display: inline-block;
  background-color: #cecece;
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 1px;
}
@media (max-width: 1180px) {
  .newsArea {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .newsArea .newsList_box {
    display: block;
    padding-top: 0;
  }
  .newsArea .newsList_box .newsList_left {
    padding-right: 0;
    width: 100%;
  }
  .newsArea .newsList_box .newsList_left:after {
    display: none;
  }
  .newsArea .newsList_box .newsList_right {
    display: none;
  }
  .newsArea .newsList.newsList_one {
    margin: 0;
  }
  .newsArea .newsList.newsList_one .Txt {
    position: relative;
    pointer-events: auto;
    padding: 30px 0;
  }
  .newsArea .newsList.newsList_one .Txt .date {
    color: #274271;
  }
  .newsArea .newsList.newsList_one .Txt .newIcon {
    color: #6f6f6f;
  }
  .newsArea .newsList.newsList_one .Txt .title a {
    color: #363636;
  }
  .newsArea .newsList.newsList_one .Txt .right:before {
    background-color: #cecece;
  }
  .newsArea .slick-dots {
    position: relative;
    bottom: 0;
  }
}

.productArea {
  padding-top: 80px;
  padding-bottom: 95px;
  background-image: url(../images/bg/mountain_2.png);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.productArea .ribbon {
  right: 10px;
  top: -15px;
}
.productArea .proBox {
  overflow: hidden;
}
.productArea .proList {
  margin-left: -40px;
  margin-right: -40px;
  border-top: 1px solid #e5e5e5;
}
.productArea .proList li {
  padding: 35px 40px;
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid transparent;
  border-bottom: 1px solid #e5e5e5;
}
.productArea .proList .Img {
  position: relative;
}
.productArea .proList .Img a {
  display: block;
  position: relative;
  border: 8px solid #f1f1f1;
}
.productArea .proList .Img a:hover {
  border-color: #2c3b6e;
}
.productArea .proList .title {
  padding-top: 15px;
}
.productArea .proList .title a {
  display: block;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.productArea .proList .newIcon {
  display: block;
  text-align: center;
  padding: 15px 0;
  margin-right: 0;
}
.productArea .proList .newIcon:before, .productArea .proList .newIcon:after {
  display: none;
}
.productArea .proList .favorites {
  position: absolute;
  left: 12px;
  bottom: 8px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  z-index: 10;
  pointer-events: auto;
  display: none;
}
.productArea .proList .favorites .icon_heart {
  width: 18px;
  height: 15px;
  fill: none;
  stroke: #464646;
  stroke-width: 20px;
  stroke-linecap: round;
}
.productArea .proList .favorites.current .icon_heart {
  fill: #153066;
  stroke: none;
  stroke-width: 0;
}
.productArea .slick-dots {
  position: relative;
  bottom: 0;
  padding-top: 20px;
}
.productArea .slick-dots li {
  padding: 0 !important;
  border: 0;
}
.productArea .btnBox {
  padding-bottom: 0;
}
@media (max-width: 1180px) {
  .productArea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .productArea .proList {
    margin-left: -20px;
    margin-right: -20px;
  }
  .productArea .proList li {
    padding: 25px 20px;
  }
  .productArea .proList .favorites .icon_heart {
    width: 20px;
    height: 17px;
  }
}

.aboutArea {
  background-image: url(../images/bg/ft_bg.jpg);
  position: relative;
  padding-bottom: 10px;
}
.aboutArea:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/bg/texture3.jpg);
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: cover;
  width: 100%;
  height: 630px;
  display: block;
  z-index: 0;
}
.aboutArea .wrap {
  position: relative;
  max-width: 1345px;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutArea .left {
  width: 790px;
}
@media (min-width: 791px) {
  .aboutArea .left .Img {
    position: relative;
    display: block;
    width: 100%;
    max-width: 690px;
    height: 0;
    padding-bottom: 620px;
    overflow: hidden;
  }
  .aboutArea .left .Img img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    max-height: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.aboutArea .right {
  width: calc(100% - 790px);
  padding: 40px 0 40px 40px;
}
.aboutArea .btn_cis {
  color: #b0b0b0;
}
.aboutArea .btn_cis:hover {
  color: #c8a063;
}
.aboutArea .titleBox .title {
  color: #ffffff;
}
.aboutArea .titleBox em {
  color: #acacac;
}
.aboutArea .Txt .text {
  color: #ffffff;
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 2.04px;
}
.aboutArea .Txt p {
  color: #acacac;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 3.5px;
  padding-top: 25px;
}
.aboutArea .icon_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}
.aboutArea .icon_list li {
  text-align: center;
  width: 20%;
}
.aboutArea .icon_list li .Img {
  margin-bottom: 25px;
}
.aboutArea .icon_list li .Img img {
  margin: auto;
}
.aboutArea .icon_list li .Txt {
  color: #fdfdfd;
  font-size: 14px;
  border-left: 1px solid #666666;
}
.aboutArea .icon_list li:last-child .Txt {
  border-right: 1px solid #666666;
}
.aboutArea #video-player {
  position: absolute;
  width: 450px;
  left: 44%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.aboutArea #video-player .video_line {
  width: 290px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.aboutArea #video-player .video_line:before {
  position: absolute;
  left: 0;
  top: 11px;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #c8a063;
  display: block;
  border-radius: 50%;
}
.aboutArea #video-player .videoBox {
  width: 148px;
  height: 148px;
  position: relative;
  margin-right: 0;
  margin-left: auto;
}
.aboutArea #video-player .videoBox:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../images/bg/dot_circle.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.aboutArea #video-player .videoBox:hover:before {
  -webkit-animation: 7s round linear both infinite;
          animation: 7s round linear both infinite;
}
.aboutArea #video-player .videoBox:hover .videoBtn .play_txt:before {
  -webkit-animation: 7s round2 linear both infinite;
          animation: 7s round2 linear both infinite;
}
.aboutArea #video-player .videoBtn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: block;
  padding: 6px;
  background-image: url(../images/bg/playVideo_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 128px;
  height: 128px;
  margin: auto;
}
.aboutArea #video-player .videoBtn .play_txt {
  color: #595d6b;
  font-size: 14px;
  font-family: "Cormorant Garamond";
  width: 115px;
  height: 115px;
  z-index: 2;
  text-align: center;
  position: relative;
}
.aboutArea #video-player .videoBtn .play_txt span {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  right: 0;
}
.aboutArea #video-player .videoBtn .play_txt span img {
  display: block;
  margin: auto;
  padding-bottom: 10px;
}
.aboutArea #video-player .videoBtn .play_txt:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(../images/circle2.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1360px) {
  .aboutArea #video-player .video_line {
    display: none;
  }
  .aboutArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 20px;
  }
  .aboutArea .right {
    padding-left: 0;
  }
}
@media (max-width: 1180px) {
  .aboutArea {
    padding-top: 50px;
  }
  .aboutArea .titleBox {
    text-align: center;
  }
  .aboutArea .titleBox em {
    padding-top: 5px;
  }
  .aboutArea .titleBox em:before {
    content: "";
    width: 1px;
    height: 25px;
    display: block;
    margin: 15px auto;
    background-color: #aaaaaa;
  }
  .aboutArea #video-player {
    width: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .aboutArea .left {
    max-width: 700px;
    width: 100%;
    position: relative;
  }
  .aboutArea .left .Img {
    max-width: 100%;
  }
  .aboutArea .right {
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding-bottom: 20px;
  }
  .aboutArea .right .Txt {
    text-align: center;
  }
  .aboutArea .right .btnBox {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .aboutArea #video-player {
    position: relative;
    margin-top: -80px;
  }
  .aboutArea #video-player .videoBox {
    margin-right: auto;
  }
  .aboutArea .icon_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .aboutArea .icon_list li {
    width: 33.33%;
    margin: 15px 0;
  }
  .aboutArea .icon_list li:nth-child(3) .Txt {
    border-right: 1px solid #666666;
  }
}

.artistsArea {
  padding-top: 85px;
  padding-bottom: 130px;
  position: relative;
}
.artistsArea:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 580px;
  background-image: url(../images/bg/texture2.png);
  z-index: -1;
}
.artistsArea .wrap {
  max-width: 1770px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.artistsArea .left {
  width: 505px;
}
.artistsArea .left .Txt {
  max-width: 315px;
  margin: auto;
  position: relative;
}
.artistsArea .left .btnBox {
  max-width: 315px;
  position: absolute;
  left: 0;
  bottom: -45%;
}
.artistsArea .right {
  width: calc(100% - 505px);
}
.artistsArea .right .item {
  position: relative;
}
.artistsArea .right .item a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #444d69;
}
.artistsArea .right .item a:hover .Img img {
  -webkit-filter: grayscale(0);
}
.artistsArea .right .item a:hover:before {
  left: -18px;
  top: 18px;
}
.artistsArea .right .Txt {
  text-align: center;
  color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 55px;
}
.artistsArea .right .Img img {
  -webkit-filter: grayscale(1);
}
.artistsArea .right .title {
  font-size: 18px;
  font-weight: 500;
}
.artistsArea .right p {
  display: block;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  padding-top: 20px;
}
.artistsArea .right p span {
  padding: 0 10px;
  letter-spacing: 3.5px;
}
.artistsArea .right p:before {
  content: "[";
}
.artistsArea .right p:after {
  content: "]";
}
.artistsArea .artistsList {
  max-width: 1255px;
  margin: auto;
  padding: 85px;
  background-color: #ffffff;
  overflow: hidden;
  margin: -20px -15px;
}
.artistsArea .artistsList li {
  padding: 20px 15px;
}
.artistsArea .slick-prev, .artistsArea .slick-next {
  width: 70px;
}
.artistsArea .slick-prev:before, .artistsArea .slick-next:before {
  width: 70px;
}
.artistsArea .slick-prev {
  left: 0;
}
.artistsArea .slick-next {
  right: 0;
}
.artistsArea .slick-dots li {
  padding: 0;
}
@media (max-width: 1300px) {
  .artistsArea .left {
    width: 30%;
  }
  .artistsArea .left .Txt {
    max-width: 100%;
    padding-right: 10px;
  }
  .artistsArea .right {
    width: 70%;
  }
}
@media (max-width: 1180px) {
  .artistsArea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .artistsArea .titleBox {
    text-align: center;
  }
  .artistsArea .titleBox em {
    padding-top: 5px;
  }
  .artistsArea .titleBox em:before {
    display: none;
  }
  .artistsArea .titleBox em:after {
    content: "";
    width: 1px;
    height: 25px;
    display: block;
    margin: 15px auto;
    background-color: #aaaaaa;
  }
  .artistsArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .artistsArea .left,
.artistsArea .right {
    width: 100%;
  }
  .artistsArea .left {
    padding-bottom: 15px;
  }
  .artistsArea .left .Txt {
    text-align: center;
    max-width: 500px;
    padding-right: 0;
  }
  .artistsArea .btnBox {
    position: relative;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    padding: 0;
  }
  .artistsArea .right .Txt {
    bottom: 20px;
  }
  .artistsArea .right .item .Img img {
    -webkit-filter: grayscale(0);
  }
  .artistsArea .artistsList {
    margin: 20px 0;
    padding: 0 5px;
  }
  .artistsArea .slick-dots {
    position: relative;
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .artistsArea .artistsList {
    max-width: 390px;
    margin: auto;
  }
}