:root {
  --wd-ink: #221812;
  --wd-muted: #6f6257;
  --wd-paper: #f7f0e3;
  --wd-paper-2: #fffaf0;
  --wd-cinnabar: #a4352a;
  --wd-cinnabar-deep: #7d231c;
  --wd-jade: #1f6f5b;
  --wd-jade-dark: #164f41;
  --wd-gold: #c5964a;
  --wd-line: rgba(80, 50, 32, 0.16);
  --wd-shadow: 0 24px 70px rgba(52, 32, 20, 0.12);
  --wd-radius: 18px;
  --wd-serif: "Noto Serif SC", "Source Han Serif CN", "Songti SC", "SimSun", serif;
  --wd-sans: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.wd-redesign-page {
  min-height: 100vh;
  color: var(--wd-ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(196, 150, 74, 0.18), transparent 32rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.68), transparent 34%),
    var(--wd-paper);
  font-family: var(--wd-sans);
}

.wd-redesign-page * {
  box-sizing: border-box;
}

.wd-shell {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.wd-section {
  padding: 58px 0;
}

.wd-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.wd-section-title {
  margin: 0;
  font-family: var(--wd-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: 0;
}

.wd-section-desc {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--wd-muted);
  line-height: 1.8;
}

.wd-btn {
  border: 0;
  border-radius: 999px;
  background: var(--wd-cinnabar);
  color: #fff7ea !important;
  padding: 12px 20px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  box-shadow: 0 12px 24px rgba(164, 53, 42, 0.22);
  text-decoration: none !important;
}

.wd-btn:hover {
  transform: translateY(-1px);
  background: var(--wd-cinnabar-deep);
}

.wd-btn-subtle {
  border: 1px solid rgba(31, 111, 91, 0.24);
  background: rgba(255, 255, 255, 0.48);
  color: var(--wd-jade) !important;
  box-shadow: none;
}

.wd-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #1d1712;
}

.wd-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  min-height: 620px;
}

.wd-library-hero {
  min-height: 380px;
}

.wd-library-hero .wd-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  min-height: 380px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.wd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wd-jade);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wd-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.wd-hero .wd-kicker {
  color: rgba(255, 248, 236, 0.9);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.wd-hero h1 {
  margin: 0;
  font-family: var(--wd-serif);
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.02;
  color: #fff8ec;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.wd-library-hero h1 {
  font-size: clamp(42px, 4.2vw, 60px);
}

.wd-hero h1 em {
  display: block;
  color: #f0c67a;
  font-style: normal;
}

.wd-hero-copy {
  margin: 24px 0 0;
  max-width: 690px;
  color: rgba(255, 248, 236, 0.86);
  font-size: 17px;
  line-height: 1.85;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.wd-library-hero .wd-hero-copy {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
}

.wd-hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #2a211c;
}

.wd-hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.08);
}

.wd-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.76) 0%, rgba(18, 12, 8, 0.44) 34%, rgba(18, 12, 8, 0.08) 70%),
    linear-gradient(0deg, rgba(17, 11, 7, 0.62), rgba(17, 11, 7, 0.08) 42%, rgba(255, 248, 236, 0.14)),
    radial-gradient(circle at 78% 20%, rgba(255, 248, 236, 0.22), transparent 24rem);
  pointer-events: none;
}

.wd-search-panel {
  margin-top: 34px;
  padding: 10px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 132px;
  gap: 10px;
  max-width: 740px;
  border: 1px solid rgba(255, 248, 236, 0.38);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 28px 72px rgba(16, 10, 6, 0.34);
  backdrop-filter: blur(18px);
}

.wd-search-panel select,
.wd-search-panel input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--wd-ink);
  font: 15px var(--wd-sans);
}

.wd-search-panel .type-selector,
.wd-search-panel .search-input {
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--wd-ink);
}

.wd-search-panel .type-selector {
  color: var(--wd-cinnabar);
}

.wd-search-panel select {
  padding-left: 18px;
  color: var(--wd-cinnabar);
}

.wd-search-panel input {
  border-left: 1px solid var(--wd-line);
  padding-left: 18px;
}

.wd-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wd-flow-card,
.wd-panel,
.wd-sidebar,
.wd-material-card {
  border: 1px solid var(--wd-line);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 58px rgba(66, 39, 20, 0.08);
}

.wd-flow-card {
  min-height: 152px;
  border-radius: var(--wd-radius);
  padding: 22px;
}

.wd-flow-card b {
  color: var(--wd-gold);
  font-family: var(--wd-serif);
  font-size: 30px;
}

.wd-flow-card strong {
  display: block;
  margin: 13px 0 7px;
  font-size: 18px;
}

