/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6600;
}

ul, li {
    list-style: none;
}

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

/* 图标样式 */
.icon-logo {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    border-radius: 8px;
    position: relative;
}

.icon-logo:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.icon-check {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #ff6600;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.icon-check:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 4px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    top: 5px;
    left: 4px;
}

.icon-android, .icon-apple {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-color: white;
    border-radius: 50%;
}

/* 渐变配景样式 */
.gradient-bg-1 {
    background: linear-gradient(135deg, #ff6600, #ff9900);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.gradient-bg-5 {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.gradient-bg-6 {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.gradient-bg-7 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.gradient-bg-8 {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.gradient-bg-9 {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.gradient-bg-10 {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
}

.gradient-bg-11 {
    background: linear-gradient(135deg, #3498db, #9b59b6);
}

.gradient-bg-12 {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
}

.gradient-bg-13 {
    background: linear-gradient(135deg, #1abc9c, #3498db);
}

.gradient-bg-14 {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
}

.gradient-bg-15 {
    background: linear-gradient(135deg, #f1c40f, #2ecc71);
}

.gradient-bg-16 {
    background: linear-gradient(135deg, #34495e, #7f8c8d);
}

.gradient-bg-17 {
    background: linear-gradient(135deg, #2ecc71, #1abc9c);
}

.gradient-bg-18 {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.gradient-bg-19 {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.gradient-bg-20 {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.gradient-bg-21 {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.gradient-bg-22 {
    background: linear-gradient(135deg, #16a085, #1abc9c);
}

.gradient-bg-23 {
    background: linear-gradient(135deg, #d35400, #e67e22);
}

.gradient-bg-24 {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.gradient-bg-25 {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.gradient-bg-26 {
    background: linear-gradient(135deg, #ff6600, #ff9900);
}

.gradient-bg-27 {
    background: linear-gradient(135deg, #ff6600, #ff9900);
}

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

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    margin-left: 10px;
    color: #ff6600;
}

.main-nav ul {
    display: flex;
}

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

.main-nav a {
    font-size: 16px;
    font-weight: 500;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    width: 200px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 0 15px;
    outline: none;
}

.search-btn {
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 18px;
    padding: 0 20px;
    height: 36px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* 轮播图样式 */
.banner {
    padding: 30px 0;
}

.slider-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.slider-item {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    color: white;
}

.slider-content {
    max-width: 500px;
}

.slider-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.slider-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #ff6600;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 影戏卡片样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

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

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

.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

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

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

.movie-poster {
    height: 200px;
    position: relative;
}

.movie-info {
    padding: 15px;
}

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

.movie-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.rating {
    font-size: 14px;
    color: #ff6600;
}

/* 区域通用样式 */
section {
    padding: 40px 0;
}

/* APP下载区域样式 */
.app-download {
    background-color: #fff;
    padding: 60px 0;
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
    border-radius: 10px;
    padding: 40px;
}

.app-info {
    max-width: 60%;
}

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

.app-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

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

.app-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.download-btns {
    display: flex;
    gap: 15px;
}

.btn-android, .btn-ios {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
}

.btn-android:hover, .btn-ios:hover {
    background-color: #555;
    color: white;
}

.app-qrcode {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

/* 文章区域样式 */
.articles {
    background-color: #fff;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.article-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.article-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    color: #ff6600;
    font-size: 14px;
    font-weight: 500;
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-nav-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-nav-section h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #ff6600;
}

.footer-nav-section ul li {
    margin-bottom: 10px;
}

.footer-nav-section a {
    color: #ccc;
}

.footer-nav-section a:hover {
    color: #ff6600;
}

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

.qrcode-box {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #999;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .movie-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .article-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav {
        justify-content: space-between;
        width: 100%;
    }
    
    .footer-qrcode {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-content {
        flex-direction: column;
        text-align: center;
    }
    
    .app-info {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .app-features li {
        justify-content: center;
    }
    
    .download-btns {
        justify-content: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .movie-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-content h2 {
        font-size: 28px;
    }
    
    .slider-content p {
        font-size: 16px;
    }
}
<!--耗时1781365957.2248秒-->