@charset "UTF-8";
.aboutArea .left, .processArea .left, .newsArea .Txt {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mainArea {
  padding: 0;
}

.titleBox.show:before {
  width: 20px;
}

.titleBox.show em, .titleBox.show h2 {
  opacity: 1;
}

.titleBox:before {
  -webkit-transition: all .4s .8s linear;
  -o-transition: all .4s .8s linear;
  transition: all .4s .8s linear;
  width: 0px;
}

.titleBox em {
  -webkit-transition: all .4s linear;
  -o-transition: all .4s linear;
  transition: all .4s linear;
  opacity: 0;
}

.titleBox h2 {
  -webkit-transition: all .4s .4s linear;
  -o-transition: all .4s .4s linear;
  transition: all .4s .4s linear;
  opacity: 0;
}

.aboutArea {
  padding: 60px 0;
  position: relative;
}

.aboutArea .wrap {
  position: relative;
  background: url(../images/pageDeck01.png) no-repeat top left;
  z-index: 10;
}

.aboutArea .Img {
  float: left;
  width: 50%;
  -webkit-transition: all .8s linear;
  -o-transition: all .8s linear;
  transition: all .8s linear;
  opacity: 0;
}

.aboutArea .Img.show {
  opacity: 1;
}

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

.aboutArea .left {
  float: left;
  width: 50%;
  padding-left: 90px;
  padding-top: 80px;
}

.aboutArea .left.show .Txt {
  opacity: 1;
}

.aboutArea .Txt {
  margin: 30px 20px 30px 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  letter-spacing: 1px;
  line-height: 1.8;
  -webkit-transition: all .4s 1.2s linear;
  -o-transition: all .4s 1.2s linear;
  transition: all .4s 1.2s linear;
  opacity: 0;
}

@media (max-width: 960px) {
  .aboutArea .Txt {
  margin: 30px 0;
}
}

.aboutArea .Txt h2 {
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #27003d;
  line-height: 1.5;
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  width: 215px;
  height: 50px;
  line-height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  background-color: #b39c61;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
}

.btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-animation: antiBtn 1.5s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation: antiBtn 1.5s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.btn:hover {
  color: #fff;
  background-color: #27003d;
}

.btn:hover:before {
  border-color: #fff;
}

@-webkit-keyframes antiBtn {
  0% {
    right: 30px;
    opacity: 0;
  }
  100% {
    right: 20px;
    opacity: 1;
  }
}

@keyframes antiBtn {
  0% {
    right: 30px;
    opacity: 0;
  }
  100% {
    right: 20px;
    opacity: 1;
  }
}

.serviceArea {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.serviceArea:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #4628ae;
  z-index: -1;
}

.serviceArea .serviceBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1280px;
  background-repeat: no-repeat;
  background-image: url(../images/bgService.jpg);
  background-position: 0 0;
  opacity: 0.1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.serviceArea .wrap {
  position: relative;
  z-index: 10;
}

.serviceArea .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.serviceArea .top.show p {
  opacity: 1;
}

.serviceArea .top p {
  padding-left: 70px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #fff;
  letter-spacing: 2px;
  -webkit-transition: all .4s 1.2s linear;
  -o-transition: all .4s 1.2s linear;
  transition: all .4s 1.2s linear;
  opacity: 0;
}

.serviceArea .titleBox:before {
  background-color: #fff;
}

.serviceArea .titleBox em {
  color: #fff;
}

.serviceArea .titleBox h2 {
  color: #fff;
}

.serviceArea .serviceList {
  margin-top: 60px;
  margin-bottom: 140px;
}

.serviceArea .serviceList.show li {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.serviceArea .serviceList li {
  padding: 0;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  opacity: 0;
  margin-bottom: 2%;
}

.serviceArea .serviceList li:hover .item {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.serviceArea .serviceList li:hover .item:after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#27003d), to(#27003d)), -webkit-gradient(linear, left top, left bottom, from(#27003d), to(#27003d)), -webkit-gradient(linear, left top, left bottom, from(#27003d), to(#27003d)), -webkit-gradient(linear, left top, left bottom, from(#27003d), to(#27003d));
  background-image: -webkit-linear-gradient(top, #27003d 0%, #27003d 100%), -webkit-linear-gradient(top, #27003d 0%, #27003d 100%), -webkit-linear-gradient(top, #27003d 0%, #27003d 100%), -webkit-linear-gradient(top, #27003d 0%, #27003d 100%);
  background-image: -o-linear-gradient(top, #27003d 0%, #27003d 100%), -o-linear-gradient(top, #27003d 0%, #27003d 100%), -o-linear-gradient(top, #27003d 0%, #27003d 100%), -o-linear-gradient(top, #27003d 0%, #27003d 100%);
  background-image: linear-gradient(to bottom, #27003d 0%, #27003d 100%), linear-gradient(to bottom, #27003d 0%, #27003d 100%), linear-gradient(to bottom, #27003d 0%, #27003d 100%), linear-gradient(to bottom, #27003d 0%, #27003d 100%);
  background-size: calc( 100% - 40px) 1px, 1px calc( 100% - 40px);
  background-position: 50% 20px, 20px 50%, 50% calc( 100% - 20px), calc( 100% - 20px) 50%;
}

.serviceArea .serviceList li:nth-of-type(2) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.serviceArea .serviceList li:nth-of-type(3) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.serviceArea .serviceList li:nth-of-type(4) {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.serviceArea .serviceList li:nth-of-type(5) {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.serviceArea .serviceList li:nth-of-type(6) {
  -webkit-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.serviceArea .item {
  position: relative;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #fff;
  border-radius: 20px;
}
/*
.serviceArea .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #f0f5fd;
  z-index: -1;
}

.serviceArea .item:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.3;
  z-index: -1;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f5fd), to(#f0f5fd)), -webkit-gradient(linear, left top, left bottom, from(#f0f5fd), to(#f0f5fd)), -webkit-gradient(linear, left top, left bottom, from(#f0f5fd), to(#f0f5fd)), -webkit-gradient(linear, left top, left bottom, from(#f0f5fd), to(#f0f5fd));
  background-image: -webkit-linear-gradient(top, #f0f5fd 0%, #f0f5fd 100%), -webkit-linear-gradient(top, #f0f5fd 0%, #f0f5fd 100%), -webkit-linear-gradient(top, #f0f5fd 0%, #f0f5fd 100%), -webkit-linear-gradient(top, #f0f5fd 0%, #f0f5fd 100%);
  background-image: -o-linear-gradient(top, #f0f5fd 0%, #f0f5fd 100%), -o-linear-gradient(top, #f0f5fd 0%, #f0f5fd 100%), -o-linear-gradient(top, #f0f5fd 0%, #f0f5fd 100%), -o-linear-gradient(top, #f0f5fd 0%, #f0f5fd 100%);
  background-image: linear-gradient(to bottom, #f0f5fd 0%, #f0f5fd 100%), linear-gradient(to bottom, #f0f5fd 0%, #f0f5fd 100%), linear-gradient(to bottom, #f0f5fd 0%, #f0f5fd 100%), linear-gradient(to bottom, #f0f5fd 0%, #f0f5fd 100%);
  background-size: calc( 100% - 0px) 1px, 1px calc( 100% - 0px);
  background-position: 50% 0px, 0px 50%, 50% calc( 100% - 0px), calc( 100% - 0px) 50%;
  -webkit-transition: background 0.4s linear;
  -o-transition: background 0.4s linear;
  transition: background 0.4s linear;
  pointer-events: none;
}
*/
.serviceArea .Txt {
  /*width: 240px;*/
  text-align: center;
}

.serviceArea h3 {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}

.serviceArea h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90px;
  height: 1px;
  background-color: #d1bc86;
}

.serviceArea h3 a {
  color: #27003d;
  position: relative;
}

.serviceArea h3 a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background-color: #27003d;
  opacity: 0;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.serviceArea h3 a:hover:before {
  width: 100%;
  opacity: 0.5;
}

.serviceArea p {
  padding: 0 20px;
}

.processArea {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.processArea .deck {
  position: absolute;
  z-index: -1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.processArea .deck.deck01 {
  top: -50px;
  left: -250px;
}

.processArea .deck.deck02 {
  top: 160px;
  left: -270px;
}

.processArea .deck.deck03 {
  top: 780px;
  left: 0;
}

.processArea .deck.deck04 {
  top: 0;
  right: 0;
}

.processArea .deck.deck05 {
  top: 420px;
  right: 0;
}

.processArea .wrap {
  background-color: #fcfcfc;
  position: relative;
  background: url(../images/pageDeck01.png) no-repeat top left;
  z-index: 10;
}

.processArea .left {
  float: left;
  width: 50%;
  padding: 80px 20px 0 90px;
}

.processArea .left.show .textEditor {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.processArea .left.show .process_m {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.processArea .textEditor {
  margin: 30px 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  letter-spacing: 1px;
  line-height: 2;
  -webkit-transition: all .6s 1.2s linear;
  -o-transition: all .6s 1.2s linear;
  transition: all .6s 1.2s linear;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}

.processArea .textEditor h2 {
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #27003d;
  line-height: 1.5;
  margin-bottom: 50px;
}

.processArea .process_m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 45px;
  letter-spacing: normal;
  -webkit-transition: all .6s 1.9s linear;
  -o-transition: all .6s 1.9s linear;
  transition: all .6s 1.9s linear;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}

.processArea .process_m li {
  cursor: pointer;
}

.processArea .process_m li:not(:first-child) {
  margin-top: 20px;
}

.processArea .btn.current {
  color: #fff;
  background-color: #27003d;
}

.processArea .btn.current:before {
  border-color: #fff;
}

.processArea .right {
  float: right;
  width: 50%;
  position: relative;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 0;
}

.processArea .right.show {
  opacity: 1;
}

.processArea .right .Txt {
  padding-top: 200px;
  padding-bottom: 120px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 770px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.processArea .processList {
  position: relative;
}

.processArea .processList > li {
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  z-index: -1;
}

.processArea .processList > li.current {
  opacity: 1;
  z-index: 1;
}

.processArea .processList > li:not(:first-child) {
  position: absolute;
}

.processArea .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin-bottom: 35px;
}

.processArea .num {
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  font-size: 16px;
  font-family: "Oswald", "微軟正黑體", sans-serif;
  letter-spacing: 1px;
  background-color: #b39c61;
  color: #fff;
}


.processArea .content {
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  color: #5e5e5e;
}


@media (max-width: 768px) {
  .processArea .num {
  display: none;
  }
  .processArea .content {
  padding: 20px;
  /*border: solid 1px #ccc;*/
  margin: 5px;
  box-shadow:0px 0px 2px #ccc;
  border-radius: 10px;
  background-color: #fff;
  }
}

.processArea .content li {
  padding: 3px 0px 3px 15px;
  position: relative;
}

.processArea .content li:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 1px;
  background-color: #b39c61;
}

.processArea h4 {
  height: 33px;
  line-height: 33px;
  font-weight: 600;
  font-size: 18px;
  color: #27003d;
}

.newsArea {
  padding: 60px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.newsArea:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #4628ae;
  z-index: -1;
}

.newsArea .newsBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1280px;
  background-repeat: no-repeat;
  background-image: url(../images/bgNews.jpg);
  background-position: 0 0;
  opacity: 0.1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.newsArea .wrap {
  padding-top: 70px;
  padding-bottom: 60px;
}

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

.newsArea .titleBox:before {
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.newsArea .titleBox em {
  color: #fff;
  margin: 0;
}

.newsArea .titleBox h2 {
  color: #fff;
}

.newsArea .newsList {
  padding: 50px 0;
  z-index: 10;
  -webkit-transition: all .4s linear;
  -o-transition: all .4s linear;
  transition: all .4s linear;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}

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

.newsArea .Img {
  position: relative;
}

.newsArea .Img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  z-index: 20;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  pointer-events: none;
}

.newsArea .Img:hover:before {
  border-color: #f0f5fd;
  width: calc( 100% - 20px);
  height: calc( 100% - 20px);
}

.newsArea .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  object-fit: cover;
  height: 250px;
}

.newsArea .Txt {
  position: relative;
  padding: 30px 20px 70px;
  background-color: #fff;
}

.newsArea .Txt p {
  height: 50px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.newsArea .newIcon {
  position: absolute;
  left: 15px;
  top: 8px;
  color: #27003d;
}

.newsArea h3 a {
  display: inline-block;
  margin-bottom: 15px;
  height: 25px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  letter-spacing: 1px;
  white-space: nowrap;
}

.newsArea h3 a:hover {
  color: #d1bc86;
}

.newsArea .date {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
}

.newsArea .newsBtn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.newsArea .newsBtn:before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 14px;
  width: 13px;
  height: 1px;
  background-color: #fff;
  z-index: 1;
}

.newsArea .newsBtn:after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 20px;
  height: 13px;
  width: 1px;
  background-color: #fff;
  z-index: 1;
}

.newsArea .newsBtn a {
  position: absolute;
  top: 30%;
  left: 30%;
  display: inline-block;
  border: 50px solid #b39c61;
  border-color: #b39c61 transparent transparent transparent;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.linkArea {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.linkArea:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(../images/bgLink.jpg);
  background-size: 1920px 874px;
  background-position: 0 0;
  z-index: -1;
}

.linkArea .wrap {
  padding-top: 70px;
  padding-bottom: 60px;
  text-align: center;
}

.linkArea .titleBox {
  text-align: center;
}

.linkArea .titleBox:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.linkArea .titleBox em {
  margin: 0;
}

.linkArea .dataBox {
  padding-top: 50px;
  padding-bottom: 50px;
}

.linkArea .linkList {
  -webkit-transition: all .6s linear;
  -o-transition: all .6s linear;
  transition: all .6s linear;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}

.linkArea .linkList.show {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}


.linkArea .linkList li {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  border: solid 8px #eee;
  margin: 10px;
}

.linkArea .linkList .Txt h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.linkArea .linkList .Txt h3 span {
  font-size: 14px;
}

.linkArea .linkList .Txt p {
  font-size: 15px;
  color: #666;
}

.linkArea .linkList .Txt .ellipsis {
  height: 70px;
}

.linkArea .linkList .Img {
  margin-bottom: 10px;
}

.linkArea .linkList .Img img {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  display: block;
  width: 80px;
  margin: auto;
  border: solid 5px #eee;
  border-radius: 50%;
}
/*
.linkArea .linkList:hover .Img img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.linkArea .linkList li:hover .Img img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
*/
.linkArea .btn {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 0;
}

.linkArea .btn.show {
  opacity: 1;
}

@media (max-width: 1420px) {
  .aboutArea .wrap, .serviceArea .wrap, .processArea .wrap {
    border: 1px solid rgba(219, 219, 219, 0.4);
  }
  .linkArea {
    border: none;
  }
}

@media (max-width: 1300px) {
  .aboutArea, .processArea {
    padding: 60px;
  }
  .aboutArea .wrap, .processArea .wrap {
    padding: 0;
  }
  .serviceArea {
    padding: 60px 0;
  }
  .serviceArea .wrap {
    border: 0;
  }
  .serviceArea .top {
    padding: 0 60px;
  }
}

@media (max-width: 1180px) {
  .serviceArea .wrap {
    padding: 0;
  }
  .serviceArea .serviceList {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .newsArea .wrap, .linkArea .wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
  .linkArea .dataBox {
    padding: 20px 0;
  }
  .linkArea .linkList li {
  margin: 0;
  }
}


.bannerArea span.text {
    font-size: 15px;
  }


@media (max-width: 960px) {
  .bannerArea .Txt {
    width: 470px;
  }
  .bannerArea span.text {
    font-size: 13px;
  }
  .aboutArea {
    overflow: hidden;
  }
  .aboutArea .Img {
    position: absolute;
    background-color: #fff;
    width: 100%;
    z-index: -1;
  }
  .aboutArea .Img img {
    opacity: 0.2;
  }
  .aboutArea .left {
    width: 100%;
    text-align: center;
    padding: 30px;
  }
  .aboutArea .left .titleBox:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .aboutArea .left .titleBox em {
    margin: 0;
  }
  .aboutArea .left .Txt h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .serviceArea .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .serviceArea .top p {
    margin-top: 30px;
    padding: 0;
  }
  .serviceArea .titleBox:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .serviceArea .titleBox em {
    margin: 0;
  }
  .processArea .wrap {
    background: none;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .processArea .titleBox em {
    margin: 0;
  }
  .processArea .titleBox:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .processArea .left {
    width: 100%;
    padding: 30px;
    text-align: center;
  }
  .processArea .right {
    width: 100%;
  }
  .processArea .right .Txt {
    padding: 40px;
    height: auto;
  }
  .processArea .textEditor h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .processArea .process_m {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .newsArea .newsList {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .bannerArea .title h2 {
    font-size: 24px;
  }
  .aboutArea, .processArea {
    padding: 0;
  }
  .processList li {
    padding: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .processList .item .Txt {
    display: block;
    padding: 0;
  }
  .processList .item .Txt .slick-dots {
    left: 0;
  }
}

@media (max-width: 640px) {
  .bannerArea .Txt {
    width: 380px;
  }
  .bannerArea .Txt em {
    display: none;
  }

  .bannerArea .text {
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 550px) {
  .aboutArea .Img {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  .aboutArea .Img img {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 520px) {
  .processArea .processList .item {
    width: 260px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .bannerArea .Txt {
    padding: 20px;
    width: 270px;
  }
  .bannerArea .Txt:before {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
  }
  .bannerArea .Txt:after {
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
  }
  .bannerArea .title h2 {
    display: none;
  }
  .bannerArea .title span {
    /*margin-top: 5px;*/
    display: block;
  }
  .serviceArea .serviceList {
    margin-top: 40px;
    margin-bottom: 0px;
  }
  .serviceArea .serviceList li {
    /*padding: 30px 0;*/
  }
  .serviceArea .item {
    width: 280px;
    height: 280px;
  }
  .serviceArea .item:before {
    width: 220px;
    height: 220px;
  }
  .serviceArea .item:after {
    width: 240px;
    height: 240px;
  }
  .serviceArea .Txt {
    /*width: 140px;*/
  }
  .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;
  }
}

@media (max-width: 330px) {
  .processArea .processList .item {
    width: 100%;
  }
}

/*# sourceMappingURL=home.css.map */