:root {
  --wd-paper: #f7f0e3;
  --wd-paper-2: #fffaf0;
  --wd-cinnabar: #a4352a;
  --wd-jade: #1f6f5b;
  --wd-gold: #c5964a;
  --wd-ink: #221812;
  --wd-muted: #7d7168;
  --wd-line: rgba(80, 60, 44, .14);
  --wd-shadow: 0 22px 60px rgba(52, 35, 22, .14);
  --wd-radius: 18px;
  --wd-max: 1320px;
}

body.wd-redesign {
  min-width: 0;
  overflow-x: hidden;
  color: var(--wd-ink);
  background: var(--wd-paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
}

.wd-container {
  width: min(var(--wd-max), calc(100% - 48px));
  margin: 0 auto;
}

.wd-chip,
.wd-color-chip,
.wd-btn {
  border: 1px solid var(--wd-line);
  border-radius: 999px;
  color: rgba(111, 98, 87, 1);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.wd-chip:hover,
.wd-color-chip:hover,
.wd-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(52, 35, 22, .1);
}

.wd-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.wd-material-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--wd-radius);
  background: var(--wd-paper-2);
  box-shadow: var(--wd-shadow);
}

.wd-material-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.wd-card-cover {
  position: relative;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #e8dfd0;
}

.wd-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.wd-material-card:hover .wd-card-cover img {
  transform: scale(1.04);
}

.wd-card-body {
  padding: 22px 24px 24px;
}

.wd-card-body h3 {
  margin: 0 0 16px;
  color: var(--wd-ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.wd-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  color: var(--wd-muted);
  font-size: 13px;
}

.wd-card-meta span {
  min-width: 0;
  padding: 9px 10px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(34, 24, 18, .045);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wd-card-color {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: #fff;
  background: rgba(25, 20, 16, .58);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

.wd-card-color-dot,
.wd-color-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
}

.wd-fav-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(34, 24, 18, .42);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  border:1px solid rgba(255, 255, 255, 0.38);
}

.wd-fav-btn.is-on {
  background: var(--wd-cinnabar);
}

.wd-empty {
  padding: 52px 32px;
  border: 1px dashed var(--wd-line);
  border-radius: var(--wd-radius);
  color: var(--wd-muted);
  background: rgba(255,250,240,.7);
  text-align: center;
}

.wd-toast {
  position: fixed;
  left: 50%;
  bottom: 38px;
  z-index: 9999;
  min-width: 180px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: rgba(34, 24, 18, .88);
  box-shadow: 0 18px 48px rgba(0,0,0,.2);
  transform: translateX(-50%);
}

@media (max-width: 1100px) {
  .wd-material-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .wd-container { width: min(100% - 28px, var(--wd-max)); }
  .wd-material-grid { grid-template-columns: 1fr; }
  .wd-card-meta { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body.wd-redesign .common-web-header {
    height: 58px !important;
    overflow: hidden;
  }
  body.wd-redesign .common-web-header-inner {
    padding: 0 10px !important;
  }
  body.wd-redesign .common-web-header-inner > .d-flex {
    min-width: 0;
    gap: 8px;
  }
  body.wd-redesign .navbar-nav-scroll {
    flex: 1 1 auto;
    width: auto;
    max-width: none !important;
    margin-right: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none;
  }
  body.wd-redesign .navbar-nav-scroll::-webkit-scrollbar {
    display: none;
  }
  body.wd-redesign .navbar-nav-scroll .navbar-nav {
    width: max-content;
    min-width: max-content;
    margin: 0 !important;
    overflow: visible !important;
  }
  body.wd-redesign .common-web-header-inner .navbar-nav-scroll .nav-item .nav-link {
    width: auto !important;
    min-width: 64px;
    height: 38px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
  }
  body.wd-redesign .common-web-header-inner > .d-flex > .d-flex.align-items-center.ml-5 {
    flex: 0 0 auto;
    margin-left: 4px !important;
  }
  body.wd-redesign .header-operate-btns {
    margin-right: 0 !important;
  }
  body.wd-redesign .header-operate-btns span {
    display: none;
  }
  body.wd-redesign .product-types-menu,
  body.wd-redesign .mypage-types-menu {
    display: none !important;
  }
}

.wd-home-search-panel {
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr)) auto;
}
.wd-home-search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--wd-ink);
  font-size: 15px;
}
.wd-home-tag-group {
  min-height: 96px;
  padding: 15px 14px;
  border-right: 1px solid var(--wd-line);
}
.wd-home-tag-group > span {
  display: block;
  margin-bottom: 10px;
  color: var(--wd-muted);
  font-size: 10px;
  letter-spacing: .08em;
}
.wd-home-tag {
  margin: 0 6px 7px 0;
  padding: 6px 11px;
  border: 1px solid var(--wd-line);
  border-radius: 999px;
  color: var(--wd-ink);
  background: rgba(255,250,240,.82);
}
.wd-home-tag.is-active {
  border-color: var(--wd-jade);
  color: #fff;
  background: var(--wd-jade);
}
@media (max-width: 1080px) {
  .wd-home-search-panel { grid-template-columns: 1fr; }
  .wd-home-tag-group { border-right: 0; border-bottom: 1px solid var(--wd-line); }
}

