.aboutArea .left, .roomArea .Txt, .facArea .Txt, .newsArea .Txt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.aboutArea .btn a:before, .newsArea .moreBtn, .newsArea .moreBtn:before, .proArea .moreBtn a:before {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.mainArea {
  padding: 0;
}

/*pop*/
.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 .7s;
  -o-transition: all .7s;
  transition: all .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 .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .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;
  text-align: left;
}

.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);
      -ms-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);
      -ms-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);
  }
}

.aboutArea {
  padding: 50px 0;
}

.aboutArea .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.aboutArea .Txt {
  line-height: 1.8;
}

.roomArea {
  padding: 50px 0;
  background-color: #fafafa;
}

.roomArea .item {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.roomArea .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.roomArea .Txt {
  padding: 30px 20px;
  background-color: #fff;
}

.roomArea .Txt p {
  height: 46px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.roomArea .mTitle {
  display: none;
}

.roomArea h3 a {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 20px;
  border-bottom: 1px solid #eaeaea;
  color: #000;
}

.roomArea h3 a:hover {
  color: #589000;
}

.facArea {
  padding: 50px 0;
}

.facArea li {
  padding: 0;
}

.facArea .item {
  position: relative;
  overflow: hidden;
}

.facArea .item:hover .Txt {
  top: 0;
  opacity: 1;
}

.facArea .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.facArea .Txt {
  position: absolute;
  left: 0;
  top: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.facArea .Txt p {
  display: block;
  width: 100%;
  height: 46px;
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
}

.facArea h3 {
  display: block;
  width: 100%;
}

.facArea h3 a {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 20px;
  border-bottom: 1px solid #838383;
  color: #fff;
}

.newsArea .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.newsArea .Txt {
  position: relative;
}

.newsArea h3 a {
  display: block;
}

.mapArea .wrap {
  width: 100%;
}

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

.linkArea {
  padding: 30px 0;
  text-align: center;
}

.linkArea h4 {
  display: none;
}

.linkArea .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (max-width: 1180px) {
  .facArea .Txt {
    position: static;
    padding: 20px;
    opacity: 1;
    background-color: transparent;
  }
  .facArea .Txt p {
    color: #000;
  }
  .facArea h3 a {
    color: #000;
  }
  .mapArea .wrap {
    padding: 0;
  }
}

@media (max-width: 960px) {
  .aboutArea .Img {
    width: 100%;
    margin-bottom: 30px;
  }
  .aboutArea .right {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .linkArea .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .linkArea .Img {
    max-width: 280px;
  }
}

.bannerArea .wrap {
  max-width: 100%;
}

.bannerArea .slick-current img {
  -webkit-animation: ba 5s 1 ease-in-out both;
          animation: ba 5s 1 ease-in-out both;
}

.bannerArea .bannerTxt {
  position: absolute;
  left: 17%;
  top: 45%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.bannerArea .bannerTxt .one,
.bannerArea .bannerTxt .two {
  font-size: 90px;
  letter-spacing: 0;
  line-height: 80px;
  color: #3896d7;
  text-align: center;
}

.bannerArea .bannerTxt .thr {
  padding-right: 18px;
  font-size: 18px;
  letter-spacing: .4px;
  color: #1861a9;
  text-align: right;
}

.sectionArea {
  background: url(../image/section.jpg) repeat center 15px;
}

.aboutArea {
  position: relative;
  margin-top: -15px;
  padding: 0;
  height: 548px;
  z-index: 9;
}

.aboutArea:before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  min-width: 930px;
  max-width: calc(100% - 620px);
  height: 548px;
  background: url(../image/bg-about.png) no-repeat center right;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  z-index: -1;
}

.aboutArea .wrap {
  padding: 65px 0 75px 100px;
  height: 100%;
}

.aboutArea .left {
  display: inline-block;
  padding-top: 120px;
}

.aboutArea .Img {
  position: absolute;
  left: 50%;
  top: 34%;
  max-width: 270px;
  border: solid 5px #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
}

.aboutArea .Img.show {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.aboutArea .Img img {
  border-radius: 50%;
}

.aboutArea h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  color: #224885;
}

.aboutArea h2 span {
  position: relative;
  margin-right: 10px;
  color: #FFF;
}

.aboutArea h2 span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #224885;
  z-index: -1;
}

.aboutArea h3 {
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0;
  color: #224885;
}

.aboutArea .Txt {
  max-width: 460px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 28px;
  color: #222;
}

.aboutArea .btn {
  position: relative;
  margin: 35px 0 0 auto;
  width: 200px;
}

.aboutArea .btn:hover a {
  padding-left: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.aboutArea .btn:hover a:before {
  -webkit-animation: btn 1s 1 ease both;
          animation: btn 1s 1 ease both;
}

.aboutArea .btn:hover .btnCircle {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.08));
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.aboutArea .btn:hover .btnCircle path {
  stroke: #ccdaf7;
  stroke-dasharray: 500;
  stroke-dashoffset: 0;
  -webkit-transition: all 1s .5s;
  -o-transition: all 1s .5s;
  transition: all 1s .5s;
}

.aboutArea .btn a {
  position: relative;
  padding-left: 94px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  width: 200px;
  height: 60px;
  line-height: 60px;
  border-radius: 50px;
  text-align: center;
  color: #224885;
  overflow: hidden;
  -webkit-transition: all .5s .5s;
  -o-transition: all .5s .5s;
  transition: all .5s .5s;
}

.aboutArea .btn a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 35px;
  display: inline-block;
  width: 64px;
  height: 1px;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  background-color: #ccdaf7;
  -webkit-animation: rebtn 1s .5s 1 ease both;
          animation: rebtn 1s .5s 1 ease both;
}

.aboutArea .btn .btnCircle {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(-180deg) translateY(-50%);
      -ms-transform: rotate(-180deg) translateY(-50%);
          transform: rotate(-180deg) translateY(-50%);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  width: 200px;
  height: 60px;
  -webkit-filter: drop-shadow(0px -6px 10px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0px -6px 10px rgba(0, 0, 0, 0.08));
  z-index: -1;
  -webkit-transition: .5s .5s;
  -o-transition: .5s .5s;
  transition: .5s .5s;
}

.aboutArea .btn .btnCircle path {
  stroke: #f9f9f9;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.newsArea .wrap {
  position: relative;
  padding: 65px 0 75px 100px;
  z-index: 1;
}

.newsArea .newsList {
  width: 100%;
}

.newsArea .titleBox {
  text-align: left;
}

.newsArea h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  color: #71a6fc;
}

.newsArea h2 span {
  position: relative;
  margin-right: 8px;
  font-size: 44px;
  color: #083885;
}

.newsArea h2 span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #71a6fc;
  z-index: -1;
}

.newsArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsArea .dateBox {
  padding: 3px 0 8px;
  font-weight: 300;
  text-align: right;
  color: #9ac1ff;
}

.newsArea .dateBox .date {
  margin-bottom: 5px;
  font-size: 17px;
  letter-spacing: 0;
}

.newsArea .dateBox .year {
  font-size: 15px;
  letter-spacing: .6px;
}

.newsArea .Txt {
  position: relative;
  max-width: 600px;
  padding: 3px 0 8px 20px;
  margin-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.newsArea .Txt:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin-left: -2.5px;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: solid 1px #2761bc;
}

.newsArea .Txt:after {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  width: 1px;
  height: 70px;
  background-color: #2761bc;
}

.newsArea .Txt h3 a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #9ac1ff;
}

.newsArea .Txt .ellipsis {
  margin-top: 7px;
  height: 45px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22px;
  color: #6491d8;
}

.newsArea .moreBtn {
  position: absolute;
  left: 125%;
  top: 50%;
  padding-left: 94px;
  margin-top: -27px;
  display: inline-block;
  width: 190px;
  height: 54px;
  line-height: 54px;
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.08);
  background-color: #1f4f9c;
  border-radius: 50px;
  text-align: center;
  color: #71a6fc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  overflow: hidden;
}

.newsArea .moreBtn:hover {
  padding-left: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
}

.newsArea .moreBtn:hover:before {
  -webkit-animation: btn 1s 1 ease both;
          animation: btn 1s 1 ease both;
}

