@charset "UTF-8";
* {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 1.1px;
  font-family: 微軟正黑體, sans-serif;
}

body.en {
  letter-spacing: 0px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: bold;
  font-family: "Noto Serif TC", serif;
}

h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #cb9946;
}

h3 {
  padding-left: 15px;
  border-left: 3px solid #cb9946;
  margin-bottom: 20px;
  margin-top: 30px;
}

h5 {
  text-align: center;
}

.bg-body-tertiary {
  background-color: #678fa6 !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar a {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}
.navbar a.nav-link:hover {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.navbar a.nav-link:active {
  color: #fff;
}
.navbar .nav-link.show {
  color: #fff;
}
.navbar span {
  font-size: 12px;
}
.navbar img {
  width: 160px;
}

ul.dropdown-menu a {
  color: #000;
  font-size: 14px;
}
ul.dropdown-menu a:hover {
  background-color: #678fa6;
  color: #fff;
}

a {
  color: #e3b66c;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #f6dfac;
}

section p {
  line-height: 30px;
  text-align: justify;
  text-justify: distribute;
}

.pic {
  background-image: url(../images/picbg.png);
  background-size: cover;
}

p.i {
  font-style: italic;
  color: #666;
  font-size: 15px;
}

img {
  width: 100%;
}

span {
  font-weight: 800;
}

section {
  padding-bottom: 20px;
  padding-top: 30px;
}

section li {
  margin-bottom: 10px;
}

section ul > li > ul > li {
  margin-bottom: 0px;
}

.map {
  margin-top: 40px;
  margin-bottom: 20px;
}

figure img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
figure:hover img {
  /* 圖片稍微放大 */
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.figure-caption {
  text-align: justify;
  text-justify: distribute;
}

.rounded {
  border-radius: 0 !important;
}

.campusimprints {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

footer {
  background-color: #678fa6;
  padding: 20px;
}
footer p {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
}

#scrollToTop {
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  text-indent: -99999em;
  display: none;
  cursor: pointer;
  z-index: 2;
  background: #f6dfac url(../images/go-to-top.png) center center no-repeat;
}
#scrollToTop:hover {
  text-decoration: none;
  background-color: #e3b66c;
}