@charset "UTF-8";
.processList .Img, .processList .Txt, .processList .Img::after, .processList h4, .serviceList .Txt, .serviceList .Txt a, .featuresList li {
  box-sizing: border-box;
}

.processList li:not(:first-child) .item::before, .processList .Img::before, .processList .Img::after, .processList .Img img, .processList .Txt, .serviceList .Img::before, .serviceList .Txt, .serviceList .Txt p, .serviceList .enTitle, .featuresList .round::before, .featuresList .round::after, .featuresList .Img img {
  transition: all .5s ease-out;
}

.loadingArea {
  position: fixed;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  transition: all 1s ease-out;
}

.loadingArea::after {
  content: '';
  display: block;
  width: 60px;
  height: 33px;
  margin-top: 40px;
  background: url("../images/banner_down.png") 0 0;
  -webkit-animation: .8s bWaveAni linear infinite;
          animation: .8s bWaveAni linear infinite;
}

.loadingArea.finish {
  opacity: 0;
  pointer-events: none;
}

.bannerContent {
  font-size: 30px;
  letter-spacing: 4px;
}

.bannerContent::before {
  right: -115px;
}

.bannerContent::after {
  left: -150px;
}

.bannerText > b {
  margin-right: 20px;
}

.mainArea {
  padding: 0;
}

.mainArea::before {
  display: none;
}

.serviceArea {
  position: relative;
  padding-bottom: 130px;
  background: url("../images/serbg.jpg") 0 0;
}

.serviceArea::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -73px;
  height: 73px;
  background: url("../images/serbg.png") 0 0 repeat-x;
  -webkit-animation: 5s serviceWaveAni linear infinite;
          animation: 5s serviceWaveAni linear infinite;
}

.serviceArea .wrap::before, .serviceArea .wrap::after {
  content: '';
  position: absolute;
  top: 55%;
  width: calc((100% - 1200px) / 2 - 20px);
  height: 40px;
  background: url("../images/down.png") 0 0;
  pointer-events: none;
  -webkit-animation: 1s sWaveAni linear infinite;
          animation: 1s sWaveAni linear infinite;
}

.serviceArea .wrap::before {
  left: 0;
}

.serviceArea .wrap::after {
  right: 0;
}

@-webkit-keyframes serviceWaveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1852px;
  }
}

@keyframes serviceWaveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1852px;
  }
}

.processList {
  position: relative;
  z-index: 1;
  counter-reset: step;
}

.processList.show .Img img, .processList.show .Txt {
  -webkit-transform: translate(0) !important;
      -ms-transform: translate(0) !important;
          transform: translate(0) !important;
  opacity: 1;
}

.processList.show .Img::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.processList.show:not(:first-child) .item::before {
  opacity: 1;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

.processList::before, .processList::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #006cb7;
}

.processList li {
  counter-increment: step;
}

.processList li:nth-child(2) .item::before {
  transition-delay: 0.7s;
}

.processList li:nth-child(3) .item::before {
  transition-delay: 0.8s;
}

.processList li:nth-child(4) .item::before {
  transition-delay: 0.9s;
}

.processList li:nth-child(5) .item::before {
  transition-delay: 1s;
}

.processList li:not(:first-child) .item::before {
  position: absolute;
  color: #006cb7;
  font-size: 40px;
  font-family: FontAwesome;
  opacity: 0;
}

.processList .item, .processList .Img, .processList .Txt {
  position: relative;
}

.processList .Img {
  line-height: 0;
}

.processList .Img::before {
  transition-delay: .3s;
}

.processList .Img::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: radial-gradient(15px circle, #006cb7, #006cb7 7px, transparent 8px);
  border: 1px solid #006cb7;
  border-radius: 50%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.processList .Img img {
  opacity: 0;
}

.processList .Txt {
  opacity: 0;
}

.processList .Txt::before {
  content: "0" counter(step);
  position: absolute;
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #006cb7;
  border-radius: 50%;
  background-color: #fff45c;
  font-family: 'Quicksand', 'Noto Sans TC', '微軟正黑體', serif;
}

.processList .Txt::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.processList h4 {
  font-weight: 400;
  letter-spacing: 2px;
}

@-webkit-keyframes sWaveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 18px;
  }
}

