.noto-sans-regular {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
}

.noto-sans-medium {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
}

.noto-sans-bold {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
}

.noto-sans-black, .partner-row .col-title {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 900;
}

.noto-serif-regular {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 300;
}

.noto-serif-medium {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 500;
}

.noto-serif-semibold {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 600;
}

.noto-serif-bold, .title h3 {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 700;
}

.playball {
  font-family: "Playball", cursive;
}

.crimson {
  font-family: "Crimson Text", serif;
}

.pt-serif, .title .en {
  font-family: "PT Serif", serif;
}

.fade {
  -webkit-transition: all linear .2s;
  transition: all linear .2s;
}

.fade:hover {
  -webkit-transition: all linear .2s;
  transition: all linear .2s;
}

@-webkit-keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

:root {
  --font-size-2: 1.9vmin;
  --font-size-2-spacing: .2vmin;
  --font-size-3: 1.7vmin;
  --font-size-subtitle: 24px;
  --circle-size: 7.5vmin;
}

.block {
  margin-top: 5vh;
  color: #6c6c6a;
}

.title {
  color: #6c6c6a;
}

.title > div {
  margin: 0 15px;
  display: inline-block;
  vertical-align: middle;
}

.title:before, .title:after {
  content: "";
  margin-top: -5px;
  display: inline-block;
  vertical-align: middle;
  width: 43px;
  height: calc(43px * (32 / 43));
  background-image: url(../images/others/title-bg.webp);
  background-size: 100% 100%;
}

.title:before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.title h3 {
  font-size: var(--font-size-subtitle);
  letter-spacing: 4px;
}

.title .en {
  font-size: 16px;
  letter-spacing: 2px;
  opacity: .5;
}

.circle-tabs {
  margin: 4vh 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.circle-tabs .tab-item {
  margin: 0 2vw;
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

.circle-tabs .tab-item .circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
}

.circle-tabs .tab-item .circle img {
  width: auto;
  height: 50%;
}

.circle-tabs .tab-item p {
  margin-top: 10px;
  font-size: var(--font-size-2);
  letter-spacing: var(--font-size-2-spacing);
}

.circle-tabs .tab-item:not(.active) .circle {
  background-color: #c1c1c1;
}

.circle-tabs .tab-item:not(.active) p {
  color: #a8a8a8;
}

.circle-tabs .tab-item:hover .circle {
  background-color: rgba(214, 173, 125, 0.8);
}

.circle-tabs .tab-item:hover p {
  color: rgba(214, 173, 125, 0.8);
}

.circle-tabs .tab-item.active .circle {
  background-color: #EA719D;
}

.circle-tabs .tab-item.active p {
  color: #EA719D;
}

.region-tabs {
  display: none;
}

.circle-tabcontent {
  position: relative;
  display: block;
  height: 0;
  min-height: 0;
  visibility: hidden;
  overflow: hidden;
}

.circle-tabcontent.active {
  visibility: inherit;
  height: inherit;
  min-height: 10vh;
  visibility: visible;
  overflow: initial;
}

.partner-row {
  margin: 0 auto;
  max-width: 1560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partner-row > div {
  padding: 0 1vw;
  min-width: calc(100% / 5);
  max-width: calc(100% / 3);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.partner-row .col-title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  color: rgba(108, 108, 106, 0.6);
  font-size: 3vmin;
  border-bottom: 1px solid #6c6c6a;
}

.partner-row .link {
  display: block;
  margin-bottom: 15px;
}

.partner-row .link span {
  display: block;
}

.partner-row .link span:first-of-type {
  font-size: var(--font-size-3);
  letter-spacing: 0;
  color: #6c6c6a;
}

.partner-row .link span:nth-of-type(2) {
  color: #989a3e;
  font-size: 13px;
}

.partner-links > div {
  margin-bottom: 3vmin;
  text-align: center;
}

.partner-links .link {
  display: inline-block;
  padding: .9vmin 1vmin;
  min-width: 190px;
  border: 1px solid #dbdbdb;
  border-bottom-width: 3px;
  border-radius: .5vmin;
  color: #6c6c6a;
  font-size: var(--font-size-3);
  -webkit-transition: .2s;
  transition: .2s;
}

.partner-links .link:hover {
  border-color: #EA719D;
  color: #989a3e;
}

.icon-sell {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100%;
}

.icon-sell.gold {
  margin-left: 5px;
  vertical-align: text-bottom;
  width: 20px;
  height: 20px;
  background-image: url(../images/others/icon-sell-gold.svg);
}

.icon-sell.orange {
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background-image: url(../images/others/icon-sell-orange.svg);
}

.sell-remark {
  display: inline-block;
  margin-bottom: 2vh;
  border-radius: 5px;
  color: #db804f;
  letter-spacing: 0;
  font-size: 13px;
}

.sell-remark span {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1600px) {
  :root {
    --font-size-2: 18px;
    --font-size-3: 15px;
  }
}

@media (min-width: 1025px) {
  .region-tabcontent {
    display: block !important;
  }
}

@media (max-width: 1024px) {
  .partner-row {
    display: block;
  }
  .partner-row .col-title {
    display: none;
  }
  .partner-row > div {
    width: 100%;
  }
  .region-tabs {
    margin: 4vmin 0;
    display: block;
  }
  .region-tabs .tab-item {
    display: inline-block;
    margin: 0 1vw 10px 1vw;
    padding: 1px 11px;
    border: 1px solid #6c6c6a;
    border-radius: 35px;
    font-size: var(--font-size-3);
    cursor: pointer;
  }
  .region-tabs .tab-item.active {
    background-color: #6c6c6a;
    color: #fff;
  }
  .region-tabcontent {
    position: relative;
    display: block;
    height: 0;
    min-height: 0;
    visibility: hidden;
    overflow: hidden;
  }
  .region-tabcontent.active {
    visibility: inherit;
    height: inherit;
    min-height: 10vh;
    visibility: visible;
    overflow: initial;
  }
  .sell-remark {
    margin-bottom: 0;
  }
}

@media (max-width: 767px), (max-height: 550px) {
  :root {
    --font-size-2: 15px;
    --font-size-subtitle: 18px;
    --circle-size: 50px;
  }
}

@media (max-width: 480px) {
  .title .en {
    font-size: 12px;
  }
  .circle-tabs .tab-item {
    margin: 0;
  }
  .partner-links .link {
    padding: 5px;
    min-width: 140px;
    border-radius: 5px;
  }
  .partner-links > div {
    margin-bottom: 20px;
  }
}
