/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* 首屏主视觉区域 */
.hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-highlight {
    font-size: 1.1rem;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #fff;
}

.cta-button {
    background: #fff;
    color: #e74c3c;
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.wechat-icon {
    width: 24px;
    height: 24px;
}

.hero-qr {
    text-align: center;
    animation: fadeInRight 1s ease-out;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 15px;
}

.qr-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* 核心价值展示区 */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* 使用流程区域 */
.process {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* 合作平台 */
.platforms {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.platform-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #e74c3c;
    text-align: center;
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.platform-logo {
    background: #f8f9fa;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.platform-logo:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* 使用教程 */
.tutorial {
    padding: 80px 0;
    background: white;
}

.tutorial-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.tab-button {
    background: #f8f9fa;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #e74c3c;
    color: white;
}

.tab-button:hover:not(.active) {
    background: #e9ecef;
}

.tutorial-content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.tutorial-steps {
    list-style: none;
    counter-reset: step-counter;
}

.tutorial-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    line-height: 1.6;
}

.tutorial-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    color: #856404;
}

/* 用户证言 */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #e74c3c;
    opacity: 0.3;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-author {
    color: #666;
    font-weight: 500;
}

/* 信任保障 */
.trust {
    padding: 80px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* 页脚 */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-img {
    width: 35px;
    height: 35px;
}

.footer-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.qr-codes {
    display: flex;
    gap: 20px;
}

.qr-item {
    text-align: center;
}

.qr-small {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #e74c3c;
}

/* 动画效果 */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .platform-categories {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .qr-codes {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .tutorial-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 200px;
    }
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 加载动画 */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* 关于我们页面样式 */
.page-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.nav-link.active {
    color: #e74c3c;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* 公司介绍 */
.company-intro {
    padding: 80px 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.intro-text .lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.company-logo-placeholder {
    background: #f8f9fa;
    border: 2px dashed #e74c3c;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: #e74c3c;
}

.company-logo-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* 产品介绍 */
.product-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* 发展历程 */
.timeline {
    padding: 80px 0;
    background: white;
}

.timeline-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 200px;
    text-align: center;
    font-weight: 600;
    color: #e74c3c;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 0 30px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: #f8f9fa;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: #f8f9fa;
}

.timeline-content h3 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* 服务范围 */
.service-scope {
    padding: 80px 0;
    background: #f8f9fa;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.scope-category {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.scope-category:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.scope-category h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.scope-category p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.scope-category ul {
    list-style: none;
    padding: 0;
}

.scope-category ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.scope-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* 社交分享 */
.social-sharing {
    padding: 80px 0;
    background: white;
}

.sharing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sharing-text h2 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.sharing-text .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.sharing-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: #e74c3c;
    margin-bottom: 5px;
}

.benefit-item p {
    color: #666;
    margin: 0;
}

.sharing-poster {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.poster-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.poster-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.qr-placeholder {
    background: white;
    color: #e74c3c;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
}

.poster-qr {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: white;
    padding: 8px;
}

/* 企业愿景 */
.vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.vision-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-item p {
    opacity: 0.8;
    line-height: 1.6;
}

/* 联系我们 */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-item strong {
    color: #333;
}

.contact-qr {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.contact-qr .qr-item {
    text-align: center;
}

.contact-qr .qr-small {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .timeline-date {
        flex: none;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .timeline-content::before {
        left: -45px !important;
        border-right-color: #f8f9fa !important;
        border-left-color: transparent !important;
    }
    
    .sharing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sharing-text h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-qr {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-values {
        grid-template-columns: 1fr;
    }
}

/* 电影票页面样式 */
.movie-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.movie-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.movie-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.movie-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.movie-features {
    margin-bottom: 40px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.movie-qr {
    text-align: center;
}

.movie-qr .qr-code {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 15px;
}

/* 价格对比 */
.price-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.comparison-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
}

.platform-logo {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

.best-price {
    color: #e74c3c;
    position: relative;
}

.best-price::after {
    content: '最优惠';
    position: absolute;
    top: -10px;
    right: -20px;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.price-desc {
    color: #666;
    font-size: 0.9rem;
}

.savings-highlight {
    text-align: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.savings-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.savings-amount {
    color: #ffd700;
    font-size: 2.2rem;
    font-weight: 700;
}

.savings-total {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 600;
}

/* 分享奖金 */
.sharing-bonus {
    padding: 80px 0;
    background: #f8f9fa;
}

.bonus-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.bonus-info h3 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 30px;
}

.bonus-steps {
    margin-bottom: 40px;
}

.bonus-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bonus-step .step-number {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #e74c3c;
    margin-bottom: 5px;
}

.step-content p {
    color: #666;
    margin: 0;
}

.bonus-rules {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bonus-rules h4 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.bonus-rules ul {
    list-style: none;
    padding: 0;
}

.bonus-rules li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.bonus-rules li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.bonus-card {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.bonus-card h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.bonus-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.bonus-qr {
    margin-top: 20px;
}

.bonus-qr .qr-small {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: white;
    padding: 5px;
}

.bonus-qr span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 影院覆盖 */
.cinema-coverage {
    padding: 80px 0;
    background: white;
}

.cinema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cinema-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.cinema-category h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    text-align: center;
}

.cinema-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cinema-logo {
    background: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cinema-logo:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* 电影票用户证言 */
.movie-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .movie-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .movie-info h2 {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bonus-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cinema-grid {
        grid-template-columns: 1fr;
    }
    
    .cinema-logos {
        justify-content: center;
    }
}
