@charset "UTF-8";
/*
-----------------------------------
  1. 共用元件
  2. 右側快捷列
  3. 輪播圖
  4. 共用section
  5. 新聞section
  6. 訊息公告section
  7. 活動影音&活動照片section
  8. 便民服務section
  9. 進出口貿易統計section
  10.主題專區section
-----------------------------------
*/
/*===============================
  共用元件
================================*/
.button-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6875rem 2rem;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  color: var(--textBlack);
  background-color: transparent;
  border-radius: 1000px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.button-more .icon {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  line-height: 1;
}

.button-more-default {
  border-color: var(--border_hover);
  background-color: #fff;
}
.button-more-default:hover {
  background-color: var(--border_hover);
}

.button-more-primary {
  color: #fff;
  border-color: var(--primaryColor);
  background-color: var(--primaryColor);
}
.button-more-primary:hover {
  border-color: var(--primaryColor_hover);
  background-color: var(--primaryColor_hover);
}

.button-more-secondary {
  border-color: var(--textBlack);
}
.button-more-secondary::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/icon/arrowright_fill_darkgray.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.button-more-secondary:hover {
  background-color: var(--textBlack);
  color: #fff;
}
.button-more-secondary:hover::after {
  background-image: url(../images/icon/arrowright_fill_white.png);
}

.button-more-tertiary {
  border-color: #fff;
  color: #fff;
}
.button-more-tertiary::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/icon/arrowright_border_white.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.button-more-tertiary:hover {
  background-color: #fff;
  color: var(--primaryColor_hover);
}
.button-more-tertiary:hover::after {
  background-image: url(../images/icon/arrowright_fill_green.png);
}

/*===============================
  右側快捷列
================================*/
.aside-guide {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}
.aside-guide.aside-initialized {
  visibility: visible !important;
  opacity: 1;
}
.aside-guide .aside-group ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.aside-guide .aside-group ul li {
  position: relative;
}
.aside-guide .aside-group ul li a {
  display: block;
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 0 4px 0 rgba(33, 33, 33, 0.25);
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.3s;
}
.aside-guide .aside-group ul li a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.aside-guide .aside-group ul li a:focus {
  background-image: var(--primaryLinear);
  outline: 2px dashed var(--tertiary_yellow);
  outline-offset: -2px;
}
.aside-guide .aside-group ul li:hover:not(.chatbotPage):not(.goTop) a {
  background-image: var(--primaryLinear);
}
.aside-guide .aside-group ul li.active a {
  background-image: var(--primaryLinear);
}
.aside-guide .aside-group ul li .tooltip {
  display: block;
  padding: 0.125rem 0.9375rem;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 2px;
  background-image: var(--primaryLinear);
  position: absolute;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
}
.aside-guide .aside-group ul li .tooltip::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #194294;
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}
.aside-guide .aside-group ul li.tooltip-box .tooltip {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
}
.aside-guide .aside-group ul li.tooltip-box:hover .tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.aside-guide .aside-group ul li.chatbotPage a {
  padding: 0;
  padding-top: 6px;
}
.aside-guide .aside-group ul li.chatbotPage a:focus {
  background-image: none;
  outline-color: var(--brown100);
}
.aside-guide .aside-group ul li.goTop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px;
  background-color: var(--primaryColor);
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.aside-guide .aside-group ul li.goTop a::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../images/gotop.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}
.aside-guide .aside-group ul li.goTop a:focus {
  background-image: none;
}

