.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #555;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  .loading-text {
    margin-top: 12px;
    font-size: 14px;
    color: #333;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
:root {
  --gta-header-h: 60px;
}

.header {
  --hdr-ctl-h: 32px;
}

.header {
  width: 100%;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fz-sm);
  font-weight: var(--fw-medium);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  will-change: transform;
  backface-visibility: hidden;
}

.header .header-inner {
  height: var(--gta-header-h, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .header-left {
  display: flex;
  align-items: center;
}

.header .header-logo-link {
  display: inline-flex;
  align-items: center;
  margin-right: var(--sp-5, 20px);
}

.header .header-logo-image {
  width: 150px;
  height: auto;
}





.header .header-right {
  display: flex;
  align-items: center;
  /*gap: var(--sp-5, 20px);*/
}

.header .header-quick-nav {
  font-size: var(--fz-sm, 14px);
}

.header .header-quick-nav a {
  display: inline-flex;
  align-items: center;
  height: var(--hdr-ctl-h);
  color: var(--color-fg-muted);
  text-decoration: none;
  margin-left: var(--sp-4, 16px);
  transition: color .2s ease;
  vertical-align: middle;
  cursor: pointer;
}

/*.header .header-quick-nav a:last-child {*/
/*  margin-right: 0;*/
/*}*/

.header .header-quick-nav a:hover {
  color: var(--color-fg);
}

.header .header-quick-nav .record-btn {
  margin-left: var(--sp-4, 16px);
}
.header .header-quick-nav .card-btn {
  margin-left: var(--sp-4, 16px);
}
.header .header-quick-nav .card-btn:hover {
  color: var(--color-fg);
}
.header .header-quick-nav .record-btn:hover {
  color: var(--color-fg);
}

.header .header-auth {
  display: flex;
  align-items: center;
  min-height: var(--hdr-ctl-h);
}

.header .header-auth-placeholder {
  width: 120px;
  height: var(--hdr-ctl-h);
  visibility: hidden;
}

.header .header-auth-actions {
  display: flex;
  align-items: center;
}

.header .header-signup {
  padding: 6px 12px;
  color: var(--color-fg-muted);
  text-decoration: none;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  height: var(--hdr-ctl-h);
}

.header .header-login {
  padding: 6px 12px;
  background: var(--brand-800, #166f40);
  color: #ffffff;
  border-radius: var(--radius-sm, 4px);
  text-decoration: none;
  transition: background-color .2s ease;
  display: inline-flex;
  align-items: center;
  height: var(--hdr-ctl-h);
  border:1px solid var(--brand-800, #166f40);
  font-weight: 600;
}

.header .header-login:hover {
  border: 1px solid var(--brand-800, #166f40) !important;
  background: #ffffff !important;
  color: var(--brand-800, #166f40) !important;
}

.header .header-user-dropdown {
  position: relative;
  display: inline-block;
}

.header .header-user-btn {
  width: var(--hdr-ctl-h);
  height: var(--hdr-ctl-h);
  padding: 0;
  border: none;
  border-radius: 50%;
  justify-content: center;

}

.header .header-user-btn .gta-icon {
  display: block;
  line-height: 0;
  color: var(--color-brand);
}

.header .header-user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  overflow: hidden;
}

.header .header-user-menu {
  position: absolute;
  top: calc(var(--hdr-ctl-h) + 18px);
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 12px);
  box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, .1));
  padding: 8px;
  width: 200px;
  z-index: 1000;
}

.header .header-user-menu a,
.header .header-user-menu .gta-btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  text-align: left;

  background: transparent;
  border: none;
  border-radius: var(--radius-sm, 6px);

  font: inherit;
  color: var(--color-fg-muted);
  cursor: pointer;
  transition: background-color .15s ease;
}

.header .header-right-btn {
  margin-right: 8px !important;
  border: none !important;
  background: transparent;
}

.header .header-user-menu a:hover,
.header .header-user-menu .gta-btn:hover {
  background: var(--color-surface-2);
}

.header .header-user-dropdown .header-user-btn {
  margin-left: var(--sp-4, 16px);
}
.header .header-user-dropdown .header-user-btn:hover {
  color: var(--color-fg);
}

.header .header-btn-menu{
  padding: unset;
  background: unset;
  border: none;
}

.header .floating-view-record-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #999;
  font-size: 14px;
}


