@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800;900&display=swap');
body, button, input, select, textarea, h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif, 'Noto Sans', 'Noto Sans TC', sans-serif;
  letter-spacing: 1px;
}
body {
  overflow-x: hidden;
  background-color: #fffdf8;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  font-size: 1rem;
}
.img_hover {
  line-height: 0px;
  position: relative;
  overflow: hidden;
  margin: auto;
  float: none;
  clear: none;
  z-index: 0;
}
.img_hover img {
  -webkit-filter: opacity(100%); /* Safari */
  filter: opacity(100%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transform: scale(1, 1);
}
.img_hover img:hover, a:hover .img_hover img {
  -webkit-filter: opacity(20%); /* Safari */
  filter: opacity(100%);
  transform: scale(1.1, 1.1);
}
div:focus {
  outline: none;
}
.gotop {
  position: fixed;
  right: 10px;
  bottom: 25%;
  z-index: 9999;
}
/*color*/
.main_bg_color {
  background-color: #ff9500;
}
.orange_bg_color {
  background-color: #ff8042;
}
.green_bg_color {
  background-color: #03c215;
}
.gb_bg_color {
  background-color: #67c696;
}
.red_bg_color {
  background-color: #F00;
}
.bule_bg_color {
  background-color: #00baed;
}
.pink_bg_color {
  background-color: #ff6645;
}
.facebook_color {
  background-color: #0866ff;
}
.line_color {
  background-color: #00b900;
}
/*breadcrumb*/
.breadcrumb {
  color: #333;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.breadcrumb-item.active, .breadcrumb-item a:hover {
  color: #ff9500;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0;
  color: #333;
  content: var(--bs-breadcrumb-divider, "〉");
}
/*form*/
.form-control {
  line-height: 1.75;
}
.form-control:focus {
  border-color: #fff;
  border: 1px solid #ff9500;
  box-shadow: 0 0 0 0 transparent;
}
.form-select:focus {
  border-color: #fff;
  border: 1px solid #ff9500;
  box-shadow: 0 0 0 0 transparent;
}
.form-select {
  line-height: 28px;
}
textarea {
  resize: none;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 1;
  color: inherit;
}
/*btn*/
.btn:focus {
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}
.main_btn {
  color: #57b3a5;
  font-size: 16px;
  background-color: #fff;
  padding: 8px 20px 8px 40px;
  border-radius: 50px;
  position: relative;
  border: 1px solid #57b3a5;
}
.main_btn:hover, a:hover.main_btn {
  background-color: #57b3a5;
  color: #fff;
  border: 1px solid #57b3a5;
}
.main_btn::before {
  position: absolute;
  top: 8px;
  left: 0px;
  font-family: "FontAwesome";
  content: "\f0e2";
  font-size: 16px;
  padding: 0 15px;
}
.more_btn {
  color: #ff9500;
  font-size: 16px;
  background-color: #fff;
  padding: 8px 20px 8px 40px;
  border-radius: 50px;
  position: relative;
  border: 1px solid #ff9500;
}
.more_btn:hover, a:hover.more_btn {
  background-color: #ff9500;
  color: #fff;
  border: 1px solid #fff;
}
.more_btn::before {
  position: absolute;
  top: 8px;
  left: 0px;
  font-family: "FontAwesome";
  content: "\f105";
  font-size: 16px;
  padding: 0 15px;
}
.search_btn {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  border: 0;
}
/*文字自動省略*/
.font_vertical {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 75px;
}
/*頁次*/
.pagination {
  justify-content: center;
}
.page-link {
  color: #333;
  border-radius: 50px;
  margin: 0 10px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  background-color: #d9d9d9;
  border: 0;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #ff9500;
  border-color: #ff9500;
}
.page-link:hover {
  color: #fff;
  background-color: #ff9500;
  border-color: #ff9500;
}
.page-link:focus {
  z-index: 3;
  color: #fff;
  background-color: #ff9500;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}
.page-item:first-child .page-link {
  border-radius: 50px;
}
.page-item.active .page-link {
  border-radius: 50px;
}
.page-item:last-child .page-link {
  border-radius: 50px;
}
/*社群*/
ul.social_media {
  position: relative;
  padding-left: 0px;
  display: inline-block;
  margin-bottom: 0px;
  text-align: center;
}
ul.social_media li {
  display: inline-block;
  position: relative;
}
ul.social_media li span {
  margin: auto 10px;
}
ul.social_media li i {
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 20px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
}
.top_link {
  color: #333;
  font-size: 14px;
}
.top_link i {
  color: #ff9500;
  margin-right: 5px;
}
.top_link:hover {
  color: #ff9500;
}
/*nav*/
.navbar {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.navbar-light .navbar-nav .nav-link {
  color: #fff;
  line-height: 20px;
}
.navbar-light .navbar-toggler {
  border: 0;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0;
}
.nav-item {
  position: relative;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 15px 0px;
}
.navbar-light:hover .navbar-nav:hover .nav-link:hover {
  color: #ffe4c6;
  font-weight: 600;
}
.dropdown-toggle::after {
  position: absolute;
  right: 10px;
  font-size: 16px;
  font-family: "FontAwesome";
  content: '\f107';
  font-weight: 700;
  border: 0;
  top: 15px;
  color: #fff;
}
.dropdown-menu {
  padding: 0 0;
  margin-bottom: 20px;
}
a.dropdown-item {
  padding: 10px 10px 10px 30px;
  background-color: #fffdf8;
  border: 0;
  font-size: 16px;
  position: relative;
  border-radius: 0;
  color: #5c2205;
}
a:hover.dropdown-item {
  background-color: #ff9500;
  color: #fff;
}
a.dropdown-item::before {
  position: absolute;
  left: 10px;
  font-size: 14px;
  font-family: "FontAwesome";
  content: '\f0da';
  font-weight: 700;
  border: 0;
  top: 13px;
  color: #5c2205;
}
a:hover.dropdown-item::before {
  color: #fff;
}
.accordion-body {
  padding: 0px 10px 25px 10px;
}
/*mobile_dropdown*/
.accordion-button {
  position: relative;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #ff9500;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #ff9500;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  transition: transform .2s ease-in-out;
  position: absolute;
  top: 35%;
  right: 15px;
  content: "\f107";
  color: #ff9500;
  font-size: 20px;
  font-family: FontAwesome;
  line-height: 1;
  z-index: 1;
  background-image: none;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(-180deg);
  position: absolute;
  top: 25%;
  right: 15px;
  color: #fff;
}
ul.mobile_dropdown {
  list-style: none;
  padding: 0;
}
ul.mobile_dropdown li a {
  display: block;
  color: #333;
  padding: 10px 10px 10px 30px;
  font-size: 15px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #eee;
  background-color: #fffdf8;
  text-align: left;
  position: relative;
}
ul.mobile_dropdown li a:hover {
  background-color: #fffdf8;
  color: #ff9500;
  border-radius: 0px;
}
ul.mobile_dropdown li a::before {
  position: absolute;
  top: 25%;
  left: 15px;
  font-size: 16px;
  font-family: "FontAwesome";
  content: '\f0da';
  font-weight: 700;
}
/*header*/
.logo_area {
  max-width: 230px;
  display: inline-block;
  text-align: center;
}
/*footer*/
.f_logo {
  max-width: 120px;
  width: 100%;
}
.cpr_area {
  position: relative;
  z-index: 2;
}
.cpr_area::before {
  width: 100%;
  height: 1px;
  background-color: #ff9500;
  position: absolute;
  left: 0;
  top: 50%;
  content: '';
  z-index: 0;
}
.cpr_text {
  font-size: 14px;
  background-color: #fffdf8;
  padding: 15px 25px;
  position: relative;
  z-index: 5;
  display: inline-block;
}
/*main*/
.link_line {
  background-image: url(../images/link_line.png);
  width: 100%;
  height: 35px;
  background-repeat: repeat-x;
  background-position: center bottom;
}
.banner_title {
  font-size: 20px;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
  font-weight: 600;
  display: inline-block;
  padding: 0 10px;
}
.banner_title::after {
  background-image: url(../images/border_orange.png);
  background-size: auto;
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  left: 15%;
  bottom: -35px;
  width: 70%;
  height: 25px;
  content: '';
}
.banner_title_e {
  font-size: 40px;
  color: #ff9500;
  text-transform: uppercase;
}
.banner_title_index {
  font-size: 28px;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
  font-weight: 600;
  display: inline-block;
  padding: 0 10px;
}
.banner_news {
  background-color: #67c696;
  border-radius: 50px;
  padding: 10px 30px;
  position: relative;
  text-align: center;
  font-size: 24px;
  color: #fff;
  display: inline-block;
  margin: auto;
}
.news_area {
  position: relative;
  text-align: center;
}
.news_area::before {
  width: 100%;
  height: 25px;
  background-image: url("../images/news_line.png");
  background-position: center center;
  background-repeat: repeat-x;
  position: absolute;
  top: 25%;
  left: 0;
  content: '';
}
.banner_news img {
  width: 40px;
}
/*side*/
ul.side_menu_box {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin-top: 40px;
}
ul.side_menu_box li {
  display: inline-block;
  position: relative;
  margin-left: 15px;
  margin-bottom: 40px;
}
ul.side_menu_box li a {
  color: #fff;
  font-size: 16px;
  position: relative;
  padding: 10px 25px 10px 30px;
  background-color: #ff9500;
  border: 1px solid #ff9500;
  border-radius: 50px;
}
ul.side_menu_box li a:hover, ul.side_menu_box li a.current {
  color: #fff;
  background-color: #ff9500;
  border: 1px solid #ff9500;
}
ul.side_menu_box li a::after {
  position: absolute;
  top: 24%;
  left: 15px;
  font-size: 16px;
  font-family: "FontAwesome";
  content: '\f0da';
  font-weight: 700;
}
/*album*/
.album_box {
  background-color: #fff;
  border-radius: 80px 80px 30px 30px / 50px 50px 30px 30px;
  border: 1px solid #ff9500;
}
.album_box a:hover .card-title, a:hover .card-title {
  color: #ff9500;
}
.line_style {
  position: relative;
  width: 100%;
  height: 25px;
}
.line_style::before {
  background-image: url("../images/border_green.png");
  background-size: auto;
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 25px;
  content: '';
}
.dot_style {
  position: relative;
  width: 100%;
  height: 25px;
}
.dot_style::before {
  background-image: url("../images/dot_line.png");
  background-size: auto;
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 25px;
  content: '';
}
.show_box {
  background-color: #fff;
  border-radius: 30px 30px;
  border: 1px solid #ff9500;
  padding: 20px;
}
.n_date {
  text-align: center;
  border: 1px solid #57b3a5;
  font-size: 16px;
  border-radius: 50px;
  padding: 2px 15px;
  color: #57b3a5;
  width: auto;
}
.n_date span {
  font-size: 16px;
}
.border-end {
  border-right: 1px solid #fffdf8 !important;
}
/*table*/
.table_scroll {
  height: 500px;
  overflow-y: scroll;
}
.table_scroll::-webkit-scrollbar {
  width: 8px;
  height: 15px;
  background-color: #999; /* or add it to the track */
}
/* Add a thumb */
.table_scroll::-webkit-scrollbar-thumb {
  background: #ff9500;
  border: 1px solid #ff9500;
  border-radius: 10px;
}
.table-responsive > .table > tbody > tr > td, .table-responsive > .table > thead > tr > th {
  white-space: nowrap;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table thead th {
  background-color: #57b3a5;
  color: #fff;
  padding: 15px 5px;
  text-align: center;
}
.table thead th:nth-child(3) {
  width: 60%;
}
.table thead th:nth-child(1) {
  min-width: 150px;
}
.table tbody td {
  padding: 15px 5px;
  text-align: center;
  position: relative;
}
.table tbody tr th {
  position: relative;
  padding: 15px 5px 15px 30px;
}
.table tbody tr td:nth-child(3) {
  text-align: left;
}
.table tbody tr th::before {
  position: absolute;
  left: 10px;
  font-size: 16px;
  font-family: "FontAwesome";
  content: '\f0da';
  font-weight: 700;
  border: 0;
  top: 15px;
  color: #ff9500;
}
.table tbody a {
  display: block;
}
.table tbody a:hover {
  color: #ff9500;
  text-decoration: underline;
}
.rotate_box {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ff9500;
  padding: 20px;
  line-height: 42px;
  text-align: center;
}
i.rotate_icon {
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 20px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  margin: 0 10px;
}
.ser_box {
  position: relative;
  text-align: center;
}
.ser_box p {
  font-size: 18px;
}
a:hover .ser_box p {
  color: #3ea100;
  font-weight: 600;
}
a .ser_icon {
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 150px;
  background-color: #f3f3f3;
  margin: auto;
  margin-bottom: 20px;
  padding: 15px;
}
a:hover .ser_icon {
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 150px;
  background-color: #ff9500;
  margin: auto;
  margin-bottom: 20px;
  padding: 15px;
  border: 10px solid #ffe4c6;
}
.ser_icon img {
  position: relative;
  z-index: 2;
}
.stop_box {
  position: relative;
  text-align: center;
}
a .stop_icon, .stop_icon {
  position: relative;
  width: 250px;
  height: 250px;
  line-height: 250px;
  border-radius: 150px;
  margin: auto;
  margin-bottom: 20px;
  background-position: center center;
  background-size: cover;
}
.n_box_orange {
  border: 1px solid #ff9500;
  border-radius: 25px;
  position: relative;
  min-height: 350px;
}
.n_box_orange_title {
  background-color: #ff9500;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  padding: 20px 20px 20px 40px;
  color: #fff;
  font-size: 24px;
  line-height: 42px;
}
ul.news_list_orange {
  list-style: none;
  padding: 20px 20px 0px 30px;
}
ul.news_list_orange li {
  position: relative;
  padding: 5px 5px 5px 25px;
}
ul.news_list_orange li::before {
  position: absolute;
  top: 15%;
  left: 0px;
  font-size: 10px;
  font-family: "FontAwesome";
  content: '\f111';
  font-weight: 700;
  color: #ff9500;
}
.n_box_green {
  border: 1px solid #67c696;
  border-radius: 25px;
  position: relative;
  min-height: 350px;
}
.n_box_green_title {
  background-color: #67c696;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  padding: 20px 20px 20px 40px;
  color: #fff;
  font-size: 24px;
  line-height: 42px;
}
ul.news_list_green {
  list-style: none;
  padding: 20px 20px 0px 30px;
}
ul.news_list_green li {
  position: relative;
  padding: 5px 5px 5px 25px;
}
ul.news_list_green li::before {
  position: absolute;
  top: 15%;
  left: 0px;
  font-size: 10px;
  font-family: "FontAwesome";
  content: '\f111';
  font-weight: 700;
  color: #67c696;
}
.n_box_green p a, .n_box_orange p a {
  color: #333;
  text-decoration: underline;
}
.n_box_green p a:hover, .n_box_orange p a:hover {
  color: #ff9500;
  text-decoration: underline;
}
.search_box {
  background-color: #fff;
  border: 3px solid #ff9500;
  border-radius: 30px;
  padding: 30px 20px 30px 20px;
  position: relative;
}
.search_title {
  width: 100px;
  height: 100px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background-color: #ff9500;
  font-size: 24px;
  border-radius: 50%;
  padding-top: 20px;
}
.search_btn1 {
  background-color: #ff9500;
  color: #fff;
  border-radius: 50px;
  padding: 5px 15px;
}
.search_btn1:hover {
  background-color: #fff;
  color: #ff9500;
  border: 1px solid #ff9500;
  border-radius: 50px;
  padding: 5px 15px;
}
.search_icon {
  position: absolute;
  left: 5%;
  bottom: -15px;
  width: 90%;
  text-align: center;
}
.search_icon img {
  width: 100%;
}
.banner_icon {
  width: 40%;
  position: absolute;
  right: 0;
  bottom: -10px;
  text-align: end;
}
.banner_icon img {
  max-height: 50px;
}
@media (min-width: 360px) {}
@media (min-width: 370px) {}
@media (min-width: 414px) {}
@media (min-width: 480px) {}
@media (min-width: 576px) {
  /*footer*/
  .f_logo {
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  .n_date {
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #57b3a5;
    font-size: 16px;
    border-radius: 50px;
    padding: 20px 0;
    color: #57b3a5;
  }
  .n_date span {
    font-size: 45px;
  }
  .border-end {
    border-right: 1px solid #57b3a5 !important;
  }
  .search_box {
    margin-top: -50px;
    z-index: 999;
    padding: 30px 20px 50px 20px;
  }
}
@media (min-width: 992px) {
  /*header*/
  .logo_area {
    max-width: 320px;
    text-align: left;
  }
  /*nav*/
  .dropdown-toggle::after {
    right: 10px;
    top: 10px;
    display: none;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 20px;
  }
  .nav-item::after {
    position: absolute;
    right: 0px;
    font-size: 16px;
    font-family: "FontAwesome";
    content: '\f142';
    font-weight: 700;
    border: 0;
    top: 14px;
    color: #fff;
  }
  .nav-item:nth-child(1)::before {
    position: absolute;
    left: 0px;
    font-size: 16px;
    font-family: "FontAwesome";
    content: '\f142';
    font-weight: 700;
    border: 0;
    top: 14px;
    color: #fff;
  }
  /*pc 滑動下拉*/
  .dropdown-menu li:hover .sub-menu {
    visibility: visible;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  /*album*/
  .show_box {
    padding: 30px;
  }
  .ser_box:after {
    background-image: url("../images/dot_line_v.png");
    background-repeat: repeat-y;
    width: 15px;
    height: 100%;
    background-position: center center;
    background-size: 100%;
    content: '';
    position: absolute;
    top: 0;
    right: -35px;
  }
  a .stop_icon {
    width: 230px;
    height: 230px;
    line-height: 230px;
  }
}
@media (min-width: 1200px) {
  /*nav*/
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 30px;
  }
}
@media (min-width: 1400px) {
  /*nav*/
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 35px;
  }
  a .stop_icon {
    width: 300px;
    height: 300px;
    line-height: 300px;
  }
}
@media (min-width: 1600px) {}
@media (min-width: 1900px) {}