@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+Serif+TC:wght@200;300;400;500;600;700;900&display=swap);
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1200px;
  }
}
a:focus, button:focus {
  outline: none !important;
  box-shadow: none !important;
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

h2 {
  font-size: 2.25rem;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
}
h2 span {
  color: #9D1E36;
}

h3 {
  font-size: 1.875rem;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
}

.red {
  color: #9D1E36;
}

.gray {
  color: #999;
}

.btn {
  border-radius: 3px;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-primary {
  background-color: #9D1E36;
  border-color: #9D1E36;
}
.btn-primary:hover {
  background-color: #70343F;
  border-color: #70343F;
}

.btn-outline-primary {
  border-color: #9D1E36;
  color: #9D1E36;
}
.btn-outline-primary:hover {
  background-color: #9D1E36;
  border-color: #9D1E36;
}
.btn-outline-primary:active {
  background-color: #9D1E36 !important;
  border-color: #9D1E36 !important;
}

.form-control {
  border-radius: 3px;
}

.datepicker {
  padding: 0px !important;
}
.datepicker .table-condensed {
  margin: 10px !important;
}

.input-group-append .input-group-text {
  border-radius: 0 3px 3px 0;
}
.input-group-append .input-group-text i {
  color: #999;
}

.form-check-input:checked {
  background-color: #9D1E36;
  border-color: #9D1E36;
}

.title-straight {
  width: 32px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 32px;
}
.title-straight::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 95px;
  background-color: #9D1E36;
}

.title-topline {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 3rem;
  position: relative;
  margin-bottom: 0px;
}
.title-topline::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 70px;
  background-color: #9D1E36;
  position: absolute;
  top: 0px;
  left: calc(50% - 1px);
}

.title-border-left {
  font-size: 1.5rem;
  border-left: 3px solid #9D1E36;
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.pagination {
  margin-bottom: 0;
}
.pagination a {
  color: #9D1E36;
}
.pagination a:hover {
  color: #fff;
  background-color: #9D1E36;
}
.pagination .page-item:first-child .page-link {
  border-radius: 50px 0 0 50px;
}
.pagination .page-item:last-child .page-link {
  border-radius: 0 50px 50px 0;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

form h4 {
  border-left: 3px solid #9D1E36;
  padding-left: 10px;
}

#pills-tab .nav-item .nav-link {
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
  font-size: 1.25rem;
  border-radius: 0;
  color: #231815;
  opacity: 0.5;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 20px;
  margin-right: 20px;
}
#pills-tab .nav-item .nav-link.active {
  opacity: 1;
  background-color: transparent;
  color: #9D1E36;
  border-bottom: 3px solid #9D1E36;
}

.table thead th {
  color: #9D1E36;
  border-bottom: 2px solid #9D1E36;
  background-color: transparent;
  text-align: center;
  padding: 10px;
}
.table thead th:nth-child(2) {
  text-align: left;
}
.table tbody th, .table tbody td {
  background-color: transparent;
  text-align: center;
  padding: 10px;
}
.table tbody th:nth-child(2), .table tbody td:nth-child(2) {
  text-align: left;
}

.modal-content .modal-title {
  font-size: 1.25rem;
  color: #9D1E36;
}
.modal-content .modal-body p {
  font-size: 1rem;
  color: #666;
}
.modal-content .modal-body h3 {
  font-size: 1.25rem;
}

.index-fade {
  opacity: 0;
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}
@keyframes fade {
  0% {
    opacity: 0;
    z-index: 9999;
  }
  100% {
    opacity: 1;
    z-index: 9999;
  }
}

