.editor-wrapper {
  --article-w: 720px;
  --gta-icon-size: 16px;
  position: relative;
  padding: 0 20px;
}

.editor-wrapper .ProseMirror {
  max-width: var(--article-w);
  min-height: 320px;
  outline: none;
  cursor: text;
}

.editor-wrapper .ProseMirror-selectednode {
  position: relative;
}

.editor-wrapper .ProseMirror p.gta-rich--editor:first-child::before {
  content: attr(data-placeholder);
  color: #9ca3af;
  pointer-events: none;
  float: left;
  height: 0;
  white-space: pre-wrap;
}

.editor-wrapper.editor-content {
  margin-top: 20px;
}

.editor-wrapper .rich-heading {
  position: relative;
}

.editor-wrapper .rich-image--figure {
  position: relative;
  width: fit-content;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  --cap-grad: 10px;
}

.editor-wrapper .rich-image--figure img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-inline: auto;
}

.editor-wrapper .rich-image--caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  padding-top: calc(8px + var(--cap-grad));
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.editor-wrapper .rich-image--caption::before {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--cap-grad)) 0 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .28), rgba(0, 0, 0, .12) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.editor-wrapper .rich-toolbar {
  --gta-icon-size: 18px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  gap: 6px;
  padding: 4px 6px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  backdrop-filter: saturate(160%) blur(6px);
  align-items: center;
  z-index: 10;
}

.editor-wrapper .rich-toolbar--btn {
  padding: 0 5px;
  height: auto;
  line-height: normal;
  text-shadow: 0 0 1px rgba(0, 0, 0, .6), 0 0 2px rgba(0, 0, 0, .6);
}

.editor-wrapper .rich-image--figure:hover .rich-toolbar,
.editor-wrapper .rich-heading:hover .rich-toolbar,
.editor-wrapper .rich-trip--card:hover .rich-toolbar,
.editor-wrapper .rich-scenic--card:hover .rich-toolbar,
.editor-wrapper .rich-video--card:hover .rich-toolbar {
  display: flex;
}

.editor-wrapper .rich-image--figure[data-cover="1"]::after {
  content: '封面';
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 12px;
  color: #fff;
  background: #1677ff;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 10;
}

.editor-wrapper.is-disabled .ProseMirror {
  cursor: default;
}

.editor-wrapper.is-disabled .rich-toolbar {
  display: none !important;
}

.editor-wrapper .editor-guard {
  display: none;
}

.editor-wrapper.is-disabled .editor-guard {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: auto;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(1px) saturate(110%);
}

.editor-guard--hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  user-select: none;
}

.editor-guard--hint .gta-icon[data-size="custom"] {
  --gta-icon-size: 32px;
  opacity: .75;
}

.editor-wrapper .rich-trip--card {
  margin: 10px 0;
  padding: 16px;

  display: flex;
  gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  align-items: stretch;

  position: relative;
}

.editor-wrapper .rich-trip--overlay-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  text-decoration: none;
  border-radius: 14px;
}

.editor-wrapper .rich-trip--thumb,
.editor-wrapper .rich-trip--body {
  position: relative;
  z-index: 2;
}

.editor-wrapper .rich-trip--thumb {
  width: 164px;
  height: 164px;
  overflow: hidden;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 10px;
}

.editor-wrapper .rich-trip--thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.editor-wrapper .rich-trip--body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editor-wrapper .rich-trip--title {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editor-wrapper .rich-trip--footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.editor-wrapper .rich-trip--price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.editor-wrapper .rich-trip--actions {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

.editor-wrapper .ProseMirror-selectednode {
  outline: 2px solid rgba(96, 165, 250, 0.6);
  outline-offset: 2px;
}



.editor-wrapper .rich-video--card {
  margin: 10px 0;
  padding: 16px;

  display: flex;
  gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  align-items: stretch;

  position: relative;
  text-decoration: none;
  color: inherit;
}

.editor-wrapper .rich-video--card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.editor-wrapper .rich-video--thumb,
.editor-wrapper .rich-video--body {
  position: relative;
  z-index: 2;
}

.editor-wrapper .rich-video--thumb {
  width: 164px;
  height: 164px;
  overflow: hidden;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #f3f4f6;
}

.editor-wrapper .rich-video--thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.editor-wrapper .rich-video--play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.editor-wrapper .rich-video--play-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  position: relative;
}

.editor-wrapper .rich-video--play-icon::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.95;
}

.editor-wrapper .rich-video--body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editor-wrapper .rich-video--title {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editor-wrapper .rich-video--summary {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.editor-wrapper .rich-video--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-wrapper .rich-video--tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 5px;
  border-radius: 5px;

  font-size: 12px;
  color: #374151;

  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  user-select: none;
}

.editor-wrapper .rich-video--footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.editor-wrapper .rich-video--actions {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

.editor-wrapper .rich-scenic--card {
  position: relative;
  margin: 0;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.editor-wrapper .rich-scenic--thumb {
  display: block;
  line-height: 0;
}

.editor-wrapper .rich-scenic--img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.editor-wrapper .rich-scenic--body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 16px 56px 14px 16px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.48) 40%,
      rgba(0, 0, 0, 0.18) 70%,
      rgba(0, 0, 0, 0.00) 100%);
}

.editor-wrapper .rich-scenic--name,
.editor-wrapper .rich-scenic--title {
  margin: 0;
  padding: 0;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
  color: #fff;
}

.editor-wrapper .rich-scenic--name {
  font-size: 22px;
  font-weight: 700;
}

.editor-wrapper .rich-scenic--title {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
}

.editor-wrapper .rich-scenic--cta {
  position: absolute;
  right: 12px;
  bottom: 12px;

  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  text-decoration: none;

  background: rgba(0, 0, 0, 0.08);

}

.editor-wrapper .rich-scenic--cta:active {
  background: rgba(0, 0, 0, 0.12);
}

.editor-wrapper .rich-scenic--cta .gta-icon[data-size="custom"] {
  --gta-icon-size: 36px;
}

