/* 重置样式 */
* {
    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: #ff6600;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff3300;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

ul, ol {
    list-style: none;
}

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

/* 头部样式 */
.site-header {
    background-color: #ff6600;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
}

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

.main-nav a {
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 通用部分样式 */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #ff6600;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6600;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #ff6600;
    color: #fff;
}

.btn.primary:hover {
    background-color: #ff3300;
}

.btn.secondary {
    background-color: #fff;
    color: #ff6600;
    border: 1px solid #ff6600;
}

.btn.secondary:hover {
    background-color: #fff3e0;
}

/* 英雄区域样式 */
.hero-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.hero-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #ff6600;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-image {
    flex: 1;
}

.hero-text {
    flex: 1;
}

.hero-text .highlight {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.hero-text .buttons {
    display: flex;
    gap: 15px;
}

/* 剧情简介区域样式 */
.drama-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.drama-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.drama-image {
    flex: 1;
}

.drama-text {
    flex: 1;
}

.drama-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 剧集列表区域样式 */
.episodes-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.episode-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.episode-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.episode-info {
    padding: 20px;
}

.episode-info h3 {
    margin-bottom: 10px;
    color: #ff6600;
}

.episode-info p {
    margin-bottom: 15px;
    color: #666;
}

.btn.watch {
    background-color: #ff6600;
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
}

.btn.watch:hover {
    background-color: #ff3300;
}

/* 演员阵容区域样式 */
.actors-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

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

.actor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.actor-info {
    padding: 15px;
    text-align: center;
}

.actor-info h3 {
    margin-bottom: 5px;
    color: #ff6600;
}

.actor-info p {
    color: #666;
    margin-bottom: 5px;
}

/* 观众评价区域样式 */
.reviews-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.review-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.rating {
    color: #ffb400;
}

.review-body p {
    color: #555;
    line-height: 1.7;
}

/* 相关推荐区域样式 */
.recommend-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

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

.recommend-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.recommend-info {
    padding: 20px;
}

.recommend-info h3 {
    margin-bottom: 10px;
    color: #ff6600;
}

.recommend-info p {
    color: #666;
    margin-bottom: 15px;
    min-height: 70px;
}

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

.download-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.download-info {
    flex: 1;
}

.download-info p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.download-info ul {
    margin-bottom: 30px;
}

.download-info ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.download-info ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6600;
}

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

.download-image {
    flex: 1;
}

/* 文章区域样式 */
.article-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.article-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.article-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-item h3 {
    margin-bottom: 15px;
    color: #ff6600;
    font-size: 22px;
}

.article-item p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

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

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

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff6600;
}

.footer-links h4, .footer-contact h4 {
    color: #ff6600;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-links ul li a:hover {
    color: #ff6600;
}

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

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

.social-icon {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff6600;
}

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

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

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-content, .drama-content, .download-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-section h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .episodes-grid, .actors-grid, .reviews-content, .recommend-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 26px;
    }
}