.loading {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/loading-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  animation-name: loading-fade;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes loading-fade {
  0% {
    opacity: 1;
    z-index: 9999;
  }
  70% {
    opacity: 1;
    z-index: 9999;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.loading .loading-text {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: 1.75rem;
}
.loading .loading-text .t1 {
  opacity: 0;
  animation-name: fade1;
  animation-duration: 8s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}
@keyframes fade1 {
  0% {
    opacity: 0;
    z-index: 9999;
  }
  50% {
    opacity: 1;
    z-index: 9999;
  }
  80% {
    opacity: 1;
    z-index: 9999;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.loading .loading-text .t2 {
  opacity: 0;
  animation-name: fade2;
  animation-duration: 7s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
@keyframes fade2 {
  0% {
    opacity: 0;
    z-index: 9999;
  }
  50% {
    opacity: 1;
    z-index: 9999;
  }
  80% {
    opacity: 1;
    z-index: 9999;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.loading .loading-text .name {
  text-align: end;
  font-size: 1rem;
  opacity: 0;
  animation-name: fade3;
  animation-duration: 6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
@keyframes fade3 {
  0% {
    opacity: 0;
    z-index: 9999;
  }
  50% {
    opacity: 1;
    z-index: 9999;
  }
  80% {
    opacity: 1;
    z-index: 9999;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.loading .backview {
  width: auto;
  height: 60%;
  max-height: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation-name: backview-fade;
  animation-duration: 2.5s;
  animation-iteration-count: 1;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes backview-fade {
  0% {
    opacity: 1;
    z-index: 9999;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.loading .calligraphy {
  width: auto;
  height: 50%;
  max-height: 350px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: calligraphy-fade;
  animation-duration: 2.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
}
@keyframes calligraphy-fade {
  0% {
    opacity: 0;
    z-index: 9999;
  }
  50% {
    opacity: 1;
    z-index: 9999;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

.vid::after, .vid::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.video {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  webkit-transform: all 0.2s;
  transition: all 0.2s;
}
.video img {
  width: 100%;
}
.video:hover {
  opacity: 0.8;
  cursor: pointer;
}
.video .play {
  content: "";
  display: block;
  width: 65px;
  height: 65px;
  background-image: url(../images/play.png);
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -20px;
  transform: translate(-50%, -50%);
}
.video h5 {
  margin: 20px 0;
}

.swiper .swiper-button-next, .swiper .swiper-button-prev {
  right: 0px;
  background-image: url(../images/arrow-r.png);
  background-size: 29px 14px;
  width: 29px;
  height: 14px;
  top: 60%;
}
.swiper .swiper-button-next::after, .swiper .swiper-button-prev::after {
  display: none;
}
.swiper .swiper-button-next.swiper-button-disabled, .swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.swiper .swiper-pagination-bullet-active {
  background: #9D1E36;
}
.swiper .swiper-button-prev {
  background-image: url(../images/arrow-l.png);
  left: 0px;
}
.swiper .swiper-pagination-bullet {
  background: #999;
  opacity: 0.5;
}
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #9D1E36;
  opacity: 1;
}
.swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper.Swiper-Banner .swiper-wrapper {
  height: 100vh;
}
.swiper.Swiper-Record {
  padding: 0 15px;
}
.swiper.Swiper-Record .swiper-wrapper {
  margin-top: 35px;
  margin-bottom: 35px;
}
.swiper.Swiper-Record .swiper-wrapper .swiper-slide {
  background-color: transparent;
}
.swiper.Swiper-Record .swiper-wrapper .swiper-slide .record-box {
  margin-bottom: 0px;
}
.swiper.Swiper-photo {
  padding: 0 15px;
  margin-left: -12px;
  margin-right: -12px;
}
.swiper.Swiper-photo .swiper-wrapper .swiper-slide {
  border-radius: 5px;
  overflow: hidden;
}
.swiper.Swiper-post {
  padding: 0 15px;
  margin-top: 20px;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 80px;
}
.swiper.Swiper-post .swiper-wrapper .swiper-slide a {
  text-decoration: none;
  padding-left: 80px;
  height: 100px;
}
.swiper.Swiper-post .swiper-wrapper .swiper-slide a .img {
  border-radius: 5px;
  height: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
.swiper.Swiper-post .swiper-wrapper .swiper-slide a h3 {
  font-size: 1.125rem;
  color: #231815;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 12.5px 0;
}
.swiper.Swiper-post .swiper-wrapper .swiper-slide a:hover h3 {
  color: #9D1E36;
}
.swiper.Swiper-post .swiper-wrapper .swiper-slide a .data {
  background-color: rgba(157, 30, 54, 0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 12.5px 10px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 1rem;
}
.swiper.Swiper-post .swiper-wrapper .swiper-slide a .data small {
  display: block;
  font-weight: 300;
  font-size: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.swiper.Swiper-post .swiper-button-next, .swiper.Swiper-post .swiper-button-prev {
  top: 67%;
}

.index-banner {
  width: 100%;
  background-image: url(../images/banner.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.block .col-lg-6 {
  position: relative;
}
.block .text {
  padding-top: 130px;
  padding-bottom: 130px;
}
.block .text p {
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2em;
}
.block .text p.first-letter:first-letter {
  font-size: 3.125rem;
}
.block .photo {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}
.block .photo::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  background-image: url(../images/mask-r.svg);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  width: 90px;
  height: 100%;
  z-index: 10;
}
.block .photo .Swiper-Banner .swiper-wrapper {
  height: 460px;
}
.block.block-r, .block.block-l {
  background-size: 500px auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.block.block-r {
  background-image: url(../images/flower1.png);
  background-position: left top;
}
.block.block-r .title-straight {
  left: 140px;
}
.block.block-r .text {
  margin: 0 0 0 200px;
}
.block.block-r.lightgray-bg {
  background-color: #F9F7F8;
}
.block.block-r.lightgray-bg .photo::before {
  background-image: url(../images/mask-ry.svg);
}
.block.block-l {
  background-image: url(../images/flower2.png);
  background-position: right top;
}
.block.block-l .text {
  margin: 0 100px 0 90px;
}
.block.block-l .photo::before {
  top: 0;
  left: auto;
  right: -2px;
  background-image: url(../images/mask-l.svg);
}
.block.block-l.lightgray-bg {
  background-color: #F9F7F8;
}
.block.block-l.lightgray-bg .photo::before {
  background-image: url(../images/mask-ly.svg);
}
.block.block-poem {
  background-image: url(../images/photo3.jpg);
  background-size: cover;
  background-position: center center;
  min-height: 450px;
  position: relative;
  background-attachment: fixed;
}
.block.block-poem::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(142, 49, 65, 0.3);
}
.block.block-poem .box {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.block.block-poem .box h2 {
  margin-bottom: 30px;
}
.block.block-poem .box p {
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2em;
}
.block.block-record {
  padding-top: 80px;
  padding-bottom: 50px;
  background-color: #F9F7F8;
  background-image: url(../images/sky.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 500px auto;
}
.block.block-float {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-top: 0px;
}
.block.block-float .news, .block.block-float .history {
  width: 315px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  left: -315px;
  top: 50%;
  padding: 10px;
  webkit-transform: all 0.2s;
  transition: all 0.2s;
}
.block.block-float .news.active, .block.block-float .history.active {
  left: 0px;
}
.block.block-float .news small, .block.block-float .history small {
  font-size: 0.75rem;
  color: #9D1E36;
}
.block.block-float .news h4, .block.block-float .history h4 {
  font-size: 1.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.block.block-float .news h4 a, .block.block-float .history h4 a {
  color: #231815;
  text-decoration: none;
}
.block.block-float .news h4 a:hover, .block.block-float .history h4 a:hover {
  color: #9D1E36;
}
.block.block-float .news p, .block.block-float .history p {
  color: #666;
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.block.block-float .news .title, .block.block-float .history .title {
  background-color: #9D1E36;
  color: #fff;
  width: 40px;
  padding: 10px;
  text-align: center;
  height: 120px;
  position: absolute;
  top: 0;
  right: -40px;
  border-radius: 0 5px 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block.block-float .news .title:hover, .block.block-float .history .title:hover {
  cursor: pointer;
}
.block.block-float .news h3, .block.block-float .history h3 {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.block.block-float .news h3 i, .block.block-float .history h3 i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/news-icon.png);
  background-size: 16px 16px;
}
.block.block-float .history {
  left: auto;
  right: -315px;
}
.block.block-float .history.active {
  left: auto;
  right: 0px;
}
.block.block-float .history .title {
  right: auto;
  left: -40px;
  border-radius: 5px 0 0 5px;
}
.block.block-float .history .title h3 i {
  background-image: url(../images/history-icon.png);
}
.block.block-float .round-l, .block.block-float .round-r {
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: rgba(232, 232, 232, 0.3);
  text-align: center;
  text-decoration: none;
  color: #231815;
  line-height: 1.2em;
  position: fixed;
  left: 10px;
  bottom: 10px;
}
.block.block-float .round-l span, .block.block-float .round-r span {
  display: block;
  width: 65px;
  height: 65px;
  padding: 12.5px 10px;
  border-radius: 50%;
  background-color: #E8E8E8;
  position: absolute;
  left: 5px;
  top: 5px;
}
.block.block-float .round-r {
  left: auto;
  right: 10px;
}

#goToTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9;
}
#goToTop a {
  display: block;
  background-color: rgba(50, 50, 50, 0.6);
  border-radius: 50%;
  color: #FFF;
  font-size: 12px;
  width: 55px;
  height: 55px;
  line-height: 16px;
  padding: 12px 0;
  text-align: center;
  text-decoration: none;
  webkit-transform: all 0.2s;
  transition: all 0.2s;
}
#goToTop a:hover {
  background-color: #9D1E36;
}
#goToTop a span {
  display: block;
}

@media screen and (max-width: 992px) {
  h2 {
    font-size: 1.875rem;
  }
  #pills-tab .nav-item .nav-link {
    font-size: 1rem;
    margin-left: 10px;
    margin-right: 10px;
  }
  #pills-tab .nav-item .nav-link.active {
    opacity: 1;
    background-color: transparent;
    color: #9D1E36;
    border-bottom: 3px solid #9D1E36;
  }
  .title-straight {
    width: auto;
    text-align: center;
    position: static;
  }
  .title-straight::before {
    display: none;
  }
  .swiper.Swiper-Banner .swiper-wrapper {
    height: 600px;
  }
  .swiper.Swiper-post .swiper-wrapper, .swiper.Swiper-photo .swiper-wrapper {
    padding-bottom: 30px;
  }
  .swiper.Swiper-post a .img {
    height: 150px !important;
  }
  .index-banner {
    height: 600px;
  }
  .block {
    padding-top: 80px;
  }
  .block .title-straight {
    margin-bottom: 30px;
  }
  .block .text {
    margin: 0 40px;
    padding-top: 0px;
    padding-bottom: 50px;
  }
  .block .text p {
    font-size: 1rem;
  }
  .block .text p.first-letter:first-letter {
    font-size: 1.875rem;
  }
  .block .photo::before {
    background-image: url(../images/mask-t.svg);
    width: 100%;
    height: 25%;
    left: 0px;
    background-position: top center;
    background-size: 100% auto;
  }
  .block .photo .Swiper-Banner .swiper-wrapper {
    height: 400px;
  }
  .block.block-r, .block.block-l {
    background-attachment: scroll !important;
    background-size: 300px auto !important;
  }
  .block.block-r .text {
    margin: 0 40px;
  }
  .block.block-r.lightgray-bg .photo::before {
    background-image: url(../images/mask-ty.svg);
  }
  .block.block-l .row {
    display: flex;
    flex-direction: column-reverse;
  }
  .block.block-l .text {
    margin: 0 40px;
  }
  .block.block-l .photo::before {
    background-image: url(../images/mask-b.svg);
  }
  .block.block-l.lightgray-bg .photo::before {
    background-image: url(../images/mask-by.svg);
  }
  .block.block-poem .box p {
    font-size: 1rem;
  }
  .block.block-float .news, .block.block-float .history {
    top: 30%;
  }
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1rem;
  }
  html {
    position: relative;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #pills-tab .nav-item .nav-link {
    margin-left: 5px;
    margin-right: 5px;
  }
  .swiper.Swiper-Banner .swiper-wrapper {
    height: 90vh;
  }
  .index-banner {
    height: 90vh;
  }
  .block.block-float .news {
    top: 45%;
  }
  .block.block-float .history {
    top: 65%;
  }
  .block.block-float .round-l, .block.block-float .round-r {
    top: auto;
    bottom: 5%;
  }
}
header .navbar {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0;
}
header .navbar #navbarNav .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
  color: #231815;
}
header .navbar #navbarNav .navbar-nav .nav-link:hover {
  color: #9D1E36;
}
header .navbar #navbarNav .navbar-nav .nav-link.active {
  color: #9D1E36;
  font-weight: 600;
}
header .navbar #navbarNav .navbar-nav .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0px;
  overflow: hidden;
  border: none;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
  animation-name: menu-fade;
  animation-duration: 0.5s;
}
@keyframes menu-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header .navbar #navbarNav .navbar-nav .dropdown-menu li a {
  padding: 10px;
}
header .navbar #navbarNav .navbar-nav .dropdown-menu li a:hover {
  color: #fff;
  background-color: #9D1E36;
}
header .navbar #navbarNav .navbar-nav .dropdown-menu .dropdown-item.active {
  color: #fff;
  background-color: #9D1E36;
}
header .navbar .nav-item .dropdown-menu {
  display: none;
  margin-top: -10px;
}
header .navbar .nav-item:hover .dropdown-menu {
  display: block;
}
header .navbar .navbar-toggler {
  border: none;
  padding: 0px;
}
header .navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu-icon.svg);
}

@media screen and (min-width: 992px) {
  header .navbar #navbarNav .navbar-nav .nav-link {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  header .navbar #navbarNav .navbar-nav .nav-link.active::before, header .navbar #navbarNav .navbar-nav .nav-link.active::after {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #9D1E36;
    position: absolute;
    top: 0px;
    left: 50%;
  }
  header .navbar #navbarNav .navbar-nav .nav-link.active::after {
    top: auto;
    bottom: 0px;
    margin-left: 0;
    border: none;
  }
  header .navbar #navbarNav .navbar-nav .nav-link::after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  header .navbar #navbarNav .navbar-nav .dropdown-menu {
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: none;
    background-color: transparent;
  }
  header .navbar #navbarNav .navbar-nav .dropdown-menu li a {
    padding: 5px;
  }
}
footer {
  background-color: #70343F;
  padding-top: 80px;
  color: #fff;
}
footer h4 {
  letter-spacing: 2px;
}
footer .qrcode, footer .f-logo {
  width: 80%;
  max-width: 200px;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 5px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .btn-outline-light {
  font-size: 1rem;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  border-color: rgba(255, 255, 255, 0.5);
}
footer .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  text-decoration: none;
}
footer .pay-icon, footer .join-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../images/pay-icon.png);
  background-size: auto 22px;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
}
footer .join-icon {
  background-image: url(../images/join-icon.png);
}
footer .col {
  flex: 0 0 auto;
}
footer .col:nth-child(1) {
  width: 25%;
}
footer .col:nth-child(2) {
  width: 15%;
}
footer .col:nth-child(3) {
  width: 40%;
}
footer .col:nth-child(4) {
  width: 20%;
}
footer .copyright {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 20px;
  text-align: center;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 992px) {
  footer .col:nth-child(1), footer .col:nth-child(2), footer .col:nth-child(3), footer .col:nth-child(4) {
    width: 100%;
    text-align: center;
  }
  footer .qrcode {
    max-width: 100px;
  }
  footer ul {
    text-align: left;
  }
  footer ul li {
    text-indent: -80px;
    padding-left: 80px;
  }
}
@media screen and (max-width: 567px) {
  footer ul {
    padding: 0 20px;
  }
  footer .btn-outline-light {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.page-title {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  color: #fff;
}
.page-title .container {
  align-self: center;
  text-align: right;
  z-index: 1;
  padding-top: 80px;
}
.page-title::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(86, 54, 60, 0.3);
}
.page-title h1 {
  font-size: 2.5rem;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
}
.page-title ul {
  margin-bottom: 0px;
}
.page-title ul li {
  display: inline-block;
  font-family: "Noto sans TC", serif;
  font-weight: 400;
  font-size: 0.875rem;
}
.page-title ul li::after {
  content: ">";
}
.page-title ul li:last-child::after {
  display: none;
}
.page-title ul a {
  color: #fff;
  text-decoration: none;
}
.page-title ul a:hover {
  text-decoration: underline;
}

.accordion-flush .accordion-item {
  border: none;
  margin-bottom: 10px;
}
.accordion-flush .accordion-item .accordion-button {
  background-color: #F9F7F8;
  border-radius: 100px !important;
  font-weight: 600;
  font-size: 1.125rem;
}
.accordion-flush .accordion-item .accordion-button::after {
  background-image: url(../images/plus.svg);
  background-size: 14px;
  width: 14px;
  height: 14px;
  background-position: center center;
}
.accordion-flush .accordion-item .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #9D1E36;
}
.accordion-flush .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus.svg);
}
.accordion-flush .accordion-item .accordion-collapse .accordion-body {
  font-weight: 400;
  line-height: 1.6em;
  color: #666;
}
.accordion-flush .accordion-item .accordion-collapse .accordion-body ol, .accordion-flush .accordion-item .accordion-collapse .accordion-body ul {
  padding-left: 20px;
}
.accordion-flush .accordion-item .accordion-collapse .accordion-body ol li, .accordion-flush .accordion-item .accordion-collapse .accordion-body ul li {
  line-height: 1.6em;
}
.accordion-flush .accordion-item .accordion-collapse .accordion-body ol li ol, .accordion-flush .accordion-item .accordion-collapse .accordion-body ul li ol {
  margin-top: 0px;
}
.accordion-flush .accordion-item .accordion-collapse .accordion-body ol li ol li, .accordion-flush .accordion-item .accordion-collapse .accordion-body ul li ol li {
  list-style: lower-alpha;
}