.actions-menu--surface {
  --tb-accent: var(--color-brand);
  --tb-text: var(--color-fg);
  --tb-muted: var(--color-fg-muted);
  --tb-border: var(--color-border);
  --tb-bg: var(--color-surface);

  --tb-hover-bg: color-mix(in srgb, var(--tb-accent) 8%, transparent);
  --tb-active-bg: color-mix(in srgb, var(--tb-accent) 12%, transparent);

  --tb-radius: var(--radius-md);
  --tb-gap-x: var(--sp-5);
  --tb-gap-y: var(--sp-4);
  --tb-padding: var(--sp-4);
}

.actions-menu--surface {
  background: var(--tb-bg);
  border: 1px solid var(--tb-border);
  border-radius: var(--tb-radius);
  box-shadow: var(--shadow-md);
  padding: var(--tb-padding);
  color: var(--tb-text);
}

.actions-menu--surface .actions-menu--list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--tb-gap-x);
  row-gap: var(--tb-gap-y);
  list-style: none;
  margin: 0;
  padding: 0;
}

.actions-menu--surface .actions-menu--pill {
  padding: 8px 12px;
  color: var(--tb-muted);
  -webkit-tap-highlight-color: transparent;
}

.actions-menu--surface .actions-menu--pill .gta-icon,
.actions-menu--surface .actions-menu--pill .actions-menu--label {
  color: inherit;
}


.actions-menu--surface .actions-menu--pill:hover:not(:disabled),
.actions-menu--surface .actions-menu--pill[aria-disabled="false"]:hover {
  background: var(--tb-hover-bg);
  color: var(--tb-accent);
}

.actions-menu--surface .actions-menu--pill:active:not(:disabled),
.actions-menu--surface .actions-menu--pill[aria-disabled="false"]:active {
  background: var(--tb-active-bg);
  color: var(--tb-accent);
}

.actions-menu--surface .actions-menu--pill:focus-visible {
  outline: 2px solid var(--tb-accent);
  outline-offset: 2px;
}

.actions-menu--surface .actions-menu--pill:disabled,
.actions-menu--surface .actions-menu--pill[aria-disabled="true"] {
  color: var(--tb-muted);
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.actions-menu--surface .actions-menu--label {
  color: inherit;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.4s;
  }
  
  .toggle-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
  }
  
  .toggle-switch input:checked + .toggle-slider {
    background-color: #17a43a;
  }
  
  .toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(26px);
  }
  @media (max-width: 768px) {
    .toggle-switch {
      width: 40px;
      height: 20px;
    }
  
    .toggle-slider::before {
      height: 14px;
      width: 14px;
      left: 3px;
      bottom: 3px;
    }
  
    .toggle-switch input:checked + .toggle-slider::before {
      transform: translateX(20px); 
    }
  }
  
.ct {
  --ct-bg: var(--color-surface);
  --ct-bg-alt: var(--color-surface-2);
  --ct-fg: var(--color-fg);
  --ct-fg-muted: var(--color-fg-muted);
  --ct-border: var(--color-border);
  --ct-radius: var(--radius-sm);
  --ct-shadow: var(--shadow-md);
  --ct-row-h: 48px;
  --ct-pad-y: var(--sp-3);
  --ct-pad-x: var(--sp-4);

  --ct-icon-wrap: var(--icon-wrap-md, 28px);
  --ct-icon-size: var(--icon-size-md, 20px);
}

.ct[data-density="compact"] {
  --ct-row-h: 40px;
  --ct-pad-y: var(--sp-2);
  --ct-pad-x: var(--sp-3);
}

.ct[data-density="comfortable"] {
  --ct-row-h: 52px;
  --ct-pad-y: var(--sp-4);
  --ct-pad-x: var(--sp-5);
}

.ct-bordered {
  padding: var(--sp-5) 0;
  overflow-x: auto;
  width: 100%;
  font-weight: 500;
}

.ct .ct-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: var(--ct-bg);
  color: var(--ct-fg);
  box-shadow:
    inset 0 1px 0 0 var(--ct-border),
    inset 1px 0 0 0 var(--ct-border),
    inset -1px 0 0 0 var(--ct-border);
  border-radius: var(--ct-radius) var(--ct-radius) 0 0;
  overflow: hidden;
  font-size: var(--fz-sm);
}

.ct .ct-table thead {
  background: var(--ct-bg-alt);
}

.ct .ct-th {
  resize: horizontal;
  overflow: auto;
}

.ct .ct-th,
.ct .ct-td {
  padding: var(--ct-pad-y) var(--ct-pad-x);
  text-align: center;
  border-bottom: 1px solid var(--ct-border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  height: var(--ct-row-h);
  box-sizing: border-box;
  position: relative;
}

.ct .ct-th::after,
.ct .ct-td::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ct-border);
}

.ct .ct-th:last-child::after,
.ct .ct-td:last-child::after {
  display: none;
}

.ct .ct-th {
  color: var(--ct-fg-muted);
  font-weight: 600;
  letter-spacing: .3px;
}

.ct .ct-td {
  color: var(--ct-fg);
}

.ct .ct-table tbody tr:hover {
  background: var(--ct-bg-alt);
  transition: background-color .2s ease-in-out;
}

.ct .ct-th-index {
  width: 50px;
}

.ct .table-actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
}

.ct .btn--text {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  color: var(--color-info);
  cursor: pointer;
  font-size: 13px;
  padding: 2px 6px;
}

.ct .btn--text:hover {
  background: color-mix(in srgb, var(--color-brand) 12%, transparent);
  color: color-mix(in srgb, var(--color-brand) 85%, var(--ct-fg));
}

.ct .gta-icon {
  color: var(--color-brand);

}

.ct .ct-thumb {
  width: var(--ct-icon-size);
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.ct .ct-preview {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  display: block;
  box-shadow: var(--ct-shadow);
  border-radius: var(--radius-sm);
  background: var(--ct-bg);
}

.ct .ct-row-pad .ct-td {
  color: transparent;
}

.ct .ct-row-pad .ct-td * {
  pointer-events: none;
}
.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::-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;
}

