* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  background: #f7f8fa;
  color: #18191c;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.creator-top {
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #edf0f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.creator-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 24px;
  font-weight: 800;
  color: #00a1d6;
}

.creator-logo-mark {
  font-size: 30px;
  font-weight: 900;
}

.creator-home-link {
  margin-left: 18px;
  color: #61666d;
  font-size: 14px;
  font-weight: 400;
}

.creator-top-right {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #61666d;
  font-size: 14px;
}

.creator-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.creator-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f2f3;
}

.creator-layout {
  display: flex;
  min-height: calc(100vh - 70px);
}

.creator-side {
  width: 232px;
  background: #fff;
  border-right: 1px solid #edf0f4;
  padding: 28px 36px;
  flex-shrink: 0;
}

.upload-btn {
  width: 160px;
  height: 46px;
  border: none;
  border-radius: 3px;
  background: #00a1d6;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 28px;
}

.side-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-item {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #18191c;
  font-size: 15px;
  cursor: pointer;
  border-radius: 6px;
  padding: 0 8px;
  border: none;
  background: transparent;
  text-align: left;
}

.side-item:hover,
.side-item.active {
  color: #00a1d6;
  background: #eaf8ff;
}

.side-icon {
  width: 22px;
  text-align: center;
  color: #6b7280;
}

.side-item:hover .side-icon,
.side-item.active .side-icon {
  color: #00a1d6;
}

.side-arrow {
  margin-left: auto;
  color: #a1a8b3;
}

.side-line {
  height: 1px;
  background: #edf0f4;
  margin: 18px 0;
}

.side-sub {
  padding-left: 42px;
  display: none;
  flex-direction: column;
  gap: 12px;
  color: #61666d;
  font-size: 14px;
  margin: 4px 0 14px;
}

.side-sub.show {
  display: flex;
}

.side-sub button {
  border: none;
  background: transparent;
  color: #61666d;
  text-align: left;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.side-sub button.active,
.side-sub button:hover {
  color: #00a1d6;
}

.creator-main {
  flex: 1;
  padding: 20px 46px 50px;
  min-width: 0;
}

.page-view {
  display: none;
}

.page-view.active {
  display: block;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  max-width: 1400px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
}

.data-card {
  padding: 30px 28px;
}

.data-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.data-tabs {
  display: flex;
  align-items: center;
  gap: 30px;
}

.data-tab {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  color: #18191c;
  padding: 0;
}

.data-tab.active {
  color: #00a1d6;
  font-weight: 700;
}

.update-tip {
  color: #9499a0;
  font-size: 13px;
}

.refresh-btn {
  height: 36px;
  border: 1px solid #ccd0d7;
  background: #fff;
  border-radius: 6px;
  color: #18191c;
  padding: 0 16px;
  cursor: pointer;
  font-size: 14px;
}

.refresh-btn:hover {
  border-color: #00a1d6;
  color: #00a1d6;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.stat-grid.small {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-box {
  height: 144px;
  background: #f9fcff;
  border-radius: 8px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-name {
  color: #818891;
  font-size: 15px;
}

.stat-value {
  font-size: 30px;
  font-weight: 800;
  color: #00a1d6;
}

.fan-card {
  padding: 24px;
  min-height: 438px;
}

.fan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 700;
}

.fan-row {
  margin-bottom: 34px;
}

.fan-label {
  color: #61666d;
  font-size: 14px;
  margin-bottom: 10px;
}

.fan-value {
  font-size: 28px;
  font-weight: 800;
  color: #18191c;
}

.recent-card {
  margin-top: 18px;
  padding: 24px 28px;
  max-width: 1400px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
}

.mini-btn {
  border: none;
  background: #f1f2f3;
  color: #61666d;
  height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  cursor: pointer;
}

.content-card {
  background: #fff;
  border-radius: 10px;
  max-width: 1400px;
  min-height: 640px;
  padding: 0 0 28px;
}

.content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px 0;
  border-bottom: 1px solid #edf0f4;
}

.content-tabs {
  display: flex;
  align-items: center;
  gap: 46px;
}

.content-tab {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0 0 18px;
  color: #18191c;
  font-size: 18px;
  position: relative;
}

.content-tab.active {
  color: #00a1d6;
  font-weight: 700;
}

.content-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #00a1d6;
  border-radius: 999px;
}

.content-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.content-search input {
  width: 260px;
  height: 38px;
  border: 1px solid #dbe3ef;
  border-radius: 4px;
  padding: 0 12px;
  outline: none;
}

.content-search button {
  height: 38px;
  border: none;
  background: #fff;
  color: #00a1d6;
  cursor: pointer;
  font-size: 18px;
}

