.relationMArea.sideDataArea .arrowBox .arrow, .reportList .item, .downloadBtn .icon, .downloadBtn .btnText {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mainArea {
  overflow: hidden;
}
.mainArea .wrap {
  max-width: 1500px;
}
.mainArea:not(.show) {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.mainArea.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.4s 0.1s ease-out;
  transition: all 0.4s 0.1s ease-out;
}

.bannerArea:not(.show) .bannerBox {
  opacity: 0;
}
.bannerArea.show .bannerBox {
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

/*banner*/
.bannerArea {
  clear: both;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bannerArea .wrap {
  max-width: 100%;
  padding: 0;
}
.bannerArea .bannerBox img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.bannerArea .bannerItem {
  position: relative;
}
.bannerArea .bannerLink {
  display: block;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .bannerArea .Img {
    height: 280px;
  }
  .bannerArea .Img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 400px) {
  .bannerArea .Img {
    height: 250px;
  }
}
.bannerArea .Txt {
  width: 100%;
  height: 100%;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.bannerArea .Txt .wrap {
  max-width: 1450px;
  padding: 0 25px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bannerArea .Txt .title {
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 1px;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .title {
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .bannerArea .Txt .title {
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .bannerArea .Txt .title {
    font-size: 24px;
  }
}
.bannerArea .Txt .subtitle {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  line-gap-override: 1.5;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .bannerArea .Txt .subtitle {
    font-size: 16px;
  }
}

.classNote {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.sdgsList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0px 20px;
}
.sdgsList li {
  max-width: 60px;
  text-align: center;
}
.sdgsList li + li {
  margin-left: 7px;
}
.sdgsList li img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.downloadBtn {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.downloadBtn .btn {
  width: 212px;
  background-color: #f0f0f0;
  border-radius: 25px;
  padding: 15px 60px 15px 20px;
  position: relative;
}
@media (min-width: 1181px) {
  .downloadBtn .btn:hover .btnText {
    color: #fff;
  }
  .downloadBtn .btn:hover .icon {
    width: calc(100% - 14px);
  }
}
@media (max-width: 1180px) {
  .downloadBtn .btn {
    width: 200px;
    padding: 10px 50px 10px 20px;
  }
}
.downloadBtn span {
  display: block;
}
.downloadBtn .btnText {
  color: #004300;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 20px;
  position: relative;
  z-index: 3;
}
.downloadBtn .icon {
  width: 40px;
  height: 40px;
  background-color: #216301;
  border-radius: 25px;
  position: absolute;
  top: 5px;
  right: 7px;
  z-index: 1;
}
@media (max-width: 1180px) {
  .downloadBtn .icon {
    width: 30px;
    height: 30px;
  }
}
.downloadBtn .arrow {
  width: 100%;
  height: 100%;
  max-width: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.downloadBtn .arrow::before {
  content: "";
  width: 2px;
  height: 14px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.downloadBtn .arrow::after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
@media (max-width: 1180px) {
  .downloadBtn .arrow {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

.bannerArea .Txt .wrap {
  max-width: 1500px;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
.bannerArea .Txt .exp {
  width: 50%;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .exp {
    width: 100%;
  }
}
.bannerArea .Txt .downloadBox {
  margin-left: auto;
  padding-right: 130px;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .downloadBox {
    padding-right: 0px;
    margin: 0;
  }
  .bannerArea .Txt .downloadBox .downloadBtn {
    margin: 10px 0 0;
  }
}
@media (max-width: 768px) {
  .bannerArea .Txt .downloadBox .downloadBtn {
    margin: 5px 0 0;
  }
}

.reportArea {
  padding: 68px 0 35px;
}

.reportList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -25px;
}
@media (max-width: 1180px) {
  .reportList {
    margin: 0 -20px;
  }
}
.reportList .reportItem {
  width: 33.3333333333%;
  padding: 0 25px 45px;
}
@media (max-width: 1180px) {
  .reportList .reportItem {
    width: 50%;
    padding: 0 20px 40px;
  }
}
@media (max-width: 768px) {
  .reportList .reportItem {
    width: 100%;
    padding: 0 20px 30px;
  }
}
.reportList .item {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(139, 108, 108, 0.19);
          box-shadow: 0px 0px 16px 0px rgba(139, 108, 108, 0.19);
}
@media (max-width: 768px) {
  .reportList .item {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (min-width: 1181px) {
  .reportList .item:hover {
    -webkit-box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.3);
  }
  .reportList .item:hover .Txt .title a {
    color: #216301;
  }
}
.reportList .Img {
  width: 100%;
}
.reportList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.reportList .Txt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 26px 18px 40px;
  min-height: 76px;
}
@media (max-width: 1440px) {
  .reportList .Txt {
    padding: 15px 15px 18px 20px;
  }
}
.reportList .Txt .title {
  max-height: 30px;
  max-width: calc(100% - 40px);
}
.reportList .Txt .title a {
  display: inline-block;
  color: #424242;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 1.25;
}
@media (min-width: 1181px) {
  .reportList .Txt .title a:hover {
    color: #216301;
  }
}
@media (max-width: 1440px) {
  .reportList .Txt .title a {
    font-size: 22px;
  }
}
@media (max-width: 1180px) {
  .reportList .Txt .title a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .reportList .Txt .title a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .reportList .Txt .title {
    max-height: 46px;
    margin-bottom: 5px;
  }
}
.reportList .Txt .downloadBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
.reportList .Txt .downloadBox .btn {
  width: 40px;
  height: 40px;
  background-color: #216301;
  border-radius: 50%;
  color: #fff;
  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;
  padding: 10px;
}
@media (min-width: 1181px) {
  .reportList .Txt .downloadBox .btn:hover {
    background-color: #5d6266;
  }
}
.reportList .Txt .downloadBox .btn .icon {
  width: 23px;
  height: 21px;
  display: block;
  color: #fff;
  position: relative;
  top: -2px;
}
.reportList .Txt .sdgsBox {
  width: 100%;
  padding: 10px 0 0;
}
.reportList .Txt .sdgsBox .sdgsList {
  margin-top: 0;
  margin-bottom: 0;
}
.reportList .Txt .sdgsBox .sdgsList li {
  max-width: 80px;
  margin-bottom: 0;
}

.relationMArea.sideDataArea {
  padding: 55px 0;
}
@media (max-width: 1180px) {
  .relationMArea.sideDataArea {
    padding: 55px 0 35px;
  }
}
@media (max-width: 768px) {
  .relationMArea.sideDataArea {
    padding: 35px 0;
  }
}
.relationMArea.sideDataArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1180px) {
  .relationMArea.sideDataArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.relationMArea.sideDataArea .wrap > .titleBox {
  width: 480px;
  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;
  padding-right: 135px;
  padding-top: 5px;
}
.relationMArea.sideDataArea .wrap > .titleBox .text {
  margin-top: 6px;
}
.relationMArea.sideDataArea .wrap > .titleBox .titleBottomBox {
  margin-top: auto;
}
@media (max-width: 1480px) {
  .relationMArea.sideDataArea .wrap > .titleBox {
    width: 400px;
    padding-right: 20px;
  }
}
@media (max-width: 1180px) {
  .relationMArea.sideDataArea .wrap > .titleBox {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.relationMArea.sideDataArea .newsBox {
  width: calc(100% - 480px);
}
@media (max-width: 1480px) {
  .relationMArea.sideDataArea .newsBox {
    width: calc(100% - 400px);
    padding-left: 0;
  }
}
@media (max-width: 1180px) {
  .relationMArea.sideDataArea .newsBox {
    width: 100%;
  }
}
.relationMArea.sideDataArea .newsList {
  width: 100%;
  margin: 0;
}
@media (max-width: 1180px) {
  .relationMArea.sideDataArea .newsList {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
}
@media (max-width: 640px) {
  .relationMArea.sideDataArea .newsList {
    width: 100%;
    margin: 0;
  }
}
.relationMArea.sideDataArea .controlBox {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1180px) {
  .relationMArea.sideDataArea .controlBox {
    display: none;
  }
}
.relationMArea.sideDataArea .numBox {
  border-color: #1d1d1d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  line-height: 20px;
  padding-left: 30px;
}
.relationMArea.sideDataArea .numBox .totalNum {
  padding-left: 5px;
  position: relative;
}
.relationMArea.sideDataArea .numBox .totalNum::before {
  content: "/";
  padding-right: 5px;
}
.relationMArea.sideDataArea .arrowBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.relationMArea.sideDataArea .arrowBox .arrow {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.relationMArea.sideDataArea .arrowBox .arrow + .arrow {
  margin-left: 13px;
}
.relationMArea.sideDataArea .arrowBox .arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-left: none;
  border-bottom: none;
  display: block;
  margin: 0;
  position: absolute;
  top: calc(50% - 4.5px);
  left: calc(50% - 5.5px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.relationMArea.sideDataArea .arrowBox .arrow.arrowPrev::before {
  left: calc(50% - 3.5px);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media (min-width: 1181px) {
  .relationMArea.sideDataArea .arrowBox .arrow:hover {
    border-color: #000;
    background-color: transparent;
  }
}

.introBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 113px 0 0px;
}
@media (max-width: 1180px) {
  .introBox {
    padding: 60px 0 20px;
  }
  .introBox .downloadBtn {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .introBox {
    padding: 20px 0 20px;
  }
}
.introBox .sdgsList {
  padding-right: 20px;
}
.introBox .sdgsList li {
  max-width: 86px;
}
.introBox .sdgsList li + li {
  margin-left: 22px;
}
@media (max-width: 1180px) {
  .introBox .sdgsList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .introBox .sdgsList li {
    max-width: 80px;
    margin: 0 10px 10px 0;
  }
  .introBox .sdgsList li + li {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .introBox .sdgsList li {
    max-width: 70px;
  }
}

.sideDataArea {
  padding: 110px 0 40px;
}
.sideDataArea .newsBox {
  padding-top: 30px;
}
.sideDataArea .newsList {
  margin: 0 -20px;
}
@media (max-width: 1180px) {
  .sideDataArea {
    padding-top: 80px;
  }
}