.textarea-container {
  position: relative;
  width: 100%;
}

.textarea-field {
  font-family: inherit;
  width: 100%;
  min-height: 80px;
  resize: vertical;
  padding: 10px 12px;
  box-sizing: border-box;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 4px;
  font-weight: 350;
}

.textarea-field:focus {
  outline: none;
  resize: none;
  box-shadow: none;
}

.textarea-counter {
  position: absolute;
  bottom: -14px;
  right: 0;
  font-size: 12px;
  color: #888;
}

.review-dlg {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 10px;
}

.review-dlg-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  word-break: break-all;
  text-align: center;
}

.chd-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 6px;
  margin-bottom: 14px;
}

.chd-inputWrap {
  flex: 1;
  min-width: 0;
}

.chd-input {
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  outline: none;
  font-size: 14px;
  color: #111827;
  background: #fff;
}

.chd-input::placeholder {
  color: #9ca3af;
}

.chd-preview {
  width: 260px;
  flex: 0 0 260px;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.chd-previewValue {
  width: 100%;
  font-size: 14px;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chd-textareaWrap {
  margin-top: 6px;
  padding-bottom: 6px;
}

/* 查看摘要弹窗内容 */
.summary-view {
  max-height: min(70vh, 640px);
  overflow: auto;
  padding: 6px 2px 2px;
}

.summary-view--list {
  margin: 0;
  padding-left: 1.4em;
  font-size: 15px;
  line-height: var(--content-lh, 1.65);
  color: #1f2329;
}

.summary-view--list>li {
  margin: 0 0 8px 0;
  white-space: normal;
  word-break: break-word;
}


.summary-view--list>li.summary-view--title {
  list-style: none;
  margin: 12px 0 8px 0;
}


.summary-view--list>li.summary-view--title {
  margin-left: calc(-1 * 1.4em);
}

.content-header {
    --content-lh: 1.65;
    --summary-padding-y: 14px;
    --summary-padding-start: 8px;
    --summary-padding-end: 24px;
    --collapse-rows: 4;
    --summary-marker-gap: 16px;
    --more-icon-size: 16px;
    --more-icon-gap: 4px;
    --color-text-strong: #1f2329;
    --color-text-muted: #3b4048;
    --color-surface-1: var(--color-surface-2, #f7f8fa);
    --color-surface-2: #fcf6f2;
    --color-border: rgba(31, 35, 41, .08);
}

.content-header {
    padding: 0;
}

.content-header .content-header--field {
    position: relative;
    padding: 0 20px;
}

.content-header .content-header--value {
    margin: 0;
    color: var(--color-text-strong);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.content-header .content-header--summary {
    padding-block: var(--summary-padding-y);
    padding-inline: var(--summary-padding-start) var(--summary-padding-end);
    font-size: 15px;
    line-height: var(--content-lh);
    color: var(--color-text-muted);
    background: var(--color-surface-1);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-align: justify;
    text-justify: inter-ideograph;
    white-space: pre-line;
}

.content-header .content-header--summarybox {
    padding-block: var(--summary-padding-y);
    padding-inline: var(--summary-padding-start) var(--summary-padding-end);
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.content-header .content-header--summary-clip {
    position: relative;
}

.content-header .content-header--summary-clip[data-collapsed="true"] {
    max-height: calc(var(--content-lh) * 1em * var(--collapse-rows));
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0));
}

.content-header .content-header--summary-list {
    list-style-type: disc !important;
    list-style-position: outside;
    margin: 0;
    padding: 0 0 0 calc(var(--summary-padding-start) + var(--summary-marker-gap));
    font-size: 15px;
    line-height: var(--content-lh);
    color: var(--color-text-muted);
    text-align: justify;
    text-justify: inter-ideograph;
}

.content-header .content-header--summary-list>li {
    margin: 0;
    line-height: var(--content-lh);
    white-space: normal;
    color: inherit;
}

.content-header .content-header--summary-list>li::marker {
    font-size: 1em;
    color: currentColor;
}

.content-header .content-header--morebar-inside {
    padding: 2px 0 10px;
    padding-left: var(--summary-padding-start);
}

.content-header .content-header--morebtn.gta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--more-icon-gap);
    color: #212121;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    position: relative;
}


.content-header .content-header--morebtn.gta-btn:hover {
    color: var(--color-brand);
}

.content-header .content-header--morebtn .gta-icon.gta-icon-chev {
    display: inline-block;
    width: var(--more-icon-size);
    height: var(--more-icon-size);
    transform: rotate(-90deg) translateY(1px);
    transform-origin: 50% 50%;
}

.content-header .content-header--morebtn .gta-icon[data-size="custom"] {
    --gta-icon-size: var(--more-icon-size);
}

.content-header .content-header--morebtn::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    background: currentColor;
    opacity: .6;
    transform: scaleY(.5);
    transform-origin: bottom;
    pointer-events: none;
}

.content-header .content-header--toolbar {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    gap: 6px;
    padding: 4px 6px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    backdrop-filter: saturate(160%) blur(6px);
    align-items: center;
    z-index: 10;
}

.content-header .content-header--field:hover .content-header--toolbar,
.content-header .content-header--field:focus-within .content-header--toolbar {
    display: inline-flex;
}

.content-header .content-header--field[data-actions="hidden"] .content-header--toolbar {
    display: none !important;
}