.content-filter {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 36px 0;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: #61666d;
  font-size: 15px;
}

.status-tab {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #61666d;
  font-size: 15px;
  padding: 0;
}

.status-tab.active {
  color: #00a1d6;
}

.sort-dropdown {
  position: relative;
  width: 170px;
  flex-shrink: 0;
}

.sort-trigger {
  width: 100%;
  height: 38px;
  border: 1px solid #dbe3ef;
  border-radius: 4px;
  background: #fff;
  color: #18191c;
  padding: 0 12px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
}

.sort-trigger:hover,
.sort-dropdown.open .sort-trigger {
  border-color: #c9d2df;
}

.sort-arrow {
  color: #9499a0;
  font-size: 16px;
  line-height: 1;
  transition: transform .16s ease;
}

.sort-dropdown.open .sort-arrow {
  transform: rotate(180deg);
}

.sort-menu {
  position: absolute;
  top: 44px;
  left: 0;
  width: 170px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
  padding: 10px 0;
  display: none;
  z-index: 20;
}

.sort-dropdown.open .sort-menu {
  display: block;
}

.sort-option {
  width: 100%;
  height: 42px;
  border: none;
  background: transparent;
  color: #18191c;
  padding: 0 14px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  text-align: left;
}

.sort-option:hover {
  background: #f6fbff;
  color: #00a1d6;
}

.sort-option.active {
  color: #00a1d6;
}

.sort-check {
  display: none;
  color: #00a1d6;
  font-size: 15px;
}

.sort-option.active .sort-check {
  display: inline;
}

.content-list {
  padding: 18px 36px 0;
}

.work-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 170px;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #edf0f4;
}

.work-cover {
  width: 160px;
  height: 90px;
  border-radius: 6px;
  object-fit: cover;
  background: #f1f2f3;
}

.work-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #18191c;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.work-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #9499a0;
  font-size: 13px;
  margin-bottom: 8px;
}

.work-reason {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
}

.audit-approved {
  background: #ecfdf5;
  color: #16a34a;
}

.audit-pending {
  background: #fff7ed;
  color: #f97316;
}

.audit-rejected {
  background: #fef2f2;
  color: #ef4444;
}

.audit-other {
  background: #f1f2f3;
  color: #61666d;
}

.work-actions {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.danger-btn {
  height: 32px;
  border: none;
  border-radius: 6px;
  padding: 0 12px;
  cursor: pointer;
  background: #fee2e2;
  color: #ef4444;
}

.view-btn {
  height: 32px;
  border: none;
  border-radius: 6px;
  padding: 0 12px;
  cursor: pointer;
  background: #f1f2f3;
  color: #61666d;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}

th,
td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid #edf0f4;
  font-size: 13px;
  color: #18191c;
  vertical-align: middle;
}

th {
  color: #9499a0;
  font-weight: 500;
  background: #fafafa;
}

.type-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f1fbff;
  color: #00a1d6;
  font-size: 12px;
}

.empty-box {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.empty-ill {
  width: 220px;
  height: 160px;
  margin-bottom: 18px;
  background: #f1f8ff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a1d6;
  font-size: 46px;
  font-weight: 900;
  opacity: .9;
}

.empty-text {
  color: #18191c;
  font-size: 15px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px 36px 0;
  color: #61666d;
  font-size: 14px;
}

.pager button {
  height: 32px;
  border: none;
  border-radius: 6px;
  background: #f1f2f3;
  color: #61666d;
  padding: 0 12px;
  cursor: pointer;
}

.pager button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.loading-cover {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .92);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #61666d;
  font-size: 15px;
}

.deny-card {
  max-width: 520px;
  margin: 110px auto;
  background: #fff;
  border-radius: 12px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.deny-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.deny-desc {
  color: #61666d;
  line-height: 1.8;
  margin-bottom: 24px;
}

.deny-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.deny-btn {
  height: 38px;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  background: #00a1d6;
  color: #fff;
}

.deny-btn.gray {
  background: #f1f2f3;
  color: #61666d;
}

.toast {
  position: fixed;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  display: none;
}

@media (max-width: 1100px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .fan-card {
    min-height: auto;
  }

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

  .work-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .work-cover {
    width: 120px;
    height: 68px;
  }

  .work-actions {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .creator-layout {
    display: block;
  }

  .creator-side {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #edf0f4;
    padding: 16px;
  }

  .upload-btn {
    width: 100%;
  }

  .creator-main {
    padding: 16px;
  }

  .creator-top {
    padding: 0 16px;
  }

  .creator-logo {
    font-size: 18px;
  }

  .creator-top-right {
    display: none;
  }

  .content-head,
  .content-filter,
  .content-list,
  .pager {
    padding-left: 16px;
    padding-right: 16px;
  }

  .content-head,
  .content-filter {
    display: block;
  }

  .content-search {
    margin-top: 16px;
  }

  .content-search input {
    width: 100%;
  }
}
/* 数据中心 */
.data-center-page {
  max-width: 1400px;
}

.dc-page-title {
  display: inline-flex;
  align-items: center;
  height: 48px;
  color: #00a1d6;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  margin: 10px 0 28px;
}

.dc-page-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 32px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #00a1d6;
}

.dc-panel {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
}

.dc-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.dc-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #18191c;
}

