html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Arial";
}

/*nav*/
.nav_area {
  position: fixed;
  z-index: 999;
  transition: all .3s ease;
  margin: auto;
  right: 0;
  left: 0;
  background-color: transparent !important;
}

.nav_section {
  max-width: 1800px;
  width: 100%;
}

.nav_area.nav-scrolled {
  background-color: #fff !important;
}

.navbar-brand img {
  max-width: 333px;
}

.nav_item_area {
  padding-left: 15%;
}

.nav_item_area .offcanvas-header {
  display: none;
}

.nav_item_block {
  width: 100%;
  justify-content: space-around;
}

.nav_r {
  display: flex;
}

.nav_r img {
  max-width: 26px;
  object-fit: contain;
}

.lan_block {
  list-style: none;
}

.nav-item a,
.lan_txt {
  text-decoration: none;
  font-size: 20px;
  color: #232323;
}


.lan_block .nav-item:hover .dropdown-menu {
  position: absolute;
  background-color: #fff;
  padding: 10px;
  border: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.1);
}

@media(min-width:992px) {
  .lan_block .nav-item:hover .dropdown-menu {
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media(max-width:991px) {
  .lan_block {
    position: relative;
  }

  .lan_block .dropdown-menu {
    left: auto !important;
    /* 取消 Bootstrap 預設的靠左 */
    right: 0 !important;
    /* 強制靠右，因為按鈕在畫面最右邊，這樣才不會超出螢幕 */
    transform: none !important;
    top: 100%;
    /* 確保長在按鈕的正下方 */
  }

  .lan_block .nav-item.show {
    margin: auto;

  }

  .lan_block .nav-item.show .dropdown-menu {
    display: block !important;
  }
}

.nav_r .form-control {
  border: none;
  border-bottom: 1px solid #959595;
  border-radius: 0;
  background-color: transparent;
  color: #959595;
  padding: 8px 0;
}

.lan_txt {
  padding-left: 10px;
}

.lan_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border: none;
  background-color: transparent;
}

.lan_block .lan_btn:focus {
  outline: none !important;
  /* 消除傳統的外框線 */
  box-shadow: none;
  border: none;
}

.navbar-nav .nav-link {
  border-bottom: 3px solid transparent;
  transition: all ease 0.3s;
  position: relative;
  line-height: 60px;
  display: block;
}

.nav-link:hover {
  color: #000;
  -webkit-text-stroke: 1px #000;
}

.nav-item:hover .tr_nav_link::after {
  width: 100%;
}

.tr_nav_link::after {
  content: "";
  position: absolute;
  width: 0;
  bottom: 0;
  height: 3px;
  background-color: #000;
  transition: all .5s;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-menu a {
  display: block;
  font-size: 18px;
  transition: all .3s ease;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #f3cb2f;
  background-color: transparent;
}

.form-control:focus {
  border-color: #f3cb2f;
  box-shadow: none;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: 0 0 0 .25rem rgba(243, 203, 47, .2);
}

.search_block {
  margin-left: 30px;
}

.search_block img {
  max-width: 20px;
}

.nav_item_block .search_block {
  width: 100%;
  margin: 0;
}

.offcanvas-body {
  display: block;
}

.nav_btn {
  border: none;
  font-size: 18px;
  background-color: transparent;
  color: #232323;
  width: 100%;
  text-align: start;
}

.lan_block .nav-link {
  color: #232323;
}

@media (min-width: 992px) {

  /* 1. 讓抽屜容器在電腦版變成一般的 Flex 區塊 */
  .nav_item_area.offcanvas-lg {
    visibility: visible !important;
    transform: none !important;
    position: static !important;
    display: flex !important;
    flex-grow: 1;
    background-color: transparent !important;
    width: auto !important;
    border: none;
  }

  /* 2. 讓原本會隱藏內容的 offcanvas-body 展開 */
  .offcanvas-body {
    display: flex !important;
    overflow: visible !important;
    /* 確保下拉選單不會被裁切 */
    padding: 0 !important;
    align-items: center;
  }

  /* 3. 確保 ul 橫向排列 */
  .nav_item_block {
    flex-direction: row !important;
    justify-content: center;
    /* 讓選單居中，或 space-around */
  }

  .offcanvas-body .navbar-nav {
    display: flex;
    justify-content: space-around;
  }

  .navbar-nav .nav-item:hover .dropdown-menu,
  .navbar-nav .nav-item.show .dropdown-menu {
    display: block !important;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    background-color: #fff;
    padding: 10px;
    border: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.1);
  }
}

@media(max-width:1599px) {

  .nav-item a,
  .lan_txt {
    font-size: 18px;
  }

  .nav_item_area {
    padding-left: 0;
  }
}

@media(max-width:1399px) {
  .navbar-brand img {
    max-width: 300px;
  }


  .search_block {
    width: 70%;
  }
}

@media(max-width:1099px) {
  .search_block {
    margin-left: 10px;
    width: 50%;
  }

  .search_btn {
    padding: 5px;
  }
}

@media(max-width:991px) {
  .nav_item_area {
    max-width: 100%;
    z-index: 9999;
    background-color: #fff;
    height: 100dvh;
    /*避開 Safari 裁切問題 */
  }

  .offcanvas-body .tr_nav {
    display: none;
  }

  .navbar-toggler {
    position: absolute;
    z-index: 1000;
    top: 8px;
    right: 12px;
    border-radius: 100%;
    border: none;
    height: 45px;
    width: 45px;
    cursor: pointer;
    box-shadow: none !important;
    padding: 0px 12px;
    display: block;
    margin-left: 10px;
  }

  .navbar-toggler .burger_btn {
    width: 100%;
    height: 2px;
    background: #959595;
    margin: 5px auto;
    transition: all 0.3s ease;
    backface-visibility: hidden;
  }

  /* 
  .navbar-toggler.on .line1 {
    transform: rotate(-45deg) translate(0, 5px);
  }

  .navbar-toggler.on .line2 {
    display: none;
  }

  .navbar-toggler.on .line3 {
    transform: rotate(45deg) translate(0, -5px);
  } */

  .nav_r {
    position: absolute;
    top: 8px;
    right: 5%;
    z-index: 999;
  }

  .nav_item_block .dropdown-menu {
    width: 100%;
    display: none;
    position: static !important;
    transform: none !important;
    float: none;
    background-color: #fff;
  }

  .nav_item_block .dropdown-menu.show {
    display: block !important;
  }

  .dropdown-menu .dropdown-item {
    font-size: 16px;
  }

  .navbar-nav .nav-link {
    line-height: 1em;
  }

  .nav_item_block .search_block {
    padding-bottom: 10px;
  }

  .nav_item_area .offcanvas-header {
    display: block;
    margin-left: auto;
    margin-top: 12px;
    border-radius: 100%;
    border: none;
    height: 45px;
    width: 45px;
    cursor: pointer;
    box-shadow: none !important;
    padding: 0px 12px;
  }

  .nav-item:hover .tr_nav_link::after {
    width: 0%;
  }
}

@media(max-width:767px) {
  .navbar-brand img {
    max-width: 250px;
  }

  .lan_block {
    margin-right: 10px;
  }
}

@media(max-width:575px) {
  .navbar-brand img {
    max-width: 200px;
  }

  .lan_block .lan_txt {
    display: none;
  }

  .lan_block a {
    display: inline-block;
    margin-right: 20px;
  }

  /* .lan_block .nav-item:hover .dropdown-menu {
    left: 10%;
  } */

  .lan_block {
    margin-right: 20px;
  }
}

@media(max-width:390px) {
  .navbar-brand img {
    max-width: 150px;
  }
}

/*index_bn*/
.bn_area {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.bn_block {
  display: flex !important;
  align-items: center;
}

.bn_block img {
  display: block;
  width: 100%;
  position: relative;
  object-fit: cover;
  object-position: center;
}

.bn_txt_block {
  position: absolute;
  max-width: 600px;
  right: 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.bn_txt_lg {
  font-size: 65px;
  font-weight: 700;
  color: #232323;
}

.bn_txt_sm {
  font-size: 28px;
  color: #232323;
}

.txt_md,
.accordion-collapse p {
  font-size: 18px;
  color: #232323;
  transition: all .3s ease;
}

.bn_txt_block a {
  display: block;
  text-decoration: none;
}

/* .btn_lg span::before {
  content: "";
  width: 160px;
  height: 1px;
  background-color: #232323;
  position: absolute;
  bottom: 0;
} */

/* .btn_lg span::after {
  content: "";
  width: 15px;
  height: 1px;
  transform: rotate(45deg);
  position: absolute;
  right: 435px;
  bottom: 5px;
  background-color: #232323;
} */

.btn_lg span::after {
  content: "";
  width: 160px;
  height: 10px;
  background-image: url('../image/icon/_btn.svg');
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}


.ab_bg .btn_lg_1 span::after {
  content: "";
  width: 160px;
  height: 10px;
  background-image: url('../image/icon/_btn.svg');
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  z-index: -1;
}

.btn_lg:hover .txt_md,
.btn_lg_1:hover .txt_md {
  color: #f3cb2f;
}

@media(max-width:1599px) {
  .bn_txt_block {
    right: 0%;
  }
}

@media(max-width:1499px) {
  .bn_txt_lg {
    font-size: 48px;
  }

  .bn_txt_sm {
    font-size: 24px;
  }
}

@media(max-width:1299px) {
  .bn_txt_lg {
    font-size: 38px;
  }

  .bn_txt_sm {
    font-size: 22px;
  }

  .bn_txt_block {
    max-width: 450px;
  }

  .bn_area .btn_lg span::after {
    right: 285px;
  }
}

@media(max-width:1199px) {
  .bn_txt_lg {
    font-size: 32px;
  }

  .bn_txt_sm {
    font-size: 18px;
  }
}

@media(max-width:991px) {
  .bn_txt_block {
    max-width: 300px;
    margin: 0 24px 0 0;
  }

  .bn_area .btn_lg span::after {
    right: 52%;
  }

  .bn_txt_sm {
    display: none;
  }

  .btn_lg span::before {
    content: "";
    width: 140px;
  }

}

@media(max-width:767px) {
  .bn_txt_block {
    max-width: 250px;
  }

  .bn_area .btn_lg span::after {
    right: 43%;
  }

  .bn_txt_lg {
    font-size: 28px;
  }

  .txt_xm {
    font-size: 16px;
  }
}

@media(max-width:575px) {
  .bn_txt_block {
    max-width: 180px;
  }

  .bn_area .btn_lg span::after {
    right: 39%;
  }

  .bn_txt_lg {
    font-size: 20px;
    margin: 0.15rem 0;
    line-height: 1em;
  }

  /* .bn_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
  } */

  .txt_xm {
    font-size: 14px;
  }

  .btn_lg .txt_xm {
    color: #fff;
  }

  /* .btn_lg span::before {
    content: "";
    width: 120px;
  } */

  .btn_lg span::after {
    width: 120px;
  }

  .ab_bg .btn_lg_1 span::after {
    width: 120px;
  }

  .pdc_cp_ .bn_block {
    margin-top: 50px;
  }
}

@media(max-width:390px) {
  /* .bn_txt_block {
    top: 50%;
  } */

  .bn_txt_block {
    max-width: 150px;
    margin: 10px 12px 0 0;
  }

  .bn_txt_lg {
    font-size: 18px;
  }

  .btn_lg span::after {
    width: 100px;
  }

  .ab_bg .btn_lg_1 span::after {
    width: 100px;
  }
}

/*index_pdc*/
.area {
  width: 100%;
  margin: auto;
  padding: 100px 12px;
  overflow: hidden;
}

.area a {
  text-decoration: none;
  display: block;
}

.pdc_area {
  position: relative;
}

.pdc_block {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.txt_xxl {
  font-size: 35px;
  color: #282828;
}

.pdc_bg {
  position: absolute;
  top: auto;
  z-index: -999;
}

.pdc_bg .bg_txt {
  font-size: 25vw;
  font-weight: 700;
  color: #b7b7b7;
  opacity: .14;
}

.pdc_area .txt_xxl,
.pdc_bg {
  text-align: center;
}

.pdc_block .pdc_item .box img {
  display: block;
}

.pdc_block a {
  display: block;
  text-decoration: none;
}

.num {
  font-size: 22px;
  color: #f3cb2f;
}

.txt_lg,
.news_info_block p {
  font-size: 20px;
  color: #232323;
  transition: all .3s ease;
}

.news_info_block p {
padding-top: 10px;
}

.pdc_block .card {
  border: none;
  background-color: transparent;
  padding-top: 11%;
}

.pdc_block .card::after {
  content: "";
  height: 100%;
  position: absolute;
  right: 4%;
  top: 0;
  border-right: 1px solid #eee;
}


.pdc_block img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}

.card_txt {
  margin-top: 20%;
}

.card_txt .card-text {
  padding-top: 5%;
}

.card-body::before {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #f3cb2f;
  position: absolute;
  transition: all .5s;
}

.pdc_item:hover .card-body::before {
  width: 0px;
}

.pdc_item:hover .card_txt .txt_lg {
  color: #f3cb2f;
}

.pdc_item:hover .pdc_i::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #f3cb2f;
  position: absolute;
  top: 85%;
  left: 50%;
  transition: all .5s;
  transition-delay: .4s;
}

.pdc_item:hover .pdc_i::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #f3cb2f;
  position: absolute;
  top: 80%;
  left: 45.25%;
  transition: all .5s;
  transition-delay: .5s;
  transform: rotate(90deg);
}


.pdc_item:hover .card-body::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #f3cb2f;
  position: absolute;
  top: 84%;
  left: 50%;
  transition: all .5s;
  transition-delay: .2s;
}