@media screen and (max-width: 767px) {
  .aside-guide {
    top: inherit;
    bottom: 128px;
    right: 1rem;
    transform: translateY(0);
  }
  .aside-guide ul li {
    display: none;
  }
  .aside-guide ul li.chatbotPage {
    display: block;
  }
}
/*===============================
  輪播圖
================================*/
.banner-carousel {
  width: 100%;
}
.banner-carousel .banner-inner {
  position: relative;
}
.banner-carousel .banner-inner .control {
  width: 190px;
  height: 44px;
  padding: 0 1rem;
  background-image: var(--primaryLinear);
  border: 1px solid #fff;
  border-radius: 1000px;
  box-sizing: border-box;
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
}
.banner-carousel .banner-inner .control .btn-pause {
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(-70px);
  cursor: pointer;
}
.banner-carousel .banner-inner .control .btn-pause img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner-carousel .banner-inner .control .btn-pause:focus {
  outline-color: var(--tertiary_yellow);
}
.banner-carousel .banner-inner .pages {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.125rem;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(20px);
}
.banner-carousel .banner-inner .banner-items {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}
.banner-carousel .banner-inner .banner-items.slick-initialized {
  visibility: visible;
  opacity: 1;
}
.banner-carousel .banner-inner .slick-arrow {
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 0;
  background-color: transparent;
  white-space: nowrap;
  text-indent: 150%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
  z-index: 6;
  cursor: pointer;
}
.banner-carousel .banner-inner .slick-arrow.slick-prev {
  background-image: url(../images/icon/left_arrow_white.png);
  transform: translateX(-24px);
}
.banner-carousel .banner-inner .slick-arrow.slick-next {
  background-image: url(../images/icon/right_arrow_white.png);
  transform: translateX(64px);
}
.banner-carousel .banner-inner .slick-arrow:focus {
  outline-color: var(--tertiary_yellow);
}
.banner-carousel .banner-inner .banner-item {
  display: block !important;
}
.banner-carousel .banner-inner .banner-item a {
  display: block;
  width: 100%;
  padding-bottom: 36.458%;
  position: relative;
  line-height: 1;
  box-sizing: border-box;
}
.banner-carousel .banner-inner .banner-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.banner-carousel .banner-inner .banner-item a:focus {
  outline: 2px dashed var(--tertiary_yellow);
  outline-offset: -2px;
  border: 2px solid transparent;
}

@media screen and (max-width: 1199px) {
  .banner-carousel {
    margin-top: 62px;
  }
}
/*===============================
  共用section
================================*/
.section {
  padding: 0 1rem;
  box-sizing: border-box;
}

