@charset "UTF-8";
#launcher {
  display: none !important;
}

.drawer {
  width: 0;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  display: block !important;
}

.drawer > .menu-cell {
  display: none !important;
}

.drawer.right {
  right: 0;
}

.drawer.active {
  width: 100%;
}

.drawer-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=45);
  transition: opacity 0.3s linear;
}

.drawer-mask-show {
  background-color: rgba(0, 0, 0, 0.45);
}

.drawer.active .drawer-mask {
  opacity: 1;
}

.drawer-content {
  width: 2.2rem !important;
  height: 100%;
  background-color: #fff;
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
  position: absolute;
  top: 0;
  border-radius: 0.1rem 0 0 0.1rem;
}

.drawer.left .drawer-content {
  transform: translateX(-100%);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.drawer.right .drawer-content {
  right: 0;
  transform: translateX(100%);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}

.drawer.active .drawer-content {
  transform: none;
}

.drawer-content-header {
  height: 55px;
  line-height: 55px;
  border-bottom: 1px solid #e8e8e8;
}

.drawer-content-title {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 16px;
  margin: 0 20px;
}

.drawer-close {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

.drawer-content-body {
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.drawer-content-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0);
}

.drawer-content-body::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #cfd6dd;
}

.drawer .menu-cell {
  position: relative;
  height: 0.78rem;
  display: flex;
  border-bottom: 0.02rem solid #dcdbdf;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  padding-left: 0.2rem;
}

.drawer .menu-cell > *:not(:last-child) {
  margin-right: 0.1rem;
}

.drawer .menu-cell .icon-area {
  width: 0.5rem;
  height: 0.5rem;
}

.drawer .menu-cell .menu-text {
  font-size: 0.2rem;
  color: #282832;
  font-weight: bold;
}

.drawer .menu-cell a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.drawer .action-area {
  display: flex;
  position: absolute;
  bottom: 0.15rem;
  right: 0.1rem;
  max-width: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.drawer .action-area > * {
  margin-right: 0.05rem;
  margin-bottom: 0.05rem;
}

.drawer .action-area .user-support {
  border: 0.02rem solid #b0b4bd;
  color: black;
  cursor: pointer;
  position: relative;
  height: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.01rem 0.1rem 0.01rem 0.05rem;
  font-size: 0.2rem;
  border-radius: 0.2rem;
}

.drawer .action-area .user-support .support-icon {
  width: 0.15rem;
  height: 0.15rem;
  margin: 0 0.05rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer .action-area .user-support .contact {
  flex: 1;
  font-size: 0.1rem;
}

.drawer .action-area .drawer-lang {
  border: 0.02rem solid #b0b4bd;
  height: 100%;
  background-color: white;
  border-radius: 50px;
  min-width: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  padding: 0.01rem 0.03rem;
  position: relative;
  cursor: pointer;
  margin-left: 0;
}

.drawer .action-area .drawer-lang .icon {
  height: 0.15rem;
  margin: 0px 0.05rem;
}

.drawer .action-area .drawer-lang .text {
  font-size: 0.1rem;
  line-height: 1;
}

.drawer .action-area .drawer-lang .chevron {
  height: 0.08rem;
  margin: 0px 0.05rem;
  transition: transform 0.3s ease;
}

.drawer .action-area .drawer-lang img {
  height: 100%;
  object-fit: cover;
}

.drawer .action-area .drawer-lang:hover .chevron {
  transform: rotate(180deg);
}

.drawer .action-area .drawer-lang:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(calc(-100% - 0.25rem));
}

.drawer .action-area .drawer-lang .lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 5px;
  min-width: 150px;
  max-height: 300px;
  overflow-y: auto;
}