/*按鈕*/
.slider_wrapper {
  position: relative;
  width: 100%;
}

.btn_container {
  position: absolute;
  top: 50%;
  /* 預設垂直置中 */
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  pointer-events: none;
  /* 穿透點擊 */
}

.btn_container .slick-arrow {
  pointer-events: auto;
  /* 恢復按鈕本身的點擊功能 */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* 確保按鈕本身也完美垂直置中 */
  width: 75px;
  height: 75px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
  /* 增加滑鼠懸停的過渡效果 */
}

.btn_container .slick-prev {
  left: 10%;
}

.btn_container .slick-next {
  right: 10%;
}

.btn_container .slick-arrow::before {
  content: "";
  width: 75px;
  height: 75px;
  display: block;
  background-image: url('../image/icon/prev_btn.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.btn_container .slick-next::before {
  transform: rotate(180deg);
}

@media(max-width:1699px) {
  .btn_container .slick-prev {
    left: 2%;
  }

  .btn_container .slick-next {
    right: 2%;
  }
}

@media(max-width:1499px) {
  .btn_container .slick-arrow::before {
    width: 50px;
    height: 50px;
  }

  .btn_container .slick-next {
    right: 0%;
  }
}

@media(max-width:1199px) {
  .area {
    padding: 80px 12px;
  }
}

@media(max-width:1099px) {
  .area {
    padding: 65px 12px;
  }
}

@media(max-width:991px) {
  .area {
    padding: 50px 24px;
  }

  .txt_xxl {
    font-size: 32px;
  }

  .num {
    font-size: 20px;
  }

  .txt_lg,
  .news_info_block p {
    font-size: 18px;
  }
}


@media(max-width:767px) {

  .pdc_item:hover .pdc_i::before,
  .pdc_item:hover .pdc_i::after,
  .pdc_item:hover .card-body::after {
    display: none;
  }

  .card_txt {
    margin-top: 10%;
  }

  .btn_container .slick-arrow::before {
    width: 35px;
    height: 35px;
  }

  .btn_container .slick-next {
    right: -4%;
  }

  .pdc_bg {
    top: 30%;
  }
}

@media(max-width:575px) {
  .btn_container .slick-next {
    right: -6%;
  }

  .txt_xxl {
    font-size: 26px;
  }

  .txt_lg,
  .news_info_block p {
    font-size: 16px;
  }
}

@media(max-width:390px) {
  .btn_container .slick-next {
    right: -9%;
  }
}

/*index_about*/
.ab_bg {
  width: 100%;
  padding: 0;
  position: relative;
  overflow-x: clip;
  /*控制鎖死X滾軸*/
  overflow-y: visible;
}

.ab_bg a {
  display: block;
  text-decoration: none;
}

.ab_area {
  max-width: 1400px;
  width: 100%;
  position: relative;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
}

.ab_bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url('../image/index/ab_1.png');
  background-repeat: no-repeat;
  overflow: hidden;
  background-size: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  filter: saturate(78%);
  z-index: -3;
}