.content-header .content-header--btn,
.content-header .content-header--btn.gta-btn {
    padding: 0 5px;
    height: auto;
    line-height: normal;
    background: transparent;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.content-header .gta-btn .gta-icon[data-size="custom"] {
    --gta-icon-size: 18px;
}

.content-header .content-header--add {
    width: 100%;
    display: grid;
    place-items: center;
    gap: 0;
    margin: 20px 0;
    min-height: 150px;
    padding: 24px 16px;
    background: var(--color-surface-2);
    border: 1px dashed var(--color-border);
}

.content-header .content-header--add--pulas .gta-icon[data-size="custom"] {
    --gta-icon-size: 48px;
    color: #e5b5b5;
}

.content-header .content-header--add:hover {
    background: color-mix(in srgb, var(--color-surface-2) 92%, black 8%);
    border-color: color-mix(in srgb, var(--color-border) 85%, black 15%);
}

.content-header .content-header--add:active {
    transform: scale(.997);
}

.content-header .content-header--add--label {
    font-size: 14px;
    color: #8f959e;
    margin-bottom: 4px;
}

.content-header .content-header--add--hint {
    font-size: 12px;
    color: #b4bac3;
}


.content-header--summary-list .content-header--summary-title {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}


.content-header--summary-list .content-header--summary-title {
    position: relative;
    left: calc(-1 * 1.2em);
}

.content-header .content-header--name {
    margin: 0;
    color: var(--color-text-strong);
    padding-top: 10px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
}

.tags {
    position: relative;
}

.tags .tags-field {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 5px;
}

.tags .tags-field::after {
    content: "";
    flex: 1 1 auto;
}

.tags .tags-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags .tags-chip {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 1.15;
    padding: 6px 10px;
    border-radius: 6px;
    color: #333;
    background-color: #fff;
    border: 1px solid #F5F5F5;
    user-select: none;
    white-space: nowrap;
}

.tags .tags-toolbar {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    gap: 6px;
    padding: 4px 6px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    backdrop-filter: saturate(160%) blur(6px);
    align-items: center;
    z-index: 10;
}

.tags .tags-field:hover .tags-toolbar {
    display: inline-flex;
}


.tags .tags-btn.gta-btn {
    padding: 0 5px;
    color: #fff;
    height: auto;
    line-height: normal;
}

.tags .tags-btn.gta-btn .gta-icon[data-size="custom"] {
    --gta-icon-size: 18px;
}


.tags .tags-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #F5F5F5;
    border: 1px dashed rgba(0, 0, 0, .15);
    color: #333;
    margin-top: 5px;
    transition: background-color .12s ease, border-color .12s ease, transform .05s ease;
}


.tags .tags-pulas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tags .tags-label {
    line-height: 1.2;
    font-size: 14px;
    white-space: nowrap;
}

.metabar {
    --gta-icon-size: 38px;
    --metabar-avatar-size: 56px;
    --metabar-gap: 14px;
}

.metabar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px dashed var(--color-border, #e5e6eb);
}

.metabar-left {
    display: flex;
    align-items: center;
    gap: var(--metabar-gap);
    min-width: 0;
}

.metabar-avatar {
    width: var(--metabar-avatar-size);
    height: var(--metabar-avatar-size);
    border-radius: 50%;
    object-fit: cover;
}

.metabar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.metabar-name {
    font-weight: 600;
    color: #1f2329;
    line-height: 1.8;
    max-width: 360px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.metabar-time {
    font-size: 12px;
    color: #8f959e;
    line-height: 1.8;
}

.metabar-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-top: auto;
}

.metabar-share-btn.gta-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-surface, #fff);
}


.metabar-share-btn:hover {
    background: var(--color-surface-2, #f7f8fa);
}

.metabar-share-btn:active {
    transform: scale(.97);
}

.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);
    }
  }
  
.info-list {
    margin-top: 15px;
}

.info-list .info-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

.info-list .info-main {
    width: 100%;
    flex: 1;
    position: relative;
    height: 200px
}

.info-list .info-main div {
    display: flex;
    align-items: center;
}

.info-list .info-switch {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.info-list .info-switch-label {
    white-space: nowrap;
    color: #7d7575;
}

.info-list .info-actions {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.info-list .gta-btn--icon {
    border: none;
    box-shadow: none;
    color: #000;
}


.info-list .info-divider {
    margin: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.review {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.review-card,
.review-link {
  min-width: 0;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.review-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.review-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding-bottom: 22px;
}

.review-thumbMedia {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 22px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #f4f6f8;
}

.review-thumbMedia img,
.review-thumbMedia video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


.review-thumbMedia img {
  -webkit-user-drag: none;
  user-drag: none;
}

.review-thumbMedia video {
  background: #000;
}

.review-thumb-pill {
  position: absolute;
  top: 0px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  z-index: 2;
}

.review-thumb-dim {
  left: 0px;
}

.review-thumb-format {
  right: 0px;
}



.review-metaOverlay {
  position: absolute;
  left: 0;
  top: calc(100% - 60px);
  transform: translateY(50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  pointer-events: none;
  z-index: 3;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2f7;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-avatarPlaceholder {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
}

.review-authorOverlayName {
  font-size: 13px;
  max-width: 180px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: auto;
  line-height: 1;
  padding-bottom: 2px;
  color: #6d5454;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 5px 5px;
}

.review-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #6b6e73;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.review-badge {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  background: #f2f3f5;
  color: #666;
  white-space: nowrap;
  font-weight: 500;
}

.review-badge--draft {
  background: #f0f0f0;
  color: #595959;
}

.review-badge--review {
  background: #fff3cd;
  color: #d48806;
}

.review-badge--published {
  background: #e6f4ff;
  color: #1677ff;
}

.review-badge--archived {
  background: #f5f5f5;
  color: #8c8c8c;
}

.review-actions {
  display: flex;
  gap: 10px;
}

.review-action {
  all: unset;
  cursor: pointer;
  font-size: 12px;
  color: #4e5969;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.6;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.review-action:hover {
  background: #f5f5f5;
  color: #1f2328;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.review-action--primary {
  color: #1677ff;
  font-weight: 500;
}

.review-action--primary:hover {
  background: #e6f4ff;
  color: #125fd1;
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, 0.25);
}

.review-action--danger {
  color: #d93026;
  font-weight: 500;
}

.review-action--danger:hover {
  background: #fdecea;
  color: #b3221a;
  box-shadow: inset 0 0 0 1px rgba(217, 48, 38, 0.25);
}

.review-action--secondary {
  color: #fa8c16;
  font-weight: 500;
}

.review-action--secondary:hover {
  background: #fff7e6;
  color: #d46b08;
  box-shadow: inset 0 0 0 1px rgba(250, 140, 22, 0.25);
}

.review-thumb-size {
  position: absolute;
  right: 0;
  bottom: -7px;
  transform: translateY(-8px);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  z-index: 2;
  pointer-events: none;
}

.review-thumbMedia.is-portrait {
  background: #000;
}

.review-thumbMedia.is-portrait img,
.review-thumbMedia.is-portrait video {
  position: absolute;
  inset: 0;
  margin: auto;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

: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: 100px;
  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-right: 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-auth {
  display: flex;
  align-items: center;
  gap: var(--sp-4, 16px);
}

.header .header-auth-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4, 16px);
}

.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(--color-brand);
  color: var(--color-brand-contrast);
  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);
}

.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-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: 8px !important;
}
.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 {
    margin-right: var(--sp-3);
    font-size: 26px;
  }

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

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


