/* 基础样式重置 */
* {
    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;
}

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

ul, ol {
    list-style: none;
}

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

/* 容器样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 按钮样式 */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FF6B81;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 129, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #FF6B81;
    color: #FF6B81;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #FF6B81;
    color: #fff;
}

/* 渐变盒子替换图片 */
.gradient-box {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.gradient-1 {
    background: linear-gradient(45deg, #FF6B81, #ff4757);
    height: 400px;
}

.gradient-2 {
    background: linear-gradient(45deg, #5352ed, #3742fa);
    height: 400px;
}

.gradient-3 {
    background: linear-gradient(45deg, #1dd1a1, #10ac84);
    height: 400px;
}

.gradient-4, .gradient-5, .gradient-6, .gradient-7, .gradient-8, .gradient-9 {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    height: 200px;
}

.gradient-5 {
    background: linear-gradient(45deg, #48dbfb, #0abde3);
}

.gradient-6 {
    background: linear-gradient(45deg, #feca57, #ff9f43);
}

.gradient-7 {
    background: linear-gradient(45deg, #54a0ff, #2e86de);
}

.gradient-8 {
    background: linear-gradient(45deg, #ff6b6b, #ee5253);
}

.gradient-9 {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
}

.gradient-10, .gradient-11, .gradient-12, .gradient-13, .gradient-14 {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    height: 120px;
    width: 120px;
}

.gradient-11 {
    background: linear-gradient(45deg, #48dbfb, #0abde3);
}

.gradient-12 {
    background: linear-gradient(45deg, #feca57, #ff9f43);
}

.gradient-13 {
    background: linear-gradient(45deg, #54a0ff, #2e86de);
}

.gradient-14 {
    background: linear-gradient(45deg, #ff6b6b, #ee5253);
}

.gradient-15, .gradient-16, .gradient-17, .gradient-18, .gradient-19, .gradient-20, .gradient-21, .gradient-22 {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
    height: 150px;
}

.gradient-16 {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
}

.gradient-17 {
    background: linear-gradient(45deg, #ff6b6b, #ee5253);
}

.gradient-18 {
    background: linear-gradient(45deg, #feca57, #ff9f43);
}

.gradient-19 {
    background: linear-gradient(45deg, #54a0ff, #2e86de);
}

.gradient-20 {
    background: linear-gradient(45deg, #1dd1a1, #10ac84);
}

.gradient-21 {
    background: linear-gradient(45deg, #5352ed, #3742fa);
}

.gradient-22 {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
}

.gradient-23, .gradient-24 {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
    height: 300px;
}

.gradient-24 {
    background: linear-gradient(45deg, #54a0ff, #2e86de);
}

.gradient-25, .gradient-26, .gradient-27, .gradient-28, .gradient-29, .gradient-30 {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    height: 180px;
}

.gradient-26 {
    background: linear-gradient(45deg, #48dbfb, #0abde3);
}

.gradient-27 {
    background: linear-gradient(45deg, #feca57, #ff9f43);
}

.gradient-28 {
    background: linear-gradient(45deg, #54a0ff, #2e86de);
}

.gradient-29 {
    background: linear-gradient(45deg, #ff6b6b, #ee5253);
}

.gradient-30 {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
}

.gradient-31 {
    background: linear-gradient(45deg, #1dd1a1, #10ac84);
    height: 150px;
    width: 150px;
}

.gradient-32 {
    background: linear-gradient(45deg, #FF6B81, #ff4757);
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 107, 129, 0.3);
}

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

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

.logo a {
    display: flex;
    align-items: center;
    color: #333;
}

.logo h1 {
    font-size: 24px;
    margin-left: 10px;
    color: #FF6B81;
}

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

#main-nav ul {
    display: flex;
}

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

#main-nav a {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}

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

/* 轮播图样式 */
.banner-section {
    padding: 40px 0;
}

.banner-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-slide {
    display: none;
}

.banner-slide.active {
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
}

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

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

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #fff;
}

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

.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: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FF6B81;
}

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

.bg-light {
    background-color: #f1f2f6;
}

.bg-primary {
    background-color: #FF6B81;
    color: #fff;
}

/* 最新更新区域样式 */
.comic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

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

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

.comic-info {
    padding: 15px;
}

.comic-info h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

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

.tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f1f2f6;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
    color: #666;
}

/* 热门漫画区域样式 */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ranking-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
    align-items: center;
}

.rank {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B81;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.ranking-info {
    flex: 1;
    margin-left: 15px;
}

.ranking-info h3 {
    margin-bottom: 5px;
}

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

.ranking-info .desc {
    font-size: 14px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stats {
    display: flex;
    gap: 15px;
}

.stats span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #777;
}

.stats i {
    margin-right: 5px;
    color: #FF6B81;
}

/* 分类专区样式 */
.category-tabs {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-header {
    display: flex;
    background-color: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tab-item:hover {
    color: #FF6B81;
}

.tab-item.active {
    background-color: #FF6B81;
    color: #fff;
}

.tab-content {
    padding: 20px;
}

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

.category-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.category-card h3 {
    padding: 10px;
    font-size: 16px;
    text-align: center;
}

.category-card .tag {
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    width: max-content;
}

/* 原创精选样式 */
.original-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.showcase-item {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.showcase-content .author {
    color: #777;
    margin-bottom: 15px;
}

.showcase-content .desc {
    margin-bottom: 20px;
    line-height: 1.8;
}

.showcase-content .tags {
    margin-bottom: 20px;
}

/* 漫画资讯样式 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

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

.news-content {
    padding: 20px;
}

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

.news-content .date {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-content .excerpt {
    color: #555;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.read-more {
    color: #FF6B81;
    font-weight: 500;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* APP下载区域样式 */
.download-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.download-content {
    flex: 1;
}

.download-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.download-content .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-list {
    margin-bottom: 30px;
}

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

.feature-list i {
    margin-right: 10px;
}

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

.btn-download {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #FF6B81;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-download i {
    margin-right: 10px;
    font-size: 20px;
}

.btn-download:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.qrcode {
    text-align: center;
    width: 150px;
}

.qrcode p {
    margin-top: 10px;
    font-size: 14px;
}

.app-preview {
    flex: 1;
    max-width: 300px;
}

/* 关于ca88样式 */
.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B81;
    margin-bottom: 5px;
}

.stat-label {
    color: #777;
}

/* 页脚样式 */
#footer {
    background-color: #2f3542;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    margin-bottom: 40px;
}

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

.footer-logo span {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 600;
}

.footer-nav {
    flex: 3;
    display: flex;
    justify-content: space-between;
}

.footer-nav-column h3 {
    color: #FF6B81;
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-nav-column ul li a {
    color: #dfe4ea;
    font-size: 14px;
}

.footer-nav-column ul li a:hover {
    color: #FF6B81;
}

.footer-middle {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle h3 {
    color: #FF6B81;
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-middle ul li a, .footer-middle ul a {
    color: #dfe4ea;
    font-size: 14px;
}

.footer-middle ul li a:hover, .footer-middle ul a:hover {
    color: #FF6B81;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #a4b0be;
}

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

.footer-bottom a {
    color: #a4b0be;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #FF6B81;
}

/* 图标样式 */
.icon-eye, .icon-like, .icon-check, .icon-android, .icon-apple {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    mask-size: cover;
    -webkit-mask-size: cover;
}

.icon-eye {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
}

.icon-like {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.icon-check {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.icon-android {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71-.2-.2-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C6.97 3.26 6 5.01 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71-.2-.2-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C6.97 3.26 6 5.01 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z'/%3E%3C/svg%3E");
}

.icon-apple {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.53 4.08zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.53 4.08zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.53 4.08zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/%3E%3C/svg%3E");
}

/* 响应式样式 */
@media (max-width: 992px) {
    .download-wrapper {
        flex-direction: column;
    }
    
    .app-preview {
        max-width: 100%;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-stats {
        width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
    }
    
    .footer-nav-column {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    #header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    #main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #main-nav li {
        margin: 5px;
    }
    
    .banner-content {
        left: 20px;
        max-width: 80%;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .showcase-item {
        flex-direction: column;
    }
    
    .showcase-item.reverse {
        flex-direction: column;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .footer-nav-column {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .comic-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* 透明轮播配景 */
.banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.banner-content {
    z-index: 2;
}

/* 优化图片SEO */
.gradient-box {
    position: relative;
}

.gradient-box::after {
    content: attr(alt);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}
<!--耗时1781375824.1792秒-->