.header .floating-view-record-empty i {
  font-size: 180px;
}

.header .gta-icon-menu {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --gta-header-h: 48px;
    --auth-width: 300px;
  }

  .header .gta-icon-menu {
    display: block;
  }


  .header .header-right {
    gap: var(--sp-4);
  }

  .header .header-quick-nav a {
    margin-right: var(--sp-3);
  }

  .header .header-auth-actions {
    gap: var(--sp-3);
  }

  .header .header-quick-nav {
    font-size: var(--fz-xs);
  }

  .auth {
    display: block;
    width: calc(var(--auth-width) - var(--auth-padding-x) ) !important;
  }

  .header-quick-nav {
    display: none;
  }

  .header .gta-icon-menu {
    font-size: 26px;
  }

  .header .header-inner {
    height: var(--gta-header-h);
  }

  .header .header-logo-image {
    height: auto;
    width: 100px;
    margin-left: 5px;
  }
}


.gta-popover-wrapper {
  position: relative;
  display: inline-block;
}
.gta-popover-wrapper.hover .gta-popover{
  padding-top: 10px;
  margin: 0;
}
.gta-popover-wrapper.click .gta-popover{
  padding-top: 10px;
  margin-top: 10px;
}
.gta-popover {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 900;
  background: rgba(0,0,0,0);
  animation: popoverFade 0.2s ease;
}
.gta-popover.left{
  left: 0;
}
.gta-popover.center{
  left: 50%;
}
.gta-popover.center .gta-popover-main{
  margin-left: -50%;
}
.gta-popover-wrapper.hover .gta-popover-main{
  min-width: unset!important;
}
.gta-popover-main{
  min-width: 160px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.gta-popover-content {
  font-size: 14px;
  color: #333;
}

@keyframes popoverFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.view-record-header {
  overflow-y: auto;
  max-height: 400px;
  padding: 12px;
}

.view-record--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #999;
}

.view-record--empty .empty-text {
  margin-top: 12px;
  font-size: 14px;
}

.view-record--empty i {
  font-size: 140px;
}

 

/* 整体滚动条宽度 */
.view-record-header::-webkit-scrollbar {
  display: block;
  width: 8px;
  height: 8px;
}

/* 滚动条轨道 */
.view-record-header::-webkit-scrollbar-track {
  background: transparent;
}

/* 滑块 */
.view-record-header::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  transition: background 0.3s;
}

/* hover 效果 */
.view-record-header::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.45);
}

.view-record-header .view-record--item {
  display: flex;
  gap: 12px;
  height: unset !important;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.view-record-header .view-record--item:last-child{
  border: unset;
}

.view-record-header .view-record--item:hover {
  opacity: 0.8;
}
.view-record-header .view-record--item .view-record--item--img{
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio:16/9;
}
.view-record-header .view-record--item img{
  object-fit: cover!important;
}
.view-record-header .view-record--item > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.view-record-header .view-record--item .view-record--item--title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.header-quick-nav .record-btn{
  display: inline-flex;
  align-items: center;
  height: var(--hdr-ctl-h);
  color: var(--color-fg-muted);
  text-decoration: none;
  transition: color .2s ease;
  vertical-align: middle;
  cursor: pointer;
  padding: unset;
  background: unset;
  border: none;
}

.webSite-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 200px;
}

.webSite-empty-state .empty-state-icon {
  font-size: 160px;
  margin-bottom: 16px;
}

.webSite-empty-state .empty-state-message {
  font-size: 14px;
  color: #999;
  margin: 0;
  text-align: center;
}


.shop-card-Header {
  min-height: 200px;
  max-height: 320px;
  padding: 12px;
  margin-left: 10px;
  overflow: hidden;
  overflow-y: auto;
}

.shop-card-Header.loading{
  position: relative;
  min-height: 200px;
}

.shop-card-Header.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #1890ff;
  border-radius: 50%;
  animation: shop-card-loading-spin 0.8s linear infinite;
}

@keyframes shop-card-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

/* 整体滚动条宽度 */
.shop-card-Header::-webkit-scrollbar {
  display: block;
  width: 8px;
  height: 8px;
}

/* 滚动条轨道 */
.shop-card-Header::-webkit-scrollbar-track {
  background: transparent;
}