.dc-info-dot {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c9ccd1;
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

.dc-range-box {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #61666d;
  font-size: 14px;
}

.dc-range-dropdown {
  position: relative;
  width: 112px;
  flex-shrink: 0;
}

.dc-range-trigger {
  width: 112px;
  height: 34px;
  border: 1px solid #dbe3ef;
  border-radius: 6px;
  background: #fff;
  color: #18191c;
  cursor: pointer;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}

.dc-range-arrow {
  color: #9499a0;
  font-size: 14px;
  transition: transform .16s ease;
}

.dc-range-dropdown.open .dc-range-arrow {
  transform: rotate(180deg);
}

.dc-range-menu {
  position: absolute;
  top: 38px;
  right: 0;
  width: 122px;
  padding: 8px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
  display: none;
  z-index: 30;
}

.dc-range-dropdown.open .dc-range-menu {
  display: block;
}

.dc-range-option {
  width: 100%;
  height: 42px;
  border: none;
  background: transparent;
  color: #18191c;
  cursor: pointer;
  text-align: left;
  padding: 0 22px;
  font-size: 15px;
}

.dc-range-option:hover,
.dc-range-option.active {
  color: #00a1d6;
  background: #f6fbff;
  font-weight: 700;
}

.dc-metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.dc-metric-card {
  min-height: 92px;
  border-radius: 12px;
  background: #fbfbfc;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}




.dc-metric-name {
  color: #61666d;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}


.dc-metric-value {
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  position: relative;
  z-index: 1;
}


.dc-chart-card {
  border: 1px solid #edf0f4;
  border-radius: 12px;
  padding: 26px 28px 18px;
  min-height: 280px;
}

.dc-chart-head {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 18px;
}

.dc-chart-title {
  font-size: 18px;
  color: #18191c;
  font-weight: 800;
}

.dc-chart-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #18191c;
  font-size: 14px;
}

.dc-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dc-legend-line {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  display: inline-block;
}

.dc-legend-line.total {
  background: #fb5a91;
}

.dc-legend-line.fan {
  background: #00a1d6;
}

.dc-chart-wrap {
  width: 100%;
  min-height: 260px;
}

.dc-chart-loading {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9499a0;
  font-size: 14px;
}

.dc-chart-svg {
  width: 100%;
  height: 260px;
  display: block;
}

.dc-grid-line {
  stroke: #edf0f4;
  stroke-width: 1;
}

.dc-axis-line {
  stroke: #dbe3ef;
  stroke-width: 1;
}

.dc-axis-text {
  fill: #9499a0;
  font-size: 12px;
}

.dc-line-total {
  stroke: #fb5a91;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dc-line-fan {
  stroke: #00a1d6;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dc-dot-total {
  fill: #fb5a91;
}

.dc-dot-fan {
  fill: #00a1d6;
}

@media (max-width: 1200px) {
  .dc-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .dc-panel {
    padding: 18px 16px;
  }

  .dc-panel-head,
  .dc-chart-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .dc-range-box {
    width: 100%;
    justify-content: space-between;
  }
}

/* 数据中心：核心数据说明气泡 */
.dc-info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 50;
}

.dc-info-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c9ccd1;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.dc-info-pop {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  width: 650px;
  min-height: 110px;
  padding: 16px 22px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .12);
  color: #6b7280;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  white-space: normal;
  display: none;
  z-index: 999;
}

.dc-info-wrap:hover .dc-info-pop {
  display: block;
}

.dc-metric-card.active {
  background: linear-gradient(135deg, #ff5f9e, #ff4f93);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(255, 79, 147, .22);
}

.dc-metric-card.active::after {
  content: "▶";
  position: absolute;
  right: 20px;
  top: 10px;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  border: 10px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .28);
  font-size: 26px;
  transform: rotate(-12deg);
}

.dc-metric-card.active .dc-metric-name {
  color: #fff;
}

.dc-metric-card.active .dc-metric-value {
  color: #fff;
}

