:root {
  font-family: sans-serif, "PingFang", "Microsoft JhengHei";
  font-size: 18px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: #333;
}

section {
  box-sizing: border-box;
  padding: 4rem 0;
}

@media (max-width: 575px) {
  section {
    padding: 2rem 0;
  }
}

h1 {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Cinzel", serif;
  color: #b98e85;
}

h2 {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Cinzel", serif;
  color: #c19a6f;
}

@media (max-width: 575px) {
  h2 {
    font-size: 1.6rem;
  }
}

a {
  color: #c19a6f;
}

.container {
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.small-content {
  max-width: 800px;
  margin: 0 auto;
}

.small-content h2 {
  text-align: center;
}

.small-content .lang {
  text-align: center;
}

.medium-content {
  max-width: 1100px;
  margin: 0 auto;
}

.medium-content h2 {
  text-align: center;
}

.medium-content .lang {
  text-align: center;
}

.more-btn {
  border-bottom: 2px solid #ccc;
  color: #b98e85;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
}

.action {
  padding: 0.4rem 0;
  text-align: center;
}

button {
  color: currentColor;
  cursor: pointer;
  outline: 0;
}

.btn {
  margin: 0.4rem;
  display: inline-block;
  padding: 0.8rem 3rem;
  background: #6ec4bf;
  border: 0;
  border-radius: 100px;
  color: #fff;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
}

.btn--outline {
  background: transparent;
  box-shadow: inset 0 0 0 2px #6ec4bf;
  color: #6ec4bf;
}

.tag {
  margin: 0 0.2rem 0.2rem 0;
  padding: 0.2rem 0.4rem;
  display: inline-block;
  background: #c7b18e;
  border: 0;
  border-radius: 0.2rem;
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  line-height: 1;
  text-decoration: none;
}

.pill {
  margin: 0 0.2rem 0.2rem 0;
  padding: 0.4rem 1rem;
  display: inline-flex;
  align-items: center;
  background: #eee;
  border: 0;
  border-radius: 100px;
  color: #222;
  font-size: 0.75rem;
  line-height: 1;
  text-decoration: none;
}

.pill img {
  display: block;
  margin: -0.4rem 0.6rem -0.4rem -1rem;
  height: 1.8rem;
}

.loading {
  padding: 2rem 0;
  text-align: center;
  animation: loading-ani 1s infinite;
  color: #888;
  font-weight: bold;
}

.no-result {
  padding: 2rem 0;
  text-align: center;
  color: #888;
  font-weight: bold;
}

@keyframes loading-ani {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}

.site-header .header {
  height: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.site-header .header a {
  color: #777;
  text-decoration: none;
  transition: color 0.4s;
}

.site-header .header a:hover {
  color: var(--link);
}

@media (max-width: 991px) {
  .site-header .header .logo {
    text-align: center;
  }
}

.site-header .header .logo img {
  height: 1.8rem;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .site-header .header .logo img {
    height: 1.4rem;
    margin-right: -35px;
  }
}

.site-header .header .rwd-menu-icon {
  display: none;
}

.site-header .header .rwd-menu-icon button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  color: #6ec4bf;
}

@media (max-width: 1299px) {
  .site-header .header .rwd-menu-icon {
    display: block;
  }
}

.site-header .header .menu {
  display: flex;
  font-size: 0.82rem;
}

.site-header .header .menu span {
  display: block;
  padding: 0.4rem 0;
}

.site-header .header .menu a {
  display: block;
  padding: 0.4rem 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1333333333);
}

.site-header .header .menu a.rwd-menu {
  display: none;
}

.site-header .header .menu a.logout {
  margin-left: -1.2rem;
}

.site-header .header .menu a.logout:before {
  content: "(";
}

.site-header .header .menu a.logout:after {
  content: ")";
}

@media (max-width: 1299px) {
  .site-header .header .menu {
    padding: 0.4rem 6%;
    display: block;
    position: fixed;
    top: 4rem;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s;
    color: #222;
    overflow-y: auto;
  }
  .site-header .header .menu a {
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1333333333);
  }
  .site-header .header .menu a.rwd-menu {
    display: block;
  }
  .site-header .header .menu a.logout {
    margin-left: 0;
  }
  .site-header .header .menu a.logout:before,
.site-header .header .menu a.logout:after {
    content: "";
  }
  .site-header .header .menu.active {
    transform: translateX(0);
  }
}

.site-footer {
  padding: 3rem 0;
  background: #fff;
  font-size: 0.8rem;
}

.site-footer .footer {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr auto;
}

