/* PC 端样式 - 主体宽度 1200px，所有尺寸为 px，不做自适应 */
:root {
  --bg-deep: #1a0a2e;
  --bg-card: #2d1b4e;
  --bg-card-hover: #3d2068;
  --text-primary: #ffffff;
  --text-secondary: #c4b5d4;
  --text-muted: #8b7a9e;
  --accent-pink: #ec4899;
  --accent-purple: #7c3aed;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-btn: 20px;
  --page-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.5;
  padding-bottom: 24px;
}

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

img {
  max-width: 100%;
  vertical-align: middle;
}

/* 主体容器 1200px 居中 */
.pc-container {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== 顶部导航 ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1A1A1E;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header .pc-container,
.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}
.header-inner .search-wrap {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 550px;
}

/* .logo 在左，其它靠右 */
.header-inner .logo,
.header-inner .header-logo {
  flex-shrink: 0;
}
.header-inner .logo + *,
.header-inner .header-logo + * {
  margin-left: auto;
}

.logo {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.search-wrap {
  flex: 1;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  gap: 0;
  height: 40px;
  min-width: 0;
  max-width: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.search-input {
  flex: 1;
  border: none;
  background: #383043;
  color: #fff;
  font-size: 14px;
  padding: 0 14px;
  outline: none;
  border-radius: 24px 0 0 24px;
  min-width: 0;
}

.search-input::placeholder {
  color: #CFCFD1;
}

.search-btn {
  flex-shrink: 0;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #5F3C88;
  border: none;
  border-radius: 0 24px 24px 0;
  cursor: pointer;
  white-space: nowrap;
}

.btn-tg {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #5F3C88;
  border-radius: 24px;
}

.btn-tg-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* 切换语言下拉框（与 .btn-tg 同一排、等高） */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
}

.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px 0 6px;
  background: #58338C;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.lang-dropdown-btn:hover {
  background: #6b3fa3;
}

.lang-dropdown-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c41e3a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

/* 紫荆花图标用简单白色图形代替，可用图片替换 */
.lang-dropdown-icon::before {
  content: '文';
  font-size: 12px;
}

.lang-dropdown-text {
  flex: 0 0 auto;
}

.lang-dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  flex-shrink: 0;
  margin-left: 2px;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #2d1b4e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-menu li {
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.lang-dropdown-menu li:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ========== 服公告模块 ========== */
.category-nav.notice-bar {
  width: 100%;
  padding: 0;
  margin: 0 0 10px 0;
  background: #393345;
  box-sizing: border-box;
}

.notice-bar .pc-container {
  padding: 0 24px;
}

.notice-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 38px;
  padding: 0 14px 0 0;
  box-sizing: border-box;
}

.notice-bar-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-left: 16px;
  border-radius: 50%;
  background: #2d1b4e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-self: center;
}

.notice-bar-text {
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.notice-bar-marquee {
  display: flex;
  white-space: nowrap;
  animation: notice-marquee 20s linear infinite;
}

.notice-bar-marquee:hover {
  animation-play-state: paused;
}

.notice-bar-line {
  flex-shrink: 0;
  padding-right: 3em;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

@keyframes notice-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== 轮播图 ========== */
.banner-section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 0 16px;
  box-sizing: border-box;
}

.banner-swiper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-slide {
  width: 100%;
  height: 320px;
  background-color: #2d1b4e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 32px;
  box-sizing: border-box;
}

.banner-pagination {
  bottom: 10px !important;
}

.banner-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.2s;
}

.banner-pagination .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 3px;
  background: var(--text-primary);
}

/* ========== 女神榜 / 打赏榜 ========== */
.rank-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 24px 16px;
  max-width: var(--page-width);
  margin: 0 auto;
}

.rank-card {
  height: 128px;
  border-radius: var(--radius-sm);
  background-size: 100% 100% !important;
  background-position: left center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}

.rank-card-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 8px;
  left: 110px;
}