.section-head {
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  color: var(--textBlack);
  text-align: center;
  text-wrap: balance;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.section-head h2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.section-head .en {
  background-image: var(--primaryLinear);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 30px;
  height: 19px;
  background-image: url(../images/homepage/decorate_left.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.section-head::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 30px;
  height: 19px;
  background-image: url(../images/homepage/decorate_right.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.section-body {
  display: flex;
  justify-content: center;
}

.section-footer {
  display: flex;
  justify-content: center;
}

/*===============================
  新聞section
================================*/
.news-section {
  padding-top: 4.375rem;
  padding-bottom: 2.5rem;
  background-image: url(../images/homepage/news_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.news-container {
  padding-top: 4.75rem;
}

.news-item {
  width: 100%;
  max-width: 1360px;
  box-shadow: 0 0 8px 0 rgba(187, 181, 255, 0.5);
  border: solid 1px var(--purple200);
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 5.75rem;
  position: relative;
  left: -33px;
}
.news-item::before {
  content: "";
  display: block;
  width: 109px;
  height: 109px;
  background-image: url(../images/homepage/news_decorate_purple.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -65px;
  left: -81px;
  z-index: -1;
}
.news-item::after {
  content: "";
  display: block;
  width: 231px;
  height: 155px;
  background-image: url(../images/homepage/news_decorate_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -79px;
  right: -185px;
  z-index: -1;
}
.news-item > a {
  display: block;
  min-height: 17.875rem;
  padding: 1.25rem 1.625rem 1.875rem;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
}
.news-item .news-img {
  width: 488px;
  height: 276px;
  position: absolute;
  top: -1.625rem;
  left: -2.625rem;
}
.news-item .news-img .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news-item .news-img .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s;
}
.news-item .news-img::after {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  background-color: #baebda;
  position: absolute;
  bottom: -18px;
  right: -18px;
}
.news-item .news-caption {
  margin-left: calc(488px - 2.625rem);
}
.news-item .news-caption .header {
  width: calc(100% + 4.5rem);
  min-height: 3.5rem;
  background-color: #dcd9ff;
  padding: 0.25rem 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  transform: translateX(-4.5rem);
  z-index: 1;
}
.news-item .news-caption .header h3 {
  text-decoration: none;
  font-size: 1.375rem;
  font-weight: bold;
  color: var(--textBlack);
}
.news-item .news-caption .body {
  margin-top: 1.25rem;
}
.news-item .news-caption .body .paragraph {
  color: var(--textBlack);
  font-size: 1.125rem;
  line-height: 1.67;
  letter-spacing: 0.18px;
  text-decoration: underline;
  text-decoration-color: transparent;
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.news-item .news-caption .body .date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  color: var(--textBlack);
  font-weight: bold;
  margin-bottom: 1.25rem;
}
.news-item .news-caption .body .date::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/icon/times.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.news-item .news-caption .body .buttons {
  display: flex;
  justify-content: flex-end;
}
.news-item > a:hover .news-img .img-box img {
  transform: scale(1.2);
}
.news-item > a:hover .news-caption .body .paragraph {
  text-decoration-color: var(--textBlack);
}
.news-item:nth-child(2) {
  box-shadow: 0 0 8px 0 rgba(113, 215, 180, 0.5);
  border: solid 1px var(--green100);
  margin-bottom: 2rem;
  left: inherit;
  right: -33px;
}
.news-item:nth-child(2)::after {
  content: "";
  display: block;
  width: 109px;
  height: 109px;
  background-image: url(../images/homepage/news_decorate_green.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -65px;
  right: -81px;
}
.news-item:nth-child(2)::before {
  content: "";
  display: block;
  width: 231px;
  height: 155px;
  background-image: url(../images/homepage/news_decorate_left.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -79px;
  left: -185px;
  z-index: -1;
}
.news-item:nth-child(2) .news-img {
  left: inherit;
  right: -2.625rem;
}
.news-item:nth-child(2) .news-img::after {
  background-color: #c3bdff;
  left: -18px;
}
.news-item:nth-child(2) .news-caption {
  margin-left: 0;
  margin-right: calc(488px - 2.625rem);
}
.news-item:nth-child(2) .news-caption .header {
  background-color: var(--green500);
  transform: translateX(0);
}
.news-item:nth-child(2) .news-caption .body .date {
  justify-content: flex-end;
}
.news-item:nth-child(2) .news-caption .body .buttons {
  justify-content: flex-start;
}

@media screen and (max-width: 1440px) {
  .news-section {
    padding-right: 3.625rem;
    padding-left: 3.625rem;
  }
  .news-item {
    left: 0 !important;
    right: 0 !important;
  }
}
@media screen and (max-width: 992px) {
  .news-item .news-img {
    max-width: 488px;
    width: 50%;
    height: auto;
  }
  .news-item .news-img .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 56.55%;
  }
  .news-item .news-img .img-box img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .news-item .news-caption {
    margin-left: calc(50% - 2.625rem + 1.25rem);
  }
  .news-item:nth-child(2) .news-caption {
    margin-right: calc(50% - 2.625rem + 1.25rem);
  }
}
@media screen and (max-width: 767px) {
  .news-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .news-container {
    padding-top: 2rem;
  }
  .news-item {
    margin-bottom: 2.125rem;
  }
  .news-item::before, .news-item::after {
    display: none !important;
  }
  .news-item a {
    padding: 0;
  }
  .news-item .news-img {
    width: 100%;
    max-width: 100%;
    position: relative;
    top: inherit;
    left: inherit !important;
    right: inherit !important;
  }
  .news-item .news-img::after {
    display: none;
  }
  .news-item .news-caption {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1rem;
  }
  .news-item .news-caption .header {
    width: 100%;
    min-height: auto;
    transform: translateX(0);
    background-color: #fff !important;
    padding: 0;
  }
  .news-item .news-caption .body .date {
    margin-bottom: 1rem;
    justify-content: flex-start !important;
  }
  .news-item .news-caption .body .buttons {
    justify-content: center !important;
  }
}
/*===============================
  訊息公告section
================================*/
.announcement-section {
  padding-top: 5.5rem;
  padding-bottom: 10rem;
  background-color: var(--GreenBg);
  background-image: url(../images/homepage/announcement_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
}
.announcement-section .section-footer {
  padding-top: 2rem;
}

.announcement-container {
  padding-top: 2rem;
  padding-left: calc(48px + 0.625rem);
  padding-right: calc(48px + 0.625rem);
  max-width: 1460px;
  width: 100%;
  box-sizing: border-box;
}

.announcement-carousel {
  position: relative;
}
.announcement-carousel::before {
  content: "";
  display: block;
  width: 302px;
  height: 180px;
  background-image: url(../images/homepage/announcement_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: calc(100% - 0.625rem);
  right: 0;
}

.announcement-items {
  position: relative;
}

.announcement-item {
  padding: 0.625rem;
  box-sizing: border-box;
}
.announcement-item > a {
  display: block;
  width: 100%;
  height: 17.4375rem;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--textBlack);
  border-radius: 16px;
  box-shadow: 0 4px 8px 0 #9ca4a2;
  background-color: var(--purple500);
  background-image: url(../images/homepage/announcement_item_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: border-box;
}
.announcement-item:nth-child(even) > a {
  background-color: var(--blue100);
}
.announcement-item .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
  position: relative;
}
.announcement-item .header::after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  background-color: var(--border_green);
  position: absolute;
  bottom: 0;
  left: 0;
}
.announcement-item .header .date {
  display: flex;
  align-items: center;
}
.announcement-item .header .date .year {
  font-size: 1.25rem;
  font-weight: bold;
  padding-right: 0.375rem;
}
.announcement-item .header .date .day {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  padding-left: 0.375rem;
  border-left: 1px solid var(--textBlack);
}
.announcement-item .header .badge {
  width: 2rem;
  height: 2rem;
}
.announcement-item .header .badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.announcement-item .body {
  margin-bottom: 1.25rem;
  min-height: 6.25rem;
}
.announcement-item .body .paragraph {
  font-size: 1.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s;
}
.announcement-item > a:hover .body .paragraph {
  text-decoration-color: var(--textBlack);
}
.announcement-item .buttons {
  display: flex;
  justify-content: center;
}

.announcement-items .slick-slide .icon {
  display: inline-flex;
}
.announcement-items .slick-slide:nth-child(even) .announcement-item > a {
  background-color: var(--blue100);
}

.announcement-carousel .slick-arrow {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: 0;
  padding: 0;
  border-radius: 50%;
  white-space: nowrap;
  text-indent: 101%;
  overflow: hidden;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.announcement-carousel .slick-arrow.slick-prev {
  background-image: url(../images/icon/arrowleft_lightgreen.png);
  left: calc(-48px - 0.625rem);
}
.announcement-carousel .slick-arrow.slick-next {
  background-image: url(../images/icon/arrowright_lightgreen.png);
  right: calc(-48px - 0.625rem);
}

.tab-pane-announcement .tab-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}

@media screen and (max-width: 1024px) {
  .announcement-carousel::before {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .announcement-section {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .announcement-container {
    padding-left: 0;
    padding-right: 0;
  }
  .announcement-carousel .slick-arrow.slick-prev {
    left: -12px;
  }
  .announcement-carousel .slick-arrow.slick-next {
    right: -12px;
  }
}
/*===============================
  活動影音&活動照片section
================================*/
.activity-sections {
  width: 100%;
  margin-top: -5rem;
  position: relative;
}

.activity-video-section {
  width: 50%;
  background-image: url(../images/homepage/video_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  padding: 3.75rem 1rem;
  padding-right: 7.5rem;
  box-sizing: border-box;
  position: relative;
}
.activity-video-section .section-head {
  color: #fff;
}
.activity-video-section .section-head .en {
  color: #fff;
  background-image: none;
  -webkit-text-fill-color: #fff;
}
.activity-video-section::before {
  content: "";
  display: block;
  width: 6%;
  height: 34px;
  background-color: #203f6a;
  -webkit-clip-path: polygon(100% 0, 100% 0, 95% 100%, 0% 100%);
          clip-path: polygon(100% 0, 100% 0, 95% 100%, 0% 100%);
  position: absolute;
  top: 0;
  right: 0;
}

.activity-video-container {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  width: 100%;
  max-width: 710px;
  height: 0;
  padding-bottom: 51.83%;
  position: relative;
}
.activity-video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.activity-photo-section {
  width: 60%;
  padding: 3.5rem 1rem 3rem 1rem;
  position: absolute;
  box-sizing: border-box;
  margin-top: 34px;
  right: 0;
  top: 0;
  transform: perspective(0) translate(0) scale(1);
  transform-style: flat;
}
.activity-photo-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-image: url(../images/homepage/activity_photos_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.activity-photo-container {
  width: 100%;
  margin-top: 3.75rem;
  margin-bottom: 2rem;
  padding-left: 10%;
  box-sizing: border-box;
}

.activity-photo-items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-photo-item {
  width: 30%;
  max-width: 285px;
  transition: all 0.5s;
  transform: perspective(0);
}
.activity-photo-item > a {
  display: block;
  padding: 1.25vw;
  background-color: #fff;
  color: var(--textBlack);
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(220, 220, 220, 0.25);
  border: solid 1px var(--gray1100);
  box-sizing: border-box;
  text-decoration: none;
}
.activity-photo-item .activity-photo-img {
  width: 100%;
  height: 0;
  padding-bottom: 65.5%;
  margin-bottom: 1.5vw;
  position: relative;
  overflow: hidden;
}
.activity-photo-item .activity-photo-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s;
}
.activity-photo-item .activity-photo-caption {
  width: 100%;
}
.activity-photo-item .activity-photo-caption .body {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.activity-photo-item .activity-photo-caption .body .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.activity-photo-item .activity-photo-caption .body .paragraph {
  font-size: 1.125rem;
  color: var(--textBlack);
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s;
}
.activity-photo-item:first-child {
  transform: rotate(-15deg) scale(1) perspective(0);
}
.activity-photo-item:nth-child(2) {
  transform: rotate(-2deg) translateY(-20px) scale(1) perspective(0);
}
.activity-photo-item:nth-child(3) {
  transform: rotate(15deg) translateY(5px) scale(1) perspective(0);
}
.activity-photo-item:hover:first-child {
  transform: rotate(0deg) scale(1.1) perspective(0);
  z-index: 1;
}
.activity-photo-item:hover:nth-child(2) {
  transform: rotate(0deg) translateY(-20px) scale(1.1) perspective(0);
  z-index: 1;
}
.activity-photo-item:hover:nth-child(3) {
  transform: rotate(0deg) translateY(5px) scale(1.1) perspective(0);
  z-index: 1;
}
.activity-photo-item:hover .activity-photo-caption .body .paragraph {
  text-decoration-color: var(--textBlack);
}

@media screen and (max-width: 992px) {
  .activity-sections {
    margin-top: 0;
  }
  .activity-video-section {
    width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
    padding: 3.5rem 1rem;
  }
  .activity-video-section::before {
    display: none;
  }
  .activity-photo-section {
    width: 100%;
    margin-top: 0;
    position: relative;
    top: inherit;
    right: inherit;
  }
  .activity-photo-section::before {
    -webkit-clip-path: none;
            clip-path: none;
  }
  .activity-photo-container {
    margin: 2.5rem 0;
    padding-left: 0;
  }
  .activity-photo-item {
    width: 100%;
    max-width: 266px;
    transform: rotate(0deg) translateY(0px) scale(1) !important;
  }
  .activity-photo-item:nth-child(2), .activity-photo-item:nth-child(3) {
    transform: rotate(0deg) translateY(0px) scale(1);
    display: none;
  }
  .activity-photo-item > a {
    padding: 1.25rem;
  }
  .activity-photo-item .activity-photo-img {
    margin-bottom: 1.5rem;
  }
}
/*===============================
  便民服務section
================================*/
.services-section {
  padding-top: 11vw;
  padding-bottom: 7.75rem;
  background-image: url(../images/homepage/services_bg.png), linear-gradient(to right, #0093d2 0%, #68bdf2 51%, #b7cbf1 98%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100% 100%;
  margin-top: -5vw;
}
.services-section .section-head {
  color: #000;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
}
.services-section .section-head .en {
  background-image: none;
  background-clip: inherit;
  -webkit-text-fill-color: #000;
}
.services-section .section-head::before {
  background-image: url(../images/homepage/decorate_blue_left.png);
}
.services-section .section-head::after {
  background-image: url(../images/homepage/decorate_blue_right.png);
}

.services-container {
  margin: auto;
  margin-top: 3.5rem;
  max-width: 1200px;
}

.services-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.125rem;
}

.services-item {
  width: 14rem;
  height: 14rem;
  position: relative;
  overflow: hidden;
}
.services-item > a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: var(--gray100);
}
.services-item > a:focus {
  outline-offset: -2px;
}
.services-item .services-img {
  width: 10rem;
  height: 10rem;
  background-image: url(../images/homepage/service_circle_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0.625rem;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.services-item .services-img img {
  width: 100%;
  height: 100%;
  padding: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
  box-sizing: border-box;
}
.services-item .services-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
  background-color: transparent;
  border-radius: 10px;
  box-sizing: border-box;
  position: absolute;
  top: 10.5rem;
  transition: all 0.5s;
}
.services-item .services-caption .head {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
}
.services-item .services-caption .body {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.services-item:hover .services-caption {
  justify-content: center;
  background-color: var(--gray200);
  position: absolute;
  transform: translateY(-10.5rem);
}
.services-item:hover .services-caption .head {
  color: #fff;
  margin-bottom: 0.5rem;
}
.services-item:hover .services-caption .body {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .services-section {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-image: linear-gradient(to bottom, #73bff2 2%, #b7cbf1);
  }
  .services-items {
    gap: 1.25rem;
  }
  .services-item {
    width: 10rem;
    height: 14.25rem;
  }
  .services-item .services-img {
    width: 8.75rem;
    height: 8.75rem;
  }
  .services-item .services-img img {
    padding: 1.25rem;
  }
  .services-item .services-caption {
    padding: 0 0.625rem;
    top: 9rem;
  }
  .services-item:hover .services-caption {
    transform: translateY(-9rem);
  }
}
/*===============================
  進出口貿易統計section
================================*/
.statistic-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url(../images/homepage/dot_bg.png), url(../images/homepage/Trade_Statistics_EN_bg.png), linear-gradient(to bottom, rgb(255, 254, 244), rgba(232, 253, 253, 0.8));
  background-repeat: repeat, no-repeat;
  background-size: 20px, contain;
}

.statistic-container {
  max-width: 1200px;
  width: 100%;
  margin-top: 2rem;
}
.statistic-container .statistic-box {
  width: 100%;
  border-radius: 24px;
  border: solid 1px var(--border);
  background-color: #fff;
  height: 544px;
  position: relative;
  overflow: hidden;
}
.statistic-container .statistic-box iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 992px) {
  .statistic-section {
    background-image: url(../images/homepage/dot_bg.png), linear-gradient(to bottom, rgb(255, 254, 244), rgba(232, 253, 253, 0.8));
    background-repeat: repeat;
    background-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .statistic-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
/*===============================
  外部連結section
================================*/
.link-section {
  padding-top: 2.5rem;
  padding-left: calc(44px + 1.125rem);
  padding-right: calc(44px + 1.125rem);
  padding-bottom: 3.875rem;
  background: url(../images/homepage/dot_bg.png) 0 19px/20px repeat, url(../images/homepage/topic_bg.png) 0 bottom, 8px/cover no-repeat, linear-gradient(to bottom, rgba(232, 253, 253, 0.7) 0%, #eaebff);
}

.link-container {
  max-width: 1200px;
  width: 100%;
  margin-top: 1.5rem;
}

.link-carousel {
  margin-bottom: 2.25rem;
}

.link-item {
  padding: 0.5625rem;
  box-sizing: border-box;
}
.link-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  width: min(100%, 164px);
  padding: 0.375rem 0.25rem;
  box-sizing: border-box;
  border-radius: 6px;
  border: solid 1px var(--border_hover);
  background-color: #fff;
  text-decoration: none;
  color: var(--textBlack);
  margin: auto;
}
.link-item > a .link-img {
  width: 130px;
  height: 109px;
}
.link-item > a .link-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.link-item > a .link-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  color: var(--textBlack);
  text-wrap: pretty;
}

.link-carousel .slick-arrow {
  width: 44px;
  height: 44px;
  background-color: var(--primaryColor);
  border: 0;
  padding: 0;
  border-radius: 50%;
  white-space: nowrap;
  text-indent: 101%;
  overflow: hidden;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.link-carousel .slick-arrow.slick-prev {
  background-image: url(../images/icon/left_arrow_white.png);
  left: calc(-44px - 0.5625rem);
}
.link-carousel .slick-arrow.slick-next {
  background-image: url(../images/icon/right_arrow_white.png);
  right: calc(-44px - 0.5625rem);
}

.link-carousel .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}
.link-carousel .slick-dots > li {
  display: flex;
  align-items: center;
  height: 18px;
}
.link-carousel .slick-dots > li button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  line-height: 1;
  color: transparent;
  background-color: var(--gray500);
  border: 0;
  border-radius: 50%;
  transition: all 0.3s;
}
.link-carousel .slick-dots > li.slick-active button {
  width: 18px;
  height: 18px;
  background-color: var(--primaryColor);
}

@media screen and (max-width: 992px) {
  .link-section {
    padding-left: calc(44px + 0.625rem + 1rem);
    padding-right: calc(44px + 0.625rem + 1rem);
    background: url(../images/homepage/dot_bg.png) 0 19px/20px repeat, linear-gradient(to bottom, rgba(232, 253, 253, 0.7) 0%, #eaebff);
  }
}
@media screen and (max-width: 767px) {
  .link-section .section-head {
    width: auto;
    margin-left: -2rem;
    margin-right: -2rem;
  }
}/*# sourceMappingURL=index.css.map */