/* 滑块 */
.shop-card-Header::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  transition: background 0.3s;
}

/* hover 效果 */
.shop-card-Header::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.45);
}

.shop-card-Header .shop-card--item {
  display: flex;
  flex-direction: column;
  height: unset;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.shop-card-Header .shop-card--item:last-child {
  border: unset;
}

.shop-card-Header .shop-card--item:hover {
  opacity: 0.8;
}

.shop-card-Header .shop-card--item--title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-card-Header .shop-card--item--body {
  display: flex;
  gap: 12px;
  flex: 1;
}

.shop-card-Header .shop-card--item--img {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}

.shop-card-Header .shop-card--item--content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.shop-card-Header .shop-card--item--subtitle {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-card-Header .shop-card--item--date {
  font-size: 12px;
}

.shop-card-Header .shop-card--item--info {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

.shop-card-Header .shop-card--item .info-item {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
}

.shop-card-Header .shop-card--item--price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-align: right;
  margin-top: -6px;
}

.shop-card-Header__footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.shop-card-Header__summary {
  text-align: left;
  padding: 5px 0;
  padding-left: 20px;
}

.shop-card-Header__count {
  font-size: 14px;
  color: #666;
}

.shop-card-Header__count span {
  font-weight: 600;
  color: #333;
}

.shop-card-Header__total {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.shop-card-Header__btn {
  width: 150px;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-brand);
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 60px;
}

.shop-card-Header__btn:hover {
  background: var(--brand-500);
}

.shop-card-popover .gta-popover-main{
  padding: 0;
  overflow: hidden;
}

.shop-card-popover button{
  background: unset;
  display: inline-flex;
  align-items: center;
  height: var(--hdr-ctl-h);
  color: var(--color-fg-muted);
  text-decoration: none;
  transition: color .2s ease;
  vertical-align: middle;
  cursor: pointer;
  padding: unset;
  background: unset;
  border: none;
}

.shop-card-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 200px;
}

.shop-card-empty .cart-empty-icon {
  font-size: 50px;
  margin-bottom: 16px;
}

.shop-card-empty .cart-empty-text {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.shop-card-Header .shop-card--list {
  /* 无限滚动容器，由父容器控制滚动 */
}

/* 无限滚动加载样式 */
.shop-card-loading {
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  color: #999;
}

.shop-card-no-more {
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  color: #999;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

/* iOS Safari 下拉刷新阻止 - overlay 打开时生效 */
body:has(.overlay) {
  overscroll-behavior: none;
  overflow: hidden;
}

body:has(.overlay) * {
  overscroll-behavior: none;
}

.overlay-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  min-width: 300px;
  max-width: 90%;
  animation: scaleIn 0.3s ease-out;
}

/* 简单动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}

/* 遮罩层 */
.gta-dialog-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  padding-top: 100px;
}

/* 对话框容器 */
.gta-dialog {
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  animation: fadeInUp 0.25s ease;
  max-width: 90vw;
  max-height: 90vh;
}

.gta-dialog-resize {
  resize: both;
  overflow: visible;
}

/* 头部区域 */
.gta-dialog-header {
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.gta-dialog-header > * {
  margin-bottom: 14px;
}
.gta-dialog-header > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 14px) {
  .gta-dialog-header {
    gap: 14px;
  }
  .gta-dialog-header > * {
    margin-bottom: 0;
  }
}

.gta-dialog-header-left {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  min-width: 0;
}

.gta-dialog-header-right {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.gta-dialog .gta-dialog-title {
  margin: 0;
  line-height: 1;
  flex: 0 0 auto;
}

/* 关闭按钮 */
.gta-dialog-close {
  font-size: 20px;
  color: #999;
  cursor: pointer;
  position: static;
}

/* 内容区域 */
.gta-dialog-body {
  padding: 24px;
}

/* 底部区域 */
.gta-dialog-footer {
  display: flex;
  justify-content: flex-end;
  padding: 24px;
  border-top: 1px solid #f0f0f0;
}
.gta-dialog-footer > * {
  margin-left: 12px;
}
.gta-dialog-footer > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .gta-dialog-footer {
    gap: 12px;
  }
  .gta-dialog-footer > * {
    margin-left: 0;
  }
}

.gta-dialog .gta-btn {
  padding: 8px 20px;
  height: auto;
  line-height: 1.5;
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.currency-switch-header {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
}

.currency-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: transparent;
  border: none;
  color: var(--color-fg-muted);
  font-size: var(--fz-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: color 0.2s ease;
  border-radius: var(--radius-sm);
}

.currency-switch-btn:hover {
  color: var(--color-fg);
  background: var(--color-surface-2);
}

.currency-current {
  font-weight: 600;
}

.currency-dialog-tabs {
  display: flex;
  gap: 32px;
  padding: 0;
}

.currency-tab-btn {
  position: relative;
  padding: 0 0 12px;
  background: transparent;
  border: none;
  color: var(--color-fg-muted);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.currency-tab-btn:hover:not(:disabled) {
  color: var(--color-fg);
}

.currency-tab-btn.active {
  color: var(--brand-800);
  font-weight: 600;
}

.currency-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-800);
}

.currency-tab-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.currency-dialog-content {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}

.currency-dialog-content::-webkit-scrollbar {
  width: 6px !important;
  display: block !important;
}

.currency-dialog-content::-webkit-scrollbar-track {
  background: transparent;
}

.currency-dialog-content::-webkit-scrollbar-thumb {
  display: block !important;
  background: rgba(22, 111, 64, 0.1);
  border-radius: 3px;
  width: 6px;
  height: auto;
}

.currency-dialog-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-fg-muted);
}