/* ========== 头像横向滚动 ========== */
/* 含 .avatar-row-scroll 的模块宽度拉满屏幕 */
.avatar-row-module {
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  padding: 0 24px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

/* 同时为 .section 时不受 1200px 限制 */
.section.avatar-row-module {
  max-width: none;
}

.avatar-row-section {
  padding: 0 24px 20px;
  max-width: var(--page-width);
  margin: 0 auto;
}

.avatar-row-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0;
  width: 100%;
  box-sizing: border-box;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.avatar-row-scroll:active {
  cursor: grabbing;
}

/* 隐藏滚动条 */
.avatar-row-scroll::-webkit-scrollbar {
  display: none;
}

.avatar-row-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.avatar-row-module .avatar-row-scroll {
  padding: 4px 0;
}

.avatar-cell {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.avatar-cell-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #604F6D;
}

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

.avatar-cell-name {
  font-size: 12px;
  color: var(--text-primary);
}

/* ========== 特别工作室（1:1 还原） ========== */
.studio-row-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 28px 24px 0;
  width: 100%;
  box-sizing: border-box;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.studio-row-scroll::-webkit-scrollbar {
  display: none;
}

.studio-row-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.studio-item {
  flex-shrink: 0;
  width: 180px;
  height: 113px;
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: visible;
  background: #2E1C4B url(../images/bg3.png) no-repeat center/cover;
  background-size: 100% 100%;
  box-sizing: border-box;
  border: 1px solid rgba(149, 92, 204, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.studio-item-badge {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 54px;
  height: 45px;
  z-index: 3;
  object-fit: contain;
  pointer-events: none;
}

.studio-item-content-wrap {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 1;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.studio-item-content-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-item-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 6px;
}

/* ========== 通用区块 ========== */
.section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 0 24px;
  box-sizing: border-box;
}

/* 公司/模特列表块 - company 页用 */
.company-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.company-block-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.company-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #604F6D;
}

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

.company-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.company-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.company-likes {
  font-size: 12px;
  color: var(--text-muted);
}

.company-block-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.company-model-card {
  display: block;
  background: var(--bg-card-hover);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding-bottom: 8px;
}

.company-model-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.company-model-card .company-model-name,
.company-model-card .company-likes {
  display: block;
  font-size: 12px;
  color: var(--text-primary);
  padding: 4px 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company-model-card .company-likes {
  color: var(--text-muted);
  font-size: 11px;
}

.company {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px;
  background: url(../images/bg2.png) no-repeat right center;
  background-size: 90% 74px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 19px;
}

.company .company-pic {
  width: 58px;
  height: 58px;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  width: 100%;
  height: 48px;
  background: url(../images/lanmu-bg-1.png) no-repeat 0 0;
  background-size: 100% 100%;
  padding: 0 19px;
  border-radius: var(--radius-sm);
}

.section-header-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
}

.section-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  vertical-align: middle;
  flex: 1;
}

.section-more {
  font-size: 13px;
  color: var(--text-muted);
  width: 80px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ========== 推荐主播 / 模特卡片 - 5 列 ========== */
.host-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.host-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.host-distance {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2px;
}

.host-distance-hot,
.host-distance-live {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.host-distance-live {
  margin-top: 4px;
}

.host-card-img {
  width: 100%;
  padding-top: 125%;
  background: var(--bg-card-hover);
  background-size: cover;
  background-position: center;
  position: relative;
}

.host-card-info {
  width: 100%;
  min-height: 55px;
  background: url(../images/bg1.png) no-repeat 0 0;
  background-size: 100% 100%;
  padding: 6px 8px 8px;
}

.host-card-info .host-card-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.host-card-info .host-card-info-top .host-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 22px;
  line-height: 22px;
}

.host-card-info .host-card-info-top .host-likes {
  font-size: 10px;
  color: var(--text-muted);
  border-radius: 45px 0 0 45px;
  background: #45315B;
  padding: 0 8px;
  max-width: 120px;
  overflow: hidden;
  height: 22px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.host-card-info .host-card-info-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
}

.host-card-info .host-card-info-bottom .host-info-left {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px 0 4px;
  border-radius: 45px 0 0 45px;
  height: 22px;
  line-height: 22px;
  background: linear-gradient(270deg, rgba(183, 116, 221, 0) 0%, rgba(204, 110, 219, 0.441) 100%);
}

.host-card-info .host-card-info-bottom .host-info-left img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  vertical-align: middle;
  display: block;
}

.host-card-info .host-card-info-bottom .host-info-left .host-name {
  font-size: 12px;
  white-space: nowrap;
  line-height: 22px;
}

.host-card-info .host-card-info-bottom .host-info-right {
  width: 56px;
  height: 16px;
  margin-right: 2px;
  object-fit: contain;
}

/* ========== 主内容 + 侧边栏布局 (index) ========== */
.pc-main-wrap {
  display: flex;
  gap: 24px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px 24px;
  align-items: flex-start;
}

.pc-main-content {
  flex: 1;
  min-width: 0;
}

.pc-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.pc-sidebar .section-header {
  margin-bottom: 12px;
}

