<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.bannerArea .arrowBox .arrow::before, .bannerArea .arrowBox .arrow, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .aboutArea .featureList .circleAll .circle .Txt .featureTitle, .aboutArea .featureList .circleAll .circle .Img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.bannerArea .bannerItem .Txt .bannerBtn a, .aboutArea .aboutBox .bannerBtn a, .brandArea .bannerBtn a {
  position: relative;
  background: rgb(37, 208, 166);
  background: -webkit-gradient(linear, left top, right top, from(rgb(37, 208, 166)), to(rgb(23, 199, 12)));
  background: linear-gradient(to right, rgb(37, 208, 166) 0%, rgb(23, 199, 12) 100%);
  color: #fff;
  display: inline-block;
  letter-spacing: 1.4px;
  padding: 25px 125px 25px 31px;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #FFF;
  border-radius: 5px;
  background-size: 300%;
  background-position: 100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover, .aboutArea .aboutBox .bannerBtn a:hover, .brandArea .bannerBtn a:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #124AC4;
  background-position: 0;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover::before, .aboutArea .aboutBox .bannerBtn a:hover::before, .brandArea .bannerBtn a:hover::before, .bannerArea .bannerItem .Txt .bannerBtn a:hover::after, .aboutArea .aboutBox .bannerBtn a:hover::after, .brandArea .bannerBtn a:hover::after {
  border-color: #124AC4;
}
.bannerArea .bannerItem .Txt .bannerBtn a::before, .aboutArea .aboutBox .bannerBtn a::before, .brandArea .bannerBtn a::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 3px solid #FFF;
  border-top: none;
  border-left: none;
  position: absolute;
  left: 80%;
  top: 42%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.bannerArea .bannerItem .Txt .bannerBtn a::after, .aboutArea .aboutBox .bannerBtn a::after, .brandArea .bannerBtn a::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 3px solid #FFF;
  border-top: none;
  border-left: none;
  position: absolute;
  left: 84%;
  top: 42%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.brandArea .Txt, .specArea .specBox &gt; .Txt {
  position: relative;
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  color: #2C2C2C;
  z-index: 1;
}
.brandArea .Txt .title, .specArea .specBox &gt; .Txt .title {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 45px;
}
.brandArea .Txt .title .t2, .specArea .specBox &gt; .Txt .title .t2 {
  color: #124AC4;
}
.brandArea .Txt .text, .specArea .specBox &gt; .Txt .text {
  font-weight: 400;
  font-size: 18px;
  padding-top: 4px;
  letter-spacing: 1.6px;
}

@-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 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%);
  }
}
@-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);
  }
}

.mainArea {
  padding: 0;
}