.wd-search-scope {
  min-width: 112px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--wd-jade);
  font-weight: 600;
}
.wd-list-page .wd-search-panel {
  grid-template-columns: minmax(0, 1fr) 132px;
}
.wd-list-page .wd-search-panel .search-input {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  padding-left: 24px;
  border-left: 0;
}
.wd-list-page .wd-search-panel .wd-search-submit {
  min-width: 124px;
  height: 60px;
  padding: 0 24px;
  font-weight: 700;
  white-space: nowrap;
}
.wd-list-page .product-box {
  padding-top: 38px;
}
.wd-list-page .channel-container {
  padding-top: 76px;
}
.wd-list-page .product-list.wd-library-layout {
  margin-top: 0;
}
.wd-list-type-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.wd-result-type-tabs {
  flex-wrap: wrap;
}
.wd-list-page .wd-result-type-tabs .types-selector-item {
  border: 1px solid var(--wd-line);
  background: rgba(255, 250, 240, .92);
  box-shadow: 0 8px 18px rgba(66, 39, 20, .06);
  font-weight: 600;
}
.wd-list-page .wd-result-type-tabs .types-selector-item.active {
  border-color: var(--wd-jade);
  background: var(--wd-jade);
  color: #fff;
}
.wd-filter-panel .wd-filter-group {
  padding: 22px 20px;
  border-bottom: 1px solid var(--wd-line);
}
.wd-filter-title {
  margin-bottom: 12px;
  color: var(--wd-ink);
  font-weight: 700;
}
.wd-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wd-filter-panel .wd-chip,
.wd-filter-panel .wd-color-chip {
  padding: 7px 12px;
}

.wd-detail-page .article-container {
  background: radial-gradient(circle at 18% 8%, rgba(197,150,74,.12), transparent 34%), var(--wd-paper);
}
.wd-detail-shell {
  width: min(1500px, calc(100% - 64px));
}
.wd-detail-card {
  overflow: hidden;
  padding: 28px;
}
.wd-detail-card .material-preview {
  border-radius: 18px;
  background: rgba(255, 250, 240, 1);
}
.wd-purchase-panel {
  border-radius: 18px;
  background: rgba(255,250,240,.72);
}
.wd-detail-color-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  background: transparent;
}
.wd-detail-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34,24,18,.045);
}

