@charset "UTF-8";
.newsArea .newsList > li, .newsArea .item, .qualityArea .Txt, .projectList h3 a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes circleAni {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes circleAni {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3) translate(-50%, -50%);
    transform: scale3d(0.3, 0.3, 0.3) translate(-50%, -50%);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) translate(-50%, -50%);
    transform: scale3d(1.1, 1.1, 1.1) translate(-50%, -50%);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) translate(-50%, -50%);
    transform: scale3d(0.9, 0.9, 0.9) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
    transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97) translate(-50%, -50%);
    transform: scale3d(0.97, 0.97, 0.97) translate(-50%, -50%);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate(-50%, -50%);
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3) translate(-50%, -50%);
    transform: scale3d(0.3, 0.3, 0.3) translate(-50%, -50%);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) translate(-50%, -50%);
    transform: scale3d(1.1, 1.1, 1.1) translate(-50%, -50%);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) translate(-50%, -50%);
    transform: scale3d(0.9, 0.9, 0.9) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
    transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97) translate(-50%, -50%);
    transform: scale3d(0.97, 0.97, 0.97) translate(-50%, -50%);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate(-50%, -50%);
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
}

.mainArea {
  padding: 0;
}

.arrows {
  position: relative;
  width: 94px;
  height: 94px;
}

.arrows:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 22px;
  height: 8px;
  background-image: url("../images/arrows.png");
  background-repeat: no-repeat;
  opacity: .5;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.arrows.dark {
  background-color: #eee;
}

.arrows.dark:hover {
  background-color: #e5e5e5;
}

.arrows.dark:hover:after {
  opacity: 1;
}

.arrows.white {
  background-color: rgba(255, 255, 255, 0.25);
}

.arrows.white:after {
  background-image: url("../images/arrows_white.png");
}

.arrows.white:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.prevArrow:after {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
      -ms-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}

/*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);
  }
}

.dotsBox {
  width: 100%;
  text-align: center;
}

.dotsBox .dots li {
  display: inline-block;
  margin: 0 5px;
}

.dotsBox .dots li.slick-active button, .dotsBox .dots li:hover button {
  border-color: #2b8ebf;
}

.dotsBox .dots li.slick-active button:after, .dotsBox .dots li:hover button:after {
  background-color: #2b8ebf;
}

.dotsBox .dots li button {
  position: relative;
  display: block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: none;
  font-size: 0;
  line-height: 0;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.dotsBox .dots li button:focus {
  outline: none;
}

.dotsBox .dots li button:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #aaa;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.bannerArea {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.bannerArea.ani:before {
  -webkit-animation: flip 1.5s forwards;
          animation: flip 1.5s forwards;
}

.bannerArea:before {
  content: 'TATAMI';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
  text-transform: uppercase;
  font-size: 252px;
  font-family: "Open Sans", "微軟正黑體", sans-serif;
  font-weight: 600;
  letter-spacing: .12em;
  color: #93705d;
  opacity: 0.4;
  text-shadow: 0px 0px 75px rgba(98, 98, 98, 0.9);
  /*mix-blend-mode: overlay;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;*/
}

.bannerArea .Txt {
  position: absolute;
  left: 0;
  bottom: 330px;
  width: 100%;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}

.bannerArea .Txt h2 {
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: .2em;
  text-shadow: 5px 5px 1px rgba(113, 113, 113, 0.5);
}

.bannerArea .Txt h2 b {
  font-weight: 500;
}

.bannerArea .Txt p {
  font-size: 21px;
  letter-spacing: .1em;
  color: #f5ecef;
}

.bannerArea .arrowBox {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bannerArea .scrollDown {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 177px;
  height: 105px;
  background: url("../images/scrolldown.png") no-repeat;
  background-size: contain;
}

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

.newsArea {
  position: relative;
  z-index: 0;
  padding: 110px 0 50px;
  background-color: #f5f7fa;
  overflow: hidden;
}

.newsArea:before, .newsArea:after {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: 0;
  z-index: -1;
  width: 875px;
  height: 842px;
  background-repeat: no-repeat;
}

.newsArea:before {
  left: 0;
  background-image: url("../images/lineBg_l.png");
}

.newsArea:after {
  right: 0;
  background-image: url("../images/lineBg_r.png");
  background-position: right top;
}

.newsArea .wrap {
  position: relative;
  width: 1320px;
}

.newsArea .titleBox {
  padding-bottom: 30px;
}

.newsArea .newsList {
  position: relative;
  z-index: 2;
  margin: 0 -12px;
}

.newsArea .newsList > li {
  padding: 0 12px;
}

.newsArea .slick-list {
  padding: 50px 10px;
  margin-top: -50px;
}

.newsArea .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.newsArea .item {
  padding: 10px 20px 15px;
  background-color: #fff;
  border: 1px solid #ececec;
}

.newsArea .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Open Sans", "微軟正黑體", sans-serif;
}

