<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(//fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&amp;family=Noto+Sans+TC:wght@300;400;500;700&amp;family=Roboto:wght@500&amp;display=swap);
.bannerArea .arrowBox .arrow::after, .bannerArea .arrowBox .arrow::before, .bannerArea .arrowBox .arrow, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li {
  transition: all 0.5s;
}

@-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 progressBarHorizontal {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progressBarHorizontal {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progressBarVertical {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes progressBarVertical {
  0% {
    height: 0;
  }
  100% {
    height: 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);
  }
}
@-webkit-keyframes translateY {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes translateY {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes translateY2 {
  0% {
    -webkit-transform: translateY(calc(-50% - 10px));
            transform: translateY(calc(-50% - 10px));
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 1;
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(calc(-50% - 10px));
            transform: translateY(calc(-50% - 10px));
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 1;
  }
}
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  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;
  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;
  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 {
  background: url(../images/bg.jpg) no-repeat top/cover;
  padding: 0;
}
.mainArea .wrap {
  max-width: 1240px;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 1160px;
  width: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 90px 20px 146px;
  z-index: 2;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 90px 20px 100px;
  }
}
@media (max-width: 479px) {
  .bannerArea .bannerItem .Txt {
    padding: 90px 20px;
  }
}
.bannerArea .bannerItem .Txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt::before {
    height: 69px;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: 73px;
  font-weight: 500;
  font-family: "Cormorant", "Noto Sans TC";
  line-height: 1.2;
  letter-spacing: 0.5px;
  opacity: 0;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 50px;
  }
}
@media (max-width: 479px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 38px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-top: 3px;
  opacity: 0;
}
@media (max-width: 479px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 25px;
  }
}
.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: #cdaf76;
  color: #fff;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 15px 20px;
  text-align: center;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #cdaf76;
}
.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 .bannerItem .Img {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerItem.slick-current .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.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 .bannerItem.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 .bannerItem.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 .bannerItem.slick-current .Txt .videoBtn::after {
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.bannerArea .socialBox {
  display: none;
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .socialBox.show {
  display: block;
}
.bannerArea .socialBox .socialList {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -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: #cdaf76;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #cdaf76;
}
.bannerArea .arrowBox {
  display: none;
  position: absolute;
  top: 50%;
  right: 50px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.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 #cdaf76 transparent;
}
.bannerArea .arrowBox .arrowNext::before {
  border-width: 9px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
.bannerArea .arrowBox .arrowNext:hover::before {
  border-color: #cdaf76 transparent transparent transparent;
}
.bannerArea .progressBar {
  background-color: #fff;
  display: none;
  position: absolute;
  bottom: 100px;
  z-index: 2;
}
.bannerArea .progressBar.show {
  display: block;
}
.bannerArea .progressBar.horizontal .path, .bannerArea .progressBar.vertical .path {
  width: 100%;
  height: 2px;
  display: inline-block;
  fill: #cdaf76;
  vertical-align: middle;
  position: absolute;
  z-index: 2;
}
.bannerArea .progressBar.horizontal .path rect, .bannerArea .progressBar.vertical .path rect {
  width: 100%;
  height: 2px;
}
.bannerArea .progressBar.horizontal {
  width: 300px;
  height: 2px;
  left: 355px;
}
.bannerArea .progressBar.horizontal .path {
  width: 100%;
  height: 2px;
}
.bannerArea .progressBar.horizontal .path rect {
  width: 100%;
  height: 2px;
}
.bannerArea .progressBar.horizontal .path.active rect {
  -webkit-animation: progressBarHorizontal linear forwards;
          animation: progressBarHorizontal linear forwards;
}
.bannerArea .progressBar.vertical {
  width: 2px;
  height: 100px;
  right: 500px;
}
.bannerArea .progressBar.vertical .path {
  width: 2px;
  height: 100px;
}
.bannerArea .progressBar.vertical .path rect {
  width: 2px;
  height: 100px;
}
.bannerArea .progressBar.vertical .path.active rect {
  -webkit-animation: progressBarVertical linear forwards;
          animation: progressBarVertical linear forwards;
}
.bannerArea .progressBar.circle {
  width: 50px;
  height: 50px;
  background-color: transparent;
  position: absolute;
  bottom: 100px;
  right: 355px;
  z-index: 3;
}
.bannerArea .progressBar.circle .path {
  width: 50px;
  height: 50px;
  fill: none;
  transition: all 0.1s ease-in-out;
  opacity: 1;
  stroke-dashoffset: 0;
  stroke-dasharray: 153.86;
  stroke: #cdaf76;
  stroke-width: 3px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.bannerArea .progressBar.circle .path.active circle {
  -webkit-animation: progressCircleAnimation linear forwards;
          animation: progressCircleAnimation linear forwards;
}
.bannerArea .slidePage {
  -ms-flex-align: start;
      align-items: flex-start;
  color: #fff;
  display: none;
  font-size: 20px;
  position: absolute;
  bottom: 130px;
  z-index: 2;
}
.bannerArea .slidePage.show {
  display: block;
}
.bannerArea .slidePage.current {
  left: 355px;
}
.bannerArea .slidePage.total {
  left: 365px;
}
.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: #cdaf76;
  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 {
  position: relative;
  padding: 71px 0 40px;
}
@media (max-width: 1180px) {
  .newsArea {
    padding: 119px 0 40px;
  }
}
.newsArea .wrap {
  position: relative;
  z-index: 2;
}
.newsArea .m2List {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  width: 100%;
  text-align: center;
}
.newsArea .m2List li {
  display: inline-block;
}
.newsArea .m2List li a {
  position: relative;
  min-width: 94px;
  color: #b2b2b2;
  font-size: 16px;
  font-weight: 300;
  background: none;
  padding: 0 15px;
  margin-bottom: 6px;
}
@media (max-width: 640px) {
  .newsArea .m2List li a {
    min-width: 92px;
  }
}
.newsArea .m2List li a::before {
  content: "";
  position: absolute;
  top: -3px;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #434343;
  transition: all 0.4s;
  opacity: 0;
}
.newsArea .m2List li a.current, .newsArea .m2List li a:hover {
  color: #4b4b4b;
}
.newsArea .m2List li a.current::before, .newsArea .m2List li a:hover::before {
  opacity: 1;
}
.newsArea .m2List li:not(:last-child) a::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  width: 1px;
  height: 16px;
  background-color: #c3c3c3;
}
.newsArea .titleBox {
  margin-bottom: 13px;
}
.newsArea .titleBox em {
  display: block;
}
.newsArea .titleBox h2 {
  position: relative;
  display: inline-block;
}
.newsArea .titleBox h2::before, .newsArea .titleBox h2::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  width: 69px;
  height: 1px;
  background-color: #e9e1d3;
}
@media (max-width: 479px) {
  .newsArea .titleBox h2::before, .newsArea .titleBox h2::after {
    display: none;
  }
}
.newsArea .titleBox h2::before {
  left: -104px;
}
.newsArea .titleBox h2::after {
  right: -104px;
}
.newsArea .newsBox {
  position: relative;
  margin-top: 66px;
}
@media (min-width: 768px) {
  .newsArea .newsBox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    min-height: 337.73px;
  }
}
@media (min-width: 961px) {
  .newsArea .newsBox {
    min-height: 421.61px;
  }
}
.newsArea .newsList {
  max-width: 754px;
  width: 100%;
  -webkit-animation: translateY 0.5s linear forwards;
          animation: translateY 0.5s linear forwards;
  z-index: 2;
}
@media (max-width: 960px) {
  .newsArea .newsList {
    max-width: 604px;
  }
}
@media (max-width: 767px) {
  .newsArea .newsList {
    max-width: 100%;
  }
}
.newsArea .newsList.slick-slider {
  margin-bottom: 0;
}
.newsArea .newsList2,
.newsArea .newsList3 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 639px;
  width: 100%;
  -webkit-animation: translateY2 0.5s linear forwards;
          animation: translateY2 0.5s linear forwards;
  z-index: 1;
}
@media (max-width: 960px) {
  .newsArea .newsList2,
.newsArea .newsList3 {
    max-width: 522px;
  }
}
@media (max-width: 767px) {
  .newsArea .newsList2,
.newsArea .newsList3 {
    display: none;
  }
}
.newsArea .newsList2::before,
.newsArea .newsList3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.newsArea .newsList2.hide,
.newsArea .newsList3.hide {
  display: none;
}
.newsArea .newsList2 {
  left: 0;
}
.newsArea .newsList3 {
  right: 0;
}
.newsArea .arrowBox {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 919px;
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 1000px) {
  .newsArea .arrowBox {
    width: calc(100% - 20px);
  }
}
@media (max-width: 767px) {
  .newsArea .arrowBox {
    display: none;
  }
}
.newsArea .arrow {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #cdaf76;
  cursor: pointer;
  pointer-events: auto;
}
.newsArea .arrow::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.newsArea .arrowPrev:before {
  left: 21px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.newsArea .arrowNext:before {
  right: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.newsArea .slick-dots {
  width: 100%;
  margin: 0;
  bottom: -62px;
  left: 0;
}
@media (max-width: 767px) {
  .newsArea .slick-dots {
    bottom: -46px;
  }
}
.newsArea .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 5px 14.5px;
}
.newsArea .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.newsArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 6px #ccc;
  opacity: 1;
}
.newsArea .slick-dots li.slick-active button::before {
  background-color: #cdaf76;
  opacity: 1;
}
.newsArea .classRowBox {
  margin: 0 -10px;
}
.newsArea .classRowBox &gt; ul {
  position: relative;
}
@media (max-width: 1023px) {
  .newsArea .classRowBox &gt; ul {
    display: -ms-flexbox;
    display: flex;
  }
}
.newsArea .classRowBox &gt; ul &gt; li &gt; a.current + .m2List {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-animation: 0.3s aniSlideBottom both ease-out 0.3s;
          animation: 0.3s aniSlideBottom both ease-out 0.3s;
}
.newsArea .classRowBox &gt; ul &gt; li &gt; a.many {
  min-width: 130px;
}
@media (max-width: 479px) {
  .newsArea .classRowBox &gt; ul &gt; li &gt; a {
    min-width: 130px;
  }
}
.newsArea .classRowBox .m2List {
  display: none;
}
@media (max-width: 1023px) {
  .newsArea .mClassLink {
    display: none;
  }
}
.newsArea .treeImg1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 562px;
  height: 374px;
  background: url(../images/leaf_1.png) no-repeat top/cover;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1440px) {
  .newsArea .treeImg1 {
    width: 400px;
    height: 266px;
  }
}
@media (max-width: 1180px) {
  .newsArea .treeImg1 {
    width: 322px;
    height: 196px;
    background: url(../images/leaf_1_m.png) no-repeat top/cover;
  }
}
.newsArea .treeImg2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 302px;
  height: 689px;
  background: url(../images/leaf_2.png) no-repeat top/cover;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1440px) {
  .newsArea .treeImg2 {
    width: 219px;
    height: 500px;
  }
}
@media (max-width: 1180px) {
  .newsArea .treeImg2 {
    bottom: -240px;
    width: 183px;
    height: 417px;
  }
}
.newsArea .glassImg {
  position: absolute;
  top: 7.5%;
  left: 5%;
  width: 365px;
  height: 466px;
  background: url(../images/glass.png) no-repeat top/cover;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1440px) {
  .newsArea .glassImg {
    width: 250px;
    height: 319px;
  }
}
@media (max-width: 1180px) {
  .newsArea .glassImg {
    top: initial;
    bottom: -50px;
    width: 227px;
    height: 289px;
    z-index: 0;
  }
}
.newsArea .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.rankArea {
  position: relative;
  width: calc(100% - 114px);
  background: url(../images/sing_bg.jpg) no-repeat top/cover;
  margin: 71px auto 0;
  padding: 66px 0 68px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .rankArea {
    width: calc(100% - 40px);
  }
}
.rankArea .wrap {
  max-width: 1074px;
  padding: 0 27px;
}
@media (max-width: 479px) {
  .rankArea .wrap {
    padding: 0 15px;
  }
}
.rankArea .titleBox {
  width: 100%;
  text-align: left;
  margin-bottom: 45px;
}
@media (max-width: 1024px) {
  .rankArea .titleBox {
    margin-bottom: 40px;
  }
}
.rankArea .classBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 30px;
}
@media (min-width: 1025px) {
  .rankArea .classBox {
    display: none;
  }
}
.rankArea .classBox li:first-child {
  margin-right: 15px;
}
.rankArea .classBox a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  min-width: 130px;
  min-height: 36px;
  border-radius: 50px;
  color: #cdaf76;
  background-color: #fff;
  font-size: 15px;
  padding: 5px 10px;
}
@media (max-width: 479px) {
  .rankArea .classBox a {
    min-width: 117px;
  }
}
.rankArea .classBox a.current {
  color: #fff;
  background-color: #cdaf76;
}
.rankArea .contentBox {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.rankArea .leftBox {
  width: 46.86%;
}
@media (max-width: 1024px) {
  .rankArea .leftBox {
    width: 100%;
    pointer-events: none;
    opacity: 0;
  }
}
.rankArea .leftBox.show {
  pointer-events: auto;
  opacity: 1;
}
.rankArea .rightBox {
  position: relative;
  top: -52px;
  width: 46.86%;
}
@media (max-width: 1024px) {
  .rankArea .rightBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
  }
}
.rankArea .rightBox.show {
  pointer-events: auto;
  opacity: 1;
}
.rankArea .title {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  color: #fff;
  font-size: 20px;
  background-color: #cdaf76;
  padding: 14px 20px;
}
@media (max-width: 1024px) {
  .rankArea .title {
    padding: 14px 30px;
  }
}
@media (max-width: 479px) {
  .rankArea .title {
    padding: 14px 15px;
  }
}
.rankArea h4 {
  font-weight: 400;
  letter-spacing: 2px;
}
.rankArea h5 {
  font-weight: 400;
  font-family: "Cormorant";
  letter-spacing: 0.5px;
  padding-left: 8px;
}
@media (max-width: 479px) {
  .rankArea h5 {
    display: none;
  }
}
.rankArea .arrowBox {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 62px;
}
@media (max-width: 479px) {
  .rankArea .arrowBox {
    right: 15px;
  }
}
.rankArea .arrow {
  position: relative;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}