@keyframes sWaveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 18px;
  }
}

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

.serviceList li {
  width: 50%;
}

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

.serviceList .item:hover .Img::before {
  opacity: .5;
}

.serviceList .item:hover .Txt {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.serviceList .item:hover .Txt p, .serviceList .item:hover .Txt a {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.serviceList .item:hover .Txt p {
  transition-delay: .5s;
}

.serviceList .item:hover .Txt a {
  transition-delay: .8s;
}

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

.serviceList .Img {
  position: relative;
  line-height: 0;
}

.serviceList .Img::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #313131;
  opacity: 0;
}

.serviceList .Txt {
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 1;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  color: #fff;
  font-family: 'Quicksand', 'Noto Sans TC', '微軟正黑體', serif;
}

.serviceList .Txt h3 {
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 2.5px;
}

.serviceList .Txt p, .serviceList .Txt a {
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
}

.serviceList .Txt p {
  max-height: 100px;
  line-height: 2.2;
  margin: 20px auto 0;
  letter-spacing: 2px;
  text-align: center;
}

.serviceList .Txt a {
  display: block;
  width: 160px;
  height: 40px;
  line-height: 40px;
  margin: 45px auto 0;
  color: #02b7ff;
  text-align: center;
  letter-spacing: 2px;
  font-size: 17px;
  border: 1px solid currentColor;
}

.serviceList .Txt a:hover {
  color: #fff;
  background-color: #02b7ff;
  border-color: transparent;
}

.serviceList .enTitle {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-align: center;
}

.aboutArea {
  min-height: 600px;
  padding-top: 90px;
  padding-bottom: 150px;
  background-position: 100% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.aboutArea .wrap {
  width: 1160px;
}

.aboutArea .titleBox {
  padding-bottom: 40px;
}

.aboutArea h2 {
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 2px;
  font-family: 'Noto Sans TC', '微軟正黑體', serif;
}

.aboutArea .Txt {
  max-width: 50%;
  margin-top: 15px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.aboutArea .roundBtn {
  margin-top: 80px;
}

.featuresArea {
  position: relative;
  padding-top: 100px;
  background: url("../images/featbg.jpg");
}

.featuresArea::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -51px;
  height: 51px;
  background: url("../images/featbg.png") 0 0 repeat-x;
  /*-webkit-animation: 5s featuresWaveAni linear infinite;
          animation: 5s featuresWaveAni linear infinite;*/
}

.featuresArea .wrap {
  position: relative;
  padding-bottom: 60px;
}

@-webkit-keyframes featuresWaveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1891px;
  }
}

@keyframes featuresWaveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1891px;
  }
}

.featuresList {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -75px;
  margin-right: -75px;
}

.featuresList li {
  padding-left: 75px;
  padding-right: 75px;
  margin-bottom: 50px;
}