.newsArea .date .left {
  margin-right: 12px;
  font-size: 65px;
  font-weight: 400;
  color: #e5e5e5;
}

.newsArea .date .rt {
  font-size: 17px;
  letter-spacing: .15em;
  color: #ac2226;
  text-transform: uppercase;
  font-weight: 800;
}

.newsArea .date .rb {
  font-size: 15px;
  letter-spacing: .15em;
  color: #626262;
}

.newsArea .Img {
  margin-bottom: 20px;
}

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

.newsArea .Txt {
  text-align: center;
}

.newsArea h3 a {
  display: block;
  margin-bottom: 10px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: .15em;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.newsArea .newIcon {
  margin-bottom: 20px;
}

.newsArea p {
  margin-bottom: 30px;
  max-height: 50px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .1em;
  color: #707070;
}

.newsArea .newsBox {
  position: relative;
}

.newsArea .arrows {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.newsArea .prevArrow {
  left: -84px;
}

.newsArea .nextArrow {
  right: -84px;
}

.aboutArea {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.aboutArea:before {
  content: '';
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: url("../images/aboutBg.png") no-repeat center center;
  background-size: cover;
}

.aboutArea .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 1288px;
}

.aboutArea .bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.aboutArea .wrap {
  position: relative;
  z-index: 5;
  width: 430px;
  padding-top: 90px;
  padding-bottom: 45px;
}

.aboutArea .titleBox {
  margin-bottom: 55px;
}

.aboutArea .titleBox em {
  font-weight: 700;
  letter-spacing: .075em;
  text-shadow: 0px 6px 1px rgba(27, 27, 27, 0.18);
}

.aboutArea .titleBox .title {
  font-size: 35px;
  letter-spacing: .3em;
  color: #333;
  text-shadow: 0px 2px 1px rgba(27, 27, 27, 0.18);
}

.aboutArea .Txt {
  margin-bottom: 45px;
  max-height: 150px;
  font-size: 17px;
  letter-spacing: .15em;
  color: #333;
  line-height: 2;
  text-align: center;
  text-shadow: 0px 1px 1px rgba(27, 27, 27, 0.18);
}

.qualityArea {
  padding: 90px 0;
}

.qualityArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.qualityArea .titleBox02 {
  -webkit-transform: translateX(55px);
      -ms-transform: translateX(55px);
          transform: translateX(55px);
  margin-bottom: 50px;
}

.qualityArea .left {
  position: relative;
  z-index: 0;
  width: 600px;
  overflow: hidden;
}

.qualityArea .left:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../images/quqlityBg.jpg") no-repeat center top;
  -webkit-transition: all 0.6s cubic-bezier(0.9, 0, 0.1, 1);
  -o-transition: all 0.6s cubic-bezier(0.9, 0, 0.1, 1);
  transition: all 0.6s cubic-bezier(0.9, 0, 0.1, 1);
}

.qualityArea .left img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.qualityArea .Img {
  height: 100%;
}

.qualityArea .right {
  width: calc(100% - 600px);
  padding-top: 70px;
}

.qualityArea .Txt {
  position: relative;
  padding-left: 100px;
  padding-bottom: 200px;
}

.qualityArea .text {
  line-height: 2;
  font-size: 15px;
  letter-spacing: .1em;
  color: #707070;
  margin-bottom: 60px;
}

.qualityArea .title em {
  font-weight: 600;
  font-family: "Open Sans", "微軟正黑體", sans-serif;
  font-size: 15px;
  letter-spacing: .2em;
  color: #d2d2d2;
  text-transform: uppercase;
}

.qualityArea .title h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
  font-size: 35px;
}

.qualityArea .title h2 span {
  font-weight: 500;
  color: #ac2226;
}

.qualityArea .bottomTxtList {
  position: absolute;
  bottom: 0;
  left: -15px;
  z-index: 0;
  width: 633px;
  height: auto;
}

.qualityArea .bottomTxtList .imgBg {
  display: block;
  width: 100%;
}

.qualityArea .bottomTxtList li {
  position: absolute;
  top: 0;
  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: 25%;
  height: 100%;
  font-size: 20px;
  font-family: "Open Sans", "微軟正黑體", sans-serif;
  font-weight: 700;
  letter-spacing: .2em;
  color: #333;
}