.rankArea .arrow::before {
  content: "";
  position: absolute;
  width: 8.5px;
  height: 8.5px;
  border-top: 1px solid #cdaf76;
  border-right: 1px solid #cdaf76;
}
.rankArea .arrowPrev:before {
  top: 12px;
  left: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.rankArea .arrowNext:before {
  bottom: 11px;
  right: 9px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.rankArea .songList {
  background-color: #fff;
  word-break: break-all;
}
.rankArea .songItem {
  position: relative;
  transition: all 0.3s;
  padding: 0 18px 0 20px;
}
@media (max-width: 1024px) {
  .rankArea .songItem {
    padding: 5px 20px;
  }
}
@media (max-width: 479px) {
  .rankArea .songItem {
    padding: 5px 15px;
  }
}
.rankArea .songItem:hover {
  background-color: #f5f5f5;
}
.rankArea .songItem::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 18px;
  width: calc(100% - 38px);
  height: 1px;
  background-color: #f2f2f2;
}
@media (max-width: 1024px) {
  .rankArea .songItem::before {
    left: 20px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 479px) {
  .rankArea .songItem::before {
    left: 15px;
    width: calc(100% - 30px);
  }
}
.rankArea .item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  min-height: 61px;
}
.rankArea .left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: calc(100% - 201px);
}
@media (max-width: 1024px) {
  .rankArea .left {
    width: calc(100% - 72px);
  }
}
@media (max-width: 479px) {
  .rankArea .left {
    width: calc(100% - 55px);
  }
}
.rankArea .right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  width: 201px;
}
@media (max-width: 1024px) {
  .rankArea .right {
    width: 72px;
  }
}
@media (max-width: 479px) {
  .rankArea .right {
    width: 55px;
  }
}
.rankArea .rank {
  width: 20px;
  height: 20px;
  color: #fff;
  background-color: #cdaf76;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto";
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
}
.rankArea .songBox {
  width: calc(100% - 20px);
  padding: 0 15px 0 26px;
}
@media (max-width: 1024px) {
  .rankArea .songBox {
    padding: 0 15px 0 23px;
  }
}
@media (max-width: 479px) {
  .rankArea .songBox {
    padding: 0 10px;
  }
}
.rankArea .songTitle {
  color: #595959;
  font-size: 17px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .rankArea .songTitle {
    font-size: 16px;
  }
}
.rankArea .singer {
  color: #7e7e7e;
  font-size: 16px;
  text-align: right;
  padding-right: 26px;
}
@media (max-width: 1024px) {
  .rankArea .singer {
    text-align: left;
    line-height: 1;
    padding-right: 0;
  }
}
.rankArea .songBox .singer {
  font-size: 12px;
}
@media (min-width: 1025px) {
  .rankArea .songBox .singer {
    display: none;
  }
}
@media (max-width: 1024px) {
  .rankArea .right .singer {
    display: none;
  }
}
.rankArea .language {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  min-width: 55px;
  min-height: 23px;
  color: #fff;
  background-color: #b4b4b4;
  font-size: 13px;
  font-weight: 300;
  border-radius: 50px;
  text-align: center;
  padding: 0 10px;
}
.rankArea .more a {
  position: relative;
  display: block;
  height: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Cormorant";
  background-color: #c7c7c7;
  line-height: 50px;
  text-align: center;
  transition: all 0.4s;
}
@media (min-width: 1181px) {
  .rankArea .more a::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: calc(50% - 31px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent #fff;
    transition: all 0.4s;
    opacity: 0;
  }
  .rankArea .more a:hover {
    background-color: #cdaf76;
  }
  .rankArea .more a:hover::before {
    right: calc(50% - 41px);
    opacity: 1;
  }
}

