@charset "UTF-8";
.serviceProcessArea .right .processList .Img::before, .serviceProcessArea .right .processList .Img .icon, .serviceProcessArea .right .processList .Img, .newsArea .newsContent .newsRightBox .newsRightList .Txt .right .title a, .catalogArea .catalogBox .catalogList .catalogItem .Img a, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .bannerArea .bannerItem .right .textBox .productUrl svg {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.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 0.7s;
  transition: all 0.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 0.7s;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.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;
}
.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);
          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);
          transform: rotate(-45deg);
}
@media (max-width: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  padding: 0;
  background-color: #f1f1f1;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerList:not(.slick-slider) {
  overflow: hidden;
}
.bannerArea .bannerList:not(.slick-slider) .bannerItem:not(:first-child) {
  display: none;
}
.bannerArea .bannerItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.bannerArea .bannerItem.hide .numberBox .nowNumber {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s 0.4s;
  transition: all 0.3s 0.4s;
}
.bannerArea .bannerItem.hide .Txt .title {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s 0.3s;
  transition: all 0.3s 0.3s;
}
.bannerArea .bannerItem.hide .Txt .subtitle {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s 0.2s;
  transition: all 0.3s 0.2s;
}
.bannerArea .bannerItem.hide .Txt .text {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s 0.1s;
  transition: all 0.3s 0.1s;
}
.bannerArea .bannerItem.hide .Txt .bannerBtn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bannerArea .bannerItem.hide .textBox .bottom .title {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s 0.1s;
  transition: all 0.5s 0.1s;
}
.bannerArea .bannerItem.hide .textBox .bottom .text {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.2s;
  transition: all 0.5s 0.2s;
}
.bannerArea .bannerItem.hide .textBox .productUrl .text {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.3s;
  transition: all 0.5s 0.3s;
}
.bannerArea .bannerItem.show .Txt .numberBox .nowNumber {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.bannerArea .bannerItem.show .Txt .title {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s 0.1s;
  transition: all 1s 0.1s;
}
.bannerArea .bannerItem.show .Txt .subtitle {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s 0.2s;
  transition: all 1s 0.2s;
}
.bannerArea .bannerItem.show .Txt .text {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s 0.3s;
  transition: all 1s 0.3s;
}
.bannerArea .bannerItem.show .Txt .bannerBtn {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s 0.4s;
  transition: all 1s 0.4s;
}
.bannerArea .bannerItem.show .textBox .bottom .title {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s 0.1s;
  transition: all 1s 0.1s;
}
.bannerArea .bannerItem.show .textBox .bottom .text {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s 0.2s;
  transition: all 1s 0.2s;
}
.bannerArea .bannerItem.show .textBox .productUrl .text {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s 0.3s;
  transition: all 1s 0.3s;
}
.bannerArea .bannerItem .left {
  width: 100%;
  /*width: 83.4%;
  max-width: 1587px;*/
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .left {
    width: 100%;
  }
}
.bannerArea .bannerItem .right {
  /*width: 16.6%;*/
  background: url(../images/bg.jpg) no-repeat center center/cover;
  position: relative;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .right {
    display: none;
  }
}
.bannerArea .bannerItem .right .textBox {
  position: absolute;
  top: 16.7%;
  z-index: 3;
  width: 297px;
  background-color: #339966;
  left: -187px;
}
@media (max-width: 1570px) {
  .bannerArea .bannerItem .right .textBox {
    width: 250px;
    left: -130px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .right .textBox {
    width: 220px;
    left: -100px;
  }
}
.bannerArea .bannerItem .right .textBox .line {
  width: 4px;
  height: 155px;
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: -38px;
  right: 31px;
}
@media (max-width: 1570px) {
  .bannerArea .bannerItem .right .textBox .line {
    height: 105px;
  }
}
.bannerArea .bannerItem .right .textBox .line::before {
  content: "";
  width: 4px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 4s linear infinite forwards;
          animation: bannerScrollAnimation 4s linear infinite forwards;
  background-color: #313131;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .bannerItem .right .textBox .top {
  padding: 20px 32px 0;
  font-size: 30px;
  font-weight: bold;
  font-family: "Roboto";
  line-height: 1.1;
  letter-spacing: 1px;
}
@media (max-width: 1570px) {
  .bannerArea .bannerItem .right .textBox .top {
    font-size: 25px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .right .textBox .top {
    font-size: 20px;
  }
}
.bannerArea .bannerItem .right .textBox .bottom {
  background: #131313;
  padding: 30px 34px;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .right .textBox .bottom {
    padding: 20px 34px;
  }
}
.bannerArea .bannerItem .right .textBox .bottom .title {
  font-size: 18px;
  font-weight: lighter;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
@media (max-width: 1570px) {
  .bannerArea .bannerItem .right .textBox .bottom .title {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .right .textBox .bottom .title {
    font-size: 14px;
  }
}
.bannerArea .bannerItem .right .textBox .bottom .text {
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.7px;
  margin-bottom: 27px;
}
@media (max-width: 1570px) {
  .bannerArea .bannerItem .right .textBox .bottom .text {
    font-size: 25px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .right .textBox .bottom .text {
    font-size: 20px;
  }
}
.bannerArea .bannerItem .right .textBox .productImg {
  width: 316px;
  margin: 0 0 0 -150px;
  min-height: 100px;
}
@media (max-width: 1570px) {
  .bannerArea .bannerItem .right .textBox .productImg {
    width: 250px;
    margin: 0 0 0 -100px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .right .textBox .productImg {
    width: 200px;
    margin: 0 0 0 -50px;
  }
}
.bannerArea .bannerItem .right .textBox .productImg img {
  width: 100%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 5s;
  transition: all 5s;
}
.bannerArea .bannerItem .right .textBox .productUrl {
  padding: 5px 3px;
}
.bannerArea .bannerItem .right .textBox .productUrl svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.bannerArea .bannerItem .right .textBox .productUrl:hover svg {
  fill: #aaa;
}
.bannerArea .bannerItem .Txt {
  max-width: 1316px;
  padding: 10% 20px;
  color: #fff;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 40px 80px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt {
    padding: 40px 120px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt {
    padding: 60px 20px;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-shadow:2px 3px 5px #222;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .numberBox {
    display: none;
  }
}
.bannerArea .bannerItem .Txt .numberBox .nowNumber {
  font-size: 50px;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .numberBox .nowNumber {
    font-size: 40px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .numberBox .nowNumber {
    font-size: 30px;
  }
}
.bannerArea .bannerItem .Txt .numberBox .total {
  color: #339966;
  font-size: 18px;
  padding: 5px 0 0 3px;
}
.bannerArea .bannerItem .Txt .numberBox .total::after {
  width: 16px;
  left: -16px;
  top: 12px;
  -webkit-transform: rotate(-68deg);
          transform: rotate(-68deg);
  background: #fff;
}
.bannerArea .bannerItem .Txt .title {
  color: #90e2b9;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  opacity: 0;
  font-size: 30px;
  padding-left: 2px;
  letter-spacing: 2px;
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 32px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .title {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 20px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  line-height: 1.075;
  letter-spacing: -0.09px;
  margin-top: 13px;
  opacity: 0;
  font-size: 60px;
  font-family: "Roboto";
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  width: 80%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 50px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .subtitle {
    width: 100%;
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 400px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 30px;
  }
}
@media (max-width: 340px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 20px;
  }
}
.bannerArea .bannerItem .Txt .subtitle:after {
  content: "";
  display: block;
  width: 128px;
  height: 1px;
  background-color: #fff;
  margin: 23px 0 17px 3px;
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .subtitle:after {
    display: none;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #eee;
  display: block;
  line-height: 1.75;
  letter-spacing: 0.4px;
  margin-top: 10px;
  opacity: 0;
  font-size: 18px;
  padding: 0 0 0 3px;
  max-width: 527px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 16px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .text {
    /*display: none;*/
  line-height: 1.5;
    height: 40px;

  }
}
.bannerArea .bannerItem .Txt .bannerBtn {
  opacity: 0;
  padding: 4.9% 0 0 3px;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .bannerBtn {
    padding: 20px 0 0 3px;
  }
}
.bannerArea .bannerItem .Txt .bannerBtn a {
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  padding: 16px 20px 14px 15px;
  text-align: center;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.bannerArea .bannerItem .bannerVideo {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 77.5%;
  left: 4.1%;
  z-index: 2;
}
@media (max-width: 1580px) {
  .bannerArea .bannerItem .bannerVideo {
    left: -3px;
    top: 72.5%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .bannerVideo {
    left: 20px;
    top: 65.5%;
  }
}
@media (max-width: 400px) {
  .bannerArea .bannerItem .bannerVideo {
    top: 60.5%;
  }
}
.bannerArea .bannerItem .bannerVideo a svg {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  z-index: 2;
  width: 100px;
  height: 100px;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.bannerArea .bannerItem .bannerVideo a svg .path {
  stroke: white;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.bannerArea .bannerItem .bannerVideo a .arrow {
  display: block;
  width: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bannerArea .bannerItem .bannerVideo a .txt {
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 400;
}
.bannerArea .bannerItem .Img {
  overflow: hidden;
}
.bannerArea .bannerItem .Img img {
  -webkit-transition: all 6s;
  transition: all 6s;
}
.bannerArea .slick-current .Img img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.bannerArea .slick-current .right .textBox .productImg img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.bannerArea .socialBox {
  display: block;
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .socialBox .socialList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bannerArea .socialBox .socialList li {
  margin: 7.5px 0;
}
.bannerArea .socialBox .socialList li:first-child {
  margin-top: 0;
}
.bannerArea .socialBox .socialList li:last-child {
  margin-bottom: 0;
}
.bannerArea .socialBox .socialList li a {
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
}
.bannerArea .socialBox .socialList li a svg {
  width: 20px;
  height: 18px;
  display: inline-block;
  fill: #fff;
  margin-top: -2px;
  vertical-align: middle;
}
.bannerArea .socialBox .socialList li a:hover {
  color: #339966;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #339966;
}
.bannerArea .leftBtnBox {
  position: absolute;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5.2%;
  z-index: 2;
}
@media (max-width: 1570px) {
  .bannerArea .leftBtnBox {
    left: 20px;
    top: 38%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .leftBtnBox {
    display: none;
  }
  .bannerArea .bannerItem .Img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: relative;
  padding: 34px 0 0 18px;
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 13px;
  font-family: "Roboto";
  font-weight: lighter;
  letter-spacing: 2.6px;
}
.bannerArea .scrollDown span.line {
  width: 2px;
  height: 79px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 9px 0 0 8px;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #339966;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (min-width: 1181px) {
  .bannerArea .slick-dots {
    width: 15px;
    margin: 0;
    bottom: 47.2%;
    right: 92px;
  }
}
@media (min-width: 1181px) and (max-width: 1570px) {
  .bannerArea .slick-dots {
    right: 30px;
  }
}
@media (min-width: 1181px) {
  .bannerArea .slick-dots li {
    width: 100%;
    height: 15px;
    margin: 40px 0 0px;
  }
}

.catalogArea {
  padding: 89px 0 71px 0;
}
@media (max-width: 767px) {
  .catalogArea {
    padding: 60px 0 90px;
  }
}
.catalogArea .wrap {
  position: relative;
  padding: 0 25px;
}
.catalogArea .titleBox {
  margin-left: 54%;
}
@media (max-width: 1180px) {
  .catalogArea .titleBox {
    margin: 0 20px 60px;
  }
}
.catalogArea .titleBox .bgiTxt {
  top: 12px;
  left: -63px;
}
@media (max-width: 1180px) {
  .catalogArea .titleBox .bgiTxt {
    left: 0;
    top: 20px;
  }
}
@media (max-width: 767px) {
  .catalogArea .titleBox .bgiTxt {
    top: 44px;
  }
}
.catalogArea .yallowBgi {
  width: 522px;
  height: 0;
  background-color: #339966;
  position: absolute;
  z-index: 2;
  top: 2%;
  left: 10.5%;
}
@media (max-width: 1180px) {
  .catalogArea .yallowBgi {
    top: auto;
    bottom: -132px;
    left: 0;
    height: 0;
    width: 100%;
  }
}
.catalogArea .verticalLine {
  width: 220px;
  height: 1px;
  background-color: rgba(1, 1, 1, 0.27);
  position: absolute;
  z-index: 2;
  top: 11.5%;
  left: 36.8%;
}
@media (max-width: 1180px) {
  .catalogArea .verticalLine {
    display: none;
  }
}
.catalogArea .horizontalLine {
  position: absolute;
  z-index: 3;
  background-color: #010101;
  width: 4px;
  height: 155px;
  top: 21.5%;
  left: 34%;
}
@media (max-width: 1250px) {
  .catalogArea .horizontalLine {
    left: 41%;
  }
}
@media (max-width: 1023px) {
  .catalogArea .horizontalLine {
    display: none;
  }
}
.catalogArea .slickBox {
  position: absolute;
  top: 5.6%;
  right: 1.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalogArea .slickBox .arrow {
  margin: 0 4px;
}
@media (max-width: 1023px) {
  .catalogArea .slickBox {
    display: none;
  }
}
@media (min-width: 1024px) {
  .catalogArea .slick-dots {
    opacity: 0;
  }
}
.catalogArea .catalogMainBox {
  width: 75%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);
          box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);
  position: relative;
  z-index: 2;
}
@media (max-width: 1250px) {
  .catalogArea .catalogMainBox {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox {
    width: 90%;
    background-color: rgba(0, 0, 0, 0);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (max-width: 350px) {
  .catalogArea .catalogMainBox {
    width: 100%;
  }
}
.catalogArea .catalogMainBox .catalogMainList:not(.slick-slider) {
  overflow: hidden;
}
.catalogArea .catalogMainBox .catalogMainList:not(.slick-slider) .catalogMainItem:not(:first-child) {
  display: none;
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .slick-list {
    overflow: unset;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem {
  height: 380px;
}
@media (max-width: 1250px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem {
    height: auto;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem {
    padding: 0 10px;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.hide .Img {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.hide .Img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.1s 0.5s ease-in-out;
  transition: -webkit-transform 0.1s 0.5s ease-in-out;
  transition: transform 0.1s 0.5s ease-in-out;
  transition: transform 0.1s 0.5s ease-in-out, -webkit-transform 0.1s 0.5s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.hide .Txt .content .numberBox .nowNumber {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.hide .Txt .content .classTitle {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s 0.2s ease-in-out;
  transition: all 0.5s 0.2s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.hide .Txt .content .title {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s 0.3s ease-in-out;
  transition: all 0.5s 0.3s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.hide .Txt .content .text {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s 0.4s ease-in-out;
  transition: all 0.5s 0.4s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.hide .Txt .buttons .btnBox {
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.5s 0.5s ease-in-out;
  transition: all 0.5s 0.5s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.show .Img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.show .Img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 5s 0.4s ease-in-out;
  transition: -webkit-transform 5s 0.4s ease-in-out;
  transition: transform 5s 0.4s ease-in-out;
  transition: transform 5s 0.4s ease-in-out, -webkit-transform 5s 0.4s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.show .Txt .content .numberBox .nowNumber {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.show .Txt .content .classTitle {
  opacity: 1;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.2s ease-in-out;
  transition: all 0.5s 0.2s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.show .Txt .content .title {
  opacity: 1;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.3s ease-in-out;
  transition: all 0.5s 0.3s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.show .Txt .content .text {
  opacity: 1;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.4s ease-in-out;
  transition: all 0.5s 0.4s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem.show .Txt .buttons .btnBox {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.5s 0.5s ease-in-out;
  transition: all 0.5s 0.5s ease-in-out;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item {
    background-color: #fff;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Img {
  width: 38.1%;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Img {
    width: 100%;
    border-right: none;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt {
  width: 61.9%;
  padding: 52px 60px 59px;
}
@media (max-width: 1250px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt {
    padding: 30px;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt {
    width: 100%;
    padding: 20px;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content {
  padding: 0 60px 0 64px;
  color: 131313;
}
@media (max-width: 1250px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content {
    padding: 0 30px 0 34px;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content {
    padding: 0;
  }
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Img img {
  height: 250px;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .numberBox {
  padding-left: 1px;
  padding-top: 9px;
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .numberBox {
    display: none;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .numberBox .nowNumber {
  font-size: 16px;
  color: #339966;
  padding-right: 20px;
  margin-bottom: 20px;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .numberBox .total {
  color: #131313;
  font-size: 18px;
  padding: 0px 0 0 6px;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .numberBox .total::after {
  left: -14px;
  top: 7px;
  -webkit-transform: rotate(-71deg);
          transform: rotate(-71deg);
  background: #131313;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .classTitle {
  font-size: 18px;
  letter-spacing: 0.55px;
  position: relative;
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .classTitle {
    display: none;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .classTitle:after {
  content: "";
  display: block;
  width: 47px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 10px 0 7px;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.6px;
  margin-bottom: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .title a {
  color: #339966;
}

@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .title {
    text-align: center;
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .title {
    font-size: 16px;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .text {
  font-size: 18px;
  letter-spacing: 0.4px;
  margin-bottom: 31px;
  height: 80px;
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .content .text {
    display: none;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .buttons {
  /*padding: 10px 0 0 0;*/
  padding: 0 60px 0 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-transform: uppercase;
}
@media (max-width: 1340px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .buttons {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .buttons .btnBox {
  margin-right: 6px;
}
@media (max-width: 1023px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .buttons .btnBox:nth-of-type(2) {
    display: none;
  }
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .buttons {
  padding: 10px 0 0 0;
  }
}
@media (max-width: 1340px) {
  .catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .buttons .btnBox .btn.btn1 {
    width: 170px;
  }
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .item .Txt .buttons .btnBox .btn.btn1:hover {
  color: #fff;
}
.catalogArea .catalogMainBox .catalogMainList .catalogMainItem .link {
  display: block;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.catalogArea .catalogBox {
  position: absolute;
  right: -42.5%;
  top: 27%;
  width: 915px;
}
@media (max-width: 1250px) {
  .catalogArea .catalogBox {
    display: none;
  }
}
.catalogArea .catalogBox .catalogList:not(.slick-slider) {
  overflow: hidden;
}
.catalogArea .catalogBox .catalogList:not(.slick-slider) .catalogItem:not(:first-child) {
  display: none;
}
.catalogArea .catalogBox .catalogList .catalogItem {
  padding: 0 87px;
}
.catalogArea .catalogBox .catalogList .catalogItem .item {
  width: 384px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);
          box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);
  padding: 20px;
}
.catalogArea .catalogBox .catalogList .catalogItem .item .title {
  padding: 7px 0 26px 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.catalogArea .catalogBox .catalogList .catalogItem .Img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.catalogArea .catalogBox .catalogList .catalogItem .Img a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.catalogArea .catalogBox .catalogList .catalogItem .Img:hover {
  background-size: cover;
}
.catalogArea .catalogBox .catalogList .catalogItem .Img:hover a {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.catalogArea .catalogBox .catalogList .catalogItem .link {
  display: block;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.newsArea {
  padding: 88px 0 61px 0;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .newsArea {
    padding: 88px 0 90px;
  }
}
.newsArea .wrap {
  position: relative;
}
.newsArea .wrap > .verticalLine1 {
  position: absolute;
  left: 25px;
  top: -126px;
  width: 1px;
  height: 240px;
  z-index: 1;
  background-color: rgba(1, 1, 1, 0.27);
}
@media (max-width: 1023px) {
  .newsArea .wrap > .verticalLine1 {
    display: none;
  }
}
.newsArea .wrap .verticalLine {
  position: absolute;
  left: 50%;
  width: 1px;
  z-index: 1;
}
@media (max-width: 1023px) {
  .newsArea .wrap .verticalLine {
    display: none;
  }
}
.newsArea .wrap .verticalLine.top {
  bottom: -61px;
  height: 57px;
  background-color: #010101;
}
.newsArea .wrap .verticalLine.bottom {
  bottom: -146px;
  height: 85px;
  background-color: #fff;
}
.newsArea .wrap .yallowBgi {
  position: absolute;
  top: 10px;
  right: -85px;
  z-index: 1;
  width: 224px;
  height: 0;
  background-color: #339966;
}
@media (max-width: 1023px) {
  .newsArea .wrap .yallowBgi {
    display: none;
  }
}
.newsArea .titleBox {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .newsArea .titleBox {
    margin-left: 0;
  }
}
.newsArea .titleBox::before {
  top: -5px;
}
.newsArea .titleBox .titleEn {
  padding: 3px 0 4px 13px;
  letter-spacing: 1.3px;
}
.newsArea .titleBox .titleTw {
  letter-spacing: -0.6px;
}
.newsArea .titleBox .bgiTxt {
  top: 31px;
  left: -127px;
  letter-spacing: 3px;
}
@media (max-width: 1460px) {
  .newsArea .titleBox .bgiTxt {
    left: -40px;
  }
}
@media (max-width: 767px) {
  .newsArea .titleBox .bgiTxt {
    left: 0;
    top: 52px;
  }
}
.newsArea .title > a {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsArea .newsContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 2;
}
.newsArea .newsContent .classTitle {
  padding: 5px 19px 4px;
  color: #fff;
  background-color: #339966;
}
.newsArea .newsContent .newsLeftBox {
  width: 45.3%;
  padding: 0 2px;
}
@media (max-width: 1023px) {
  .newsArea .newsContent .newsLeftBox {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .newsArea .newsContent .newsLeftBox .slick-dots {
    display: none;
  }
}
.newsArea .newsContent .newsLeftBox .newsList:not(.slick-slider) {
  overflow: hidden;
}
.newsArea .newsContent .newsLeftBox .newsList:not(.slick-slider) .newsItem:not(:first-child) {
  display: none;
}
.newsArea .newsContent .newsLeftBox .newsList .newsItem {
  padding: 31px 3px 23px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.newsArea .newsContent .newsLeftBox .newsList .newsItem .newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 11px;
  height: 40px;
}
.newsArea .newsContent .newsLeftBox .newsList .newsItem .newsInfoBox .date {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 15px;
  color: #131313;
  letter-spacing: -0.2px;
}
.newsArea .newsContent .newsLeftBox .newsList .newsItem .newsInfoBox .classTitle {
  margin-left: 39px;
}
.newsArea .newsContent .newsLeftBox .newsList .newsItem .title {
  font-weight: bold;
  font-size: 18px;
  margin-left: -1px;
  letter-spacing: -0.15px;
}
.newsArea .newsContent .newsRightBox {
  width: 54.7%;
  margin-top: -5.3%;
  position: relative;
  padding: 14px 6px 0px 60px;
}
@media (max-width: 1280px) {
  .newsArea .newsContent .newsRightBox {
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .newsArea .newsContent .newsRightBox {
    display: none;
  }
}
.newsArea .newsContent .newsRightBox .newsRightList {
  padding-bottom: 27px;
}
.newsArea .newsContent .newsRightBox .newsRightList:not(.slick-slider) {
  overflow: hidden;
}
.newsArea .newsContent .newsRightBox .newsRightList:not(.slick-slider) .newsRightItem:not(:first-child) {
  display: none;
}
@media (max-width: 1023px) {
  .newsArea .newsContent .newsRightBox .newsRightList {
    display: none;
  }
}
.newsArea .newsContent .newsRightBox .newsRightList .slick-list {
  overflow: unset;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.hide .Img img {
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.5s 0.5s ease-in-out, -webkit-transform 0.3s 0.8s ease-in-out;
  transition: opacity 0.5s 0.5s ease-in-out, -webkit-transform 0.3s 0.8s ease-in-out;
  transition: opacity 0.5s 0.5s ease-in-out, transform 0.3s 0.8s ease-in-out;
  transition: opacity 0.5s 0.5s ease-in-out, transform 0.3s 0.8s ease-in-out, -webkit-transform 0.3s 0.8s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.hide .classTitle {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.hide .Txt {
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.hide .Txt .dateBox {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s 0.1s ease-in-out;
  transition: all 0.5s 0.1s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.hide .Txt .title {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.2s ease-in-out;
  transition: all 0.5s 0.2s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.hide .Txt .text {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.3s ease-in-out;
  transition: all 0.5s 0.3s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.hide .numberBox .nowNumber {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s 0.3s ease-in-out;
  transition: all 0.5s 0.3s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.show .Img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 5s 0.6s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 5s 0.6s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 5s 0.6s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 5s 0.6s ease-in-out, -webkit-transform 5s 0.6s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.show .Txt {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.show .Txt .dateBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s 0.9s ease-in-out;
  transition: all 0.8s 0.9s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.show .Txt .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s 1s ease-in-out;
  transition: all 0.8s 1s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.show .Txt .text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s 1.1s ease-in-out;
  transition: all 0.8s 1.1s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.show .classTitle {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.8s 0.5s ease-in-out;
  transition: all 0.8s 0.5s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .newsRightItem.show .numberBox .nowNumber {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.newsArea .newsContent .newsRightBox .newsRightList .classTitle {
  position: absolute;
  top: 6.6%;
  left: 4.6%;
  z-index: 3;
}
.newsArea .newsContent .newsRightBox .newsRightList .Img {
  min-height: 300px;
  background-color: #eee;
  overflow: hidden;
}
.newsArea .newsContent .newsRightBox .newsRightList .Img img {
  width: 100%;
}
.newsArea .newsContent .newsRightBox .newsRightList .content {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 152px;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.66);
  color: #fff;
  padding: 25px 25px 26px 24px;
  overflow-y: auto;
  overflow-x: hidden;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #dbdbdb;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt::-webkit-scrollbar-thumb {
  background: #339966;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt .dateBox {
  font-family: "Roboto";
  padding-right: 23px;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt .dateBox .date {
  font-weight: 500;
  font-size: 45px;
  letter-spacing: 2px;
  margin-bottom: 2px;
  line-height: 1;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt .dateBox .ym {
  font-size: 14px;
  padding-left: 2px;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt .right {
  width: calc(100% - 74px);
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt .right .title {
  font-size: 18px;
  letter-spacing: -0.25px;
  margin-bottom: 8px;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt .right .title a {
  color: #fff;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt .right .title a:hover {
  color: #339966;
}
.newsArea .newsContent .newsRightBox .newsRightList .Txt .right .text {
  line-height: 1.75;
  font-size: 16px;
  letter-spacing: -0.1px;
  padding-right: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsArea .newsContent .newsRightBox .newsRightList .numberBox {
  position: absolute;
  bottom: -99px;
  right: 47.5%;
  font-size: 16px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.newsArea .newsContent .newsRightBox .newsRightList .numberBox .nowNumber {
  color: #339966;
}
.newsArea .newsContent .newsRightBox .newsRightList .numberBox .total {
  padding-left: 8px;
}
.newsArea .newsContent .newsRightBox .newsRightList .numberBox .total::after {
  -webkit-transform: rotate(-72deg);
          transform: rotate(-72deg);
  background: #000;
  top: 6px;
  left: -13px;
}
.newsArea .newsContent .newsRightBox .slickBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 245px;
  margin: 0 auto;
  padding: 0 0px 0px 36px;
}
.newsArea .slickBox .arrow::before {
  top: 20.5px;
}

.aboutArea {
  padding: 92px 0 60px 0;
  background-color: #193d2b;
  position: relative;
}
.aboutArea .bgi {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.aboutArea .bgi img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .wrap {
  position: relative;
  z-index: 2;
  padding: 0 25px;
}
.aboutArea .wrap .titleBox {
  margin-bottom: 14px;
}
.aboutArea .wrap .titleBox .titleEn, .aboutArea .wrap .titleBox .titleTw {
  color: #fff;
}
.aboutArea .wrap .titleBox .titleTw {
  padding: 3px 0 0 16px;
}
.aboutArea .wrap .titleBox .titleEn {
  padding-top: 11px;
  letter-spacing: 0.6px;
}
.aboutArea .wrap .titleBox .bgiTxt {
  color: rgba(239, 239, 239, 0.1);
  bottom: -49%;
  left: -39%;
}
@media (max-width: 1500px) {
  .aboutArea .wrap .titleBox .bgiTxt {
    left: -35px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .wrap .titleBox .bgiTxt {
    left: 0;
  }
}
.aboutArea .wrap .titleBox::before {
  border-color: #fff;
}
.aboutArea .wrap > .top {
  margin-top: -16px;
  padding-bottom: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .aboutArea .wrap > .top {
    border: none;
  }
}
.aboutArea .wrap .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.aboutArea .wrap .top .number {
  font-size: 60px;
  font-family: "Roboto";
  font-weight: 500;
  line-height: 1;
  margin-right: 5px;
  letter-spacing: 0.9px;
}
@media (max-width: 767px) {
  .aboutArea .wrap .top .number {
    font-size: 40px;
  }
}
.aboutArea .wrap .top .text {
  font-size: 16px;
  padding: 0 0 10px 0;
  color: #fff;
}
.aboutArea .wrap .top .left {
  width: 43%;
  margin-top: 46px;
  padding: 0px 0 26px 15px;
  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;
  height: 184px;
  position: relative;
}
@media (max-width: 1023px) {
  .aboutArea .wrap .top .left {
    width: 100%;
  }
}
.aboutArea .wrap .top .left::before {
  content: "";
  display: block;
  width: 4px;
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #339966;
}
@media (max-width: 1023px) {
  .aboutArea .wrap .top .left::before {
    display: none;
  }
}
.aboutArea .wrap .top .left::after {
  content: "";
  display: block;
  width: 4px;
  height: 155px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .aboutArea .wrap .top .left::after {
    display: none;
  }
}
.aboutArea .wrap .top .left .top {
  margin-bottom: 1px;
}
.aboutArea .wrap .top .left .number {
  margin-right: 11px;
  color: #339966;
}
.aboutArea .wrap .top .left .title {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  padding: 0 27px 0px 0px;
}
@media (max-width: 767px) {
  .aboutArea .wrap .top .left .title {
    font-size: 24px;
  }
}
.aboutArea .wrap .top .right {
  width: 57%;
  padding: 0 8.8px 0 11px;
  text-align: center;
}
@media (max-width: 1023px) {
  .aboutArea .wrap .top .right {
    width: 100%;
  }
  .aboutArea .wrap .top .right .btnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .aboutArea .wrap .top .right {
    padding: 0;
  }
}
.aboutArea .wrap .top .right .title {
  font-size: 30px;
  margin-bottom: 17px;
  letter-spacing: -0.3px;
  color: #fff;
}
@media (max-width: 767px) {
  .aboutArea .wrap .top .right .title {
    font-size: 24px;
    text-align: center;
  }
}
.aboutArea .wrap .top .right .txt {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  letter-spacing: 0.4px;
}
@media (max-width: 1023px) {
  .aboutArea .wrap .top .right .txt {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .aboutArea .wrap .top .right .txt {
    font-size: 16px;
  }
}
.aboutArea .wrap .top .right .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.aboutArea .wrap .bottom {
  padding: 56px 69px 60px 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .aboutArea .wrap .bottom {
    padding: 20px 0;
  }
}
@media (max-width: 540px) {
  .aboutArea .wrap .bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.aboutArea .wrap .bottom .top {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.aboutArea .wrap .bottom .Item {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 31px 0 0;
}
@media (max-width: 1180px) {
  .aboutArea .wrap .bottom .Item {
    width: 50%;
    margin-bottom: 40px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .aboutArea .wrap .bottom .Item {
    margin-bottom: 60px;
  }
}
@media (max-width: 540px) {
  .aboutArea .wrap .bottom .Item {
    width: auto;
    min-width: 200px;
    padding: 0 10px;
  }
}
.aboutArea .wrap .bottom .title {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  padding: 0 5px 0px 0px;
  color: #fff;
}
@media (max-width: 767px) {
  .aboutArea .wrap .bottom .title {
    font-size: 18px;
  }
}

.serviceProcessArea {
  padding: 187px 0 91px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  z-index: 1;
  background-color: #f1f1f1;
}
@media (max-width: 767px) {
  .serviceProcessArea {
    padding: 50px 0 20px;
  }
}
.serviceProcessArea .yallowBgi {
  position: absolute;
  width: 318px;
  height: 188px;
  top: -59px;
  left: 0;
  z-index: 3;
  background-color: #339966;
}
@media (max-width: 1180px) {
  .serviceProcessArea .yallowBgi {
    display: none;
  }
}
.serviceProcessArea .wrap {
  max-width: 1325px;
  position: relative;
}
.serviceProcessArea .wrap::before {
  content: "";
  display: block;
  width: 1px;
  height: 200%;
  position: absolute;
  top: 50%;
  left: 27px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
@media (max-width: 1180px) {
  .serviceProcessArea .wrap::before {
    display: none;
  }
}
.serviceProcessArea .wrap > .bgiTxt {
  font-family: "Playfair Display";
  font-size: 18.22vw;
  position: absolute;
  top: 19px;
  left: -57px;
  letter-spacing: 2px;
  z-index: 1;
  pointer-events: none;
  color: #fff;
  opacity: 0.65;
}
@media (max-width: 1180px) {
  .serviceProcessArea .wrap > .bgiTxt {
    display: none;
  }
}
.serviceProcessArea .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.serviceProcessArea .left {
  width: calc(100% - 710px);
  padding: 0 0 0 59px;
  position: relative;
}
@media (max-width: 1330px) {
  .serviceProcessArea .left {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 1180px) {
  .serviceProcessArea .left {
    width: 100%;
    padding: 0 20px;
  }
}
.serviceProcessArea .left .line {
  width: 93%;
  height: 1px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  bottom: 26.6%;
  left: 13.4%;
  z-index: 1;
}
@media (max-width: 1330px) {
  .serviceProcessArea .left .line {
    left: 20px;
  }
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .line {
    top: 35%;
    bottom: auto;
    left: -20px;
    width: calc(100% + 40px);
  }
}
.serviceProcessArea .left .line::before {
  content: "";
  display: block;
  width: 68.51%;
  height: 3px;
  background-color: #131313;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .line::before {
    display: none;
  }
}
.serviceProcessArea .left .titleBox {
  margin-bottom: 120px;
}
.serviceProcessArea .left .titleBox::after {
  content: "";
  display: block;
  width: 128px;
  height: 1px;
  background-color: #131313;
  position: absolute;
  bottom: -28px;
  left: 17px;
  z-index: 1;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .titleBox::after {
    display: none;
  }
}
.serviceProcessArea .left .titleBox .titleEn {
  padding: 9px 0 4px 17px;
  letter-spacing: 1.4px;
}
.serviceProcessArea .left .titleBox .titleTw {
  padding: 4px 0 0 15px;
}
.serviceProcessArea .left .titleBox .bgiTxt {
  bottom: -33%;
  left: -54%;
}
@media (max-width: 1480px) {
  .serviceProcessArea .left .titleBox .bgiTxt {
    left: -80px;
  }
}
@media (max-width: 1340px) {
  .serviceProcessArea .left .titleBox .bgiTxt {
    left: -40px;
  }
}
@media (max-width: 767px) {
  .serviceProcessArea .left .titleBox .bgiTxt {
    bottom: -25px;
    left: 0;
  }
}
.serviceProcessArea .left .serviceMainList {
  position: relative;
  height: 400px;
  margin-top: -11%;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 31px 0 0 17px;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem {
    padding: 0;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.hide {
  pointer-events: none;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem.hide .Img {
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.hide .item .number {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.hide .item .number span {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1023px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .item .number {
  display: none;
  }
}

.serviceProcessArea .left .serviceMainList .serviceMainItem.hide .item .Txt .title {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.1s ease-in-out;
  transition: all 0.5s 0.1s ease-in-out;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.hide .item .Txt .textEditor {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s 0.2s ease-in-out;
  transition: all 0.5s 0.2s ease-in-out;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.hide .btnBox {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all 0.5s 0.3s ease-in-out;
  transition: all 0.5s 0.3s ease-in-out;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.show {
  pointer-events: auto;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem.show .Img {
    opacity: 1;
    -webkit-transition: all 0.5s 0.8s ease-in-out;
    transition: all 0.5s 0.8s ease-in-out;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.show .item .number {
  opacity: 1;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.show .item .number span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s 0.8s ease-in-out;
  transition: all 0.8s 0.8s ease-in-out;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.show .item .Txt .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s 0.9s ease-in-out;
  transition: all 0.8s 0.9s ease-in-out;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.show .item .Txt .textEditor {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s 1s ease-in-out;
  transition: all 0.8s 1s ease-in-out;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem.show .btnBox {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.8s 1.1s ease-in-out;
  transition: all 0.8s 1.1s ease-in-out;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .Img {
  width: 101px;
  height: 101px;
  padding: 10px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #339966;
  margin: 0 auto 43px;
  position: relative;
  z-index: 5;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .Img img {
  border: 1px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  padding: 10px;
}
@media (min-width: 1181px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .Img {
    display: none;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #131313;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .item .number {
  width: 70px;
  font-family: "Roboto";
  font-weight: bold;
  font-size: 45px;
  padding: 4px 18px 4px 0;
  position: relative;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .item .number {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .item .number span {
  display: inline-block;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .item .number::after {
  content: "";
  display: block;
  width: 2px;
  height: 61px;
  background-color: #131313;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .item .number::after {
    width: 61px;
    height: 2px;
    position: static;
    margin: 20px auto 40px;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .item .Txt {
  width: calc(100% - 70px);
  padding: 0 0 0 22px;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .item .Txt {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .item .Txt {
    padding: 0;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .item .Txt .title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-top: -2px;
  letter-spacing: -0.2px;
  margin-bottom: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .item .Txt .textEditor {
  margin-left: -3px;
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1330px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .item .Txt .textEditor {
    -webkit-line-clamp: 3;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .btnBox {
  margin-top: 32px;
}
@media (max-width: 1180px) {
  .serviceProcessArea .left .serviceMainList .serviceMainItem .btnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.serviceProcessArea .left .serviceMainList .serviceMainItem .btnBox a:hover {
  color: #fff;
}
.serviceProcessArea .right {
  margin-top: -8.4%;
  width: 687px;
  /***** 變數 *****/
  /***** 流程樣式 *****/
}
.serviceProcessArea .right .processArea {
  padding: 50px;
}
.serviceProcessArea .right .processTitleBox {
  margin-bottom: 50px;
  text-align: center;
}
.serviceProcessArea .right .processTitleBox h2 {
  display: block;
  margin: 10px 0;
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}
.serviceProcessArea .right .processBox {
  width: 687px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 50px;
}
@media (max-width: 1480px) {
  .serviceProcessArea .right .processBox {
    -webkit-transform: translateX(-11%);
            transform: translateX(-11%);
  }
}
@media (max-width: 1180px) {
  .serviceProcessArea .right .processBox {
    display: none;
  }
}
.serviceProcessArea .right .processInnerBox {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.serviceProcessArea .right .processInnerBox::before {
  content: "";
  position: absolute;
  top: 83.5px;
  left: 77.5px;
  width: calc(73% - 0px);
  height: calc(73% - 0px);
  border-radius: 50%;
  border: 47px solid #fff;
}
.serviceProcessArea .right .processInnerBox::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 46px;
  width: 84%;
  height: 84%;
  background: url(../images/circle2.png) center center/100% no-repeat;
  border-radius: 50%;
  -webkit-animation: AfterCircleAni 50s linear infinite;
          animation: AfterCircleAni 50s linear infinite;
}
@-webkit-keyframes AfterCircleAni {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes AfterCircleAni {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.serviceProcessArea .right .processList .listItem {
  position: absolute;
  top: 0;
  left: calc(50% - 49.5px);
  z-index: 5;
  width: 99px;
  height: 50%;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  pointer-events: none;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: calc(50% - 75.5px);
}
.serviceProcessArea .right .processList .listItem:nth-of-type(2) .Img {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  padding: 25px;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(2) .Txt {
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  left: 96px;
  bottom: 75px;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(3) {
  -webkit-transform: rotate(81.5deg);
          transform: rotate(81.5deg);
  left: calc(50% - 58.5px);
}
.serviceProcessArea .right .processList .listItem:nth-of-type(3) .Img {
  -webkit-transform: rotate(-81.5deg);
          transform: rotate(-81.5deg);
  padding: 25px;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(3) .Txt {
  -webkit-transform: rotate(-81.5deg) translateX(-50%);
          transform: rotate(-81.5deg) translateX(-50%);
  bottom: 170px;
  left: 68px;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(4) {
  -webkit-transform: rotate(116deg);
          transform: rotate(116deg);
  left: calc(50% - 46px);
}
.serviceProcessArea .right .processList .listItem:nth-of-type(4) .Img {
  padding: 25px;
  -webkit-transform: rotate(-116deg);
          transform: rotate(-116deg);
}
.serviceProcessArea .right .processList .listItem:nth-of-type(4) .Txt {
  -webkit-transform: rotate(-116deg) translateX(-50%);
          transform: rotate(-116deg) translateX(-50%);
  bottom: 157px;
  left: -8px;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(5) {
  -webkit-transform: rotate(147deg);
          transform: rotate(147deg);
  top: -6px;
  left: calc(50% - 50.5px);
}
.serviceProcessArea .right .processList .listItem:nth-of-type(5) .Img {
  -webkit-transform: rotate(-147deg);
          transform: rotate(-147deg);
  padding: 25px;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(5) .Txt {
  -webkit-transform: rotate(-147deg) translateX(-50%);
          transform: rotate(-147deg) translateX(-50%);
  bottom: 114px;
  left: -65.2%;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(6) {
  top: 8px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.serviceProcessArea .right .processList .listItem:nth-of-type(6) .Img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  padding: 25px;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(6) .Txt {
  -webkit-transform: rotate(-180deg) translateX(-50%);
          transform: rotate(-180deg) translateX(-50%);
  bottom: 106px;
  left: 6.8%;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(7) {
  left: calc(50% - 52.5px);
  -webkit-transform: rotate(216deg);
          transform: rotate(216deg);
}
.serviceProcessArea .right .processList .listItem:nth-of-type(7) .Img {
  -webkit-transform: rotate(-216deg);
          transform: rotate(-216deg);
  padding: 25px;
}
.serviceProcessArea .right .processList .listItem:nth-of-type(7) .Txt {
  -webkit-transform: rotate(-216deg) translateX(-50%);
          transform: rotate(-216deg) translateX(-50%);
  bottom: 68px;
  left: -22.2%;
}
.serviceProcessArea .right .processList .listItem.current .Img, .serviceProcessArea .right .processList .listItem:hover .Img {
  background-color: #339966;
}
.serviceProcessArea .right .processList .listItem.current .Img .icon, .serviceProcessArea .right .processList .listItem:hover .Img .icon {
  color: #339966;
}
.serviceProcessArea .right .processList .item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  cursor: pointer;
}
.serviceProcessArea .right .processList .Img {
  position: absolute;
  z-index: 3;
  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;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  background-color: #313131;
  pointer-events: auto;
  /*padding: 26px 29px 29px;*/
  padding: 25px;
}
.serviceProcessArea .right .processList .Img img {
  width: 100%;
}
.serviceProcessArea .right .processList .Img .icon {
  font-size: 40px;
  color: #339966;
}
.serviceProcessArea .right .processList .Img::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 8%;
  width: 85%;
  height: 85%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 1;
}
.serviceProcessArea .right .processList .Txt {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 12.8%;
  z-index: 4;
  width: 150px;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}
.serviceProcessArea .right .processList .title {
  font-size: 18px;
  pointer-events: auto;
}
.serviceProcessArea .right .processTxtList {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 5;
  width: 50%;
  padding-bottom: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.serviceProcessArea .right .processTxtList::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 19px;
  width: 88%;
  height: 88%;
  background: url(../images/circle1.png) no-repeat center center/100%;
  -webkit-animation: beforeCircleAni 40s linear infinite;
          animation: beforeCircleAni 40s linear infinite;
}
@-webkit-keyframes beforeCircleAni {
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes beforeCircleAni {
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.serviceProcessArea .right .processTxtList .listItem {
  position: absolute;
  top: -5px;
  left: -1px;
  width: 100%;
  height: 100%;
  padding: 54px 52px;
}
.serviceProcessArea .right .processTxtList .listItem.hide .item {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s 0.6s ease-in-out;
  transition: all 0.5s 0.6s ease-in-out;
}
.serviceProcessArea .right .processTxtList .listItem.hide .Txt::before {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s 0.1s ease-in-out;
  transition: all 0.5s 0.1s ease-in-out;
}
.serviceProcessArea .right .processTxtList .listItem.hide .Txt::after {
  width: 0;
  -webkit-transition: all 0.5s 0.3s ease-in-out;
  transition: all 0.5s 0.3s ease-in-out;
}
.serviceProcessArea .right .processTxtList .listItem.hide .title {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.5s 0.2s ease-in-out;
  transition: all 0.5s 0.2s ease-in-out;
}
.serviceProcessArea .right .processTxtList .listItem.show .item {
  background-color: #fff;
  -webkit-transition: all 0.8s 0.6s ease-in-out;
  transition: all 0.8s 0.6s ease-in-out;
}
.serviceProcessArea .right .processTxtList .listItem.show .Txt::before {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s 0.7s ease-in-out;
  transition: all 0.8s 0.7s ease-in-out;
}
.serviceProcessArea .right .processTxtList .listItem.show .Txt::after {
  width: 32px;
  -webkit-transition: all 0.5s 1.2s ease-in-out;
  transition: all 0.5s 1.2s ease-in-out;
}
.serviceProcessArea .right .processTxtList .listItem.show .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s 0.9s ease-in-out;
  transition: all 0.8s 0.9s ease-in-out;
}
.serviceProcessArea .right .processTxtList .item {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  height: 100%;
  border-radius: 50%;
}
.serviceProcessArea .right .processTxtList .item::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #339966;
}
.serviceProcessArea .right .processTxtList .Img {
  display: none;
}
.serviceProcessArea .right .processTxtList .Txt::before {
  content: attr(data-process-num);
  display: block;
  font-size: 45px;
  color: #339966;
  line-height: 1;
  text-align: center;
  width: 100%;
  font-family: "Roboto";
  font-weight: bold;
  padding-top: 16px;
  letter-spacing: 4px;
}
.serviceProcessArea .right .processTxtList .Txt::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #a1a1a1;
  margin: 0 auto 11px;
}
.serviceProcessArea .right .processTxtList .title {
  margin-bottom: 9px;
  font-size: 30px;
  text-align: center;
  letter-spacing: -0.7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.serviceProcessArea .right .processCircleBox {
  position: absolute;
  top: 51%;
  left: 50%;
  width: 49.1%;
  padding: 0;
  padding-bottom: 49.1%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.serviceProcessArea .right .processPointList {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
}
.serviceProcessArea .right .processPointList .listItem {
  position: absolute;
  top: -7px;
  left: calc(50% - 7px);
  z-index: 5;
  height: calc(50% + 7px);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  pointer-events: none;
}
.serviceProcessArea .right .processPointList .listItem:nth-child(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.serviceProcessArea .right .processPointList .listItem:nth-child(2) {
  -webkit-transform: rotate(36deg);
          transform: rotate(36deg);
}
.serviceProcessArea .right .processPointList .listItem:nth-child(3) {
  -webkit-transform: rotate(72deg);
          transform: rotate(72deg);
}
.serviceProcessArea .right .processPointList .listItem:nth-child(4) {
  -webkit-transform: rotate(108deg);
          transform: rotate(108deg);
}
.serviceProcessArea .right .processPointList .listItem:nth-child(5) {
  -webkit-transform: rotate(144deg);
          transform: rotate(144deg);
}
.serviceProcessArea .right .processPointList .listItem:nth-child(6) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.serviceProcessArea .right .processPointList .listItem:nth-child(7) {
  -webkit-transform: rotate(216deg);
          transform: rotate(216deg);
}
.serviceProcessArea .right .processPointList .listItem.active .point {
  border-color: #339966;
}
.serviceProcessArea .right .processPointList .listItem.active .point::before {
  background-color: #339966;
}
.serviceProcessArea .right .processPointList .point {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid #b2b2b2;
  border-radius: 50%;
}
.serviceProcessArea .right .processPointList .point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background-color: #b2b2b2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.serviceProcessArea .right .processCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.serviceProcessArea .right .processProgressList {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5;
  width: calc(100% + 2px);
  padding-bottom: calc(100% + 2px);
}
.serviceProcessArea .right .processProgressList .listItem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.serviceProcessArea .right .processProgressList .listItem:nth-child(1) {
  -webkit-transform: rotate(3.5deg);
          transform: rotate(3.5deg);
}
.serviceProcessArea .right .processProgressList .listItem:nth-child(2) {
  -webkit-transform: rotate(39.5deg);
          transform: rotate(39.5deg);
}
.serviceProcessArea .right .processProgressList .listItem:nth-child(3) {
  -webkit-transform: rotate(75.5deg);
          transform: rotate(75.5deg);
}
.serviceProcessArea .right .processProgressList .listItem:nth-child(4) {
  -webkit-transform: rotate(111.5deg);
          transform: rotate(111.5deg);
}
.serviceProcessArea .right .processProgressList .listItem:nth-child(5) {
  -webkit-transform: rotate(147.5deg);
          transform: rotate(147.5deg);
}
.serviceProcessArea .right .processProgressList .listItem:nth-child(6) {
  -webkit-transform: rotate(183.5deg);
          transform: rotate(183.5deg);
}
.serviceProcessArea .right .processProgressList .listItem:nth-child(7) {
  -webkit-transform: rotate(219.5deg);
          transform: rotate(219.5deg);
}
.serviceProcessArea .right .processProgressList .listItem.active path {
  stroke-dasharray: 60, 60;
}
.serviceProcessArea .right .processProgressList .listItem.active.current path {
  -webkit-animation: processProgressAnimation linear forwards;
          animation: processProgressAnimation linear forwards;
}
.serviceProcessArea .right .processProgressList .listItem path {
  stroke-dashoffset: 0;
  stroke-dasharray: 0, 60;
}
@-webkit-keyframes processProgressAnimation {
  0% {
    stroke-dasharray: 0, 60;
  }
  100% {
    stroke-dasharray: 60, 60;
  }
}
@keyframes processProgressAnimation {
  0% {
    stroke-dasharray: 0, 60;
  }
  100% {
    stroke-dasharray: 60, 60;
  }
}
.serviceProcessArea .right .slickBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 6%;
  bottom: 7%;
  z-index: 1;
  width: 38.5%;
}
@media (max-width: 1330px) {
  .serviceProcessArea .right .slickBox {
    left: calc(6% - 48px);
    width: 35%;
  }
}
@media (max-width: 1180px) {
  .serviceProcessArea .right .slickBox {
    bottom: auto;
    top: 29%;
    width: 100%;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.serviceProcessArea .right .slickBox .arrow {
  margin-right: 7px;
}
@media (max-width: 1180px) {
  .serviceProcessArea .right .slickBox .arrow {
    background-color: #fff;
  }
  .serviceProcessArea .right .slickBox .arrow:hover {
    background-color: #000;
    color: #fff;
  }
}
.serviceProcessArea .right .slickBox .numberBox {
  position: absolute;
  top: 60%;
  right: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
}
@media (max-width: 1180px) {
  .serviceProcessArea .right .slickBox .numberBox {
    display: none;
  }
}
.serviceProcessArea .right .slickBox .numberBox .nowNumber {
  color: #339966;
  padding-right: 16px;
}
.serviceProcessArea .right .slickBox .numberBox .total {
  padding-left: 8px;
}
.serviceProcessArea .right .slickBox .numberBox .total::after {
  -webkit-transform: rotate(-72deg);
          transform: rotate(-72deg);
  background: #000;
  top: 8px;
  left: -11px;
}