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

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

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

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

a:hover {
    color: #ff4757;
}

ul {
    list-style: none;
}

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

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

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

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff6b81;
    margin: 10px auto 0;
}

.section-header p {
    color: #777;
    font-size: 16px;
}

/* 渐变配景 */
.gradient-bg {
    background: linear-gradient(135deg, #ff6b81, #ff4757);
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #ff6b81, #ff4757);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #7bed9f, #2ed573);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #70a1ff, #1e90ff);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #ffb8b8, #ff7f50);
}

.gradient-bg-5 {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
}

.gradient-bg-6 {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.gradient-bg-7 {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.gradient-bg-8 {
    background: linear-gradient(135deg, #c8d6e5, #8395a7);
}

.gradient-bg-9 {
    background: linear-gradient(135deg, #feca57, #ff9f43);
}

.gradient-bg-10 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.gradient-bg-11 {
    background: linear-gradient(135deg, #55efc4, #00b894);
}

.gradient-bg-12 {
    background: linear-gradient(135deg, #81ecec, #00cec9);
}

.gradient-bg-13 {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.gradient-bg-14 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.gradient-bg-15 {
    background: linear-gradient(135deg, #ff7675, #d63031);
}

.gradient-bg-16 {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.gradient-bg-17 {
    background: linear-gradient(135deg, #55efc4, #00b894);
}

.gradient-bg-18 {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.gradient-bg-19 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.gradient-bg-20 {
    background: linear-gradient(135deg, #ff6b81, #ff4757);
}

.gradient-bg-21 {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.gradient-bg-22 {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.gradient-bg-23 {
    background: linear-gradient(135deg, #feca57, #ff9f43);
}

.gradient-bg-24 {
    background: linear-gradient(135deg, #55efc4, #00b894);
}

.gradient-bg-25 {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.gradient-bg-26 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.gradient-bg-27 {
    background: linear-gradient(135deg, #ff6b81, #ff4757);
}

.gradient-bg-28 {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

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

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

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

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

.main-nav ul {
    display: flex;
}

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

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

.main-nav a:hover {
    color: #ff6b81;
    background-color: rgba(255, 107, 129, 0.1);
}

/* 横幅区域样式 */
.banner {
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-content {
    position: relative;
    z-index: 1;
}

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

.banner .slogan {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.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: 16px;
}

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

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

/* 热门推荐区域样式 */
.popular-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

.manga-cover {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.manga-info {
    padding: 20px;
}

.manga-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.manga-info .author {
    color: #777;
    margin-bottom: 5px;
    font-size: 14px;
}

.manga-info .tags {
    color: #999;
    margin-bottom: 10px;
    font-size: 14px;
}

.manga-info .rating {
    color: #ff9f43;
    font-weight: 500;
}

/* 漫画分类区域样式 */
.categories-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

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

.category-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.category-item p {
    color: #777;
    font-size: 14px;
}

/* 最新更新区域样式 */
.update-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

.update-cover {
    width: 100px;
    height: 150px;
    background-size: cover;
    background-position: center;
}

.update-info {
    padding: 15px;
    flex: 1;
}

.update-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.update-info .chapter {
    color: #777;
    margin-bottom: 5px;
    font-size: 14px;
}

.update-info .time {
    color: #999;
    font-size: 12px;
}

/* 排行榜区域样式 */
.ranking-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ranking-tabs {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-header {
    display: flex;
    background-color: #f1f2f6;
}

.tab {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.tab.active {
    background-color: #fff;
    color: #ff6b81;
    border-bottom: 2px solid #ff6b81;
}

.tab-content {
    display: none;
    padding: 20px;
}

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

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.ranking-item:hover {
    transform: translateX(5px);
    background-color: #f1f2f6;
}

.rank {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6b81;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
}

.ranking-item .manga-cover {
    width: 60px;
    height: 80px;
    border-radius: 4px;
    margin-right: 15px;
}

.ranking-item .manga-info {
    flex: 1;
}

.ranking-item .manga-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.ranking-item .views {
    color: #777;
    font-size: 14px;
}

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

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

.app-info {
    flex: 1;
}

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

.app-desc {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

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

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

.feature-icon {
    width: 20px;
    height: 20px;
    background-color: #ff6b81;
    border-radius: 50%;
    margin-right: 10px;
}

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

.download-btn {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #333;
    color: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 15px;
}

.btn-text span {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.btn-text small {
    font-size: 12px;
    opacity: 0.8;
}

.app-preview {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* 文章区域样式 */
.articles-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

.article-cover {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 20px;
}

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

.article-excerpt {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #ff6b81;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

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

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

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

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

/* 页脚区域样式 */
footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 30px;
}

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

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

.footer-nav h3,
.footer-contact h3,
.footer-download h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
}

.footer-nav h3::after,
.footer-contact h3::after,
.footer-download h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ff6b81;
    margin-top: 10px;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff6b81;
}

.footer-contact li {
    color: #aaa;
}

.qrcode {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.footer-download p {
    color: #aaa;
    font-size: 14px;
}

.footer-links {
    margin-bottom: 50px;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
}

.footer-links h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ff6b81;
    margin-top: 10px;
}

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

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b81;
}

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

.copyright {
    color: #777;
    font-size: 14px;
}

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

.footer-policy a {
    color: #777;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: #ff6b81;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .app-content,
    .about-content {
        flex-direction: column;
    }
    
    .app-preview,
    .about-image {
        width: 100%;
        margin-top: 30px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .banner h1 {
        font-size: 32px;
    }
    
    .banner .slogan {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
<!--耗时1781687784.8763秒-->