.bannerArea .arrowBox .arrow::after, .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 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%);
  }
}
.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);
  }
}

.outerWrap {
  padding-top: 0;
}
@media (max-width: 1180px) {
  .outerWrap {
    padding-top: 60px;
  }
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Img {
    height: 585px;
  }
  .bannerArea .bannerItem .Img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bannerArea .bannerItem .bannerLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bannerArea .bannerItem .Txt {
  max-width: 1500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 110px 105px 85px;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.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;
  pointer-events: auto;
}
.bannerArea .bannerItem .Txt .deck {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1px;
  opacity: 0;
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .deck {
    font-size: 12px;
  }
}
.bannerArea .bannerItem .Txt .topTitle {
  position: relative;
  padding: 10px 0 20px;
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .topTitle {
    padding-top: 0;
    padding-bottom: 10px;
  }
}
.bannerArea .bannerItem .Txt .topTitle:before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 70px;
  height: 2px;
  background-color: #fff;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0;
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 24px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0;
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 16px;
  }
}
.bannerArea .bannerItem .Txt .text {
  padding-top: 20px;
  color: #fff;
  display: block;
  line-height: 1.5;
  letter-spacing: 0.5px;
  opacity: 0;
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .text {
    padding-top: 10px;
  }
}
.bannerArea .bannerItem .Txt .text p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  opacity: 0.7;
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .text p {
    font-size: 15px;
  }
}
.bannerArea .bannerItem .Txt .bannerBtn {
  opacity: 0;
  padding-top: 30px;
}
.bannerArea .bannerItem .Txt .bannerBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 210px;
  height: 40px;
  border: 1px solid #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
  background-color: #6F94AB;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #fff;
  border-color: #6F94AB;
}
.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 .Txt img {
  max-width: 100%;
}
.bannerArea .bannerItem .Img {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerItem .Img img {
  display: block;
  width: 100%;
}
.bannerArea .bannerItem .videoBox {
  position: relative;
  padding-top: 44%;
}
.bannerArea .bannerItem .videoBox.ytplay {
  padding-top: 0;
  opacity: 0;
}
.bannerArea .bannerItem .videoBox.playing {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .videoBox {
    height: 585px;
  }
}
.bannerArea .bannerItem .videoBox.hasImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1181px) {
  .bannerArea .bannerItem .videoBox.hasImg {
    z-index: 3;
  }
}
.bannerArea .bannerItem .videoBox.hasImg video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .videoBox.hasImg video {
    width: auto;
    height: 100%;
    z-index: 1;
  }
}
.bannerArea .bannerItem .videoBox video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .videoBox video {
    width: auto;
    height: 100%;
  }
}
.bannerArea .bannerItem .videoBox .viewVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 50% !important;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .videoBox .viewVideo {
    padding-bottom: 585px !important;
  }
}
.bannerArea .bannerItem .videoBox .viewVideo iframe {
  top: 50% !important;
  margin-top: 0 !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}