.ab_lt {
  background-color: #f3cb2f;
  padding: 13px 30px;
  margin: 0;
  border-bottom: 1px solid #fff;
}

.ab_info_block {
  padding: 30px;
  padding-top: 70px;
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: -2;
}

.ab_info_block::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 30px;
  font-size: 3vw;
  color: #000;
}

.txt_sm,
.con_info_block .con_info a {
  font-size: 16px;
  color: #232323;
}

.ab_info_block .txt_sm {
  height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
}

.ab_area .txt_sm {
  scrollbar-color: #f3cb2f #eee;
  border-radius: 10px;
  scrollbar-width: thin;
}

/* --- 以下是給 Chrome / Safari / Edge 的 WebKit 卷軸設定 --- */
/* 1. 喚醒自訂卷軸並設定寬度 (必寫，否則後面的設定都無效) */
.ab_area .txt_sm::-webkit-scrollbar {
  width: 6px;
  /* 寬度對應 Firefox 的 thin */
}

/* 2. 卷軸的軌道背景 */
.ab_area .txt_sm::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}

/* 3. 卷軸的拉桿 (滑塊) */
.ab_area .txt_sm::-webkit-scrollbar-thumb {
  background: #f3cb2f;
  border-radius: 10px;
}

/* 4. 隱藏上下箭頭按鈕 (你的原本程式碼，現在會生效了！) */
.ab_area .txt_sm::-webkit-scrollbar-button {
  display: none !important;
  height: 0;
  width: 0;
}

.ab_area .btn_lg span::before {
  bottom: 5%;
}

.ab_area .btn_lg span::after {
  right: 65.5%;
  bottom: 6%;
}

.ab_info_block::after {
  content: "";
  max-width: 120px;
  width: 100%;
  max-height: 80px;
  height: 100%;
  background-image: url(../image/index/ab_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -30px;
  right: 20px;
}


.link_btn {
  margin-top: 30%;
  margin-bottom: 12%;
  z-index: 3;
}

.link_btn .txt_md {
  color: #fff;
}

.link_btn span {
  border: 1px solid #fff;
  padding: 10px 20px;
  display: inline-block;
}

.link_btn span::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 25vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ab_f {
  z-index: 0;
  margin-top: -5%;
}

.ab-r {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 9%;
}

.ab-r .txt_xxl {
  padding-bottom: 15%;
}

.ab-r .txt_md {
  padding-bottom: 10%
}

.t-item-box img {
  width: 100%;
  max-width: 80px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1/1;
  transition: all .3s ease;
  display: inline-block;
}

.t-item-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.ab_icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  display: flex;
  justify-content: center;
}

/* 將 Hover 圖片疊在原本的圖片正上方 */
.t-item-box .item .img_h {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: rotateY(0deg);
}


.t-item-box .item:hover .img_h {
  opacity: 1;
  transform: rotateY(180deg);
}

.t-item-box .item:hover .img_ {
  opacity: 0;
}

.t-item-box .item .txt_md,
.n-item-box .item .txt_xxl,
.n-item-box .item .txt_md {
  color: #fff;
}

.t-item-box .item .txt_md {
  text-align: center;
}

.t-item-box .item:hover .txt_md {
  color: #f3cb2f;
}


.t-item-box {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.t-item-box .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 3);
  padding: 6%;
  cursor: pointer;
}

.t-item-box .item:nth-child(1),
.t-item-box .item:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.y_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50vw;
  height: 20%;
  background-color: #f3cb2f;
  opacity: .95;
}


.n-item-box {
  position: relative;
  /* 讓內容切換時在同一個空間 */
  padding-left: 5%;
  padding-right: 5%;
}

.n-item-box .item {
  display: none;
  /* 預設全部隱藏 */
  animation: fadeIn 0.5s ease-out;
  /* 切換時的淡入動畫 */
}

/* 當有 active class 時才顯示 */
.n-item-box .item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 觸發按鈕區 (.t-item-box) --- */

/* 修正：當項目是 active 狀態時，也要觸發圖片翻轉與文字變色 */
.t-item-box .item.active .img_h,
.t-item-box .item:hover .img_h {
  opacity: 1;
  transform: rotateY(180deg);
}

.t-item-box .item.active .img_,
.t-item-box .item:hover .img_ {
  opacity: 0;
}

.t-item-box .item.active .txt_md,
.t-item-box .item:hover .txt_md {
  color: #f3cb2f;
  transition: color 0.3s ease;
}

/* 為了讓翻轉更平滑，建議在原本的圖片加上 transition */
.t-item-box .item .img_ {
  transition: all .3s ease;
}

@media (max-width: 1399px) {
  .ab_area .btn_lg span::after {
    right: 60%;
  }
}

@media (max-width: 1199px) {
  .ab_area .btn_lg span::after {
    right: 57%;
  }
}