.storeArea {
  position: relative;
  padding: 74px 0 100px;
}
@media (max-width: 1023px) {
  .storeArea {
    padding: 66px 0 116px;
  }
}
.storeArea .wrap {
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .storeArea .wrap {
    max-width: 1140px;
  }
}
@media (max-width: 1344px) {
  .storeArea .wrap {
    max-width: 1040px;
  }
}
@media (max-width: 1280px) {
  .storeArea .wrap {
    max-width: 940px;
  }
}
@media (max-width: 1180px) {
  .storeArea .wrap {
    max-width: 840px;
  }
}
@media (max-width: 1023px) {
  .storeArea .wrap {
    max-width: 100%;
    padding: 0;
  }
}
.storeArea .titleBox {
  margin-bottom: 14px;
}
@media (max-width: 1023px) {
  .storeArea .classRowBox {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .storeArea .classRowBox &gt; ul {
    display: -ms-flexbox;
    display: flex;
  }
}
.storeArea .classRowBox &gt; ul &gt; li &gt; a.many {
  min-width: 130px;
}
@media (max-width: 479px) {
  .storeArea .classRowBox &gt; ul &gt; li &gt; a {
    min-width: 130px;
  }
}
@media (max-width: 1023px) {
  .storeArea .mClassLink {
    display: none;
  }
}
.storeArea .storeBox {
  position: relative;
}
.storeArea .storeList {
  margin: 0 -21px;
  -webkit-animation: translateY 0.7s linear forwards;
          animation: translateY 0.7s linear forwards;
}
@media (max-width: 1023px) {
  .storeArea .storeList {
    margin: 0;
  }
}
.storeArea .storeItem {
  padding: 10px 21px 0;
}
@media (max-width: 1023px) {
  .storeArea .storeItem {
    padding: 10px 11.5px 0;
  }
}
.storeArea .item {
  box-shadow: 0 0 6px #ccc;
}
.storeArea .Txt {
  background-color: #fff;
  padding: 28px 25px 36px;
}
@media (max-width: 479px) {
  .storeArea .Txt {
    padding: 17px;
  }
}
.storeArea .Txt ul {
  color: #616161;
  font-size: 15px;
  padding-top: 13px;
}
@media (max-width: 479px) {
  .storeArea .Txt ul {
    font-size: 13px;
  }
}
.storeArea .Txt ul li {
  display: -ms-flexbox;
  display: flex;
}
.storeArea .Txt ul a {
  color: #616161;
}
.storeArea .Txt ul a:hover {
  color: #cdaf76;
}
.storeArea h3 a {
  color: #494949;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 479px) {
  .storeArea h3 a {
    font-size: 18px;
  }
}
.storeArea h3 a:hover {
  color: #cdaf76;
}
.storeArea .left {
  width: 66px;
}
@media (max-width: 479px) {
  .storeArea .left {
    width: 60px;
  }
}
.storeArea .left span {
  display: inline-block;
  width: 15px;
  text-align: center;
  margin-right: 6px;
}
.storeArea .left i {
  color: #cdaf76;
}
.storeArea .right {
  width: calc(100% - 66px);
  letter-spacing: 1px;
}
@media (max-width: 479px) {
  .storeArea .right {
    width: calc(100% - 60px);
  }
}
.storeArea .slick-dots {
  bottom: -50px;
  left: 0;
}
@media (max-width: 767px) {
  .storeArea .slick-dots {
    bottom: -62px;
  }
}
.storeArea .slick-dots li {
  margin: 0 9px;
}
.storeArea .slick-dots li button::before {
  color: #fff;
  text-shadow: 0px 0px 3px #ccc;
  opacity: 1;
}
.storeArea .slick-dots li.slick-active button::before {
  color: #cdaf76;
}
.storeArea .arrowBox {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: calc(100% + 200px);
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 1023px) {
  .storeArea .arrowBox {
    display: none;
  }
}
.storeArea .arrow {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #cdaf76;
  cursor: pointer;
  pointer-events: auto;
}
.storeArea .arrow::before {
  content: "";
  position: absolute;
  top: 19px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.storeArea .arrowPrev:before {
  left: 19px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.storeArea .arrowNext:before {
  right: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.storeArea .giftImg1 {
  position: absolute;
  top: 8.5%;
  left: 1%;
  width: 319px;
  height: 381px;
  background: url(../images/gift_1.png) no-repeat top/cover;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1440px) {
  .storeArea .giftImg1 {
    width: 200px;
    height: 239px;
  }
}
@media (max-width: 1180px) {
  .storeArea .giftImg1 {
    width: 86px;
    height: 116px;
    background: url(../images/gift_1_m.png) no-repeat top/cover;
  }
}
.storeArea .giftImg2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 397px;
  height: 381px;
  background: url(../images/gift_2.png) no-repeat top/cover;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1440px) {
  .storeArea .giftImg2 {
    width: 297px;
    height: 285px;
  }
}
@media (max-width: 1180px) {
  .storeArea .giftImg2 {
    width: 169px;
    height: 211px;
    background: url(../images/gift_2_m.png) no-repeat top/cover;
  }
}
.storeArea .ribbon1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 378px;
  height: 277px;
  background: url(../images/ribbon_1.png) no-repeat top/cover;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1440px) {
  .storeArea .ribbon1 {
    width: 272px;
    height: 203px;
  }
}
@media (max-width: 1180px) {
  .storeArea .ribbon1 {
    width: 135px;
    height: 111px;
    background: url(../images/ribbon_1_m.png) no-repeat top/cover;
  }
}
.storeArea .ribbon2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 362px;
  height: 362px;
  background: url(../images/ribbon_2.png) no-repeat top/cover;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1440px) {
  .storeArea .ribbon2 {
    width: 262px;
    height: 262px;
  }
}
@media (max-width: 1180px) {
  .storeArea .ribbon2 {
    width: 155px;
    height: 163px;
    background: url(../images/ribbon_2_m.png) no-repeat top/cover;
  }
}
.storeArea img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.adArea {
  background-color: #fff;
  padding: 19px 0;
}
.adArea .adList {
  margin: 0 -20px;
}
.adArea .adItem {
  padding: 0 20px;
}
@media (max-width: 640px) {
  .adArea .adItem {
    padding: 0 10px;
  }
}
.adArea img {
  transition: all 0.4s;
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (min-width: 1181px) {
  .adArea img {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}
@media (min-width: 1181px) {
  .adArea .item:hover img {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}</pre></body></html>