<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

@import url(http://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url(http://fonts.googleapis.com/earlyaccess/cwtexhei.css);
@import url('http://fonts.googleapis.com/css?family=Libre+Baskerville:400italic');
@import url('http://fonts.googleapis.com/css?family=Lato:400,700,400italic');

/*font-family: 'cwTeXHei','Noto Sans TC', sans-serif;*/

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-family: Verdana, 'Microsoft JhengHei', '微軟正黑體', '新細明體',
    '蘋果儷黑體', Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: #454545;
}

html,
body {
  height: 100%;
  color: #454545;
  font-size: 15px;
}

.clear:after {
  content: '';
  display: table;
  clear: both;
}

#wrapper-main {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  padding-top: 7.5rem;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/*================== header ==================*/

#logo {
    float: left;
    width: 100%;
    max-width: 260px;
    background: unset;
    padding: unset;
    margin: unset;
    font-size: 36px;
    font-weight: 500;
    line-height: 50px;
}

header {
  background-color: #fff;
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
}

.logo_box {
  padding-left: 15px;
}

.top_menu_box {
  padding-right: 15px;
}

.header_wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.fb_icon {
  margin-right: 15px;
}

#burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: transparent;
  height: 22px;
  border: 0;
  cursor: pointer;
  position: relative;
  width: 30px;
}

.icon-bar {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 1px;
  background: #454545;
  transition: 0.3s;
  position: absolute;
}

#burger .icon-bar:nth-of-type(1) {
  top: 0;
}

#burger .icon-bar:nth-of-type(3) {
  bottom: 0;
}

#burger.open .icon-bar:nth-of-type(1) {
  transform: rotate(45deg);
  top: 11px;
}

#burger.open .icon-bar:nth-of-type(2) {
  transform: scale(0);
}

#burger.open .icon-bar:nth-of-type(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

nav {
  position: fixed;
  width: 30%;
  top: 100px;
  z-index: 9999;
  /* background: rgba(245, 107, 107, 0.9); */
  background: #fc9595;
  transition: 0.5s;
  right: -100vw;
  overflow-y: scroll;
  height: calc(100% - 80px);
  padding-bottom: 100px;
}

nav.open {
  right: 0;
}

nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nav_list {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 45px;
  background-color: rgba(255, 255, 255, 0.95);
}

nav ul .nav_box {
  width: 100%;
  margin: 20px 0;
  cursor: pointer;
  text-align: center;
  padding-bottom: 10px;
}

nav .nav &gt; .nav_box &gt; .nav_btn:after {
  display: block;
  width: 25px;
  font: normal normal normal 14px/3 FontAwesome;
  font-size: 9px;
  content: '\f107';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

nav .nav li &gt; a {
  display: inline-flex;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  width: 100%;
}

nav .nav li &gt; a.exh-title {
  color: #f56b6b;
  line-height: 48px;
}

.nav_list li {
  width: 100%;
}

nav ul.nav li.nav_box ul.nav_list li a {
  display: block;
  color: #f56b6b;
  width: 100%;
}

.nav_btn {
  font-weight: 700;
  color: #fff;
}

.nav .open &gt; a,
.nav .open &gt; a:hover,
.nav .open &gt; a:focus,
.nav &gt; li &gt; a:hover,
.nav &gt; li &gt; a:focus {
  background-color: rgba(255, 255, 255, 0.95);
  color: #f56b6b;
}

ul#top-menu {
  display: flex;
  font-size: 14px;
  margin-bottom: 0;
  align-items: center;
}

ul#top-menu li:last-of-type {
  display: flex;
  align-items: center;
}

ul#top-menu li:after {
  content: '｜';
  margin: 15px;
  color: #acacac;
}

ul#top-menu li:last-of-type:after {
  display: none;
}

ul#top-menu a:hover {
  color: #f56b6b;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  nav {
    height: calc(100% - 70px);
    width: 100%;
  }
  .logo_box {
    padding-left: 0;
  }
  .top_menu_box {
    padding-right: 0;
  }
}

/*================== /header ==================*/

/*================== Navigation ================== */

.container &gt; .navbar-header {
  width: 100%;
  padding-top: 20px;
  margin: 0;
}