.currency-coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: var(--color-fg-muted);
}

.currency-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: var(--color-fg-muted);
}

.currency-section {
  margin-bottom: 24px;
}

.currency-section:last-child {
  margin-bottom: 0;
}

.currency-section-title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-fg-muted);
}

.currency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.currency-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--color-fg);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  gap: 12px;
}

.currency-item:hover {
  background: var(--color-surface-2);
  border-color: var(--color-border);
}

.currency-item.selected {
  background: rgba(22, 111, 64, 0.1);
  border-color: var(--brand-800);
  color: var(--brand-800);
}

.currency-code {
  font-weight: 600;
}

.currency-name {
  color: var(--color-fg-muted);
  font-weight: 400;
}

.currency-item.selected .currency-name {
  color: var(--brand-800);
}

@media (max-width: 640px) {
  .currency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mobile-drawer-component{
  background: white;
  position: fixed;
  z-index: 1001;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  transition: transform 0.3s ease;
}
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.mobile-drawer-component .mobile-drawer-title{
  position: relative;
  text-align: center;
}
.mobile-drawer-component .mobile-drawer-title .top-line{
  border-bottom: 1px solid var(--color-border);
}
.mobile-drawer-component .mobile-drawer-title p{
  height: 60px;
  line-height: 70px;
  font-size: var(--fz-lg);
  font-weight: 600;
  width: 70%;
  margin: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-drawer-component .mobile-drawer-title:before{
  content: "";
  position: absolute;
  background-color: #e6e6e6;
  border-radius: 2px;
  width: 40px;
  height: 4px;
  top: 10px;
  left: calc(50% - 20px);
}
.mobile-drawer-component .drawer-body{
  height: calc(100% - 61px);
  overflow: auto;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
}

.navigation-mobile {
  width: 100%;
}

.navigation-mobile-content {
  display: flex;
  flex-direction: column;
}

.navigation-mobile-tabs {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ededed;
}

.nav-mobile-tabs-item {
  font-size: 15px;
  color: #666;
  position: relative;
  cursor: pointer;
}

.nav-mobile-tabs-item.active {
  color: #222;
  font-weight: 600;
}

.nav-mobile-tabs-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: #222;
}

.tab-scenic-tips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 12px;
}

.tab-scenic-tips span {
  flex: 0 0 auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #666;
  font-size: 13px;
}

.tab-scenic-tips span.active {
  background: #222;
  color: #fff;
}

.navigation-city-list {
  max-height: calc(65vh - 110px);
  overflow: auto;
}

.navigation-city-list ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.city-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.city-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}

.city-item-text1 {
  margin: 0 0 4px;
  font-size: 12px;
  color: #888;
}

.city-item-text2 {
  margin: 0;
  font-size: 14px;
  color: #222;
}

