/* 全局样式 */
* {
    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: #333;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #FF5722;
    color: white;
}

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

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid white;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

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

.section-header h2 {
    font-size: 24px;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #FF5722;
    border-radius: 3px;
}

.more-link {
    color: #666;
    font-size: 14px;
}

.more-link:hover {
    color: #FF5722;
}

/* 渐变配景 */
.gradient-1 { background: linear-gradient(135deg, #FF9A8B, #FF6B95); }
.gradient-2 { background: linear-gradient(135deg, #FCCF31, #F55555); }
.gradient-3 { background: linear-gradient(135deg, #5EFCE8, #736EFE); }
.gradient-4 { background: linear-gradient(135deg, #FAD961, #F76B1C); }
.gradient-5 { background: linear-gradient(135deg, #43CBFF, #9708CC); }
.gradient-6 { background: linear-gradient(135deg, #5EE7DF, #B490CA); }
.gradient-7 { background: linear-gradient(135deg, #D4FC79, #96E6A1); }
.gradient-8 { background: linear-gradient(135deg, #FA709A, #FEE140); }
.gradient-9 { background: linear-gradient(135deg, #FF9A9E, #FECFEF); }
.gradient-10 { background: linear-gradient(135deg, #F6D365, #FDA085); }
.gradient-11 { background: linear-gradient(135deg, #FDFCFB, #E2D1C3); }
.gradient-12 { background: linear-gradient(135deg, #4FACFE, #00F2FE); }
.gradient-13 { background: linear-gradient(135deg, #A1C4FD, #C2E9FB); }
.gradient-14 { background: linear-gradient(135deg, #FAACA8, #DDD6F3); }
.gradient-15 { background: linear-gradient(135deg, #FDDB92, #D1FDFF); }
.gradient-16 { background: linear-gradient(135deg, #9890E3, #B1F4CF); }
.gradient-17 { background: linear-gradient(135deg, #E2B0FF, #9F44D3); }
.gradient-18 { background: linear-gradient(135deg, #F97794, #623AA2); }
.gradient-19 { background: linear-gradient(135deg, #81FBB8, #28C76F); }
.gradient-20 { background: linear-gradient(135deg, #FEC163, #DE4313); }
.gradient-21 { background: linear-gradient(135deg, #92FE9D, #00C9FF); }
.gradient-22 { background: linear-gradient(135deg, #FFF6B7, #F6416C); }
.gradient-23 { background: linear-gradient(135deg, #FFDB01, #0E197D); }
.gradient-app { background: linear-gradient(135deg, #FF6B6B, #556270); }
.qr-gradient { background: linear-gradient(135deg, #000000, #434343); }

/* 导航栏 */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    width: 150px;
}

.logo {
    width: 100%;
    height: auto;
}

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

.nav-links li a {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-links li a:hover {
    color: #FF5722;
    background-color: rgba(255, 87, 34, 0.1);
}

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

.search-box input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px 0 0 20px;
    outline: none;
    width: 200px;
}

.search-btn {
    padding: 8px 15px;
    background-color: #FF5722;
    color: white;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

/* 主横幅 */
.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF5722, #FF9800);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/template/news/140a97sp/static/css/'data:image/svg+xml;utf8,<svg xmlns="http:/www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(0,0,0,0.2)" points="0,100 100,0 100,100"/></svg>');
    background-size: cover;
}

.hero-content {
    padding: 0 10%;
    max-width: 800px;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* 卡片样式 */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-image {
    height: 250px;
    width: 100%;
}

.card-info {
    padding: 15px;
}

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

.card-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.rating, .tag {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    background-color: #FF5722;
    color: white;
}

/* 各内容区域 */
section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.hot-section, .new-section, .variety-section, .anime-section {
    background-color: white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

/* APP下载区域 */
.app-download {
    background-color: #1A237E;
    color: white;
    padding: 60px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-content {
    max-width: 600px;
}

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

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

.app-features {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.app-features li {
    font-size: 16px;
}

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

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    background-color: white;
    color: #1A237E;
}

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

.qr-code {
    width: 120px;
    height: 120px;
    margin-top: 20px;
    text-align: center;
}

.qr-code .qr-gradient {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

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

.app-image {
    width: 300px;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 新闻区域 */
.news-section {
    background-color: white;
    padding: 40px 5%;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-image {
    flex: 0 0 200px;
    height: 150px;
    border-radius: 10px;
}

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

.news-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

/* 用户评价区域 */
.testimonial-section {
    padding: 60px 5%;
    text-align: center;
    background-color: #f9f9f9;
}

.testimonial-section h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 350px;
    text-align: left;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
}

/* 页脚 */
footer {
    background-color: #263238;
    color: white;
    padding: 60px 5% 30px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #FF5722;
}

.footer-section p {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

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

.footer-section ul li a {
    color: #ccc;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #FF5722;
}

.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section.subscribe form {
    display: flex;
    margin-bottom: 20px;
}

.footer-section.subscribe input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.footer-section.subscribe button {
    padding: 10px 15px;
    background-color: #FF5722;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #FF5722;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 14px;
}

.friendship-links {
    text-align: center;
}

.friendship-links h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.friendship-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.friendship-links ul li a, .friendship-links ul a {
    color: #999;
    font-size: 12px;
}

.friendship-links ul li a:hover, .friendship-links ul a:hover {
    color: #FF5722;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .app-download {
        flex-direction: column;
        gap: 40px;
    }
    
    .app-image {
        width: 250px;
        height: 400px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .card-image {
        height: 200px;
    }
    
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
<!--耗时1781365922.046秒-->