@charset "UTF-8";
/* ============================================================
COLOR Definition
============================================================ */
/* ============================================================
點擊動態
============================================================ */
@-webkit-keyframes clickTransform {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes clickTransform {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ============================================================
All Applicable
============================================================ */
* {
  font-family: 'Mukta Malar', 'Noto Sans TC', 'PingFangTC-Regular','微軟正黑體','Microsoft JhengHei','Open Sans',sans-serif;
}

html, body {
  width: 100%;
  font-size: 16px;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul, li {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

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

em {
  font-style: normal;
  text-transform: none;
  list-style: none;
}

::-moz-selection {
  color: #fff;
  background: #F88161;
}

::selection {
  color: #fff;
  background: #F88161;
}

.scrollfixed {
  overflow: hidden;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-container.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-container.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-container.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-container.between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-container.top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-container.middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-container.bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-container.stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-container.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content-container {
  width: 90%;
  position: relative;
  margin: 0 auto;
}

/* ============================================================
LOADING
============================================================ */
/*.complete {
	overflow: auto;
}*/
.progress {
  position: fixed;
  z-index: 11111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #ffffff;
}

.progress-inner {
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background-color: #fff;
  /*overflow: hidden;*/
}

.progress-bar {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.progress-text {
  /*display: none;*/
  color: #F88161;
  font-size: 1em;
  position: absolute;
  z-index: 11112;
  width: 50px;
  line-height: 50px;
  text-align: center;
  bottom: 0;
}

.progress-logo {
  position: absolute;
  top: -5%;
  -webkit-animation: loading 2s linear forwards infinite;
          animation: loading 2s linear forwards infinite;
}

.progress-complete .progress-bar {
  background-color: #fff;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

/* ============================================================
Nav
============================================================ */
nav {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 999;
  cursor: pointer;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  nav {
    top: 25px;
    left: 25px;
  }
}

.nav-icon {
  width: 40px;
  height: 10px;
  border-top: 3px solid #353535;
  border-bottom: 3px solid #353535;
  border-radius: 3px;
  -webkit-transition: .15s linear;
  transition: .15s linear;
  font-size: .875em;
  font-weight: 300;
  text-align: center;
  color: rgba(53, 53, 53, 0);
  display: none;
  opacity: 0;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .nav-icon:hover {
    height: 25px;
    color: #353535;
  }
}

nav .nav-menu {
  display: block;
}

nav .nav-menu .nav-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-family: 'Baskervville', serif;
  font-size: 1.25em;
  font-weight: 400;
  text-align: left;
  padding: 10px;
  cursor: pointer;
  color: #353535;
  -webkit-transition: .15s linear;
  transition: .15s linear;
  opacity: 0;
}

nav .nav-menu .nav-item:after {
  content: '';
  display: table;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(53, 53, 53, 0);
  -webkit-transition: .15s linear;
  transition: .15s linear;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  nav .nav-menu .nav-item:hover:after {
    width: 100%;
    background: #353535;
  }
}

nav .nav-menu .nav-item.active:after {
  width: 100%;
  background: #353535;
}

nav .nav-menu .nav-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

nav.white .nav-icon {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  color: rgba(255, 255, 255, 0);
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  nav.white .nav-icon:hover {
    color: white;
  }
}

nav.white .nav-menu .nav-item {
  color: #fff;
}

nav.white .nav-menu .nav-item:after {
  background: rgba(255, 255, 255, 0);
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  nav.white .nav-menu .nav-item:hover:after {
    width: 100%;
    background: white;
  }
}

nav.white .nav-menu .nav-item.active {
  color: #F88161;
}

nav.white .nav-menu .nav-item.active:after {
  width: 100%;
  background: #f88161;
}

.nav-menu.open {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}

.nav-menu.open .nav-item {
  opacity: 0;
}

.nav-menu.open .nav-item:nth-child(1) {
  -webkit-animation: menuIn .3s linear forwards;
          animation: menuIn .3s linear forwards;
}

.nav-menu.open .nav-item:nth-child(2) {
  -webkit-animation: menuIn .3s .3s linear forwards;
          animation: menuIn .3s .3s linear forwards;
}

.nav-menu.open .nav-item:nth-child(3) {
  -webkit-animation: menuIn .3s .6s linear forwards;
          animation: menuIn .3s .6s linear forwards;
}

.nav-menu.open .nav-item:nth-child(4) {
  -webkit-animation: menuIn .3s .9s linear forwards;
          animation: menuIn .3s .9s linear forwards;
}

.nav-menu.close .nav-item {
  opacity: 1;
}

.nav-menu.close .nav-item:nth-child(4) {
  -webkit-animation: menuOut .3s linear forwards;
          animation: menuOut .3s linear forwards;
}

.nav-menu.close .nav-item:nth-child(3) {
  -webkit-animation: menuOut .3s .3s linear forwards;
          animation: menuOut .3s .3s linear forwards;
}

.nav-menu.close .nav-item:nth-child(2) {
  -webkit-animation: menuOut .3s .6s linear forwards;
          animation: menuOut .3s .6s linear forwards;
}

.nav-menu.close .nav-item:nth-child(1) {
  -webkit-animation: menuOut .3s .9s linear forwards;
          animation: menuOut .3s .9s linear forwards;
}

@-webkit-keyframes menuIn {
  0% {
    margin-left: -10px;
    opacity: 0;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}

@keyframes menuIn {
  0% {
    margin-left: -10px;
    opacity: 0;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}

@-webkit-keyframes menuOut {
  0% {
    margin-left: 0;
    opacity: 1;
  }
  100% {
    margin-left: -10px;
    opacity: 0;
  }
}

@keyframes menuOut {
  0% {
    margin-left: 0;
    opacity: 1;
  }
  100% {
    margin-left: -10px;
    opacity: 0;
  }
}

nav.white .nav-menu.open {
  background: rgba(0, 0, 0, 0.3);
}

.tags-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.tags-container .tag-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: .875em;
  font-weight: 400;
  color: #666;
  padding: 2px 10px;
  border-radius: 1000px;
  background: #DEDBCC;
  margin-right: 5px;
  margin-bottom: 5px;
}

.tags-container .tag-item:nth-last-child(1) {
  margin-right: 0;
}

.tags-container .tag-item.orange {
  background: #F88161;
  color: #fff;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .tags-container {
    margin: 0;
  }
}

.link-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 34px;
  position: relative;
  padding: 0 8px;
  background: #353535;
  border: 1px solid #353535;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  color: #fff;
  line-height: 33px;
  font-size: 1em;
  font-weight: 400;
  -webkit-transition: .15s linear;
  transition: .15s linear;
}

.link-btn a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media all and (min-width: 1100px) and (orientation: landscape) {
  .link-btn:hover {
    background: none;
    color: #353535;
  }
}

#gotop {
  width: 50px;
  height: 50px;
  z-index: 15;
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  background: url("../img/cube_border.svg") no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: 1000;
  opacity: 0;
}

#gotop p {
  text-align: center;
  line-height: 50px;
  font-size: .875rem;
  font-weight: 500;
  color: #F88161;
}

.languages-switch {
  width: 66px;
  height: 30px;
  position: absolute;
  top: 50px;
  right: 15px;
  border-radius: 1000px;
  background: #F88161;
  border: 1px solid #999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  padding: 0 10px;
  line-height: 30px;
  color: #fff;
  font-size: .875em;
  font-weight: 500;
}

.languages-switch .languages-switch-dot {
  width: 34px;
  height: 34px;
  position: absolute;
  border-radius: 50%;
  top: -2px;
  left: calc(100% - 34px + 2px);
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.languages-switch.chi {
  background: #DEDBCC;
  color: #353535;
  text-align: right;
}

.languages-switch.chi .languages-switch-dot {
  left: -2px;
}
/*# sourceMappingURL=main.css.map */