.wd-flow-card p {
  margin: 0;
  color: var(--wd-muted);
  line-height: 1.65;
  font-size: 14px;
}

.wd-library-layout {
  display: grid;
  grid-template-columns: 338px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.product-list.wd-library-layout {
  display: grid !important;
  grid-template-columns: 338px minmax(0, 1fr) !important;
  gap: 30px !important;
  align-items: start !important;
}

.product-list.wd-library-layout .type-filter-container {
  width: auto !important;
  padding: 0 !important;
}

.wd-list-page .product-list.wd-library-layout .product-list-container {
  width: auto !important;
  margin-left: 0 !important;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wd-sidebar {
  position: sticky;
  top: 96px;
  border-radius: 28px;
  overflow: hidden;
}

.wd-sidebar-head {
  padding: 24px 26px 22px;
  color: #fff8ec;
  background: linear-gradient(135deg, rgba(45, 27, 18, 0.96), rgba(125, 35, 28, 0.9));
  border-bottom: 1px solid rgba(197, 150, 74, 0.28);
}

.wd-sidebar-head strong {
  display: block;
  font-family: var(--wd-serif);
  font-size: 26px;
}

.wd-filter-group {
  padding: 22px 26px;
  border-bottom: 1px solid var(--wd-line);
}

.wd-filter-title {
  margin-bottom: 14px;
  color: var(--wd-ink);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.wd-filter-list,
.wd-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wd-chip,
.wd-tab,
.wd-color-chip {
  border: 1px solid rgba(80, 50, 32, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--wd-muted);
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: 180ms ease;
}

.wd-chip:hover,
.wd-chip.active,
.wd-chip.is-active,
.wd-tab.active,
.wd-tab.is-active,
.wd-color-chip.is-active {
  border-color: rgba(164, 53, 42, 0.36);
  color: var(--wd-cinnabar);
  background: rgba(164, 53, 42, 0.08);
}

.wd-tab.is-active {
  background: var(--wd-jade);
  border-color: var(--wd-jade);
  color: #fffaf0;
}

.wd-tab.active {
  background: var(--wd-jade) !important;
  border-color: var(--wd-jade) !important;
  color: #fffaf0 !important;
}

.wd-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 7px;
}

.wd-color-dot,
.wd-card-color-dot {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(80, 50, 32, 0.18);
  flex: 0 0 auto;
}

.wd-color-dot {
  width: 24px;
  height: 24px;
}

.wd-results-toolbar,
.wd-favorite-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.wd-list-type-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin-bottom: 24px !important;
}

.wd-list-sorter {
  flex: 0 0 auto;
}

.wd-list-sorter .sort-item {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(80, 50, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  color: #77685e;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(66, 39, 20, 0.06);
}

.wd-list-sorter .sort-item.active {
  color: #77685e;
}

.wd-list-sorter .sort-icon {
  display: none;
}

.wd-sort {
  border: 1px solid var(--wd-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--wd-muted);
  padding: 10px 14px;
  outline: 0;
}

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

.wd-list-page .product-list.wd-library-layout .list-cards-content {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.collection-list.wd-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wd-material-card {
  overflow: hidden;
  border-radius: 22px;
  color: var(--wd-ink) !important;
  text-decoration: none !important;
}

.wd-card-media {
  position: relative;
  height: 224px;
  background: #2b2119;
  overflow: hidden;
}

.wd-card-media img,
.wd-card-media video,
.wd-card-media .product-empty-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.wd-card-media img.product-item-cover,
.wd-card-media img.product-item-item-cover,
.wd-card-media img.collection-item-cover,
.wd-card-media img.audio-item-cover,
.wd-card-media img.order-item-cover,
.wd-card-media .product-item-cover,
.wd-card-media .product-item-item-cover,
.wd-card-media .collection-item-cover,
.wd-card-media .audio-item-cover {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
}

.wd-material-card:hover .wd-card-media img {
  transform: scale(1.06);
}

.wd-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(26, 15, 9, 0.72));
  pointer-events: none;
}

.wd-card-color-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 72px);
  border: 1px solid rgba(255, 248, 236, 0.42);
  border-radius: 999px;
  background: rgba(34, 24, 16, 0.56);
  color: #fff8ec;
  padding: 8px 12px 8px 8px;
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.wd-card-color-dot {
  width: 18px;
  height: 18px;
}

.wd-fav-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(35, 20, 12, 0.36);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(20, 12, 8, 0.12);
  font-size: 0;
  line-height: 1;
}

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

