/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

a:hover {
    color: #FF5E52;
}

ul {
    list-style: none;
}

/* 头部样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo a {
    display: block;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #FF5E52;
}

.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 8px 15px;
    width: 200px;
    outline: none;
}

.search-btn {
    background-color: #FF5E52;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #e54942;
}

/* 轮播图样式 */
.banner {
    margin: 20px 0;
}

.banner-wrapper {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #FF5E52, #FF9B44);
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
    padding: 0 20px;
}

.banner-gradient h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-gradient p {
    font-size: 18px;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 区块问题样式 */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF5E52;
}

.section-title h2 {
    font-size: 24px;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.section-title h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #FF5E52;
    border-radius: 2px;
}

.more {
    color: #666;
    font-size: 14px;
}

/* 影戏列表样式 */
.movie-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .movie-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .movie-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .movie-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.movie-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.movie-poster {
    position: relative;
    height: 0;
    padding-top: 140%;
    overflow: hidden;
}

/* 渐变海报配景 */
.gradient-poster-1 { background: linear-gradient(135deg, #FF5E52, #FF9B44); }
.gradient-poster-2 { background: linear-gradient(135deg, #4158D0, #C850C0); }
.gradient-poster-3 { background: linear-gradient(135deg, #0093E9, #80D0C7); }
.gradient-poster-4 { background: linear-gradient(135deg, #8EC5FC, #E0C3FC); }
.gradient-poster-5 { background: linear-gradient(135deg, #FFDEE9, #B5FFFC); }
.gradient-poster-6 { background: linear-gradient(135deg, #FBAB7E, #F7CE68); }
.gradient-poster-7 { background: linear-gradient(135deg, #85FFBD, #FFFB7D); }
.gradient-poster-8 { background: linear-gradient(135deg, #FF9A8B, #FF6A88); }
.gradient-poster-9 { background: linear-gradient(135deg, #FF3CAC, #784BA0); }
.gradient-poster-10 { background: linear-gradient(135deg, #3EECAC, #EE74E1); }
.gradient-poster-11 { background: linear-gradient(135deg, #FA8BFF, #2BD2FF); }
.gradient-poster-12 { background: linear-gradient(135deg, #FF9A9E, #FECFEF); }
.gradient-poster-13 { background: linear-gradient(135deg, #A9C9FF, #FFBBEC); }
.gradient-poster-14 { background: linear-gradient(135deg, #74EBD5, #9FACE6); }
.gradient-poster-15 { background: linear-gradient(135deg, #F4D03F, #16A085); }
.gradient-poster-16 { background: linear-gradient(135deg, #D4145A, #FBB03B); }
.gradient-poster-17 { background: linear-gradient(135deg, #009245, #FCEE21); }
.gradient-poster-18 { background: linear-gradient(135deg, #662D8C, #ED1E79); }
.gradient-poster-19 { background: linear-gradient(135deg, #FC466B, #3F5EFB); }
.gradient-poster-20 { background: linear-gradient(135deg, #0700b8, #00ff88); }
.gradient-poster-21 { background: linear-gradient(135deg, #d53369, #daae51); }
.gradient-poster-22 { background: linear-gradient(135deg, #efd5ff, #515ada); }
.gradient-poster-23 { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.gradient-poster-24 { background: linear-gradient(135deg, #f77062, #fe5196); }
.gradient-poster-25 { background: linear-gradient(135deg, #a8c0ff, #3f2b96); }
.gradient-poster-26 { background: linear-gradient(135deg, #f83600, #f9d423); }
.gradient-poster-27 { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.gradient-poster-28 { background: linear-gradient(135deg, #b721ff, #21d4fd); }
.gradient-poster-29 { background: linear-gradient(135deg, #08AEEA, #2AF598); }
.gradient-poster-30 { background: linear-gradient(135deg, #FEE140, #FA709A); }

.movie-rating, .movie-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 94, 82, 0.9);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.movie-info {
    padding: 12px;
}

.movie-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-info p {
    color: #666;
    font-size: 12px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* APP下载区域样式 */
.app-download {
    background-color: #fff;
    padding: 40px 0;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.app-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-info {
    flex: 1;
    padding-right: 40px;
}

.app-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.app-slogan {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.app-features {
    margin-bottom: 30px;
}

.app-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background-color: #FF5E52;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.download-buttons {
    display: flex;
    gap: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: #FF5E52;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #e54942;
    color: white;
}

.download-btn.android {
    background-color: #3DDC84;
}

.download-btn.android:hover {
    background-color: #32b56c;
}

.download-btn.ios {
    background-color: #007AFF;
}

.download-btn.ios:hover {
    background-color: #0062cc;
}

.app-qrcode {
    flex: 0 0 200px;
}

.qrcode-wrapper {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qrcode-gradient {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FF5E52, #FF9B44);
    margin-bottom: 10px;
}

/* 影视资讯区域样式 */
.movie-news {
    margin: 40px 0;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-image {
    flex: 0 0 200px;
    height: 150px;
}

/* 渐变新闻图片配景 */
.gradient-news-1 { background: linear-gradient(135deg, #FF5E52, #FF9B44); }
.gradient-news-2 { background: linear-gradient(135deg, #4158D0, #C850C0); }
.gradient-news-3 { background: linear-gradient(135deg, #0093E9, #80D0C7); }
.gradient-news-4 { background: linear-gradient(135deg, #8EC5FC, #E0C3FC); }
.gradient-news-5 { background: linear-gradient(135deg, #FFDEE9, #B5FFFC); }
.gradient-news-6 { background: linear-gradient(135deg, #FBAB7E, #F7CE68); }

.news-content {
    flex: 1;
    padding: 15px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

/* 页脚样式 */
.footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 40px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 0 0 250px;
}

.footer-slogan {
    margin-top: 10px;
    font-size: 14px;
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: space-around;
}

.footer-nav-group h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-nav-group ul li {
    margin-bottom: 8px;
}

.footer-nav-group a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav-group a:hover {
    color: #FF5E52;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
}

.qrcode-container {
    display: flex;
    gap: 30px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-image {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

/* 渐变二维码配景 */
.gradient-qrcode-1 { background: linear-gradient(135deg, #FF5E52, #FF9B44); }
.gradient-qrcode-2 { background: linear-gradient(135deg, #4158D0, #C850C0); }

.contact-info {
    flex: 1;
    padding-left: 40px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 16px;
    height: 16px;
    background-color: #FF5E52;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #aaa;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #888;
    font-size: 12px;
}

.copyright {
    margin-bottom: 10px;
}

.icp {
    margin-bottom: 10px;
}

.icp a {
    color: #888;
    margin: 0 10px;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
}

/* 响应式调解 */
@media (max-width: 992px) {
    .app-wrapper {
        flex-direction: column;
    }
    
    .app-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
    }
    
    .footer-nav-group {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-image {
        flex: 0 0 150px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .main-nav {
        margin-bottom: 15px;
        width: 100%;
        overflow-x: auto;
    }
    
    .main-nav ul {
        width: max-content;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        flex: 1;
    }
    
    .footer-middle {
        flex-direction: column;
    }
    
    .qrcode-container {
        margin-bottom: 20px;
    }
    
    .contact-info {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .banner-gradient h1 {
        font-size: 28px;
    }
    
    .banner-gradient p {
        font-size: 16px;
    }
    
    .footer-nav-group {
        flex: 0 0 100%;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
<!--耗时1781695798.7621秒-->