.wd-shell {
  width: min(var(--wd-max), calc(100% - 48px));
  margin: 0 auto;
}
.wd-user-page .user-center-container {
  min-height: 100vh;
  background: radial-gradient(circle at 12% 8%, rgba(197,150,74,.14), transparent 36%), var(--wd-paper);
}
.wd-user-page .user-center-container.wd-redesign-page {
  padding-top: 76px !important;
  background-position: center 76px, 0 0 !important;
}
.wd-user-page .wd-profile-hero {
  padding: 48px 0 40px;
}
.wd-profile-hero {
  position: relative;
  padding: 56px 0 34px;
  border-bottom: 1px solid var(--wd-line);
  background: linear-gradient(90deg, rgba(34,24,18,.72), rgba(34,24,18,.38)), var(--wd-profile-bg) center / cover no-repeat;
  color: #fff;
}
.wd-profile-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wd-avatar-row {
  display: flex;
  align-items: center;
  gap: 22px;
}
.wd-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(255,250,240,.8);
  object-fit: cover;
  background: rgba(255,250,240,.8);
}
.wd-profile-name h1 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 700;
}
.wd-profile-name p {
  margin: 0;
  color: rgba(255,255,255,.78);
}
.wd-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 14px;
}
.wd-profile-stat {
  min-width: 110px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,250,240,.14);
  backdrop-filter: blur(8px);
}
.wd-profile-stat strong,
.wd-profile-stat span {
  display: block;
}
.wd-profile-stat strong {
  font-size: 22px;
  line-height: 1.1;
}
.wd-profile-stat span {
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
.wd-account-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 28px;
}
.wd-user-page .wd-account-menu {
  width: 240px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,250,240,.88);
  box-shadow: var(--wd-shadow);
}
.wd-user-page .left-menu-inner {
  background: transparent;
}
.wd-user-page .left-menu-item {
  height: 46px;
  line-height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--wd-muted);
}
.wd-user-page .left-menu-item.active {
  border: 0;
  background: var(--wd-jade);
  color: #fff;
}
.wd-account-content,
.wd-panel {
  flex: 1;
  min-height: 560px;
  border-radius: 24px;
  background: rgba(255,250,240,.9);
  box-shadow: var(--wd-shadow);
}
.wd-favorite-head,
.wd-download-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.wd-favorite-head h2,
.wd-download-head h2 {
  margin: 0 0 8px;
  color: var(--wd-ink);
  font-size: 26px;
}
.wd-favorite-head p,
.wd-download-head p,
.wd-section-desc {
  margin: 0;
  color: var(--wd-muted);
}
.wd-tabs {
  flex-wrap: wrap;
  gap: 10px;
}
.wd-tabs .wd-tab {
  margin: 0;
  padding: 12px 16px;
  border: 1px solid var(--wd-line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: var(--wd-muted);
}
.wd-tabs .wd-tab.active {
  border-color: var(--wd-jade);
  background: var(--wd-jade);
  color: #fff;
}
.wd-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.wd-download-table {
  overflow: hidden;
  border: 1px solid var(--wd-line);
  border-radius: 5px;
  background: none;
}
.wd-download-table .product-list-header {
  background: rgba(34,24,18,.055);
}
.wd-download-row {
  background: rgba(255,250,240,.42);
}
@media (max-width: 960px) {
  .wd-profile-grid,
  .wd-account-layout { flex-direction: column; }
  .wd-user-page .wd-account-menu,
  .wd-account-content { width: 100%; }
  .wd-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .wd-profile-stats,
  .wd-card-grid { grid-template-columns: 1fr; }
}

.wd-static-page .channel-container {
  background: radial-gradient(circle at 14% 8%, rgba(197,150,74,.13), transparent 36%), var(--wd-paper);
}
.wd-static-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wd-line);
}
.wd-static-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(34,24,18,.08), rgba(34,24,18,.26));
}
.wd-static-page .cooperation-info-list,
.wd-static-page .product-check-info-list {
  width: min(1320px, calc(100% - 48px));
}
.wd-static-card {
  border: 1px solid var(--wd-line);
  border-radius: 24px;
  background: rgba(255,250,240,.9);
  box-shadow: var(--wd-shadow);
}
.wd-static-page .product-check-btn,
.wd-static-page .check-uploader-btn {
  border-radius: 999px;
}
.wd-static-page .product-check-btn {
  background: var(--wd-jade);
}
.wd-modal .wd-modal-content {
  overflow: hidden;
  border: 1px solid rgba(197,150,74,.28);
  border-radius: 24px;
  background: var(--wd-paper-2);
  box-shadow: 0 28px 80px rgba(34,24,18,.22);
}
.wd-modal .modal-header {
  align-items: center;
  border-bottom: 1px solid var(--wd-line);
}
.wd-modal .modal-title {
  color: var(--wd-ink);
  font-weight: 700;
}
.wd-modal .wd-modal-close {
  cursor: pointer;
  opacity: .78;
  transition: opacity .2s ease;
}
.wd-modal .wd-modal-close:hover {
  opacity: 1;
}
.wd-modal .wd-modal-body {
  color: var(--wd-ink);
}


