/* 全局样式 */
:root {
    --primary-color: #4a6bff;
    --secondary-color: #6c757d;
    --accent-color: #ff6b6b;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #3a56d4;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #3a56d4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 107, 255, 0.2);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #f0f3ff;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

/* 头部样式 */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* 英雄区域样式 */
.hero {
    padding: 80px 0;
    background-color: #f8f9ff;
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 0 0 auto;
    margin-left: 40px;
}

/* 特点概览样式 */
.features-overview {
    padding: 100px 0;
    background-color: white;
}

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

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f3ff;
    border-radius: 50%;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
}

.more-features {
    text-align: center;
}

/* 用户评价样式 */
.testimonials {
    padding: 100px 0;
    background-color: #f8f9ff;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 350px;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark-color);
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 下载CTA样式 */
.download-cta {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.download-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.download-cta p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.download-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.download-cta .btn-primary:hover {
    background-color: #f0f0f0;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

/* 页脚样式 */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.link-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: white;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial {
        flex: none;
        width: 100%;
    }

    .hero-image {
        margin-left: 0;
    }

    nav {
        display: none;
    }
}

/* 功能特点页面样式 */
.page-header {
    background-color: #f8f9ff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-detail {
    padding: 80px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
}

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

.feature-image {
    flex: 1;
    max-width: 500px;
}

.feature-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-description {
    flex: 1;
}

.feature-description h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.feature-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-description ul {
    list-style: none;
}

.feature-description ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-description ul li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .feature-item, .feature-item.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-image, .feature-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .feature-description h2 {
        font-size: 1.8rem;
    }
}

/* 使用指南页面样式 */
.guide-content {
    padding: 80px 0;
}

.guide-section {
    margin-bottom: 80px;
}

.guide-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.guide-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.guide-image {
    flex: 0 0 45%;
}

.guide-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.guide-text {
    flex: 1;
}

.guide-text.full-width {
    flex: 0 0 100%;
}

.guide-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.guide-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.guide-text ul, .guide-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.guide-text li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.guide-text .btn {
    margin-top: 10px;
}

/* FAQ 样式 */
.faq {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.faq-question h3:before {
    content: "Q:";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.faq-answer {
    padding-left: 30px;
    position: relative;
}

.faq-answer:before {
    content: "A:";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .guide-item {
        flex-direction: column;
        gap: 30px;
    }
    
    .guide-image {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .guide-section h2 {
        font-size: 1.8rem;
    }
    
    .guide-text h3 {
        font-size: 1.3rem;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
}

/* 关于我们页面样式 */
.about-story {
    padding: 80px 0;
}

.about-story .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 0 0 45%;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* 使命部分样式 */
.about-mission {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.mission-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
    text-align: center;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    flex: 0 0 80px;
    height: 80px;
    background-color: #f0f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.mission-icon img {
    width: 40px;
    height: 40px;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* 联系我们部分样式 */
.contact-us {
    padding: 80px 0;
}

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

.contact-item {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 250px;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: #f0f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon img {
    width: 30px;
    height: 30px;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-text a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-text a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .about-story .container {
        flex-direction: column;
    }
    
    .about-image {
        flex: 0 0 100%;
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .mission-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mission-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-item {
        flex: 0 0 100%;
    }
}

/* 技术支持页面样式 */
.support-content {
    padding: 80px 0;
}

.support-section {
    margin-bottom: 60px;
}

.support-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.support-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.support-section ul, .support-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.support-section li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.support-section a {
    color: var(--primary-color);
    transition: var(--transition);
}

.support-section a:hover {
    text-decoration: underline;
}

/* 技术支持页面的 FAQ 样式 */
.support-content .faq-item {
    background-color: white;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.support-content .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-content .faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.support-content .faq-answer p {
    margin-bottom: 15px;
}

.support-content .faq-answer p strong {
    color: var(--dark-color);
}

.support-content .faq-answer ol, 
.support-content .faq-answer ul {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* 版本信息样式 */
.support-section:last-child {
    background-color: #f8f9ff;
    padding: 30px;
    border-radius: 12px;
}

.support-section:last-child h2 {
    border-left: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.support-section:last-child ul {
    list-style-type: none;
    padding-left: 0;
}

.support-section:last-child li {
    display: inline-block;
    margin-right: 30px;
    padding: 10px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .support-section h2 {
        font-size: 1.8rem;
    }
    
    .support-content .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .support-section:last-child li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* 隐私政策页面样式 */
.privacy-content {
    padding: 60px 0 80px;
}

.privacy-section {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f3ff;
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.privacy-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-section ul, 
.privacy-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.privacy-section li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.privacy-section a {
    color: var(--primary-color);
    transition: var(--transition);
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-section strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* 页面标题特殊样式 */
.privacy-content + .page-header p {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
}

/* 用户协议页面样式 */
.terms-content {
    padding: 60px 0 80px;
    background-color: #f8f9ff;
}

.terms-section {
    max-width: 800px;
    margin: 0 auto 30px;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.terms-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.terms-section ul, 
.terms-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.terms-section li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.8;
}

.terms-section a {
    color: var(--primary-color);
    transition: var(--transition);
}

.terms-section a:hover {
    text-decoration: underline;
}

/* 编号样式 */
.terms-section h2 {
    position: relative;
}

/* 页面标题特殊样式 */
.page-header p {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* 打印样式 */
@media print {
    .terms-section {
        box-shadow: none;
        border: 1px solid #eaeaea;
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    header, footer, .page-header {
        display: none;
    }
    
    .terms-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.4rem;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 1rem;
    }
}

/* App Preview Carousel Styles */
.app-preview-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-preview-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.app-preview-carousel img.active {
    opacity: 1;
    z-index: 1;
}

/* 确保 hero-image 有合适的尺寸 */
.hero-image {
    width: 300px;
    height: 600px;
    position: relative;
}

@media (max-width: 768px) {
    .hero-image {
        width: 250px;
        height: 500px;
        margin: 20px auto 0;
    }
}

/* 订阅表格样式 */
.subscription-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.subscription-table th,
.subscription-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #eaeaea;
}

.subscription-table th {
    background-color: #f8f9ff;
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.subscription-table td {
    color: var(--text-color);
    font-size: 0.95rem;
}

.subscription-table tr:nth-child(even) {
    background-color: #fafafa;
}

.subscription-table tr:hover {
    background-color: #f5f5f5;
}

/* 响应式表格 */
@media (max-width: 768px) {
    .subscription-table {
        font-size: 0.9rem;
    }
    
    .subscription-table th,
    .subscription-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .subscription-table {
        font-size: 0.8rem;
    }
    
    .subscription-table th,
    .subscription-table td {
        padding: 6px 8px;
    }
}