/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */
a {
  text-decoration: none;
}

/* 主演和导演链接样式 */
.hu-detail-meta-text a {
  color: #8b6e4e;
  transition: all 0.3s ease;
}

.hu-detail-meta-text a:hover {
  color: #d5a97c;
}

.hu-header {
  position: relative;
  background: #f9f6f0;
  border-bottom: 1px solid #e8d8c3;
  padding: 12px 0 14px;
  box-shadow: 0 2px 12px rgba(90, 74, 58, 0.08);
  padding-top: max(12px, env(safe-area-inset-top));
}

.hu-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(15px, env(safe-area-inset-left)) 0 max(15px, env(safe-area-inset-right));
  box-sizing: border-box;
}

.hu-header-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hu-header-bar {
  width: 100%;
}

.hu-content {
  padding: 20px 0;
}


.hu-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 20px;
  flex-wrap: wrap;
}

.hu-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hu-logo {
  display: flex;
  align-items: center;
}

.hu-logo-link {
  color: inherit;
  text-decoration: none;
}

.hu-logo-link:hover h1 {
  color: #6b5338;
}

.hu-logo-link:focus-visible {
  outline: 2px solid #c1a97c;
  outline-offset: 4px;
  border-radius: 4px;
}

.hu-logo h1 {
  margin: 0;
  font-size: clamp(18px, 4.2vw, 26px);
  font-weight: bold;
  color: #8b6e4e;
  font-family: 'STXingkai', 'STKaiti', serif;
  letter-spacing: 1.6px;
  text-shadow: 0.8px 0.8px 2px rgba(139, 110, 78, 0.22);
  line-height: 1.25;
}

.hu-search {
  position: relative;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  min-width: 0;
}

.hu-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 8px);
  padding: 0 clamp(10px, 2.2vw, 14px);
  height: clamp(34px, 4.2vw, 40px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 230, 216, 0.92));
  border: 1px solid rgba(193, 169, 124, 0.45);
  color: #8b6e4e;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(90, 74, 58, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
  white-space: nowrap;
  user-select: none;
}

