@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap");
.appArea .appList li .item a .Txt p, .appArea .appList li .item a .Txt h3:after, .appArea .appList li .item a .Txt, .appArea .appList li .item a .Img:before, .proArea .proList li:last-child a .arrow_right, .proArea .proList li .Img a:before, .proArea .proList li .Img a img, .proArea .proList li .Img a {
  transition: all 0.5s;
}

.appArea .wrap, .proArea .wrap {
  width: 1600px;
  max-width: 100%;
}

.loadingArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
}
.loadingArea:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 8px;
  background-color: #ed1b23;
  transform: translateY(0);
}
.loadingArea:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.loadingArea .loadLogo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loadingArea .loadLogo img {
  width: 250px;
  height: 55px;
}

.loadingArea.show {
  opacity: 1;
  pointer-events: auto;
}
.loadingArea.show:before {
  animation: loadLine 3s forwards, loadLineMove 0.8s 3s forwards;
}
.loadingArea.show:after {
  animation: loadLineMove02 0.8s 3.4s forwards;
}
.loadingArea.show .loadLogo {
  animation: logoFadeOut 0.3s 3.12s forwards;
}
@keyframes loadLine {
  0% {
    width: 0;
  }
  20% {
    width: 30%;
  }
  60% {
    width: 65%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loadLineMove {
  0% {
    height: 8px;
    transform: translateY(0);
  }
  100% {
    height: 100%;
    transform: translateY(101%);
  }
}
@keyframes loadLineMove02 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(101%);
  }
}
@keyframes logoFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mainArea {
  padding: 0;
}

.titleBox {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .titleBox {
    margin-bottom: 20px;
  }
}

header {
  background-color: transparent;
}

