:root {
  --gds-green: #68c7aa;
  --gds-blue: #409eff;
  --gds-text: #333;
  --gds-muted: #909399;
  --gds-line: #ebeef5;
  --gds-page: #f7f7f7;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--gds-text);
  background: var(--gds-page);
  font: 14px/1.5 "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body::before,
body::after { display: none !important; }

button,
input,
select,
textarea { font: inherit; }

button { color: inherit; }

[hidden] { display: none !important; }

.gds-notice {
  width: 100%;
  height: 40px;
  overflow: hidden;
  color: #222;
  background: #ededed;
}

.gds-notice .notice-outer {
  position: relative;
  width: min(1750px, calc(100% - 32px));
  height: 40px;
  margin: 0 auto;
  overflow: hidden;
}

.gds-notice .notice-scroll {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  height: 40px;
  animation: gds-notice 28s linear infinite;
}

.gds-notice .notice-item { white-space: nowrap; }

@keyframes gds-notice {
  from { transform: translateX(70%); }
  to { transform: translateX(-100%); }
}

.gds-desktop-header {
  display: flex;
  align-items: center;
  width: min(1750px, calc(100% - 32px));
  height: 65px;
  margin: 0 auto;
  padding: 0;
  gap: 30px;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.gds-desktop-header::before,
.gds-desktop-header::after { display: none; }

.gds-desktop-header .logo {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.gds-desktop-header .logo-img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.gds-desktop-header .nav-menu {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
  gap: 32px;
}

.gds-desktop-header .nav-menu button,
.gds-desktop-header .auth-area button {
  min-width: auto;
  height: auto;
  padding: 0;
  color: #111;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  white-space: nowrap;
}

.gds-desktop-header .nav-menu .active {
  position: relative;
  color: #57b895;
}

.gds-desktop-header .nav-menu .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  background: #57b895;
}

.search-wrapper {
  flex: 1 1 280px;
  max-width: 540px;
  min-width: 180px;
}

.gds-search-input {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 13px;
  border: 1px solid #dcdfe6;
  border-radius: 2px;
  background: #fff;
}

.gds-search-input:focus-within { border-color: #9dddc9; }

.gds-search-input svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: none;
  stroke: #c0c4cc;
  stroke-width: 1.8;
}

.gds-search-input input {
  width: 100%;
  height: 36px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.gds-desktop-header .auth-area {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 20px;
}

.gds-desktop-header .gds-wallet { display: none; }

.gds-desktop-header .auth-area .publish-btn {
  padding: 9px 20px;
  color: #fff;
  background: #111;
  border-radius: 5px;
}

.gds-mobile-header { display: none; }

.gds-main {
  width: min(1750px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  padding: 0 0 28px;
}

.view { display: none; }
.view.active { display: block; }

.gds-mobile-filter-top { display: none; }

.gds-toolbar {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.gds-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #eee;
}

.gds-filter-buttons,
.gds-filter-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gds-filter-buttons { flex: 1 1 auto; }
.gds-filter-actions { flex: 0 0 auto; }

.gds-filter-buttons button,
.gds-filter-actions button,
.gds-sort-bar button,
.gds-sort-bar select {
  height: 38px;
  padding: 0 17px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .035);
  cursor: pointer;
}

.gds-filter-buttons button:hover { border-color: #7cccb3; }

.gds-filter-actions .skin-filter-btn {
  color: #fff;
  background: #73d2b5;
  border-color: #73d2b5;
}

.gds-filter-actions .confirm-filter-btn {
  color: #fff;
  background: #f0a261;
  border-color: #f0a261;
}

.gds-filter-actions .reset-filter-btn { color: #666; }

.gds-sort-bar {
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 14px;
  padding: 8px 0;
}

.gds-view-label { white-space: nowrap; }

.quick-chips {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-chip {
  height: 34px !important;
  padding: 0 13px !important;
  color: #555;
  border-radius: 3px !important;
}

.quick-chip.active {
  color: #55b69a;
  border-color: #55b69a;
}

.gds-sort-bar select {
  min-width: 110px;
  height: 34px;
  padding: 0 28px 0 12px;
}

.gds-tutorial-control { margin-left: auto; }

.filter-panel {
  margin: 0 0 14px;
  padding: 18px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #fff;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 15px 20px;
}

.filter-grid label { color: #606266; }
.filter-grid select { width: 100%; margin-top: 6px; }

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.chip {
  padding: 5px 10px;
  border: 1px solid #dcdfe6;
  border-radius: 3px;
  background: #fff;
}

.chip.active { color: #55b69a; border-color: #55b69a; }

#accountList {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .035);
  cursor: pointer;
}

.table-view-row {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 14px;
  min-height: 160px;
}

.table-img {
  position: relative;
  width: 300px;
  height: 160px;
  overflow: hidden;
  border-radius: 5px;
  background: #101820;
}

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

.table-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.table-info-header {
  display: flex;
  align-items: center;
  min-height: 30px;
  gap: 8px;
  white-space: nowrap;
}

.seller-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.account-number { font-weight: 700; }

.account-tag {
  padding: 2px 7px;
  color: #58b89b;
  font-size: 12px;
  border: 1px solid #a8dfcf;
  border-radius: 2px;
  background: #f7fffc;
}

.account-tag.hot {
  color: #ef4f52;
  border-color: #f7a8aa;
  background: #fff6f6;
}

.account-time {
  margin-left: auto;
  color: #555;
  font-size: 12px;
}

.copy-number {
  width: 18px;
  height: 18px;
  padding: 0;
  color: #69b6d3;
  line-height: 16px;
  border: 0;
  background: transparent;
}

.table-info-top {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 1.15fr 1.15fr 2.25fr;
  gap: 8px;
  min-height: 116px;
  margin-top: 4px;
}

.info-box {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-content: center;
  gap: 5px 12px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .045);
  border-radius: 4px;
  font-size: 13px;
}

.info-box:nth-child(1) { background: #edf8ff; }
.info-box:nth-child(2) { background: #f1f8ff; }
.info-box:nth-child(3) { background: #fff5ee; }
.info-box:nth-child(4) { background: #f9f1ff; }
.info-box:nth-child(5) { background: #effff2; }

.info-box span { color: #4d4d4d; white-space: nowrap; }
.info-box strong { overflow: hidden; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }

.empty {
  padding: 80px 0;
  color: #999;
  text-align: center;
}

.gds-footer {
  color: #555;
  background: #fff;
  border-top: 1px solid #eee;
}

.service-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1750px, calc(100% - 32px));
  margin: 0 auto;
  padding: 27px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.footer-info {
  display: flex;
  align-items: center;
  width: min(1750px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  gap: 36px;
}

.footer-info img { width: 112px; height: 74px; object-fit: contain; }
.footer-links, .footer-meta { display: flex; align-items: center; gap: 25px; }
.footer-links a { color: #444; text-decoration: none; }
.footer-meta { margin-left: auto; color: #8a8a8a; font-size: 12px; }

.tab-bar-container { display: none; }

/* Registration and login dialog: same geometry, spacing and neutral palette as the reference. */
#authModal.login-mask {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: none;
}

#authModal .login-container {
  position: relative;
  display: flex;
  width: 800px;
  min-height: 503.6px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

#authModal .login-close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 16px;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #909399;
  font-size: 28px;
  font-weight: 300;
  line-height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#authModal .left-panel,
#authModal .right-panel { width: 400px; }

#authModal .left-panel {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #f8f8f8;
}

#authModal .welcome-text {
  margin: 28px 0 0 10px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}

#authModal .logo-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

#authModal .logo-group img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

#authModal .register-link {
  margin: auto 0 25px 10px;
  color: #606266;
}

#authModal .register-btn {
  padding: 0;
  color: #409eff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#authModal .right-panel { padding: 40px 30px; }

#authModal .login-title {
  margin: 0 0 30px;
  color: #303133;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}

#authModal .login-form { display: block; }

#authModal .form-item {
  position: relative;
  display: flex;
  width: 340px;
  min-height: 31px;
  margin-bottom: 20px;
}

#authModal .custom-input {
  width: 100%;
  border-bottom: 1px solid #dcdfe6;
}

#authModal .custom-input:focus-within { border-color: #409eff; }

#authModal .custom-input input {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0 2px;
  color: #606266;
  outline: 0;
  border: 0;
  background: transparent;
}

#authModal .custom-input input::placeholder { color: #c0c4cc; }

#authModal .code-item .custom-input { width: 225px; }

#authModal .get-code-btn {
  flex: 0 0 100px;
  width: 100px;
  height: 30px;
  margin-left: 15px;
  padding: 0;
  color: #fff;
  border: 0;
  border-radius: 2px;
  background: #409eff;
  cursor: pointer;
}

#authModal .get-code-btn:disabled { background: #a0cfff; cursor: not-allowed; }

#authModal .forgot-link {
  height: 20px;
  margin: -8px 0 10px;
  text-align: right;
}

#authModal .forgot-link button,
#authModal .other-login button {
  padding: 0;
  color: #409eff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#authModal .other-login {
  display: flex;
  justify-content: space-between;
  min-height: 22px;
  margin: -6px 0 15px;
  color: #909399;
  font-size: 13px;
}

#authModal .login-button {
  width: 340px;
  height: 40px;
  margin-top: 0;
  color: #fff;
  border: 0;
  border-radius: 2px;
  background: #333;
  cursor: pointer;
}

#authModal .login-button:hover { background: #111; }

#authModal .fee-note {
  margin: -7px 0 10px;
  color: #e85b60;
  font-size: 12px;
}

#view-gun,
#view-center { padding: 28px 0; }

@media (max-width: 1250px) {
  .gds-desktop-header { gap: 18px; }
  .gds-desktop-header .nav-menu,
  .gds-desktop-header .auth-area { gap: 14px; }
  .gds-filter-actions { width: 100%; justify-content: flex-end; }
  .table-view-row { grid-template-columns: 250px minmax(0, 1fr); }
  .table-img { width: 250px; }
  .info-box { padding: 8px; gap: 4px 7px; font-size: 12px; }
  .footer-meta { gap: 10px; }
}

@media (max-width: 900px) {
  body { padding-bottom: 64px; background: #f8f8f8; }

  .gds-notice { display: none; }
  .gds-desktop-header { display: none; }

  .gds-mobile-header {
    display: block;
    width: 100%;
    height: 70px;
    margin: 0;
    padding: 10px 15px 8px;
    background: #fff;
    border: 0;
    box-shadow: none;
  }

  .gds-mobile-header .nav-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    height: 100%;
  }

  .gds-mobile-header .nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 52px;
    padding: 0;
    font-size: 11px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .gds-mobile-header .card-icon {
    display: grid;
    place-items: center;
    width: 39px;
    height: 30px;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    border-radius: 2px;
  }

  .nav-icon-rent { background: #6874d9; }
  .nav-icon-play { background: #56add3; }
  .nav-icon-gun { background: #555d62; }
  .nav-icon-service { background: #55c3a2; }

  .gds-main { width: 100%; min-height: calc(100vh - 134px); padding: 0; }

  .gds-mobile-filter-top {
    display: grid;
    grid-template-columns: 26px 34px 1fr;
    align-items: center;
    gap: 8px;
    height: 39px;
    padding: 4px 14px;
    background: #fff;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #eee;
  }

  .gds-mobile-filter-top > img { width: 24px; height: 24px; object-fit: contain; }

  #mobileFilterBtn {
    width: 30px;
    height: 28px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
  }

  .gds-mobile-search {
    display: flex;
    align-items: center;
    height: 28px;
    padding: 0 9px;
    color: #999;
    background: #f7f7f7;
    border: 1px solid #eee;
    border-radius: 3px;
  }

  .gds-mobile-search input {
    min-width: 0;
    width: 100%;
    height: 26px;
    padding: 0 7px;
    outline: 0;
    border: 0;
    background: transparent;
  }

  .gds-filter-bar { display: none; }

  .gds-sort-bar {
    min-height: 43px;
    height: 43px;
    padding: 5px 13px;
    gap: 8px;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #ececec;
  }

  .gds-view-label { font-size: 12px; }

  .quick-chips { gap: 4px; }

  .quick-chip,
  .gds-sort-bar select,
  .gds-sort-bar button {
    height: 30px !important;
    padding: 0 8px !important;
    font-size: 12px;
    border-radius: 2px !important;
    box-shadow: none;
  }

  .gds-sort-bar select { min-width: 82px; max-width: 94px; }
  .gds-tutorial-control { display: none; }

  .filter-panel {
    position: relative;
    z-index: 20;
    margin: 0;
    padding: 13px;
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  #accountList { gap: 8px; padding: 8px 7px 20px; }

  .product-card { padding: 8px; border-radius: 3px; }

  .table-view-row {
    display: block;
    min-height: 0;
  }

  .table-img {
    width: 100%;
    height: 47vw;
    max-height: 220px;
    border-radius: 3px;
  }

  .table-info-header { gap: 5px; margin-top: 5px; overflow: hidden; }
  .seller-avatar { width: 19px; height: 19px; }
  .account-number { font-size: 12px; }
  .account-tag { padding: 1px 4px; font-size: 10px; }
  .account-time, .copy-number { display: none; }

  .table-info-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    min-height: 0;
    margin-top: 5px;
  }

  .info-box {
    min-height: 82px;
    padding: 7px;
    gap: 3px 7px;
    font-size: 11px;
  }

  .info-box:nth-child(5) { grid-column: 1 / -1; }

  .gds-footer { display: none; }

  .tab-bar-container {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, .04);
  }

  .tab-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    height: 60px;
  }

  .tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 60px;
    padding: 4px 0;
    gap: 2px;
    color: #333;
    font-size: 11px;
    border: 0;
    background: #fff;
  }

  .tab-icon { font-size: 21px; line-height: 24px; }
  .tab-label { white-space: nowrap; }

  .tab-icon--publish {
    display: grid;
    place-items: center;
    width: 55px;
    height: 32px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    border-radius: 5px;
    background: #222;
  }

  #authModal.login-mask { padding: 0 4%; }

  #authModal .login-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 358.8px;
    min-height: 545.6px;
  }

  #authModal .left-panel,
  #authModal .right-panel { width: 100%; }

  #authModal .left-panel {
    flex: 0 0 78px;
    min-height: 78px;
    padding: 16px 20px 8px;
  }

  #authModal .welcome-text { margin: 0; font-size: 22px; }
  #authModal .logo-group { display: none; }
  #authModal .register-link { margin: auto 0 0; }

  #authModal .right-panel {
    flex: 1;
    padding: 40px 30px;
  }

  #authModal .login-title { margin-bottom: 30px; }
  #authModal .form-item,
  #authModal .login-button { width: 100%; }
  #authModal .code-item .custom-input { width: calc(100% - 115px); }
  #authModal #inviteRow:not([hidden]) { margin-bottom: 26.6px; }

  #view-gun,
  #view-center { padding: 18px 14px; }
}