.dc-metric-card.active {
  background: linear-gradient(135deg, #ff5f9e, #ff4f93);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(255, 79, 147, .22);
}

/* 粉丝管理 */
.fans-page {
  max-width: 1400px;
}

.fans-panel {
  background: #fff;
  min-height: 560px;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
}

.fans-head {
  height: 74px;
  border-bottom: 1px solid #edf0f4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 36px;
}

.fans-title {
  height: 56px;
  display: inline-flex;
  align-items: center;
  color: #00a1d6;
  font-size: 20px;
  font-weight: 800;
  position: relative;
}

.fans-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 76px;
  height: 3px;
  background: #00a1d6;
  border-radius: 999px;
}

.fans-body {
  padding: 26px 36px 40px;
}

.fans-count-title {
  font-size: 20px;
  font-weight: 800;
  color: #18191c;
  margin-bottom: 18px;
}

.fans-filter-dropdown {
  position: relative;
  width: 116px;
  margin-bottom: 18px;
}

.fans-filter-trigger {
  width: 116px;
  height: 36px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #9499a0;
  border-radius: 5px;
  padding: 0 10px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.fans-filter-dropdown.open .fans-filter-trigger {
  border-color: #00a1d6;
}

.fans-filter-arrow {
  color: #9aa3b2;
  transition: transform .16s ease;
}

.fans-filter-dropdown.open .fans-filter-arrow {
  transform: rotate(180deg);
}

.fans-filter-menu {
  position: absolute;
  top: 40px;
  right: 0;
  width: 116px;
  background: #fff;
  border: 1px solid #dbe3ef;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
  border-radius: 4px;
  padding: 10px 0;
  display: none;
  z-index: 60;
}

.fans-filter-dropdown.open .fans-filter-menu {
  display: block;
}

.fans-filter-option {
  width: 100%;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #61666d;
  font-size: 14px;
}

.fans-filter-option:hover,
.fans-filter-option.active {
  color: #00a1d6;
}

.fans-list {
  min-height: 210px;
}

.fan-item {
  min-height: 88px;
  border-bottom: 1px solid #edf0f4;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.fan-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #eaf8ff;
}

.fan-info {
  min-width: 0;
}

.fan-name {
  color: #ff6699;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  max-width: 360px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fan-name:hover {
  color: #00a1d6;
}

.fan-desc {
  margin-top: 6px;
  color: #9499a0;
  font-size: 13px;
}

.fan-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.fan-follow-btn {
  width: 92px;
  height: 36px;
  border: none;
  border-radius: 4px;
  background: #e8edf3;
  color: #61666d;
  cursor: default;
  font-size: 14px;
}

.fan-follow-btn.not-mutual {
  background: #f1f2f3;
  color: #9499a0;
}

.fan-more-wrap {
  position: relative;
}

.fan-more-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #8b95a1;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.fan-more-btn:hover {
  border-color: #00a1d6;
  color: #00a1d6;
}

.fan-more-menu {
  position: absolute;
  top: 44px;
  right: 0;
  width: 120px;
  background: #fff;
  border: 1px solid #dbe3ef;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
  display: none;
  z-index: 80;
}

.fan-more-menu.open {
  display: block;
}

.fan-more-menu button {
  width: 100%;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #18191c;
  font-size: 14px;
}

.fan-more-menu button:hover {
  color: #00a1d6;
  background: #f6fbff;
}

.fan-more-menu button.danger {
  color: #ef4444;
}

.fans-empty,
.fans-loading {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9499a0;
  font-size: 14px;
}

.fans-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 18px;
  color: #61666d;
  font-size: 14px;
}

.fans-pager button {
  height: 32px;
  border: none;
  border-radius: 6px;
  background: #f1f2f3;
  color: #61666d;
  padding: 0 12px;
  cursor: pointer;
}

.fans-pager button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* 收益管理 */
.revenue-page {
  max-width: 1400px;
}

.revenue-title {
  font-size: 22px;
  font-weight: 800;
  color: #18191c;
  margin: 18px 0 22px;
}

.revenue-panel {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
}

.revenue-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.revenue-panel-title {
  font-size: 18px;
  font-weight: 800;
  color: #18191c;
}

.revenue-range-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.revenue-range-tab {
  height: 32px;
  border: none;
  background: transparent;
  color: #18191c;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.revenue-range-tab:hover,
.revenue-range-tab.active {
  background: #dff6ff;
  color: #00a1d6;
  font-weight: 700;
}

.revenue-overview-box {
  min-height: 118px;
  background: #f8fbff;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 22px 28px;
}

.revenue-stat-name {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 10px;
}

.revenue-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  border-radius: 50%;
  border: 1px solid #b9c0ca;
  color: #9aa3ad;
  font-size: 12px;
}

.revenue-stat-value {
  color: #000;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.revenue-stat-value.blue {
  color: #00a1d6;
}