.wd-fav-icon {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.wd-fav-icon path {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linejoin: round;
}

.wd-fav-btn.is-on .wd-fav-icon path {
  fill: currentColor;
}

.wd-audio-mark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff8ec;
  background: radial-gradient(circle, rgba(164, 53, 42, 0.24), rgba(18, 12, 8, 0.26));
  pointer-events: none;
}

.wd-audio-mark::before {
  content: "♪";
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 248, 236, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 24, 18, 0.48);
  font-size: 24px;
  backdrop-filter: blur(10px);
}

.wd-card-body {
  padding: 18px 20px 20px;
  display: grid;
  gap: 16px;
}

.wd-card-body h3 {
  margin: 0;
  font-family: var(--wd-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.wd-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  color: #77685e;
  font-size: 12px;
  white-space: nowrap;
}

.wd-meta span {
  border-radius: 10px;
  background: rgba(80, 50, 32, 0.055);
  padding: 8px 9px;
}

.wd-empty {
  grid-column: 1 / -1;
  border: 1px dashed rgba(164, 53, 42, 0.34);
  border-radius: 20px;
  padding: 42px;
  text-align: center;
  color: var(--wd-muted);
  background: rgba(255, 250, 240, 0.56);
}

.wd-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  border-radius: 999px;
  background: #211812;
  color: #fff8ec;
  padding: 13px 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 180ms ease;
}

.wd-toast.is-show {
  opacity: 1;
  transform: translateY(0);
}

.wd-home-hero {
  min-height: 100vh;
}

.wd-home-hero .wd-hero-grid {
  min-height: 100vh;
  padding-top: 150px;
}

.wd-home-hero .hot-search-items {
  width: auto;
  margin-top: 18px;
  color: rgba(255, 248, 236, 0.84);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.wd-home-hero .hot-tip {
  display: inline-flex;
  margin: 0 8px 8px 0;
  border: 1px solid rgba(255, 248, 236, 0.26);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(34, 24, 18, 0.28);
  color: #fff8ec;
  backdrop-filter: blur(8px);
}

.wd-home-stats.material-totals {
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(1440px, calc(100% - 64px));
  padding: 0;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wd-home-stats .total-item {
  min-height: 112px;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 18px;
  padding: 18px 20px;
  color: rgba(255, 248, 236, 0.78);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.wd-home-stats .total-number {
  color: #f0c078;
  font-family: var(--wd-serif);
  font-size: 40px;
}

.wd-home-list {
  padding: 8px 0 30px;
}

.wd-home-list .material-list-box {
  width: min(1520px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.wd-home-list .picture-list,
.wd-home-list .video-list,
.wd-home-list #modelList {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch !important;
  justify-content: initial !important;
}

.wd-home-list .video-list {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
}

.wd-home-material-card {
  min-width: 0;
  height: 100%;
}

.wd-home-material-card .wd-card-media {
  height: 214px;
}

.wd-video-feature-card {
  grid-row: span 2;
}

.wd-video-feature-card .wd-card-media {
  height: 466px;
}

.wd-audio-card .wd-card-media {
  height: 190px;
}

.wd-home-list .audio-right-list {
  width: min(1520px, calc(100% - 64px));
  height: auto;
  margin: 0 auto;
}

.wd-home-list .audio-swiper-list {
  align-items: stretch;
}

.wd-home-list .audio-swiper-list .swiper-slide {
  height: auto;
}

.wd-home-list .material-type-title {
  max-width: 1440px;
  font-family: var(--wd-serif);
  font-size: clamp(30px, 3.2vw, 48px);
  color: var(--wd-ink);
}

.wd-home-list .contact-card {
  border-radius: 22px;
  border-color: var(--wd-line);
  box-shadow: 0 18px 58px rgba(66, 39, 20, 0.08);
}

.product-list.wd-library-layout .types-list {
  display: none !important;
}

.product-list.wd-library-layout .list-header {
  padding: 18px 22px 0;
}

.product-list.wd-library-layout .list-pagination {
  padding: 0 22px 24px;
}

.wd-redesign-page .pagination .page-link {
  border-color: rgba(80, 50, 32, 0.16);
  color: var(--wd-cinnabar);
  background: rgba(255, 250, 240, 0.8);
}

.wd-redesign-page .pagination .page-item.active .page-link {
  border-color: var(--wd-cinnabar);
  background: var(--wd-cinnabar);
  color: #fff8ec;
}

.wd-profile-hero {
  padding: 122px 0 42px;
  background:
    linear-gradient(105deg, rgba(34, 24, 18, 0.92), rgba(34, 24, 18, 0.62)),
    var(--wd-profile-bg, linear-gradient(135deg, #4a3325, #7c3428));
  background-size: cover;
  background-position: center;
  color: #fff8ec;
}

.wd-profile-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
}

.wd-avatar-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wd-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  object-fit: cover;
  background: rgba(164, 53, 42, 0.7);
}

.wd-profile-name h1 {
  margin: 0;
  font-family: var(--wd-serif);
  font-size: 38px;
}

.wd-profile-name p {
  margin: 8px 0 0;
  color: rgba(255, 248, 236, 0.74);
}

.wd-profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 118px);
  gap: 12px;
}

.wd-profile-stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.wd-profile-stat strong {
  display: block;
  font-family: var(--wd-serif);
  font-size: 28px;
  color: #f0c078;
}

.wd-profile-stat span {
  font-size: 13px;
  color: rgba(255, 248, 236, 0.74);
}

.wd-account-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 28px;
  padding: 44px 0 62px;
}

.user-center-container.wd-redesign-page {
  padding: 0 !important;
  background-position: center top !important;
}

.user-center-content.wd-shell {
  max-width: none !important;
}

.user-list.wd-account-layout {
  display: grid !important;
  grid-template-columns: 248px minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
  margin-top: 0 !important;
}

.user-list.wd-account-layout .user-left-content {
  width: auto !important;
  padding: 0 !important;
  background: rgba(255, 250, 240, 0.82) !important;
}

.user-list.wd-account-layout .left-menu-inner {
  background: transparent !important;
}

.user-list.wd-account-layout .left-menu-item {
  height: auto !important;
  line-height: 1.4 !important;
  padding: 17px 20px !important;
  border-left: 0 !important;
  border-bottom: 1px solid var(--wd-line) !important;
  background: transparent !important;
  color: var(--wd-muted) !important;
  border-radius: 0px;
}

.user-list.wd-account-layout .left-menu-item.active {
  color: var(--wd-cinnabar) !important;
  background: rgba(164, 53, 42, 0.07) !important;
  font-weight: 700;
}

.user-list.wd-account-layout .user-right-content {
  width: auto !important;
  margin-left: 0 !important;
  background: rgba(255, 250, 240, 0.78) !important;
}

.wd-account-menu {
  border: 1px solid var(--wd-line);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.82);
  overflow: hidden;
  height: max-content;
}