.bannerArea .scrollDown {
  cursor: pointer;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translate(0, -50%) rotate(-90deg);
  color: #ffffff;
  font-size: 12px;
  z-index: 2;
  overflow: hidden;
}
.bannerArea .scrollDown span {
  width: 94px;
  position: relative;
  display: inline-block;
  vertical-align: 5px;
}
.bannerArea .scrollDown span:before {
  position: absolute;
  content: "";
  left: -100%;
  height: 1px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  vertical-align: middle;
  margin-right: 13px;
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}
.bannerArea .slick-dots {
  top: 50%;
  transform: translate(0, -50%);
  bottom: auto;
  right: 40px;
}
.bannerArea .slick-dots li {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.bannerArea .slick-active .innerBox h3,
.bannerArea .slick-active .innerBox .titleDec,
.bannerArea .slick-active .innerBox .btnBox {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}
.bannerArea .slick-active .innerBox h3 {
  animation-delay: 0.3s;
}
.bannerArea .slick-active .innerBox .titleDec {
  animation-delay: 0.7s;
}
.bannerArea .slick-active .innerBox .btnBox {
  animation-delay: 1s;
}
.bannerArea .innerBox {
  position: absolute;
  left: 13.7%;
  right: 0;
  bottom: 21%;
  max-width: 1000px;
  color: #ffffff;
  z-index: 5;
}
.bannerArea .innerBox h3 {
  font-size: 90px;
  font-weight: bold;
}
.bannerArea .innerBox .titleDec {
  font-size: 17px;
  line-height: 27px;
  font-family: "Lato";
  letter-spacing: 0.51px;
  height: 54px;
}
.bannerArea .innerBox .btnBox {
  padding-top: 50px;
  padding-bottom: 0;
}
.bannerArea .innerBox .btnBox .btn_white:first-child {
  margin-right: 16px;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 992px) {
  .bannerArea .scrollDown {
    display: none;
  }
  .bannerArea .innerBox {
    left: 50px;
    bottom: 50px;
  }
  .bannerArea .innerBox h3 {
    font-size: 45px;
  }
  .bannerArea .innerBox .titleDec {
    font-size: 15px;
  }
  .bannerArea .innerBox .btnBox {
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .bannerArea .slick-dots {
    right: 10px;
  }
  .bannerArea .innerBox {
    left: 20px;
    right: 100px;
    bottom: 20px;
  }
  .bannerArea .innerBox h3 {
    font-size: 35px;
  }
  .bannerArea .innerBox .titleDec {
    font-size: 13px;
    height: 30px;
  }
  .bannerArea .innerBox .btnBox {
    padding-top: 15px;
  }
  .bannerArea .innerBox .btnBox .btn_white {
    min-width: 90px;
    max-width: 90px;
    padding: 8px;
  }
}
.bannerArea.mobile .innerBox {
  bottom: 10%;
}
.bannerArea.mobile .innerBox .titleDec {
  height: 80px;
}

@keyframes elasticus {
  0% {
    right: 0;
    left: 100%;
  }
  50% {
    right: 0;
    left: 0;
  }
  100% {
    right: 100%;
  }
}
.proArea {
  padding: 30px 0;
}
@media (min-width: 1180px) {
  .proArea {
    padding: 100px 0;
  }
  .proArea .btnBox {
    display: none;
    text-align: center;
  }
}
.proArea .proList {
  display: flex;
  flex-wrap: wrap;
}
.proArea .proList li {
  width: 20%;
  padding: 20px;
  margin-bottom: 80px;
}
.proArea .proList li .Img {
  margin-bottom: 20px;
}
.proArea .proList li .Img a {
  display: block;
  line-height: 0;
  position: relative;
  text-align: center;
}
.proArea .proList li .Img a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 4px;
  background-color: #ed1b23;
}
.proArea .proList li .Img a:hover {
  box-shadow: 1px 2px 21px 0px rgba(4, 4, 4, 0.08);
}
.proArea .proList li .Img a:hover:before {
  width: 100%;
}
.proArea .proList li .Img a:hover img {
  transform: translateY(-35px);
}
.proArea .proList li h3 a {
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  display: block;
  text-align: center;
  letter-spacing: 0.34px;
  word-wrap: break-word;
}
.proArea .proList li:last-child a {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 29px;
  height: 100%;
  padding: 50px 30px;
  background-color: #323232;
  letter-spacing: 0.34px;
  position: relative;
}
.proArea .proList li:last-child a .arrow_right {
  position: absolute;
  right: 35px;
  bottom: 25px;
}
.proArea .proList li:last-child a:hover {
  background-color: #ed1b23;
}
.proArea .proList li:last-child a:hover .arrow_right {
  right: 25px;
}
@media (max-width: 1440px) {
  .proArea .proList li {
    width: 25%;
  }
}
@media (max-width: 1180px) {
  .proArea .proList li {
    width: 33.33%;
    margin-bottom: 30px;
  }
  .proArea .proList li:last-child {
    display: none;
  }
}
@media (max-width: 640px) {
  .proArea .proList li {
    width: 50%;
    padding: 0;
  }
}

.arrow_right {
  display: block;
  margin: 30px auto;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  position: relative;
}
.arrow_right:after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 31px;
  background-color: #ffffff;
  transform: rotate(45deg) translate(-3px, -4px);
  left: 0;
  top: 0;
}