.newsArea .moreBtn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 35px;
  display: inline-block;
  width: 64px;
  height: 1px;
  background-color: #71a6fc;
  -webkit-animation: rebtn 1s 1 ease both;
          animation: rebtn 1s 1 ease both;
}

.proArea {
  position: relative;
  padding: 160px 0 120px;
  background-color: #f7f7f7;
  z-index: 1;
}

.proArea.show .titleBox {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.proArea.show .proList li:nth-of-type(1) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.proArea.show .proList li:nth-of-type(2) {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.proArea.show .proList li:nth-of-type(3) {
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.proArea.show .proList li:nth-of-type(4) {
  -webkit-transition-delay: 1.6s;
       -o-transition-delay: 1.6s;
          transition-delay: 1.6s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.proArea.show .proList li:nth-of-type(5) {
  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.proArea.show .proList li:nth-of-type(6) {
  -webkit-transition-delay: 2.4s;
       -o-transition-delay: 2.4s;
          transition-delay: 2.4s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.proArea.show .moreBtn {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.proArea:before {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 120px;
  background: url(../image/bg-product.jpg) no-repeat center;
}

.proArea:after {
  content: 'PRODUCTS';
  position: absolute;
  top: 11%;
  display: block;
  width: 100%;
  font-size: 276px;
  line-height: 270px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: #fafafa;
  z-index: -1;
}

.proArea .titleBox {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
}

.proArea .titleBox h2 {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #224885;
}

.proArea .proList {
  margin: 0 -22px;
}

.proArea .proList li {
  margin: 25px 0;
  padding: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
}

.proArea .item {
  position: relative;
  margin: 0 auto;
  max-width: 380px;
  border-radius: 10px;
  overflow: hidden;
}

.proArea .item:hover .Txt {
  -webkit-animation: cp .5s 1 linear both;
          animation: cp .5s 1 linear both;
}

.proArea .Img {
  font-size: 0;
}

.proArea .Img a {
  display: block;
}

.proArea .Img img {
  display: block;
  width: 380px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.proArea .Txt {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 40px;
  width: 100%;
  height: 100%;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 61% 0, 103% 100%, 0% 100%);
          clip-path: polygon(0 0, 61% 0, 103% 100%, 0% 100%);
  -webkit-animation: recp .5s 1 linear both;
          animation: recp .5s 1 linear both;
}

.proArea .Txt:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#003385), to(#018cd8));
  background: -webkit-linear-gradient(left, #003385 0%, #018cd8 100%);
  background: -o-linear-gradient(left, #003385 0%, #018cd8 100%);
  background: linear-gradient(to right, #003385 0%, #018cd8 100%);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  opacity: .9;
  z-index: -1;
}

.proArea .Txt h3 a {
  max-width: 210px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #FFF;
}

.proArea .Txt .ellipsis {
  width: 210px;
  height: 80px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  color: #77b8df;
}

.proArea .moreBtn {
  position: relative;
  margin: 20px auto 0;
  width: 200px;
  text-align: center;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all .8s 2.4s;
  -o-transition: all .8s 2.4s;
  transition: all .8s 2.4s;
}

.proArea .moreBtn:hover a {
  padding-left: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.proArea .moreBtn:hover a:before {
  -webkit-animation: btn 1s 1 ease both;
          animation: btn 1s 1 ease both;
}

.proArea .moreBtn:hover .btnCircle {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.08));
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.proArea .moreBtn:hover .btnCircle path {
  stroke: #ccdaf7;
  stroke-dasharray: 500;
  stroke-dashoffset: 0;
  -webkit-transition: all 1s .5s;
  -o-transition: all 1s .5s;
  transition: all 1s .5s;
}

.proArea .moreBtn a {
  position: relative;
  padding-left: 94px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  width: 200px;
  height: 60px;
  line-height: 60px;
  border-radius: 50px;
  text-align: center;
  color: #224885;
  overflow: hidden;
  -webkit-transition: all .5s .5s;
  -o-transition: all .5s .5s;
  transition: all .5s .5s;
}

.proArea .moreBtn a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 35px;
  display: inline-block;
  width: 64px;
  height: 1px;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  background-color: #ccdaf7;
  -webkit-animation: rebtn 1s .5s 1 ease both;
          animation: rebtn 1s .5s 1 ease both;
}

.proArea .moreBtn .btnCircle {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(-180deg) translateY(-50%);
      -ms-transform: rotate(-180deg) translateY(-50%);
          transform: rotate(-180deg) translateY(-50%);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  width: 200px;
  height: 60px;
  -webkit-filter: drop-shadow(0px -6px 10px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0px -6px 10px rgba(0, 0, 0, 0.08));
  z-index: -1;
  -webkit-transition: .5s .5s;
  -o-transition: .5s .5s;
  transition: .5s .5s;
}

.proArea .moreBtn .btnCircle path {
  stroke: #f9f9f9;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

footer.show .footerTop {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

footer .footerTop {
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}

@media screen and (min-width: 0\0) {
  .proArea .item:hover .Txt {
    left: -110%;
  }
  .proArea .Txt:before {
    left: -118%;
    width: 200%;
    -webkit-transform: skew(30deg);
        -ms-transform: skew(30deg);
            transform: skew(30deg);
  }
}

@media (max-width: 1380px) {
  .bannerArea .bannerTxt {
    left: 10%;
  }
  .bannerArea .bannerTxt .one,
  .bannerArea .bannerTxt .two {
    font-size: 60px;
    line-height: 60px;
  }
  .proArea {
    overflow: hidden;
  }
  .proArea:after {
    font-size: 200px;
  }
}

@media (max-width: 1180px) {
  .aboutArea {
    background-color: #FFF;
    height: auto;
  }
  .aboutArea:before {
    content: none;
  }
  .aboutArea .wrap {
    padding-right: 50px;
    padding-left: 50px;
  }
  .aboutArea .Img.show {
    right: 10%;
    left: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .aboutArea .left {
    padding-top: 0;
  }
  .newsArea .wrap {
    padding-right: 50px;
    padding-left: 50px;
  }
  .newsArea .item {
    position: relative;
  }
  .newsArea .moreBtn {
    left: calc(100% + 50px);
  }
}

@media (max-width: 1024px) {
  .aboutArea .wrap {
    padding: 50px;
  }
  .aboutArea .Img {
    right: 5%;
  }
  .newsArea .wrap {
    padding: 50px;
  }
  .newsArea .item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .newsArea .Txt h3 a {
    max-width: 600px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
  }
  .newsArea .moreBtn {
    position: relative;
    left: auto;
    top: auto;
    margin-left: auto;
    margin-top: 20px;
    display: block;
  }
}

@media (max-width: 860px) {
  .bannerArea .bannerTxt {
    left: 5%;
  }
  .bannerArea .bannerTxt .one,
  .bannerArea .bannerTxt .two {
    font-size: 40px;
    line-height: 40px;
  }
  .bannerArea .bannerTxt .thr {
    padding-right: 0;
    font-size: 15px;
  }
  .aboutArea .Img {
    display: none;
  }
  .aboutArea .Txt {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .newsArea .dateBox {
    width: 20%;
  }
  .newsArea .Txt {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .proArea .proList li {
    -webkit-transition-delay: 0s !important;
         -o-transition-delay: 0s !important;
            transition-delay: 0s !important;
  }
}

@media (max-width: 480px) {
  .bannerArea .bannerTxt {
    left: 5%;
  }
  .bannerArea .bannerTxt .one,
  .bannerArea .bannerTxt .two {
    font-size: 30px;
    line-height: 30px;
  }
  .bannerArea .bannerTxt .thr {
    font-size: 14px;
  }
  .aboutArea .wrap {
    padding: 30px;
  }
  .aboutArea .Txt {
    word-break: break-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
        hyphens: auto;
  }
  .newsArea .wrap {
    padding: 30px;
  }
  .newsArea .dateBox {
    width: 25%;
  }
  .newsArea .Txt {
    width: 75%;
  }
  .proArea {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .proArea:before {
    top: -50px;
  }
  .proArea:after {
    font-size: 70px;
  }
  .proArea .wrap {
    padding: 0 30px;
  }
  .proArea .titleBox {
    margin-bottom: 10px;
  }
  .proArea .proList {
    margin: 0;
  }
  .proArea .moreBtn {
    margin-top: 0;
  }
  footer.show .footerTop {
    top: -50px;
  }
}
