* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

:root {
    --primary: #4CAF50;
    --primary-light: #E8F5E9;
    --secondary: #2196F3;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #FFFFFF;
    --bg-gray: #F5F7FA;
    --border: #E0E0E0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body {
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* 导航栏 */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 999;
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 18px;
    color: var(--primary);
}

.logo img {
    border-radius: 8px;
	max-height: 40px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.download-btn {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #43A047;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    z-index: 998;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 8px;
    border-radius: 8px;
}

.mobile-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* 通用区块样式 */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* 首页横幅 */
.hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #E3F2FD 100%);
    padding: 60px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.tagline {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.hero-text h1 {
    font-size: 36px;
    margin: 16px 0;
    line-height: 1.3;
}

.hero-text p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #43A047;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-light);
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item .num {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.stat-item .label {
    color: var(--text-light);
    font-size: 14px;
}

.demo-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.chat-bubble {
    background: var(--primary-light);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-bubble.reply {
    background: #E3F2FD;
    margin-left: auto;
}

/* 关于我们 */
.about {
    background: var(--bg-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-card h3 {
    margin-bottom: 16px;
    color: var(--primary);
}

.about-card p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    padding: 8px 0;
    color: var(--text-light);
}

/* 功能介绍 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}


/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-gray);
}

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--text-light);
    font-size: 14px;
}

/* 社区活动 */
.community {
    background: var(--bg-gray);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.community-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.community-card .tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 12px;
}

.community-card h3 {
    margin-bottom: 12px;
    font-size: 16px;
}

.community-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

/* 更新日志 */
.changelog-list {
    max-width: 800px;
    margin: 0 auto;
}

.changelog-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-left: 2px solid var(--primary);
    padding-left: 20px;
    margin-left: 10px;
}

.changelog-item .date {
    color: var(--primary);
    font-size: 14px;
    white-space: nowrap;
}

.changelog-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.changelog-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA区块 */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #66BB6A 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta p {
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: #f0f0f0;
}

/* 页脚 */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 18px;
}
.footer-logo img{
    width: 30px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #999;
    font-size: 13px;
}

/* 移动端悬浮按钮 */
.mobile-float-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.float-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.float-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}

.float-link {
    padding: 10px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 8px;
    font-size: 14px;
}

.float-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* 响应式适配 */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .stats {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .download-btn {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-menu.active {
        display: flex;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .mobile-float-btn {
        display: block;
    }
    .section-title {
        font-size: 24px;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .drama-card{
        height: 300px !important;
    }
    .drama-info .drama-title{
        font-size: 14px !important;
        font-weight: 400;
    }
    .drama-main .drama-card img{
        height: 200px !important;
    }
    .drama-grid .drama-card img{
        height: 200px !important;
    }
    .footer-zuihou{
        font-size: 14px !important;
    }
    .footer-links{
        display: none;
    }
}
/* ========== 展厅式轮播 样式 ========== */
.about {
  background: #f9f9f9;
  padding: 70px 0;
}
.about-layout {
	display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    max-width: 1100px;
    margin: 40px auto 0;
}
.about-text {
  flex: 1;
  max-width: 480px;
}
.about-text h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
}
.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: left;
}
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.about-list li {
  font-size: 15px;
  color: #444;
  padding: 8px 0;
}

/* 展厅轮播容器 */
.about-gallery-wrap {
  flex: 0 0 350px;
  display: flex;
  justify-content: center;
}
.gallery-container {
  width: 320px;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.gallery-track {
  position: relative;
  width: 280px;
  height: 560px;
}
.gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 560px;
  padding: 16px;
  transition: all 0.5s ease;
}
.gallery-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

/* 箭头按钮 */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  z-index: 20;
  user-select: none;
}
.gallery-arrow.prev {
  left: -20px;
}
.gallery-arrow.next {
  right: -20px;
}

/* 响应式 */
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    padding: 0 10px;
  }
  .gallery-container {
    width: 280px;
    height: 520px;
  }
  .gallery-track {
    width: 240px;
    height: 480px;
  }
  .gallery-item {
    width: 240px;
    height: 480px;
  }
}
@media (max-width: 480px) {
  .gallery-container {
    width: 240px;
    height: 480px;
  }
  .gallery-track {
    width: 200px;
    height: 420px;
  }
  .gallery-item {
    width: 200px;
    height: 420px;
  }
}
/* ========== 广播剧展示模块 ========== */
.drama-showcase {
    background: #f9f9f9;
    padding: 70px 0;
}
.drama-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.drama-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.drama-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.drama-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}
.drama-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.drama-tags .tag {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}
.drama-title {
    position: absolute;
    bottom: 60px;
    left: 20px;
    color: #fff;
    font-size: 22px;
    z-index: 2;
}
.drama-desc {
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    z-index: 2;
}
.drama-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    cursor: pointer;
    font-size: 14px;
    z-index: 2;
    transition: background 0.3s;
}
.drama-btn:hover {
    background: #43A047;
}

