.bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .arrowBox .arrow::before, .arrowBox .arrow {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.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);
  }
}

.arrowBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.arrowBox .arrow {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  border: 1px solid #31a152;
  overflow: hidden;
  margin: 10px 0;
  cursor: pointer;
}
@media (max-width: 1620px) {
  .arrowBox .arrow {
    background: #fff;
  }
}
.arrowBox .arrow::before {
  content: "";
  border-style: solid;
  display: block;
  z-index: 2;
  width: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border: none;
  border-top: 2px solid #31a152;
  border-left: 2px solid #31a152;
}
.arrowBox .arrowPrev::before {
  position: absolute;
  -webkit-transform: rotate(-45deg) translate(3px, 3px);
          transform: rotate(-45deg) translate(3px, 3px);
}
.arrowBox .arrowPrev:hover {
  background: #31a152;
}
.arrowBox .arrowPrev:hover::before {
  border-color: #fff;
}
.arrowBox .arrowNext::before {
  -webkit-transform: rotate(135deg) translate(1px, 1px);
          transform: rotate(135deg) translate(1px, 1px);
}
.arrowBox .arrowNext:hover {
  background: #31a152;
}
.arrowBox .arrowNext:hover::before {
  border-color: #fff;
}

.mainArea {
  padding-top: 50px;
  padding-bottom: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  max-width: 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
  z-index: 2;
  width: 100%;
  position: absolute;
  top: 15%;
}
@media (max-width: 1250px) {
  .bannerArea .bannerItem .Txt {
    max-width: 40%;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt {
    max-width: 60%;
  }
}
@media (max-width: 680px) {
  .bannerArea .bannerItem .Txt {
    max-width: 100%;
  }
}
.bannerArea .bannerItem .Txt.center {
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
.bannerArea .bannerItem .Txt.left {
  left: 0;
  padding-left: 100px;
}
@media (max-width: 1480px) {
  .bannerArea .bannerItem .Txt.left {
    padding-left: 20px;
  }
}
.bannerArea .bannerItem .Txt.right {
  padding-left: 100px;
  right: 0;
}
@media (max-width: 1480px) {
  .bannerArea .bannerItem .Txt.right {
    padding-left: 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;
  letter-spacing: 2px;
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-top: 8px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .title {
  color: #191919;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
}
@media (max-width: 390px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 44px;
  }
}
.bannerArea .bannerItem .Txt .title::after {
  content: "";
  position: relative;
  display: block;
  width: 40px;
  height: 3px;
  background: #fff;
  margin-top: 10px;
}
.bannerArea .bannerItem .Txt .text {
  color: #4c4c4c;
  display: block;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.3px;
  margin-top: 13px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerBtn {
  opacity: 0;
}
.bannerArea .bannerItem .Img {
  z-index: 1;
}
@media (max-width: 1250px) {
  .bannerArea .bannerItem .Img {
    height: 550px;
  }
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .text {
  -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerBtn {
  -webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.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: #31a152;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #31a152;
}
.bannerArea .scrollDown {
  cursor: pointer;
  position: absolute;
  bottom: 34px;
  right: -54px;
  z-index: 2;
  display: block;
  width: 25px;
  height: 35px;
  margin-left: -15px;
  border: 2px solid #c9c9c9;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bannerArea .scrollDown::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 4px;
  height: 8px;
  border-radius: 50px;
  background: #31a152;
}
.bannerArea .scrollDown .down span {
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #c9c9c9;
  border-bottom: 2px solid #c9c9c9;
  -webkit-animation: sdb07 2s infinite;
          animation: sdb07 2s infinite;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bannerArea .scrollDown .down span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.bannerArea .scrollDown .down span:nth-of-type(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
  bottom: -23px;
}
@-webkit-keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bannerArea .slick-dots {
  width: 20px;
  margin: 0;
  top: 19%;
  right: -50px;
  text-align: center;
  margin: 0 auto;
}
.bannerArea .slick-dots li {
  position: relative;
  width: 100%;
  height: 20px;
  margin: 15px 0;
}
.bannerArea .slick-dots li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  display: block;
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.bannerArea .slick-dots li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  display: block;
  width: 1px;
  height: 50px;
  background-color: #c9c9c9;
}
.bannerArea .slick-dots li:last-child::after {
  display: none;
}
.bannerArea .slick-dots li button {
  position: relative;
  cursor: pointer;
  border-radius: 100%;
  color: transparent;
  font-size: 0;
  border: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border: 1px solid transparent;
  background: transparent;
}
.bannerArea .slick-dots li button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 100%;
  background-color: #c9c9c9;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.bannerArea .slick-dots li button::after {
  content: "";
  position: absolute;
  left: 50%;
  height: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #c9c9c9;
  border-radius: 100%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.bannerArea .slick-dots li button svg {
  width: 30px;
  height: 30px;
}
.bannerArea .slick-dots li button .path {
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 1;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  stroke: #31a152;
  fill: none;
  stroke-width: 1px;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.bannerArea .slick-dots li:hover, .bannerArea .slick-dots li.slick-active {
  position: relative;
}
.bannerArea .slick-dots li:hover::before, .bannerArea .slick-dots li.slick-active::before {
  opacity: 1;
}
.bannerArea .slick-dots li:hover button::before, .bannerArea .slick-dots li.slick-active button::before {
  width: 100%;
  height: 100%;
  background-color: #31a152;
  opacity: 1;
}
.bannerArea .slick-dots li:hover button::after, .bannerArea .slick-dots li.slick-active button::after {
  opacity: 1;
}
.bannerArea .slick-dots li:hover .path, .bannerArea .slick-dots li.slick-active .path {
  -webkit-animation-name: svgAni;
          animation-name: svgAni;
}
@-webkit-keyframes svgAni {
  0% {
    stroke-dashoffset: 90;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes svgAni {
  0% {
    stroke-dashoffset: 90;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 1180px) {
  .bannerArea .scrollDown, .bannerArea .slick-dots, .bannerArea .arrowBox {
    display: none !important;
  }
}
.bannerArea .bannerVideoArea {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.newsArea {
  position: relative;
  padding: 50px 0 100px;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsArea {
    padding: 50px 0;
  }
}
.newsArea::after {
  content: "";
  position: absolute;
  top: -75px;
  left: -75px;
  z-index: -1;
  display: block;
  width: 912px;
  height: 705px;
  background-image: url(../images/news_bg.png);
  background-repeat: no-repeat;
  opacity: 0.7;
}
.newsArea .wrap {
  max-width: 1500px;
}
.newsArea .classBoxRow {
  margin-top: 40px;
  margin-bottom: 45px;
  width: 100%;
}
.newsArea .classLink {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsArea .newsBox {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.newsArea .newsBox.hide {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.newsArea .newsItem {
  position: relative;
  overflow: hidden;
  margin: 0 30px 30px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.11);
  border-radius: 0 0 10px 10px;
}
@media (max-width: 480px) {
  .newsArea .newsItem {
    margin: 0 10px 30px;
  }
}
.newsArea .newsItem::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(9, 187, 225)), to(rgb(50, 245, 156)));
  background: linear-gradient(90deg, rgb(9, 187, 225), rgb(50, 245, 156));
  background-size: 200%;
  background-position: 0;
  -webkit-animation: glueglue 10s infinite linear;
          animation: glueglue 10s infinite linear;
}
.newsArea .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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 480px;
}
.newsArea .Img {
  overflow: hidden;
}
.newsArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.newsArea .Img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.newsArea .date {
  font-family: "Noto Sans TC", sans-serif;
  position: absolute;
  bottom: 20px;
  left: 30px;
  display: inline-block;
  padding: 10px 15px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(9, 187, 225)), to(rgb(50, 245, 156)));
  background: linear-gradient(90deg, rgb(9, 187, 225), rgb(50, 245, 156));
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 20%, 100% 80%, 80% 100%, 0% 100%, 0% 80%, 0% 20%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 20%, 100% 80%, 80% 100%, 0% 100%, 0% 80%, 0% 20%);
  color: #fff;
}
@media (max-width: 480px) {
  .newsArea .date {
    bottom: 10px;
    left: 10px;
    padding: 5px 10px;
  }
}
.newsArea .date .day {
  font-size: 42px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 480px) {
  .newsArea .date .day {
    font-size: 36px;
  }
}
.newsArea .date .yearmonth {
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .newsArea .date .yearmonth {
    font-size: 10px;
  }
}
.newsArea .Txt {
  position: relative;
  max-height: 380px;
  padding: 30px 34px;
  background-color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  overflow: hidden;
}
.newsArea .Txt .classTitle {
  position: absolute;
  right: 20px;
  top: 30px;
}
.newsArea .Txt .title a {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.3;
  border-bottom: 1px solid #eaeaea;
  height: 63px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsArea .Txt .text {
  display: block;
  height: 46px;
  font-size: 17px;
  color: #191919;
  font-weight: 400;
  letter-spacing: 1px;
  height: auto;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 480px) {
  .newsArea .Txt .text {
    -webkit-line-clamp: 7;
  }
}
.newsArea .Txt .textShort {
  -webkit-line-clamp: 10;
}
.newsArea .arrowBox .arrow {
  top: 38%;
}
.newsArea .arrowBox .arrowPrev {
  left: -60px;
}
@media (max-width: 1620px) {
  .newsArea .arrowBox .arrowPrev {
    left: -10px;
  }
}
.newsArea .arrowBox .arrowNext {
  right: -60px;
}
@media (max-width: 1620px) {
  .newsArea .arrowBox .arrowNext {
    right: -10px;
  }
}
.newsArea .bannerBtn {
  text-align: center;
}
@media (max-width: 480px) {
  .newsArea .bannerBtn {
    padding-top: 0;
  }
}
.newsArea .bannerBtn a {
  text-align: left;
}

.aboutArea {
  position: relative;
  padding: 0 0 50px;
  overflow: hidden;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgb(247, 247, 247)));
  background: linear-gradient(0deg, rgb(255, 255, 255), rgb(247, 247, 247));
}
.aboutArea .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1665px;
  margin: 0 auto;
  margin-right: 0;
  padding-right: 0;
}
@media (max-width: 1240px) {
  .aboutArea .wrap {
    padding-left: 0;
  }
}
@media (max-width: 980px) {
  .aboutArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutArea .left {
  padding-top: 120px;
  padding-right: 20px;
}
@media (max-width: 1240px) {
  .aboutArea .left {
    padding-top: 80px;
    padding-right: 0;
  }
}
@media (max-width: 980px) {
  .aboutArea .left {
    padding: 80px 20px 0;
  }
}
.aboutArea .left .titleBox {
  text-align: left;
}
@media (max-width: 1240px) {
  .aboutArea .left .titleBox {
    position: absolute;
    left: 20px;
  }
}
@media (max-width: 980px) {
  .aboutArea .left .titleBox {
    position: relative;
    left: 0;
    margin-bottom: 0;
  }
}
.aboutArea .left .titleBox .titleBg {
  margin: 0;
  margin-left: 125px;
}
@media (max-width: 1240px) {
  .aboutArea .left .titleBox .titleBg {
    opacity: 0;
  }
}
@media (max-width: 980px) {
  .aboutArea .left .titleBox .titleBg {
    opacity: 1;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .aboutArea .left .titleBox .titleBg {
    position: relative;
    left: 45px;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.aboutArea .left .titleBox .titleBg::before {
  background: #f7f7f7;
}
.aboutArea .left .titleBox .titleBg::after {
  top: 60%;
}
.aboutArea .left .titleBox .txtBox {
  width: 270px;
  top: 30%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 980px) {
  .aboutArea .left .titleBox .txtBox {
    left: -115px;
  }
}
@media (max-width: 480px) {
  .aboutArea .left .titleBox .txtBox {
    left: 0;
  }
}
.aboutArea .left .titleBox .titleEn {
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0px;
}
@media (max-width: 480px) {
  .aboutArea .left .titleBox .titleEn {
    font-size: 40px;
  }
}
.aboutArea .left .titleBox .titleTw {
  letter-spacing: 0;
}
.aboutArea .left .Txt {
  font-family: "Noto Sans TC", sans-serif;
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-size: 15px;
  line-height: 1.5;
  max-width: 630px;
  width: 100%;
  background: #fff;
  color: #4c4c4c;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.11);
  padding: 50px 40px;
  letter-spacing: 1px;
}
@media (max-width: 980px) {
  .aboutArea .left .Txt {
    position: relative;
    max-width: 100%;
    bottom: -20px;
    padding: 25px 30px;
  }
}
.aboutArea .left .Txt .title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  color: #191919;
}
.aboutArea .left .Txt .text {
  display: -webkit-box;
  text-overflow: ellipsis;
}
@media (max-width: 980px) {
  .aboutArea .left .Txt .text {
    -webkit-line-clamp: inherit;
  }
}
.aboutArea .left .bannerBtn {
  padding-top: 35px;
}
.aboutArea .left .bannerBtn a::before {
  z-index: 1;
}
.aboutArea .left .bannerBtn a::after {
  z-index: 0;
}
.aboutArea .left .bannerBtn p {
  position: relative;
  z-index: 1;
}
.aboutArea .Img {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #000;
}
@media (max-width: 1240px) {
  .aboutArea .Img {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .aboutArea .Img {
    height: 310px;
  }
  .aboutArea .Img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .aboutArea .Img.black img {
    opacity: 0.5;
  }
}
.aboutArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.aboutArea .Img .bannerVideo .videoBtn {
  width: 100px;
  height: 100px;
  border: 1px solid #31a152;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 10%;
  right: 20%;
}
@media (max-width: 520px) {
  .aboutArea .Img .bannerVideo .videoBtn {
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    border: 1px solid #fff;
  }
}
.aboutArea .Img .bannerVideo .videoBtn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #31a152;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 5px);
  z-index: 1;
}
@media (max-width: 520px) {
  .aboutArea .Img .bannerVideo .videoBtn::before {
    border-color: transparent transparent transparent #fff;
  }
}
.aboutArea .Img .bannerVideo .videoBtn::after {
  content: "";
  border: 1px dashed #31a152;
  border-radius: 50%;
  z-index: 1;
  width: 75%;
  height: 75%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation: rotate 30s linear infinite;
          animation: rotate 30s linear infinite;
}
@media (max-width: 520px) {
  .aboutArea .Img .bannerVideo .videoBtn::after {
    border: 1px dashed #fff;
  }
}

.advantageArea {
  padding: 50px 0 0;
}
.advantageArea .wrap {
  max-width: 1800px;
}
@media (max-width: 1081px) {
  .advantageArea .wrap {
    padding: 0;
  }
}
.advantageArea .box {
  position: relative;
}
.advantageArea .titleBox {
  margin-bottom: 20px;
}
.advantageArea .titleBox .txtBox {
  top: 50%;
}
.advantageArea .subtitle {
  font-size: 20px;
  text-align: center;
  color: #1b1b1b;
}
.advantageArea .advantageList {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}
.advantageArea .slick-track {
  margin: 0 auto;
}
.advantageArea .advantageItem {
  display: inline-block;
  padding: 55px 25px 10px;
}
.advantageArea .advantageItem:hover .Img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.advantageArea .advantageItem:hover .iconBox .Bg {
  opacity: 0.4;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.advantageArea .advantageItem:hover .iconBox .iconImg::before {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.advantageArea .advantageItem:hover .iconBox .iconImg img {
  -webkit-filter: none;
          filter: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.advantageArea .advantageItem:hover .textBox .title {
  color: #31a152;
}
.advantageArea .advantageItem:hover .textBox .txt {
  color: #4c4c4c;
}
.advantageArea .item {
  display: inline-block;
}
.advantageArea .item .imgBox {
  position: relative;
  margin-bottom: 55px;
  background: #fff;
  width: 270px;
  height: 270px;
  border-radius: 100%;
}
.advantageArea .item .imgBox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  display: block;
  width: 110%;
  height: 110%;
  border-radius: 100%;
  border: 1px solid rgba(49, 161, 82, 0.1254901961);
}
.advantageArea .item .Bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: 123%;
  height: 123%;
  border-radius: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(9, 187, 225)), to(rgb(50, 245, 156)));
  background: linear-gradient(90deg, rgb(9, 187, 225), rgb(50, 245, 156));
  background-size: 200%;
  background-position: 0;
  -webkit-animation: glueglue 10s infinite linear;
          animation: glueglue 10s infinite linear;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.advantageArea .item .Bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
  background: #fff;
  width: 99%;
  height: 99%;
  border-radius: 100%;
}
.advantageArea .item .iconBox {
  position: absolute;
  bottom: -25px;
  right: 0;
  display: block;
}
.advantageArea .item .iconBox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  width: 135px;
  height: 135px;
  display: block;
  background: #fff;
  border-radius: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.advantageArea .item .iconBox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  width: 130px;
  height: 130px;
  display: block;
  border: 1px dashed rgba(0, 0, 0, 0.1254901961);
  border-radius: 100%;
}
.advantageArea .item .iconBox .Bg {
  z-index: 1;
  width: 150%;
  height: 150%;
}
.advantageArea .item .iconBox .Bg::before {
  width: 90%;
  height: 90%;
}
.advantageArea .item .iconImg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
}
.advantageArea .item .iconImg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(9, 187, 225)), to(rgb(50, 245, 156)));
  background: linear-gradient(90deg, rgb(9, 187, 225), rgb(50, 245, 156));
  background-size: 200%;
  background-position: 0;
  -webkit-animation: glueglue 10s infinite linear;
          animation: glueglue 10s infinite linear;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.45);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.advantageArea .item .iconImg img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  -webkit-filter: grayscale(1) brightness(10);
          filter: grayscale(1) brightness(10);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.advantageArea .item .Img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #31a152;
  border-radius: 100%;
}
.advantageArea .item .Img img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.advantageArea .item .textBox {
  text-align: left;
  max-width: 270px;
}
.advantageArea .item .textBox .title {
  font-size: 20px;
  font-weight: 400;
  color: #191919;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 5px;
}
.advantageArea .item .textBox .txt {
  font-size: 15px;
  color: #4c4c4c;
  height: 88px;
}
.advantageArea .arrowBox .arrow {
  top: 47%;
}
.advantageArea .arrowBox .arrowPrev {
  left: -10px;
}
@media (max-width: 1081px) {
  .advantageArea .arrowBox .arrowPrev {
    left: 10px;
  }
}
.advantageArea .arrowBox .arrowNext {
  right: -10px;
}
@media (max-width: 1081px) {
  .advantageArea .arrowBox .arrowNext {
    right: 10px;
  }
}