.wd-account-menu a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--wd-muted);
  text-decoration: none;
  padding: 17px 20px;
  border-bottom: 1px solid var(--wd-line);
}

.wd-account-menu a:last-child {
  border-bottom: 0;
}

.wd-account-menu a.is-active {
  color: var(--wd-cinnabar);
  background: rgba(164, 53, 42, 0.07);
  font-weight: 700;
}

.wd-favorite-head h2 {
  margin: 0;
  font-family: var(--wd-serif);
  font-size: 36px;
}

.wd-account-section,
.user-center-order,
.user-center-product,
.user-center-collection {
  padding: 28px !important;
}

.wd-subpage-head,
.wd-download-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.wd-subpage-head h2,
.wd-download-head h2 {
  margin: 0;
  font-family: var(--wd-serif);
  font-size: 34px;
  color: var(--wd-ink);
}

.wd-subpage-head p,
.wd-download-head p {
  margin: 8px 0 0;
  color: var(--wd-muted);
  line-height: 1.7;
}

.wd-redesign-page .types-filter {
  justify-content: flex-start !important;
  border-bottom: 0 !important;
  margin-bottom: 22px !important;
  padding: 0 !important;
}

.wd-redesign-page .type-item,
.wd-redesign-page .product-type-item {
  height: auto !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  border-radius: 999px !important;
  color: var(--wd-muted) !important;
}

.wd-redesign-page .type-item.active,
.wd-redesign-page .product-type-item.active {
  background: var(--wd-jade) !important;
  border-color: var(--wd-jade) !important;
  color: #fffaf0 !important;
}

.wd-order-card {
  border: 1px solid var(--wd-line) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  box-shadow: 0 16px 48px rgba(66, 39, 20, 0.07);
  overflow: hidden;
}

.wd-order-card .order-item-header {
  padding: 12px 0 !important;
  border-bottom-color: var(--wd-line) !important;
}

.wd-order-card .order-item-content {
  min-height: 170px;
  padding-top: 18px !important;
}

.wd-order-card .order-item-cover,
.wd-order-card .product-empty-cover {
  border-radius: 16px;
  background-color: rgba(80, 50, 32, 0.08);
}

.wd-order-card .product-name {
  font-family: var(--wd-serif);
  color: var(--wd-ink) !important;
}

.wd-order-card .product-tag {
  border-radius: 999px !important;
  background: rgba(197, 150, 74, 0.16) !important;
  color: #8a5b16 !important;
  padding: 5px 10px !important;
}