@media (max-width: 991px) {

  /* 右側區塊改為上下排列，並移除左右邊框 */
  .ab-r {
    padding: 100px 0 0 0;
    margin-top: 0;
  }

  .ab-r .txt_xxl {
    padding-bottom: 12px;
  }

  .ab-r .txt_md {
    padding-bottom: 14px;
  }

  .link_btn {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .link_btn span::after {
    width: 40vw;
  }
}

@media (max-width: 767px) {
  .ab-r {
    border-left: none;
    border-right: none;
  }

  .n-item-box,
  .ab_f {
    padding: 0 24px;
  }

  .ab-r {
    padding: 20px 0 0 0;
  }

  .ab_lt {
    font-size: 24px;
    padding: 10px 20px;
  }

  .txt_xxl {
    font-size: 28px;
  }

  .txt_md,
  .accordion-collapse p {
    font-size: 16px;
  }

  .ab_info_block {
    padding: 20px;
    padding-top: 50px;
  }

  .ab_info_block .txt_sm {
    height: 250px;
  }

  /* 縮小手機版卷軸高度 */
  .ab_info_block::before {
    font-size: 40px;
    top: 10px;
    left: 15px;
  }

  .t-item-box .item {
    padding: 20px 10px;
  }

  .t-item-box .item .txt_md {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .ab_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .y_bg {
    display: none;
  }

  .link_btn {
    margin-top: 20px;
  }

  .link_btn span::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .t-item-box .item {
    padding: 15px 5px;
  }

  .ab_icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }

  .t-item-box .item .txt_md {
    font-size: 14px;
  }

  .txt_sm,
  .con_info_block .con_info a {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .ab_info_block::after {
    display: none;
  }
}

/*index_news*/
.news_area {
  max-width: 1400px;
  width: 100%;
}

@media(min-width:767px) {
  .news_area .news_i {
    max-width: 690px;
  }
}

.news_title {
  text-align: center;
  padding-bottom: 6%;
}

.news_t .txt_xl {
  padding-bottom: 4%;
}

.news_t p {
  padding-bottom: 6%;
}

.news_t .txt_md {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_t .time {
  padding-bottom: 10%;
}

.news_t .time span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news_block .time {
  display: flex;
  align-items: center;
}

.news_block .time span::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url('../image/icon/clock.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}

.news_area .btn_lg_1 span::after {
  content: "";
  width: 160px;
  height: 10px;
  background-image: url(../image/icon/_btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.news_sm_block {
  padding-top: 6%;
  display: flex;
  flex-direction: row;
}

.time_blcok {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #213045;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.time-box .date_m {
  font-size: 24px;
  font-weight: 600;
}

.time-box .date_m,
.time-box .date_y {
  color: #fff;
}

.txt_xm {
  font-size: 14px;
}

.date_d {
  font-size: 75px;
  color: #f3f3f3;
}


.news_sm_block .n_item .new {
  border-right: 1px solid #d3d3d3;
  padding-right: 4%;
}

.news_sm_block .n_item:nth-last-child(1) .new {
  border: none;
}

.news_sm_block .n_item .txt_md {
  margin-bottom: 4%;
}

.news_sm_block .n_item .txt_sm {
  color: #828282;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.n_item:hover .time_blcok,
.n_item.active .time_blcok {
  background-color: #f3cb2f;
}

.n_item:hover .time_blcok p,
.n_item.active .time_blcok p {
  color: #213045;
}

.news_area .news_btn button {
  display: block;
  width: 80px;
  height: 70px;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.news_area .news_btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 10%
}

.news_area .news_btn button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  /* background-position: center; */
  background-size: contain;
}

.news_area .news_btn .slick-prev {
  margin-right: -4%;
}

.news_area .news_btn .slick-prev::before {
  background-position: right center;
  background-image: url('../image/icon/news_btn_l.svg');
}

.news_area .news_btn .slick-next::before {
  background-position: left center;
  background-image: url('../image/icon/news_btn_r.svg');
}

.news_area .news_btn .slick-next {
  right: 0;
}

@media(max-width:1499px) {
  .news_area .btn_lg_1 span::before {
    margin-top: 2%;
  }
}

@media(max-width:1199px) {
  .news_area .btn_lg_1 span::before {
    margin-top: 3%;
  }
}

@media(max-width:1299px) {}

@media(max-width:991px) {
  .news_area .news_btn button {
    width: 50px;
  }

  .time_blcok {
    width: 70px;
    height: 70px;
  }

  .time-box .date_m {
    font-size: 20px;
  }

  .news_area .news_btn .slick-prev {
    margin-right: -5.5%;
  }
}

@media(max-width:767px) {
  .news_block .news_t {
    margin-top: 5%;
  }

  .news_t .txt_xl {
    padding-bottom: 2%;
  }

  .news_t p {
    padding-bottom: 0%;
  }

  .news_t .time {
    padding-bottom: 5%;
  }

  .date_d {
    font-size: 50px;
  }

  .news_area .btn_lg_1 span::before {
    margin-top: 4%;
  }

  .news_area .news_btn .slick-prev {
    margin-right: -3.5%;
  }

  .news_sm_block {
    padding-top: 0;
  }

  .news_sm_block .n_item .new {
    border: none;
  }
}

@media(max-width:575px) {
  .time-box {
    display: flex;
  }

  .date_d {
    padding-left: 5%;
    align-self: center;
    padding-bottom: 5%;
  }

  .news_area .btn_lg_1 span::before {
    margin-top: 5%;
  }

  .news_area .btn_lg_1 span::after {
    width: 120px;
  }
}

@media(max-width:390px) {
  .news_area .news_btn {
    margin-top: 12%;
  }

  .news_area .btn_lg_1 span::after {
    width: 100px;
  }
}

/*footer*/
.footer_area {
  width: 100%;
  height: 65vh;
  min-height: 260px;
  background-color: #213045;
  position: relative;
}

.l_block {
  padding-top: 4%;
  padding-bottom: 4%;
  max-width: 1400px;
  width: 100%;
  margin: auto;
}

.social_block {
  padding-top: 11%;
}

.social_list {
  flex-wrap: wrap;
}

.social_block li {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  transition: all .5s;
  margin-right: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_area a {
  display: inline-block;
  text-decoration: none;
}

.social_block img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  aspect-ratio: 1/1;
  object-position: center;
  display: block;
}

.footer_body {
  display: flex;
  justify-content: space-around;
}

.footer_title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.footer_title::after {
  content: "";
  display: block;
  width: 2vw;
  height: 3px;
  background-color: #f3cb2f;
  background-repeat: no-repeat;
}

.footer_links {
  margin-top: 40px;
}

.footer_links li {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
}

.footer_links li:last-child {
  padding-bottom: 0;
}

.footer_links li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url('../image/icon/footer_li.svg');
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  display: inline-block;
}

.footer_txt,
.footer_bottom .txt_md,
.footer_bottom a {
  color: #959595;
}

.footer_bottom .txt_md {
  display: block;
}


.footer_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  background-color: #17263c;
}

.copyright {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
}

.btn_top {
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  right: 25px;
  bottom: 50%;
  z-index: 999;
  /* 預設隱藏，並加上過場動畫 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  /* 稍微往下沉 */
  transition: all 0.3s ease;
}

/* 當 JS 加上 show 類別時出現 */
.btn_top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* 浮上來 */
}

.footer_links li:hover a,
.footer_bottom a:hover {
  color: #f3cb2f;
}

.social_block li:hover {
  border-color: #f3cb2f;
}


.fb_icon,
.ig_icon,
.tr_icon,
.line_icon,
.yt_icon,
.x_icon,
.lki_icon,
.wa_icon,
.wc_icon,
.tt_icon,
.qq_icon {
  width: 25px;
  height: 25px;
  background-color: #fff;
  /* 這裡決定 Icon 的預設顏色 */
  transition: all 0.3s ease;
}


.fb_icon {
  /* 把 SVG 當作遮罩模具壓上去 */
  -webkit-mask: url('../image/icon/wl-1.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-1.svg') no-repeat center / contain;
}

.ig_icon {
  -webkit-mask: url('../image/icon/wl-3.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-3.svg') no-repeat center / contain;
}

.tr_icon {
  -webkit-mask: url('../image/icon/wl-11.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-11.svg') no-repeat center / contain;
}

.line_icon {
  -webkit-mask: url('../image/icon/wl-8.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-8.svg') no-repeat center / contain;
}

.yt_icon {
  -webkit-mask: url('../image/icon/wl-2.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-2.svg') no-repeat center / contain;
}

.x_icon {
  -webkit-mask: url('../image/icon/wl-7.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-7.svg') no-repeat center / contain;
}

.lki_icon {
  -webkit-mask: url('../image/icon/wl-6.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-6.svg') no-repeat center / contain;
}

.wa_icon {
  -webkit-mask: url('../image/icon/wl-4.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-4.svg') no-repeat center / contain;
}

.wc_icon {
  -webkit-mask: url('../image/icon/wl-10.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-10.svg') no-repeat center / contain;
}

.tt_icon {
  -webkit-mask: url('../image/icon/wl-5.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-5.svg') no-repeat center / contain;
}

.qq_icon {
  -webkit-mask: url('../image/icon/wl-9.svg') no-repeat center / contain;
  mask: url('../image/icon/wl-9.svg') no-repeat center / contain;
}

.fb:hover .fb_icon,
.ig:hover .ig_icon,
.tr:hover .tr_icon,
.line:hover .line_icon,
.yt:hover .yt_icon,
.x:hover .x_icon,
.lki:hover .lki_icon,
.wa:hover .wa_icon,
.wc:hover .wc_icon,
.tt:hover .tt_icon,
.qq:hover .qq_icon {
  background-color: #f3cb2f;
  /* Hover 時直接改變色塊顏色 */
}

.footer_bottom .txt_md a {
  display: inline;
}



@media(max-width:1299px) {
  .btn_top {
    bottom: 40%;
  }
}

@media(max-width:1099px) {
  .footer_area {
    height: 60vh;
  }
}

@media(max-width:991px) {
  .footer_body {
    display: none;
  }

  .footer_area {
    height: 30vh;
  }

  .l_block {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer_area a {
    max-width: 300px;
  }

  .txt_md,
  .accordion-collapse p {
    font-size: 16px;
  }

  .footer_bottom .txt_md {
    font-size: 14px;
  }

  .social_block {
    padding-top: 5%;
  }

  .btn_top {
    bottom: 25%;
  }
}

@media(max-width:767px) {
  .footer_area a {
    max-width: 250px;
  }

  .copyright {
    display: inline-block;
  }

  .btn_top {
    width: 35px;
    height: 35px;
  }
}

@media(max-width:575px) {

  .txt_md,
  .accordion-collapse p {
    font-size: 14px;
  }

  .social_block li {
    width: 30px;
    height: 30px;
  }

  .fb_icon,
  .ig_icon,
  .tr_icon,
  .line_icon,
  .yt_icon,
  .x_icon,
  .lki_icon,
  .wa_icon,
  .wc_icon,
  .tt_icon,
  .qq_icon {
    width: 20px;
    height: 20px;
  }

  .btn_top {
    bottom: 10%;
  }

  .footer_bottom {
    padding-top: 10px;
  }
}

/*pdc_cpa*/
.cp_page_area {
  overflow: hidden;
  width: 100%;
  margin: auto;
}

.cp_page_area img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.cp_bn_area {
  position: relative;
}

.bn_info {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.cp_bn_area::after {
  content: "";
  width: 40vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url('../image/pdc/cp_bg.png');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left top;
  z-index: -1;
}

.bn_info .txt_xxl {
  font-weight: 700;
  padding: 2% 0;
}

.container-fluid a {
  display: block;
  text-decoration: none;
}

.breadcrumb {
  align-items: center;
  line-height: 1rem;
}

.breadcrumb-item {
  display: flex;
  /* 讓 li 內部的內容也垂直居中 */
  align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #515151;
  content: var(--bs-breadcrumb-divider, ">");
  /* 讀取 HTML 上的變數，若失敗則顯示 > */
}

.breadcrumb a,
.breadcrumb-item,
.breadcrumb-item.active {
  font-size: 20px;
  color: #515151;
}


.cp_info_area {
  max-width: 1400px;
  width: 100%;
  margin: auto;
}

.pdc_cp_info .card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 10px;
}


.pdc_card {
  padding: 3%;
}

.card_info {
  padding-top: 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card_info .txt_lg {
  text-align: center;
  font-weight: 500;
}

.pdc_btn .txt_sm {
  color: #213045;
}

.pdc_btn {
  opacity: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f3cb2f;
  padding: 4% 10%;
  border-radius: 30px;
  transition: all .3s ease;
  margin-top: 10%;
  transform: translateY(20px);
}

.pdc_cp_info .card:hover .pdc_btn {
  opacity: 1;
  transform: translateY(0);
}


.pdc_cp_info .card img {
  max-width: 300px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media(max-width:1499px) {

  .breadcrumb a,
  .breadcrumb-item,
  .breadcrumb-item.active {
    font-size: 18px;
  }
}

@media(max-width:1099px) {

  .breadcrumb a,
  .breadcrumb-item,
  .breadcrumb-item.active {
    font-size: 16px;
  }
}

@media(max-width:991px) {
  .bn_info {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .cp_bn_area::after {
    width: 50vw;
  }
}

@media (max-width: 575px) {
  .txt_xxl {
    font-size: 22px;
  }

  .breadcrumb a,
  .breadcrumb-item,
  .breadcrumb-item.active {
    font-size: 14px;
  }

  .cp_bn_area .bn_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (max-width: 390px) {
  .txt_xxl {
    font-size: 18px;
  }
}

/*pdc_cpb*/
.pdc_cp_block {
  position: relative;

}

.seo_block {
  position: relative;
  height: 70px;
  overflow: hidden;
  /* 使用 cubic-bezier 讓動畫有先快後慢的彈性感 */
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}


.seo_block::after {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  /* 增加淡出效果更平滑 */
}

.pdc_item_block {
  padding-top: 10%;
}

.more_btn {
  display: block;
  z-index: 2;
  margin-bottom: -5px;
  color: #f3cb2f;
  text-decoration: underline !important;
}

.more_btn:hover {
  color: #232323;
}

.seo_block.open {
  height: 100%;
}

.seo_block.open::after {
  opacity: 0;
}

.page_area {
  padding-top: 5%;
}

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

.page_area button {
  border: none;
  background-color: transparent;
}

.page_area .page_prev::before {
  content: "";
  display: block;
  width: 75px;
  height: 65px;
  margin-right: 5px;
  border: 1px solid #d4d4d4;
  background-color: transparent;
  background-image: url('../image/icon/page_btn.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.page_area .page_next::before {
  content: "";
  display: block;
  width: 75px;
  height: 65px;
  margin-left: 5px;
  border: 1px solid #d4d4d4;
  background-color: transparent;
  background-image: url('../image/icon/page_btn.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(180deg);
}

.page_number {
  border: 1px solid #d4d4d4;
  padding: 18px 50px;
}

.page_all::before {
  content: "/";
  margin-right: 5px;
}

.page_active {
  color: #f3cb2f;
}

.page_block a {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:1099px) {
  .page_number {
    padding: 10px 40px;
  }

  .page_area .page_prev::before,
  .page_area .page_next::before {
    width: 60px;
    height: 49px;
  }
}

@media(max-width:991px) {

  .page_area .page_prev::before,
  .page_area .page_next::before {
    width: 50px;
    height: 46px;
  }
}

@media(max-width:575px) {
  .page_number {
    padding: 5px 20px;
  }

  .page_area .page_prev::before,
  .page_area .page_next::before {
    width: 40px;
    height: 33px;
  }

  .page_area {
    padding-top: 10%;
  }
}

/*pdc_cpc*/
.pdc_cp_info .card_2 {
  padding: 0;
  width: 100%;
}

.card_2 .pdc_card {
  display: flex;
  padding: 0;
  width: 100%;
  transition: all .3s ease;
}

.card_2 .card_info {
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  transition: all .3s ease;
}

.card_2 .txt_lg {
  text-align: start;
}

.card_2 .txt_lg::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #232323;
  background-repeat: no-repeat;
  margin-top: 5%;
}

.card_2 .pdc_btn {
  opacity: 1;
  background-color: transparent;
  padding: 0;
  margin-top: 20px;
  transform: translateY(0px);
}

.card_2:hover .card_info {
  background-color: #f3cb2f;
}

@media(max-width:991px) {
  .card_2:hover .pdc_card {
    background-color: #f3cb2f;
  }
}


@media(max-width:767px) {
  .card_2:hover .pdc_card {
    background-color: transparent;
  }
}

/*pdc_detail*/
.dt_page_area {
  position: relative;
  overflow: hidden;
}

.dt_bn_info {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  padding: 0 12px;
}

.dt_bn_area {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url('../image/pdc/pdc_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
}

.pdc_btn_block {
  display: flex;
  flex-direction: row;
}

.dt_bn_info .breadcrumb {
  justify-content: flex-end;
  margin-top: 5%;
}

.dt_bn_info .breadcrumb a,
.dt_bn_info .breadcrumb-item,
.dt_bn_info .breadcrumb-item.active {
  font-size: 16px;
}

.pdc_dt_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pdc_dt_title .txt_md {
  color: #f3cb2f;
}

.txt_xl {
  font-size: 28px;
  color: #232323;
}

.pdc_btn_block .txt_md {
  color: #232323;
}

.pdc_btn_block .inquiry_btn::after,
.pdc_btn_block .pdf_btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.pdc_btn_block .pdf_btn::after {
  background-image: url('../image/icon/down.svg');
}

.pdc_btn_block .inquiry_btn::after {
  background-image: url('../image/icon/inq.svg');
}

.pdc_btn_block .inquiry_btn,
.pdc_btn_block .pdf_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* 確保內容置中 */
  padding: 10px 30px;
}

.pdc_btn_block .inquiry_btn span,
.pdc_btn_block .pdf_btn span {
  margin-right: 5%;
  white-space: nowrap;
  display: block;
}

.pdc_btn_block .pdf_btn {
  background-color: #f3cb2f;
}

.pdc_btn_block .inquiry_btn {
  background-color: transparent;
  border: 2px solid #213045;
}

.pdc_btn_block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dt_page_area a {
  display: block;
  text-decoration: none;
}

.pdc_dt_title .txt_xl::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #f3cb2f 0%, #f2f2f2 30%);
  ;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 5% auto;
}

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

.pdc_i_block {
  max-width: 500px;
  aspect-ratio: 3/4;
  width: 100%;
}

.pdc_i img {
  display: inline-block;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.pdc_dt_top .pdc_i .slick-prev:before,
.pdc_dt_top .pdc_i .slick-next:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.pdc_dt_top .pdc_i .slick-next:before {
  background-image: url('../image/icon/pdc_prev_btn.svg');
  transform: rotate(180deg);
}

.pdc_dt_top .pdc_i .slick-prev:before {
  background-image: url('../image/icon/pdc_prev_btn.svg');
}

.btn-group {
  width: 100%;
}

.btn-outline-primary {
  border-color: #f3cb2f;
  color: #232323;
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
  background-color: #f3cb2f;
  border-color: #f3cb2f;
  color: #232323;
  box-shadow: none;
}

.tab-content li::marker {
  color: #f3cb2f;
}

.tab-content li {
  padding-bottom: 1%;
}

.tab-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 20px 0;
}

/* .dt_btn_block .txt_md {
  padding: 1.5% 5%;
  background-color: #f3cb2f;
  border-radius: 20px;
} */

.dt_btn_block {
  display: flex;
  text-align: center;
  margin-top: 8%;
  align-items: center;
  justify-content: center;
}

.dt_btn_block a {
  padding: 0.8% 2%;
  background-color: #f3cb2f;
  border-radius: 20px;
  max-width: 180px;
  width: 100%;
}

.tab_btn {
  padding: 20px;
  font-size: 20px;
  font-weight: 500;
}

.tab_btn:hover {
  background-color: #f3cb2f;
  border-color: #f3cb2f;
  color: #232323;
}

.spec_block,.spec_block_b {
  width: 100%;
}

.spec_ta {
  background-color: #213045;
}

.spec_ta .txt_lg,.spec_block_b th {
  color: #f3cb2f;
  padding: 20px;
  border: 1px solid #d7d7d7;
}

.spec_block_b th{
  background-color: #213045;
  width: 25%;
}
.spec_block_b td{
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #d7d7d7;
}
.spec_bta.txt_lg{
  background-color: #fff;
  padding: 20px;
  border: 1px solid #d7d7d7;
}

.spec_tb .txt_lg {
  padding: 20px;
  border: 1px solid #d7d7d7;
}

.tab-pane-custom {
  overflow-x: auto;
}

.pdc_acc .card {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}

.pdc_acc .card_info {
  align-items: flex-start;
  padding: 20px;
}

.pdc_acc .txt_xm {
  color: #757575;
}

.card_i {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3/4;
  width: 100%;
  max-width: 400px;
}

.pdc_acc .card_i img {
  aspect-ratio: auto;
  max-width: 400px;
  width: 100%;
  display: block;
  object-fit: contain;
}

.tab-pane {
  padding: 20px 0;
  overflow: visible;
}

.tab-pane .card_i {
  aspect-ratio: auto;
}

.pdc_dt_top .slick-prev,
.pdc_dt_top .slick-next {
  width: 50px;
  height: 50px;
}

@media(max-width:1299px) {
  .txt_xl {
    font-size: 24px;
  }

  .tab_btn {
    font-size: 18px;
  }

}

@media(max-width:991px) {
  .dt_bn_info {
    padding: 0 24px;
  }

  .pdc_dt_title {
    order: 2;
  }

  .pdc_i {
    order: 1;
  }

  .spec_tb .txt_lg,
  .spec_ta .txt_lg {
    padding: 10px;
  }

  .tab_btn {
    font-size: 16px;
  }

  .dt_bn_area {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .dt_btn_block a {
    max-width: 150px;
  }
}

@media (max-width: 575px) {
  .btn-group {
    display: block;
    position: relative;
    width: 100%;
    border: 1px solid #f3cb2f;
  }

  .btn-group .tab_btn {
    display: block;
    width: 100% !important;
    text-align: left;
    position: relative;
    border: none;
    margin: 0 !important;
    border-radius: 0;
  }

  /* 平常隱藏沒被選中的按鈕 */
  .btn-check:not(:checked)+.tab_btn {
    display: none;
  }

  /* 當按鈕組被加上一個 .active 類別時，才顯示所有選項 */
  .btn-group.open .btn-check+.tab_btn {
    display: block;
  }

  /* 加上一個「▼」箭頭裝飾 */
  .btn-check:checked+.tab_btn::after {
    content: " ▼";
    float: right;
  }

  .pdc_dt_top .pdc_i .slick-prev:before,
  .pdc_dt_top .pdc_i .slick-next:before,
  .pdc_dt_top .slick-prev,
  .pdc_dt_top .slick-next {
    width: 20px;
    height: 20px;
  }

  .pdc_dt_top .slick-prev {
    left: 0;
  }

  .pdc_dt_top .slick-next {
    right: 0;
  }

  .pdc_btn_block .inquiry_btn,
  .pdc_btn_block .pdf_btn,
  .tab_btn {
    padding: 10px 20px;
  }

  .dt_bn_info .breadcrumb a,
  .dt_bn_info .breadcrumb-item,
  .dt_bn_info .breadcrumb-item.active {
    font-size: 14px;
  }

  .dt_bn_area {
    padding-top: 60px;
  }
}

@media(max-width:390px) {
  .dt_bn_area {
    padding-top: 50px;
  }
}

/*faq*/
.nb {
  font-size: 24px;
  font-weight: 700;
  color: #213045;
  background-color: #f3cb2f;
  padding: 20px;
  margin-right: 2%;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  box-shadow: none;
}

.accordion-item .txt_lg {
  padding: 0 10px;
}

.accordion-item .accordion-body p {
  color: #515151;
  padding-left: 8.5%;
}

.accordion-button {
  background-color: transparent;
}

.accordion-body {
  padding-top: 0;
}

.accordion-item {
  background-color: #f7f7f7;
  border: none;
  overflow: hidden;
}

.accordion-item .collapse.show .accordion-button {
  padding-bottom: 0;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nIzIxMjUyOSc+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBkPSdNMS42NDYgNC42NDZhLjUuNSAwIDAgMSAuNzA4IDBMOCAxMC4yOTNsNS42NDYtNS42NDdhLjUuNSAwIDAgMSAuNzA4LjcwOGwtNiA2YS41LjUgMCAwIDEtLjcwOCAwbC02LTZhLjUuNSAwIDAgMSAwLS43MDh6Jy8+PC9zdmc+);
}

@media(max-width:1299px) {
  .accordion-item .accordion-body p {
    padding-left: 9%;
  }
}

@media(max-width:1199px) {
  .accordion-item .accordion-body p {
    padding-left: 9.5%;
  }
}

@media(max-width:1099px) {
  .accordion-item .accordion-body p {
    padding-left: 10%;
  }
}

@media(max-width:991px) {
  .accordion-item .accordion-body p {
    padding-left: 20px;
  }

  .nb {
    padding: 10px;
    font-size: 20px
  }
}


@media(max-width:575px) {
  .nb {
    font-size: 18px
  }

  .accordion-item .accordion-body p {
    padding-left: 10px;
  }
}

@media(max-width:390px) {
  .nb {
    font-size: 16px
  }
}

/*video*/

.video_block .btn,
.video_block .btn:hover {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.video_block .btn:focus {
  border-color: transparent;
  box-shadow: none;
}

.video_block .txt_lg {
  font-weight: 700;
  text-align: start;
  margin-top: 1rem;
  margin-bottom: 0;
}

.video_block .video_item .txt_lg::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #b7b7b7;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 8%;
}

.video_i {
  position: relative;
  display: block;
}

.video_block .video_i::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background-image: url('../image/icon/play.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.modal-header {
  border: none;
  padding-bottom: 0;
}

.video_item .video_i img {
  width: 100%;
  object-fit: cover;
}


@media(max-width:1099px) {
  .video_block .video_i::before {
    width: 50px;
    height: 50px;
  }
}


/*catalog*/
.cata_info {
  display: flex;
}

.cata_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #f2f2f2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 5%;
  transition: all .2s ease;
}

.cata_item:hover::before {
  background-color: #f3cb2f;
}

.cata_item:hover .txt_lg {
  color: #f3cb2f;
}

.cata_info img {
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.2);
  max-width: 270px;
}


.cata_txt {
  margin-left: 5%;
  transition: all .3s ease;
}

.cata_txt::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url('../image/icon/cata_btn.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  border: 1px solid #213045;
  margin-top: 10%;
  transition: all .2s ease;
}

.cata_item:hover .cata_txt::after {
  background-image: url('../image/icon/page_btn.svg');
  transform: rotate(-90deg);
  border-color: #f3cb2f;
}

.modal-header .txt_lg {
  margin-top: 0;
}


@media(max-width:991px) {
  .cata_txt::after {
    width: 40px;
    height: 40px;
  }
}

@media(max-width:575px) {
  .cata_txt::after {
    width: 30px;
    height: 30px;
  }
}

/*news*/
.news_info_area .news_txt {
  padding-top: 5%;
}

.news_info .news_btn {
  font-weight: 700;
}

.news_txt .txt_xm,
.news_info .news_btn {
  color: #6f6f6f;
}

.news_txt .txt_xm {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .3s ease;
}

/* .news_info .txt_lg {
  font-weight: 700;
  transition: all .3s ease;
} */

.news_btn .txt_xm {
  transition: all .3s ease;
  margin: 0;
}

.news_info .news_btn {
  justify-content: space-between;
}

.news_info .news_btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url('../image/icon/news_in_btn.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all .3s ease;
}

.news_info_area .news_item:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #f2f2f2;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all .3s ease;
  margin-top: 5%
}

.news_info a:hover .news_txt .txt_xm,
.news_info a:hover .news_txt .txt_lg,
.news_info a:hover .news_btn .txt_xm {
  color: #f3cb2f;
}

.news_item:hover:after {
  background-color: #f3cb2f;
}

.news_info a:hover .news_btn::after {
  background-image: url('../image/icon/prev_btn.svg');
  transform: rotate(180deg);
}

.news_btn {
  display: flex;
  align-items: center;
}

.news_i {
  aspect-ratio: 4/3;
}

.news_i img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}




/*news_detail*/
.news_bn {
  position: relative;
  overflow: hidden;
}

.news_bn img {
  position: relative;
}

.news_bn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #fff 0%, #000000 100%) no-repeat;
  opacity: .2;
  background-position: center;
  background-size: 100%;
  z-index: 1;
}

.news_bn .news_dt_bn {
  max-height: 620px;
}

.news_bn .bn_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7.5%;
  margin: 0 auto;
  max-width: 1400px;
  z-index: 2;
}

.news_bn_t {
  display: flex;
  align-items: center;
}

/* .news_bn_t .date,
.news_bn_t .news_ta,
.news_bn .bn_info .txt_xxl,
.news_bn .breadcrumb a,
.news_bn .breadcrumb li,
.news_bn .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
} */

.news_ta {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, .16);
  border-radius: 35px;
}

.news_info_block p {
  font-weight: 400;
}

.news_info_block img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

/*company*/
.company_area {
  position: relative;
}

.company_area img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.company_area .com_i img {
  border-radius: 30px;
}

.com_a {
  max-width: 1420px;
  margin: auto;
  width: 100%;
  padding: 100px 12px;
}

.com_a .txt_xxl {
  margin-bottom: 5%;
}

.txt_xlg {
  font-size: 52px;
  font-weight: 700;
}

.com_b {
  position: relative;
  overflow: hidden;
}

.ab_2 {
  max-width: 1420px;
  margin: auto;
  width: 100%;
}

.com_bbg {
  width: 100%;
  background-image: url(../image/about/ab_2.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ab_2 {
  padding: 3% 12px 100px 12px;
}

.com_b_t::before {
  content: "“";
  width: 100%;
  display: block;
  position: absolute;
  top: -8%;
  left: 1%;
  font-size: 10vw;
  line-height: 3rem;
  color: #f3cb2f;
}

.com_b .txt_xlg {
  color: #f3cb2f;
  margin-bottom: 5%;
}

.com_b_t {
  margin-top: 6.5%;
}

.com_b .txt_lg {
  color: #fff;
}

.com_c {

  width: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.ab_3 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  max-width: 1420px;
  padding: 100px 12px 150px 12px;
}


.bg_t {
  font-size: 13vw;
  font-weight: 800;
  letter-spacing: 6rem;
  color: transparent;
  -webkit-text-stroke: 1px #213045;
  line-height: .1rem;
  margin: auto;
  opacity: .3;
}

.com_c_t {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 10%;
  padding-top: 5%;
}

.com_c_bg {
  width: 100%;
  background: url('../image/about/ab_bg.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}

@media(max-width:1499px) {
  .txt_xlg {
    font-size: 46px;
  }
}


@media(max-width:1199px) {
  .com_a {
    padding: 80px 0;
  }

  .ab_2 {
    padding: 3% 0 80px 0;
  }

  .ab_3 {
    padding: 80px 0 120px 0;
  }

  .txt_xlg {
    font-size: 38px;
  }

}

@media(max-width:1099px) {
  .com_a {
    padding: 65px 0;
  }

  .ab_2 {
    padding: 3% 0 65px 0;
  }

  .ab_3 {
    padding: 65px 0 105px 0;
  }

}

@media(max-width:991px) {
  .com_a {
    padding: 50px 12px;
  }

  .ab_2 {
    padding: 40px 12px 50px 12px;
  }

  .ab_3 {
    padding: 50px 12px 90px 12px;
  }

  .bg_t {
    letter-spacing: 1rem;
  }

  .com_b_t::before {
    display: none;
  }

  .txt_xlg {
    font-size: 28px;
  }
}

@media(max-width:575px) {
  .txt_xlg {
    font-size: 22px;
  }
}

@media(max-width:390px) {
  .txt_xlg {
    font-size: 20px;
  }
}

/*history*/
.timeline_container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline_line_track {
  position: absolute;
  left: 17.7%;
  transform: translateX(-17.7%);
  width: 3px;
  height: 100%;
  border: 3px dashed #909090;
  z-index: -1;
}

.timeline_line_active {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 0%;
  border: 3px solid #f3cb2f;
  transition: height 0.1s linear;
  z-index: 2;
}

.history_item .txt_xxl {
  color: #f3cb2f;
  font-weight: 700;
}

.his_info_t .dot {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 3px solid #909090;
  border-radius: 30px;
  flex-shrink: 0;
  z-index: 2;
}

.history_item .txt_lg {
  padding-left: 10%;
}

.history_item,
.his_info_t {
  display: flex;
  align-items: center;
}

.history_item::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #909090;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 3%;
  margin-bottom: 3%;
  z-index: -1;
}


/* .history_item:nth-child(1 of .history_item) .txt_xxl {
  color: #909090;
} */

@media(max-width:1099px) {
  .his_info_t .dot {
    margin-left: -0.5%;
  }
}

@media(max-width:991px) {
  .his_info_t .dot {
    margin-left: -0.8%;
  }
}

@media(max-width:767px) {
  .history_item .txt_xxl {
    padding-left: 10%;
  }

  .his_info_t .dot {
    width: 15px;
    height: 15px;

  }

  .history_item img {
    padding-left: 10%;
  }

  .timeline_line_track {
    left: 0%;
    transform: translateX(-0%);
  }

  .history_item .txt_lg {
    padding-bottom: 1.5%;
    padding-left: 8%;
  }
}

@media(max-width:575px) {
  .his_info_t .dot {
    margin-left: -1%;
  }
}


@media(max-width:390px) {
  .his_info_t .dot {
    margin-left: -1.3%;
  }
}

/*contact*/
.inq_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid #959595;
}

.inq_item .pdc_i {
  border: 1px solid #e6e6e6;
  margin-bottom: 3%;
}

.inq_item .pdc_i img {
  aspect-ratio: 1/1;
}

.con_info_block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 6%;
}

.con_info_block .con_info a {
  margin: 0;
}

.con_r {
  margin-top: 3%;
}

.info_block {
  padding: 48px;
  background-color: #f3cb2f;
}

.info_block .txt_xl {
  margin-bottom: 5%;
}

.con_info {
  display: flex;
  align-items: center;
  margin-bottom: 5%;
}

.con_info .txt_lg,
.info_block .txt_xl {
  font-weight: 700;
}

.con_t {
  display: flex;
  flex-direction: column;
}

.icon {
  width: 100%;
  max-width: 50px;
  margin-right: 5%;
}

.info_icon {
  display: block;
}

.con_info_block .mark,
mark {
  background-color: transparent;
}

.con_captcha_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.con_btn_block {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.con_btn_block button {
  border: none;
  padding: 1% 5%;
  background-color: #f3cb2f;
  border-radius: 20px;
  max-width: 180px;
  width: 100%;
}

.form-select,
.form-control {
  border: none;
  background-color: #f2f2f2;
  padding: 10px;
}

.con_info_block .form-control:focus {
  background-color: #f2f2f2 !important;
}

.form-select:focus {
  border-color: #f3cb2f;
  box-shadow: 0 0 0 .25rem rgba(243, 203, 47, .25);
}

.inq_txt {
  color: #878787;
}

.data_m_sex {
  border-color: #213045;
  background-color: #213045;
}

.delete_btn {
  border: none;
  background-color: transparent;
}

.delete_btn img {
  width: 100%;
  max-width: 50px;
  min-width: 30px;
}

form .algins {
  width: 1px !important;
  height: 1px !important;
  margin-bottom: 0;
  opacity: 0;
  position: absolute;
  left: -1px;
  top: -1px;
}

@media(max-width:1199px) {
  .info_block {
    padding: 30px;
  }
}

@media(max-width:991px) {

  /* .con_l {
    order: 2;
    margin-top: 3%;
  }

  .con_r {
    order: 1;
    margin-bottom: 10%;
  } */

  .info_block {
    padding: 24px;
  }

}

@media(max-width:767px) {
  .con_captcha_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .con_btn_block {
    margin-top: 10%;
  }

  .con_btn_block button {
    max-width: 150px;
  }

  .info_block {
    padding: 20px;
  }
}

@media(max-width:575px) {
  .icon {
    max-width: 30px;
  }

  .txt_xl {
    font-size: 16px;
  }

}

@media (max-width: 390px) {
  .txt_lg {
    font-size: 14px;
  }
}

.footer_body_info a {
  color: #fff;
}

/*privacy*/
.privacy_area .ban_txt {
  color: #f3cb2f;
}

/*404*/
.page_404_area .bn_block {
  background-color: #213045;
  width: 100%;
  height: 40vh;
  z-index: -1;
  position: relative;
  margin-top: 100px;
}

.page_info {
  overflow: visible;
  padding-bottom: 20%;
  padding-left: 24px;
  padding-right: 24px;
}

.page_404_block {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 0;
  margin-top: -200px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.page_404_block .txt_bt {
  font-size: 15vw;
  font-weight: 800;
  color: #f3cb2f;
  text-align: center;
  padding-top: 10%;
}

.page_404_block .txt_st,
.page_sub_block .txt_st {
  font-size: 4vw;
  font-weight: 700;
  color: #213045;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

.page_404_block .txt_st::before,
.page_404_block .txt_st::after {
  content: "";
  width: 10%;
  height: 1px;
  display: block;
  margin: 20px;
  align-items: center;
  background-color: #232323;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media(max-width:1399px) {
  .page_404_area .bn_block {
    margin-top: 80px;
  }
}

@media(max-width:991px) {
  .page_404_area .bn_block {
    margin-top: 65px;
  }
}

@media(max-width:767px) {
  .page_404_area .bn_block {
    height: 35vh;
  }

  .page_404_block {
    margin-top: -150px;
  }

  .txt_xl {
    font-size: 20px;
  }
}


@media(max-width:575px) {
  .page_404_block {
    margin-top: -130px;
  }

  .page_sub_block .txt_st {
    font-size: 20px;
  }

  .page_404_block .txt_xl {
    font-size: 16px;
  }

  .page_404_area .bn_block {
    margin-top: 50px;
  }
}


@media(max-width:390px) {
  .page_404_block {
    margin-top: -100px;
  }

  .page_sub_block .txt_st {
    font-size: 18px;
  }

  .page_404_block .txt_xl {
    font-size: 14px;
  }
}

/*submit*/
.page_sub_block {
  padding-top: 50px;
}

.page_sub_block img {
  display: block;
  aspect-ratio: 1/1;
  max-width: 300px;
  margin: auto;
}

.page_sub_block .txt_st {
  margin-top: 5%;
}

.page_sub_block .txt_xl {
  text-align: center;
}


@media(max-width:1099px) {
  .page_sub_block img {
    max-width: 250px;
  }
}

@media(max-width:991px) {
  .page_sub_block img {
    max-width: 200px;
  }
}

@media(max-width:767px) {
  .page_sub_block img {
    max-width: 150px;
  }
}

@media(max-width:575px) {
  .page_sub_block img {
    max-width: 100px;
  }
}

@media(max-width:390px) {
  .page_sub_block img {
    max-width: 80px;
  }
}

/*cookie*/

.privacyBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 1.5;
  padding: 15px 24px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
  transition: all 0.3s ease;
  z-index: 999;
  width: 100%;
}

.privacyBox .cookie_block {
  display: flex;
  align-items: center;
  margin: auto;
  max-width: 800px;
}

.privacyBox .closePrivacy {
  white-space: nowrap;
  cursor: pointer;
  color: #fff;
  background-color: #f3cb2f;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.privacyBox p {
  color: #fff;
  padding-right: 2%;
}

.privacyBox a {
  color: #f3cb2f;
  text-decoration: none;
}

.slick-dots {
  bottom: 3% !important;
}

.slick-dots li button {
  width: 10px !important;
  height: 10px !important;
}

.slick-dots li button:before {
  font-size: 20px !important;
  color: #fff !important;
}

.slick-dots li {
  margin: 0 !important;
}

.lan_btn {
  border: none;
  background-color: transparent;
}

.highlight_keyword {
  background-color: #f3cb2f;
}

.cp_bn_areaz {
  position: relative;
}

.bn_infoz::after {
  content: "";
  width: 80%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../image/pdc/cp_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left top;
  z-index: -1;
}

.cp_bn_areaz .bn_infoz {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
}

.breadcrumb_block {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  padding: 10px 12px;
}

.bn_infoz .txt_xxl {
  width: 60vw;
  font-size: 28px;
}

@media(max-width:1399px) {
  .breadcrumb_block {
    padding: 10px 24px;
  }

  .bn_infoz::after {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .bn_infoz {
    padding: 0 12px !important;
  }

  .bn_infoz .txt_xxl {
    width: 100%;
  }

  .bn_infoz::after {
    display: none;
  }

  .bn_infoz .txt_xxl {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .bn_infoz .txt_xxl {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .bn_infoz .txt_xxl {
    font-size: 18px;
  }
}