.featuresList li:nth-child(1) {
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.featuresList li:nth-child(2) {
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

.featuresList li:nth-child(3) {
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.featuresList li:nth-child(4) {
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}

.featuresList li:nth-child(5) {
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}

.featuresList li:nth-child(n+4) .Img::before {
  right: -65px;
}

.featuresList li:nth-child(-n+3) .Img::before {
  left: -65px;
}

.featuresList .emptyBox {
  -webkit-order: 3 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
  width: 450px;
  visibility: hidden;
  pointer-events: none;
}

.featuresList .round {
  position: relative;
  width: 100%;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}

.featuresList .round::before, .featuresList .round::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.featuresList .round::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.featuresList .round::after {
  content: url("../images/iconwater.png");
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -9.5px;
  margin-top: -12px;
  opacity: 0;
}

.featuresList .Img {
  position: relative;
  z-index: 1;
}

.featuresList .Img:hover img {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}

.featuresList .Img:hover .round::before, .featuresList .Img:hover .round::after {
  opacity: 1;
}

.featuresList .Img:hover .round::after {
  top: 50%;
}

.featuresList .Img::before {
  content: '';
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 100px;
  height: 40px;
  margin-top: -20px;
  background: url("../images/featuresWaveLine.png") 0 0;
  -webkit-animation: .8s fWaveAni linear both infinite;
          animation: .8s fWaveAni linear both infinite;
}

.featuresList .Img img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.featuresList .Txt {
  margin-top: 40px;
  letter-spacing: 1px;
}

.featuresList .Txt::after {
  content: '';
  display: block;
  width: 35px;
  height: 1px;
  margin: 30px auto 0;
  background-color: #006cb7;
}

.featuresList h3 {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 300;
  color: #006cb7;
  text-align: center;
  font-family: 'Noto Sans TC', '微軟正黑體', serif;
}

.featuresList p {
  max-width: 285px;
  font-size: 16px;
  line-height: 1.8;
  margin: auto;
  text-align: center;
}

@-webkit-keyframes fWaveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 35px;
  }
}

@keyframes fWaveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 35px;
  }
}

.personalBox {
  position: absolute;
  left: -150px;
  bottom: 0;
  line-height: 0;
}

.personalBox img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.personalBox .roundBtn {
  position: absolute;
  top: 50%;
  right: -70px;
}

@media (max-width: 1400px) {
  .featuresList {
    margin-left: 0;
    margin-right: 0;
  }
  .featuresList li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .featuresList .emptyBox, .featuresList li {
    width: 33%;
  }
  .featuresList .item {
    max-width: 300px;
    margin: auto;
  }
}

@media (max-width: 1260px) {
  .featuresList li:nth-child(-n+3) .Img::before {
    left: 0;
  }
  .featuresList li:nth-child(n+4) .Img::before {
    right: 0;
  }
  .featuresList .Img::before {
    top: auto;
    bottom: 5px;
  }
}

@media (max-width: 1240px) {
  .serviceArea::before, .serviceArea::after {
    display: none;
  }
  .personalBox {
    left: 150px;
    bottom: 250px;
  }
  .personalBox img {
    display: none;
  }
  .personalBox .roundBtn {
    position: relative;
    top: 0;
    right: 0;
  }
}

