/* 全局样式 */
:root {
    --primary-color: #5e72e4;
    --secondary-color: #11cdef;
    --accent-color: #fb6340;
    --text-color: #333;
    --light-text: #777;
    --dark-bg: #172b4d;
    --light-bg: #f8f9fe;
    --border-color: #e9ecef;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

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

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: #4a5acf;
    color: white;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
    position: relative;
    padding-left: 15px;
}

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

.more-link {
    color: var(--light-text);
    font-size: 14px;
    display: flex;
    align-items: center;
}

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

.more-link::after {
    content: "→";
    margin-left: 5px;
}

/* 渐变配景样式 */
.gradient-bg-1 { background: linear-gradient(135deg, #5e72e4, #825ee4); }
.gradient-bg-2 { background: linear-gradient(135deg, #11cdef, #1171ef); }
.gradient-bg-3 { background: linear-gradient(135deg, #fb6340, #fbb140); }
.gradient-bg-4 { background: linear-gradient(135deg, #2dce89, #2dceb3); }
.gradient-bg-5 { background: linear-gradient(135deg, #f5365c, #f56036); }
.gradient-bg-6 { background: linear-gradient(135deg, #8965e0, #5e72e4); }
.gradient-bg-7 { background: linear-gradient(135deg, #5603ad, #9d03ad); }
.gradient-bg-8 { background: linear-gradient(135deg, #ff8d72, #ff6491); }
.gradient-bg-9 { background: linear-gradient(135deg, #2dce89, #11cdef); }
.gradient-bg-10 { background: linear-gradient(135deg, #fb6340, #f5365c); }
.gradient-bg-11 { background: linear-gradient(135deg, #5e72e4, #825ee4); }
.gradient-bg-12 { background: linear-gradient(135deg, #11cdef, #1171ef); }
.gradient-bg-13 { background: linear-gradient(135deg, #fb6340, #fbb140); }
.gradient-bg-14 { background: linear-gradient(135deg, #2dce89, #2dceb3); }
.gradient-bg-15 { background: linear-gradient(135deg, #f5365c, #f56036); }
.gradient-bg-16 { background: linear-gradient(135deg, #8965e0, #5e72e4); }
.gradient-bg-17 { background: linear-gradient(135deg, #5603ad, #9d03ad); }
.gradient-bg-18 { background: linear-gradient(135deg, #ff8d72, #ff6491); }
.gradient-bg-19 { background: linear-gradient(135deg, #2dce89, #11cdef); }
.gradient-bg-20 { background: linear-gradient(135deg, #fb6340, #f5365c); }
.gradient-bg-21 { background: linear-gradient(135deg, #5e72e4, #825ee4); }
.gradient-bg-22 { background: linear-gradient(135deg, #11cdef, #1171ef); }
.gradient-bg-23 { background: linear-gradient(135deg, #fb6340, #fbb140); }
.gradient-bg-24 { background: linear-gradient(135deg, #2dce89, #2dceb3); }

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

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

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

.logo-icon {
    height: 40px;
    width: 180px;
}

.main-nav ul {
    display: flex;
}

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

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.main-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(94, 114, 228, 0.1);
}

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

.search-box input {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px 0 0 20px;
    width: 200px;
    outline: none;
}

.search-btn {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: var(--transition);
}

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

/* 横幅区域样式 */
.banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 114, 228, 0.9), rgba(130, 94, 228, 0.9));
    z-index: -1;
}

.banner-content {
    color: white;
    max-width: 600px;
    z-index: 1;
}

.banner h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* 影戏卡片样式 */
.movie-section, .tvshow-section, .variety-section, .anime-section {
    padding: 50px 0;
}

.movie-grid, .tvshow-grid, .variety-grid, .anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.movie-card, .tvshow-card, .variety-card, .anime-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.movie-card:hover, .tvshow-card:hover, .variety-card:hover, .anime-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.movie-poster, .tvshow-poster, .variety-poster, .anime-poster {
    height: 280px;
    width: 100%;
    position: relative;
}

.movie-info, .tvshow-info, .variety-info, .anime-info {
    padding: 15px;
}

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

.movie-meta, .tvshow-meta, .variety-meta, .anime-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 8px;
}

.rating {
    color: var(--accent-color);
    font-weight: 600;
}

.movie-info p, .tvshow-info p, .variety-info p, .anime-info p {
    font-size: 13px;
    color: var(--light-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 排行模范式 */
.ranking-section {
    padding: 50px 0;
    background-color: white;
}

.ranking-tabs {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.tab-header {
    display: flex;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-item.active {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.ranking-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.ranking-list li:last-child {
    border-bottom: none;
}

.rank {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 600;
    font-size: 14px;
}

.ranking-list li:nth-child(1) .rank {
    background-color: #f5365c;
    color: white;
}

.ranking-list li:nth-child(2) .rank {
    background-color: #fb6340;
    color: white;
}

.ranking-list li:nth-child(3) .rank {
    background-color: #ffd600;
    color: white;
}

.ranking-list a {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
}

.heat {
    font-size: 12px;
    color: var(--light-text);
}

/* APP下载区域样式 */
.app-section {
    padding: 70px 0;
    background-color: var(--dark-bg);
    color: white;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.app-info {
    flex: 1;
}

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

.app-info p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}

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

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

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.app-download {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

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

.android-icon, .ios-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-color: white;
    border-radius: 5px;
}

.qrcode {
    text-align: center;
}

.qrcode-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    border-radius: 5px;
}

.app-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-screenshot {
    width: 280px;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* 文章区域样式 */
.article-section {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.article-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-card p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
}

/* 关于ca88区域样式 */
.about-section {
    padding: 50px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

.email-icon, .phone-icon, .address-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.about-image {
    flex: 1;
    height: 400px;
    border-radius: 10px;
}

/* 友情链接样式 */
.friend-links {
    padding: 30px 0;
    background-color: var(--light-bg);
}

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

.friend-links a {
    color: var(--light-text);
    font-size: 14px;
}

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

/* 页脚样式 */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-logo {
    max-width: 250px;
}

.footer-logo p {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

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

.footer-nav-col h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

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

.footer-nav-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-nav-col a:hover {
    color: white;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.qrcode-small {
    width: 100px;
    height: 100px;
    margin-top: 15px;
    border-radius: 5px;
}

.qrcode-small p {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .app-content {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    
    .main-nav {
        margin: 15px 0;
        width: 100%;
        overflow-x: auto;
    }
    
    .main-nav ul {
        width: max-content;
    }
    
    .search-box {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .search-box input {
        flex: 1;
    }
    
    .banner {
        height: 400px;
    }
    
    .banner h1 {
        font-size: 32px;
    }
    
    .movie-grid, .tvshow-grid, .variety-grid, .anime-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .banner-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-btns .btn {
        width: 100%;
    }
    
    .movie-grid, .tvshow-grid, .variety-grid, .anime-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-download {
        flex-direction: column;
    }
}
<!--耗时1781375416.4962秒-->