/* 蜜桃视频 · 在线免费观看高清视频 · 蜜桃视频app
   浅色卡片风 + 搜索 Hero + 横向精选 */
:root {
  --bg: #f4f5fb;
  --panel: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  --text: #111827;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --accent: #f97373;
  --accent-2: #fb7185;
  --accent-bg: rgba(248, 113, 113, 0.08);
  --radius: 12px;
}

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

body {
  font-family: "PingFang SC", "Microsoft YaHei", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #fef2f2 0, #f4f5fb 45%, #e5e7eb 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: inherit; }

/* 顶部导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.logo {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.logo span {
  font-size: 0.72rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent-2);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.nav a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--text-2);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-2);
  box-shadow: 0 4px 12px rgba(248, 113, 113, 0.15);
}

/* 主要容器 */
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.2rem 1.25rem 2rem;
}

/* 搜索 Hero：左文字 + 右卡片 */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}
.hero-left {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.5rem;
}
.hero-title {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hero-sub {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.search-box {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.8rem;
}
.search-box input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  outline: none;
}
.search-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.2);
}
.search-box button {
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: white;
  font-size: 0.84rem;
  cursor: pointer;
}
.search-box button:hover {
  background: var(--accent-2);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
}
.tag-row span {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid var(--border);
  color: var(--text-3);
}

.hero-right {
  background: linear-gradient(135deg, #fee2e2, #f5d0fe);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.hero-card-desc {
  font-size: 0.8rem;
  color: #4b5563;
  margin-bottom: 0.8rem;
}
.hero-thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(248, 113, 113, 0.35);
}
.hero-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* 横向精选卡片行 */
.row-sec {
  margin-bottom: 1.8rem;
}
.row-sec h2 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 0.6rem;
}
.card-row {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
}
.mini-card {
  min-width: 200px;
  max-width: 240px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}
.mini-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.mini-body {
  padding: 0.55rem 0.75rem 0.7rem;
}
.mini-body .t {
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.mini-body .d {
  font-size: 0.76rem;
  color: var(--text-2);
}

/* 关于蜜桃视频：长文介绍 */
.about-sec {
  margin-bottom: 1.9rem;
}
.about-sec h2 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 0.6rem;
}
.about-box {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.4rem;
}
.about-box p {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.about-box p:last-of-type {
  margin-bottom: 0;
}
.about-box strong {
  color: var(--accent);
}

/* 底部导航卡片与阅读列表 */
.grid-sec {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr);
  gap: 1.1rem;
}
.block {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0.9rem 1rem 1rem;
}
.block h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--text-2);
  transition: background 0.2s, color 0.2s;
}
.nav-link span {
  font-size: 0.74rem;
  color: var(--text-3);
}
.nav-link:hover {
  background: var(--accent-bg);
  color: var(--accent-2);
}

.read-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.read-item {
  display: flex;
  gap: 0.7rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.read-item:hover {
  background: #f9fafb;
}
.read-thumb {
  width: 52px;
  height: 34px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.read-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.read-text {
  flex: 1;
  min-width: 0;
}
.read-text .t {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.read-text .d {
  font-size: 0.74rem;
  color: var(--text-2);
}

footer.page-ft {
  padding: 1rem 1.25rem 1.5rem;
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
}

/* 列表页 & 详情页通用 */
.list-page, .article-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
}
.list-head, .article-head {
  margin-bottom: 1rem;
}
.list-head h1, .article-head h1 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.list-head p, .article-head p {
  font-size: 0.84rem;
  color: var(--text-2);
}
.list-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.list-item {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0.7rem 0.8rem;
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.list-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.list-thumb {
  width: 130px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-body {
  flex: 1;
}
.list-body h2 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.list-body p {
  font-size: 0.8rem;
  color: var(--text-2);
}

.article-body {
  max-width: 700px;
}
.article-body p {
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  color: var(--text-2);
}
.article-body h2 {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1.1rem 0 0.4rem;
}
.article-body h3 {
  font-size: 0.84rem;
  font-weight: 600;
  margin: 0.9rem 0 0.35rem;
}
.article-body img {
  width: 100%;
  border-radius: var(--radius);
  margin: 0.9rem 0;
}
.article-foot {
  margin-top: 1.1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}
.article-foot a {
  color: var(--accent);
  text-decoration: none;
}
.article-foot a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .page {
    padding: 1rem 0.9rem 1.6rem;
  }
  .site-header-inner {
    padding: 0.6rem 0.9rem;
  }
  .card-row {
    gap: 0.6rem;
  }
  .mini-card {
    min-width: 180px;
  }
  .grid-sec {
    grid-template-columns: 1fr;
  }
  .list-item {
    flex-direction: column;
  }
  .list-thumb {
    width: 100%;
    height: 140px;
  }
}