.pc-hot-video-list,
.pc-hot-tags {
  list-style: none;
}

.pc-hot-video-list a,
.pc-hot-tag-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pc-hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-hot-tag-btn {
  padding: 8px 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: none;
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  border-bottom: none;
}

/* ========== 新人福利 手风琴 ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.faq-question {
  padding: 14px 36px 14px 14px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-muted);
  transition: transform 0.25s;
}

.faq-item.active .faq-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 14px;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 14px 14px 14px;
}

/* ========== 热搜标签 ========== */
.guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-primary);
  background: #7C69974D;
  border-radius: var(--radius-sm);
  font-weight: 350;
}

.guide-numbei {
  background: #0B0B15;
  padding: 2px 6px;
  font-size: 12px;
  margin-left: 5px;
  border-radius: 4px;
}

/* ========== 页脚 ========== */
.footer {
  padding: 20px 24px;
  text-align: center;
  max-width: var(--page-width);
  margin: 0 auto;
}

.footer-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========== 详情页 ========== */
.detail-focus {
  padding: 0 24px 16px;
  max-width: var(--page-width);
  margin: 0 auto;
}

.detail-focus-main-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.detail-focus-main {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: var(--bg-card);
  background-size: cover;
  background-position: center;
}

.detail-focus-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.detail-focus-img.is-switching {
  opacity: 0;
}

.detail-focus-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: url(../images/btncenter.png) no-repeat center / contain;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.detail-focus-play::after {
  content: none;
}

.detail-focus-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  z-index: 2;
}

.detail-focus-arrow-prev {
  left: 16px;
  background: url(../images/btnleft.png) no-repeat center / contain;
  width: 45px;
  height: 45px;
}

.detail-focus-arrow-next {
  right: 16px;
  background: url(../images/btnright.png) no-repeat center / contain;
  width: 45px;
  height: 45px;
}

.detail-focus-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 0;
  min-height: 82px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.detail-focus-thumbs::-webkit-scrollbar {
  display: none;
}

.detail-focus-thumbs.is-dragging {
  cursor: grabbing;
}

.detail-focus-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  min-height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
}

.detail-focus-thumb.active {
  border-color: var(--accent-pink);
}

.detail-focus-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 详情页两栏布局 */
.detail-pc-wrap {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.detail-pc-left {
  width: 520px;
  flex-shrink: 0;
}

.detail-pc-left .detail-focus {
  padding: 0 0 16px 0;
}

.detail-pc-right {
  flex: 1;
  min-width: 0;
}

.detail-intro {
  padding: 19px;
  background: url(../images/bg3.png) no-repeat center center;
  background-size: 100% 100%;
  border-radius: var(--radius-sm);
}

.detail-intro-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.detail-intro-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.detail-intro-nation {
  font-size: 13px;
  color: var(--text-secondary);
}

.detail-intro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 16px;
}

.detail-intro-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-primary);
}

.detail-intro-stat img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.detail-intro-block {
  margin-bottom: 14px;
}

.detail-intro-subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.detail-intro-star::before {
  content: '✦';
  font-size: 14px;
  color: #fbbf24;
}

.detail-intro-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.detail-section {
  padding: 19px;
  margin-top: 12px;
  background: url(../images/bg4.png) no-repeat center center;
  background-size: 100% 100%;
  border-radius: var(--radius-sm);
}