.mobile-header-quick-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-header-quick-nav a {
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.slide-track {
  position: relative;
  width: 100%;
}

.slide-track-viewport {
  overflow: hidden;
  width: 100%;
}

.slide-track-rail {
  display: flex;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  padding: 2px 0 2px 0;
}

.slide-track-item {
  box-sizing: border-box;
  padding-left: 2.5px;
  padding-right: 2.5px;
  min-width: 0;
}

.slide-track-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.78);
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.slide-track-arrow::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border-radius: 9999px;
  background: transparent;
  pointer-events: none;
}

.slide-track-arrow i {
  display: block;
  line-height: 1;
  color: inherit;
}

.slide-track:hover .slide-track-arrow,
.slide-track:focus-within .slide-track-arrow {
  opacity: 1;
  pointer-events: auto;
}

.slide-track-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.slide-track-arrow:active {
  transform: translateY(-50%) scale(0.96);
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-track-arrow-left {
  left: 12px;
}

.slide-track-arrow-right {
  right: 12px;
}

.region-picker-module {
  position: relative;
}

.region-picker-wrapper {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  height: 48px;
  background: #fff;
}

.region-picker-area-code {
  padding: 0 14px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-right: 1px solid #ddd;
  font-size: 15px;
}

.region-picker-area-code-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.region-picker-area-code-arrow.open {
  transform: rotate(180deg);
}


.region-picker-number {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
  font-size: 16px;
  background: transparent;
}

.region-picker-select-wrapper {
  border: 1px solid #ccc;
  padding: 12px 8px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.region-picker-select-label {
  font-size: 16px;
  color: #333;
}

.region-picker-select-arrow {
  width: 20px;
  height: 20px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.region-picker-select-arrow.open {
  transform: rotate(180deg);
}

.region-picker-variant-select .region-picker-wrapper {
  display: none;
}

.region-picker-selector-panel {
  max-height: 600px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
}

.region-picker-portal-root {
  position: absolute;
  z-index: 9999;
}

.region-picker-selector-header {
  padding: 10px 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.region-picker-selector-search {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #f8f8f8;
}

.region-picker-selector-search:focus {
  outline: none;
}

.region-picker-selector-content {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.region-picker-selector-content .no-result {
  padding: 20px 16px;
  text-align: center;
}

.region.region-picker-selector-content::-webkit-scrollbar {
  width: 2px;
}

.region-picker-selector-content::-webkit-scrollbar-track {
  background: transparent;
}

.region-picker-selector-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transition: all 0.3s;
}

.region-picker-selector-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.region-picker-country-item {
  padding: 14px 20px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.region-picker-country-name {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 15px;
}

.region-picker-country-code {
  flex: 0 0 60px;
  text-align: right;
  color: #666;
  font-size: 14px;
}

.region-picker-country-item:hover {
  background: #f3f3f3;
}

.region-picker-section {
  padding: 8px 0;
}

.region-picker-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 13px;
  color: #999;
  font-weight: 400;
}
.region-picker-section-title > * {
  margin-left: 12px;
}
.region-picker-section-title > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .region-picker-section-title {
    gap: 12px;
  }
  .region-picker-section-title > * {
    margin-left: 0;
  }
}

.region-picker-section-title::before,
.region-picker-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

.region-picker-section-title::before {
  background: linear-gradient(to left, transparent, #ddd, transparent);
}

.auth {
  --auth-width: 400px;
  --auth-padding-x: var(--sp-8);
  --auth-padding-y: var(--sp-6);
  --auth-gap: var(--sp-4);

  --auth-bg: var(--color-surface);
  --auth-fg: var(--color-fg);
  --auth-muted: var(--color-fg-muted);
  --auth-border: var(--color-border);
  --auth-radius: var(--radius-lg);
  --auth-shadow: var(--shadow-md);
  --auth-title-fz: 24px;
  --auth-input-h: 48px;
  --auth-control-h: 50px;
  --auth-btn-radius: var(--radius-md);
  --gta-icon-size: 32px;
}

.auth {
  background: var(--auth-bg);
  color: var(--auth-fg);
  border-radius: var(--auth-radius);
  padding: var(--auth-padding-y) var(--auth-padding-x);
  width: var(--auth-width);
  box-shadow: var(--auth-shadow);
  position: relative;

}

.auth .auth-header {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: calc(var(--auth-gap) + var(--sp-2));
}

.auth .auth-back {
  width: var(--icon-wrap-md);
  height: var(--icon-wrap-md);
  transform: rotate(90deg);
  cursor: pointer;
  margin-right: var(--sp-3);
}

.auth .auth-logo-wrap {
  text-align: left;
  flex: 1;
}

.auth .auth-logo {
  width: 100px;
}

.auth .auth-title {
  font-size: var(--auth-title-fz);
  font-weight: var(--fw-bold);
  margin: var(--sp-3) 0;
}

.auth .auth-close {
  position: absolute;
  top: -23px;
  right: -30px;
  background: var(--color-surface-2);
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  width: var(--icon-wrap-lg);
  height: var(--icon-wrap-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth .auth-close-icon {
  width: var(--icon-size-md);
  height: var(--icon-size-md);
}

.auth .auth-form {
  margin-top: var(--sp-2);
}

.auth .auth-error-message {
  margin-top: var(--sp-2);
  display: flex;
  align-items: center;
  color: var(--color-danger);
  font-size: var(--fz-xs);
  min-height: 20px;
  visibility: hidden;
}

.auth .auth-error-message.visible {
  visibility: visible;
}

.auth .auth-error-icon {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  background-color: var(--color-danger);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  line-height: var(--icon-size-sm);
  margin-right: var(--sp-2);
}

.auth .auth-error-text {
  line-height: 1.2;
}

.auth .auth-email-input-wrapper {
  width: 100%;
  height: var(--auth-input-h);
  border: 1px solid var(--auth-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  background: var(--auth-bg);
  overflow: hidden;
}

.auth .auth-email-input-wrapper input {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 var(--sp-4);
  font-size: 16px;
  outline: none;
  background: transparent;
  color: var(--auth-fg);
}

.auth .auth-email-input-wrapper input::placeholder {
  color: var(--auth-muted);
 
}

.auth .auth-send-button {
  margin-top: var(--sp-2);
  width: 100%;
  padding: var(--sp-4) 0;
  background: var(--color-brand);
  color: var(--color-brand-contrast);
  font-weight: var(--fw-bold);
  border: none;
  border-radius: var(--auth-btn-radius);
  cursor: pointer;
  font-size: var(--fz-md);
}

.auth .auth-send-button.disabled {
  background: var(--color-border);
  color: var(--color-fg-muted);
  cursor: not-allowed;
}

.auth .auth-third {
  margin: var(--sp-6) 0;
}

.auth .auth-third.no-margin {
  margin: 0;
}

.auth .auth-third-divider {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-4);
}

.auth .auth-third-divider::before,
.auth .auth-third-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--auth-border);
}

.auth .auth-third-divider span {
  margin: 0 var(--sp-3);
  font-size: var(--fz-sm);
  color: var(--auth-muted);
}

.auth .auth-third-actions {
  display: flex;
  flex-direction: column;
}
.auth .auth-third-actions > * {
  margin-bottom: var(--sp-4);
}
.auth .auth-third-actions > *:last-child {
  margin-bottom: 0;
}
@supports (gap: var(--sp-4)) {
  .auth .auth-third-actions {
    gap: var(--sp-4);
  }
  .auth .auth-third-actions > * {
    margin-bottom: 0;
  }
}

.auth .gta-btn.gta-btn--icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--auth-control-h);
  padding: 0 var(--sp-4);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.auth .gta-btn.gta-btn--icon > * {
  margin-left: var(--sp-3);
}
.auth .gta-btn.gta-btn--icon > *:first-child {
  margin-left: 0;
}
@supports (gap: var(--sp-3)) {
  .auth .gta-btn.gta-btn--icon {
    gap: var(--sp-3);
  }
  .auth .gta-btn.gta-btn--icon > * {
    margin-left: 0;
  }
}

.auth .gta-btn.gta-btn--icon .gta-icon {
  flex: 0 0 var(--gta-icon-size);
  width: var(--gta-icon-size);
  height: var(--gta-icon-size);
  line-height: 0;
  color: var(--color-brand);
}

.auth .gta-btn.gta-btn--icon .gta-label {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .auth {
    width: 100%!important;
    box-shadow: unset !important;
    padding: 0px !important;
    margin: 0 auto !important;
  }
  .wechat-login-btn {
   display: none !important;
  }
}

 
.verify {
  --verify-title-fz: 24px;
  --verify-info-fz: var(--fz-sm);
  --verify-error-fz: 13px;
  --verify-gap: var(--sp-3);
  --verify-gap-lg: var(--sp-4);
  --verify-input-size: 44px;
  --verify-input-radius: 8px;
  --verify-input-fz: var(--fz-md);
  --verify-resend-fz: var(--fz-sm);
}

.verify .verify-title {
  text-align: center;
  font-size: var(--verify-title-fz);
  font-weight: var(--fw-bold);
  color: var(--color-fg);
  margin: var(--sp-3) 0;
}

.verify .verify-info {
  font-size: var(--verify-info-fz);
  color: var(--color-fg-muted);
  text-align: center;
  margin-bottom: var(--verify-gap-lg);
}

.verify .verify-info span {
  font-weight: var(--fw-semibold);
  color: var(--color-fg);
}

.verify .verify-info a {
  color: var(--color-brand);
  margin-left: var(--sp-2);
  text-decoration: underline;
  cursor: pointer;
}

.verify .verify-inputs {
  display: flex;
  justify-content: center;
  margin: var(--verify-gap-lg) 0;
}
.verify .verify-inputs > * {
  margin-left: var(--verify-gap);
}
.verify .verify-inputs > *:first-child {
  margin-left: 0;
}
@supports (gap: var(--verify-gap)) {
  .verify .verify-inputs {
    gap: var(--verify-gap);
  }
  .verify .verify-inputs > * {
    margin-left: 0;
  }
}

.verify .verify-input {
  width: var(--verify-input-size);
  height: var(--verify-input-size);
  border: 1px solid var(--color-border);
  border-radius: var(--verify-input-radius);
  text-align: center;
  font-size: 16px !important;
  line-height: 1;
  color: var(--color-fg);
  background: var(--color-surface);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
  font-variant-numeric: tabular-nums;
}

.verify .verify-input:hover {
  border-color: color-mix(in srgb, var(--color-border) 60%, var(--color-brand) 40%);
}

.verify .verify-input:focus,
.verify .verify-input:focus-visible {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand) 20%, transparent);
}

.verify.is-error .verify-input,
.verify .verify-input.is-error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-danger) 20%, transparent);
}