.revenue-withdraw-btn {
  width: 106px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: #00a1d6;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

.revenue-withdraw-btn:hover {
  background: #0093c4;
}

.revenue-sub-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 16px;
  color: #6b7280;
  font-size: 14px;
}

.revenue-sub-info b {
  color: #18191c;
}

.revenue-link-btn {
  border: none;
  background: transparent;
  color: #00a1d6;
  cursor: pointer;
  font-size: 14px;
}

.revenue-record-panel {
  margin-top: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 28px 24px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
}

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

.revenue-record-title {
  font-size: 18px;
  font-weight: 800;
  color: #18191c;
}

.revenue-table-wrap {
  overflow-x: auto;
}

.revenue-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.revenue-table th,
.revenue-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #edf0f4;
  text-align: left;
  font-size: 14px;
  color: #18191c;
}

.revenue-table th {
  color: #9499a0;
  font-weight: 500;
  background: #fafafa;
}

.revenue-money-plus {
  color: #00a1d6;
  font-weight: 800;
}

.revenue-status {
  color: #00a1d6;
  font-weight: 700;
}

.revenue-status.pending {
  color: #f97316;
}

.revenue-status.rejected {
  color: #ef4444;
}

.revenue-empty {
  height: 120px;
  text-align: center !important;
  color: #9499a0 !important;
}

@media (max-width: 900px) {
  .revenue-overview-box {
    grid-template-columns: 1fr;
  }

  .revenue-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

/* 合集管理 */
.collection-create-main-btn {
  height: 38px;
  border: none;
  border-radius: 6px;
  padding: 0 14px;
  background: #00a1d6;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.collection-create-main-btn:hover {
  background: #0093c4;
}

.collection-desc {
  color: #9499a0;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
  max-width: 720px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.collection-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, .36);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.collection-modal {
  width: 820px;
  max-width: 96vw;
  max-height: 90vh;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, .22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.collection-modal-head {
  height: 62px;
  padding: 0 24px;
  border-bottom: 1px solid #edf0f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collection-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #18191c;
}

.collection-modal-close {
  width: 34px;
  height: 34px;
  border: none;
  background: #f1f2f3;
  color: #61666d;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.collection-form-row {
  padding: 20px 24px 12px;
}

.collection-form-row label {
  display: block;
  color: #61666d;
  font-size: 14px;
  margin-bottom: 8px;
}

.collection-form-row input {
  width: 100%;
  height: 40px;
  border: 1px solid #dbe3ef;
  border-radius: 6px;
  outline: none;
  padding: 0 12px;
  font-size: 14px;
}

.collection-form-row input:focus {
  border-color: #00a1d6;
}

.collection-video-head {
  padding: 8px 24px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #18191c;
  font-size: 15px;
  font-weight: 700;
}

.collection-selected-tip {
  color: #9499a0;
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
}

.collection-selected-tip b {
  color: #00a1d6;
}

.collection-video-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.collection-video-search input {
  width: 220px;
  height: 34px;
  border: 1px solid #dbe3ef;
  border-radius: 5px;
  padding: 0 10px;
  outline: none;
}

.collection-video-search button {
  height: 34px;
  border: none;
  border-radius: 5px;
  background: #f1f2f3;
  color: #61666d;
  padding: 0 12px;
  cursor: pointer;
}

.collection-video-search button:hover {
  color: #00a1d6;
}

.collection-video-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px 18px;
  min-height: 280px;
  max-height: 460px;
}

.collection-video-loading,
.collection-video-empty {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9499a0;
  font-size: 14px;
}

.collection-video-item {
  min-height: 86px;
  border-bottom: 1px solid #edf0f4;
  display: grid;
  grid-template-columns: 26px 120px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.collection-video-check {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.collection-video-cover {
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  background: #f1f2f3;
}

.collection-video-info {
  min-width: 0;
}

.collection-video-title {
  font-size: 14px;
  font-weight: 700;
  color: #18191c;
  line-height: 1.5;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.collection-video-meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #9499a0;
  font-size: 12px;
}

.collection-modal-foot {
  height: 64px;
  border-top: 1px solid #edf0f4;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.collection-cancel-btn,
.collection-save-btn {
  height: 36px;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  font-size: 14px;
}

.collection-cancel-btn {
  background: #f1f2f3;
  color: #61666d;
}

.collection-save-btn {
  background: #00a1d6;
  color: #fff;
}

.collection-save-btn:hover {
  background: #0093c4;
}

/* 充电设置 */
.charge-setting-panel {
  overflow: visible;
}

.charge-setting-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: stretch;
}

.charge-setting-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.charge-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.charge-form-row label {
  color: #61666d;
  font-size: 14px;
}

.charge-form-row input {
  height: 38px;
  border: 1px solid #dbe3ef;
  border-radius: 6px;
  padding: 0 12px;
  outline: none;
  font-size: 14px;
}

.charge-form-row input:focus {
  border-color: #00a1d6;
}

.charge-input-unit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.charge-input-unit input {
  flex: 1;
}

.charge-input-unit span {
  color: #61666d;
  font-size: 14px;
}

.charge-form-tip {
  color: #9499a0;
  font-size: 12px;
}

.charge-switch-row {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #61666d;
  font-size: 14px;
  cursor: pointer;
}

.charge-switch-row input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.charge-save-btn {
  width: 140px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: #00a1d6;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.charge-save-btn:hover {
  background: #0093c4;
}

.charge-preview-card {
  background: #f8fbff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.charge-preview-title {
  color: #61666d;
  font-size: 14px;
  margin-bottom: 16px;
}

.charge-badge-preview {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  height: 30px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, #ff7ab6, #ff9fcb);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 102, 153, .24);
}

.charge-badge-preview span {
  padding: 0 10px;
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.charge-badge-preview b {
  height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  background: rgba(255, 255, 255, .22);
  font-size: 12px;
}

.charge-preview-tip {
  margin-top: 14px;
  color: #9499a0;
  font-size: 13px;
  line-height: 1.7;
}

.charge-fan-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.charge-fan-user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f2f3;
}

.charge-badge-mini {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, #ff7ab6, #ff9fcb);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.charge-badge-mini {
  padding-left: 8px;
}

.charge-badge-mini b {
  height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  margin-left: 6px;
  background: rgba(255, 255, 255, .22);
  font-size: 11px;
}

@media (max-width: 900px) {
  .charge-setting-grid {
    grid-template-columns: 1fr;
  }

  .charge-setting-form {
    grid-template-columns: 1fr;
  }
}

.revenue-title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 18px 0 22px;
}

.revenue-title-tab {
  height: 42px;
  border: none;
  background: transparent;
  color: #18191c;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.revenue-title-tab.active {
  color: #18191c;
}

.revenue-title-tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 42px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #00a1d6;
}

.revenue-title-tab:not(.active) {
  color: #9499a0;
  font-size: 18px;
  font-weight: 700;
}

.revenue-title-tab:not(.active):hover {
  color: #00a1d6;
}

.revenue-sub-page {
  display: none;
}

.revenue-sub-page.active {
  display: block;
}

.revenue-record-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.revenue-record-range {
  height: 30px;
  border: none;
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: #61666d;
  cursor: pointer;
  font-size: 13px;
}

.revenue-record-range:hover,
.revenue-record-range.active {
  background: #dff6ff;
  color: #00a1d6;
  font-weight: 700;
}

.revenue-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 14px;
  color: #61666d;
  font-size: 13px;
}

