@charset "UTF-8";
@import 'grid.css';

:root {
  --primary: #be9f5d;
  --secondary: #a87b30;
  --swiper-theme-color: var(--primary);
  --swiper-pagination-bullet-width: 15px;
  --swiper-pagination-bullet-height: 15px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
a {
  text-decoration: none !important;
}

body {
  margin: 0;
  color: #7f8080;
  background: #efefef;
  font-family: 'Helvetica Neue', Helvetica, Arial, '微軟正黑體', '微软雅黑',
    'メイリオ', '맑은 고딕', sans-serif;
  overflow-x: hidden;
}

body.lock {
  overflow: hidden;
}

/* 對富文本的樣式修改 */
.page1-text-conteng video,
.page1-text-conteng img,
.page2-text-conteng img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 864px) {
  /* 這裏主要針對video */
  .page1-text-conteng video,
  .page1-text-conteng img {
    width: 100% !important;
    height: auto !important;
  }
}

/* 定義動畫關鍵幀 */
@keyframes scale-in {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-out {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(0);
  }
}
.show-img-mask {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.show-img-mask .img-show {
  width: 40vw;
}
.show-img-mask-start {
  animation-name: scale-in;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.show-img-mask-close {
  animation-name: scale-out;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.inner {
  width: 100%;
  max-width: 1026px;
  padding-left: 15px;
  padding-right: 15px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.row.nowrap {
  flex-wrap: nowrap;
}

.row.start {
  justify-content: flex-start;
}

.row.round {
  justify-content: space-around;
}

.row.between {
  justify-content: space-between;
}

.row.center {
  justify-content: center;
}

.row.end {
  justify-content: flex-end;
}

.row.top {
  align-items: flex-start;
}

.row.middle {
  align-items: center;
}

.row.bottom {
  align-items: flex-end;
}

.row.column {
  flex-direction: column;
}

.tip {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: #fff;
}

.adaptor {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.adaptor > * {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mt-20 {
  margin-top: 20px;
}

df-time {
  display: flex;
  align-items: center;
}

.df-time__icon {
  height: 18px;
}

.df-time__name {
  margin-left: 5px;
  font-size: 15px;
  line-height: 1;
}

.df-time__time {
  margin-left: 5px;
  font-size: 15px;
  line-height: 1;
}

.df-select {
  height: 30px;
  width: 100%;
  position: relative;
}

.df-select:hover {
  background: #eee;
}

.df-select__input {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.df-select__content {
  flex: 1 0 0;
  height: 100%;
}

#DfSelectCountry1 .df-select__content {
  display: flex;
}

#DfSelectCountry1 .df-select__content img {
  margin-right: 5px;
}

#DfSelectCountry2 .df-select__content {
  display: flex;
}

#DfSelectCountry2 .df-select__content img {
  margin-right: 5px;
}

.df-select__content .df-select__option {
  padding-left: 0;
  padding-right: 0;
}

.df-select:hover .df-select__options {
  visibility: visible;
  opacity: 1;
}

.df-select__content span{
  display: block;
    width: 0;
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.df-select__options{
  position: absolute;
  z-index: 2;
  max-height: 200px;
  overflow: auto;
  top: 30px;
  width: 100%;
  border: 1px solid #eee;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  outline: none;
}

.df-select__option {
  cursor: pointer;
  display: flex;
  padding: 5px 12px;
  width: 100%;
}

.df-select__option:hover {
  background: #eee;
}

.home-option__img {
  height: 20px;
  display: block;
}

.home-option__label {
  font-size: 14px;
  margin-left: 10px;
}

.section-title {
  margin: 0;
  color: var(--primary);
  font-size: 20px;
  /* font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; */
  position: relative;
  padding-left: 12px;
}

.section-title::before {
  content: '';
  width: 4px;
  background-color: var(--primary);
  display: inline-block;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.section-content {
  margin-top: 25px;
}

.section-article {
  background: url('../images/article.jpg') no-repeat center center / cover;
  padding-top: 35px;
  padding-bottom: 35px;
}

.section-location {
  display: flex;
  color: #fff;
  font-size: 15px;
}

.section-location__label {
  margin-right: 5px;
}

.section-location__divider {
  margin: 0 10px;
}

.section-location__link {
  color: inherit;
  text-decoration: none;
}

.section-location__link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.section-wrapper {
  margin-top: 25px;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
}

.rich-text {
  display: flow-root;
}

.rich-text img,
.rich-text video {
  max-width: 100%;
}

/* 头部 */
header {
  position: sticky;
  z-index: 9;
  top: 0;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.header-toolbar {
  background: linear-gradient(
    to right,
    var(--secondary) 30%,
    var(--primary) 100%
  );
  padding-top: 5px;
  padding-bottom: 5px;
  color: #fff;
}

.header-country__group {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-locale__group {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0 -5px;
  padding: 0;
}

.header-locale__item {
  color: #fff;
  --active-color: transparent;
}

.header-locale__item:not(:first-child) {
  border-left: 1px solid #fff;
}

.header-locale__item.active {
  color: var(--primary);
  --active-color: #fff;
}

.header-locale__link {
  color: inherit;
  background-color: var(--active-color, #000);
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  border-radius: 10px;
  vertical-align: middle;
  margin: 0 5px;
  padding: 0 5px;
}

.header-navbar {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-logo {
  margin: 0;
}

.header-logo__link {
  display: block;
  width: 120px;
  height: 70px;
}

.header-logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-nav {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 32px;
  padding: 0;
  display: flex;
}

.header-nav__item {
  color: inherit;
}

.header-nav__item:not(:first-child) {
  margin-left: 8px;
}

.header-nav__item .selected {
  color: var(--primary);
}

.header-nav__link {
  text-decoration: none;
  display: block;
  padding: 5px 12px;
  font-size: 15px;
  color: #7f8080;
}

.header-nav__link:hover {
  color: var(--primary);
}

.header-menu {
  border: 1px solid #7f8080;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 28px;
  cursor: pointer;
  margin-right: 0;
  margin-left: auto;
  display: none;
}

aside {
  width: 100%;
  position: fixed;
  top: 65px;
  bottom: 0;
  z-index: 3;
  background-color: #efefef;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

aside.active {
  transform: translateX(0);
}

.aside-nav__group {
  margin: 0;
  padding: 0;
}

.aside-nav__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 0;
}

.aside-nav__item + .aside-nav__item {
  border-top: 1px solid #ededed;
}

.aside-nav__item .aside-nav__item {
  padding-left: 12px;
}

.aside-nav__link {
  line-height: 35px;
  display: flex;
  flex: 1 0 0;
  font-size: 15px;
  margin-right: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.aside-nav__link:hover {
  color: var(--primary);
}

.aside-locale__group {
  list-style: none;
  justify-content: center;
  display: flex;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 0;
}

.aside-locale__item:not(:first-child) {
  border-left: 1px solid var(--primary);
}

.aside-locale__link {
  color: var(--primary);
  height: 30px;
  width: 30px;
  display: block;
  text-decoration: none;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.aside-locale__item:hover .aside-locale__link,
.aside-locale__item.active .aside-locale__link {
  background: var(--primary);
  color: #fff;
}

header ~ main {
}

footer {
  padding-top: 32px;
  padding-bottom: 64px;
  background: #fff;
  border-top: 4px solid var(--primary);
}

.footer-copyright {
  margin: 0;
  color: inherit;
  font-size: 15px;
  text-align: center;
}

.footer-image__group {
  display: flex;
  list-style: none;
  margin-left: 0;
  margin-top: 8px;
  justify-content: center;
  margin-bottom: 0;
  padding: 0;
}

.footer-image__item + .footer-image__item {
  margin-left: 32px;
}

.footer-image__img {
  height: 60px;
  display: block;
}

.footer-link__group {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.footer-link__row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-link__row + .footer-link__row {
  margin-left: 15px;
}

.footer-link__divide {
  border: none;
  width: 1px;
  height: 20px;
  background-color: currentColor;
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
}

.footer-link__item {
  color: inherit;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.footer-link__item a {
  color: var(--primary);
  text-decoration: none;
}

.footer-link__item a:hover {
  text-decoration: underline;
}

.footer-link__external {
  display: block;
  height: 20px;
  padding-left: 15px;
}

.footer-link__icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-advertise {
  position: fixed;
  z-index: 1;
  left: 0;
  bottom: 0;
}

.footer-advertise__close {
  color: var(--primary);
  cursor: pointer;
  font-weight: bold;
}

.footer-advertise__link {
  display: flex;
}

.banner-image__wrapper {
  padding-bottom: 20.83%;
  position: relative;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

.home-exchange {
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-exchange__readonly,
.home-exchange__input {
  border: none;
  border-bottom: 2px solid #eee;
  width: 100%;
  height: 35px;
  outline: none;
  text-align: right;
  font-size: 16px;
  color: inherit;
  margin-top: 5px;
}

.home-exchange__input::-webkit-inner-spin-button {
  display: none;
}

.home-exchange__readonly {
  background: #eee;
}

.home-exchange__table {
  width: 100%;
  border-collapse: collapse;
}

.home-exchange__table tr {
  height: 45px;
}

.home-exchange__table th {
  font-weight: normal;
}

.home-exchange__table td {
  font-size: 13px;
}

.home-exchange__table td,
.home-exchange__table th {
  padding: 5px 5px;
  border-bottom: 1px solid #eee;
}

.home-exchange__icon {
  width: 30px;
  vertical-align: middle;
}

.home-exchange__img {
  height: 100%;
  display: block;
}

.home-exchange__currency {
  display: flex;
  white-space: nowrap;
}

.home-exchange__currency img {
  width: 30px;
  height: 18px;
  object-fit: contain;
}

.home-exchange__currency span {
  margin-left: 15px;
  font-size: 16px;
}

.home-exchange__button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 8px 24px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.home-exchange__button:hover {
  background-color: var(--secondary);
}

.home-exchange__card {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.home-exchange__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.home-exchange__body {
  margin-top: 20px;
}

.home-exchange__item {
  width: 100%;
  min-height: 40px;
  border: 2px solid #eee;
  padding: 15px 10px;
}

.home-exchange__arrow {
  display: flex;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.home-quickstart {
  padding: 65px 0;
  background: url('../images/quickstart.jpg') no-repeat center center / cover;
}

.quickstart-item__link {
  margin: 10px auto;
  width: 135px;
  height: 135px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  position: relative;
  border: 2px solid #d4be95;
  box-shadow: 0 0 0 5px #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
}

.quickstart-item__image {
  width: 72px;
  height: 72px;
  position: relative;
}

.quickstart-item__text {
  margin-top: 8px;
  margin-bottom: 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
}

.home-contact {
  padding-top: 45px;
  padding-bottom: 20px;
}

.home-contact__item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--primary);
}

.home-contact__item:hover {
  text-decoration: underline;
}

.home-contact__image {
  padding-bottom: 72%;
  position: relative;
}

.home-contact__title {
  text-align: center;
  margin-bottom: 0;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: normal;
  font-size: 15px;
}

.home-service {
  padding-top: 45px;
  padding-bottom: 20px;
  background: linear-gradient(
    to bottom,
    rgba(190, 159, 93, 0) 50%,
    rgba(190, 159, 93, 0.5) 100%
  );
}

.home-service__image {
  position: relative;
  padding-bottom: 80%;
  margin: 0 30px;
}

.home-service__image::after {
  content: '';
  position: absolute;
  left: -30px;
  top: 10%;
  width: 2px;
  height: 80%;
  background: var(--primary);
  display: block;
}

.home-service li:first-child .home-service__image::after {
  display: none;
}

.about-rich__image {
  padding-bottom: 100px;
  position: relative;
}

.about-rich__img {
  object-fit: contain;
}

.rate-main {
  background-color: #fff;
  padding: 30px;
  margin-top: 30px;
}

.rate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.rate-header__title {
  font-size: 17px;
  color: var(--primary);
  margin: 0;
}

.rate-header__title a {
  color: inherit;
}

.rate-header__text {
  font-size: 15px;
}

.rate-header__link {
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}

.rate-header__button {
  color: var(--primary);
  outline: none;
  display: block;
  padding: 8px 22px;
  border: 2px solid currentColor;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
}

.rate-header__button:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.rate-body__image {
  margin-top: 20px;
}

.rate-body__img {
  display: block;
  width: 100%;
  min-height: 80px;
  object-fit: cover;
}

.rate-body__table {
  width: 100%;
  border: 3px solid var(--primary);
  border-collapse: collapse;
}

.rate-Japan-body__table {
  width: 100%;
  border: 3px solid #d99da9;
  border-collapse: collapse;
}

.rate-body__table tr,
.rate-Japan-body__table tr {
  height: 45px;
}

.rate-body__table th {
  background-color: var(--primary);
  color: #fff;
  text-align: left;
}

.rate-Japan-body__table th,
.rate-Japan-body__table th {
  background-color: #d99da9;
  color: #fff;
  text-align: left;
}

.rate-Japan-body__table th,
.rate-Japan-body__table td,
.rate-body__table th,
.rate-body__table td {
  padding: 12px;
}

.rate-body__table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
.rate-Japan-body__table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

.rate-exchange__currency img {
  width: 30px;
  vertical-align: middle;
}

.rate-exchange__currency span {
  font-size: 15px;
}

.rate-body__tip {
  margin-top: 15px;
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
}

.faq-main {
  margin-top: 30px;
  background-color: #fff;
  padding: 30px;
}

.faq-main__group {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-main__item {
  border-radius: 4px;
  border: 1px solid #ccc;
  border-bottom: none;
}

.faq-main__title {
  padding: 20px 12px;
  cursor: pointer;
  background-color: #f5f5f5;
  line-height: 1.6;
  color: var(--primary);
  font-size: 14px;
}

.faq-main__title:hover {
  text-decoration: underline;
}

.faq-main__content {
  border-top: 1px solid #ccc;
  font-size: 14px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-main__content:last-child {
  border-bottom: 1px solid #ccc;
}

.faq-main__text {
  padding: 20px 12px;
  margin: 0;
}

.stumer-main {
  background-color: #fff;
  margin-top: 30px;
  padding: 30px;
  border-radius: 4px;
}

.company-main {
  background-color: #fff;
  margin-top: 30px;
  padding: 30px;
  border-radius: 4px;
}

.company-item {
  display: block;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.company-item:hover {
  transform: translateY(-5px);
}

.company-item__image {
  padding-bottom: 65.5%;
  position: relative;
}

.company-item__content {
  padding: 20px;
}

.company-item__title {
  line-height: 1.6;
  height: 3.2em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
}

.company-item__extra {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.company-item__more {
  color: var(--primary);
}

.contact-main {
  margin-top: 30px;
}

.contact-banner {
  background: url('../images/contact.jpg') no-repeat center center / cover;
  padding: 40px 30px;
}

.contact-banner__title {
  text-align: center;
  margin: 0;
  line-height: 32px;
  font-size: 26px;
  color: #0e0b50;
  font-weight: normal;
}

.contact-banner__sub {
  text-align: center;
  margin-top: 15px;
  text-shadow: 0 0 0.2em #000, 0 0 0.2em #000, 0 0 0.2em #000;
  color: #fff;
  font-size: 15px;
}

.contact-content {
  padding: 30px;
  background-color: #fff;
}

.contact-whatsapp {
  text-align: center;
}

.contact-whatsapp__tip {
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-whatsapp__button {
  display: inline-flex;
  margin-top: 15px;
  background-color: #26d367;
  color: #fff;
  padding: 18px 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-whatsapp__button icon-font {
  font-size: 64px;
  display: flex;
  justify-content: center;
}

.contact-whatsapp__text p {
  margin: 0;
  line-height: 1.6;
}

.contact-store {
  margin-top: 35px;
}

.contact-address {
  margin-top: 40px;
}

.contact-address__group {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-address__item {
  display: flex;
  margin-bottom: 30px;
}

.contact-address__map {
  width: 45%;

  margin-right: 5%;
}

.contact-address__inner {
  position: relative;
  width: 100%;
  padding-bottom: 62.47%;
}

.contact-address__map img {
  display: block;
  width: 100%;
}

.contact-address__content {
  flex: 1 0 0;
}

.contact-address__name {
  margin: 0;
  color: var(--primary);
  font-size: 17px;
}

.contact-address__row {
  margin-top: 10px;
  margin-bottom: 0;
}

.contact-address__row icon-font {
  margin-right: 5px;
  color: var(--primary);
  font-size: 18px;
  vertical-align: middle;
}

.contact-address__row a {
  color: var(--primary);
  text-decoration: none;
}

.contact-address__row a:hover {
  text-decoration: underline;
}

.contact-address__button {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.contact-address__btn {
  display: inline-flex;
  padding: 5px 22px;
  border-radius: 4px;
  background-color: #eee;
  align-items: center;
  margin-right: 12px;
  text-decoration: none;
  color: inherit;
}

.contact-address__btn img {
  width: 30px;
  vertical-align: middle;
  margin-right: 5px;
}

.detail-main {
  margin-top: 30px;
  padding: 30px;
  background-color: #fff;
}

.detail-back {
  color: var(--primary);
  font-size: 15px;
}

.terms-main {
  margin-top: 30px;
  padding: 30px;
  background-color: #fff;
}