.appArea {
  padding-top: 30px;
}
@media (min-width: 1180px) {
  .appArea {
    padding-top: 100px;
  }
  .appArea:after {
    content: "";
    background-image: url(../images/mountain_bg.png);
    background-repeat: no-repeat;
    background-position: 60%;
    width: 100%;
    height: 480px;
    display: block;
    margin-top: -175px;
  }
}
.appArea .appList li {
  padding: 18px 12px;
}
.appArea .appList li .item {
  position: relative;
}
.appArea .appList li .item a {
  color: #2c2c2c;
  display: block;
}
@media (min-width: 993px) {
  .appArea .appList li .item a {
    color: #ffffff;
  }
}
.appArea .appList li .item a .Img {
  line-height: 0;
  position: relative;
}
.appArea .appList li .item a .Img img {
  width: 100%;
}
.appArea .appList li .item a .Img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.2)), color-stop(100%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000", GradientType=0 );
  opacity: 0;
}
.appArea .appList li .item a .Txt {
  text-align: center;
}
.appArea .appList li .item a .Txt h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.3px;
}
.appArea .appList li .item a .Txt h3:after {
  content: "";
  width: 24px;
  height: 1px;
  display: block;
  margin: 5px auto 10px;
  background-color: #2c2c2c;
}
.appArea .appList li .item a .Txt p {
  font-family: "Lato";
  line-height: 20px;
  letter-spacing: 0.28px;
  height: 56px;
}
@media (min-width: 993px) {
  .appArea .appList li .item a .Txt {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% - 60px);
    max-width: 310px;
    margin: auto;
  }
  .appArea .appList li .item a .Txt h3:after {
    background-color: #ffffff;
    opacity: 0;
  }
  .appArea .appList li .item a .Txt p {
    display: none;
    opacity: 0;
  }
}
@media (min-width: 993px) {
  .appArea .appList li .item a:hover .Img:before {
    opacity: 1;
  }
  .appArea .appList li .item a:hover .Txt {
    top: 50%;
    transform: translate(0, -50%);
  }
  .appArea .appList li .item a:hover .Txt h3:after {
    opacity: 1;
  }
  .appArea .appList li .item a:hover .Txt p {
    display: block;
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .appArea .appList li .item .Txt {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .appArea .appList li .item a .Txt h3 {
    font-size: 25px;
  }
}

.aboutArea .itemImg {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  margin-left: -1px;
  margin-top: -1px;
  padding-bottom: 805px;
  overflow: hidden;
}
.aboutArea .itemImg .bg {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  max-height: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.aboutArea .wrap {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  width: 100%;
}
.aboutArea .cloud {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 4;
  pointer-events: none;
}
.aboutArea .cloud .cloud_01 {
  position: absolute;
  top: -70px;
  left: 260px;
  animation: cloud_01 13s linear infinite;
}
.aboutArea .cloud .cloud_02 {
  position: absolute;
  right: -145px;
  top: -30px;
  animation: cloud_01 13s linear infinite;
}
.aboutArea .cloud .cloud_03 {
  position: absolute;
  left: 2.5%;
  top: 45%;
  animation: cloud_02 13s linear infinite;
}
.aboutArea .cloud .cloud_04 {
  position: absolute;
  right: 16%;
  top: 31%;
  animation: cloud_02 13s linear infinite;
}
.aboutArea .cloud .cloud_05 {
  position: absolute;
  left: -13%;
  bottom: -13%;
  animation: cloud_01 13s linear infinite;
}
.aboutArea .cloud .cloud_06 {
  position: absolute;
  right: 22%;
  bottom: 3%;
  animation: cloud_01 13s linear infinite;
}
@keyframes cloud_01 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes cloud_02 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
.aboutArea .abLine {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 70%;
  /*928px*/
  height: 73%;
  /*594px*/
  z-index: 4;
}
.aboutArea .abLine g .path,
.aboutArea .abLine g circle {
  fill-opacity: 0;
}
.aboutArea .abLine.show .path {
  stroke-dasharray: 1940;
  animation: line_draw 5s linear 1 forwards;
}
.aboutArea .abLine.show g circle {
  animation: dot_draw 1s linear forwards;
}
.aboutArea .abLine.show g .c1 {
  animation-delay: 0s;
}
.aboutArea .abLine.show g .c2 {
  animation-delay: 0.3s;
}
.aboutArea .abLine.show g .c3 {
  animation-delay: 0.35s;
}
.aboutArea .abLine.show g .c4 {
  animation-delay: 0.6s;
}
.aboutArea .abLine.show g .c5 {
  animation-delay: 1s;
}
.aboutArea .abLine.show g .c6 {
  animation-delay: 1.5s;
}
.aboutArea .abLine.show g .c7 {
  animation-delay: 1.6s;
}
.aboutArea .abLine.show g .c8 {
  animation-delay: 2s;
}
.aboutArea .abLine.show g .c9 {
  animation-delay: 2.5s;
}
@media (max-width: 1180px) {
  .aboutArea .abLine {
    display: none;
  }
}
@keyframes line_draw {
  0% {
    stroke-dashoffset: 1940;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dot_draw {
  0% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
.aboutArea .left {
  max-width: 395px;
  padding-top: 220px;
  background-image: url(../images/home/abTxt_mask.png);
  background-repeat: no-repeat;
  background-position: 120px 100%;
}
.aboutArea .left .titleBox {
  text-align: left;
  margin-bottom: 15px;
}
.aboutArea .left .titleBox h2 {
  color: #ffffff;
  font-size: 65px;
}
.aboutArea .left .Txt {
  color: rgba(255, 255, 255, 0.5);
  max-width: 370px;
}
.aboutArea .left .btnBox {
  padding-top: 40px;
  padding-bottom: 0;
}
.aboutArea .left .btnBox .btn_white {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}
.aboutArea .left .btnBox .btn_white:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}
.aboutArea .right {
  width: 270px;
  height: 257px;
  position: relative;
  margin-right: -17px;
  margin-left: auto;
  margin-top: -50px;
}
.aboutArea .right a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #323232;
}
.aboutArea .right a:hover {
  background-color: #ed1b23;
}
.aboutArea .right .compass {
  position: absolute;
  right: -35px;
  top: -20%;
}
.aboutArea .right .compass .Txt {
  animation: rotation 15s infinite linear;
}
.aboutArea .right .compass .Img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.aboutArea .right .inner {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 55px;
  display: flex;
}
.aboutArea .right .inner .Txt {
  color: #ffffff;
  font-size: 17px;
}
.aboutArea .right .inner .arrow_right {
  margin-right: 0;
}
@media (max-width: 1500px) {
  .aboutArea .wrap {
    padding: 0 50px;
  }
  .aboutArea .right {
    margin-right: 35px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .left {
    padding-top: 150px;
    background-image: none;
  }
  .aboutArea .left .titleBox h2 {
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  }
  .aboutArea .left .Txt {
    color: #ffffff;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.8);
  }
  .aboutArea .left .btnBox .btn_white {
    color: #323232;
    background-color: #ffffff;
  }
  .aboutArea .left .btnBox .btn_white:hover {
    color: #323232;
    background-color: #ffffff;
  }
  .aboutArea .itemImg .bg {
    left: auto;
    right: 0;
    transform: translate(0, -50%);
  }
}
@media (max-width: 768px) {
  .aboutArea .cloud {
    display: none;
  }
  .aboutArea .itemImg {
    padding-bottom: 600px;
  }
  .aboutArea .itemImg .bg {
    right: -160px;
  }
  .aboutArea .left {
    padding-top: 60px;
    background-image: none;
  }
  .aboutArea .left .titleBox h2 {
    font-size: 35px;
  }
  .aboutArea .right {
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    max-width: 270px;
    width: 100%;
    height: 100%;
  }
  .aboutArea .right .compass {
    display: none;
  }
  .aboutArea .right .inner {
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    padding: 0 15px;
    align-items: center;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.newsArea {
  padding: 30px 0;
  overflow: hidden;
}
@media (min-width: 1181px) {
  .newsArea {
    padding: 125px 0;
  }
  .newsArea .m_list {
    display: none;
  }
}
.newsArea .wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
}
.newsArea .wrap > .left {
  width: 78.572%;
  /*1100px*/
}
.newsArea .wrap > .right {
  width: 21.428%;
  padding-left: 30px;
  position: relative;
  color: #ffffff;
  font-size: 17px;
}
.newsArea .titleBox h2 {
  font-size: 40px;
  letter-spacing: 0;
}
.newsArea .btnBox {
  position: absolute;
  left: 30px;
  bottom: 0;
  padding-bottom: 0;
}
.newsArea .appendDots {
  position: absolute;
  right: 0;
  bottom: 0;
}
.newsArea .appendDots .slick-dots {
  position: relative;
  bottom: -6px;
}
.newsArea .appendDots .slick-dots li {
  display: block;
}
.newsArea .appendDots .slick-dots li button:before {
  color: #bfbfbf;
}
.newsArea .appendDots .slick-dots li.slick-active button:before {
  color: #ed1b23;
}
.newsArea .newsList {
  margin: 0 -26px;
}
.newsArea .newsList li {
  padding: 10px 26px;
}
.newsArea .newsList li .Img a {
  display: block;
  line-height: 0;
}
.newsArea .newsList li .Img a img {
  width: 100%;
}
.newsArea .newsList li .Txt {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.newsArea .newsList li .Txt .left {
  width: 88px;
}
.newsArea .newsList li .Txt .right {
  width: calc(100% - 88px);
}
.newsArea .newsList li .Txt .date {
  color: #383737;
  font-size: 35px;
  font-weight: bold;
  font-family: "Lato";
  text-align: center;
  padding-right: 45px;
}
.newsArea .newsList li .Txt .date span {
  display: block;
}
.newsArea .newsList li .Txt .date span:nth-child(1):after {
  content: "/";
  display: block;
  line-height: 1;
}
.newsArea .newsList li .Txt .newIcon {
  color: #7a7a7a;
  font-size: 13px;
  font-weight: 300;
  text-align: right;
}
.newsArea .newsList li .Txt .newIcon i {
  color: #919191;
  margin-right: 10px;
  vertical-align: middle;
}
.newsArea .newsList li .Txt h3 {
  margin-top: 40px;
}
.newsArea .newsList li .Txt h3 a {
  color: #4d4b4b;
  font-size: 17px;
  font-weight: 300;
}
.newsArea .newsList li .Txt h3 a:hover {
  color: #ed1b23;
}
@media (max-width: 1440px) {
  .newsArea .wrap > .left {
    width: 70%;
  }
  .newsArea .wrap > .right {
    width: 30%;
  }
}
@media (max-width: 1180px) {
  .newsArea .btnBox {
    position: relative;
    left: 0;
    text-align: center;
    margin-top: 20px;
  }
  .newsArea .appendDots {
    position: relative;
  }
  .newsArea .appendDots .slick-dots li {
    display: inline-block;
  }
  .newsArea .wrap {
    display: block;
  }
  .newsArea .wrap > .left {
    display: none;
  }
  .newsArea .wrap > .right {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .newsArea .newsList li .Txt {
    display: block;
  }
  .newsArea .newsList li .Txt .date {
    text-align: left;
    padding-right: 0;
  }
  .newsArea .newsList li .Txt .date span {
    display: inline-block;
  }
  .newsArea .newsList li .Txt .date span:nth-child(1):after {
    display: inline-block;
  }
  .newsArea .newsList li .Txt .left,
.newsArea .newsList li .Txt .right {
    width: 100%;
  }
  .newsArea .newsList li .Txt .right {
    margin-top: -30px;
  }
}
@media (max-width: 768px) {
  .newsArea .titleBox h2 {
    font-size: 30px;
  }
  .newsArea .newsList {
    margin: 0 -10px;
  }
  .newsArea .newsList li {
    padding: 10px;
  }
  .newsArea .newsList li .Txt .date {
    font-size: 25px;
  }
  .newsArea .newsList li .Txt .newIcon {
    text-align: left;
    margin-top: 5px;
  }
  .newsArea .newsList li .Txt h3 {
    margin-top: 20px;
  }
  .newsArea .newsList li .Txt .right {
    margin-top: 0;
  }
}
/*# sourceMappingURL=home.css.map */