* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft Yahei", sans-serif;
}
body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}
.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* 头部导航（酷炫效果） */
header {
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    background-color: rgba(255,255,255,0.95);
    z-index: 999;
    backdrop-filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header.scrolled {
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(255,75,43,0.15);
}
.logo-wrap {
    display: flex;
    align-items: center;
    float: left;
}
.app-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-right: 12px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff4b2b;
    position: relative;
}
.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.logo:hover::after {
    transform: scaleX(1);
}
nav {
    float: right;
}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}
nav ul li {
    margin-left: 40px;
    position: relative;
}
nav ul li a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
}
nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    transition: width 0.3s;
}
nav ul li a:hover {
    color: #ff4b2b;
}
nav ul li a:hover::before {
    width: 100%;
}
.download-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.download-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-20deg);
    transition: left 0.5s;
}
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,75,43,0.2);
}
.download-btn:hover::after {
    left: 120%;
}
/* 主内容区 - 添加酷炫背景 */
.hero-section {
    padding: 80px 0;
    overflow: hidden;
    /* 主展示区背景 */
    background:
            url('/img/bg.jpeg') center/cover no-repeat,
            linear-gradient(135deg, #fff5f3 10%, #fff0f2 100%);
    background-blend-mode: overlay;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.85);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-text {
    float: left;
    width: 50%;
    padding-top: 60px;
}
.hero-text h1 {
    font-size: 48px;
    color: #ff4b2b;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}
.feature-item {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.feature-item i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #fff0f2;
    border-radius: 50%;
    color: #ff4b2b;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}
.hero-img {
    float: right;
    width: 50%;
    position: relative;
}
.phone-mockup {
    width: 320px;
    float: right;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255,75,43,0.15);
}
.red-circle {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,240,242,1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4b2b;
    font-size: 24px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s;
}
.float-icon:hover {
    transform: scale(1.1) translateY(-15px);
    box-shadow: 0 6px 18px rgba(255,75,43,0.2);
}
.float-icon1 {
    right: -20px;
    top: 30%;
}
.float-icon2 {
    left: 20px;
    bottom: 20%;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* 核心特点模块 - 移除酷炫背景，恢复默认样式 */
.features-section {
    padding: 100px 0;
    background-color: #fafafa;
    text-align: center;
}
.section-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
}
.section-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 24px rgba(255,75,43,0.1);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #fff0f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff4b2b;
    font-size: 32px;
}
.feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* 短剧内容介绍模块（移除分类切换） */
.drama-intro-section {
    padding: 100px 0;
    text-align: center;
}
.drama-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.drama-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}
.drama-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,75,43,0.12);
}
.drama-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.drama-info {
    padding: 15px;
    text-align: left;
}
.drama-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.drama-desc {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.drama-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

/* 会员套餐模块 */
.vip-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f3 0%, #fff0f2 100%);
    text-align: center;
}
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.vip-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255,75,43,0.1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
}
.vip-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(255,75,43,0.15);
}
.vip-card.recommend {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,75,43,0.2);
}
.vip-card.recommend:hover {
    transform: scale(1.05) translateY(-12px);
}
.vip-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: #fff;
    font-size: 14px;
    padding: 8px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255,75,43,0.2);
}
.vip-header {
    padding: 40px 20px 20px;
    border-bottom: 1px solid #f5f5f5;
}
.vip-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}
.vip-price {
    font-size: 36px;
    font-weight: bold;
    color: #ff4b2b;
    margin-bottom: 5px;
}
.vip-price span {
    font-size: 16px;
    color: #999;
    font-weight: normal;
}
.vip-desc {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.vip-benefits {
    padding: 30px 20px;
    text-align: left;
}
.vip-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: #666;
}
.vip-benefit-item i {
    color: #ff4b2b;
    margin-right: 10px;
    font-size: 18px;
}
.vip-btn {
    display: block;
    width: 80%;
    margin: 0 auto 30px;
    padding: 12px 0;
    background: #f5f5f5;
    color: #666;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s;
}
.vip-btn:hover {
    background: #fef0f2;
    color: #ff4b2b;
}
.vip-card.recommend .vip-btn {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: #fff;
}
.vip-card.recommend .vip-btn:hover {
    background: linear-gradient(90deg, #ff3d20, #ff3058);
    box-shadow: 0 4px 15px rgba(255,75,43,0.3);
}

/* 用户评价模块 */
.review-section {
    padding: 100px 0;
    background-color: #fafafa;
}
.review-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}
.review-slider::-webkit-scrollbar {
    height: 6px;
}
.review-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    border-radius: 3px;
}
.review-card {
    flex: 0 0 360px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    scroll-snap-align: start;
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff0f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4b2b;
    font-size: 20px;
    margin-right: 15px;
}
.user-info h4 {
    font-size: 16px;
    color: #333;
}
.user-info .stars {
    color: #ffd100;
    font-size: 12px;
    margin-top: 5px;
}
.review-content {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 下载模块（仅iOS+二维码） */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    color: #fff;
    text-align: center;
}
.download-title {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.download-desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}
.download-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.ios-download-btn {
    padding: 15px 30px;
    background-color: #fff;
    color: #ff4b2b;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.ios-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.qrcode-box {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.qrcode {
    width: 150px;
    height: 150px;
}
.qrcode-tip {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
}

/* 响应式 */
@media (max-width: 1200px) {
    .container {
        width: 90%;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .drama-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vip-card.recommend {
        transform: scale(1);
    }
    .vip-card.recommend:hover {
        transform: translateY(-12px);
    }
}
@media (max-width: 768px) {
    .logo-wrap {
        float: none;
        justify-content: center;
        margin-bottom: 20px;
    }
    nav {
        float: none;
        text-align: center;
    }
    nav ul {
        justify-content: center;
    }
    nav ul li {
        margin: 0 15px;
    }
    .hero-text, .hero-img {
        float: none;
        width: 100%;
        text-align: center;
    }
    .hero-text {
        padding-top: 0;
        margin-bottom: 40px;
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .phone-mockup {
        float: none;
        margin: 0 auto;
    }
    .red-circle {
        right: 50%;
        transform: translate(50%, -50%);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .drama-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vip-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .drama-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        flex: 0 0 90%;
    }
}