@charset "UTF-8";
@-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 progressBarHorizontal {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progressBarHorizontal {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progressBarVertical {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes progressBarVertical {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes progressCircleAnimation {
  0% {
    stroke-dashoffset: 153.86;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes progressCircleAnimation {
  0% {
    stroke-dashoffset: 153.86;
  }
  100% {
    stroke-dashoffset: 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;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  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;
  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;
  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;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  max-width: 1160px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  padding: 5px 20px 105px;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bannerArea .bannerItem .Txt .textBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.bannerArea .bannerItem .Txt img {
  width: 180px;
  margin: 0 auto 13px;
}
@media (max-width: 1200px) {
  .bannerArea .bannerItem .Txt img {
    width: 110px;
    margin: 0 auto 16px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt img {
    width: 90px;
    margin: 0 auto 8px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt img {
    width: 110px;
    margin: 0 auto 16px;
  }
}
.bannerArea .bannerItem .Txt .titleBox {
  padding-bottom: 25px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .titleBox em {
  display: block;
  font-size: 21px;
  letter-spacing: 1px;
}
.bannerArea .bannerItem .Txt .titleBox h1,
.bannerArea .bannerItem .Txt .titleBox h2 {
  font-size: 43px;
  letter-spacing: 2.5px;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .titleBox {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .bannerArea .bannerItem .Txt .titleBox em {
    font-size: 18px;
  }
  .bannerArea .bannerItem .Txt .titleBox h1,
.bannerArea .bannerItem .Txt .titleBox h2 {
    font-size: 35px;
  }
}
@media (max-width: 1200px) {
  .bannerArea .bannerItem .Txt .titleBox {
    padding-bottom: 19px;
    margin-bottom: 19px;
  }
  .bannerArea .bannerItem .Txt .titleBox em {
    font-size: 16px;
    padding-bottom: 7px;
  }
  .bannerArea .bannerItem .Txt .titleBox h1,
.bannerArea .bannerItem .Txt .titleBox h2 {
    font-size: 30px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt .titleBox {
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .titleBox {
    padding-bottom: 19px;
    margin-bottom: 19px;
  }
  .bannerArea .bannerItem .Txt .titleBox em {
    font-size: 14px !important;
  }
  .bannerArea .bannerItem .Txt .titleBox h1,
.bannerArea .bannerItem .Txt .titleBox h2 {
    font-size: 24px !important;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #272727;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-top: 5px;
  opacity: 0;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 19px;
    margin-top: 5px;
  }
}
@media (max-width: 1200px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 15px;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: rgba(60, 60, 60, 0.8);
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 1.9px;
  margin-top: 15px;
  opacity: 0;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 19px;
  }
}
@media (max-width: 1200px) {
  .bannerArea .bannerItem .Txt .text {
    display: none;
  }
}
.bannerArea .bannerItem .Img {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .noPicM {
    display: none;
  }
}
.bannerArea .bannerItem.slick-current .Txt .titleBox {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
  -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 .bannerItem.slick-current .Txt .videoBtn::after {
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: none;
  position: absolute;
  bottom: 61px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.bannerArea .scrollDown.show {
  display: block;
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.textTw {
  color: #272727;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
}
@media (max-width: 1200px) {
  .bannerArea .scrollDown span.textTw {
    font-size: 14px;
  }
}
.bannerArea .scrollDown span.textEn {
  color: #848484;
  font-size: 15px;
  font-family: "STIX Two Text";
  letter-spacing: 1.5px;
  padding-top: 3px;
}
.bannerArea .scrollDown span.line {
  width: 1px;
  height: 46px;
  background-color: #a6a6a3;
  overflow: hidden;
  position: absolute;
  top: calc(100% + 14px);
  left: calc(50% - 0.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: #272727;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .slick-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  width: 10px;
  margin: 0;
  top: 0;
  right: 50px;
}
.bannerArea .slick-dots li {
  width: 100%;
  height: 10px;
  margin: 5px 0;
}
.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 #7c9f4d;
  background-color: transparent;
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active button::before {
  border: 1px solid #7c9f4d;
  background-color: #7c9f4d;
  opacity: 1;
}

.serviceArea {
  padding: 120px 0 130px;
}
.serviceArea .titleBox {
  position: relative;
  text-align: left;
  padding-bottom: 38px;
  margin-bottom: 25px;
}
.serviceArea .titleBox::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 2px;
  background-color: #fff;
}
.serviceArea em {
  color: #fff;
  font-size: 18px;
  font-family: "STIX Two Text";
  text-transform: initial;
  letter-spacing: 0.5px;
}
.serviceArea h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}
.serviceArea p {
  color: #fff;
  line-height: 1.8;
  font-size: 17px;
  font-weight: 300;
  padding-bottom: 53px;
}
@media (max-width: 1200px) {
  .serviceArea {
    padding: 83px 0 106px;
  }
  .serviceArea .titleBox {
    padding-bottom: 24px;
    margin-bottom: 30px;
  }
  .serviceArea h2 {
    font-size: 30px;
    padding-top: 10px;
  }
}

.moduleArea {
  padding: 73px 0 80px;
}
@media (max-width: 1200px) {
  .moduleArea {
    padding: 51px 0 60px;
  }
}
.moduleArea .wrap {
  position: relative;
}
.moduleArea .titleBox {
  margin-bottom: 25px;
}
@media (max-width: 1200px) {
  .moduleArea .titleBox {
    margin-bottom: 23px;
  }
}
.moduleArea .infoBox {
  color: #878787;
  font-size: 17px;
  letter-spacing: 0.85px;
  line-height: 1.6;
  padding-bottom: 53px;
}
@media (max-width: 1200px) {
  .moduleArea .infoBox {
    padding-bottom: 40px;
  }
}
.moduleArea .moduleList {
  margin: 0 -12.5px;
}
.moduleArea .moduleList .moduleItem {
  padding: 0 12.5px;
}
@media (min-width: 1201px) {
  .moduleArea .moduleList .item:hover h3 {
    color: #7c9f4d;
  }
}
.moduleArea .moduleList .Txt {
  padding-top: 16px;
}
.moduleArea .moduleList h3 {
  display: block;
  color: #272727;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.4s;
}
.moduleArea .moduleList img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 640px) {
  .moduleArea .moduleList .Img {
    max-width: 252px;
    margin: 0 auto;
  }
}
.moduleArea .btn2 {
  padding-top: 61px;
}
.moduleArea .btn2 a {
  z-index: 2;
}
@media (max-width: 1200px) {
  .moduleArea .btn2 {
    padding-top: 41px;
  }
}
@media (max-width: 413px) {
  .moduleArea .btn2 a {
    width: 164px;
  }
}
.moduleArea .arrowBox {
  position: absolute;
  bottom: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1201px) {
  .moduleArea .arrowBox::before, .moduleArea .arrowBox::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    width: calc(50% - 215px);
    height: 1px;
    background-color: #e5e5e5;
  }
  .moduleArea .arrowBox::before {
    left: 20px;
  }
  .moduleArea .arrowBox::after {
    right: 20px;
  }
}
.moduleArea .arrowBox .arrow {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  transition: all 0.4s;
  cursor: pointer;
}
.moduleArea .arrowBox .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #7c9f4d;
  border-left: 1px solid #7c9f4d;
  transition: all 0.4s;
}
@media (min-width: 1201px) {
  .moduleArea .arrowBox .arrow:hover {
    background-color: #7c9f4d;
  }
  .moduleArea .arrowBox .arrow:hover::before {
    border-color: #fff;
  }
}
.moduleArea .arrowBox .arrowPrev {
  margin-right: 286px;
}
.moduleArea .arrowBox .arrowPrev::before {
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 413px) {
  .moduleArea .arrowBox .arrowPrev {
    margin-right: 200px;
  }
}
.moduleArea .arrowBox .arrowNext::before {
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.performanceAboutArea {
  background: url(../images/home/performance_bg_3.png) #f8f8f8 no-repeat bottom left;
}
@media (max-width: 1200px) {
  .performanceAboutArea {
    background: #f8f8f8;
  }
}
.performanceAboutArea .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1640px;
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 0 auto;
}
.performanceAboutArea .leftBox {
  position: relative;
  width: 41.46%;
}
.performanceAboutArea .leftBox .infoBox {
  position: relative;
  background-color: #f2f2f2;
  border-top: 1px solid #f8f8f8;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  padding: 46px 51px 67px;
}
.performanceAboutArea .leftBox .infoBox::after {
  content: url(../images/home/performance_bg_2.png);
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.performanceAboutArea .leftBox .infoBox .titleBox {
  text-align: left;
  margin-bottom: 25px;
}
.performanceAboutArea .leftBox .infoBox .titleBox::before {
  left: 0;
}
.performanceAboutArea .leftBox .infoBox .titleBox em {
  letter-spacing: 0.7px;
}
.performanceAboutArea .leftBox .infoBox .titleBox h2 {
  line-height: 1.4;
}
.performanceAboutArea .leftBox .infoBox p {
  color: #6d6d6d;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.8px;
}
@media (min-width: 1201px) {
  .performanceAboutArea .leftBox .infoBox::before {
    content: url(../images/home/performance_bg_1.png);
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
  }
}
@media (max-width: 1200px) {
  .performanceAboutArea .leftBox .infoBox {
    padding: 71px 25px 31px;
  }
  .performanceAboutArea .leftBox .infoBox::after {
    top: -8px;
    right: -4px;
  }
}
.performanceAboutArea .leftBox .listBox {
  border-left: 1px solid #e5e5e5;
}
.performanceAboutArea .leftBox .performanceList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.performanceAboutArea .leftBox .performanceList .performanceItem {
  width: calc(100% / 3);
  padding: 26px 20px 44px;
  border-right: 1px solid #e5e5e5;
}
.performanceAboutArea .leftBox .performanceList .performanceItem:nth-child(1), .performanceAboutArea .leftBox .performanceList .performanceItem:nth-child(2), .performanceAboutArea .leftBox .performanceList .performanceItem:nth-child(3) {
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 1200px) {
  .performanceAboutArea .leftBox .performanceList .performanceItem {
    padding: 16px 20px 30px;
  }
}
@media (max-width: 480px) {
  .performanceAboutArea .leftBox .performanceList .performanceItem {
    width: 50%;
  }
  .performanceAboutArea .leftBox .performanceList .performanceItem:nth-child(even) {
    border-right: none;
  }
  .performanceAboutArea .leftBox .performanceList .performanceItem:nth-child(4) {
    border-bottom: 1px solid #e5e5e5;
  }
}
@media (min-width: 481px) {
  .performanceAboutArea .leftBox .performanceList .performanceItem:nth-child(3), .performanceAboutArea .leftBox .performanceList .performanceItem:nth-child(6) {
    border-right: none;
  }
}
.performanceAboutArea .leftBox .performanceList .Txt {
  text-align: center;
}
.performanceAboutArea .leftBox .performanceList em {
  color: #7c9f4d;
  font-size: 50px;
  font-weight: 300;
  font-family: "Barlow";
}
.performanceAboutArea .leftBox .performanceList h3 {
  color: #272727;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
  padding-top: 2px;
}
@media (max-width: 1200px) {
  .performanceAboutArea .leftBox {
    width: 100%;
    -ms-flex-order: 2;
        order: 2;
  }
}
.performanceAboutArea .rightBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  width: 58.54%;
  padding: 0 65px;
}
@media (max-width: 1200px) {
  .performanceAboutArea .rightBox {
    width: 100%;
    -ms-flex-order: 1;
        order: 1;
    padding: 83px 25px 20px;
  }
}
.performanceAboutArea .rightBox .Txt {
  padding: 14px 0;
}
@media (max-width: 1200px) {
  .performanceAboutArea .rightBox .Txt {
    padding: 0 0 17px;
  }
}
.performanceAboutArea .rightBox .titleBox {
  padding-bottom: 30px;
  margin-bottom: 22px;
}
.performanceAboutArea .rightBox .titleBox::before {
  background-color: #fff;
}
.performanceAboutArea .rightBox .titleBox em {
  color: #fff;
}
.performanceAboutArea .rightBox .titleBox h2 {
  color: #fff;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .performanceAboutArea .rightBox .titleBox {
    padding-bottom: 28px;
  }
  .performanceAboutArea .rightBox .titleBox h2 {
    padding-top: 2px;
  }
}
.performanceAboutArea .rightBox p {
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
.performanceAboutArea .rightBox .btn1 {
  width: 230px;
  margin: 30px 0 75px;
}
.performanceAboutArea .rightBox .btn1 a {
  width: 100%;
}
.performanceAboutArea .titleBox {
  text-align: left;
}
.performanceAboutArea .titleBox::before {
  left: 0;
}

.newsArea {
  padding: 70px 0 81px;
}
@media (max-width: 1200px) {
  .newsArea {
    padding: 70px 0 60px;
  }
}
.newsArea .newsBox {
  position: relative;
}
@media (min-width: 1200px) {
  .newsArea .titleBox {
    margin-bottom: 45px;
  }
}
.newsArea .newsList {
  margin: 0 -15px;
}
.newsArea .newsItem {
  padding: 15px;
  overflow: initial;
}
.newsArea .item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
}
@media (min-width: 1201px) {
  .newsArea .item:hover .Img::before {
    top: 50%;
  }
  .newsArea .item:hover img {
    opacity: 0.3;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.newsArea .Img {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.newsArea .Img:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -30px;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 99;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  font-family: FontAwesome;
  text-align: center;
  background-color: #7c9f4d;
  transition: all 0.4s ease;
}
.newsArea .Img img {
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
}
.newsArea .Txt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: #fff;
  padding: 23px 30px 30px;
}
.newsArea .date {
  color: rgba(47, 47, 47, 0.6);
  font-size: 18px;
  font-family: "STIX Two Text";
  letter-spacing: 0.5px;
}
.newsArea .newIcon {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #7c9f4d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
}
.newsArea .newIcon::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(100% + 9px);
  width: 30px;
  height: 2px;
  background-color: #7c9f4d;
}
.newsArea h3 {
  width: 100%;
  height: 28px;
  margin: 15px 0 5px;
}
.newsArea h3 a {
  color: #272727;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.newsArea p {
  width: 100%;
  height: 78px;
  color: #6d6d6d;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.8px;
}
.newsArea .btn2 {
  padding-top: 43px;
}
.newsArea .btn2 a {
  z-index: 2;
}
@media (max-width: 413px) {
  .newsArea .btn2 a {
    width: 164px;
  }
}
.newsArea .arrowBox {
  position: absolute;
  bottom: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1201px) {
  .newsArea .arrowBox::before, .newsArea .arrowBox::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    width: calc(50% - 215px);
    height: 1px;
    background-color: #e5e5e5;
  }
  .newsArea .arrowBox::before {
    left: 20px;
  }
  .newsArea .arrowBox::after {
    right: 20px;
  }
}
.newsArea .arrowBox .arrow {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  transition: all 0.4s;
  cursor: pointer;
}
.newsArea .arrowBox .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #7c9f4d;
  border-left: 1px solid #7c9f4d;
  transition: all 0.4s;
}
@media (min-width: 1201px) {
  .newsArea .arrowBox .arrow:hover {
    background-color: #7c9f4d;
  }
  .newsArea .arrowBox .arrow:hover::before {
    border-color: #fff;
  }
}
.newsArea .arrowBox .arrowPrev {
  margin-right: 286px;
}
.newsArea .arrowBox .arrowPrev::before {
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 413px) {
  .newsArea .arrowBox .arrowPrev {
    margin-right: 200px;
  }
}
.newsArea .arrowBox .arrowNext::before {
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.newsArea img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}