/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #4a4cda;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* 顶部导航栏 */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

header .logo {
    display: flex;
    align-items: center;
}

 
.logo img {
    height: 66px;
    width: auto;
}

nav {
    display: flex;
    align-items: stretch;
    height: 100%;
}

nav ul {
    display: flex;
    height: 100%;
}

nav ul li {
    height: 100%;
    display: flex;
    align-items: stretch;
    margin: 0 5px;
    position: relative;
}

/* header nav ul li:first-child {
    margin-left: 0;
} */

nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 0 18px;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    transition: color 0.3s;
    font-size: 18px;
}

nav ul li a:hover {
    color: #0066cc;
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    top: 0;
    left: 0;
    background-color: #fa7900;
    transition: all 0.3s ease;
    z-index: 101;
}

nav ul li a.active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background-color: #fa7900;
    z-index: 101;
}

nav ul li a:hover::before {
    width: 100%;
}

nav ul li a.active {
    color: #0066cc;
}
nav ul li a.home-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a.home-link i {
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header .container {
        padding: 10px 15px;
    }

    header .logo img {
        height: 35px;
    }
    header .logo {
        display: none;
    }

    header nav ul li {
        margin-left: 20px;
    }

    header nav ul li a {
        font-size: 15px;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    /* 调整移动端内容区域的宽度 */
    .hero-content,
    .advantages-grid,
    .pricing-cards,
    .footer-content {
        width: 100%;
        padding: 0;
    }

    /* 调整移动端产品卡片 */
    .pricing-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }

    /* 调整移动端按钮 */
    .cta-button {
        width: 100%;
        text-align: center;
    }

    /* 调整移动端特性项 */
    .feature-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 8px 12px;
    }
    header .logo {
        display: none;
    }

    header .logo img {
        height: 30px;
    }

    header nav ul li {
        margin-left: 15px;
    }

    header nav ul li a {
        font-size: 13px;
    }
}

/* Hero区域 */
.hero {
    padding: 140px 0 60px;
    /* background: linear-gradient(135deg, #f78234 0%, #fa611a 100%); */
    color: #fff;
    text-align: center;
    background: 
    radial-gradient(circle at center, 
      #ff830f 0%, 
      #f78234 60%, 
      #c45800 100%),
    linear-gradient(65deg, 
      transparent 40%, 
      rgba(245, 192, 47, 0.2) 50%,
      transparent 60%);


}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #fff;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 20px;
    color: #ffffff;
}

.feature-item span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #ff6600;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 核心优势 */
.advantages {
    padding: 60px 0;
    background: #fff;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.4);
}

.advantage-card i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 20px;
}

.advantage-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* 功能特点 */
.features {
    padding: 60px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.feature-icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* 版本对比 */
.pricing {
    padding: 60px 0;
    background: #fff;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border: 1px solid #ff6600;
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff6600;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 28px;
    color: #ff6600;
    margin-bottom: 15px;
}

.pricing-card .price span {
    font-size: 14px;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #ff6600;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.pricing-card .btn:hover {
    background: #d32b2b;
}

/* 底部 */
footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #8b8b8b;
    font-size: 14px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ccc;
    
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #8b8b8b;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact h3 {
    text-align: right;
    color: #ccc;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #8b8b8b;
    font-size: 14px;
    text-align: right;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.advantage-card,
.feature-item,
.pricing-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* 版本对比页面样式 */
.comparison-hero {
    height: 250px;
    padding: 0;
}

.comparison-hero .hero-content {
    padding: 125px 0;
}
 

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.comparison-table th:first-child {
    text-align: left;
    width: 200px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .version-header {
    background: #ff6600;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
}

.comparison-table .version-price {
    font-size: 16px;
    color: #fff;
    margin-top: 5px;
    opacity: 0.9;
}

.comparison-table .check {
    color: #4CAF50;
    font-size: 20px;
}

.comparison-table .dash {
    color: #999;
    font-size: 20px;
}

.comparison-table .partial {
    color: #FFA726;
    font-size: 20px;
}

.comparison-table tr:hover {
    background: #fafafa;
}

@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .comparison-table .version-header {
        font-size: 16px;
        padding: 15px;
    }
}

/* 购买页面样式 */
.purchase-hero {
    height: 250px;
    padding: 0;
}

.purchase-hero .hero-content {
    padding: 125px 0;
}

.purchase-process {
    padding: 60px 0;
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 36px;
    color: #fff;
}

.step h3 {
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 1px solid #ff6600;
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff6600;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.pricing-card h3 {
    color: #333;
    margin-bottom: 20px;
}

.price {
    font-size: 36px;
    color: #ff6600;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.contact-form {
    padding: 60px 0;
    background: #f8f9fa;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6600;
}

.payment-info {
    padding: 60px 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-method {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.payment-method i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 20px;
}

.payment-method h3 {
    color: #333;
    margin-bottom: 15px;
}

.payment-method p {
    color: #666;
    margin: 5px 0;
}

.payment-notice {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.payment-notice p {
    color: #666;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .step {
        margin-bottom: 30px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* 支付按钮部分 */
.payment-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.payment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff6600;
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.payment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    color: #fff;
}

.payment-button i {
    font-size: 28px;
}

/* 联系客服部分 */
.contact-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4CAF50;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: #fff;
}

.contact-button i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .payment-button {
        padding: 15px 40px;
        font-size: 20px;
    }

    .payment-button i {
        font-size: 24px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-info p {
        font-size: 16px;
    }

    .contact-button {
        padding: 12px 30px;
        font-size: 18px;
    }

    .contact-button i {
        font-size: 20px;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .pricing-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 20px;
    }

    .pricing-card {
        flex: 0 1 calc(50% - 20px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: stretch;
        padding: 0 15px;
    }

    .pricing-card {
        flex: 0 1 100%;
        max-width: none;
        width: 100%;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-card .price {
        font-size: 28px;
    }

    .pricing-card ul li {
        font-size: 14px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .pricing-cards {
        padding: 0 10px;
        width: 100%;
    }

    .pricing-card {
        padding: 15px;
        margin: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .pricing-card h3 {
        font-size: 18px;
    }

    .pricing-card .price {
        font-size: 24px;
    }

    .pricing-card ul li {
        font-size: 13px;
        padding: 6px 0;
    }
}

/* 功能特点 */
.features-detailed {
    padding: 60px 0;
    background: #f8f9fa;
}

.feature-detailed-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.feature-detailed-item.reverse {
    flex-direction: row-reverse;
}

.feature-detailed-image {
    flex: 1;
    min-width: 0;
}

.feature-detailed-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-detailed-content {
    flex: 1;
    min-width: 0;
}

.feature-detailed-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.feature-detailed-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.feature-list li::before {
    content: "•";
    color: #ff6600;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .feature-detailed-item {
        flex-direction: column !important; /* 强制垂直排列 */
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-detailed-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .feature-detailed-content {
        width: 100%;
    }

    .feature-detailed-content h2 {
        font-size: 20px;
        text-align: center;
    }

    .feature-detailed-content p {
        text-align: center;
    }

    .feature-list {
        padding: 0 15px;
    }
} 