.careArea {
  position: relative;
  z-index: 0;
  background: #f7f7f7;
  padding-top: 65px;
}
.careArea .wrap {
  position: relative;
  max-width: 100%;
  text-align: center;
  overflow: hidden;
}
.careArea .wrap::before {
  content: "";
  position: absolute;
  right: -290px;
  bottom: -290px;
  display: block;
  width: 912px;
  height: 705px;
  background: url(../images/care_bg.png);
  background-repeat: no-repeat;
  opacity: 0.7;
}
.careArea .box {
  position: relative;
}
.careArea .titleBox {
  margin-bottom: 20px;
}
.careArea .titleBg::before {
  background: #f7f7f7;
}
.careArea .subtitle {
  font-size: 20px;
  color: #1b1b1b;
}
.careArea .subtitle span {
  display: inline-block;
}
.careArea .subtitle span::after {
  content: "";
  position: relative;
  bottom: 4px;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px;
  border-radius: 100%;
  background: #d2d2d2;
}
.careArea .subtitle span:last-child::after {
  display: none;
}
.careArea .Img {
  max-width: 300px;
  margin: 0 auto;
}
.careArea .Img img {
  width: 100%;
}
.careArea .iconImg img {
  margin: 0 auto;
}
.careArea .careAllList {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 20px;
  height: 745px;
}
.careArea .careAllList::before {
  content: "Executive Master of Business Administration";
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  font-size: 33px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.careArea .careAllList::after {
  content: "NCHU EMBA";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  font-size: 170px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 10px;
}
.careArea .circleBig {
  position: absolute;
  top: 18%;
  left: 50%;
  z-index: 0;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 520px;
  height: 520px;
  border: 50px solid #cae1d1;
  border-radius: 100%;
}
.careArea .circleBig::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -55px;
  z-index: -1;
  display: block;
  width: 520px;
  height: 520px;
  border-radius: 100%;
  border: 50px solid #fff;
}
.careArea .circleBig::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25%;
  right: -25%;
  z-index: -3;
  margin: auto;
  display: block;
  width: 150%;
  height: 150%;
  border: 1px dashed rgba(76, 76, 76, 0.1882352941);
  border-radius: 100%;
  -webkit-animation: rotate 120s linear infinite;
          animation: rotate 120s linear infinite;
}
.careArea .circleSmall {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: #cae1d1;
  border-radius: 100%;
}
.careArea .circleSmall::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #fff;
}
.careArea .centerCareList {
  width: 34%;
}
@media (max-width: 1740px) {
  .careArea .centerCareList {
    width: 40%;
  }
}
@media (max-width: 1180px) {
  .careArea .centerCareList {
    width: 34%;
  }
}
@media (max-width: 980px) {
  .careArea .centerCareList {
    width: 40%;
  }
}
@media (max-width: 840px) {
  .careArea .centerCareList {
    width: 100%;
  }
}
.careArea .centerCareList .careItem {
  position: relative;
  margin-top: 30px;
}
.careArea .centerCareList .careItem:hover .imgBox, .careArea .centerCareList .careItem.show .imgBox {
  z-index: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.careArea .centerCareList .careItem:hover .textBox, .careArea .centerCareList .careItem.show .textBox {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.careArea .centerCareList .imgBox {
  position: relative;
  z-index: -1;
  margin-bottom: 10px;
  -webkit-transform: translateY(185px);
          transform: translateY(185px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1180px) {
  .careArea .centerCareList .imgBox {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.careArea .centerCareList .imgBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  display: block;
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(76, 76, 76, 0.2509803922);
  border-radius: 100%;
  -webkit-animation: rotate 80s linear infinite;
          animation: rotate 80s linear infinite;
}
@media (max-width: 360px) {
  .careArea .centerCareList .imgBox::before {
    display: none;
  }
}
.careArea .centerCareList .imgBox .Img {
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.careArea .centerCareList .iconBox {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}
.careArea .centerCareList .iconBox .iconImg {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  background: #fff;
  margin: 0 auto;
}
.careArea .centerCareList .iconBox .iconImg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 105px;
  height: 105px;
  border: 1px dashed #fff;
  border-radius: 100%;
  -webkit-animation: rotate 30s linear infinite;
          animation: rotate 30s linear infinite;
}
.careArea .centerCareList .iconBox .iconCircle {
  display: none;
}
.careArea .centerCareList .textBox {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1180px) {
  .careArea .centerCareList .textBox {
    opacity: 1;
  }
}
.careArea .centerCareList .title {
  display: block;
  color: #31a152;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
}
.careArea .centerCareList .txt {
  max-width: 225px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #4c4c4c;
}
.careArea .leftCareList {
  -webkit-transform: rotate(20.5deg) translateZ(0);
          transform: rotate(20.5deg) translateZ(0);
}
.careArea .leftCareList .careItem {
  -webkit-transform: rotate(-20.5deg) translateZ(0);
          transform: rotate(-20.5deg) translateZ(0);
}
.careArea .rightCareList {
  -webkit-transform: rotate(-20.5deg) translateZ(0);
          transform: rotate(-20.5deg) translateZ(0);
}
.careArea .rightCareList .careItem {
  -webkit-transform: rotate(20.5deg) translateZ(0);
          transform: rotate(20.5deg) translateZ(0);
}
.careArea .leftCareList,
.careArea .rightCareList {
  width: 23%;
  margin-top: 130px;
}
@media (max-width: 1740px) {
  .careArea .leftCareList,
.careArea .rightCareList {
    width: 30%;
  }
}
@media (max-width: 1300px) {
  .careArea .leftCareList,
.careArea .rightCareList {
    width: 35%;
  }
}
@media (max-width: 1180px) {
  .careArea .leftCareList,
.careArea .rightCareList {
    width: 40%;
  }
}
@media (max-width: 980px) {
  .careArea .leftCareList,
.careArea .rightCareList {
    width: 30%;
  }
}
@media (max-width: 840px) {
  .careArea .leftCareList,
.careArea .rightCareList {
    display: none;
  }
}
.careArea .leftCareList .careItem,
.careArea .rightCareList .careItem {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.careArea .leftCareList .careItem.show,
.careArea .rightCareList .careItem.show {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.careArea .leftCareList .careItem:hover .iconBox .iconBg,
.careArea .rightCareList .careItem:hover .iconBox .iconBg {
  opacity: 0;
}
.careArea .leftCareList .careItem:hover .iconBox::after,
.careArea .rightCareList .careItem:hover .iconBox::after {
  border: 1px dashed rgba(49, 161, 82, 0.3764705882);
}
.careArea .leftCareList .careItem:hover .iconBox .iconImg img,
.careArea .rightCareList .careItem:hover .iconBox .iconImg img {
  -webkit-filter: none;
          filter: none;
}
.careArea .leftCareList .careItem:hover .iconBox .iconCircle .path,
.careArea .rightCareList .careItem:hover .iconBox .iconCircle .path {
  stroke-dashoffset: 0;
}
.careArea .leftCareList .slick-track,
.careArea .rightCareList .slick-track {
  margin: 130px 0;
}
.careArea .leftCareList .Img,
.careArea .rightCareList .Img {
  display: none;
}
.careArea .leftCareList .imgBox,
.careArea .rightCareList .imgBox {
  padding-bottom: 30px;
}
.careArea .leftCareList .iconBox,
.careArea .rightCareList .iconBox {
  position: relative;
  display: block;
  width: 133px;
  height: 133px;
  margin: 0 auto;
  border-radius: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.11);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.careArea .leftCareList .iconBox .iconCircle,
.careArea .rightCareList .iconBox .iconCircle {
  position: absolute;
  top: 0;
  left: 0;
}
.careArea .leftCareList .iconBox .iconCircle .path,
.careArea .rightCareList .iconBox .iconCircle .path {
  width: 133px;
  height: 133px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  stroke: #15d6bc;
  fill: none;
  stroke-width: 3px;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.careArea .leftCareList .iconBox .iconBg,
.careArea .rightCareList .iconBox .iconBg {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(9, 187, 225)), to(rgb(50, 245, 156)));
  background: linear-gradient(90deg, rgb(9, 187, 225), rgb(50, 245, 156));
  background-size: 200%;
  background-position: 0;
  -webkit-animation: glueglue 10s infinite linear;
          animation: glueglue 10s infinite linear;
  border-radius: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.careArea .leftCareList .iconBox::before,
.careArea .rightCareList .iconBox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  display: block;
  width: 120%;
  height: 120%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.careArea .leftCareList .iconBox::after,
.careArea .rightCareList .iconBox::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 90%;
  height: 90%;
  border-radius: 100%;
  border: 1px dashed #fff;
  -webkit-animation: rotate 30s linear infinite;
          animation: rotate 30s linear infinite;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.careArea .leftCareList .iconBox img,
.careArea .rightCareList .iconBox img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: grayscale(1) brightness(10);
          filter: grayscale(1) brightness(10);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.careArea .leftCareList .textBox,
.careArea .rightCareList .textBox {
  padding: 0 20px;
  margin: 0 auto;
}
.careArea .leftCareList .textBox .title,
.careArea .rightCareList .textBox .title {
  font-size: 18px;
  font-weight: 400;
  color: #191919;
}
.careArea .leftCareList .textBox .txt,
.careArea .rightCareList .textBox .txt {
  display: none;
}
.careArea .arrowBox .arrow {
  top: 60%;
}
.careArea .arrowBox .arrowPrev {
  background: #fff;
  left: 35%;
}
@media (max-width: 1181px) {
  .careArea .arrowBox .arrowPrev {
    left: 30%;
  }
}
@media (max-width: 840px) {
  .careArea .arrowBox .arrowPrev {
    left: 10%;
  }
}
@media (max-width: 520px) {
  .careArea .arrowBox .arrowPrev {
    left: -15px;
  }
}
@media (max-width: 360px) {
  .careArea .arrowBox .arrowPrev {
    left: -20px;
  }
}
.careArea .arrowBox .arrowPrev:hover {
  background: #31a152;
}
.careArea .arrowBox .arrowPrev::before {
  -webkit-transform: rotate(-45deg) translate(0, 0);
          transform: rotate(-45deg) translate(0, 0);
}
.careArea .arrowBox .arrowNext {
  background: #fff;
  right: 35%;
}
@media (max-width: 1181px) {
  .careArea .arrowBox .arrowNext {
    right: 30%;
  }
}
@media (max-width: 840px) {
  .careArea .arrowBox .arrowNext {
    right: 10%;
  }
}
@media (max-width: 520px) {
  .careArea .arrowBox .arrowNext {
    right: -15px;
  }
}
@media (max-width: 360px) {
  .careArea .arrowBox .arrowNext {
    right: -20px;
  }
}
.careArea .arrowBox .arrowNext:hover {
  background: #31a152;
}
.careArea .bannerBtn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 90px;
}
.careArea .bannerBtn a {
  position: relative;
  text-align: left;
}
.careArea .bannerBtn a::before {
  z-index: 1;
}
.careArea .bannerBtn a::after {
  z-index: 0;
}
.careArea .bannerBtn p {
  position: relative;
  z-index: 1;
}