.verify .verify-input:disabled {
  background: var(--color-surface-2);
  color: var(--color-fg-muted);
  cursor: not-allowed;
}

.verify .verify-input[type="number"]::-webkit-outer-spin-button,
.verify .verify-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.verify .verify-input[type="number"] {
  -moz-appearance: textfield;
}

.verify .verify-error-msg {
  color: var(--color-danger);
  font-size: var(--verify-error-fz);
  margin-top: var(--sp-2);
  text-align: center;
  min-height: 18px;
}

.verify .verify-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--verify-resend-fz);
  color: var(--color-fg-muted);
}
.verify .verify-footer > * {
  margin-left: var(--sp-3);
}
.verify .verify-footer > *:first-child {
  margin-left: 0;
}
@supports (gap: var(--sp-3)) {
  .verify .verify-footer {
    gap: var(--sp-3);
  }
  .verify .verify-footer > * {
    margin-left: 0;
  }
}

.verify .verify-countdown-number {
  color: var(--color-brand);
  font-weight: var(--fw-semibold);
  font-size: var(--fz-md);
  margin-right: 2px;
}

.verify .verify-resend-btn {
  color: var(--color-brand);
  cursor: pointer;
  text-decoration: underline;
  font-weight: var(--fw-medium);
}

.verify .verify-help-btn,
.verify .verify-change-btn {
  color: #6b7280;
}