/* 广播剧模块响应式 */
@media (max-width: 1024px) {
    .drama-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .drama-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 用户评价模块 ========== */
.reviews {
    background: #fff;
    padding: 70px 0;
}
.review-badge {
    display: block;
    text-align: center;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin: 0 auto 12px;
    width: fit-content;
}
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0 40px;
}
.rating-score {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}
.rating-stars {
    color: #4CAF50;
    font-size: 20px;
}
.rating-text {
    color: #666;
    font-size: 14px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.review-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.review-info h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}
.review-info .tag {
    color: #4CAF50;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}
.review-text {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

/* 评价模块响应式 */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* 广播剧卡片 悬浮效果 */
.drama-card {
  transition: all 0.3s ease;
}
.drama-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* 社区卡片 悬浮效果 */
.community-card {
  transition: all 0.3s ease;
}
.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* 用户评价卡片 悬浮效果 */
.review-card {
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* ========== 平台数据模块样式 ========== */
.stats-section {
    background: #f9f9f9;
    padding: 70px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}
.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.stat-icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: #666;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== 平台数据模块（Banner样式） ========== */
.stats-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #E3F2FD 100%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* 卡片间距收窄 */
    max-width: 700px; /* 整体宽度收窄，不再撑满大容器 */
    margin: 30px auto 0;
}
.stat-card {
    background: #fff;
    padding: 20px 15px; /* 卡片内边距缩小 */
    border-radius: 12px; /* 圆角缩小 */
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.stat-icon {
    font-size: 28px; /* 图标缩小 */
    margin-bottom: 10px;
}
.stat-number {
    font-size: 28px; /* 数字字号缩小 */
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px; /* 标签字号缩小 */
    color: #666;
}
.stats-banner .section-container{
	padding: 0px 20px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}
/* 对比表格样式 */
.comparison-table {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}
.comparison-row.header {
    background: #4CAF50;
    color: #fff;
    font-weight: bold;
}
.comparison-cell {
    padding: 16px;
    text-align: center;
}
.comparison-row:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }
    .comparison-row.header .comparison-cell:nth-child(2),
    .comparison-row.header .comparison-cell:nth-child(3) {
        display: none;
    }
    .comparison-row:not(.header) .comparison-cell {
        border-bottom: 1px solid #eee;
    }
}
/* 功能介绍内页专属样式 */
.features-page-wrapper {
	display: flex;
	max-width: 1100px;
	margin: 40px auto;
	gap: 40px;
	padding: 0 20px;
}
.features-main {
	flex: 3;
}
.features-sidebar {
	flex: 1;
	min-width: 250px;
}
.features-sidebar-widget {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	margin-bottom: 24px;
}
.features-sidebar-widget h3 {
	font-size: 16px;
	margin-bottom: 16px;
	color: #333;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}
.sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-list li {
	padding: 8px 0;
	font-size: 14px;
	color: #555;
	cursor: pointer;
	transition: color 0.2s;
}
.sidebar-list li:hover {
	color: #4CAF50;
}
.download-banner {
	background: linear-gradient(135deg, #4CAF50, #81C784);
	color: #fff;
	text-align: center;
	padding: 30px 20px;
	border-radius: 12px;
}
.download-banner h3 {
	margin: 0 0 10px;
	font-size: 18px;
}
.download-banner p {
	font-size: 14px;
	opacity: 0.9;
	margin: 0 0 20px;
}
.download-banner .btn {
	background: #fff;
	color: #4CAF50;
	padding: 10px 24px;
	border-radius: 24px;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
}
.features-main h1 {
	font-size: 26px;
	color: #222;
	margin-bottom: 30px;
	text-align: center;
}
.feature-section {
	margin-bottom: 40px;
}
.feature-section h2 {
	font-size: 20px;
	color: #333;
	border-left: 4px solid #4CAF50;
	padding-left: 12px;
	margin-bottom: 20px;
}
.feature-item {
	margin-bottom: 24px;
}
.feature-item h3 {
	font-size: 17px;
	color: #222;
	margin-bottom: 10px;
}
.feature-item p {
	color: #555;
	line-height: 1.7;
	margin: 0;
}
/* 响应式适配 */
@media (max-width: 900px) {
	.features-page-wrapper {
		flex-direction: column;
	}
	.features-sidebar {
		order: -1;
	}
}
/* drama.html 专属样式 */
/* 1. 页面Banner */
.drama-banner {
    background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
    padding: 60px 20px;
    text-align: center;
}
.drama-banner h1 {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}
.drama-banner p {
    font-size: 16px;
    color: #666;
}

/* 2. 广播剧列表主体 */
.drama-main {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}
.drama-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
/* 卡片样式复用首页，这里只补充hover特效 */
.drama-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.drama-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.drama-card .drama-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 290px;
    /* 关键：解决img变形 */
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.drama-card .drama-info {
    padding: 15px;
}
.drama-card .drama-title {
    font-size: 16px;
    margin: 0 0 8px;
    color: #222;
}
.drama-card .drama-tags {
    margin-bottom: 10px;
}
.drama-card .tag {
    display: inline-block;
    background: #f0f9f0;
    color: #4CAF50;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 5px;
}
.drama-card .drama-btn {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.drama-card .drama-btn:hover {
    background: #388E3C;
}

/* 3. 分页组件 */
.pagination-section {
    margin: 50px 0;
    text-align: center;
}
.pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.pagination-item:hover {
    border-color: #4CAF50;
    color: #4CAF50;
}
.pagination-item.active {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}
.pagination-item.info {
    border: none;
    cursor: default;
}
.pagination-item.info:hover {
    color: #333;
    border-color: #eee;
}

/* 4. 响应式适配 */
@media (max-width: 992px) {
    .drama-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    .pagination-item {
        min-width: 60px;
        height: 45px;
        font-size: 16px;
    }
}
/* ========== down.html 下载页样式 ========== */
.page_crumbs {
    padding:15px 0;
    font-size:14px;
    color:#666;
}
.page_crumbs a {
    color:#10b981;
}
.wrap {
    max-width:1200px;
    margin:0 auto;
    padding: 60px 20px;
}

/* APP信息 */
.app_info_box {
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 3px 15px rgba(0,0,0,0.05);
    margin-bottom:40px;
}
.app_logo img {
    width:80px;
    height:80px;
    border-radius:16px;
}
.app_info h1 {
    font-size:26px;
    margin:0 0 10px;
    color:#222;
}
.app_meta {
    display:flex;
    gap:15px;
    font-size:14px;
    color:#666;
    margin-bottom:18px;
    flex-wrap:wrap;
}
.app_download_btns {
    display:flex;
    gap:12px;
}
.btn_android {
    background:#10b981;
    color:#fff;
    border:none;
    padding:11px 26px;
    border-radius:10px;
    font-size:15px;
    cursor:pointer;
    transition:0.2s;
}
.btn_android:hover {
    background:#059669;
}
.btn_ios {
    background:#f0fdf4;
    color:#10b981;
    border:1px solid #10b981;
    padding:11px 26px;
    border-radius:10px;
    font-size:15px;
    cursor:pointer;
    transition:0.2s;
}
.btn_ios:hover {
    background:#dcfce7;
}

/* 截图区域 */
.app_screenshot_section {
    margin-bottom:50px;
}
.section_title {
    font-size:20px;
    margin-bottom:20px;
    padding-left:12px;
    border-left:4px solid #10b981;
}
.screenshot_scroll {
    overflow-x:auto;
    padding-bottom:10px;
    cursor:grab;
}
.screenshot_scroll::-webkit-scrollbar {
    height:6px;
}
.screenshot_scroll::-webkit-scrollbar-thumb {
    background:#ccc;
    border-radius:3px;
}
.screenshot_list {
    display:flex;
    gap:16px;
}
.shot_item img {

}

/* 介绍区域 */
.app_intro_box {
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 3px 15px rgba(0,0,0,0.05);
}
.intro_content {
    margin-bottom:35px;
}
.intro_content p {
    line-height:1.8;
    color:#444;
    margin-bottom:12px;
}
.func_grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}
.func_item {
    background:#f8faf9;
    padding:14px;
    border-radius:10px;
    color:#333;
    font-size:14px;
}

/* 二维码弹窗 */
.qrcode_pop {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:9999;
    align-items:center;
    justify-content:center;
}
.qrcode_pop.show {
    display:flex;
}
.pop_inner {
    background:#fff;
    padding:25px;
    border-radius:14px;
    text-align:center;
    width:260px;
}
.pop_inner img {
    width:200px;
    height:200px;
    margin-bottom:10px;
}
.pop_inner p {
    font-size:14px;
    color:#333;
    margin-bottom:15px;
}
.pop_close {
    background:#10b981;
    color:#fff;
    border:none;
    padding:8px 20px;
    border-radius:8px;
    cursor:pointer;
}

/* 响应式 */
@media(max-width:768px){
    .app_info_box{
        flex-direction:column;
        align-items:flex-start;
    }
    .func_grid{
        grid-template-columns:1fr;
    }
    .shot_item img{
        height:320px;
    }
}
.changelog_page{padding:30px 0;}
.log_item{position:relative;padding-left:24px;margin-bottom:30px;border-left:2px solid #10b981;padding-bottom:10px;}
.log_item::before{content:"";position:absolute;left:-9px;top:0;width:16px;height:16px;background:#10b981;border-radius:50%;}
.log_item .version{font-size:17px;font-weight:500;margin-bottom:4px;}
.log_item .time{font-size:13px;color:#999;margin-bottom:10px;}
.logs li{line-height:1.8;color:#555;}
.community_page{padding:30px 0;}
.article_item{display:flex;align-items:center;justify-content:space-between;background:#fff;padding:16px 20px;border-radius:12px;margin-bottom:10px;box-shadow:0 2px 8px rgba(0,0,0,0.04);}
.article_item .title{flex:1;padding:0 14px;}
.article_item .date{font-size:13px;color:#999;}
.tag{padding:3px 8px;border-radius:6px;font-size:12px;color:#fff;}
.tag.tag1{background:#10b981;}
.tag.tag2{background:#f59e0b;}
.tag.tag3{background:#3b82f6;}
.faq-page {
    background: #f8fafc;
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.faq-title {
    text-align: center;
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 30px;
    font-weight: 600;
}
.faq-list {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #f9fafb;
}
.faq-question .toggle-icon {
    font-size: 20px;
    color: #10b981;
    transition: transform 0.3s;
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    color: #666;
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-item.open .toggle-icon {
    transform: rotate(45deg);
}

/* 分页 */
.faq-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page-btn {
    min-width: 60px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}
.page-btn:hover {
    border-color: #10b981;
    color: #10b981;
}
.page-btn.active {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}
.page-info {
    font-size: 14px;
    color: #6b7280;
    padding: 0 10px;
}

/* 面包屑 */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}
.breadcrumb a {
    color: #10b981;
    text-decoration: none;
}
/* 文章页双栏布局 */
.article_wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.article_main {
    flex: 1;
}
.article_sidebar {
    width: 280px;
}

/* 文章内容 */
.article_content {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.article_content h1 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eee;
}
.article_content .info {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}
.article_content .content {
    line-height: 1.9;
    font-size: 16px;
    color: #333;
}
.article_content .content p {
    margin-bottom: 18px;
}
.article_content .content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

/* 上下篇 */
.page_links {
    display: flex;
    gap: 14px;
}
.page_links a {
    flex: 1;
    padding: 14px 16px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: 0.2s;
}
.page_links a:hover {
    color: #10b981;
    background: #f9fdfb;
}

/* 右侧 猜你喜欢 */
.guess_like {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 30px;
}
.guess_like h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.like_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.like_list a {
    padding: 10px 12px;
    background: #f8faf9;
    border-radius: 8px;
    transition: 0.2s;
}
.like_list a:hover {
    background: #10b981;
    color: #fff;
}

/* 响应式 */
@media (max-width: 992px) {
    .article_wrapper {
        flex-direction: column;
    }
    .article_sidebar {
        width: 100%;
    }
    .guess_like {
        position: static;
    }
	.breadcrumb{
		display:none;
	}
}
/* 猜你喜欢 侧边栏模块 */
.guess_like {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.guess_like h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.like_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.like_list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.like_list li:last-child {
    margin-bottom: 0;
}

.like_list a {
    display: block;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 6px;
    color: #337ab7;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.like_list a:hover {
    background: #f0f7ff;
    color: #23527c;
    text-decoration: underline;
}

/* 上一篇/下一篇 导航链接 */
/* 文章上下篇导航 */
.article-nav {
    display: flex;
    margin: 30px 0;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #666;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
	gap: 10px;
}

/* 左边上一篇 */
.article-nav .page_left {
  flex: 1;
  text-align: left;
}

/* 右边下一篇 */
.article-nav .page_right {
  flex: 1;
  text-align: right;
}

/* 链接文字样式 */
.article-nav a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* hover 变色（你网站常用蓝色，我直接给你配好）*/
.article-nav a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* 链接内 span 不影响布局 */
.article-nav a span {
  font-weight: normal;
}
/* FAQ 分页容器 */
.faq-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

/* 分页条整体 */
.faq-pagination .pagination {
    display: flex;
    align-items: center;
    gap: 8px; /* 分页项之间的间距 */
    font-size: 14px;
}

/* 基础分页项样式 */
.faq-pagination .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* 普通项 hover 效果 */
.faq-pagination .page-item:hover {
    background-color: #f0f0f0;
    color: #007bff;
}

/* 当前页高亮样式 */
.faq-pagination .page-num-current {
    background-color: #007bff;
    color: #fff;
    font-weight: 500;
    pointer-events: none; /* 当前页禁止点击 */
}

/* 文本类（共25条、1/4）样式 */
.faq-pagination .page-link {
    color: #666;
    background: none;
    padding: 6px 8px;
}

/* 文本项 hover 不变化 */
.faq-pagination .page-link:hover {
    background: none;
    color: #666;
}

/* 下一页、尾页等链接 hover */
.faq-pagination .page-item:not(.page-num-current):hover {
    background-color: #e8f0fe;
    color: #007bff;
}
/* 分页容器整体 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    font-size: 14px;
}

/* 分页文字信息（共337条、3/22） */
.pagination .page-text {
    color: #666;
    margin: 0 10px;
}

/* 基础分页项 */
.pagination .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* 数字页码 hover 效果 */
.pagination .page-item:not(.current):hover {
    background-color: #f0f0f0;
    color: #25a859; /* 匹配你网站的绿色主色调 */
}

/* 当前页高亮样式 */
.pagination .page-item.current {
    background-color: #25a859;
    color: #fff;
    font-weight: 500;
    pointer-events: none;
}

/* 上一页/下一页/首页/尾页 按钮 */
.pagination .page-link {
    color: #333;
}

.pagination .page-link:hover {
    color: #25a859;
    text-decoration: underline;
}
.community_page .title a:hover {
    color: #25a859;
    text-decoration: underline;
}
/* 标题 hover 效果 */
.community_page .title a:hover {
    color: #25a859;
    text-decoration: underline;
}
.community_page .title a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
}
.footer a {
    color: #ccc; /* 备案号蓝色，和截图一致 */
    text-decoration: none;
}
/* 弹窗样式 */
.qrcode-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	justify-content: center;
	align-items: center;
}
.modal-content {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	max-width: 300px;
	position: relative;
}
.close-btn {
	position: absolute;
	right: 15px;
	top: 10px;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}
.qrcode-box img {
	width: 200px;
	height: 200px;
	margin: 15px 0;
}