.hu-search-toggle:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(213, 169, 124, 0.22));
  border-color: rgba(193, 169, 124, 0.75);
  color: #6b5338;
  box-shadow: 0 14px 30px rgba(90, 74, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hu-search-toggle:focus-visible {
  outline: 2px solid #c1a97c;
  outline-offset: 2px;
}

.hu-search-toggle-icon {
  width: clamp(14px, 2.4vw, 16px);
  height: clamp(14px, 2.4vw, 16px);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%238b6e4e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

.hu-search-toggle-text {
  font-size: clamp(12px, 2.0vw, 14px);
  font-weight: 700;
  line-height: 1;
}

.hu-search-panel {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 16px 24px;
  box-sizing: border-box;
  overflow-y: auto;
}

.hu-search-panel[hidden] {
  display: none !important;
}

.hu-search-modal-open {
  overflow: hidden;
}

.hu-search-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hu-search-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1px solid #e8d8c3;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  padding: 16px 18px 18px;
  box-sizing: border-box;
}

.hu-search-panel--open .hu-search-modal-backdrop {
  opacity: 1;
}

.hu-search-panel--open .hu-search-modal-dialog {
  animation: hu-search-dialog-in 0.22s ease-out;
}

@keyframes hu-search-dialog-in {
  from {
    opacity: 0.6;
    transform: translateY(-10px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hu-search-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hu-search-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #6b5338;
}

.hu-search-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: #8b6e4e;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hu-search-close:hover {
  background: rgba(193, 169, 124, 0.12);
}

.hu-search-close:focus-visible {
  outline: 2px solid #c1a97c;
  outline-offset: 2px;
}

.hu-search-close::before {
  content: '×';
  font-size: 18px;
  line-height: 1;
  display: block;
}

.hu-search-modal-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 420px) {
  .hu-search-modal-form {
    flex-wrap: wrap;
  }
}

.hu-search-modal-submit {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d5a97c, #8b6e4e);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.hu-search-modal-submit:hover {
  opacity: 0.92;
}

.hu-search-modal-submit:active {
  transform: scale(0.98);
}

.hu-search-modal-submit-text {
  white-space: nowrap;
}

.hu-search-form {
  display: flex;
  width: 100%;
  position: relative;
}

.hu-search-input {
  width: 100%;
  height: 40px;
  border: 1px solid #e8d8c3;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: #5a4a3a;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hu-search-input:focus {
  border-color: #c1a97c;
  box-shadow: 0 0 0 3px rgba(193, 169, 124, 0.25);
}

.hu-search-input:focus-visible {
  outline: none;
}

.hu-search-button {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  color: #8b6e4e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.hu-search-button:hover {
  background: rgba(193, 169, 124, 0.15);
  color: #6b5338;
}

.hu-search-button:focus-visible {
  outline: 2px solid #c1a97c;
  outline-offset: 2px;
}

.hu-search-icon {
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

/* 顶部分类：每行一个顶级分类，右侧横向子分类 */
.hu-nav.hu-nav-cascade {
  width: 100%;
  background: linear-gradient(180deg, #faf6ef 0%, #f0e6d8 100%);
  border: 1px solid #e8d8c3;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hu-nav-row {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  border-bottom: 1px solid rgba(232, 216, 195, 0.95);
}

.hu-nav-row:last-child {
  border-bottom: none;
}

.hu-nav-row--home {
  background: rgba(255, 255, 255, 0.55);
}

.hu-nav-row--current {
  background: rgba(213, 169, 124, 0.14);
  box-shadow: inset 3px 0 0 #c1a97c;
}

.hu-nav-parent {
  flex: 0 0 auto;
  min-width: 96px;
  max-width: 148px;
  min-height: 46px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #8b6e4e;
  text-decoration: none;
  border-right: 1px solid rgba(232, 216, 195, 0.95);
  background: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.hu-nav-parent:hover {
  color: #6b5338;
  background: rgba(255, 255, 255, 0.75);
}

.hu-nav-parent.active {
  color: #5a4632;
  background: rgba(213, 169, 124, 0.25);
}

.hu-nav-parent:focus-visible {
  outline: 2px solid #c1a97c;
  outline-offset: -2px;
  z-index: 1;
}

.hu-nav-children {
  flex: 1 1 auto;
  display: grid;
  /* 固定 8 列：确保不同顶级分类子项数量不同也不会“错位/错行” */
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-flow: row;
  align-items: center;
  gap: 8px 10px;
  padding: 10px 14px;
  min-width: 0;
}

.hu-nav-children--meta {
  display: flex;
  justify-content: flex-end;
}

.hu-nav-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 34px;
  padding: 6px 10px;
  font-size: 14px;
  color: #6b5338;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  justify-self: center;
}

.hu-nav-child:hover {
  color: #5a4632;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(193, 169, 124, 0.45);
}

.hu-nav-child.active {
  color: #fff;
  background: linear-gradient(135deg, #c1a97c, #a88b5c);
  border-color: rgba(168, 139, 92, 0.5);
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(107, 83, 56, 0.2);
}

.hu-nav-child:focus-visible {
  outline: 2px solid #c1a97c;
  outline-offset: 2px;
}

.hu-update-info {
  font-size: 13px;
  color: #8a7865;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hu-update-info--inline {
  white-space: nowrap;
}

.hu-update-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #c1a97c, #a88b5c);
  border-radius: 4px;
  line-height: 1.4;
}

/* 调整原有面板样式适配复古清新风格 */
.stui-pannel {
  margin-bottom: 20px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e8d8c3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stui-pannel__head {
  padding: 15px;
  border-bottom: 1px solid #f0e6d8;
}

.stui-pannel__head .title {
  color: #8b6e4e;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  position: relative;
  padding-left: 15px;
}

.stui-pannel__head .title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #d5a97c;
  border-radius: 2px;
}

.stui-pannel__head a {
  color: #a08c78;
  transition: all 0.3s ease;
}

.stui-pannel__head a:hover {
  color: #d5a97c;
}

.stui-vodlist {
  padding: 15px;
  margin: 0;
  list-style: none;
}

.stui-vodlist li {
  margin-bottom: 15px;
}

.stui-vodlist__thumb {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stui-vodlist__thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stui-vodlist__detail {
  padding: 8px 0;
}

.stui-vodlist__detail h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.stui-vodlist__detail h3 a {
  color: #5a4a3a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.stui-vodlist__detail h3 a:hover {
  color: #d5a97c;
}

.stui-vodlist__detail p {
  margin: 3px 0 0;
  font-size: 12px;
  color: #a08c78;
}

/* 视频列表样式 */
.hu-videos-list {
  padding: 15px;
  margin: 0;
}

.hu-video-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}

.hu-video-list li {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .hu-video-list li {
    width: 33.333%;
  }
}

@media (max-width: 992px) {
  .hu-video-list li {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .hu-video-list li {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .hu-video-list li {
    width: 50%;
  }
}

.hu-video-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.hu-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* 列表封面 16:9 横图（原 140% 为竖图比例） */
.hu-video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background-color: #f0e6d8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hu-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.hu-video-play:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.hu-video-card:hover .hu-video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hu-video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  background: rgba(139, 110, 78, 0.8);
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hu-video-info {
  padding: 10px;
  background: #f9f6f0;
  border-top: 1px solid #f0e6d8;
}

.hu-video-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: normal;
  position: relative;
  background: linear-gradient(to right, #6b5338, #8b6e4e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 1px rgba(139, 110, 78, 0.1);
}

.hu-video-card:hover .hu-video-title {
  background: linear-gradient(to right, #b8855b, #d5a97c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hu-video-title:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #d5a97c;
  transition: width 0.3s ease;
}

.hu-video-card:hover .hu-video-title:after {
  width: 100%;
}

.hu-video-meta {
  margin-top: 5px;
  font-size: 12px;
  color: #a08c78;
  display: flex;
  justify-content: space-between;
}

.hu-video-type, .hu-video-date {
  color: #a08c78;
  font-size: 12px;
  transition: all 0.3s ease;
}

.hu-video-card:hover .hu-video-type {
  color: #8b6e4e;
}

.hu-category-tabs {
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px 15px;
  margin: 0;
  list-style: none;
}

.hu-category-tab {
  margin-right: 10px;
  margin-bottom: 8px;
}

.hu-category-link {
  display: block;
  padding: 5px 12px;
  background: #f0e6d8;
  color: #8b6e4e;
  border-radius: 15px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hu-category-link:hover {
  background: #e5d9c5;
  color: #d5a97c;
}

.hu-more-link {
  padding: 5px 15px;
  background: #fbf8f3;
  color: #a08c78;
  border-radius: 15px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px dashed #e8d8c3;
}

.hu-more-link:hover {
  background: #f0e6d8;
  color: #d5a97c;
}

.hu-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hu-section-title h3 {
  color: #8b6e4e;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  position: relative;
  padding-left: 15px;
}

.hu-section-title h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #d5a97c;
  border-radius: 2px;
}

.hu-section-more {
  margin-left: auto;
}

/* 分页样式 */
.hu-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.hu-page-btn {
  display: inline-block;
  min-width: 36px;
  height: 36px;
  line-height: 36px;
  padding: 0 12px;
  margin: 0 4px;
  text-align: center;
  background: #f9f6f0;
  color: #8b6e4e;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e8d8c3;
  font-size: 14px;
}

.hu-page-btn:hover {
  background: #f0e6d8;
  color: #d5a97c;
  border-color: #d5a97c;
}

.hu-page-current {
  background: #8b6e4e;
  color: #fff;
  border-color: #8b6e4e;
}

.hu-page-current:hover {
  background: #a18564;
  color: #fff;
  border-color: #a18564;
}

.hu-page-nums {
  display: flex;
  flex-wrap: wrap;
}

.hu-page-info {
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 12px;
  margin: 0 4px;
  color: #8b6e4e;
  font-size: 14px;
}

.hu-page-first, .hu-page-last, .hu-page-prev, .hu-page-next {
  background: #fbf8f3;
  border: 1px solid #e8d8c3;
  font-weight: bold;
}

/* 复古清新风格底部UI样式 */
.hu-footer {
  margin-top: 30px;
  background: #f9f6f0;
  border-top: 1px solid #e8d8c3;
  padding: 30px 0 20px;
  position: relative;
}

.hu-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f0e6d8 25%, #d5a97c 25%, #d5a97c 50%, #8b6e4e 50%, #8b6e4e 75%, #5a4a3a 75%);
}

.hu-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hu-footer-content--simple {
  justify-content: center;
}

.hu-footer-section {
  flex: 1;
  min-width: 250px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.hu-footer-section--simple {
  flex: 0 0 min(760px, 100%);
  min-width: 0;
  margin-bottom: 0;
  padding: 0 12px;
}

.hu-footer-contact {
  margin-bottom: 14px;
}

.hu-footer-contact-line {
  margin-bottom: 0;
}

.hu-footer-disclaimer {
  margin-top: 10px;
}

.hu-footer-title {
  color: #8b6e4e;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: normal;
  position: relative;
  padding-left: 12px;
}

.hu-footer-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background: #d5a97c;
  border-radius: 1.5px;
}

.hu-footer-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hu-footer-link-item {
  width: 50%;
  margin-bottom: 8px;
}

.hu-footer-link {
  color: #8b6e4e;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.hu-footer-link:hover {
  color: #d5a97c;
}

.hu-footer-link i {
  width: 5px;
  height: 5px;
  background: #d5a97c;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.hu-footer-info {
  margin: 0;
  color: #a08c78;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.hu-footer-bottom {
  border-top: 1px dashed #e5d9c5;
  padding-top: 15px;
  text-align: center;
  margin-top: 10px;
}

.hu-copyright {
  color: #a08c78;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.hu-copyright a {
  color: #8b6e4e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hu-copyright a:hover {
  color: #d5a97c;
}

.hu-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 70px;
  width: 40px;
  height: 40px;
  background: rgba(249, 246, 240, 0.9);
  border: 1px solid #e8d8c3;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.hu-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.hu-back-to-top:hover {
  background: #f0e6d8;
}

.hu-back-to-top-icon {
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #8b6e4e;
  transform: rotate(-135deg);
  display: inline-block;
  margin-top: 4px;
}

.hu-mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f9f6f0;
  border-top: 1px solid #e8d8c3;
  z-index: 100;
}

.hu-mobile-nav {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

.hu-mobile-nav-item {
  flex: 1;
  text-align: center;
}

.hu-mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #8b6e4e;
  text-decoration: none;
  font-size: 12px;
  padding: 5px 0;
}

.hu-mobile-nav-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.hu-mobile-nav-link.active {
  color: #d5a97c;
}

.hu-mobile-nav-link.active .hu-mobile-nav-icon {
  opacity: 1;
}

@media (max-width: 1200px) {
  .hu-video-item {
    width: 33.333%;
  }
  
  .hu-footer-section {
    min-width: 200px;
  }
}

@media (max-width: 992px) {
  .hu-video-item {
    width: 33.333%;
  }
  
  .hu-footer-section {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .hu-header {
    padding: 10px 0 12px;
  }

  .hu-header-inner {
    gap: 10px;
  }

  .hu-header-top {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hu-logo {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hu-logo-link {
    display: inline-block;
  }
  
  .hu-header-actions {
    width: 100%;
    justify-content: center;
    gap: 10px 12px;
  }

  .hu-search {
    width: auto;
    max-width: none;
  }
  
  .hu-nav.hu-nav-cascade {
    border-radius: 8px;
  }

  .hu-nav-row {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .hu-nav-row--current {
    box-shadow: inset 0 3px 0 #c1a97c;
  }

  .hu-nav-parent {
    max-width: 148px;
    width: auto;
    min-width: 96px;
    border-right: 1px solid rgba(232, 216, 195, 0.95);
    border-bottom: none;
    justify-content: center;
    padding: 10px 14px;
    font-size: 15px;
    min-height: 46px;
  }

  .hu-nav-children:not(.hu-nav-children--meta) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    align-items: center;
    gap: 8px 10px;
    padding: 10px 8px;
    margin: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .hu-nav-children:not(.hu-nav-children--meta)::-webkit-scrollbar {
    height: 0;
  }

  .hu-nav-children:not(.hu-nav-children--meta)::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 0;
  }

  .hu-nav-child {
    font-size: 13px;
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 38px;
    padding: 8px 6px;
    box-sizing: border-box;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hu-nav-children--meta {
    justify-content: center;
    padding: 10px 12px;
  }

  .hu-update-info {
    justify-content: center;
    text-align: center;
  }
  
  .hu-video-item {
    width: 50%;
  }
  
  .hu-pagination {
    padding: 15px 0;
  }
  
  .hu-page-btn {
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    margin: 0 2px;
    font-size: 13px;
  }
  
  .hu-footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hu-video-item {
    width: 100%;
  }
  
  .hu-category-tabs {
    display: none;
  }
  
  .hu-footer-section {
    flex: 0 0 100%;
  }
  
  .hu-footer-link-item {
    width: 100%;
  }
}

/* 视频详情页样式 */
.hu-detail-container {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8d8c3;
}

.hu-detail-header {
  display: flex;
  flex-wrap: wrap;
  padding: 25px;
  position: relative;
}

.hu-detail-thumb {
  width: 220px;
  margin-right: 30px;
  position: relative;
}

@media (max-width: 768px) {
  .hu-detail-thumb {
    width: 160px;
    margin-right: 20px;
  }
}

@media (max-width: 576px) {
  .hu-detail-header {
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
  }
  
  .hu-detail-thumb {
    width: 180px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.hu-detail-thumb-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background-color: #f0e6d8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hu-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
}

.hu-detail-status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 10px;
  background: rgba(139, 110, 78, 0.8);
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

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

.hu-detail-title {
  margin: 0 0 15px;
  font-size: 24px;
  line-height: 1.3;
  color: #6b5338;
  font-weight: normal;
  position: relative;
  display: inline-block;
}

.hu-detail-title:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #d5a97c;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.hu-detail-title:hover:after {
  width: 100%;
}

.hu-detail-meta {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hu-detail-meta-item {
  margin-right: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hu-detail-meta-label {
  color: #a08c78;
  margin-right: 5px;
}

.hu-detail-meta-text {
  color: #6b5338;
}

.hu-detail-tag {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 3px 10px;
  background: #f9f6f0;
  border: 1px solid #e8d8c3;
  border-radius: 15px;
  color: #8b6e4e;
  font-size: 13px;
  transition: all 0.3s ease;
}

.hu-detail-tag:hover {
  background: #f0e6d8;
  color: #d5a97c;
  border-color: #d5a97c;
}

.hu-detail-desc {
  margin-top: 15px;
  color: #8b6e4e;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  max-height: 4.8em;
  transition: max-height 0.3s ease;
}

.hu-detail-desc.expanded {
  max-height: 1000px;
}

.hu-detail-desc-toggle {
  margin-top: 10px;
  color: #d5a97c;
  cursor: pointer;
  display: inline-block;
  padding: 2px 0;
  position: relative;
  font-size: 14px;
}

.hu-detail-desc-toggle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d5a97c;
  opacity: 0.5;
}

.hu-detail-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.hu-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #8b6e4e;
  color: #fff;
  border-radius: 4px;
  margin-right: 15px;
  margin-bottom: 10px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(139, 110, 78, 0.2);
}

.hu-detail-btn:hover {
  background: #a18564;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(139, 110, 78, 0.3);
}

.hu-detail-btn.primary {
  background: linear-gradient(135deg, #d5a97c, #8b6e4e);
}

.hu-detail-btn.primary:hover {
  background: linear-gradient(135deg, #e0b78a, #9d7c59);
}

.hu-detail-btn-icon {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* 播放列表样式 */
.hu-playlist-container {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8d8c3;
  margin-bottom: 20px;
}

.hu-playlist-header {
  padding: 15px 20px;
  border-bottom: 1px solid #f0e6d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hu-playlist-title {
  color: #8b6e4e;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  position: relative;
  padding-left: 15px;
}

.hu-playlist-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #d5a97c;
  border-radius: 2px;
}

.hu-playlist-tabs {
  display: flex;
  border-bottom: 1px solid #f0e6d8;
  background: #f9f6f0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: #d5a97c #f9f6f0;
}

.hu-playlist-tabs::-webkit-scrollbar {
  height: 5px;
}

.hu-playlist-tabs::-webkit-scrollbar-track {
  background: #f9f6f0;
}

.hu-playlist-tabs::-webkit-scrollbar-thumb {
  background-color: #d5a97c;
  border-radius: 3px;
}

.hu-playlist-tab {
  padding: 12px 20px;
  color: #8b6e4e;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid #f0e6d8;
}

.hu-playlist-tab:hover {
  color: #d5a97c;
  background: #f6f1e7;
}

.hu-playlist-tab.active {
  color: #d5a97c;
  background: #fff;
}

.hu-playlist-tab.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d5a97c;
}

.hu-playlist-tab-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  opacity: 0.8;
}

.hu-playlist-content {
  padding: 15px;
}

.hu-episode-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  list-style: none;
  padding: 0;
}

.hu-episode-item {
  padding: 5px;
  box-sizing: border-box;
  width: 16.666%;
}

@media (max-width: 992px) {
  .hu-episode-item {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .hu-episode-item {
    width: 25%;
  }
}

@media (max-width: 576px) {
  .hu-episode-item {
    width: 33.333%;
  }
}

.hu-episode-link {
  display: block;
  padding: 8px 5px;
  text-align: center;
  background: #f9f6f0;
  border: 1px solid #e8d8c3;
  border-radius: 4px;
  color: #8b6e4e;
  transition: all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.hu-episode-link:hover {
  background: #f0e6d8;
  color: #d5a97c;
  border-color: #d5a97c;
}

.hu-episode-link.active {
  background: #8b6e4e;
  color: #fff;
  border-color: #8b6e4e;
}

.hu-episode-link.active:hover {
  background: #a18564;
}

/* 内容详情区域样式 */
.hu-content-container {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8d8c3;
  margin-bottom: 20px;
}

.hu-content-header {
  padding: 15px 20px;
  border-bottom: 1px solid #f0e6d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hu-content-title {
  color: #8b6e4e;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  position: relative;
  padding-left: 15px;
}

.hu-content-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #d5a97c;
  border-radius: 2px;
}

.hu-content-body {
  padding: 20px;
  color: #5a4a3a;
  line-height: 1.8;
  font-size: 15px;
}

.hu-content-body p {
  margin-bottom: 15px;
}

.hu-content-body a {
  color: #d5a97c;
  transition: all 0.3s ease;
}

.hu-content-body a:hover {
  color: #8b6e4e;
}

/* 相关视频区域样式 */
.hu-related-container {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8d8c3;
  margin-bottom: 20px;
}

.hu-related-header {
  padding: 15px 20px;
  border-bottom: 1px solid #f0e6d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hu-related-title {
  color: #8b6e4e;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  position: relative;
  padding-left: 15px;
}

.hu-related-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #d5a97c;
  border-radius: 2px;
}

.hu-related-list {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  margin: 0 -10px;
}

/* 视频播放页样式 */
.hu-player-container {
  background: #f9f6f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8d8c3;
  margin-bottom: 20px;
}

.hu-player-wrapper {
  position: relative;
  width: 100%;
  background: #000;
}

.hu-player-box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 宽高比 */
}

.hu-player-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hu-player-info {
  padding: 15px 20px;
  border-bottom: 1px solid #f0e6d8;
}

.hu-player-title {
  font-size: 18px;
  font-weight: normal;
  margin: 0 0 10px;
  color: #6b5338;
}

.hu-player-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #a08c78;
}

.hu-player-meta-item {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.hu-player-meta-label {
  margin-right: 5px;
}

.hu-player-meta-text {
  color: #8b6e4e;
}

.hu-player-controls {
  display: flex;
  padding: 10px 20px;
  background: #f0e6d8;
  border-top: 1px dashed #e8d8c3;
}

.hu-player-control-btn {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  font-size: 14px;
  color: #8b6e4e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hu-player-control-btn:hover {
  color: #d5a97c;
}

.hu-player-control-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

/* 分类标签样式 */
.hu-category-tabs {
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px 15px;
  margin: 0;
  list-style: none;
}

.hu-category-tab {
  margin-right: 10px;
  margin-bottom: 8px;
}

.hu-category-link {
  display: block;
  padding: 5px 12px;
  background: #f0e6d8;
  color: #8b6e4e;
  border-radius: 15px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hu-category-link:hover {
  background: #e5d9c5;
  color: #d5a97c;
}

.hu-more-link {
  padding: 5px 15px;
  background: #fbf8f3;
  color: #a08c78;
  border-radius: 15px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px dashed #e8d8c3;
}

.hu-more-link:hover {
  background: #f0e6d8;
  color: #d5a97c;
}

.hu-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hu-section-title h3 {
  color: #8b6e4e;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  position: relative;
  padding-left: 15px;
}

.hu-section-title h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #d5a97c;
  border-radius: 2px;
}

.hu-section-more {
  margin-left: auto;
}

/* 搜索页样式 */
.hu-search-container {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8d8c3;
  margin-bottom: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.hu-search-header {
  padding: 20px;
  border-bottom: 1px solid #f0e6d8;
  background: #f9f6f0;
}

.hu-search-title {
  color: #8b6e4e;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
}

.hu-search-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #d5a97c;
  border-radius: 2px;
}

.hu-search-title em {
  color: #d5a97c;
  font-style: normal;
  font-weight: bold;
  margin: 0 5px;
}

.hu-search-results {
  padding: 20px;
}

.hu-search-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  list-style: none;
  padding: 0;
}

.hu-search-item {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .hu-search-item {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .hu-search-item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .hu-search-item {
    width: 100%;
  }
}

.hu-search-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.hu-search-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hu-search-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background-color: #f0e6d8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hu-search-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.hu-search-play:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.hu-search-card:hover .hu-search-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hu-search-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  background: rgba(139, 110, 78, 0.8);
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hu-search-info {
  padding: 10px;
  background: #f9f6f0;
  border-top: 1px solid #f0e6d8;
}

.hu-search-name {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: normal;
  position: relative;
  background: linear-gradient(to right, #6b5338, #8b6e4e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 1px rgba(139, 110, 78, 0.1);
}

.hu-search-card:hover .hu-search-name {
  background: linear-gradient(to right, #b8855b, #d5a97c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hu-search-meta {
  margin-top: 5px;
  font-size: 12px;
  color: #a08c78;
  display: flex;
  justify-content: space-between;
}

.hu-search-type, .hu-search-date {
  color: #a08c78;
  font-size: 12px;
  transition: all 0.3s ease;
}

.hu-search-card:hover .hu-search-type {
  color: #8b6e4e;
}

.hu-search-empty {
  padding: 40px 20px;
  text-align: center;
  color: #a08c78;
}

.hu-search-empty-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.hu-search-empty-text {
  font-size: 16px;
  margin: 0;
}

.hu-search-empty-desc {
  margin-top: 10px;
  font-size: 14px;
  color: #8b6e4e;
}

/* 筛选区域样式 */
.hu-filter-container {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8d8c3;
  margin-bottom: 20px;
}

.hu-filter-row {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f0e6d8;
}

.hu-filter-row:last-child {
  border-bottom: none;
}

.hu-filter-label {
  color: #8b6e4e;
  font-size: 14px;
  margin-right: 15px;
  min-width: 40px;
}

.hu-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hu-filter-option {
  display: inline-block;
  padding: 6px 12px;
  background: #f9f6f0;
  color: #8b6e4e;
  border-radius: 15px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e8d8c3;
}

.hu-filter-option:hover {
  background: #f0e6d8;
  color: #d5a97c;
  border-color: #d5a97c;
}

.hu-filter-option.hu-active {
  background: #8b6e4e;
  color: #fff;
  border-color: #8b6e4e;
}

.hu-filter-option.hu-active:hover {
  background: #a18564;
  border-color: #a18564;
}

.hu-filter-active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.hu-active-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #f0e6d8;
  color: #8b6e4e;
  border-radius: 12px;
  font-size: 12px;
}

.hu-tag-icon {
  margin-right: 5px;
  color: #d5a97c;
  font-style: normal;
}

@media (max-width: 768px) {
  .hu-filter-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hu-filter-label {
    margin-bottom: 10px;
  }
  
  .hu-filter-options {
    width: 100%;
  }
  
  .hu-filter-option {
    padding: 5px 10px;
    font-size: 12px;
  }
}

/* 横幅广告（分类导航下方，独立展示） */
.hu-banner-ads {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 0;
}

.hu-banner-ad-wrap {
  width: 100%;
}

.hu-banner-ad {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(54px, 9vw, 86px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(232, 216, 195, 1);
  background: rgba(240, 230, 216, 0.9);
  box-shadow: 0 10px 24px rgba(90, 74, 58, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hu-banner-ad:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(90, 74, 58, 0.08);
  border-color: rgba(193, 169, 124, 0.65);
}

.hu-banner-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  display: block;
}

.hu-banner-ad-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #8b6e4e;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: clamp(12px, 1.9vw, 15px);
  text-shadow: 0.8px 0.8px 2px rgba(90, 74, 58, 0.15);
}

@media (max-width: 768px) {
  .hu-banner-ads {
    margin-top: 10px;
    gap: 10px;
  }

  .hu-banner-ad {
    border-radius: 10px;
  }
}