.specArea {
  padding: 90px 30px 47px;
  background-color: #F7FAFF;
}
@media (max-width: 480px) {
  .specArea .specBox &gt; .Txt .title {
    font-size: 40px;
  }
  .specArea .specBox &gt; .Txt .text {
    font-size: 16px;
  }
}
.specArea .specList {
  padding: 33px 0 47px;
  z-index: 1;
}
.specArea .specList .specItem {
  background-color: #E1E7F2;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  border: solid 1px #E8EEFD;
  margin: 0 20px;
  -webkit-box-shadow: 0 0 15px #E1E9FC;
          box-shadow: 0 0 15px #E1E9FC;
}
.specArea .specList .specItem .Img {
  width: 120px;
  height: 120px;
  background-color: #BDCCF5;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 2;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
.specArea .specList .specItem .Img img {
  max-width: 100%;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.specArea .specList .specItem:hover {
  background-color: #FFF;
}
.specArea .specList .specItem:hover .Img {
  background-color: #4671E5;
}
.specArea .specList .specItem:hover .Img img {
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
}
.specArea .specList .specItem .Txt {
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
}
.specArea .specList .specItem .Txt .title {
  font-size: 20px;
  margin-top: -35px;
}
@media (max-width: 414px) {
  .specArea .specList .specItem .Txt .title {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .specArea .specList .specItem .Txt .title {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .specArea .specList .specItem .Txt .title {
    font-size: 15px;
  }
}
.specArea .specList .specItem .Txt .text {
  font-size: 16px;
  line-height: 150%;
  padding: 10px 40px 30px;
  letter-spacing: 0.5px;
  color: #414141;
}
@media (max-width: 1680px) {
  .specArea .specList .specItem .Txt .text {
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .specArea .specList .specItem .Txt .text {
    padding: 10px 15px 30px;
  }
}
.specArea .specList .slick-list {
  padding-top: 60px;
}
.specArea .specList .slick-dots li button::before {
  content: "";
  background-color: #FFF;
  border: solid 1px #4671E5;
  border-radius: 50%;
  opacity: 1;
  width: 10px;
  height: 10px;
}
.specArea .specList .slick-dots li button:hover:before {
  background-color: #4671E5;
}
.specArea .specList .slick-dots li.slick-active button:before {
  background-color: #4671E5;
  opacity: 1;
}
.specArea .specBox {
  position: relative;
}
.specArea .arrowBox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.specArea .arrowBox .arrow {
  position: absolute;
  top: 65%;
  width: 25px;
  height: 22px;
  -webkit-transition: all 1s;
  transition: all 1s;
  cursor: pointer;
}
.specArea .arrowBox .arrowPrev {
  left: -40px;
  background: url("../images/Left.png") 50% 50% no-repeat;
}
.specArea .arrowBox .arrowPrev:hover {
  background: url("../images/hoverLeft.png") 50% 50% no-repeat;
}
@media (max-width: 1024px) {
  .specArea .arrowBox .arrowPrev {
    left: -30px;
  }
}
.specArea .arrowBox .arrowNext {
  right: -40px;
  background: url("../images/Right.png") 50% 50% no-repeat;
}
.specArea .arrowBox .arrowNext:hover {
  background: url("../images/hoverRight.png") 50% 50% no-repeat;
}
@media (max-width: 1024px) {
  .specArea .arrowBox .arrowNext {
    right: -30px;
  }
}
@media (max-width: 390px) {
  .specArea {
    padding: 90px 20px 47px;
  }
}

.brandArea {
  background-color: #FFF;
  padding-top: 84px;
}
@media (max-width: 480px) {
  .brandArea .Txt .title {
    font-size: 40px;
  }
  .brandArea .Txt .text {
    font-size: 16px;
  }
}
.brandArea .brandList {
  padding-top: 60px;
}
.brandArea .brandList .brandItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.brandArea .brandList .brandItem .item {
  width: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  border: solid 1px #E5E5E5;
  border-top: none;
  border-left: none;
  border-radius: 10px;
}
.brandArea .brandList .brandItem .item:nth-of-type(5), .brandArea .brandList .brandItem .item:last-child {
  border-right: none;
}
.brandArea .brandList .brandItem .item:nth-of-type(n+6) {
  border-bottom: none;
}
@media (max-width: 1366px) {
  .brandArea .brandList .brandItem .item {
    border: none;
  }
}
.brandArea .brandList .brandItem .item:hover {
  -webkit-box-shadow: 0 0 15px #E1E9FC;
          box-shadow: 0 0 15px #E1E9FC;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #FFF;
}
.brandArea .brandList .brandItem .item:hover .Img::after {
  opacity: 1;
}
.brandArea .brandList .brandItem .item .Img {
  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: 142px;
  position: relative;
}
.brandArea .brandList .brandItem .item .Img &gt; a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.brandArea .brandList .brandItem .item .Img img {
  display: block;
  max-width: 200px;
}
@media (max-width: 640px) {
  .brandArea .brandList .brandItem .item .Img img {
    max-width: 160px;
  }
}
@media (max-width: 480px) {
  .brandArea .brandList .brandItem .item .Img img {
    max-width: 140px;
  }
}
@media (max-width: 350px) {
  .brandArea .brandList .brandItem .item .Img img {
    max-width: 120px;
  }
}
.brandArea .brandList .brandItem .item .Img::after {
  content: "";
  position: absolute;
  background: url("../images/brandLink.png") 50% 50% no-repeat;
  width: 21px;
  height: 15px;
  right: 22px;
  top: 14px;
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
@media (max-width: 480px) {
  .brandArea .brandList .brandItem .item .Img::after {
    display: none;
  }
}
.brandArea .brandList .brandItem .slick-list {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.brandArea .brandList .brandItem .slick-dots {
  bottom: -45px;
}
.brandArea .brandList .brandItem .slick-dots li button::before {
  content: "";
  background-color: #FFF;
  border: solid 1px #4671E5;
  border-radius: 50%;
  opacity: 1;
  width: 10px;
  height: 10px;
}
.brandArea .brandList .brandItem .slick-dots li button:hover:before {
  background-color: #4671E5;
}
.brandArea .brandList .brandItem .slick-dots li.slick-active button:before {
  background-color: #4671E5;
  opacity: 1;
}
@media (max-width: 1024px) {
  .brandArea .brandList {
    padding-top: 20px;
  }
}
.brandArea .bannerBtn {
  padding: 66px 0 84px;
  text-align: center;
}
@media (max-width: 414px) {
  .brandArea .bannerBtn a {
    padding: 20px 80px 20px 20px;
    font-size: 12px;
  }
  .brandArea .bannerBtn a::before, .brandArea .bannerBtn a::after {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 375px) {
  .brandArea .slick-dots li {
    width: 15px;
    height: 15px;
  }
}

.aboutArea {
  background-color: #F7F7F7;
  padding: 50px 0 20px;
}
.aboutArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.aboutArea .aboutBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 20px 0;
  z-index: 1;
}
.aboutArea .aboutBox .bigTitle {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 176px;
  text-shadow: 0 0 3px #124AC4;
  color: #F7F7F7;
}
.aboutArea .aboutBox .bigTitle .title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}
@media (max-width: 1680px) {
  .aboutArea .aboutBox .bigTitle {
    font-size: 150px;
  }
  .aboutArea .aboutBox .bigTitle .title2 {
    width: 100%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding-left: 25%;
    -webkit-transform: translateY(-90px);
            transform: translateY(-90px);
  }
}
@media (max-width: 1440px) {
  .aboutArea .aboutBox .bigTitle {
    font-size: 130px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .aboutBox .bigTitle {
    font-size: 150px;
  }
  .aboutArea .aboutBox .bigTitle .title2 {
    padding-left: 40%;
  }
}
@media (max-width: 960px) {
  .aboutArea .aboutBox .bigTitle {
    font-size: 120px;
  }
  .aboutArea .aboutBox .bigTitle .title2 {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}
@media (max-width: 640px) {
  .aboutArea .aboutBox .bigTitle {
    font-size: 90px;
  }
  .aboutArea .aboutBox .bigTitle .title2 {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutBox .bigTitle {
    font-size: 70px;
  }
}
@media (max-width: 375px) {
  .aboutArea .aboutBox .bigTitle {
    font-size: 60px;
  }
  .aboutArea .aboutBox .bigTitle .title2 {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
.aboutArea .aboutBox .Txt {
  position: relative;
  text-align: left;
  font-family: "Noto Sans TC", sans-serif;
  -webkit-transform: translateY(-260px);
          transform: translateY(-260px);
  letter-spacing: 0.6px;
}
.aboutArea .aboutBox .Txt .title {
  font-weight: 700;
  font-size: 45px;
}
.aboutArea .aboutBox .Txt .title2 {
  color: #124AC4;
}
.aboutArea .aboutBox .Txt .text {
  font-weight: 400;
  font-size: 18px;
  padding-top: 7px;
  letter-spacing: 1.6px;
}
.aboutArea .aboutBox .Txt .content {
  font-weight: 400;
  font-size: 16px;
  line-height: 206%;
  letter-spacing: 1.4px;
  color: #4B4B4B;
  position: relative;
  width: 35%;
  padding-top: 45px;
  padding-left: 80px;
}
.aboutArea .aboutBox .Txt .content::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 1px;
  background-color: #C6C6C6;
  left: 0;
  top: 62px;
}
@media (max-width: 1680px) {
  .aboutArea .aboutBox .Txt {
    -webkit-transform: translateY(-220px);
            transform: translateY(-220px);
  }
  .aboutArea .aboutBox .Txt .content {
    width: 40%;
  }
}
@media (max-width: 1280px) {
  .aboutArea .aboutBox .Txt .content {
    width: 80%;
  }
}
@media (max-width: 960px) {
  .aboutArea .aboutBox .Txt {
    -webkit-transform: translateY(-170px);
            transform: translateY(-170px);
  }
  .aboutArea .aboutBox .Txt .title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutBox .Txt .title {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .aboutArea .aboutBox .Txt {
    -webkit-transform: translateY(-120px);
            transform: translateY(-120px);
  }
  .aboutArea .aboutBox .Txt .title {
    font-size: 24px;
  }
  .aboutArea .aboutBox .Txt .text {
    font-size: 16px;
  }
  .aboutArea .aboutBox .Txt .content {
    width: 100%;
    font-size: 14px;
    padding-top: 20px;
    padding-left: 45px;
  }
  .aboutArea .aboutBox .Txt .content::before {
    width: 30px;
    top: 34px;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutBox .Txt {
    -webkit-transform: translateY(-110px);
            transform: translateY(-110px);
  }
  .aboutArea .aboutBox .Txt .title {
    font-size: 20px;
  }
  .aboutArea .aboutBox .Txt .text {
    font-size: 14px;
  }
  .aboutArea .aboutBox .Txt .content {
    font-size: 14px;
    padding-left: 0;
  }
  .aboutArea .aboutBox .Txt .content::before {
    display: none;
  }
}
@media (max-width: 375px) {
  .aboutArea .aboutBox .Txt {
    -webkit-transform: translateY(-90px);
            transform: translateY(-90px);
  }
  .aboutArea .aboutBox .Txt .title {
    font-size: 18px;
  }
  .aboutArea .aboutBox .Txt .content {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .aboutArea .aboutBox .Txt .title {
    font-size: 16px;
  }
  .aboutArea .aboutBox .Txt .text {
    font-size: 13px;
  }
}
.aboutArea .aboutBox .bannerBtn {
  position: absolute;
  bottom: -150px;
  left: 75px;
  width: 80%;
  height: auto;
}
@media (max-width: 768px) {
  .aboutArea .aboutBox .bannerBtn a {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .aboutArea .aboutBox .bannerBtn a {
    padding: 20px 115px 20px 25px;
    font-size: 14px;
  }
  .aboutArea .aboutBox .bannerBtn a::before, .aboutArea .aboutBox .bannerBtn a::after {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutBox .bannerBtn a {
    padding: 15px 80px 15px 20px;
    font-size: 12px;
  }
  .aboutArea .aboutBox .bannerBtn a::before, .aboutArea .aboutBox .bannerBtn a::after {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutBox .bannerBtn {
    bottom: -100px;
  }
}
@media (max-width: 640px) {
  .aboutArea .aboutBox .bannerBtn {
    left: 40px;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutBox .bannerBtn {
    left: 0;
    bottom: -80px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .aboutBox {
    padding-left: 15%;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutBox {
    padding-left: 10%;
  }
}
@media (max-width: 480px) {
  .aboutArea .aboutBox {
    padding: 10px 0;
  }
}
.aboutArea .featureList {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aboutArea .featureList .show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 192px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.aboutArea .featureList .show .showItemImg {
  padding-right: 52px;
}
.aboutArea .featureList .show .showTextAll {
  padding-right: 21px;
}
.aboutArea .featureList .show .showTextAll .showItemTitle {
  font-size: 22px;
  font-weight: 500;
  color: #124AC4;
  letter-spacing: 1.8px;
}
.aboutArea .featureList .show .showTextAll .showItemText {
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
  letter-spacing: 1.6px;
  line-height: 150%;
  width: 369px;
}
@media (max-width: 1680px) {
  .aboutArea .featureList .show {
    padding-top: 168px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .featureList .show {
    padding-top: 128px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .featureList .show {
    padding-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 640px) {
  .aboutArea .featureList .show {
    padding-top: 20px;
  }
  .aboutArea .featureList .show .showTextAll .showItemText {
    font-size: 14px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .aboutArea .featureList .show .showItemImg {
    padding-right: 20px;
  }
}
@media (max-width: 414px) {
  .aboutArea .featureList .show .showTextAll {
    padding-right: 0;
  }
  .aboutArea .featureList .show .showTextAll .showItemTitle {
    font-size: 20px;
  }
  .aboutArea .featureList .show .showTextAll .showItemText {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .aboutArea .featureList .show .showTextAll .showItemTitle {
    font-size: 16px;
  }
}
.aboutArea .featureList .circleAll {
  position: absolute;
  width: 100%;
  height: 100%;
}
.aboutArea .featureList .circleAll .circle.current {
  -webkit-box-shadow: 0 0 15px #17C50C;
          box-shadow: 0 0 15px #17C50C;
}
.aboutArea .featureList .circleAll .circle.current .Img {
  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: 100%;
}
.aboutArea .featureList .circleAll .circle.current .Img img {
  display: block;
  opacity: 1;
}
.aboutArea .featureList .circleAll .circle.current .Txt .featureTitle {
  opacity: 0;
}
.aboutArea .featureList .circleAll .circle {
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background-color: #FFF;
  border: solid 1px #CACACA;
  cursor: pointer;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  z-index: 2;
}
.aboutArea .featureList .circleAll .circle::after {
  content: "";
  position: absolute;
  background: url("../images/arrow.png") no-repeat center;
  width: 8px;
  height: 8px;
}
.aboutArea .featureList .circleAll .circle:nth-of-type(1) {
  right: 30px;
  top: 81px;
}
.aboutArea .featureList .circleAll .circle:nth-of-type(1)::after {
  top: 62px;
  left: -61px;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
}
.aboutArea .featureList .circleAll .circle:nth-of-type(2) {
  right: 290px;
  top: 105px;
}
.aboutArea .featureList .circleAll .circle:nth-of-type(2)::after {
  left: -46px;
  bottom: 10px;
}
.aboutArea .featureList .circleAll .circle:nth-of-type(3) {
  right: 81px;
  top: 276px;
}
.aboutArea .featureList .circleAll .circle:nth-of-type(3)::after {
  right: -17px;
  top: -12px;
  -webkit-transform: rotate(164deg);
          transform: rotate(164deg);
}
.aboutArea .featureList .circleAll .circle:nth-of-type(4) {
  right: 310px;
  top: 368px;
}
.aboutArea .featureList .circleAll .circle:nth-of-type(4)::after {
  right: -54px;
  top: 44px;
  -webkit-transform: rotate(203deg);
          transform: rotate(203deg);
}
.aboutArea .featureList .circleAll .circle:nth-of-type(5) {
  right: 500px;
  top: 248px;
}
.aboutArea .featureList .circleAll .circle:nth-of-type(5)::after {
  right: 16px;
  bottom: -51px;
  -webkit-transform: rotate(-108deg);
          transform: rotate(-108deg);
}
.aboutArea .featureList .circleAll .circle:hover {
  -webkit-box-shadow: 0 0 15px #17C50C;
          box-shadow: 0 0 15px #17C50C;
}
.aboutArea .featureList .circleAll .circle:hover .Img {
  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;
}
.aboutArea .featureList .circleAll .circle:hover .Img img {
  display: block;
  opacity: 1;
}
.aboutArea .featureList .circleAll .circle:hover .Txt .featureTitle {
  opacity: 0;
}
.aboutArea .featureList .circleAll .circle .Img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 2;
}
.aboutArea .featureList .circleAll .circle .Img img {
  width: 65px;
  height: 56px;
  opacity: 0;
}
.aboutArea .featureList .circleAll .circle .Txt {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  margin: 0;
  z-index: 1;
}
.aboutArea .featureList .circleAll .circle .Txt .featureTitle {
  font-size: 16px;
  font-weight: 400;
  color: #434343;
  letter-spacing: 1.8px;
  cursor: pointer;
  line-height: 150%;
  text-align: center;
  padding: 0 10px;
}
.aboutArea .featureList .circleAll .circle .Txt .text {
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
  letter-spacing: 1.6px;
  line-height: 150%;
  display: none;
}
.aboutArea .featureList .circleAll .ovalWhite {
  position: absolute;
  z-index: 1;
  width: 550px;
  height: 260px;
  background-color: #FFF;
  border-radius: 50%;
  top: 246px;
  right: 24px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.aboutArea .featureList .circleAll .ovalBlack {
  position: absolute;
  z-index: 1;
  width: 545px;
  height: 260px;
  border: solid 1px #CACACA;
  border-radius: 50%;
  top: 170px;
  right: 46px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
@media (max-width: 1280px) {
  .aboutArea .featureList .circleAll {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .aboutArea .featureList .circleAll {
    width: 85%;
  }
}
@media (max-width: 960px) {
  .aboutArea .featureList .circleAll {
    width: 100%;
    left: -20%;
  }
  .aboutArea .featureList .circleAll .ovalBlack,
.aboutArea .featureList .circleAll .ovalWhite {
    width: 400px;
    height: 190px;
  }
  .aboutArea .featureList .circleAll .circle {
    width: 110px;
    height: 110px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(1) {
    right: 10px;
    top: 100px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(1)::after {
    top: 48px;
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(2) {
    right: 220px;
    top: 120px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(2)::after {
    left: -33px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(3) {
    top: 260px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(4) {
    right: 260px;
    top: 320px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(4)::after {
    right: -42px;
    top: 32px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(5) {
    right: 380px;
    top: 220px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(5)::after {
    right: 27px;
    bottom: -34px;
  }
  .aboutArea .featureList .circleAll .circle .Txt .featureTitle {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .aboutArea .featureList .circleAll {
    left: -10%;
    top: 10%;
  }
}
@media (max-width: 640px) {
  .aboutArea .featureList .circleAll {
    left: -15%;
  }
  .aboutArea .featureList .circleAll .ovalBlack,
.aboutArea .featureList .circleAll .ovalWhite {
    width: 300px;
    height: 140px;
  }
  .aboutArea .featureList .circleAll .circle {
    width: 90px;
    height: 90px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(1) {
    right: 15px;
    top: 130px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(1)::after {
    top: 22px;
    left: -40px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(2) {
    right: 165px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(2)::after {
    left: -24px;
    bottom: 4px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(3) {
    top: 244px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(3)::after {
    right: -12px;
    top: -4px;
    -webkit-transform: rotate(170deg);
            transform: rotate(170deg);
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(4) {
    right: 220px;
    top: 272px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(4)::after {
    right: -28px;
    top: 36px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(5) {
    right: 300px;
    top: 200px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(5)::after {
    right: 22px;
    bottom: -20px;
    -webkit-transform: rotate(-100deg);
            transform: rotate(-100deg);
  }
  .aboutArea .featureList .circleAll .circle .Txt .featureTitle {
    font-size: 12px;
  }
  .aboutArea .featureList .circleAll .circle .Img img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .aboutArea .featureList .circleAll {
    left: 0;
  }
}
@media (max-width: 414px) {
  .aboutArea .featureList .circleAll .ovalBlack,
.aboutArea .featureList .circleAll .ovalWhite {
    width: 250px;
    height: 115px;
  }
  .aboutArea .featureList .circleAll .circle::after {
    display: none;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(1) {
    top: 110px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(2) {
    right: 145px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(3) {
    top: 225px;
    right: 55px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(4) {
    right: 165px;
    top: 255px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(5) {
    right: 250px;
    top: 185px;
  }
}
@media (max-width: 375px) {
  .aboutArea .featureList .circleAll {
    left: 20px;
  }
}
@media (max-width: 350px) {
  .aboutArea .featureList .circleAll {
    top: 15%;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(3) {
    top: 215px;
    right: 35px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(4) {
    right: 140px;
  }
  .aboutArea .featureList .circleAll .circle:nth-of-type(5) {
    right: 225px;
    top: 205px;
  }
}
.aboutArea .featureList .smallCircleAll {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.aboutArea .featureList .smallCircleAll .smallCircle {
  position: absolute;
  background-color: #FFF;
  border-radius: 50%;
  border: solid 1px #E0E0E0;
  cursor: pointer;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.aboutArea .featureList .smallCircleAll .smallCircle:hover {
  -webkit-box-shadow: 0 0 15px #17C50C;
          box-shadow: 0 0 15px #17C50C;
}
.aboutArea .featureList .smallCircleAll .smallCircle1 {
  width: 45px;
  height: 45px;
  top: 112px;
  right: 145px;
  -webkit-animation-name: animationC1;
          animation-name: animationC1;
}
@media (max-width: 1280px) {
  .aboutArea .featureList .smallCircleAll .smallCircle1 {
    right: 35%;
    top: -100px;
    -webkit-animation-name: animationC1s;
            animation-name: animationC1s;
  }
}
@media (max-width: 960px) {
  .aboutArea .featureList .smallCircleAll .smallCircle1 {
    right: 30%;
  }
}
@media (max-width: 768px) {
  .aboutArea .featureList .smallCircleAll .smallCircle1 {
    right: 20%;
  }
}
@-webkit-keyframes animationC1 {
  from {
    top: 112px;
  }
  to {
    top: 132px;
  }
}
@keyframes animationC1 {
  from {
    top: 112px;
  }
  to {
    top: 132px;
  }
}
@-webkit-keyframes animationC1s {
  from {
    top: -100px;
  }
  to {
    top: -80px;
  }
}
@keyframes animationC1s {
  from {
    top: -100px;
  }
  to {
    top: -80px;
  }
}
.aboutArea .featureList .smallCircleAll .smallCircle2 {
  width: 70px;
  height: 70px;
  bottom: 400px;
  right: -150px;
  -webkit-animation-name: animationC2;
          animation-name: animationC2;
}
@media (max-width: 1800px) {
  .aboutArea .featureList .smallCircleAll .smallCircle2 {
    display: none;
  }
}
@media (max-width: 1280px) {
  .aboutArea .featureList .smallCircleAll .smallCircle2 {
    display: block;
    right: 15%;
    bottom: 100px;
    -webkit-animation-name: animationC2s;
            animation-name: animationC2s;
  }
}
@-webkit-keyframes animationC2 {
  from {
    bottom: 400px;
  }
  to {
    bottom: 380px;
  }
}
@keyframes animationC2 {
  from {
    bottom: 400px;
  }
  to {
    bottom: 380px;
  }
}
@-webkit-keyframes animationC2s {
  from {
    bottom: 100px;
  }
  to {
    bottom: 80px;
  }
}
@keyframes animationC2s {
  from {
    bottom: 100px;
  }
  to {
    bottom: 80px;
  }
}
.aboutArea .featureList .smallCircleAll .smallCircle3 {
  width: 55px;
  height: 55px;
  bottom: 150px;
  right: 700px;
  -webkit-animation-name: animationC3;
          animation-name: animationC3;
}
@media (max-width: 1280px) {
  .aboutArea .featureList .smallCircleAll .smallCircle3 {
    right: unset;
    left: 10%;
    bottom: 50px;
    -webkit-animation-name: animationC3s;
            animation-name: animationC3s;
  }
}
@-webkit-keyframes animationC3 {
  from {
    bottom: 150px;
  }
  to {
    bottom: 130px;
  }
}
@keyframes animationC3 {
  from {
    bottom: 150px;
  }
  to {
    bottom: 130px;
  }
}
@-webkit-keyframes animationC3s {
  from {
    bottom: 50px;
  }
  to {
    bottom: 30px;
  }
}
@keyframes animationC3s {
  from {
    bottom: 50px;
  }
  to {
    bottom: 30px;
  }
}
.aboutArea .featureList .smallCircleAll .smallCircle4 {
  width: 75px;
  height: 75px;
  top: 380px;
  right: 550px;
  -webkit-animation-name: animationC4;
          animation-name: animationC4;
}
@media (max-width: 1280px) {
  .aboutArea .featureList .smallCircleAll .smallCircle4 {
    top: 200px;
    right: unset;
    left: 15%;
    -webkit-animation-name: animationC4s;
            animation-name: animationC4s;
  }
}
@media (max-width: 768px) {
  .aboutArea .featureList .smallCircleAll .smallCircle4 {
    top: 150px;
    right: unset;
    left: 15%;
    -webkit-animation-name: animationC4s2;
            animation-name: animationC4s2;
  }
}
@-webkit-keyframes animationC4 {
  from {
    top: 380px;
  }
  to {
    top: 400px;
  }
}
@keyframes animationC4 {
  from {
    top: 380px;
  }
  to {
    top: 400px;
  }
}
@-webkit-keyframes animationC4s {
  from {
    top: 200px;
  }
  to {
    top: 220px;
  }
}
@keyframes animationC4s {
  from {
    top: 200px;
  }
  to {
    top: 220px;
  }
}
@-webkit-keyframes animationC4s2 {
  from {
    top: 150px;
  }
  to {
    top: 170px;
  }
}
@keyframes animationC4s2 {
  from {
    top: 150px;
  }
  to {
    top: 170px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .featureList .smallCircleAll {
    top: -30px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .featureList .smallCircleAll {
    top: 0;
  }
}
@media (max-width: 640px) {
  .aboutArea .featureList .smallCircleAll {
    display: none;
  }
}
@media (max-width: 1680px) {
  .aboutArea .featureList {
    width: 95%;
  }
}
@media (max-width: 1440px) {
  .aboutArea .featureList {
    width: 99%;
  }
}
@media (max-width: 1280px) {
  .aboutArea .featureList {
    width: 100%;
    position: relative;
    height: 700px;
  }
}
@media (max-width: 640px) {
  .aboutArea .featureList {
    height: 550px;
  }
}
@media (max-width: 414px) {
  .aboutArea .featureList {
    height: 450px;
  }
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerBox .scrollArrowDown {
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFF;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  -webkit-animation-name: animation1;
          animation-name: animation1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  letter-spacing: 1.5px;
}
@-webkit-keyframes animation1 {
  from {
    bottom: 30px;
  }
  to {
    bottom: 55px;
  }
}
@keyframes animation1 {
  from {
    bottom: 30px;
  }
  to {
    bottom: 55px;
  }
}
.bannerArea .bannerBox .scrollArrowDown .scrollDownWidth {
  padding: 30px;
  cursor: pointer;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.bannerArea .bannerBox .scrollArrowDown .scrollDownWidth:hover {
  color: #124AC4;
}
.bannerArea .bannerBox .scrollArrowDown .scrollDownWidth:hover::before {
  opacity: 0;
}
.bannerArea .bannerBox .scrollArrowDown .scrollDownWidth::after, .bannerArea .bannerBox .scrollArrowDown .scrollDownWidth::before {
  content: "";
  position: absolute;
  bottom: -5px;
  background: url("../images/arrowDown.png") no-repeat center;
  width: 29px;
  height: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.bannerArea .bannerBox .scrollArrowDown .scrollDownWidth::after {
  background: url("../images/arrowDownBlue.png") no-repeat center;
  z-index: 1;
}
@media (max-width: 1024px) {
  .bannerArea .bannerBox .scrollArrowDown {
    display: none;
  }
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .num.current {
  color: #0EFF00;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .num.current::after {
  background: #0EFF00;
  width: 400%;
  left: 200%;
}
.bannerArea .bannerItem .Txt {
  max-width: 1392px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: right;
}
.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;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 600px;
  margin-left: auto;
}
@media (max-width: 1366px) {
  .bannerArea .bannerItem .Txt .textBox {
    max-width: 45%;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .textBox {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .textBox {
    max-width: 55%;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .textBox {
    max-width: 80%;
    margin: 0;
  }
}
@media (max-width: 375px) {
  .bannerArea .bannerItem .Txt .textBox {
    max-width: 300px;
  }
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0;
}
@media (max-width: 1680px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 45px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 40px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 32px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .title {
    padding: 0;
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 28px;
  }
}
@media (max-width: 375px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 22px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  line-height: 1.5;
  letter-spacing: 0.4px;
  margin-top: 15px;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
  opacity: 0;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
  }
}
.bannerArea .bannerItem .Txt .bannerBtn {
  padding-top: 60px;
  padding-right: 20px;
  padding-left: 20px;
  opacity: 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .bannerBtn a {
    padding: 20px 115px 20px 25px;
    font-size: 13px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .bannerBtn a {
    padding: 15px 60px 15px 20px;
  }
  .bannerArea .bannerItem .Txt .bannerBtn a::before, .bannerArea .bannerItem .Txt .bannerBtn a::after {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .bannerBtn a {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .bannerBtn a {
    padding: 20px 115px 20px 25px;
    font-size: 14px;
  }
  .bannerArea .bannerItem .Txt .bannerBtn a::before, .bannerArea .bannerItem .Txt .bannerBtn a::after {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 414px) {
  .bannerArea .bannerItem .Txt .bannerBtn a {
    padding: 15px 80px 15px 20px;
    font-size: 12px;
  }
  .bannerArea .bannerItem .Txt .bannerBtn a::before, .bannerArea .bannerItem .Txt .bannerBtn a::after {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 375px) {
  .bannerArea .bannerItem .Txt .bannerBtn a {
    padding: 15px 60px 15px 15px;
  }
}
@media (max-width: 1366px) {
  .bannerArea .bannerItem .Txt .bannerBtn {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .bannerBtn {
    padding-top: 10px;
  }
}
.bannerArea .bannerItem .Txt .numberBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 52px 10px 0 10px;
  color: #C0C0C0;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  position: relative;
}
.bannerArea .bannerItem .Txt .numberBox .numItem {
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .num {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .num:hover {
  color: #0EFF00;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .num:hover::after {
  background: #0EFF00;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .num::after {
  content: "";
  position: absolute;
  background: #5499D8;
  width: 100%;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -10px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  z-index: 2;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .numText {
  display: none;
  position: relative;
  color: #FFF;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  padding-left: 5px;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .numText::after {
  content: "";
  position: absolute;
  background: #5499D8;
  width: 100%;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -10px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  z-index: 1;
}
.bannerArea .bannerItem .Txt .numberBox .numItem .numText.current {
  display: block;
}
@media (max-width: 1366px) {
  .bannerArea .bannerItem .Txt .numberBox {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .numberBox {
    padding-top: 10px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .numberBox {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding-top: 50px;
  }
}
@media (max-width: 414px) {
  .bannerArea .bannerItem .Txt .numberBox {
    padding-top: 20px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt {
    text-align: left;
  }
  .bannerArea .bannerItem .Img {
    padding-bottom: 100%;
  }
  .bannerArea .bannerItem .Img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    margin: auto;
    width: 100%;
    height: 100%;
  }
}
.bannerArea .slick-current .Txt .title {
  -webkit-animation: textSlideRightAnimation 0.8s ease-in-out forwards;
          animation: textSlideRightAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
  -webkit-animation: textSlideRightAnimation 0.8s 0.4s ease-in-out forwards;
          animation: textSlideRightAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .bannerBtn {
  -webkit-animation: textSlideRightAnimation 0.8s 0.8s ease-in-out forwards;
          animation: textSlideRightAnimation 0.8s 0.8s 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: #124AC4;
}
.bannerArea .socialBox .socialList li a:hover svg {
  fill: #124AC4;
}
.bannerArea .arrowBox {
  display: block;
  position: absolute;
  top: 50%;
  right: 50px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bannerArea .arrowBox .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
  position: relative;
  margin: 10px 0;
  cursor: pointer;
}
.bannerArea .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;
}
.bannerArea .arrowBox .arrowPrev::before {
  border-width: 0 5px 9px 5px;
  border-color: transparent transparent #fff transparent;
}
.bannerArea .arrowBox .arrowPrev:hover::before {
  border-color: transparent transparent #124AC4 transparent;
}
.bannerArea .arrowBox .arrowNext::before {
  border-width: 9px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
.bannerArea .arrowBox .arrowNext:hover::before {
  border-color: #124AC4 transparent transparent transparent;
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}
.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;
  letter-spacing: 0.5px;
}
.bannerArea .scrollDown span.line {
  width: 2px;
  height: calc(100% + 20px);
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 1;
}
.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: #124AC4;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .slick-dots {
  width: 100%;
  margin: 0;
  bottom: 50px;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .bannerArea .slick-dots {
    bottom: 35px;
  }
}
@media (max-width: 460px) {
  .bannerArea .slick-dots {
    bottom: 25px;
  }
}
.bannerArea .slick-dots li {
  width: 13px;
  height: 13px;
  margin: 0 7px;
}
.bannerArea .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.bannerArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active button::before {
  border: 1px solid #fff;
  background-color: #fff;
  opacity: 1;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .bannerVideo, .bannerArea .socialBox, .bannerArea .scrollDown, .bannerArea .arrowBox {
    display: none !important;
  }
}

.companyList {
  width: 100%;
  background-color: #F7F7F7;
  padding-bottom: 125px;
  position: relative;
}
@media (max-width: 901px) {
  .companyList {
    padding-top: 40px;
  }
}
@media (max-width: 500px) {
  .companyList {
    padding-top: 0;
  }
}
.companyList .slick-dots {
  bottom: -60px;
  width: 90%;
  z-index: 2;
}
.companyList .slick-dots li button::before {
  content: "";
  background-color: #FFF;
  border: solid 1px #4671E5;
  border-radius: 50%;
  opacity: 1;
  width: 10px;
  height: 10px;
}
.companyList .slick-dots li button:hover:before {
  background-color: #4671E5;
}
.companyList .slick-dots li.slick-active button:before {
  background-color: #4671E5;
  opacity: 1;
}
.companyList::before {
  content: "";
  position: absolute;
  background: url("../images/x1.png") center center no-repeat;
  width: 450px;
  height: 502px;
  left: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 901px) {
  .companyList::before {
    display: none;
  }
}
.companyList::after {
  content: "";
  position: absolute;
  background: url("../images/x2new.png") center center no-repeat;
  width: 490px;
  height: 525px;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.companyList .wrap {
  position: relative;
}
.companyList .companyBox {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
}
@media (max-width: 1440px) {
  .companyList .companyBox {
    max-width: 1300px;
  }
}
@media (max-width: 1366px) {
  .companyList .companyBox {
    max-width: 1200px;
  }
}
@media (max-width: 1280px) {
  .companyList .companyBox {
    max-width: 1100px;
  }
}
@media (max-width: 960px) {
  .companyList .companyBox {
    max-width: 850px;
  }
}
@media (max-width: 901px) {
  .companyList .companyBox {
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 13px rgba(62, 108, 230, 0.26);
            box-shadow: 0 0 13px rgba(62, 108, 230, 0.26);
    overflow: hidden;
    padding: 0;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .companyList .companyBox {
    max-width: 700px;
  }
}
.companyList .companyBox .wrap {
  padding: 0;
}
.companyList .companyBox .companyItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(25% - 20px);
  background-color: #FFF;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 13px rgba(62, 108, 230, 0.26);
          box-shadow: 0 0 13px rgba(62, 108, 230, 0.26);
  margin-top: 40px;
  padding: 40px 0 0 47px;
}
.companyList .companyBox .companyItem:not(:first-child) {
  margin-right: 26px;
}
.companyList .companyBox .companyItem:nth-child(4n+1) {
  margin-right: 0;
}
@media (max-width: 1440px) {
  .companyList .companyBox .companyItem {
    padding-left: 40px;
  }
}
@media (max-width: 1280px) {
  .companyList .companyBox .companyItem {
    width: calc(33.3333333333% - 17.5px);
  }
  .companyList .companyBox .companyItem:nth-child(3n+1) {
    margin-right: 0;
  }
  .companyList .companyBox .companyItem:nth-child(4n+1) {
    margin-right: 26px;
  }
  .companyList .companyBox .companyItem:nth-child(1) {
    margin-right: 0;
  }
}
@media (max-width: 1070px) {
  .companyList .companyBox .companyItem {
    width: calc(50% - 13px);
  }
  .companyList .companyBox .companyItem:nth-child(3n+1) {
    margin-right: 26px;
  }
  .companyList .companyBox .companyItem:nth-child(2n+1) {
    margin-right: 0;
  }
}
@media (max-width: 901px) {
  .companyList .companyBox .companyItem {
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .companyList .companyBox .companyItem:not(:first-child), .companyList .companyBox .companyItem:nth-child(4n+1), .companyList .companyBox .companyItem:nth-child(3n+1) {
    margin: 0;
  }
}
.companyList .companyBox .companyItem .left {
  width: 100%;
}
@media (max-width: 901px) {
  .companyList .companyBox .companyItem .left {
    padding-left: 120px;
  }
}
@media (max-width: 600px) {
  .companyList .companyBox .companyItem .left {
    padding-left: 80px;
  }
}
@media (max-width: 430px) {
  .companyList .companyBox .companyItem .left {
    padding-left: 40px;
  }
}
@media (max-width: 350px) {
  .companyList .companyBox .companyItem .left {
    padding-left: 20px;
  }
}
.companyList .companyBox .companyItem .left .ImgMap {
  background: url("../images/map.png") center center no-repeat;
  width: 286px;
  height: 143px;
  position: absolute;
  top: 30px;
  left: 30%;
}
@media (max-width: 1200px) {
  .companyList .companyBox .companyItem .left .ImgMap {
    top: 0;
  }
}
@media (max-width: 1024px) {
  .companyList .companyBox .companyItem .left .ImgMap {
    left: 20%;
  }
}
@media (max-width: 901px) {
  .companyList .companyBox .companyItem .left .ImgMap {
    display: none;
  }
}
.companyList .companyBox .companyItem .left .Txt {
  text-align: left;
  letter-spacing: 0.7px;
}
.companyList .companyBox .companyItem .left .Txt .twTitle {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
  font-size: 20px;
}
.companyList .companyBox .companyItem .left .Txt .enTitle {
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 30px;
}
@media (max-width: 901px) {
  .companyList .companyBox .companyItem .left .Txt {
    position: relative;
  }
  .companyList .companyBox .companyItem .left .Txt .twTitle {
    padding-top: 100px;
  }
  .companyList .companyBox .companyItem .left .Txt .enTitle {
    position: absolute;
    top: 70px;
    padding: 0;
  }
}
@media (max-width: 375px) {
  .companyList .companyBox .companyItem .left .Txt .twTitle {
    font-size: 18px;
  }
  .companyList .companyBox .companyItem .left .Txt .enTitle {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .companyList .companyBox .companyItem .left .Txt .twTitle {
    font-size: 16px;
  }
}
@media (max-width: 901px) {
  .companyList .companyBox .companyItem .right {
    padding-top: 25px;
    padding-left: 115px;
  }
}
@media (max-width: 600px) {
  .companyList .companyBox .companyItem .right {
    padding-left: 75px;
  }
}
@media (max-width: 430px) {
  .companyList .companyBox .companyItem .right {
    padding-left: 35px;
  }
}
@media (max-width: 350px) {
  .companyList .companyBox .companyItem .right {
    padding-left: 20px;
  }
}
.companyList .companyBox .companyItem .right .Img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 4px;
  padding-bottom: 8px;
  margin-bottom: 20px;
  position: relative;
  color: #4B4B4B;
  border-bottom: solid 1px #E5E5E5;
  width: 90%;
}
.companyList .companyBox .companyItem .right .Img:last-child {
  margin-bottom: 38px;
}
@media (max-width: 901px) {
  .companyList .companyBox .companyItem .right .Img .text {
    display: none;
  }
}
.companyList .companyBox .companyItem .right .Img .content {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 15px;
  width: 100%;
  padding-left: 38px;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media (max-width: 1366px) {
  .companyList .companyBox .companyItem .right .Img .content {
    font-size: 13px;
  }
}
@media (max-width: 901px) {
  .companyList .companyBox .companyItem .right .Img .content {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .companyList .companyBox .companyItem .right .Img .content {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .companyList .companyBox .companyItem .right .Img .content {
    font-size: 13px;
  }
}
.companyList .companyBox .companyItem .right .Img .content:first-child {
  line-height: 160%;
}
.companyList .companyBox .companyItem .right .Img .content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
}
.companyList .companyBox .companyItem .right .Img .content a {
  color: #4B4B4B;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.companyList .companyBox .companyItem .right .Img .content a:hover {
  color: #589000;
}
.companyList .companyBox .companyItem .right .Img:nth-of-type(1) .content::before {
  width: 10px;
  height: 15px;
  background: url("../images/companyIcon1.png") center center no-repeat;
}
.companyList .companyBox .companyItem .right .Img:nth-of-type(2) .content::before {
  width: 14px;
  height: 14px;
  background: url("../images/companyIcon2.png") center center no-repeat;
}
.companyList .companyBox .companyItem .right .Img:nth-of-type(3) .content::before {
  width: 15px;
  height: 15px;
  background: url("../images/companyIcon3.png") center center no-repeat;
}
.companyList .companyBox .companyItem .right .Img:nth-of-type(4) .content::before {
  width: 17px;
  height: 12px;
  background: url("../images/companyIcon4.png") center center no-repeat;
}
.companyList .companyBox .companyItem.firstItem {
  width: 100%;
}
.companyList .companyBox .companyItem.firstItem .left {
  width: 50%;
  position: relative;
  padding-top: 150px;
}
.companyList .companyBox .companyItem.firstItem .left .Txt {
  position: relative;
}
.companyList .companyBox .companyItem.firstItem .left .Txt .enTitle {
  position: absolute;
  padding: 0;
  left: 0;
  top: -50px;
  width: 110px;
}
@media (max-width: 960px) {
  .companyList .companyBox .companyItem.firstItem .left .Txt .enTitle {
    font-size: 14px;
    width: 100px;
  }
}
.companyList .companyBox .companyItem.firstItem .left .Txt .twTitle {
  letter-spacing: 0.8px;
}
@media (max-width: 960px) {
  .companyList .companyBox .companyItem.firstItem .left .Txt .twTitle {
    font-size: 18px;
  }
}
.companyList .companyBox .companyItem.firstItem .left::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 83%;
  background-color: #CCC;
  top: 0;
  right: 15%;
}
@media (max-width: 1366px) {
  .companyList .companyBox .companyItem.firstItem .left::after {
    right: 5%;
  }
}
@media (max-width: 1200px) {
  .companyList .companyBox .companyItem.firstItem .left::after {
    right: 0;
  }
}
@media (max-width: 1070px) {
  .companyList .companyBox .companyItem.firstItem .left::after {
    display: none;
  }
}
.companyList .companyBox .companyItem.firstItem .right {
  width: 50%;
}
@media (max-width: 1366px) {
  .companyList .companyBox .companyItem.firstItem .right {
    padding-left: 35px;
  }
}
@media (max-width: 1110px) {
  .companyList .companyBox .companyItem.firstItem .right {
    padding-left: 40px;
  }
}
@media (max-width: 1070px) {
  .companyList .companyBox .companyItem.firstItem .right {
    padding-left: 20px;
  }
}
.companyList .companyBox .companyItem.firstItem .right .Img::before {
  top: 30px;
}
.companyList .companyBox .companyItem.firstItem .right .Img .text {
  width: 20%;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0D4BC4;
  letter-spacing: 1.1px;
}
.companyList .companyBox .companyItem.firstItem .right .Img .text::before {
  content: "";
  position: absolute;
  left: -4%;
  top: 5px;
}
@media (max-width: 1366px) {
  .companyList .companyBox .companyItem.firstItem .right .Img .text {
    width: 105px;
  }
}
@media (max-width: 1280px) {
  .companyList .companyBox .companyItem.firstItem .right .Img .text {
    margin-left: 30px;
    width: 120px;
  }
  .companyList .companyBox .companyItem.firstItem .right .Img .text::before {
    left: 2%;
  }
}
.companyList .companyBox .companyItem.firstItem .right .Img:nth-of-type(1) .text::before {
  width: 10px;
  height: 15px;
  background: url("../images/companyIcon1.png") center center no-repeat;
}
.companyList .companyBox .companyItem.firstItem .right .Img:nth-of-type(2) .text::before {
  width: 14px;
  height: 14px;
  background: url("../images/companyIcon2.png") center center no-repeat;
}
.companyList .companyBox .companyItem.firstItem .right .Img:nth-of-type(3) .text::before {
  width: 15px;
  height: 15px;
  background: url("../images/companyIcon3.png") center center no-repeat;
}
.companyList .companyBox .companyItem.firstItem .right .Img:nth-of-type(4)::before {
  display: none;
}
.companyList .companyBox .companyItem.firstItem .right .Img:nth-of-type(4) .text::before {
  width: 17px;
  height: 12px;
  background: url("../images/companyIcon4.png") center center no-repeat;
}
.companyList .companyBox .companyItem.firstItem .right .Img .content {
  font-size: 16px;
  padding-right: 0;
  padding-left: 30px;
}
.companyList .companyBox .companyItem.firstItem .right .Img .content::before {
  display: none;
}
@media (max-width: 1110px) {
  .companyList .companyBox .companyItem.firstItem .right .Img .content,
.companyList .companyBox .companyItem.firstItem .right .Img .text {
    font-size: 14px;
  }
}</pre></body></html>