/* ============================================================
 * 古徳首页移动端像素基线（390 × 844）
 * DOM 与 gds-ui.css 中目标站同源作用域保持一致。
 * ============================================================ */
@media (max-width: 900px) {
  html { font-size: 14px; }

  .gds-desktop-header.header-container[data-v-c3818027] {
    display: none !important;
  }

  body {
    min-width: 320px;
    padding-bottom: 61px;
    color: #333;
    background: #f5f5f5;
    font: 1em/1.4 "Microsoft Yahei", "PingFang SC", Avenir, "Segoe UI", "Hiragino Sans GB", STHeiti, "Microsoft Sans Serif", "WenQuanYi Micro Hei", sans-serif;
  }

  .gds-notice.scroll-notice-bar[data-v-a4538cfe] {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    color: #707070;
    background: #ededed;
  }

  .gds-notice .notice-outer[data-v-a4538cfe] {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
  }

  .gds-notice .notice-scroll[data-v-a4538cfe] {
    position: absolute;
    top: 0;
    display: flex;
    width: max-content;
    min-width: 0;
    height: 100%;
    align-items: center;
    animation: gds-notice-mobile 28s linear infinite;
  }

  .gds-notice .notice-item[data-v-a4538cfe] {
    width: max-content;
    height: 100%;
    padding: 0 20px;
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
  }

  @keyframes gds-notice-mobile {
    from { transform: translateX(100vw); }
    to { transform: translateX(-100%); }
  }

  .gds-mobile-header.header-container[data-v-71d7758b] {
    position: sticky;
    z-index: 30;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    margin: 0;
    padding: 10px 10px 0;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #eee;
    box-shadow: none;
  }

  .gds-mobile-header .nav-menu[data-v-71d7758b] {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 0;
    padding: 0 0 5px;
    overflow-x: auto;
  }

  .gds-mobile-header .nav-card[data-v-71d7758b] {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: auto;
    gap: 0;
    padding: 0;
    color: #666;
    font-size: 12px;
    line-height: 16.8px;
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .gds-mobile-header .card-icon[data-v-71d7758b] {
    display: flex;
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    background: transparent;
    border-radius: 8px;
  }

  .gds-mobile-header .nav-card-icon-img[data-v-71d7758b] {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
  }

  .gds-main {
    width: 100%;
    min-height: calc(100vh - 217px);
    margin: 0;
    padding: 0;
  }

  .gds-mobile-filter-top.filter-page[data-v-9913f79e] {
    display: block;
    width: 100%;
    height: 46px;
    padding: 0;
    background: #fff;
    border: 0;
  }

  .gds-mobile-filter-top .filter-top[data-v-9913f79e] {
    display: flex;
    width: 100%;
    height: 46px;
    margin: 0;
    padding: 5px;
    gap: 5px;
    align-items: center;
  }

  .gds-mobile-filter-top .logo[data-v-9913f79e] {
    display: flex;
    flex: 0 0 auto;
    margin-left: 0;
    align-items: center;
  }

  .gds-mobile-filter-top .logo-img[data-v-9913f79e] {
    display: block;
    width: auto;
    height: 28px;
    object-fit: contain;
  }

  #mobileFilterBtn.filter-btn[data-v-9913f79e] {
    display: flex;
    flex: 0 0 auto;
    width: 36px !important;
    height: 36px !important;
    padding: 8px !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    font: 500 20px/20px Arial;
  }

  .gds-mobile-filter-top .filter-btn .el-icon {
    display: flex;
    width: 1em;
    height: 1em;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    font-weight: 900;
  }

  .gds-mobile-filter-top .search-wrapper[data-v-9913f79e] {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    padding: 2px;
    background: #f0f0f0;
    border-radius: 6px;
  }

  .gds-mobile-filter-top .search-input[data-v-9913f79e] {
    width: 100%;
    background: transparent;
  }

  .gds-mobile-filter-top .el-input__inner {
    padding: 0;
    color: #606266;
    font: 14px/30px Arial;
  }

  .gds-toolbar { width: 100%; max-width: none; margin: 0; padding: 0; }

  .gds-sort-bar.sort-view-bar[data-v-c2eeca6d] {
    display: block;
    width: 100%;
    min-height: 0;
    height: 43.59375px;
    padding: 5px;
    overflow: auto;
    background: #fff;
    border: 0;
  }

  .gds-sort-bar .btn-group[data-v-c2eeca6d] {
    display: flex;
    width: max-content;
    min-width: max-content;
    height: 33.59375px;
    padding: 0;
    gap: 16px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .gds-sort-bar .view-btn[data-v-c2eeca6d],
  .gds-sort-bar .sort-btn[data-v-c2eeca6d] {
    display: flex;
    height: 33.59375px;
    padding: 6px 12px;
    gap: 6px;
    align-items: center;
    color: #606266;
    font-size: 14px;
    line-height: 19.6px;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    box-shadow: none;
  }

  .gds-sort-bar .el-icon {
    display: inline-flex;
    width: 1em;
    height: 1em;
    align-items: center;
    justify-content: center;
    line-height: 1em;
  }

  .gds-sort-bar #sortSelect,
  .gds-sort-bar .gds-tutorial-control {
    display: none !important;
  }

  #view-home > .list-head { display: none; }

  #accountList.product-page[data-v-f5eb7c33] {
    display: block;
    width: 100%;
    padding: 6px 6px 50px;
  }

  #accountList .product-grid[data-v-f5eb7c33] {
    display: grid;
    width: 100%;
    gap: 8px;
    grid-template-columns: 1fr;
  }

  #accountList .desktop-products,
  .gds-sort-bar .desktop-sort-items {
    display: none !important;
  }

  #accountList .product-card[data-v-f5eb7c33] {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 1px 2px #0000001a;
    cursor: pointer;
  }

  #accountList .product-img[data-v-f5eb7c33] {
    position: relative;
    width: 100%;
    height: 280px;
  }

  #accountList .product-img > img[data-v-f5eb7c33] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #accountList .product-actions[data-v-f5eb7c33] { min-width: 0; }
  #accountList .product-actions-top[data-v-f5eb7c33] { min-width: 0; }
  #accountList .meta-item-right[data-v-f5eb7c33] { margin-left: auto; }
  #accountList .dialog-title[data-v-f5eb7c33] { white-space: nowrap; }

  .tab-bar-container[data-v-437c46c9] {
    display: block;
    height: 61px;
    padding: 0;
    border-top: 1px solid #eee;
    box-shadow: none;
  }

  .tab-bar[data-v-437c46c9] {
    display: flex;
    height: 60px;
    grid-template-columns: none;
  }

  .tab-item[data-v-437c46c9] {
    flex: 1 1 0;
    min-width: 0;
    height: 60px;
    padding: 0;
    gap: 0;
    background: #fff;
    border: 0;
  }

  .tab-icon[data-v-437c46c9] {
    display: flex;
    width: 45px;
    height: 35px;
    margin-bottom: 4px;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    line-height: inherit;
    background: transparent;
    border: 0;
    border-radius: 8px;
  }

  .tab-icon-img[data-v-437c46c9] {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  .publish-item .tab-icon--publish[data-v-437c46c9] {
    width: 75px;
    height: 40px;
    margin-bottom: 4px;
    background: #333;
    border-radius: 10px;
  }

  .tab-label[data-v-437c46c9] {
    margin: 0;
    padding: 0;
    color: #666;
    font-size: 12px;
    line-height: 16.8px;
  }
}