.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;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


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

/* 整体滚动条宽度 */
.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;
}


.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;
}

.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;
}

.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);
  }
}

.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;
}

.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: var(--fz-md);
  outline: none;
  background: transparent;
  color: var(--auth-fg);
}

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

.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;
  gap: var(--sp-4);
}

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

.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 {
    box-shadow: unset !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;
  gap: var(--verify-gap);
  margin: var(--verify-gap-lg) 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: var(--verify-input-fz);
  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);
  gap: var(--sp-3);
}

.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%;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  overflow: hidden;
}

.captcha .captcha-input {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  height: 45px;
  padding: 0 var(--sp-3);
  font-size: var(--fz-md) !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);
  font-size: var(--fz-md) !important;
}

.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;
  gap: var(--sp-3);
}

.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);
  }
}

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

.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;
}

.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 0px 2px 0px;
}

.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;
}

.card-track .article-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.card-track .article-cover-wrap {
  position: relative;
  padding-bottom: 22px;
}

.card-track .article-cover {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #f4f6f8;
}

.card-track .article-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track .article-meta {
  position: absolute;
  left: 2px;
  bottom: 20px;
  transform: translateY(50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
}

.card-track .article-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #eef2f7;
  box-shadow:
    0 0 0 2px #fff,
    0 4px 10px rgba(0, 0, 0, 0.12);
}

.card-track .article-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track .article-name {
  font-size: 14px;
  font-weight: 500;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: auto;
  line-height: 1;
  padding-bottom: 2px;
}

.card-track .article-body {
  padding: 12px;
  padding-top: 6px;
}

.card-track .article-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.card-track .article-summary {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-track .trip-card {
  border-radius: 14px;
  height: 100%;
  border: 1px solid #e7e7e7;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
}

.card-track .trip-media {
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
}

.card-track .trip-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track .trip-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-track .trip-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.card-track .trip-sub {
  font-size: 12px;
  line-height: 1.45;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.card-track .trip-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 10px 0;
}

.card-track .trip-star {
  color: #f59e0b;
  font-size: 13px;
  line-height: 1;
}

.card-track .trip-score {
  font-weight: 700;
  color: #333;
}

.card-track .trip-rating-muted {
  color: #666;
}

.card-track .trip-rating-dot {
  color: #666;
}

.card-track .trip-bottom {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}

.card-track .trip-price-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #222;
}

.card-track .trip-price-sym {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.card-track .trip-price-val {
  font-size: 16px;
  font-weight: 800;
  color: #222;
}

.card-track .trip-price-from {
  font-size: 12px;
  font-weight: 700;
  color: #666;
}

.card-track .trip-price-inquiry {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.card-track .card-item.shorts-card {
  border: 0 !important;
  padding: 0;
  margin: 0;
  background: transparent;
  height: 100%;
}

.card-track .shorts-thumb {
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  border-radius: 12px;
}

.card-track .shorts-thumb-img,
.card-track .shorts-thumb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track .shorts-topbar {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 10px;
  padding: 8px 10px;
}

.card-track .shorts-topbar-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  color: #ffcf2e;
  letter-spacing: 0.2px;
}

.card-track .shorts-badges {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.card-track .shorts-badge {
  pointer-events: none;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
}

.card-track .shorts-info {
  padding: 10px 2px 0 2px;
}

.card-track .shorts-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-track .shorts-views {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: #6b7280;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-track .card-item.video-card {
  border: 0 !important;
  padding: 0;
  margin: 0;
  background: transparent;
  height: 100%;
}

.card-track .video-surface {
  background: transparent;
}

.card-track .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f6f8;
}

.card-track .video-thumb-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track .video-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: rgba(0, 0, 0, 0.82);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
}

.card-track .video-info {
  padding-top: 8px;
}

.card-track .video-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #222;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.card-track .video-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.card-track .video-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2f7;
  flex: 0 0 auto;
}

.card-track .video-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track .video-channel {
  font-size: 13px;
  font-weight: 650;
  color: #666;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-track .video-submeta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-track .video-dot {
  opacity: 0.8;
}

.card-track .city-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  min-height: clamp(160px, 18vw, 350px);
}

.card-track .city-cover {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f6f8;
}

.card-track .city-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track .city-title {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  max-width: calc(100% - 24px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  z-index: 2;
}

.card-track.card-track--scenic .card-item {
  height: auto;
  min-height: clamp(160px, 18vw, 220px);
}

.card-track .city-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.card-track .province-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  min-height: clamp(160px, 18vw, 350px);
}

.card-track .province-cover {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f6f8;
}

