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

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

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

a:hover {
    color: #FF6347;
}

ul {
    list-style: none;
}

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

/* 渐变配景 */
.gradient-bg-1 { background: linear-gradient(135deg, #FF8C00, #FF4500); }
.gradient-bg-2 { background: linear-gradient(135deg, #4169E1, #00BFFF); }
.gradient-bg-3 { background: linear-gradient(135deg, #9932CC, #8A2BE2); }
.gradient-bg-4 { background: linear-gradient(135deg, #32CD32, #00FA9A); }
.gradient-bg-5 { background: linear-gradient(135deg, #FF69B4, #FF1493); }
.gradient-bg-6 { background: linear-gradient(135deg, #1E90FF, #00FFFF); }
.gradient-bg-7 { background: linear-gradient(135deg, #FF6347, #FF4500); }
.gradient-bg-8 { background: linear-gradient(135deg, #6A5ACD, #483D8B); }
.gradient-bg-9 { background: linear-gradient(135deg, #DAA520, #B8860B); }
.gradient-bg-10 { background: linear-gradient(135deg, #FF00FF, #9370DB); }
.gradient-bg-11 { background: linear-gradient(135deg, #3CB371, #2E8B57); }
.gradient-bg-12 { background: linear-gradient(135deg, #FF7F50, #FF6347); }
.gradient-bg-13 { background: linear-gradient(135deg, #CD853F, #D2691E); }
.gradient-bg-14 { background: linear-gradient(135deg, #4682B4, #5F9EA0); }
.gradient-bg-15 { background: linear-gradient(135deg, #708090, #778899); }
.gradient-bg-16 { background: linear-gradient(135deg, #20B2AA, #48D1CC); }
.gradient-bg-17 { background: linear-gradient(135deg, #F08080, #CD5C5C); }
.gradient-bg-18 { background: linear-gradient(135deg, #9370DB, #8A2BE2); }
.gradient-bg-19 { background: linear-gradient(135deg, #FF4500, #FF8C00); }
.gradient-bg-20 { background: linear-gradient(135deg, #00BFFF, #1E90FF); }
.gradient-bg-21 { background: linear-gradient(135deg, #32CD32, #228B22); }
.gradient-bg-22 { background: linear-gradient(135deg, #FF69B4, #C71585); }
.gradient-bg-23 { background: linear-gradient(135deg, #4169E1, #0000CD); }
.gradient-bg-24 { background: linear-gradient(135deg, #FF8C00, #FF4500); }
.gradient-bg-25 { background: linear-gradient(135deg, #1E90FF, #4169E1); }
.gradient-bg-26 { background: linear-gradient(135deg, #FF6347, #FF4500); }
.gradient-bg-27 { background: linear-gradient(135deg, #32CD32, #228B22); }
.gradient-bg-28 { background: linear-gradient(135deg, #9932CC, #8A2BE2); }
.gradient-bg-29 { background: linear-gradient(135deg, #FF69B4, #C71585); }
.gradient-bg-30 { background: linear-gradient(135deg, #FF8C00, #FF4500); }
.gradient-bg-31 { background: linear-gradient(135deg, #4169E1, #0000CD); }

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

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

.logo a {
    display: block;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
}

.main-nav a:hover {
    background-color: #FF8C00;
    color: #fff;
}

/* 横幅区域 */
.banner {
    background-color: #FF8C00;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/template/news/34blyy/static/css/'data:image/svg+xml;utf8,<svg xmlns="http:/www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.2;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-box button {
    background-color: #FF4500;
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #E63E00;
}

/* 通用区块样式 */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #FF8C00;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FF8C00;
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
}

/* 剧集卡片样式 */
.drama-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.drama-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.drama-card:hover {
    transform: translateY(-10px);
}

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

.drama-info {
    padding: 20px;
}

.drama-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.drama-info p {
    color: #777;
    margin-bottom: 5px;
}

.rating, .update, .year {
    color: #FF8C00;
    font-weight: bold;
}

/* 分类区域样式 */
.category-section {
    background-color: #f9f9f9;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.category-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.category-item h3 {
    margin-bottom: 10px;
    color: #FF8C00;
}

.category-item p {
    color: #777;
    font-size: 0.9rem;
}

/* 排行模范式 */
.rank-section {
    background-color: #fff;
}

.tab-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-header span {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-header span.active {
    border-color: #FF8C00;
    color: #FF8C00;
    font-weight: bold;
}

.tab-pane {
    display: none;
}

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

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

.rank-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.rank-num {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF8C00;
    width: 40px;
    text-align: center;
}

.rank-poster {
    width: 80px;
    height: 120px;
    border-radius: 4px;
    margin: 0 20px;
}

.rank-info {
    flex: 1;
}

.rank-info h3 {
    margin-bottom: 10px;
}

.rank-info p {
    color: #777;
}

/* APP下载区域 */
.app-section {
    background-color: #FF8C00;
    color: #fff;
    padding: 80px 0;
}

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

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

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

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

.app-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.app-features li:before {
    content: '?';
    position: absolute;
    left: 0;
    color: #fff;
}

.app-download {
    display: flex;
    margin-top: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #FF8C00;
    padding: 12px 25px;
    border-radius: 4px;
    margin-right: 15px;
    font-weight: bold;
}

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

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

.qrcode-img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
    border: 10px solid #fff;
    border-radius: 10px;
}

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

.article-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
}

.article-img {
    width: 300px;
    background-size: cover;
    background-position: center;
}

.article-content {
    flex: 1;
    padding: 30px;
}

.article-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.article-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FF8C00;
    color: #fff;
    border-radius: 4px;
}

.read-more:hover {
    background-color: #FF6347;
    color: #fff;
}

/* 关于ca88区域 */
.about-section {
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.contact-info {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.contact-item {
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 10px;
    color: #FF8C00;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #FF8C00;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-middle {
    border-top: 1px solid #444;
    padding: 30px 0;
}

.footer-middle h4 {
    color: #FF8C00;
    margin-bottom: 20px;
    text-align: center;
}

.footer-middle ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-middle ul li {
    margin: 5px 10px;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .app-content {
        flex-direction: column;
    }
    
    .app-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .article-item {
        flex-direction: column;
    }
    
    .article-img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .banner h1 {
        font-size: 2rem;
    }
    
    .drama-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .drama-list {
        grid-template-columns: 1fr;
    }
    
    .category-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .download-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
<!--耗时1781375522.742秒-->