.revenue-pager button {
  height: 30px;
  border: none;
  border-radius: 6px;
  background: #f1f2f3;
  color: #61666d;
  padding: 0 12px;
  cursor: pointer;
}

.revenue-pager button:hover:not(:disabled) {
  color: #00a1d6;
  background: #eaf8ff;
}

.revenue-pager button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.charge-sort-btn {
  border: none;
  background: transparent;
  color: #9499a0;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.charge-sort-btn:hover,
.charge-sort-btn.active {
  color: #00a1d6;
  font-weight: 700;
}

.charge-sort-icon {
  font-size: 12px;
  color: inherit;
}

/* =========================
   创作者中心移动端适配
   只影响手机端，不改 PC
========================= */

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #f7f8fa;
  }

  body {
    font-size: 14px;
  }

  #appView {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* 顶部 */
  .creator-top {
    height: 56px;
    padding: 0 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
  }

  .creator-logo {
    min-width: 0;
    gap: 8px;
    font-size: 16px;
    white-space: nowrap;
  }

  .creator-logo-mark {
    font-size: 22px;
  }

  .creator-home-link {
    margin-left: 6px;
    font-size: 12px;
    color: #00a1d6;
  }

  .creator-top-right {
    display: flex;
    gap: 8px;
  }

  #creatorSinceText {
    display: none;
  }

  .creator-user {
    gap: 6px;
  }

  .creator-user img {
    width: 30px;
    height: 30px;
  }

  #topNickname {
    display: none;
  }

  /* 整体布局 */
  .creator-layout {
    display: block;
    width: 100%;
    min-height: auto;
  }

  /* 侧边栏改成顶部横向菜单 */
  .creator-side {
    position: sticky;
    top: 56px;
    z-index: 90;
    width: 100%;
    padding: 10px 10px 8px;
    border-right: none;
    border-bottom: 1px solid #edf0f4;
    background: #ffffff;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .creator-side::-webkit-scrollbar {
    display: none;
  }

  .upload-btn {
    width: auto;
    min-width: 78px;
    height: 34px;
    margin: 0 8px 0 0;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
    vertical-align: top;
  }

  .side-menu {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    vertical-align: top;
    white-space: nowrap;
  }

  .side-item {
    width: auto;
    height: 34px;
    flex: 0 0 auto;
    gap: 5px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    background: #f6f7f8;
  }

  .side-item.active {
    background: #eaf8ff;
  }

  .side-icon {
    width: auto;
  }

  .side-arrow {
    display: none;
  }

  .side-line {
    display: none;
  }

  .side-sub {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 54px;
    z-index: 120;
    padding: 10px;
    margin: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
  }

  .side-sub button {
    flex: 0 0 auto;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f6f7f8;
    font-size: 13px;
  }

  /* 主内容 */
  .creator-main {
    width: 100%;
    padding: 12px 10px 30px;
    overflow-x: hidden;
  }

  .page-view {
    width: 100%;
  }

  .dashboard-grid {
    display: block;
    max-width: none;
  }

  .card {
    border-radius: 10px;
  }

  .data-card {
    padding: 16px 12px;
  }

  .data-head {
    display: block;
    margin-bottom: 16px;
  }

  .data-tabs {
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .data-tab {
    font-size: 15px;
  }

  .update-tip {
    display: block;
    margin-top: 8px;
    font-size: 12px;
  }

  .refresh-btn {
    width: 100%;
    margin-top: 12px;
  }

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

  .stat-box {
    height: 96px;
    padding: 14px 12px;
  }

  .stat-name {
    font-size: 13px;
  }

  .stat-value {
    font-size: 22px;
  }

  .fan-card {
    min-height: auto;
    margin-top: 12px;
    padding: 16px 12px;
  }

  .fan-head {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .fan-row {
    margin-bottom: 16px;
  }

  .fan-value {
    font-size: 22px;
  }

  .recent-card {
    margin-top: 12px;
    padding: 16px 12px;
  }

  .section-head {
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 16px;
  }

  .table-wrap,
  .revenue-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 760px;
  }

  th,
  td {
    padding: 10px 8px;
    font-size: 12px;
  }

  /* 内容管理 */
  .content-card {
    min-height: auto;
    border-radius: 10px;
  }

  .content-head {
    display: block;
    padding: 14px 12px 0;
  }

  .content-tabs {
    gap: 22px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .content-tabs::-webkit-scrollbar {
    display: none;
  }

  .content-tab {
    flex: 0 0 auto;
    padding-bottom: 12px;
    font-size: 15px;
  }

  .content-search {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 12px;
    gap: 8px;
  }

  .content-search input {
    flex: 1;
    width: auto;
  }

  .collection-create-main-btn {
    flex: 0 0 auto;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .content-filter {
    display: block;
    padding: 12px;
  }

  .status-row {
    gap: 10px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .status-row::-webkit-scrollbar {
    display: none;
  }

  .status-tab {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .sort-dropdown {
    width: 100%;
    margin-top: 12px;
  }

  .sort-trigger {
    width: 100%;
  }

  .sort-menu {
    width: 100%;
  }

  .content-list {
    padding: 0 12px;
  }

  .work-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 0;
  }

  .work-cover {
    width: 110px;
    height: 62px;
    border-radius: 6px;
  }

  .work-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .work-meta {
    gap: 8px;
    font-size: 12px;
  }

  .work-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .danger-btn,
  .view-btn {
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .pager,
  .fans-pager,
  .revenue-pager {
    justify-content: center;
    padding: 14px 12px 0;
    font-size: 12px;
  }

  .pager button,
  .fans-pager button,
  .revenue-pager button {
    height: 30px;
    padding: 0 10px;
  }

  /* 数据中心 */
  .data-center-page {
    max-width: none;
  }

  .dc-page-title {
    height: 38px;
    margin: 4px 0 12px;
    font-size: 18px;
  }

  .dc-panel {
    padding: 16px 12px;
    border-radius: 10px;
  }

  .dc-panel-head {
    display: block;
    margin-bottom: 16px;
  }

  .dc-panel-title {
    font-size: 18px;
  }

  .dc-range-box {
    width: 100%;
    justify-content: space-between;
    margin-top: 12px;
  }

  .dc-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }

  .dc-metric-card {
    min-height: 78px;
    padding: 14px 12px;
    border-radius: 10px;
  }

  .dc-metric-name {
    font-size: 13px;
  }

  .dc-metric-value {
    font-size: 20px;
  }

  .dc-metric-card.active::after {
    right: 10px;
    top: 8px;
    width: 54px;
    height: 54px;
    border-width: 8px;
    font-size: 20px;
  }

  .dc-chart-card {
    padding: 14px 10px;
    min-height: 240px;
  }

  .dc-chart-head {
    display: block;
    margin-bottom: 12px;
  }

  .dc-chart-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .dc-chart-legend {
    gap: 14px;
    font-size: 12px;
  }

  .dc-chart-wrap {
    min-height: 220px;
    overflow-x: auto;
  }

  .dc-chart-svg {
    min-width: 520px;
  }

  .dc-info-pop {
    left: auto;
    right: -10px;
    transform: none;
    width: min(320px, calc(100vw - 24px));
    font-size: 13px;
  }

  /* 粉丝管理 */
  .fans-page {
    max-width: none;
  }

  .fans-panel {
    border-radius: 10px;
  }

  .fans-head {
    height: auto;
    padding: 14px 12px;
    align-items: center;
  }

  .fans-title {
    height: 36px;
    font-size: 17px;
  }

  .fans-body {
    padding: 14px 12px 18px;
  }

  .fans-count-title {
    font-size: 17px;
  }

  .fan-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 0;
  }

  .fan-avatar {
    width: 40px;
    height: 40px;
  }

  .fan-name {
    max-width: 190px;
    font-size: 14px;
  }

  .fan-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .fan-follow-btn {
    width: 86px;
    height: 32px;
    font-size: 13px;
  }

  /* 收益管理 */
  .revenue-page {
    max-width: none;
  }

  .revenue-title-row {
    gap: 18px;
    margin: 8px 0 14px;
  }

  .revenue-title-tab {
    height: 36px;
    font-size: 18px;
  }

  .revenue-title-tab:not(.active) {
    font-size: 15px;
  }

  .revenue-panel,
  .revenue-record-panel {
    padding: 16px 12px;
    border-radius: 10px;
  }

  .revenue-panel-head,
  .revenue-record-head {
    display: block;
  }

  .revenue-panel-title,
  .revenue-record-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .revenue-range-tabs,
  .revenue-record-tools {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .revenue-range-tabs::-webkit-scrollbar,
  .revenue-record-tools::-webkit-scrollbar {
    display: none;
  }

  .revenue-overview-box {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 14px;
  }

  .revenue-stat-name {
    font-size: 13px;
  }

  .revenue-stat-value {
    font-size: 22px;
  }

  .revenue-withdraw-btn {
    width: 100%;
  }

  .revenue-sub-info {
    gap: 10px;
    font-size: 13px;
  }

  .revenue-table {
    min-width: 760px;
  }

  /* 充电设置 */
  .charge-setting-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .charge-setting-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .charge-save-btn {
    width: 100%;
  }

  .charge-preview-card {
    padding: 16px;
  }

  /* 合集弹窗 */
  .collection-modal-mask {
    padding: 12px;
    align-items: flex-end;
  }

  .collection-modal {
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 14px 14px 0 0;
  }

  .collection-modal-head {
    height: 54px;
    padding: 0 16px;
  }

  .collection-form-row {
    padding: 16px 16px 10px;
  }

  .collection-video-head {
    display: block;
    padding: 8px 16px 12px;
  }

  .collection-video-search {
    margin-top: 10px;
  }

  .collection-video-search input {
    flex: 1;
    width: auto;
  }

  .collection-video-list {
    padding: 0 16px 14px;
    min-height: 240px;
    max-height: 50vh;
  }

  .collection-video-item {
    grid-template-columns: 22px 92px minmax(0, 1fr);
    gap: 10px;
  }

  .collection-video-cover {
    width: 92px;
    height: 52px;
  }

  .collection-video-title {
    font-size: 13px;
  }

  .collection-video-meta {
    gap: 8px;
    font-size: 11px;
  }

  .collection-modal-foot {
    height: 58px;
    padding: 0 16px;
  }

  .collection-cancel-btn,
  .collection-save-btn {
    flex: 1;
  }

  .toast {
    top: 66px;
    max-width: calc(100vw - 24px);
    font-size: 13px;
    white-space: nowrap;
  }

  .loading-cover {
    font-size: 14px;
  }

  .deny-card {
    max-width: calc(100vw - 24px);
    margin: 80px auto;
    padding: 32px 20px;
  }

  .deny-btns {
    flex-direction: column;
  }

  .deny-btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .creator-logo {
    font-size: 15px;
  }

  .creator-logo-mark {
    font-size: 20px;
  }

  .creator-home-link {
    font-size: 12px;
  }

  .stat-grid,
  .stat-grid.small,
  .dc-metric-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .work-cover {
    width: 96px;
    height: 54px;
  }
}