.block.page .container {
  position: relative;
}
.block.page .container .title-straight {
  left: 16px;
}
.block.page .container .text {
  margin: 0 0 0 100px;
  padding-top: 0px;
  padding-bottom: 80px;
}
.block.page .container .text .small {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Noto sans TC", serif;
  line-height: 1.6em;
  color: #666;
}
.block.page .container .text .small p {
  font-size: 1rem;
  font-family: "Noto sans TC", serif;
  font-weight: 400;
}
.block.page .container .text .project-list {
  display: flex;
  flex-wrap: wrap;
}
.block.page .container .text .project-list h4 {
  font-size: 1.125rem;
  flex: 0 0 auto;
  width: 10%;
  margin-bottom: 0;
  line-height: 1.8em;
  position: relative;
  top: -12px;
}
.block.page .container .text .project-list h4::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #9D1E36;
  width: 10px;
  height: 10px;
  top: 12px;
  right: -5px;
  border-radius: 50%;
}
.block.page .container .text .project-text {
  flex: 0 0 auto;
  width: 90%;
  padding-left: 2.5%;
  border-left: solid #9D1E36 1px;
  padding-bottom: 15px;
}
.block.page .container .text .project-text p {
  font-family: "Noto sans TC", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
}
.block.page .container .text .project-text img {
  width: 80%;
  max-width: 400px;
}
.block.page .container .text .project-text ol, .block.page .container .text .project-text ul {
  padding-left: 20px;
}
.block.page .container .text .project-text ol li, .block.page .container .text .project-text ul li {
  line-height: 1.6em;
}
.block.page .container .text .project-text ol li ol, .block.page .container .text .project-text ul li ol {
  margin-top: 0px;
}
.block.page .container .text .project-text ol li ol li, .block.page .container .text .project-text ul li ol li {
  list-style: lower-alpha;
}
.block.page .container .text .project-text p, .block.page .container .text .project-text img, .block.page .container .text .project-text ol, .block.page .container .text .project-text ul {
  margin-top: -12px;
  color: #666;
}
.block.page .container .text .chronology-list .col-md-6 {
  position: relative;
  padding-bottom: 30px;
}
.block.page .container .text .chronology-list .col-md-6::before {
  content: "";
  display: block;
  width: 40px;
  border-top: 1px dotted #9D1E36;
  position: absolute;
  top: 5px;
  right: 0px;
}
.block.page .container .text .chronology-list .col-md-6::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #9D1E36;
  z-index: 2;
  top: 0px;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.block.page .container .text .chronology-list .col-md-6 p {
  margin-bottom: 0;
}
.block.page .container .text .chronology-list .col-md-6:nth-child(odd) {
  text-align: right;
}
.block.page .container .text .chronology-list .col-md-6:nth-child(even) {
  border-left: 1px solid #9D1E36;
  padding-top: 30px;
}
.block.page .container .text .chronology-list .col-md-6:nth-child(even)::before {
  top: 37px;
  right: auto;
  left: 0;
}
.block.page .container .text .chronology-list .col-md-6:nth-child(even)::after {
  content: "";
  top: 32px;
  left: -5px;
}
.block.page .container .text .chronology-list h4 {
  padding: 0px 40px;
  color: #9D1E36;
  margin-top: -5px;
}
.block.page .container .text .chronology-text {
  padding: 0 40px;
}
.block.page .container .text .chronology-text p {
  font-family: "Noto sans TC", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
}
.block.block-contact, .block.block-photo {
  padding-bottom: 50px;
  background-color: #F9F7F8;
  background-image: url(../images/sky.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 500px auto;
}
.block.block-contact .container {
  max-width: 800px;
}

.post {
  max-width: 1000px;
  margin: 0 auto 50px auto;
}
.post .title {
  margin-bottom: 20px;
  padding-top: 80px;
  padding-left: 30px;
  border-left: 1px solid #9D1E36;
  position: relative;
}
.post .title::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #9D1E36;
  width: 10px;
  height: 10px;
  bottom: 0px;
  left: -5.5px;
  border-radius: 50%;
}
.post .title h1 {
  font-size: 1.875rem;
  font-family: "Noto Serif TC", serif;
}
.post .title .data {
  color: #999;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
}
.post .title .data i, .post .title .data strong {
  color: #9D1E36;
}
.post .title .data i {
  margin-right: 5px;
}
.post .title .data:last-child {
  display: block;
  margin-bottom: 0px;
}
.post .text {
  margin-left: 30px !important;
  padding-bottom: 30px !important;
  word-wrap: break-word;
}
.post .text img {
  border-radius: 5px;
  margin-bottom: 20px;
}
.post .text img.w-25 {
  display: inline-block;
  margin-right: -4px;
  width: 24.5% !important;
  margin-left: 0.5%;
}
.post .text img.w-50 {
  display: inline-block;
  margin-right: -4px;
  width: 49.5% !important;
  margin-left: 0.5%;
}
.post .text p {
  font-family: "Noto sans TC", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
}
.post .text .Swiper-Banner {
  margin-bottom: 20px;
}
.post .text .Swiper-Banner .swiper-wrapper {
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
}
.post .Swiper-post {
  margin-left: 15px !important;
}