/* ============================================================
 * 古徳首页桌面端像素基线（目标站 1280 × 720）
 * ============================================================ */
@media (min-width: 901px) {
  body {
    padding: 0;
    background: #f8f8f8;
    color: #333;
    font: 1em/1.4 "Microsoft Yahei", "PingFang SC", Avenir, "Segoe UI", "Hiragino Sans GB", STHeiti, "Microsoft Sans Serif", "WenQuanYi Micro Hei", sans-serif;
  }

  .gds-mobile-header.header-container[data-v-71d7758b],
  .gds-mobile-filter-top,
  .tab-bar-container {
    display: none !important;
  }

  .gds-notice .notice-outer[data-v-a4538cfe] {
    width: 100%;
    margin: 0;
  }

  .gds-desktop-header.header-container[data-v-c3818027] {
    position: sticky;
    z-index: 30;
    top: 0;
    display: flex;
    width: 100%;
    max-width: 1750px;
    height: 65px;
    margin: 0 auto;
    padding: 0 10px;
    gap: 30px;
    align-items: center;
    overflow-x: auto;
    background: #f8f8f8;
  }

  .gds-desktop-header .logo[data-v-c3818027] {
    display: flex;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    padding: 0;
    align-items: center;
    background: transparent;
    border: 0;
  }

  .gds-desktop-header .logo-img[data-v-c3818027] {
    display: block;
    width: auto;
    height: 32px;
  }

  .gds-desktop-header .nav-menu[data-v-c3818027] {
    display: flex;
    flex: 0 0 auto;
    height: auto;
    gap: 25px;
    align-items: center;
    color: #222;
    font-size: 18px;
    line-height: normal;
    white-space: nowrap;
  }

  .gds-desktop-header .nav-menu button[data-v-c3818027] {
    height: 43px;
    min-width: auto;
    padding: 8px 0;
    color: #222;
    font-size: 18px;
    line-height: normal;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
  }

  .gds-desktop-header .nav-menu button.active[data-v-c3818027] {
    color: #27bb9b;
    border-bottom-color: #27bb9b;
  }

  .gds-desktop-header .nav-menu .active::after { display: none; }

  .gds-desktop-header .search-wrapper[data-v-c3818027] {
    flex: 1 1 auto;
    min-width: 200px;
    max-width: none;
  }

  .gds-desktop-header .search-input[data-v-c3818027] {
    width: 100%;
    height: 38px;
    padding: 0 30px;
    border-radius: 20px;
  }

  .gds-desktop-header .el-input__inner {
    padding: 0;
    font: 14px/30px Arial;
  }

  .gds-desktop-header .auth-area[data-v-c3818027] {
    display: flex;
    flex: 0 0 auto;
    height: 38px;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
  }

  .gds-desktop-header .auth-area button {
    min-width: auto;
    height: auto;
    padding: 0;
    color: #222;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .gds-desktop-header .auth-area .publish-btn {
    width: 106px;
    height: 38px;
    padding: 0 20px;
    color: #fff;
    font-size: 14px;
    background: #000;
    border: 1px solid #000;
    border-radius: 8px;
  }

  .gds-main {
    width: 100%;
    max-width: 1750px;
    min-height: 640px;
    margin: 0 auto;
    padding: 0 0 28px;
  }

  .gds-toolbar { width: 100%; max-width: none; margin: 0; padding: 0; }

  .gds-filter-bar.filter-bar[data-v-1a3983ae] {
    display: block;
    width: 100%;
    max-width: 1750px;
    height: 59px;
    min-height: 59px;
    margin: 0 auto;
    padding: 0 10px;
    background: #f8f8f8;
    border: 0;
  }

  .gds-filter-bar .filter-bar-container[data-v-1a3983ae] {
    display: flex;
    width: 100%;
    height: 59px;
    padding: 0 5px;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: hidden;
    background: #ededed;
    border-radius: 8px;
  }

  .gds-filter-bar .gds-filter-buttons[data-v-1a3983ae] {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: 53px;
    margin-top: 5px;
    gap: 8px;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .gds-filter-bar .gds-filter-buttons > button {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 80px;
    width: auto;
    height: 47px;
    padding: 13px 20px;
    gap: 4px;
    align-items: center;
    justify-content: center;
    color: #222;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: normal;
    white-space: nowrap;
    background: #fff;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
  }

  .gds-filter-bar .gds-filter-buttons > .el-button + .el-button {
    margin-left: 0;
  }

  .gds-filter-bar .gds-filter-buttons > button:nth-child(4),
  .gds-filter-bar .gds-filter-buttons > button:nth-child(8),
  .gds-filter-bar .gds-filter-buttons > button:nth-child(n+11) { min-width: 108px; }

  .gds-filter-bar .gds-filter-buttons > button:nth-child(5) { min-width: 115px; }

  .gds-filter-bar .gds-filter-actions[data-v-1a3983ae] {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    height: 47px;
    padding: 0;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .gds-filter-bar .gds-filter-actions button {
    height: 47px;
    padding: 13px 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: normal;
    border-radius: 10px;
    box-shadow: none;
  }

  .gds-filter-bar .gds-filter-actions .skinFilter-btn {
    color: #fff;
    background: #84d3b9;
    border-color: #84d3b9;
  }

  .gds-filter-bar .gds-filter-actions .confirm-btn {
    color: #fff;
    background: #ff9667;
    border-color: #ff9667;
  }

  .gds-filter-bar .gds-filter-actions .reset-btn {
    color: #666;
    background: #fff;
    border-color: transparent;
  }

  .gds-sort-bar.sort-bar[data-v-15f7abe0] {
    display: flex;
    width: 100%;
    height: 53.59375px;
    min-height: 0;
    margin: 0 auto;
    padding: 10px;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    background: #f8f8f8;
    border: 0;
  }

  .gds-sort-bar .btn-group[data-v-c2eeca6d] {
    display: flex;
    width: auto;
    min-width: 0;
    height: 33.59375px;
    padding: 0;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .gds-sort-bar #mobileSortBtn { display: none; }

  .gds-sort-bar .desktop-sort-items {
    display: contents;
  }

  .gds-sort-bar .sort-item[data-v-15f7abe0] {
    display: flex;
    height: 20px;
    align-items: center;
    flex: 0 0 auto;
    color: #606266;
    font-size: 14px;
    line-height: 19.6px;
    cursor: pointer;
  }

  .gds-sort-bar .sort-item.active[data-v-15f7abe0] {
    color: #409eff;
    font-weight: 500;
  }

  .gds-sort-bar #sortSelect,
  .gds-sort-bar .gds-tutorial-control {
    display: none !important;
  }

  #view-home > .list-head { display: none; }

  #accountList.product-page[data-v-2256b6df] {
    display: block;
    width: 100%;
    max-width: 1750px;
    margin: 0 auto;
    padding: 10px;
  }

  #accountList .mobile-products { display: none !important; }

  #accountList .desktop-products[data-v-2256b6df] {
    display: block;
    width: 100%;
    column-count: 1;
    column-gap: 0;
  }

  #accountList .desktop-product-card[data-v-2256b6df] {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 8px;
  }

  #accountList .desktop-product-card .table-info-top[data-v-2256b6df] {
    margin: 0;
  }

  .gds-footer { display: block; }
}

@media (max-width: 390px) {
  .gds-mobile-header .nav-menu { gap: 8px; }
  .gds-sort-bar { gap: 5px; padding-left: 9px; padding-right: 9px; }
  .quick-chip { padding-left: 5px !important; padding-right: 5px !important; }
}
