/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

a:hover {
    color: #ff5e52;
}

ul {
    list-style: none;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-left: 4px solid #ff5e52;
    padding-left: 15px;
}

.section-title h2 {
    font-size: 22px;
    color: #333;
}

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

/* 头部样式 */
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;
    padding: 15px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    margin-right: 20px;
}

h1 {
    font-size: 24px;
    color: #ff5e52;
    margin-right: auto;
}

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

.search-box input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px 0 0 20px;
    width: 250px;
    outline: none;
}

.search-box button {
    padding: 8px 15px;
    background-color: #ff5e52;
    color: #fff;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

nav {
    background-color: #333;
}

nav ul {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

nav li {
    position: relative;
}

nav a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
}

nav a:hover {
    background-color: #ff5e52;
    color: #fff;
}

/* 轮播区域样式 */
.banner {
    height: 400px;
    background: linear-gradient(135deg, #ff5e52, #2d85f0);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* 内容区域通用样式 */
section {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 5%;
}

/* 影戏卡片样式 */
.movie-list, .series-list, .variety-list, .anime-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

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

.movie-card:hover, .series-card:hover, .variety-card:hover, .anime-card:hover {
    transform: translateY(-5px);
}

.movie-poster, .series-poster, .variety-poster, .anime-poster {
    height: 250px;
    border-radius: 8px 8px 0 0;
}

.movie-info, .series-info, .variety-info, .anime-info {
    padding: 10px;
}

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

.movie-info p, .series-info p, .variety-info p, .anime-info p {
    color: #999;
    font-size: 14px;
}

.score {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 94, 82, 0.9);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

/* 渐变配景 */
.gradient-1 { background: linear-gradient(135deg, #ff5e52, #ff9966); }
.gradient-2 { background: linear-gradient(135deg, #2d85f0, #7cb8ff); }
.gradient-3 { background: linear-gradient(135deg, #f44336, #e91e63); }
.gradient-4 { background: linear-gradient(135deg, #4caf50, #8bc34a); }
.gradient-5 { background: linear-gradient(135deg, #9c27b0, #673ab7); }
.gradient-6 { background: linear-gradient(135deg, #ff9800, #ffeb3b); }
.gradient-7 { background: linear-gradient(135deg, #795548, #a1887f); }
.gradient-8 { background: linear-gradient(135deg, #607d8b, #90a4ae); }
.gradient-9 { background: linear-gradient(135deg, #009688, #4db6ac); }
.gradient-10 { background: linear-gradient(135deg, #3f51b5, #7986cb); }
.gradient-11 { background: linear-gradient(135deg, #00bcd4, #80deea); }
.gradient-12 { background: linear-gradient(135deg, #e91e63, #f48fb1); }
.gradient-13 { background: linear-gradient(135deg, #673ab7, #9575cd); }
.gradient-14 { background: linear-gradient(135deg, #ffc107, #ffe082); }
.gradient-15 { background: linear-gradient(135deg, #8bc34a, #c5e1a5); }
.gradient-16 { background: linear-gradient(135deg, #ff5722, #ffab91); }
.gradient-17 { background: linear-gradient(135deg, #9e9e9e, #e0e0e0); }
.gradient-18 { background: linear-gradient(135deg, #03a9f4, #81d4fa); }
.gradient-19 { background: linear-gradient(135deg, #cddc39, #e6ee9c); }
.gradient-20 { background: linear-gradient(135deg, #ff4081, #f8bbd0); }
.gradient-21 { background: linear-gradient(135deg, #ff5e52, #ff9966); }
.gradient-22 { background: linear-gradient(135deg, #2d85f0, #7cb8ff); }
.gradient-23 { background: linear-gradient(135deg, #f44336, #e91e63); }
.gradient-24 { background: linear-gradient(135deg, #4caf50, #8bc34a); }
.gradient-25 { background: linear-gradient(135deg, #9c27b0, #673ab7); }

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

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

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

.app-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff5e52;
}

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

.app-features li {
    margin-bottom: 10px;
    font-size: 16px;
}

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

.android-btn, .ios-btn {
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    text-align: center;
}

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

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

.app-qrcode {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

/* 影视资讯区域样式 */
.news-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 200px;
    min-height: 150px;
}

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

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

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #999;
    font-size: 12px;
}

/* 友情链接区域样式 */
.friend-links {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.friend-links li, .friend-links a {
    margin-right: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

/* 页脚区域样式 */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.footer-column {
    min-width: 160px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff5e52;
}

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

.footer-column a {
    color: #ccc;
    font-size: 14px;
}

.footer-column a:hover {
    color: #ff5e52;
}

.footer-info {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}

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

.footer-info a {
    color: #ccc;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    h1 {
        margin: 10px 0;
    }
    
    .search-box {
        width: 100%;
        margin-top: 10px;
    }
    
    .search-box input {
        width: calc(100% - 100px);
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav a {
        padding: 10px 15px;
    }
    
    .banner {
        height: 300px;
    }
    
    .movie-list, .series-list, .variety-list, .anime-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .app-content {
        flex-direction: column;
    }
    
    .app-info {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: 180px;
    }
    
    .footer-nav {
        flex-direction: column;
    }
}
<!--耗时1781375979.5862秒-->