/* {Ä£°åÂ·¾¶}/static/css/style.css */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-text: #f8f9fa;
    --bg-color: #f8f9fa;
    --dark-bg: #1a1a1a;
    --card-bg: #ffffff;
    --border-color: #e1e1e1;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, #e74c3c, #c0392b);
    --gradient-2: linear-gradient(135deg, #3498db, #2980b9);
    --gradient-3: linear-gradient(135deg, #f39c12, #d35400);
    --gradient-4: linear-gradient(135deg, #1abc9c, #16a085);
    --gradient-5: linear-gradient(135deg, #9b59b6, #8e44ad);
    --gradient-6: linear-gradient(135deg, #34495e, #2c3e50);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

/* Header Styles */
.header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

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

.search-box input {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    width: 200px;
}

.search-box button {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: var(--accent-color);
}

/* Banner Styles */
.banner {
    background: var(--gradient-1);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}

/* Section Styles */
section {
    padding: 50px 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    position: relative;
    padding-left: 15px;
}

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

.more {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Movie Card Styles */
.movie-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.movie-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.poster {
    height: 250px;
    background-size: cover;
    background-position: center;
}

/* Gradient Posters */
.gradient-poster-1 { background: var(--gradient-1); }
.gradient-poster-2 { background: var(--gradient-2); }
.gradient-poster-3 { background: var(--gradient-3); }
.gradient-poster-4 { background: var(--gradient-4); }
.gradient-poster-5 { background: var(--gradient-5); }
.gradient-poster-6 { background: var(--gradient-6); }
.gradient-poster-7 { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.gradient-poster-8 { background: linear-gradient(135deg, #2980b9, #3498db); }
.gradient-poster-9 { background: linear-gradient(135deg, #8e44ad, #9b59b6); }
.gradient-poster-10 { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.gradient-poster-11 { background: linear-gradient(135deg, #16a085, #1abc9c); }
.gradient-poster-12 { background: linear-gradient(135deg, #d35400, #e67e22); }
.gradient-poster-13 { background: linear-gradient(135deg, #2c3e50, #34495e); }
.gradient-poster-14 { background: linear-gradient(135deg, #7f8c8d, #95a5a6); }
.gradient-poster-15 { background: linear-gradient(135deg, #f1c40f, #f39c12); }
.gradient-poster-16 { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.gradient-poster-17 { background: linear-gradient(135deg, #2980b9, #3498db); }
.gradient-poster-18 { background: linear-gradient(135deg, #16a085, #1abc9c); }

.info {
    padding: 15px;
}

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

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

.rating {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* App Download Section */
.app-download {
    background: var(--gradient-2);
    color: var(--light-text);
    padding: 60px 0;
}

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

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

.app-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.app-features {
    margin: 20px 0;
}

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

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

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--light-text);
}

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

.qrcode-gradient {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

/* News Section */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

.news-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.news-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 15px;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
}

/* VIP Zone */
.vip-zone {
    background-color: #f0f0f0;
}

.vip-content {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.vip-info {
    flex: 1;
    padding: 30px;
}

.vip-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.vip-features li {
    margin-bottom: 10px;
}

.vip-price {
    display: flex;
    gap: 20px;
}

.price-item {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
}

.price-item h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.buy-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.recommended {
    background-color: #fff8e1;
    border: 2px solid var(--accent-color);
    position: relative;
}

.recommended::after {
    content: 'ÍÆ¼ö';
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.vip-gradient {
    flex: 0 0 300px;
    height: 400px;
    background: var(--gradient-3);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 30px;
}

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

.footer-logo {
    flex: 0 0 25%;
}

.footer-logo p {
    margin-top: 15px;
    color: #999;
}

.footer-links {
    flex: 0 0 50%;
    display: flex;
    justify-content: space-between;
}

.link-group h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.link-group h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group a {
    color: #999;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-contact {
    flex: 0 0 25%;
}

.footer-contact h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #999;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.copyright p {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.friend-links {
    flex: 0 0 40%;
}

.friend-links h4 {
    margin-bottom: 15px;
    color: #999;
}

.friend-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.friend-links a {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.friend-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .link-group {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .news-list {
        grid-template-columns: 1fr;
    }
    
    .vip-content {
        flex-direction: column;
    }
    
    .vip-gradient {
        width: 100%;
        height: 200px;
    }
    
    .app-content {
        flex-direction: column;
    }
    
    .app-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .main-nav {
        margin: 15px 0;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .movie-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .vip-price {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .copyright {
        margin-bottom: 20px;
    }
    
    .friend-links {
        flex: 0 0 100%;
    }
}
<!--ºÄÊ±1781365748.105Ãë-->