.search {
  background-color: #F9F7F8;
}
.search .search-box {
  max-width: 1000px;
  margin: 0px auto 0px auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.contact-info {
  text-align: center;
  margin-top: 20px;
}
.contact-info .col-md-3, .contact-info .col-md-6 {
  padding-top: 20px;
  padding-bottom: 20px;
  border-right: 1px solid #eee;
  color: #666;
  font-size: 0.875rem;
}
.contact-info .col-md-3 h4, .contact-info .col-md-6 h4 {
  color: #231815;
  font-size: 1.125rem;
}
.contact-info .col-md-3 .pic, .contact-info .col-md-6 .pic {
  margin-bottom: 20px;
}
.contact-info .col-md-3 .pic img, .contact-info .col-md-6 .pic img {
  max-width: 50px;
}
.contact-info .col-md-3:last-child, .contact-info .col-md-6:last-child {
  border-right: none;
}
.contact-info .col-md-3 a, .contact-info .col-md-6 a {
  color: #666;
  text-decoration: none;
}
.contact-info .col-md-3 a:hover, .contact-info .col-md-6 a:hover {
  color: #9D1E36;
}

.contact-info-list {
  margin-left: 10px;
}
.contact-info-list .list {
  position: relative;
  padding: 10px 0 10px 80px;
}
.contact-info-list .list .pic {
  position: absolute;
  left: 10px;
  top: 10px;
}
.contact-info-list .list .pic img {
  max-width: 50px;
}
.contact-info-list .list h4 {
  margin-bottom: 0px;
}
.contact-info-list .list a {
  color: #666;
  text-decoration: none;
}
.contact-info-list .list a:hover {
  color: #9D1E36;
}

.post-list {
  position: relative;
  margin-bottom: 40px;
}
.post-list a {
  text-decoration: none;
}
.post-list a .img {
  border-radius: 5px;
  height: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
.post-list a h3 {
  font-size: 1.125rem;
  color: #231815;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-list a:hover h3 {
  color: #9D1E36;
}
.post-list a .data {
  background-color: rgba(157, 30, 54, 0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 12.5px 10px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 1rem;
}
.post-list a .data small {
  display: block;
  font-weight: 300;
  font-size: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.record-box {
  background-color: #fff;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}
.record-box .photo {
  display: block;
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 15px;
  min-height: auto;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.05));
}
.record-box .photo::before {
  display: none;
}
.record-box .title {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.record-box .title h3 {
  font-size: 1.125rem;
  padding-left: 60px;
  width: 75%;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.record-box .title small {
  font-size: 0.75rem;
  color: #9D1E36;
  width: 25%;
  text-align: right;
}
.record-box p {
  font-size: 1rem !important;
  font-family: "Noto sans TC", serif !important;
  font-weight: 400 !important;
  line-height: 1.6rem !important;
  color: #666;
  margin-bottom: 0px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.guide-box {
  background-color: #F9F7F8;
  padding: 30px;
  border-radius: 3px;
  background-color: #F9F7F8;
  background-image: url(../images/sky.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 300px auto;
}
.guide-box img {
  border-radius: 3px;
}
.guide-box p {
  font-size: 1rem !important;
  margin-bottom: 0;
}

.contribute-photo a {
  text-decoration: none;
  color: #231815;
}
.contribute-photo a:hover {
  color: #9D1E36;
}
.contribute-photo a img {
  border-radius: 3px;
}
.contribute-photo a h4 {
  font-size: 1.125rem !important;
  margin: 10px 0;
}
.contribute-photo .col-md-6 {
  position: relative;
}
.contribute-photo .col-md-6::before {
  content: "1";
  color: #fff;
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 8.125rem;
  font-weight: 600;
}
.contribute-photo .col-md-6:nth-child(2)::before {
  content: "2";
}
.contribute-photo .col-md-6:nth-child(3)::before {
  content: "3";
}
.contribute-photo .col-md-6:nth-child(4)::before {
  content: "4";
}

.footprints-photo img {
  border-radius: 3px;
}

.ink-bg {
  background-image: url(../images/ink-bg.png);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.volunteer_ol {
  padding-left: 20px;
}
.volunteer_ol li {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.volunteer_ol li strong {
  display: block;
  font-size: 1.125rem;
}

.article-list {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.article-list h3 {
  font-size: 1.25rem !important;
}
.article-list p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.article-list label {
  color: #fff;
  background-color: #9D1E36;
  padding: 5px 10px;
  border-radius: 3px;
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 0.875rem;
}

.article-box .article-img {
  text-align: center;
  background-image: url(../images/ink-bg.png);
  background-size: auto 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 30px 0;
}
.article-box .article-img img {
  min-width: 300px;
  max-width: 40%;
}
.article-box small {
  color: #666;
}
.article-box p {
  font-size: 1rem !important;
}

.link-box h4 {
  padding-bottom: 5px;
}
.link-box ul {
  margin-left: 10px;
  padding-left: 0px;
  list-style: none;
}
.link-box ul li {
  padding: 10px 10px 10px 20px;
  position: relative;
  color: #231815;
}
.link-box ul li::before {
  content: "";
  display: block;
  border-left: 1px #9D1E36 solid;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 18px;
  left: 0px;
}
.link-box ul li::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #9D1E36;
  width: 10px;
  height: 10px;
  border: 1px #9D1E36 solid;
  top: 18px;
  left: -4.5px;
  border-radius: 50%;
}
.link-box ul li ul li::after {
  background-color: #fff;
}
.link-box ul li:last-child::before {
  display: none;
}
.link-box ul li a {
  color: #231815;
  text-decoration: none;
}
.link-box ul li a:hover {
  color: #9D1E36;
}

@media screen and (max-width: 992px) {
  .page-title {
    height: 300px;
  }
  .page-title .container {
    margin: 0 28px;
  }
  .page-title h1 {
    font-size: 1.875rem;
  }
  .page-title ul li {
    font-size: 0.875rem;
  }
  .accordion-flush .accordion-item .accordion-button {
    font-size: 1rem;
  }
  .accordion-flush .accordion-collapse .accordion-body {
    font-size: 0.875rem;
  }
  .block.page {
    padding-top: 0px;
  }
  .block.page .container .text {
    margin: 0 28px;
    padding-top: 0px;
    padding-bottom: 50px;
  }
  .block.page .container .text .project-list h4 {
    width: 15%;
  }
  .block.page .container .text .project-text {
    width: 85%;
    padding-left: 2.5%;
  }
  .post .title {
    padding-left: 28px;
    margin-right: 28px;
  }
  .post .title h1 {
    font-size: 1.5rem;
  }
  .post .title .data:last-child {
    margin-bottom: 10px;
  }
  .post .text .Swiper-Banner .swiper-wrapper {
    height: 350px;
  }
}
@media screen and (max-width: 576px) {
  .block.page .container .text .project-list {
    border-left: solid #9D1E36 1px;
  }
  .block.page .container .text .project-list h4 {
    width: 100%;
    padding-left: 5%;
  }
  .block.page .container .text .project-list h4::after {
    right: auto;
    left: -5px;
  }
  .block.page .container .text .project-text {
    padding-left: 5%;
    border-left: none;
    width: 100%;
  }
  .block.page .container .text .chronology-list .col-md-6 {
    border-left: 1px solid #9D1E36;
  }
  .block.page .container .text .chronology-list .col-md-6::before {
    top: 5px;
    right: auto;
    left: 0;
  }
  .block.page .container .text .chronology-list .col-md-6::after {
    top: 0px;
    left: -5px;
  }
  .block.page .container .text .chronology-list .col-md-6:nth-child(odd) {
    text-align: left;
  }
  .block.page .container .text .chronology-list .col-md-6:nth-child(even) {
    padding-top: 0px;
  }
  .block.page .container .text .chronology-list .col-md-6:nth-child(even)::before {
    top: 5px;
    right: auto;
    left: 0;
  }
  .block.page .container .text .chronology-list .col-md-6:nth-child(even)::after {
    content: "";
    top: 0px;
    left: -5px;
  }
  .block.page .container .text .chronology-list h4 {
    margin-top: -7px;
  }
  .block.page .container .text .chronology-text {
    padding-right: 0px;
  }
  .post .title {
    padding-top: 40px;
    padding-left: 28px;
    margin: 0 28px 20px 0;
  }
  .post .title h1 {
    font-size: 1.25rem;
  }
  .post .title .data {
    display: block;
  }
  .post .title .btn {
    padding-left: 10px;
    padding-right: 10px;
  }
  .post .text p {
    font-size: 0.875rem;
  }
  .post .text .Swiper-Banner .swiper-wrapper {
    height: 200px;
  }
  .contact-info .col-md-3, .contact-info .col-md-6 {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .contact-info .col-md-3:last-child, .contact-info .col-md-6:last-child {
    border-bottom: none;
  }
  .record-box .title h3 {
    font-size: 1rem;
  }
  .record-box p {
    font-size: 0.875rem !important;
  }
  .guide-box img {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=main.css.map */