.wd-order-card .price-tatol {
  color: var(--wd-cinnabar) !important;
}

.wd-redesign-page .product-btn {
  border-radius: 999px !important;
  height: 38px !important;
  line-height: 38px !important;
}

.wd-redesign-page .product-btn-1 {
  background: var(--wd-cinnabar) !important;
  color: #fff8ec !important;
}

.wd-redesign-page .product-btn-2 {
  border-color: rgba(164, 53, 42, 0.34) !important;
  background: rgba(164, 53, 42, 0.07) !important;
  color: var(--wd-cinnabar) !important;
}

.wd-download-table {
  border: 1px solid var(--wd-line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

.wd-download-table .product-list-header {
  background: rgba(80, 50, 32, 0.055) !important;
  color: var(--wd-muted) !important;
}

.wd-download-row {
  background: rgba(255, 255, 255, 0.32);
  transition: background 160ms ease;
}

.wd-download-row:hover {
  background: rgba(197, 150, 74, 0.08);
}

.wd-download-row .product-item-cover,
.wd-download-row .product-empty-cover {
  border-radius: 12px;
  background-color: rgba(80, 50, 32, 0.08);
}

.wd-download-row .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  border: 1px solid rgba(164, 53, 42, 0.28);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--wd-cinnabar) !important;
  background: rgba(164, 53, 42, 0.07);
}

.user-center-baseinfo {
  padding: 28px !important;
}

.user-center-baseinfo .user-info-title {
  margin: 26px 0 14px !important;
  padding-left: 14px !important;
  color: var(--wd-ink) !important;
  font-size: 18px !important;
  letter-spacing: 0.04em;
}

.user-center-baseinfo .user-info-title::after {
  width: 4px !important;
  height: 18px !important;
  bottom: 4px !important;
  border-radius: 999px;
  background: var(--wd-cinnabar) !important;
}

.user-center-baseinfo .user-account {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.user-center-baseinfo .user-account-item {
  width: auto !important;
  margin: 0 !important;
  border-radius: 16px;
  padding: 16px;
}

.user-center-baseinfo .user-account-avatar {
  grid-column: 1 / -1;
}

.user-center-baseinfo .account-label {
  width: 86px !important;
  color: var(--wd-muted) !important;
}

.user-center-baseinfo .account-text {
  color: var(--wd-ink) !important;
}

.user-center-baseinfo .account-avatar-img {
  border-radius: 16px !important;
  overflow: hidden;
  background: rgba(80, 50, 32, 0.08) !important;
}

.user-center-baseinfo .account-avatar-text,
.user-center-baseinfo .set-auth-btn,
.user-center-baseinfo .edit-info-btn,
.user-center-baseinfo .edit-enterprise-info-btn {
  color: var(--wd-cinnabar) !important;
}

@media (max-width: 1180px) {
  .wd-shell {
    width: min(100% - 36px, 980px);
  }

  .wd-library-layout,
  .wd-profile-grid,
  .wd-account-layout {
    grid-template-columns: 1fr;
  }

  .wd-sidebar {
    position: relative;
    top: auto;
  }

  .wd-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-home-list .picture-list,
  .wd-home-list .video-list,
  .wd-home-list #modelList,
  .product-list.wd-library-layout .list-cards-content,
  .collection-list.wd-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .wd-video-feature-card {
    grid-row: auto;
  }

  .wd-video-feature-card .wd-card-media {
    height: 214px;
  }

  .wd-profile-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wd-section-head,
  .wd-results-toolbar,
  .wd-favorite-head {
    flex-direction: column;
    align-items: stretch;
  }

  .wd-hero-grid {
    min-height: 680px;
    padding: 96px 0 54px;
  }

  .wd-search-panel {
    grid-template-columns: 1fr;
    border-radius: 24px;
    max-width: 100%;
  }

  .wd-search-panel input {
    border-left: 0;
    border-top: 1px solid var(--wd-line);
    padding: 12px 18px;
  }

  .wd-flow,
  .wd-card-grid,
  .wd-profile-stats {
    grid-template-columns: 1fr;
  }

  .wd-home-list .picture-list,
  .wd-home-list .video-list,
  .wd-home-list #modelList,
  .product-list.wd-library-layout .list-cards-content,
  .collection-list.wd-card-grid {
    grid-template-columns: 1fr !important;
  }

  .wd-home-list .material-list-box,
  .wd-home-list .audio-right-list {
    width: min(100% - 36px, 680px);
  }

  .user-center-baseinfo .user-account {
    grid-template-columns: 1fr;
  }
}