.qualityArea .bottomTxtList li:nth-child(1) {
  left: 0;
}

.qualityArea .bottomTxtList li:nth-child(1):before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  width: 91%;
  height: 91%;
  border-radius: 50%;
  background-color: #fff;
}

.qualityArea .bottomTxtList li:nth-child(1) em {
  -webkit-transform: translateX(8px);
      -ms-transform: translateX(8px);
          transform: translateX(8px);
}

.qualityArea .bottomTxtList li:nth-child(2) {
  left: 25%;
}

.qualityArea .bottomTxtList li:nth-child(2) em {
  -webkit-transform: translateX(6px);
      -ms-transform: translateX(6px);
          transform: translateX(6px);
}

.qualityArea .bottomTxtList li:nth-child(3) {
  left: 50%;
}

.qualityArea .bottomTxtList li:nth-child(3) em {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}

.qualityArea .bottomTxtList li:nth-child(4) {
  right: 0;
}

.projectArea {
  position: relative;
  z-index: 5;
}

.projectArea .wrap {
  position: relative;
  width: 100%;
  padding: 0;
}

.projectArea .arrows {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  width: 94px;
  height: 94px;
  background-color: #fff;
}

.projectArea .prevArrow {
  left: 0;
}

.projectArea .nextArrow {
  right: 0;
}

.projectArea .slick-list {
  padding-bottom: 50px;
}

.projectList li {
  float: left;
  width: 20%;
}

.projectList .item {
  position: relative;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.projectList .item:hover {
  -webkit-box-shadow: 0px 20px 40px 1.18px rgba(49, 49, 49, 0.4);
          box-shadow: 0px 20px 40px 1.18px rgba(49, 49, 49, 0.4);
}

.projectList .item:hover .Img img {
  opacity: 1;
}

.projectList .item:hover .circleBox:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: .1s;
       -o-transition-delay: .1s;
          transition-delay: .1s;
}

.projectList .item:hover .circleBox img {
  -webkit-animation: bounceIn 1s .9s forwards;
          animation: bounceIn 1s .9s forwards;
}

.projectList .item:hover .circle {
  -webkit-animation: circleAni .6s .4s ease-in forwards;
          animation: circleAni .6s .4s ease-in forwards;
}

.projectList .item:hover .subTitle {
  opacity: 0;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}

.projectList .item:hover .Txt:before, .projectList .item:hover .Txt:after {
  opacity: 0;
  bottom: -32px;
}

.projectList .item:hover h3 {
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
}

.projectList .Img {
  background-color: #000;
}