.verify .verify-resend-btn[aria-disabled="true"],
.verify .verify-resend-btn.is-disabled {
  color: var(--color-fg-muted);
  text-decoration: none;
  cursor: not-allowed;
  pointer-events: none;
}

.captcha {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .35);
  display: flex;
  justify-content: center;
  align-items: center;
}

.captcha .captcha-modal {
  background: var(--color-surface);
  color: var(--color-fg);
  width: 360px;
  max-width: calc(100% - var(--sp-8));
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: captcha-fade-in .2s ease-out;
}

.captcha .captcha-title {
  font-size: var(--fz-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-fg);
  margin-bottom: var(--sp-4);
}

.captcha .captcha-inline-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: var(--sp-4);
  overflow: hidden;
}
.captcha .captcha-inline-container > * {
  margin-left: var(--sp-3);
}
.captcha .captcha-inline-container > *:first-child {
  margin-left: 0;
}
@supports (gap: var(--sp-3)) {
  .captcha .captcha-inline-container {
    gap: var(--sp-3);
  }
  .captcha .captcha-inline-container > * {
    margin-left: 0;
  }
}

.captcha .captcha-input {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  height: 45px;
  padding: 0 var(--sp-3);
  font-size: 16px !important;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-fg);
}

.captcha .captcha-input:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--color-brand);
 
}