.navbar-custom {
  -webkit-transition: background 0.3s cubic-bezier(0.3, 0.1, 0.58, 1),
    padding 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  -moz-transition: background 0.3s cubic-bezier(0.3, 0.1, 0.58, 1),
    padding 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  -o-transition: background 0.3s cubic-bezier(0.3, 0.1, 0.58, 1),
    padding 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: background 0.3s cubic-bezier(0.3, 0.1, 0.58, 1),
    padding 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.navbar-custom {
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  height: 100%;
}

.navbar-custom .navbar-brand {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
  padding-top: 0;
  padding-bottom: 0;
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 20px;
  color: #454545;
}

.navbar-custom a,
.navbar-custom .navbar-brand {
  color: #454545;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.navbar-custom .nav li &gt; a {
  position: relative;
  font-family: 'Noto Sans TC';
}

.navbar-custom .nav &gt; li &gt; a:focus,
.navbar-custom .nav &gt; li &gt; a:hover,
.navbar-custom .nav .open &gt; a,
.navbar-custom .nav .open &gt; a:focus,
.navbar-custom .nav .open &gt; a:hover,
.navbar-custom .dropdown-menu &gt; li &gt; a:focus,
.navbar-custom .dropdown-menu &gt; li &gt; a:hover {
  background: none;
  color: #f56b6b;
}

/* Navbar toggle */

.navbar-custom .navbar-toggle {
  margin: 5px 0;
}

.navbar-custom .navbar-toggle:active {
  background-color: #e5e5e5;
}

.navbar-custom .navbar-toggle .icon-bar {
  background: #111;
}

/* Navbar dropdown */

.navbar-custom .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-custom .dropdown-menu &gt; li &gt; a {
  border: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  padding: 11px 40px 11px 15px;
}

.navbar-custom .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  right: auto;
  margin-top: -1px;
}

.leftauto {
  right: 0 !important;
  left: auto !important;
}

.navbar-custom .dropdown-menu.left-side {
  right: 100%;
  left: auto;
}

.navbar-custom .dropdown-toggle:after {
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  margin-top: -5px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 9px;
  content: '\f107';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar-custom .navbar-nav &gt; .dropdown &gt; .dropdown-toggle {
  padding-right: 28px;
  font-family: 'Noto Sans TC';
  line-height: 1.8;
}

.navbar-custom .navbar-nav &gt; .dropdown &gt; .dropdown-toggle:after {
  position: absolute;
  display: block;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 9px;
  content: '\f107';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navbar */

.navbar &gt; .container .navbar-brand,
.navbar &gt; .container-fluid .navbar-brand {
  /* 蓋bootsrap用 */
  margin-left: 0;
}

.navbar-custom .navbar-brand {
  padding-left: 0;
}

.navbar-custom .navbar-nav &gt; li &gt; a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-transparent {
  background-color: rgba(255, 255, 255, 0.95);
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0 0 1px rgba(17, 17, 17, 0.4);
  -moz-box-shadow: 0 0 1px rgba(17, 17, 17, 0.4);
  box-shadow: 0 0 1px rgba(17, 17, 17, 0.4);
  transition: 0.5s;
}

/* Tra */

.navbar-transparent.navbar-dark .navbar-nav &gt; li &gt; a,
.navbar-transparent.navbar-dark .navbar-brand {
  color: rgba(255, 255, 255, 0.95);
}

.navbar-transparent.navbar-dark .nav &gt; li &gt; a:focus,
.navbar-transparent.navbar-dark .nav &gt; li &gt; a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-custom .dropdown-menu .dropdown-toggle:after {
  position: absolute;
  display: block;
  right: 9px;
  top: 50%;
  margin-top: -6px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  content: '\f105';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar-custom .dropdown-menu {
  position: absolute;
  display: block;
  visibility: hidden;
  opacity: 0;
}

.navbar-custom .open &gt; .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.navbar-right .dropdown-menu {
  right: auto;
  left: 0;
}

/* 大館連結樣式 */

.exh-title:after {
  content: '\f00e';
  font-family: FontAwesome;
  margin: 0 10px;
}

/* mobile-icon */

.mobile-icon {
  display: none;
  width: 100%;
  font-size: 1.5rem;
  margin-top: 10px;
  padding: 10px 0;
  text-align: center;
  background: #f5f5f5;
}

.mobile-icon a {
  display: block;
  font-family: 'Noto Sans TC';
  margin: 15px 0;
}

.mobile-icon a:hover,
.mobile-icon a:active {
  text-decoration: none;
  color: #f56b6b;
}

.mobile-icon a .fa {
  color: #f56b6b;
  margin-right: 5px;
}

/*================== /Navigation ================== */

/*==================== footer =====================*/

footer {
  background: #e9e9e9;
}

#footer {
  width: 100%;
  padding-top: 75px;
  overflow: hidden;
  min-height: 120px;
  line-height: 36px;
  word-break: break-all;
}

#footer a {
  transition: 0.5s;
}

#footer a:hover {
  color: #f56b6b;
}