.drawer .action-area .drawer-lang .lang-dropdown .lang-option {
  display: block;
  padding: 8px 12px;
  color: black;
  text-decoration: none;
  font-size: 0.09rem;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.drawer .action-area .drawer-lang .lang-dropdown .lang-option:last-child {
  border-bottom: none;
}

.drawer .action-area .drawer-lang .lang-dropdown .lang-option:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.drawer .action-area .drawer-lang .lang-dropdown .lang-option span {
  display: block;
  white-space: nowrap;
}

.menu-btn {
  width: 0.2rem;
  height: 0.2rem;
  margin-inline-start: 0.15rem;
  cursor: pointer;
}

@supports not (margin-inline-start: 0.15rem) {
  .menu-btn {
    margin-left: 0.15rem;
  }
}

.login-area {
  padding: 0.02rem 0.15rem;
  background-color: #2a2830;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.login-area > *:not(:last-child) {
  margin-right: 0.06rem;
}

.login-area .login-default-avatar {
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 0.02rem;
}

.login-area-text {
  max-width: 1rem;
  font-size: 0.15rem;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* 行数*/
  -webkit-box-orient: vertical;
}

.loginPopup {
  width: 4.5rem;
  height: 7.5rem;
  max-width: 450px;
  max-height: 750px;
  position: relative;
  padding: 0 !important;
  background: transparent !important;
}

.loginPopup .container {
  height: 100%;
  position: relative;
  background-color: white;
  border-radius: 0.1rem;
}

.loginPopup .container iframe {
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}

.loginPopup.modal a.close-modal {
  background-image: url("../img/popup/close.png");
  height: 0.24rem;
  width: 0.24rem;
  top: 12%;
  right: 5%;
}

.logoutPopup {
  width: 4rem;
  padding: 0.1rem 0.2rem 0.2rem;
  max-width: none;
}

.logoutPopup .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.logoutPopup .container .logout-title {
  color: black;
  margin: 0.14rem 0 0.18rem;
  font-size: 0.24rem;
  font-weight: 700;
  word-break: break-word;
  text-align: center;
}

.logoutPopup .container .action-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoutPopup .container .action-area > *:not(:last-child) {
  margin-right: 0.2rem;
}

.logoutPopup .container .action-area .confirm-btn {
  background-color: #5861e9;
  color: #fff;
}

.logoutPopup .container .action-area .cancel-btn {
  position: relative;
  border: 0.02rem solid #b7b8b8;
  color: #818181;
}

.logoutPopup .container .action-area .cancel-btn a {
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoutPopup .container .action-area .cancel-btn,
.logoutPopup .container .action-area .confirm-btn {
  border-radius: 0.05rem;
  width: 1.5rem;
  box-shadow: none;
  font-family: GemunuLibreExtraBold, sans-serif;
  font-weight: bold;
  font-size: 0.2rem;
  line-height: 1;
  padding: 0 0.14rem;
  height: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  letter-spacing: 0.02rem;
}

html[lang="ar"] .drawer-content {
  border-radius: 0 0.1rem 0.1rem 0;
  direction: rtl;
}

html[lang="ar"] .drawer .menu-cell {
  padding-left: unset;
  padding-right: 0.2rem;
}

html[lang="ar"] .drawer .menu-cell > *:not(:last-child) {
  margin-right: unset;
  margin-left: 0.1rem;
}

html[lang="ar"] .drawer .action-area {
  left: 0.1rem;
}

html[lang="ar"] .drawer .action-area > *:not(:last-child) {
  margin-right: unset;
  margin-left: 0.05rem;
}

html[lang="ar"] .drawer .action-area .user-support {
  padding: 0.01rem 0.05rem 0.01rem 0.1rem;
}

@supports not (margin-inline-start: 0.15rem) {
  html[lang="ar"] .menu-btn {
    margin-right: 0.15rem;
  }
}

html[lang="ar"] .login-area > *:not(:last-child) {
  margin-left: 0.06rem;
  margin-right: unset;
}

html[lang="ar"] .logoutPopup .action-area > *:not(:last-child) {
  margin-right: unset;
  margin-left: 0.2rem;
}

html[lang="ja"] .nav {
  justify-content: flex-end;
}