.card-track .province-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track .province-title {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  max-width: calc(100% - 24px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  z-index: 2;
}

.card-track.card-track--scenic .card-item {
  height: auto;
  min-height: clamp(160px, 18vw, 220px);
}

.card-track .province-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.card-track .scenicSpot-card {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  min-height: clamp(160px, 18vw, 220px);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.card-track .scenicSpot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  border-color: rgba(15, 23, 42, 0.1);
}

.card-track .scenicSpot-cover {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.card-track .scenicSpot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card-track .scenicSpot-card:hover .scenicSpot-img {
  transform: scale(1.04);
}

.card-track .scenicSpot-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card-track .scenicSpot-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-track .scenicSpot-title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.card-track.card-track--scenic .card-item {
  height: auto;
  min-height: clamp(160px, 18vw, 220px);
}

.card-track .scenicSpot-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.28) 26%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
}

.consultant-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfefd 100%);
  border: 1px solid #dfe7ef;
  min-height: 340px;
  box-shadow:
    0 10px 30px rgba(23, 32, 51, 0.08),
    0 2px 8px rgba(23, 32, 51, 0.04);
}

.consultant-card::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(84, 199, 120, 0.18), rgba(84, 199, 120, 0.82));
  border-top-left-radius: 100%;
  z-index: 0;
}

.consultant-card::after {
  content: "";
  position: absolute;
  left: 52%;
  bottom: -18%;
  width: 44%;
  height: 34%;
  background: rgba(255, 255, 255, 0.72);
  border-top-right-radius: 100%;
  transform: rotate(-12deg);
  z-index: 0;
}

.consultant-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}

.consultant-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.consultant-glow--top {
  top: -18px;
  left: 10px;
  width: 140px;
  height: 70px;
  background: rgba(74, 222, 128, 0.08);
  border-radius: 999px;
}

.consultant-glow--bottom {
  right: 24px;
  bottom: 18px;
  width: 140px;
  height: 140px;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 999px;
}

.consultant-main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.consultant-info {
  flex: 1;
  min-width: 0;
}

.consultant-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.consultant-name-zh {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 600;
  color: #1f2937;
}

.consultant-name-en {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #334155;
}

.consultant-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #168247;
  line-height: 1.4;
}

.consultant-subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.consultant-avatar-wrap {
  width: 96px;
  height: 132px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #eff4f8 0%, #dfe7ef 100%);
  box-shadow:
    0 8px 20px rgba(23, 32, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.consultant-avatar {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.consultant-contact-list {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  gap: 10px;
}

.consultant-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(222, 230, 238, 0.96);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.consultant-contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.08);
  border-color: #d5e6d9;
}

.consultant-contact-left {
  min-width: 0;
  flex: 1;
}

.consultant-contact-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.consultant-contact-value {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.consultant-contact-right {
  flex-shrink: 0;
}

.consultant-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #22a45d 0%, #168247 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(22, 130, 71, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.consultant-action-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 10px 18px rgba(22, 130, 71, 0.24);
}

.consultant-action-btn--ghost {
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #d6dde6;
  box-shadow: 0 4px 10px rgba(23, 32, 51, 0.06);
}

.consultant-action-btn--ghost:hover {
  background: #f8fafc;
  box-shadow: 0 8px 16px rgba(23, 32, 51, 0.08);
}

.card-track {
  width: 100%;
  --card-track-item-h: auto;
}

.card-grid-page {
  display: grid;
  gap: 18px;
  align-items: stretch;
  grid-auto-rows: auto;
}

.card-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: var(--card-track-item-h);
}

.card-item--placeholder {
  background: #fafbfc;
  border: 1px dashed #d0d7de;
}

.card-item--add {
  cursor: pointer;
  border: 1px dashed #d0d7de;
  background: #fafbfc;
}

.card-cover {
  width: 100%;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 12px;
  min-height: 50px;
  flex: 1 1 auto;
}