/* material-mobile-adaptation: mobile-only overrides for material trading pages */
@media (max-width: 768px) {
  body.wd-redesign {
    min-width: 0;
    overflow-x: hidden;
  }

  body.wd-redesign .common-web-header {
    height: 58px !important;
    overflow: hidden;
  }

  body.wd-redesign .common-web-header-inner {
    padding: 0 10px !important;
  }

  body.wd-redesign .display-header-logo {
    height: 38px;
    margin-right: 8px;
  }

  body.wd-redesign .web-header-logo {
    height: 28px;
  }

  body.wd-redesign .navbar-nav-scroll {
    flex: 1 1 auto;
    max-width: calc(100vw - 128px);
    margin-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
  }

  body.wd-redesign .wd-topbar-nav {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
  }

  body.wd-redesign .common-web-header-inner .navbar-nav-scroll .nav-item .nav-link {
    width: auto;
    min-width: 76px;
    height: 58px;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  body.wd-redesign .header-operate-btns {
    margin-right: 0;
    font-size: 12px;
  }

  body.wd-redesign .product-types-menu,
  body.wd-redesign .mypage-types-menu {
    top: 58px;
    height: auto;
    min-height: 48px;
    padding: 0 12px;
    overflow-x: auto;
    white-space: nowrap;
    line-height: 48px;
  }

  body.wd-redesign .wd-container,
  body.wd-redesign .wd-shell,
  body.wd-redesign .page-section,
  body.wd-redesign .wd-static-page .cooperation-info-list,
  body.wd-redesign .wd-static-page .product-check-info-list {
    width: calc(100% - 28px) !important;
    max-width: none;
  }

  body.wd-redesign .wd-material-grid,
  body.wd-redesign .wd-card-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  body.wd-home-page .hero {
    min-height: 620px;
    padding-top: 58px;
  }

  body.wd-home-page .hero-media,
  body.wd-home-page .hero-tone {
    top: 58px;
  }

  body.wd-home-page .hero-copy {
    width: calc(100% - 28px) !important;
    padding-top: 96px;
  }

  body.wd-home-page .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.22;
    white-space: normal;
  }

  body.wd-home-page .hero-copy > p {
    font-size: 13px;
    line-height: 1.75;
  }

  body.wd-home-page .hero-actions,
  body.wd-home-page .section-heading,
  body.wd-home-page .license-grid,
  body.wd-home-page .element-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.wd-home-page .hero-primary-button,
  body.wd-home-page .hero-ghost-button,
  body.wd-home-page .primary-button,
  body.wd-home-page .outline-button,
  body.wd-home-page .text-action {
    width: 100%;
    min-height: 44px;
  }

  body.wd-home-page .hero-facts {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  body.wd-home-page .material-selector,
  body.wd-home-page .topic-layout,
  body.wd-home-page .element-studio,
  body.wd-home-page .compare-wrap {
    grid-template-columns: 1fr !important;
    max-height: none;
  }

  body.wd-home-page .material-category-nav,
  body.wd-home-page .topic-list {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }

  body.wd-home-page .material-category-nav button,
  body.wd-home-page .topic-tab {
    min-height: 72px;
    padding: 14px;
  }

  body.wd-home-page .material-preview,
  body.wd-home-page .topic-feature,
  body.wd-home-page .element-visual,
  body.wd-home-page .compare-stage {
    min-height: 360px;
    max-height: none;
  }

  body.wd-home-page .material-preview-copy,
  body.wd-home-page .topic-feature-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 20px;
  }

  body.wd-home-page .element-collections {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  body.wd-home-page .element-collections button {
    min-height: 150px;
  }

  body.wd-home-page .element-panel {
    padding: 24px 18px;
  }

  body.wd-list-page .material-home-top,
  body.wd-list-page .wd-library-hero,
  body.wd-static-page .material-home-top {
    height: auto;
    min-height: 320px;
    padding: 86px 0 28px;
    background-size: cover;
  }

  body.wd-list-page .wd-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  body.wd-list-page .wd-hero-banner {
    min-height: 210px;
  }

  body.wd-list-page .wd-search-panel,
  body.wd-list-page .search-bar-content {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  body.wd-list-page .search-input,
  body.wd-list-page .wd-search-submit {
    width: 100% !important;
    min-height: 44px;
  }

  body.wd-list-page .wd-library-layout,
  body.wd-list-page .product-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  body.wd-list-page .type-filter-container,
  body.wd-list-page .wd-sidebar,
  body.wd-list-page .product-list-container {
    width: 100% !important;
    max-width: none;
  }

  body.wd-list-page .wd-filter-panel {
    position: relative;
    top: auto;
  }

  body.wd-list-page .wd-filter-list,
  body.wd-list-page .wd-tabs,
  body.wd-list-page .wd-result-type-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  body.wd-list-page .wd-chip,
  body.wd-list-page .wd-color-chip,
  body.wd-list-page .wd-tab,
  body.wd-list-page .sort-item {
    flex: 0 0 auto;
    min-height: 40px;
  }

  body.wd-list-page .wd-list-type-row,
  body.wd-list-page .wd-results-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  body.wd-list-page .audio-table-list-header {
    display: none !important;
  }

  body.wd-list-page .picture-grid-item,
  body.wd-list-page .wd-material-card {
    width: 100%;
  }

  body.wd-user-page .user-center-container.wd-redesign-page {
    padding-top: 58px !important;
  }

  body.wd-user-page .wd-profile-hero {
    padding: 28px 0 24px;
  }

  body.wd-redesign .wd-account-layout,
  body.wd-user-page .wd-profile-grid {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  body.wd-redesign .wd-account-menu,
  body.wd-redesign .wd-account-content,
  body.wd-user-page .user-left-content,
  body.wd-user-page .user-right-content {
    width: 100% !important;
    margin-left: 0 !important;
  }

  body.wd-user-page .left-menu-inner {
    display: flex;
    overflow-x: auto;
    background: transparent;
  }

  body.wd-user-page .left-menu-item {
    flex: 0 0 auto;
    min-width: 96px;
    height: 44px;
    line-height: 44px;
    padding: 0 14px;
    border-left: 0;
    border-bottom: 3px solid transparent;
  }

  body.wd-user-page .left-menu-item span {
    display: none;
  }

  body.wd-user-page .user-center-baseinfo,
  body.wd-user-page .user-right-content,
  body.wd-user-page .wd-panel {
    padding: 16px !important;
  }

  body.wd-user-page .user-account,
  body.wd-user-page #baseInfoForm,
  body.wd-user-page #enterpriseForm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.wd-user-page .user-account-item,
  body.wd-user-page .form-group.user-account-item {
    width: 100% !important;
    margin-right: 0;
  }

  body.wd-user-page .account-label {
    width: 100%;
    margin-bottom: 6px;
  }

  body.wd-user-page .account-text,
  body.wd-user-page .input-group,
  body.wd-user-page .form-control {
    width: 100%;
  }

  body.wd-redesign .wd-static-hero {
    min-height: 280px;
  }

  body.wd-static-page .channel-container,
  body.wd-static-page .cooperation-info-list,
  body.wd-static-page .product-check-info-list,
  body.wd-static-page .product-contact-content {
    width: calc(100% - 28px) !important;
    margin-left: auto;
    margin-right: auto;
  }

  body.wd-static-page .cooperation-info-item,
  body.wd-static-page .contact-info-box,
  body.wd-static-page .product-check-content {
    width: 100% !important;
  }

  body.wd-static-page .channel-container {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.wd-static-page .cooperation-info-top,
  body.wd-static-page .product-check-info-top,
  body.wd-static-page .wd-static-hero {
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    padding: 58px 14px 24px !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  body.wd-static-page .wd-static-hero .h-100 {
    height: 100% !important;
    justify-content: center !important;
  }

  body.wd-static-page .wd-static-hero .wd-kicker {
    margin-top: 0 !important;
    font-size: 12px !important;
    letter-spacing: .12em !important;
  }

  body.wd-static-page .wd-static-hero h1 {
    font-size: clamp(38px, 14vw, 56px) !important;
    line-height: 1.08 !important;
  }

  body.wd-static-page .wd-static-hero .wd-hero-copy {
    width: 100% !important;
    margin-top: 18px !important;
    color: rgba(255, 255, 255, .82) !important;
    text-align: center !important;
  }

  body.wd-static-page .wd-static-hero .decorate-crane {
    display: none !important;
  }

  body.wd-detail-page .article-container,
  body.wd-detail-page .wd-detail-shell {
    width: calc(100% - 28px) !important;
    padding-top: 80px;
  }

  body.wd-detail-page .article-material-content,
  body.wd-detail-page .wd-detail-card {
    display: flex !important;
    flex-direction: column;
  }

  body.wd-detail-page .material-preview,
  body.wd-detail-page .material-infos,
  body.wd-detail-page .wd-purchase-panel {
    width: 100% !important;
  }

  body.wd-redesign .modal-dialog {
    width: calc(100% - 24px) !important;
    max-width: none;
    margin: 12px auto;
  }

  body.wd-redesign .modal-content,
  body.wd-redesign .wd-modal-content {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  body.wd-redesign table,
  body.wd-redesign .wd-download-table,
  body.wd-redesign .list-pagination {
    max-width: 100%;
    overflow-x: auto;
  }

  /* material-mobile-adaptation-hardening: override page-local fixed desktop rules */
  body.wd-list-page .channel-container {
    padding-top: 58px !important;
  }

  body.wd-list-page .material-home-top,
  body.wd-list-page .wd-library-hero {
    min-height: 360px !important;
    padding: 56px 0 24px !important;
    background-size: cover !important;
  }

  body.wd-list-page .wd-hero-grid {
    width: calc(100% - 28px) !important;
    min-height: 0 !important;
    align-items: flex-start !important;
  }

  body.wd-list-page .wd-hero-banner {
    min-height: 160px !important;
    border-radius: 18px !important;
  }

  body.wd-list-page .wd-hero-grid h1 {
    font-size: clamp(28px, 8.2vw, 40px) !important;
    line-height: 1.2 !important;
  }

  body.wd-list-page .wd-hero-copy,
  body.wd-list-page .hot-search-items {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.wd-list-page .hot-search-items {
    flex-wrap: wrap !important;
    gap: 6px 10px !important;
    margin-top: 14px !important;
  }

  body.wd-list-page .material-home-list {
    width: calc(100% - 28px) !important;
    margin: 0 auto !important;
  }

  body.wd-list-page .product-box {
    padding-top: 18px !important;
  }

  body.wd-list-page .product-list.wd-library-layout,
  body.wd-list-page .product-list {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    margin-top: 0 !important;
    padding-bottom: 20px !important;
  }

  body.wd-list-page .type-filter-container,
  body.wd-list-page .wd-filter-panel {
    width: 100% !important;
    padding: 12px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  body.wd-list-page .type-filter-header,
  body.wd-list-page .wd-sidebar-head {
    height: auto !important;
    min-height: 54px !important;
    padding: 12px 16px !important;
    background-size: cover !important;
  }

  body.wd-list-page .type-filter-content-element,
  body.wd-list-page .type-filter-content-color,
  body.wd-list-page .wd-filter-group {
    padding: 14px 0 0 !important;
    border-bottom: 0 !important;
  }

  body.wd-list-page .product-list-container {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.wd-list-page .wd-list-type-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  body.wd-list-page .wd-result-type-tabs,
  body.wd-list-page .types-selector,
  body.wd-list-page .list-sorter,
  body.wd-list-page .wd-list-sorter {
    width: 100% !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none;
  }

  body.wd-list-page .wd-result-type-tabs::-webkit-scrollbar,
  body.wd-list-page .types-selector::-webkit-scrollbar,
  body.wd-list-page .list-sorter::-webkit-scrollbar,
  body.wd-list-page .wd-list-sorter::-webkit-scrollbar {
    display: none;
  }

  body.wd-list-page .wd-tab,
  body.wd-list-page .types-selector-item,
  body.wd-list-page .sort-item,
  body.wd-list-page .wd-chip,
  body.wd-list-page .wd-color-chip {
    flex: 0 0 auto !important;
    min-height: 40px !important;
    white-space: nowrap !important;
  }

  body.wd-list-page #productListBox {
    margin-top: 14px !important;
  }

  body.wd-list-page .list-cards-content {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  body.wd-list-page .wd-material-card {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  body.wd-list-page .wd-card-body {
    padding: 16px !important;
  }

  body.wd-list-page .wd-card-body h3 {
    font-size: 18px !important;
  }

  body.wd-list-page .list-imgs-content {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
    height: auto !important;
    position: static !important;
  }

  body.wd-list-page .picture-grid-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }

  body.wd-list-page .picture-grid-item .picture-grid-img {
    width: 100% !important;
    min-height: 0 !important;
    border-radius: 16px !important;
  }

  body.wd-list-page .picture-grid-content {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    padding: 14px !important;
    background: linear-gradient(180deg, rgba(0,0,0,.46), rgba(0,0,0,.12) 45%, rgba(0,0,0,.58)) !important;
  }

  body.wd-list-page .picture-grid-title,
  body.wd-list-page .picture-grid-desc-text {
    width: auto !important;
    max-width: calc(100vw - 96px) !important;
  }

  body.wd-list-page .product-pagination {
    margin-top: 28px !important;
    flex-wrap: wrap !important;
  }

  body.wd-detail-page .article-container {
    width: 100% !important;
    padding: 72px 0 24px !important;
    background-size: cover !important;
  }

  body.wd-detail-page .article-center,
  body.wd-detail-page .wd-detail-shell {
    display: block !important;
    width: calc(100% - 28px) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding-top: 0 !important;
  }

  body.wd-detail-page .article-container-content {
    width: 100% !important;
  }

  body.wd-detail-page nav .d-flex {
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
  }

  body.wd-detail-page .article-text-content {
    padding: 14px !important;
    border-radius: 16px !important;
  }

  body.wd-detail-page .article-material-content {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }

  body.wd-detail-page .material-preview {
    width: 100% !important;
    height: min(calc(100vw - 64px), 520px) !important;
    min-height: 280px !important;
    padding: 12px !important;
  }

  body.wd-detail-page .preview-content {
    max-height: none !important;
  }

  body.wd-detail-page .preview-cover,
  body.wd-detail-page .preview-video,
  body.wd-detail-page .preview-audio {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.wd-detail-page .preview-video {
    min-height: 0 !important;
    height: 100% !important;
  }

  body.wd-detail-page .preview-thumb-tabs {
    height: 66px !important;
    gap: 8px !important;
  }

  body.wd-detail-page .preview-thumb-tab {
    flex-basis: 62px !important;
    width: 62px !important;
    height: 62px !important;
  }

  body.wd-detail-page .material-number,
  body.wd-detail-page .material-preview.has-preview-thumbs .material-number {
    right: 14px !important;
    bottom: 86px !important;
  }

  body.wd-detail-page .material-infos {
    width: 100% !important;
    height: auto !important;
    padding: 18px 0 0 0 !important;
  }

  body.wd-detail-page .material-title {
    font-size: 21px !important;
    line-height: 1.35 !important;
  }

  body.wd-detail-page .infos-item {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 13px !important;
  }

  body.wd-detail-page .infos-item .item-label,
  body.wd-detail-page .infos-item .item-value {
    width: auto !important;
  }

  body.wd-detail-page .select-btn-group {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  body.wd-detail-page .select-btn {
    width: 100% !important;
    height: 44px !important;
    line-height: 44px !important;
    margin: 0 !important;
    border-radius: 999px !important;
  }

  body.wd-detail-page #contactTip {
    align-items: flex-start !important;
    line-height: 1.65 !important;
  }

  body.wd-detail-page .step-title {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  body.wd-detail-page #useSelect .d-flex.mt-4 {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  body.wd-detail-page .checkbox-item {
    margin: 0 10px 10px 0 !important;
  }

  body.wd-detail-page .use-selector,
  body.wd-detail-page .form-control {
    width: 100% !important;
  }

  body.wd-detail-page .other-info-area {
    width: calc(100% - 28px) !important;
    padding: 16px !important;
    margin: 18px auto 0 auto !important;
    border-radius: 16px !important;
  }

  body.wd-detail-page .recommend-swiper {
    height: auto !important;
    min-height: 0 !important;
  }

  body.wd-detail-page .recommend-swiper-list,
  body.wd-detail-page .recommend-swiper-slide {
    height: auto !important;
  }

  body.wd-detail-page .recommend-swiper-slide {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  body.wd-detail-page .recommend-item {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin-left: 0 !important;
    padding: 16px !important;
  }

  body.wd-detail-page .recommend-item-cover {
    height: min(52vw, 220px) !important;
  }

  body.wd-detail-page .submit-area {
    height: auto !important;
    padding: 12px 0 !important;
  }

  body.wd-detail-page .submit-center {
    padding: 0 14px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  body.wd-detail-page .price-tip {
    text-align: left !important;
  }

  body.wd-detail-page .order-submit-btn {
    width: 100% !important;
    height: 48px !important;
    line-height: 48px !important;
    font-size: 18px !important;
  }
}