.projectList .Img img {
  opacity: .45;
  min-height: 710px;
  -webkit-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projectList .Txt {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  pointer-events: none;
  text-align: center;
}

/*.projectList .Txt:before, .projectList .Txt:after {
  content: '';
  position: absolute;
  bottom: -12px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  width: 6px;
  height: 35px;
  background-color: #ac2226;
  -webkit-transform: skewX(45deg);
      -ms-transform: skewX(45deg);
          transform: skewX(45deg);
}

.projectList .Txt:before {
  left: 20px;
}

.projectList .Txt:after {
  left: 32px;
}*/

.projectList .subTitle {
  margin-bottom: 8px;
  font-family: "Open Sans", "微軟正黑體", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.projectList .subTitle span {
  font-weight: 600;
}

.projectList h3 {
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.projectList h3 a {
  display: block;
  /*padding-left: 50px;*/
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: .24em;
  color: #fff;
}

.projectList .circleBox {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 155px;
  height: 155px;
  pointer-events: none;
}

.projectList .circleBox:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  margin-top: -60px;
  margin-left: -60px;
  z-index: -1;
  width: 120px;
  height: 120px;
  background-color: rgba(59, 89, 153, 0.9);
  border-radius: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.projectList .circleBox img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.projectList .circle {
  fill: transparent;
  stroke: rgba(59, 89, 153, 0.9);
  stroke-width: 1.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.linkArea {
  position: relative;
  z-index: 0;
  margin-top: -50px;
  padding: 135px 0 50px;
  background-color: #f5f7fa;
  overflow: hidden;
}

.linkArea:before, .linkArea:after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 875px;
  height: 842px;
  background-repeat: no-repeat;
  background-size: 875px 842px;
  overflow: hidden;
}

.linkArea:before {
  left: 0;
  background-image: url("../images/lineBg_l.png");
}

.linkArea:after {
  right: 0;
  background-image: url("../images/lineBg_r.png");
}

.linkArea .titleBox02 {
  margin-bottom: 100px;
}

.linkArea .Img {
  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;
}

.linkArea .Img img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  max-width: 240px;
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.linkArea .item:hover .Img img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

@media (min-width: 1181px) {
  .qualityArea.show .left:after {
    height: 100%;
  }
  .qualityArea.show .Img {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .qualityArea .left:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 0;
    background: url("../images/quqlityBg.jpg") no-repeat center top;
    -webkit-transition: all 0.6s cubic-bezier(0.9, 0, 0.1, 1);
    -o-transition: all 0.6s cubic-bezier(0.9, 0, 0.1, 1);
    transition: all 0.6s cubic-bezier(0.9, 0, 0.1, 1);
  }
  .qualityArea .Img {
    opacity: 1;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.7s 0.5s cubic-bezier(0.9, 0, 0.1, 1);
    -o-transition: all 0.7s 0.5s cubic-bezier(0.9, 0, 0.1, 1);
    transition: all 0.7s 0.5s cubic-bezier(0.9, 0, 0.1, 1);
  }
  .newsArea:before, .newsArea:after, .linkArea:before, .linkArea:after {
    width: 0;
    -webkit-transition: all 1s .2s;
    -o-transition: all 1s .2s;
    transition: all 1s .2s;
  }
  .newsArea:after, .linkArea:after {
    background-position: right top;
  }
  .newsArea.show:before, .newsArea.show:after, .linkArea.show:before, .linkArea.show:after {
    width: 875px;
  }
}

@media (max-width: 1600px) {
  .newsArea {
    padding: 50px 0;
  }
  .newsArea .titleBox {
    margin-bottom: 0;
  }
  .newsArea:before, .newsArea:after, .linkArea:before, .linkArea:after {
    opacity: .6;
  }
}

@media (max-width: 1540px) {
  .newsArea .arrowBox {
    display: none;
  }
}

@media (max-width: 1360px) {
  .bannerArea:before {
    font-size: 240px;
  }
  .newsArea .wrap {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 1280px) {
  .qualityArea {
    padding: 40px 0;
  }
  .qualityArea .left {
    width: 50%;
  }
  .qualityArea .bottomTxtList {
    left: auto;
    right: 0;
  }
  .qualityArea .right {
    width: 50%;
  }
  .qualityArea .Txt {
    padding-left: 50px;
  }
}

@media (max-width: 1240px) {
  .bannerArea .Txt {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: auto;
  }
}

@media (max-width: 1023px) {
  .linkArea {
    padding: 80px 0 50px;
  }
  .linkArea .titleBox02 {
    margin-bottom: 40px;
  }
  .qualityArea {
    padding: 0;
  }
  .qualityArea .wrap {
    position: relative;
  }
  .qualityArea .left {
    position: absolute;
    left: 0;
    top: 0;
    opacity: .05;
    width: 100%;
    height: 100%;
  }
  .qualityArea .right {
    width: 100%;
    padding: 50px 0;
    text-align: center;
  }
  .qualityArea .titleBox02 {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .qualityArea .Txt {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .qualityArea .topBox {
    margin-bottom: 30px;
  }
  .qualityArea .text {
    margin-bottom: 30px;
  }
  .qualityArea .bottomTxtList {
    position: relative;
    text-align: left;
    width: 100%;
  }
  .qualityArea .bottomTxtList li:nth-child(1):before {
    display: none;
  }
  .bannerArea:before {
    display: none;
  }
  .bannerArea .Txt {
    display: none;
  }
}

@media (max-width: 960px) {
  .projectArea .arrows {
    width: 65px;
    height: 65px;
  }
  .projectArea .Img img {
    min-height: 500px;
  }
  .bannerArea .arrows {
    width: 65px;
    height: 65px;
  }
}

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

@media (max-width: 540px) {
  .qualityArea .bottomTxtList li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .newsArea {
    padding: 30px 0;
  }
  .aboutArea .wrap {
    width: 100%;
  }
  .aboutArea .titleBox .title {
    font-size: 30px;
  }
  .linkArea {
    padding: 50px 0;
  }
  .linkArea .titleBox02 {
    margin-bottom: 0;
  }
  .qualityArea .title h2 {
    font-size: 30px;
  }
  .bannerArea .arrows {
    width: 45px;
    height: 45px;
  }
  .bannerArea .arrows:after {
    width: 16px;
    height: 6px;
    background-size: contain;
  }
}

@media (max-width: 375px) {
  .qualityArea .bottomTxtList li {
    font-size: 12px;
  }
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