#footer-copyright {
  width: 100%;
  margin-top: 60px;
  padding: 30px 0;
  text-align: center;
  border-top: solid 1px #454545;
}

/*================== /footer ====================*/

/*================== Preloader ====================*/

.page-loader {
  background: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100000;
}

.loader {
  background: #ddd;
  position: absolute;
  display: inline-block;
  height: 40px;
  width: 40px;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
  text-indent: -9999em;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/*================== /Preloader ====================*/

/*================== Scroll to top ====================*/

.scroll-up {
  position: fixed;
  display: none;
  bottom: 10px;
  right: 10px;
  z-index: 999;
}

.scroll-up a {
  background: #aaaaaa;
  display: block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 32px;
  font-size: 2rem;
  color: #fff;
  opacity: 0.6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.scroll-up a:hover,
.scroll-up a:active {
  opacity: 1;
  color: #000;
}

/*================== /Scroll to top ====================*/

@media (max-width: 1280px) {
  .drawer-nav .container {
    width: 96%;
    margin: 0 2%;
  }
  ul#top-menu li {
    display: none;
  }
  ul#top-menu li:last-of-type {
    display: flex;
    height: 20px;
  }
  .footer-link li {
    width: 50%;
  }
  /* mobile-icon */
  .mobile-icon {
    display: block;
  }
}

/* @media (max-width: 992px) {
  ul#top-menu li {
    display: none;
  }
  ul#top-menu li:last-of-type {
    display: flex;
    height: 20px;
  }
  .footer-link li {
    width: 50%;
  }
  .mobile-icon {
    display: block;
  }
} */

@media (max-width: 768px) {
  .full {
    width: 100%;
    margin: 0 auto;
  }
  /* footer */
  #footer {
    padding-top: 50px;
  }
  #logo {
    width: 200px;
    font-size: 28px;
  }
  #footer {
    padding-top: 30px;
  }
  #footer-copyright {
    margin-top: 30px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  #wrapper-main {
    padding-top: 7rem;
  }
  .container &gt; .navbar-header {
    padding-top: 10px;
  }
  .container {
    width: 90%;
    margin: 0 5%;
    padding: 0;
  }
  .full {
    width: 100%;
    margin: 0 auto;
  }

  /* Navbar */
  .navbar-nav {
    margin: 0 -15px;
    overflow: hidden;
  }
  .navbar-custom {
    letter-spacing: 2px;
    font-size: 16px;
  }
  .navbar-transparent {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-transparent.logo {
    display: none !important;
  }
  .navbar-custom .navbar-nav .open .dropdown-menu &gt; li &gt; a,
  .navbar-custom .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 10px 25px;
  }
  .navbar-custom
    .navbar-nav
    .open
    .dropdown-menu
    .dropdown-menu
    .dropdown-header,
  .navbar-custom .navbar-nav .open .dropdown-menu .dropdown-menu &gt; li &gt; a {
    padding: 10px 35px;
  }
  .navbar-custom .dropdown-toggle:after,
  .navbar-custom .dropdown-menu .dropdown-toggle:after {
    right: 15px;
    content: '\f107';
  }
  .navbar-custom .nav &gt; .open &gt; .dropdown-toggle:after,
  .navbar-custom .dropdown-menu .dropdown.open .dropdown-toggle:after {
    right: 15px;
    content: '\f106';
  }
}
</pre></body></html>