.detail-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.detail-section-title img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.detail-service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-service-btn {
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(270deg, #290F3F 0%, #432465 100%);
  border: 1px solid rgba(153, 135, 159, 0.2);
}

.detail-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.detail-copy-link {
  font-size: 12px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
}

.detail-contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-contact-btn {
  width: 176px;
  padding-left: 18px;
  height: 43px;
  border-radius: 15px;
  font-size: 12px;
  color: #000;
  background: linear-gradient(270deg, #290F3F 0%, #432465 100%);
  border: 1px solid rgba(153, 135, 159, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.detail-contact-btn:nth-child(1) {
  background: url(../images/Button.png) no-repeat center center;
  background-size: 100% 100%;
}

.detail-contact-btn:nth-child(2) {
  background: url(../images/Button-1.png) no-repeat center center;
  background-size: 100% 100%;
}

.detail-contact-btn:nth-child(3) {
  background: url(../images/Button-2.png) no-repeat center center;
  background-size: 100% 100%;
}

.detail-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tag-btn {
  padding: 8px 14px;
  font-size: 12px;
  color: var(--text-primary);
  background: var(--bg-card);
  border-radius: 20px;
}

/* 详情页热门推荐 5 列 */
.detail-page .host-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* ========== 搜索弹窗 ========== */
.search-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-modal {
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  background: #191422;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(180deg, #2d1f3d 0%, #1f1528 100%);
  flex-shrink: 0;
}

.search-modal-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.search-modal-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #6366f1 100%);
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.search-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.search-modal-close::before,
.search-modal-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.search-modal-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.search-modal-body {
  padding: 12px 20px;
  overflow-y: auto;
  flex: 1;
  scrollbar-gutter: stable;
}

/* 滚动条与弹窗主体风格一致（深紫/紫色系） */
.search-modal-body::-webkit-scrollbar {
  width: 8px;
}

.search-modal-body::-webkit-scrollbar-track {
  background: #1f1528;
  border-radius: 4px;
}

.search-modal-body::-webkit-scrollbar-thumb {
  background: #3B3445;
  border-radius: 4px;
}

.search-modal-body::-webkit-scrollbar-thumb:hover {
  background: #5F3C88;
}

.search-modal-body {
  scrollbar-width: thin;
  scrollbar-color: #3B3445 #1f1528;
}

.search-modal-field {
  margin-bottom: 12px;
  width: 100%;
}

.search-modal-field:last-child {
  margin-bottom: 0;
}

.search-modal-label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin: 0 0 6px 0;
}

.search-modal-input,
.search-modal-select {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  color: #fff;
  background: #3B3445;
  border: none;
  border-radius: 8px;
  outline: none;
}

.search-modal-select {
  appearance: none;
  padding-right: 32px;
}

.search-modal-footer {
  padding: 16px 20px 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.search-modal-less {
  background: none;
  border: none;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  padding: 4px 0;
}

.search-modal-submit {
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(90deg, #ea580c 0%, #d97706 40%, #f59e0b 100%);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.search-modal-range-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-modal-range-num {
  width: 56px;
  height: 36px;
  padding: 0 8px;
  font-size: 14px;
  color: #fff;
  background: #3B3445;
  border: none;
  border-radius: 8px;
  text-align: center;
  outline: none;
}

.search-modal-range-wrap input[type="range"] {
  flex: 1;
  min-width: 0;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #d4a853 0%, #a855f7 100%);
  border-radius: 4px;
  outline: none;
}

.search-modal-range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #a855f7 100%);
  cursor: pointer;
}

.search-modal-range-wrap input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #a855f7 100%);
  cursor: pointer;
  border: none;
}

/* //add/YL add */
/* 视频播放器容器 */
.video-player-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 视频元素 */
.detail-focus-video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 视频关闭按钮 */
.video-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.video-close-btn:hover {
    background: #ff4d7d;
}

/* 图片查看按钮 */
.detail-focus-view {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 77, 125, 0.8);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.detail-focus-view:hover {
    background: #ff4d7d;
    transform: scale(1.1);
}

/* 缩略图视频图标 */
.thumb-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff4d7d;
    font-size: 14px;
    pointer-events: none;
    border: 2px solid #ff4d7d;
}

.detail-focus-thumb {
    position: relative;
    overflow: hidden;
}

/* 图片查看模态框 */
.image-view-modal {
    animation: fadeIn 0.3s ease;
}

.image-view-modal img {
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 在 style-pc.css 中添加 */
.detail-focus-thumbs {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox隐藏滚动条 */
    -ms-overflow-style: none; /* IE隐藏滚动条 */
}

.detail-focus-thumbs::-webkit-scrollbar {
    display: none; /* Chrome/Safari隐藏滚动条 */
}

.detail-focus-thumb {
    flex: 0 0 auto;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none; /* 禁止选中 */
    -webkit-tap-highlight-color: transparent; /* 移动端点击高亮 */
}

.detail-focus-thumb.active {
    border: 2px solid #ff4d7d;
    transform: scale(1.05);
}

.detail-focus-arrow-prev,
.detail-focus-arrow-next {
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.detail-focus-arrow-prev:hover,
.detail-focus-arrow-next:hover {
    background: rgba(255, 77, 125, 0.8);
}


.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: #999;
    font-size: 14px;
}

.pagination-container {
    margin: 40px 0;
    text-align: center;
}

.pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-block;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0 12px;
}

.pagination-btn:hover {
    background: #ff4d7d;
    color: white;
}

.pagination-btn.active {
    background: #ff4d7d;
    color: white;
    cursor: default;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-dots {
    display: inline-block;
    min-width: 40px;
    color: #999;
}