.captcha .captcha-image-inline {
  width: 100px;
  height: 45px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  object-fit: contain;
  display: block;
  cursor: pointer;
}

.captcha .captcha-error-message {
  color: var(--color-danger);
  font-size: 13px;
  min-height: 18px;
  margin-bottom: var(--sp-3);
  text-align: left;
  width: 100%;
  visibility: hidden;
}

.captcha .captcha-error-message.visible {
  visibility: visible;
}

.captcha .captcha-modal-actions {
  width: 100%;
  display: flex;
}
.captcha .captcha-modal-actions > * {
  margin-left: var(--sp-3);
}
.captcha .captcha-modal-actions > *:first-child {
  margin-left: 0;
}
@supports (gap: var(--sp-3)) {
  .captcha .captcha-modal-actions {
    gap: var(--sp-3);
  }
  .captcha .captcha-modal-actions > * {
    margin-left: 0;
  }
}

.captcha .captcha-confirm,
.captcha .captcha-cancel {
  flex: 1;
  padding: var(--sp-3);
  font-size: var(--fz-sm);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.captcha .captcha-confirm {
  background: var(--color-brand);
  color: var(--color-brand-contrast);
}

.captcha .captcha-confirm:hover {
  background: color-mix(in srgb, var(--color-brand) 90%, black 10%);
}

.captcha .captcha-confirm:active {
  background: color-mix(in srgb, var(--color-brand) 80%, black 20%);
}

.captcha .captcha-cancel {
  background: var(--color-surface-2);
  color: var(--color-fg);
}

.captcha .captcha-cancel:hover {
  background: color-mix(in srgb, var(--color-surface-2) 90%, black 10%);
}

.captcha .captcha-cancel:active {
  background: color-mix(in srgb, var(--color-surface-2) 80%, black 20%);
}

@keyframes captcha-fade-in {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.map-content{
  width: 100%;
  height: 100%;
  position: relative;
}

.map-content .map-search-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  display: flex;
  background: white;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.map-content .map-search-bar > * {
  margin-left: 8px;
}
.map-content .map-search-bar > *:first-child {
  margin-left: 0;
}
@supports (gap: 8px) {
  .map-content .map-search-bar {
    gap: 8px;
  }
  .map-content .map-search-bar > * {
    margin-left: 0;
  }
}

.map-content .map-search-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 250px;
  outline: none;
}

.map-content .map-search-input:focus {
  border-color: #1890ff;
}

.map-content .map-search-btn {
  padding: 8px 16px;
  background: #1890ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.map-content .map-search-btn:hover {
  background: #40a9ff;
}

.map-content .map-location-info {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 100;
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 280px;
  max-width: 400px;
}

.map-content .location-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  padding-right: 70px;
}

.map-content .location-text > div {
  margin-bottom: 4px;
}

.map-content .location-text > div:last-child {
  margin-bottom: 0;
}

.map-content .location-confirm-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 16px;
  background: #52c41a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.map-content .location-confirm-btn:hover {
  background: #73d13d;
}

.map-content .map{
  width: 100%;
  height: 100%;
}

.map-content .amap-marker-label{
  border: unset;
  background: unset;
  cursor: pointer;
}

.gtatext-content {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  word-break: break-all;
}

.gtatext-content:not(.expanded) .gtatext-content-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gtatext-content.expanded {
  display: block;
}

.gtatext-expand-link {
  color: var(--color-brand);
  text-decoration: none;
  margin-left: 4px;
  font-weight: 500;
  cursor: pointer;
}

.gtatext-expand-link:hover {
  text-decoration: underline;
}


/*# sourceMappingURL=commons.e4f1a858.css.map*/