@media (max-width: 1180px) {
  .aboutArea .wrap {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .featuresList.evenList .emptyBox {
    display: none;
  }
  .featuresList.evenList + .personalBox {
    position: static;
  }
  .featuresList.evenList + .personalBox .roundBtn {
    margin: auto;
  }
  .featuresList li, .featuresList .emptyBox {
    width: 50%;
  }
  .featuresList .emptyBox {
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .featuresList li:nth-child(n+4) .Img::before {
    right: auto;
    left: 0;
  }
}

@media (min-width: 961px) {
  .processList {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: linear-gradient(to right, #006cb7 1px, transparent 0) 0 50%/2px 1px repeat-x;
  }
  .processList.show .Img::before {
    height: 95px;
  }
  .processList::before, .processList::after {
    top: 50%;
    margin-top: -5px;
  }
  .processList::before {
    left: 0;
  }
  .processList::after {
    right: 0;
  }
  .processList li {
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .processList li:nth-child(odd) .Img {
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    padding-bottom: 100px;
  }
  .processList li:nth-child(odd) .Img::before {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    bottom: 12px;
  }
  .processList li:nth-child(odd) .Img::after {
    bottom: -12px;
  }
  .processList li:nth-child(odd) .Img img {
    -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
            transform: translateY(-30px);
    margin-top: auto;
  }
  .processList li:nth-child(odd) .Txt {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 100px;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
  }
  .processList li:nth-child(odd) .Txt::before {
    top: 35px;
  }
  .processList li:nth-child(odd) .Txt::after {
    top: 25px;
    border-width: 0 4.5px 10px 4.5px;
    border-color: transparent transparent #fff45c transparent;
  }
  .processList li:nth-child(odd) h4 {
    margin-bottom: auto;
  }
  .processList li:nth-child(even) .Img {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 100px;
  }
  .processList li:nth-child(even) .Img::before {
    top: 12px;
  }
  .processList li:nth-child(even) .Img::after {
    top: -12px;
  }
  .processList li:nth-child(even) .Img img {
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
  }
  .processList li:nth-child(even) .Txt {
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    padding-bottom: 100px;
    -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  .processList li:nth-child(even) .Txt::before {
    bottom: 30px;
  }
  .processList li:nth-child(even) .Txt::after {
    bottom: 20px;
    border-width: 10px 4.5px 0 4.5px;
    border-color: #fff45c transparent transparent transparent;
  }
  .processList li:nth-child(even) h4 {
    margin-top: auto;
  }
  .processList li:not(:first-child) .item::before {
    content: '\f0da';
    top: 50%;
    left: 0;
    margin-top: -20px;
    text-shadow: -15px 0 0 #006cb7;
    -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  .processList .item, .processList .Img, .processList .Txt {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .processList .item {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 340px;
  }
  .processList .Img, .processList .Txt {
    height: 50%;
  }
  .processList .Img::before, .processList .Img::after, .processList .Txt::before, .processList .Txt::after {
    left: 50%;
  }
  .processList .Img {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 0;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .processList .Img::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 1px;
    height: 0;
    background-color: #006cb7;
  }
  .processList .Img::after {
    margin-left: -12px;
  }
  .processList .Txt::before {
    margin-left: -24px;
  }
  .processList .Txt::after {
    margin-left: -4.5px;
  }
}

@media (max-width: 960px) {
  .bannerText {
    display: none;
  }
  .aboutArea {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 50px;
    background-position: 50% 50%;
  }
  .aboutArea .Txt {
    max-width: none;
  }
  .serviceList li {
    width: 100%;
  }
  .serviceList .Img::before {
    opacity: .5;
  }
  .serviceList .Txt {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .serviceList .Txt p, .serviceList .Txt a {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .serviceList .Txt p {
    transition-delay: .5s;
  }
  .serviceList .Txt a {
    transition-delay: .8s;
  }
  .serviceList .enTitle {
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
  }
  .serviceArea {
    padding-bottom: 50px;
    text-align: center;
  }
  .processList {
    display: inline-block;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: linear-gradient(to bottom, #006cb7 1px, transparent 0) 20px 50%/1px 2px repeat-y;
  }
  .processList::before, .processList::after {
    left: 16px;
  }
  .processList::before {
    top: 0;
  }
  .processList::after {
    bottom: 0;
  }
  .processList li:not(:first-child) {
    margin-top: 80px;
  }
  .processList li:not(:first-child) .item::before {
    content: '\f0d7';
    top: -60px;
    left: 55px;
    text-shadow: 0 14px 0 #006cb7;
  }
  .processList .Img, .processList .Txt {
    padding-left: 80px;
  }
  .processList .Img::after {
    left: -31px;
    bottom: 10px;
  }
  .processList .Txt {
    padding-top: 20px;
  }
  .processList .Txt::before {
    top: -44px;
    left: 7px;
  }
  .processList .Txt::after {
    top: -27px;
    left: -2px;
    border-width: 4.5px 10px 4.5px 0;
    border-color: transparent #fff45c transparent transparent;
  }
}

@media (max-width: 768px) {
  .aboutArea {
    text-align: center;
    background-position-x: 0;
  }
  .aboutArea .roundBtn {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .featuresList li {
    width: 100%;
  }
  .featuresList .emptyBox {
    display: none;
  }
  .personalBox {
    position: static;
  }
  .personalBox .roundBtn {
    margin: auto;
  }
}

@media (max-width: 640px) {
  .aboutArea h2 {
    font-size: 22px;
  }
  .aboutArea .Txt br {
    display: none;
  }
  .serviceList .Txt br {
    display: none !important;
  }
  .serviceList .Img img {
    height: 350px;
  }
}