.bannerArea .bannerItem .videoBox .videoBtn {
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #fff;
}
.bannerArea .bannerItem .musicControlBox {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 90px;
  right: 20px;
  z-index: 1;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .musicControlBox {
    top: 20px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .musicControlBox {
    top: 16px;
    right: 8px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.bannerArea .bannerItem .musicControlBox .musicBox {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  background-color: #304861;
  padding: 8px;
  cursor: pointer;
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .musicControlBox .musicBox {
    width: 32px;
    height: 32px;
    padding: 6px;
  }
}
@media (min-width: 1181px) {
  .bannerArea .bannerItem .musicControlBox .musicBox:hover {
    background-color: #6F94AB;
  }
}
.bannerArea .bannerItem .musicControlBox .musicBox.hide {
  opacity: 0;
  translate: 0 20px;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  pointer-events: none;
}
.bannerArea .bannerItem .musicControlBox .musicBox svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.bannerArea .bannerItem .musicControlBox .musicBox.mute {
  position: absolute;
  top: 0;
  right: 0;
}
.bannerArea .bannerItem.show .Txt .deck {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.show .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s 0.2s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.2s ease-in-out forwards;
}
.bannerArea .bannerItem.show .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.show .Txt .topTitle:before {
  -webkit-animation: bannerTxtAnimation 0.8s 0.6s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.6s ease-in-out forwards;
}
.bannerArea .bannerItem.show .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.show .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.show .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 {
  -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: #304861;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #304861;
}
.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 #304861 transparent;
}
.bannerArea .arrowBox .arrowNext::before {
  border-width: 9px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
.bannerArea .arrowBox .arrowNext:hover::before {
  border-color: #304861 transparent transparent transparent;
}
.bannerArea .progressBar {
  background-color: #fff;
  display: none;
  position: absolute;
  bottom: 100px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.bannerArea .progressBar.show {
  display: block;
}
.bannerArea .progressBar.horizontal .path, .bannerArea .progressBar.vertical .path {
  width: 100%;
  height: 2px;
  display: inline-block;
  fill: #304861;
  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;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  opacity: 1;
  stroke-dashoffset: 0;
  stroke-dasharray: 153.86;
  stroke: #304861;
  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 {
  -webkit-box-align: start;
      -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;
  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: #304861;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .slick-dots {
  width: 15px;
  margin: 0;
  top: 50%;
  left: 65px;
  bottom: auto;
  right: auto;
}
@media (max-width: 1180px) {
  .bannerArea .slick-dots {
    display: none !important;
  }
}
.bannerArea .slick-dots li {
  width: 10px;
  height: 10px;
  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: none;
  border: 1px solid #fff;
  background-color: #fff;
  opacity: 0.5;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.bannerArea .slick-dots li.slick-active button::before {
  border: 1px solid #fff;
  background-color: #fff;
  opacity: 1;
}






/*改*/


.bannerArea .bannerItem .Txt,
.bannerArea .bannerItem .Txt * {
  font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
}

.bannerArea .bannerItem .Txt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bannerArea .bannerItem .Txt .textBox {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

/* Small title */
.bannerArea .bannerItem .Txt .subTitle {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2.2px;
  margin-bottom: 10px;
  opacity: 0.95;
}

/* Outline titles */
.bannerArea .bannerItem .Txt .outlineTitle {
  font-size: 62px;
  font-weight: 600;
  letter-spacing: 3.6px;
  line-height: 0.98;
  color: transparent;
  -webkit-text-stroke: 1.1px rgba(255,255,255,0.65);
  margin: 0;
}

.bannerArea .bannerItem .Txt .outlineTitle.large {
  font-size: 92px;
  line-height: 0.96;
  margin-top: 2px;
}

/* Main title */
.bannerArea .bannerItem .Txt .mainTitle {
  font-size: 118px;
  font-weight: 800;
  letter-spacing: 5.5px;
  line-height: 0.88;
  color: #ffffff;
  margin: 4px 0 2px;
}

/* Text block */
.bannerArea .bannerItem .Txt .text {
  margin-top: 18px;
  max-width: 1000px;
  border-top: solid 2px #ccc;
}

.bannerArea .bannerItem .Txt .text .slogan {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 6px;
}

.bannerArea .bannerItem .Txt .text .desc {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.55px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}


/* Mobile */

@media (max-width: 960px) {

  /* Hide large titles on mobile */
  .bannerArea .bannerItem .Txt .outlineTitle,
  .bannerArea .bannerItem .Txt .mainTitle {
    display: none !important;
  }

  /* Adjust text container spacing */
  .bannerArea .bannerItem .Txt .textBox {
    padding: 0 20px;
  }

  .bannerArea .bannerItem .Txt .text {
    margin-top: 0;
  border-top: none;
  }

  /* Mobile-friendly slogan */
  .bannerArea .bannerItem .Txt .text .slogan {
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
  color: rgba(255,255,255,1);
  opacity : 0.8;
  }

  /* Mobile-friendly description */
  .bannerArea .bannerItem .Txt .text .desc {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.4px;
  color: rgba(255,255,255,1);
  opacity : 0.8;
  }

.bannerArea .bannerItem .Txt .subTitle {
  color: #ffffff;
  font-size: 34px;
  opacity : 1;
}


}



@media (max-width: 1600px) {
.scrollDown {
  display:none;
  }
}




.aboutArea {
  padding: 100px 0 0;
}
@media (max-width: 1180px) {
  .aboutArea {
    padding-top: 0;
    background-image: none;
  }
}
.aboutArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1180px) {
  .aboutArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.aboutArea .leftBox {
  width: 50%;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  opacity: 0;
}
.aboutArea .leftBox.show {
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
@media (max-width: 1180px) {
  .aboutArea .leftBox {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    margin: 0 -20px;
    padding: 20px;
    width: auto;
  }
}
.aboutArea .rightBox {
  padding-left: 120px;
  width: 50%;
}
.aboutArea .rightBox.show .Txt,
.aboutArea .rightBox.show .btn,
.aboutArea .rightBox.show .ImgBox {
  -webkit-transition: all 0.8s linear;
  transition: all 0.8s linear;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.aboutArea .rightBox.show .Txt {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.aboutArea .rightBox.show .btn {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.aboutArea .rightBox.show .ImgBox {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media (max-width: 1180px) {
  .aboutArea .rightBox {
    padding-left: 0;
    padding-top: 40px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}
.aboutArea .rightBox .Txt {
  letter-spacing: 1px;
  line-height: 1.8;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
}
@media (max-width: 1180px) {
  .aboutArea .rightBox .Txt {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.aboutArea .rightBox .Txt p {
  color: #5e5e5e;
}
.aboutArea .rightBox .title {
  margin-bottom: 5px;
  font-size: 36px;
  font-weight: 400;
  color: #304860;
  letter-spacing: 1px;
  line-height: 1.1;
}
@media (max-width: 640px) {
  .aboutArea .rightBox .title {
    font-size: 28px;
  }
}
.aboutArea .rightBox .subTitle {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}
@media (max-width: 640px) {
  .aboutArea .rightBox .subTitle {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.aboutArea .rightBox .btn {
  margin-top: 30px;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
}
@media (max-width: 1180px) {
  .aboutArea .rightBox .btn {
    display: none;
  }
}
.aboutArea .indexInsBox {
  position: relative;
}
@media (min-width: 1181px) {
  .aboutArea .indexInsBox {
    margin-right: -80px;
  }
}
.aboutArea .indexList {
  background-color: #000;
}
.aboutArea .indexList.slick-dotted.slick-slider,
.aboutArea .adTxtList.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.aboutArea .indexList .Txt,
.aboutArea .adTxtList .Txt {
  padding-top: 20px;
  padding-right: 40px;
  line-height: 1.8;
  letter-spacing: 1px;
  display: none;
}
@media (max-width: 1180px) {
  .aboutArea .indexList .Txt,
  .aboutArea .adTxtList .Txt {
    padding-right: 0;
  }
}
.aboutArea .indexList .Txt p,
.aboutArea .adTxtList .Txt p {
  padding-right: 40px;
  height: 95px;
  font-size: 15px;
  font-weight: 400;
  color: #5E5E5E;
  border-bottom: 1px solid rgba(181, 168, 150, 0.5);
}
@media (max-width: 1180px) {
  .aboutArea .indexList .Txt p,
  .aboutArea .adTxtList .Txt p {
    padding-right: 0;
    border-bottom: none;
    height: 50px;
  }
}
.aboutArea .indexList .title,
.aboutArea .adTxtList .title {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  color: #304860;
}
.aboutArea .indexList .title a,
.aboutArea .adTxtList .title a {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: #304861;
}
.aboutArea .indexList .title a:hover:before,
.aboutArea .adTxtList .title a:hover:before {
  width: 100%;
}
.aboutArea .indexList .title a:before,
.aboutArea .adTxtList .title a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #304861;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.aboutArea .adTxtList .Txt {
  display: block;
}
.aboutArea .dotBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  margin: 0 -5px;
}
.aboutArea .dotBox .slick-dots {
  position: relative;
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1180px) {
  .aboutArea .dotBox .slick-dots {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.aboutArea .dotBox .slick-dots li {
  padding: 5px;
}
.aboutArea .dotBox .slick-dots li:hover button, .aboutArea .dotBox .slick-dots li.slick-active button {
  opacity: 1;
}
.aboutArea .dotBox .slick-dots li button {
  width: 100%;
  height: 100%;
  background-color: #304862;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.aboutArea .dotBox .slick-dots li button:before {
  content: "";
}
@media (min-width: 1181px) {
  .aboutArea .arrowBox {
    position: absolute;
    right: 0;
    top: 100%;
  }
}
@media (max-width: 1180px) {
  .aboutArea .arrowBox .prev {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -20px;
  }
  .aboutArea .arrowBox .next {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -20px;
  }
}
.aboutArea .ImgBox {
  margin-top: 75px;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
}
@media (max-width: 1180px) {
  .aboutArea .ImgBox {
    display: none;
  }
}
@media (max-width: 640px) {
  .aboutArea .ImgBox {
    margin-top: 40px;
  }
}
.aboutArea .ImgBox .Img {
  position: relative;
  max-width: 320px;
  background-color: #000;
  z-index: 2;
}
.aboutArea .ImgBox .Img.current img {
  opacity: 1;
}
.aboutArea .ImgBox .Img:nth-of-type(2) {
  margin-left: auto;
  z-index: 1;
}
@media (min-width: 481px) {
  .aboutArea .ImgBox .Img:nth-of-type(2) {
    margin-top: -100px;
  }
}
.aboutArea .ImgBox .Img img {
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 0.6;
}
.aboutArea img {
  display: block;
  width: 100%;
}
.aboutArea .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 40px;
  width: 200px;
  height: 40px;
  font-size: 15px;
  color: #fff;
  background-image: url(../images/bg_company_title.jpg);
  background-size: cover;
}
.aboutArea .btn a:hover {
  opacity: 0.95;
}

.brandArea .wrap {
  padding: 0;
  max-width: none;
}
.brandArea .brandTopBox {
  position: relative;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
.brandArea .brandTopBox.show {
  -webkit-transition: all 0.8s linear;
  transition: all 0.8s linear;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.brandArea .brandBox {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #fff;
  z-index: 1;
  display: none;
}
@media (max-width: 1180px) {
  .brandArea .brandBox {
    width: 100%;
    height: auto;
  }
  .brandArea .brandBox img {
    margin: 0 auto;
    height: 55px;
    width: auto;
    max-width: none;
  }
}
@media (max-width: 1180px) {
  .brandArea .brandBox .brandList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.brandArea .brandBox li {
  cursor: pointer;
}
@media (max-width: 1180px) {
  .brandArea .brandBox li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .brandArea .brandBox li:not(:first-child) {
    border-left: 1px solid #e5e5e5;
  }
}
.brandArea .brandBox li.current .Img {
  background-color: #fff;
}
.brandArea .brandBox li.current .Img:before {
  height: 4px;
  opacity: 1;
}
.brandArea .brandBox li:hover .Img {
  background-color: #fff;
}
.brandArea .brandBox .Img {
  position: relative;
  background-color: #f2f2f2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1180px) {
  .brandArea .brandBox .Img {
    background-color: #fff;
  }
}
.brandArea .brandBox .Img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: #304861;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.brandArea .brandDataBox .brandDataList {
  margin-bottom: 0;
}
.brandArea .brandDataBox .slick-dots {
  bottom: 10px;
}
.brandArea .brandDataBox .slick-dots li {
  padding: 5px;
}
.brandArea .brandDataBox .slick-dots li:hover button, .brandArea .brandDataBox .slick-dots li.slick-active button {
  opacity: 1;
}
.brandArea .brandDataBox .slick-dots li button {
  width: 100%;
  height: 100%;
  background-color: #304862;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.brandArea .brandDataBox .slick-dots li button:before {
  content: "";
}
.brandArea .brandDataBox .top {
  position: relative;
}
.brandArea .brandDataBox .bottom {
  background-repeat: no-repeat;
  background-image: url(../images/bg_brand.jpg);
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 65px;
}
@media (max-width: 1180px) {
  .brandArea .brandDataBox .bottom {
    padding-top: 20px;
  }
}
@media (max-width: 640px) {
  .brandArea .brandDataBox .bgImg {
    position: relative;
    height: 340px;
    overflow: hidden;
  }
  .brandArea .brandDataBox .bgImg img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    max-width: none;
  }
}
.brandArea .brandDataBox .img {
  position: absolute;
  bottom: -60px;
}
@media (max-width: 640px) {
  .brandArea .brandDataBox .img {
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .brandArea .brandDataBox .img img {
    height: 150px;
    max-width: none;
  }
}
.brandArea .brandDataBox .imgText {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
  max-width: 640px;
  text-shadow: 0px 0px 5px #222;
}
.brandArea .brandDataBox .imgText .title {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 640px) {
  .brandArea .brandDataBox .imgText .title {
    font-size: 28px;
  }
}
.brandArea .brandDataBox .imgText .subTitle {
  font-size: 23px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 640px) {
  .brandArea .brandDataBox .imgText .subTitle {
    font-size: 20px;
  }
}
.brandArea .brandDataBox .Txt {
  margin: 0 auto;
  width: 100%;
  max-width: 810px;
  text-align: center;
  padding: 0 20px;
}
.brandArea .brandDataBox .Txt .title {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 70px;
  font-size: 30px;
  font-weight: 700;
  color: #4a4a4a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.brandArea .brandDataBox .Txt p {
  color: #393939;
}
.brandArea .brandDataBox .Txt .btn {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brandArea .brandDataBox .Txt .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 210px;
  height: 40px;
  color: #fff;
  background-image: url(../images/bg_company_title.jpg);
  background-size: cover;
}
.brandArea .brandDataBox .Txt .btn a:hover {
  opacity: 0.95;
}
.brandArea .brandDetailBox {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
.brandArea .brandDetailBox.show {
  -webkit-transition: all 0.8s linear;
  transition: all 0.8s linear;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.brandArea .brandDetailBox .item {
  position: relative;
}
@media (max-width: 1340px) {
  .brandArea .brandDetailBox .Img {
    height: 500px;
  }
  .brandArea .brandDetailBox .Img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .brandArea .brandDetailBox .Img {
    height: 600px;
  }
}
@media (max-width: 480px) {
  .brandArea .brandDetailBox .Img {
    height: 700px;
  }
}
.brandArea .brandDetailBox .textBox {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  max-width: 790px;
  text-align: center;
}
.brandArea .brandDetailBox .textBox .topTitleBox {
  padding-bottom: 15px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.brandArea .brandDetailBox .textBox .topTitleBox .title {
  font-size: 36px;
  color: #fff;
}
@media (max-width: 640px) {
  .brandArea .brandDetailBox .textBox .topTitleBox .title {
    font-size: 22px;
  }
}
.brandArea .brandDetailBox .textBox .topTitleBox .subTitle {
  font-size: 23px;
  color: #fff;
}
@media (max-width: 640px) {
  .brandArea .brandDetailBox .textBox .topTitleBox .subTitle {
    font-size: 18px;
  }
}
.brandArea .brandDetailBox .textBox .Txt {
  padding: 15px 0;
  font-size: 15px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}
.brandArea .brandDetailBox .textBox .serviceList {
  padding: 15px 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  line-height: 1.6;
}
.brandArea .brandDetailBox .textBox .serviceList li {
  padding: 10px;
  width: 16.6666%;
}
@media (max-width: 640px) {
  .brandArea .brandDetailBox .textBox .serviceList li {
    width: 33.33%;
  }
}
.brandArea .brandDetailBox .textBox .serviceList .icon {
  display: inline-block;
}
.brandArea .brandDetailBox .textBox .serviceList .title {
  color: rgba(255, 255, 255, 0.7);
}
.brandArea .brandDetailBox .textBox .serviceList .enTitle {
  color: #fff;
}
.brandArea .brandDetailBox .textBox .btn {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brandArea .brandDetailBox .textBox .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 220px;
  height: 40px;
  font-weight: 400;
  color: #fff;
  background-image: url(../images/bg_company_title.jpg);
  background-size: cover;
}
.brandArea .brandDetailBox .textBox .btn a:hover {
  opacity: 0.95;
}
.brandArea img {
  display: block;
  max-width: 100%;
}

.newsOuterBox {
  padding-top: 55px;
  padding-bottom: 55px;
  background-image: url(../images/bg_press.jpg);
}
@media (max-width: 640px) {
  .newsOuterBox {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.newsArea {
  padding: 30px 0;
}
.newsArea.show .titleBox {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.newsArea.show .newsBox {
  -webkit-transition: all 0.8s 0.6s ease;
  transition: all 0.8s 0.6s ease;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
@media (max-width: 640px) {
  .newsArea {
    padding: 10px 0;
  }
}
.newsArea .titleBox {
  margin-bottom: 40px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
@media (max-width: 640px) {
  .newsArea .titleBox {
    margin-bottom: 20px;
  }
}
.newsArea .newsBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
@media (max-width: 960px) {
  .newsArea .newsBox {
    padding: 0 10px;
  }
}
.newsArea .leftBox {
  width: 50%;
}
@media (max-width: 960px) {
  .newsArea .leftBox {
    width: 100%;
  }
}
.newsArea .rightBox {
  width: 50%;
}
@media (max-width: 960px) {
  .newsArea .rightBox {
    display: none;
    width: 100%;
  }
}
.newsArea .newsList.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.newsArea .newsList .Txt {
  padding: 20px 40px 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 960px) {
  .newsArea .newsList .Txt {
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.newsArea .newsList .Txt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #304861;
}
.newsArea .newsList .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90px;
}
@media (max-width: 960px) {
  .newsArea .newsList .date {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.newsArea .newsList .date .day {
  font-size: 40px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media (max-width: 960px) {
  .newsArea .newsList .date .day {
    font-size: 15px;
    color: #000;
  }
}
.newsArea .newsList .date .month {
  padding-left: 5px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media (max-width: 960px) {
  .newsArea .newsList .date .month {
    font-size: 15px;
    color: #000;
  }
}
.newsArea .newsList .date .year {
  padding-left: 5px;
  padding-bottom: 2px;
}
@media (min-width: 961px) {
  .newsArea .newsList .date .year {
    display: none;
  }
}
.newsArea .newsList .date span {
  margin-left: 5px;
  display: inline-block;
  width: 1px;
  height: 23px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 960px) {
  .newsArea .newsList .date span {
    display: none;
  }
}
.newsArea .newsList .text {
  width: calc(100% - 90px);
  line-height: 1.8;
}
@media (max-width: 960px) {
  .newsArea .newsList .text {
    width: 100%;
  }
}
.newsArea .newsList .title {
  margin-bottom: 5px;
  display: inline-block;
  max-width: 100%;
}
.newsArea .newsList .title a {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 960px) {
  .newsArea .newsList .title a {
    font-size: 16px;
    color: #000;
  }
}
.newsArea .newsList .arrowBtn {
  position: absolute;
  top: 8px;
  right: 0;
  width: 40px;
  height: calc(100% - 16px);
}
@media (max-width: 960px) {
  .newsArea .newsList .arrowBtn {
    display: none;
  }
}
.newsArea .newsList .arrowBtn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.newsArea .newsList .arrowBtn a:before, .newsArea .newsList .arrowBtn a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}
.newsArea .newsList .arrowBtn a:before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: translate(-50%, -50%) rotate(-40deg);
          transform: translate(-50%, -50%) rotate(-40deg);
}
.newsArea .newsList .arrowBtn a:after {
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: translate(-50%, -50%) rotate(40deg);
          transform: translate(-50%, -50%) rotate(40deg);
}
.newsArea .newsRightList .Img {
  position: relative;
}
.newsArea .newsRightList .Img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/news_mask.png);
  pointer-events: none;
}
.newsArea .newsRightList .Txt {
  padding: 30px 25px;
  line-height: 1.8;
}
.newsArea .newsRightList .date {
  display: none;
}
.newsArea .newsRightList .title {
  margin-bottom: 5px;
  width: 100%;
}
.newsArea .newsRightList .title a {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsArea .item {
  position: relative;
}
.newsArea .item:hover .title a:before {
  width: 100%;
}
.newsArea .Txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 960px) {
  .newsArea .Txt {
    position: relative;
  }
}
.newsArea .Txt p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  height: 55px;
}
@media (max-width: 960px) {
  .newsArea .Txt p {
    color: rgba(0, 0, 0, 0.7);
  }
}
.newsArea .title a {
  position: relative;
}
.newsArea .title a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 960px) {
  .newsArea .title a:before {
    background-color: #000;
  }
}
@media (max-width: 640px) {
  .newsArea .dateBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.newsArea .newIcon {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}
@media (max-width: 960px) {
  .newsArea .newIcon {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    margin-bottom: 5px;
  }
}
.newsArea .Img {
  height: 525px;
}
@media (max-width: 960px) {
  .newsArea .Img {
    height: auto;
  }
}
.newsArea .Img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsArea img {
  width: 100%;
}

@media (max-width: 960px) {
  .newsArea .Img img {
  height: 300px;
  }
}

.newsArea .dotBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
.newsArea .dotBox .slick-dots {
  position: relative;
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1180px) {
  .newsArea .dotBox .slick-dots {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.newsArea .dotBox .slick-dots li {
  padding: 5px;
}
.newsArea .dotBox .slick-dots li:hover button, .newsArea .dotBox .slick-dots li.slick-active button {
  opacity: 1;
}
.newsArea .dotBox .slick-dots li button {
  width: 100%;
  height: 100%;
  background-color: #304862;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.newsArea .dotBox .slick-dots li button:before {
  content: "";
}
.newsArea .arrowBox {
  display: none;
}
.newsArea .arrowBox .prev {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -20px;
}
@media (max-width: 360px) {
  .newsArea .arrowBox .prev {
    left: -10px;
  }
}
.newsArea .arrowBox .next {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -20px;
}
@media (max-width: 360px) {
  .newsArea .arrowBox .next {
    right: -10px;
  }
}

.pressArea {
  padding: 30px 0;
  font-size: 15px;
}
.pressArea.show .titleBox {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.pressArea.show .pressBox {
  -webkit-transition: all 0.8s 0.6s ease;
  transition: all 0.8s 0.6s ease;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.pressArea.show .btn {
  -webkit-transition: all 0.8s 1.5s ease;
  transition: all 0.8s 1.5s ease;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
@media (max-width: 640px) {
  .pressArea {
    padding: 10px 0;
  }
}
.pressArea .titleBox {
  margin-bottom: 10px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
.pressArea .pressBox {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
.pressArea li:nth-of-type(1) .date,
.pressArea li:nth-of-type(1) .Txt,
.pressArea li:nth-of-type(1) .link {
  font-size: 16px;
  color: #304861;
  border-bottom: 3px solid #304861;
  background-color: transparent;
}
@media (max-width: 640px) {
  .pressArea li:nth-of-type(1) {
    display: none;
  }
}
@media (max-width: 640px) {
  .pressArea li:nth-of-type(2) {
    border-top: 3px solid #304861;
  }
}
.pressArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pressArea .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  min-height: 65px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  border-bottom: 1px solid #c7c9c9;
  background-color: #e7e7e8;
}
@media (max-width: 640px) {
  .pressArea .date {
    display: none;
    padding: 10px;
    width: 100px;
  }
}
.pressArea .Txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 65px;
  border-bottom: 1px solid #c7c9c9;
}
@media (max-width: 640px) {
  .pressArea .Txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 0;
    margin: 0;
    width: 100%;
  }
}
.pressArea .Txt .mDate {
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (min-width: 641px) {
  .pressArea .Txt .mDate {
    display: none;
  }
}
@media (max-width: 640px) {
  .pressArea .Txt .mDate {
    display: block;
  }
}
.pressArea .Txt .title {
  font-weight: 400;
}
.pressArea .Txt .title a {
  color: #414141;
}
.pressArea .Txt .title a:hover {
  color: #6F94AB;
}
.pressArea .link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 95px;
  min-height: 65px;
  border-bottom: 1px solid #c7c9c9;
}
@media (max-width: 640px) {
  .pressArea .link {
    display: none;
  }
}
.pressArea .link svg {
  width: 16px;
  height: 16px;
  color: #6F94AB;
}
.pressArea .btn {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
@media (max-width: 640px) {
  .pressArea .btn {
    margin-top: 30px;
  }
}
.pressArea .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 215px;
  height: 45px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
  background-image: url(../images/bg_company_title.jpg);
  background-size: cover;
}
.pressArea .btn a:hover {
  opacity: 0.95;
}
/*# sourceMappingURL=home.css.map */