.card-title {
  font-size: 15px;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.add-plus {
  font-size: 32px;
  color: #6b7280;
  user-select: none;
}

.card-wrap {
  position: relative;
}

.card-toolbar-overlay {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px;
  border-radius: 8px;
}

.card-btn.gta-btn {
  height: auto;
  line-height: normal;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.card-btn.gta-btn .gta-icon[data-size="custom"] {
  --gta-icon-size: 18px;
}

.card-track [aria-live],
.card-track .dnd-kit-screen-reader {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.card-sort-area {
  display: contents;
}

.faq-empty {
  width: 100%;
  min-height: 180px;
  border: 1px dashed #d6cfc9;
  background: #eee7e2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  user-select: none;
  cursor: pointer;
}

.faq-empty--icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;

  font-size: 48px;
  font-weight: 200;
  color: #e58a8a;
  margin-bottom: 10px;
}

.faq-empty--text {
  font-size: 14px;
  color: #6b6f76;
}

.faq-add-sep {
  height: 10px;
}

.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  /* 你要求的原盒子圆角 */
  overflow: hidden;
}

.faq-acc-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.faq-acc-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.faq-acc-cell {
  position: relative;
}

.faq-acc-q {
  width: 100%;
  padding: 22px 24px;
  background: #fff;
  border: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.faq-acc-q:hover {
  background: #fafafa;
}

.faq-acc-qtext {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.faq-acc-icon {
  display: inline-block;
  transition: transform 180ms ease;
  transform: rotate(0deg);
  opacity: 0.9;
}

.faq-acc-q[aria-expanded="true"] .faq-acc-icon {
  transform: rotate(180deg);
}

.faq-acc-q[aria-expanded="true"] {
  padding-bottom: 14px;
}

.faq-acc-a {
  padding: 0 24px 22px 24px;
  background: #fff;
}

.faq-acc-atext {
  display: block;
  padding: 15px;
  background: #f3f3f3;
  font-size: 14px;
  line-height: 2.5;
  white-space: pre-wrap;
}

.faq-acc-atext strong {
  font-weight: 800;
}

.faq-acc-cell:hover>.faq-acc-toolbar,
.faq-acc-cell[data-actions="always"]>.faq-acc-toolbar {
  display: inline-flex;
}

.faq-acc-toolbar--image {
  position: absolute;
  top: 10px;
  right: 50px;
  display: none;

  align-items: center;
  gap: 6px;
  padding: 4px 6px;

  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  backdrop-filter: saturate(160%) blur(6px);
  z-index: 10;
}

.faq-acc-toolbar-btn {
  padding: 0 5px;
  color: #fff;
  height: auto;
  line-height: normal;
}

.faq-accordion .faq-acc-cell .gta-icon[data-size="custom"] {
  --gta-icon-size: 18px;
}


.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--drawer-z, 1000);

  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: drawer-mask-in 160ms ease-out forwards;

  display: flex;
  justify-content: flex-end;

  -webkit-tap-highlight-color: transparent;
}

.drawer-overlay--closing {
  animation: drawer-mask-out 160ms ease-in forwards;
}

.drawer-overlay--left {
  justify-content: flex-start;
}

.drawer-panel {
  width: var(--drawer-w, 360px);
  height: 100%;
  background: #fff;

  display: flex;
  flex-direction: column;

  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
  will-change: transform;

  transform: translateX(100%);
  animation: drawer-panel-in 200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.drawer-overlay--left .drawer-panel {
  transform: translateX(-100%);
  animation: drawer-panel-in-left 200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.drawer-overlay--closing .drawer-panel {
  animation: drawer-panel-out 180ms ease-in forwards;
}

.drawer-overlay--closing.drawer-overlay--left .drawer-panel {
  animation: drawer-panel-out-left 180ms ease-in forwards;
}

.drawer-header {
  position: relative;
  height: 56px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.drawer-close {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 10px;

  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #111;

  -webkit-tap-highlight-color: transparent;
}

.drawer-close:active {
  background: rgba(0, 0, 0, 0.06);
}

.drawer-header-content {
  width: 100%;
  min-width: 0;
  padding: 0 54px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-body {
  flex: 1 1 auto;
  min-height: 0;

  overflow: auto;
  -webkit-overflow-scrolling: touch;

  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
}

@keyframes drawer-mask-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes drawer-mask-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes drawer-panel-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes drawer-panel-out {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes drawer-panel-in-left {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes drawer-panel-out-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.audit-grid__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: start;
}

.audit-grid__label {
  color: #8c8c8c;
  font-size: 14px;
  line-height: 22px;
}

.audit-grid__value {
  min-width: 0;
}

.audit-grid__text {
  color: #262626;
  font-size: 14px;
  line-height: 22px;
  word-break: break-all;
}

.audit-grid__link {
  color: #1677ff;
  font-size: 14px;
  line-height: 22px;
  word-break: break-all;
  text-decoration: none;
}

.audit-grid__link:hover {
  color: #4096ff;
  text-decoration: underline;
}

.quotes-panel {
  margin-bottom: 16px;
}

.quotes-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.quotes-panel__title {
  color: #262626;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.quotes-panel__count {
  color: #8c8c8c;
  font-size: 13px;
  line-height: 20px;
}

.quotes-panel__empty {
  padding: 16px;
  background: #fafafa;
  border-radius: 8px;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 22px;
}

.quotes-panel__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quotes-panel__item {
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
}

.quotes-panel__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.quotes-panel__type,
.quotes-panel__status {
  color: #8c8c8c;
  font-size: 12px;
  line-height: 20px;
}

.quotes-panel__main {
  margin-bottom: 8px;
}

.quotes-panel__text,
.quotes-panel__link {
  color: #262626;
  font-size: 14px;
  line-height: 22px;
  word-break: break-all;
}

.quotes-panel__link {
  text-decoration: none;
}

.quotes-panel__link:hover {
  text-decoration: underline;
}

.quotes-panel__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quotes-panel__author-label {
  color: #8c8c8c;
  font-size: 12px;
  line-height: 20px;
}

.quotes-panel__author-value {
  color: #595959;
  font-size: 13px;
  line-height: 20px;
}

.quotes-panel__more {
  margin-top: 12px;
  text-align: center;
}

.quotes-panel__more-btn {
  min-width: 112px;
  height: 32px;
  padding: 0 16px;
  border: none;
  border-radius: 6px;
  background: #f5f5f5;
  color: #262626;
  font-size: 14px;
  cursor: pointer;
}

.quotes-panel__more-btn:hover {
  background: #eaeaea;
}

.reviews-panel {
  margin-bottom: 16px;
}

.reviews-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.reviews-panel__title {
  color: #262626;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.reviews-panel__count {
  color: #8c8c8c;
  font-size: 13px;
  line-height: 20px;
}

.reviews-panel__empty {
  padding: 16px;
  background: #fafafa;
  border-radius: 8px;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 22px;
}

.reviews-panel__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reviews-panel__card {
  flex: 1;
  min-width: 0;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
}

.reviews-panel__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.reviews-panel__who {
  color: #262626;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.reviews-panel__time {
  color: #8c8c8c;
  font-size: 12px;
  line-height: 20px;
}

.reviews-panel__badges {
  margin-left: auto;
}

.reviews-panel__badge {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  height: 24px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 20px;
}

.reviews-panel__badge--ok {
  color: #389e0d;
  background: #f6ffed;
}

.reviews-panel__badge--low {
  color: #cf1322;
  background: #fff1f0;
}

.reviews-panel__badge--empty {
  color: #8c8c8c;
  background: #f5f5f5;
}

.reviews-panel__reason {
  color: #595959;
  font-size: 14px;
  line-height: 22px;
  word-break: break-word;
}

.reviews-panel__more {
  margin-top: 12px;
  text-align: center;
}

.reviews-panel__more-btn {
  min-width: 112px;
  height: 32px;
  padding: 0 16px;
  border: none;
  border-radius: 6px;
  background: #f5f5f5;
  color: #262626;
  font-size: 14px;
  cursor: pointer;
}

.reviews-panel__more-btn:hover {
  background: #eaeaea;
}

.detail-layout {
  width: 100%;
}

.detail-layout__preview {
  margin-bottom: 16px;
}

.detail-layout__content {
  width: 100%;
}

.device-frame--phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-frame__phone-frame {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 36px;
  background: #0f1115;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.device-frame__phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  height: 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
  z-index: 3;
}

.device-frame__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.device-frame--desktop {
  display: grid;
  justify-items: center;
  row-gap: 8px;
}

.device-frame__desktop-frame {
  width: min(680px, 100%);
  border-radius: 14px;
  background: #0f1115;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.device-frame__desktop-topbar {
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
}

.device-frame__desktop-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.device-frame__desktop-title {
  margin-left: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.device-frame__desktop-screen {
  margin-top: 10px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 16 / 9;
}

.device-frame__desktop-screen>* {
  position: absolute;
  inset: 0;
}

.device-frame__desktop-stand {
  width: 90px;
  height: 18px;
  border-radius: 10px;
  background: rgba(15, 17, 21, 0.9);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.device-frame__desktop-base {
  width: 140px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 17, 21, 0.75);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.mview-wrap {
  padding: 12px;
  display: grid;
  row-gap: 10px;
}

.mview-plyr,
.mview-img {
  width: 100%;
  height: 100%;
}

.mview-plyr video {
  width: 100%;
  height: 100%;
  object-position: center;
}

.mview-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
}

.mview-plyr--cover video {
  object-fit: cover;
}

.mview-plyr--contain video {
  object-fit: contain;
}

.mview-img--cover img {
  object-fit: cover;
}

.mview-img--contain img {
  object-fit: contain;
}

.mview-empty {
  padding: 18px 12px;
  border-radius: 12px;
  background: rgba(245, 238, 234, 0.6);
  border: 1px dashed rgba(31, 35, 41, 0.18);
  color: rgba(31, 35, 41, 0.6);
  text-align: center;
}

.material-detail {
  width: 100%;
}

.material-detail__preview {
  width: 100%;
}

.article-detail {
  width: 100%;
}

.trip-detail {
  width: 100%;
}

.scenic-detail {
  width: 100%;
}

.city-detail {
  width: 100%;
}

.province-detail {
  width: 100%;
}

.video-detail {
  width: 100%;
}

.video-detail__preview {
  width: 100%;
}

.review-detail {
  width: 100%;
  min-width: 0;
}

.review-detail__empty {
  padding: 16px;
  border-radius: 8px;
  background: #fafafa;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 22px;
}

.banner-edit {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-edit-wrap {
  padding: 0;
}

.banner-edit-inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.banner-edit-bg {
  position: absolute;
  inset: -60px;
  background-size: cover;
  background-position: center;
  transform: scale(1.25);
  filter: blur(26px) saturate(1.75) contrast(1.45) brightness(0.85);
  opacity: 0.95;
}

.banner-edit-bgmask {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 20% 10%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(0, 0, 0, 0.26) 55%,
      rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.28) 45%,
      rgba(0, 0, 0, 0.16) 100%);
}

.banner-edit-panel {
  width: 100%;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: clamp(520px, 52%, 760px) 1fr;
  position: relative;
  overflow: hidden;
  align-items: stretch;
  border-radius: 16px;
  z-index: 2;
}

.banner-edit-left {
  background: #fff;
  display: flex;
  min-width: 0;
}

.banner-edit-left-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.banner-edit .content-header--value {
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  font-size: 18px;
}

.banner-edit .content-header {
  margin-left: 10px;
}

.banner-edit .content-header--summarybox {
  padding: 10px 0;
  border: none;
}

.banner-edit .content-header--add {
  margin: 10px 0;
}

.banner-edit-right {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 34vw, 340px);
  overflow: hidden;
}

.banner-edit-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.banner-edit-fade {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.banner-edit-fade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
  user-select: none;
}

.banner-edit-fade-img.is-front {
  z-index: 1;
  opacity: 1;
}

.banner-edit-fade-img.is-back {
  z-index: 2;
  opacity: 0;
  transition: opacity 360ms ease;
}

.banner-edit-fade-img.is-back.is-fading {
  opacity: 1;
}

.banner-edit-image-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 3;
  pointer-events: none;
}

.banner-edit-progress {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  display: flex;
  gap: 8px;
  z-index: 60;
}

.banner-edit-progress-item {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.banner-edit-progress-item:hover {
  background: rgba(255, 255, 255, 0.35);
}

.banner-edit-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: rgba(255, 255, 255, 0.92);
}

.banner-edit-progress-item.is-done .banner-edit-progress-bar {
  transform: scaleX(1);
}

.banner-edit-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: saturate(120%) blur(2px);
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 120ms ease;
  z-index: 50;
}

.banner-edit-panel:hover .banner-edit-toolbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.banner-edit-toolbar-btn {
  padding: 0 5px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.banner-edit-noimg .banner-edit-bg {
  background-image: none !important;
  filter: none;
  transform: none;
  inset: 0;
  background: radial-gradient(1200px 420px at 20% 0%,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(245, 245, 245, 0.95) 55%,
      rgba(238, 238, 238, 1) 100%);
}

.banner-edit-noimg .banner-edit-bgmask {
  background: rgba(0, 0, 0, 0.06);
}

.banner-edit-empty-card {
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  background: rgba(248, 236, 236, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.banner-edit-empty-plus {
  font-size: 48px;
  font-weight: 300;
  color: rgba(214, 120, 120, 0.65);
}

.banner-edit-empty-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}

.banner-edit .banner-edit-toolbar-btn.gta-btn {
  padding: 0 5px;
  height: auto;
  line-height: normal;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.banner-edit .banner-edit-toolbar-btn.gta-btn .gta-icon[data-size="custom"] {
  --gta-icon-size: 18px;
}

.banner-edit .banner-edit-toolbar-btn.gta-btn .gta-icon {
  display: inline-block;
  width: var(--gta-icon-size, 18px);
  height: var(--gta-icon-size, 18px);
}

.banner-edit-progress-bar {
  transform: scaleX(0);
  transform-origin: left center;
}

.banner-edit-progress-bar.is-anim {
  animation-name: bannerProgressFill;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes bannerProgressFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}


/*# sourceMappingURL=commons.07d261e1.css.map*/