@media (max-width: 767px) {
  .site-footer .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.site-footer .logo {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .site-footer .logo {
    margin-bottom: 0;
    order: -1;
  }
}

.site-footer .logo img {
  height: 2rem;
}

@media (max-width: 767px) {
  .site-footer .logo img {
    height: 1.4rem;
  }
}

.site-footer .links {
  margin-bottom: 0.2rem;
}

@media (max-width: 767px) {
  .site-footer .links {
    margin-bottom: 0;
  }
}

.site-footer .links a {
  display: inline-block;
  margin-right: 0.8rem;
  margin-bottom: 0.4rem;
  color: #888;
  text-decoration: none;
}

@media (max-width: 767px) {
  .site-footer .copyright {
    margin-bottom: 1rem;
  }
}

._isabel {
  /*
  .place-modal {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    background: #0001;

    .content {
      padding: 1rem;
      margin: 1rem;
      max-width: 400px;
      background: #fff;
      border-radius: 1rem;
    }

    .desc {
      margin: 0.8rem 0;
      padding: 0.6rem;
      color: #555;
      background: #f9f9f9;
      border-radius: 0.4rem; 
    }

    .title {
      font-size: 1.1rem;
      font-weight: 400;
      font-family: 'Cinzel', serif;
      color: #c19a6f;
      text-align: center;
    }
  }
  */
}

._isabel .top {
  background: url("/images/hou.jpg") no-repeat center top;
  background-size: cover;
  aspect-ratio: 20/7.6;
  display: flex;
  align-items: flex-end;
}

._isabel .top .container {
  flex: 1;
}

._isabel .top .content {
  width: 50%;
  margin: 0 6%;
}

._isabel .top .content .desc {
  text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff;
}

@media (max-width: 767px) {
  ._isabel .top {
    aspect-ratio: 20/7.6;
    background-position: left 60% top;
  }
  ._isabel .top .content {
    width: auto;
    margin: 30vw 0 0 0;
  }
}

._isabel .conferences {
  background-color: #ecf3f2;
  background-image: url("/images/conference_bg.svg");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  ._isabel .conferences {
    background-size: auto 70%;
  }
}

._isabel .conferences .conference-row {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 575px) {
  ._isabel .conferences .conference-row {
    grid-gap: 1rem;
    grid-template-columns: 1fr;
  }
}

._isabel .conferences .conference-row .conference {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.6rem;
  background: #fff;
  border-radius: 0.4rem;
  text-align: center;
}

@media (max-width: 575px) {
  ._isabel .conferences .conference-row .conference {
    padding: 1rem;
  }
}

._isabel .conferences .conference-row .conference a {
  text-decoration: none;
}

._isabel .conferences .conference-row .date {
  margin: 0 auto;
  color: #6ec4bf;
  font-size: 1.3rem;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
}

._isabel .conferences .conference-row .date:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 4rem;
  height: 6px;
  background: #ecf3f2;
  border-radius: 100px;
}

._isabel .conferences .conference-row .date .icon {
  color: #ccc;
}

._isabel .conferences .conference-row .title {
  margin-top: 1rem;
}

._isabel .conferences .conference-row .place {
  margin-top: 1rem;
  text-align: center;
}

._isabel .conferences .conference-row + .action {
  margin-top: 2rem;
}

._isabel .articles h2 {
  text-align: left;
}

@media (max-width: 575px) {
  ._isabel .articles h2 {
    text-align: center;
  }
}

._isabel .articles .article-row .article {
  margin-bottom: 0.5rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: #f4f3f2;
  border-radius: 0.4rem;
}

@media (max-width: 575px) {
  ._isabel .articles .article-row .article {
    display: block;
  }
}

._isabel .articles .article-row .date {
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: bold;
  opacity: 0.5;
}

._isabel .articles .article-row .date .icon {
  font-size: 0.8rem;
}

._isabel .articles .article-row .title {
  font-weight: bold;
  font-size: 1.1rem;
}

._isabel .articles .article-row .tags {
  margin: 0.4rem 0;
}

@media (max-width: 575px) {
  ._isabel .articles .article-row .action {
    padding-top: 1rem;
  }
}

._isabel .articles .article-row + .action {
  margin-top: 2rem;
}

._isabel .contact {
  background-color: #ecf3f2;
  background-image: url("/images/contact_bg.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

@media (max-width: 767px) {
  ._isabel .contact {
    background-size: cover;
  }
}

.material-symbols-rounded {
  vertical-align: middle;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/*# sourceMappingURL=common.css.map */