/* 价格页面样式 */
:root {
    /* --primary-color: #2563EB;
    --secondary-color: #3B82F6;
    --accent-color: #60A5FA; */
    --primary-color: #1785BB;
    --secondary-color: #1FA2E2;
    --accent-color: #51B3E4;

    --text-color: #1E293B;
    --light-bg: #F8FAFC;
    --white: #ffffff;
    --dark: #0F172A;
    
    /* 渐变色 */
    --gradient-1: linear-gradient(135deg, #2563EB, #3B82F6);
    --gradient-2: linear-gradient(135deg, #3B82F6, #60A5FA);
    --gradient-3: linear-gradient(135deg, #60A5FA, #2563EB);
    
    /* 玻璃态效果 */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* 阴影效果 */
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-bg);
}

/* 导航栏样式 */
.navbar {
    top: 0;
}

/* 价格页面主视觉 */
.pricing-hero {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://suanlix.com/assets/images/map.png') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hero-stats .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-buttons .cta-button {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .primary {
    background: #fff;
    color: var(--primary-color);
}

.hero-buttons .primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-buttons .secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-buttons .secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.hero-buttons .cta-button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.hero-buttons .cta-button:hover i {
    transform: translateY(-1px);
    transition: transform 0.3s ease;
}

/* 价格切换开关 */
.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* 价格方案卡片 */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

/* 价格卡片基础样式 */
.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
}

/* 左侧样式 */
.card-left {
    flex: 6;
    border-right: 1px solid #eee;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 右侧样式 */
.card-right {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 20px;
}

.billing-type {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* 价格样式 */
.pricing-price {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 0.5em;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-price .amount {
    font-size: 1em;
    margin-right: 2px;
}

.pricing-price .period {
    font-size: 0.4em;
    color: #666;
}

/* 会员价格样式 */
.member-price {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.member-price i {
    color: #ffd700;
    font-size: 1.2em;
}

.member-price .currency {
    font-size: 0.8em;
    vertical-align: super;
}

.member-price .amount {
    font-size: 1.5em;
    font-weight: bold;
}

.member-price .period {
    font-size: 0.8em;
    color: #666;
}

/* 特性列表样式 */
.pricing-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #444;
    font-size: 15px;
    line-height: 1.4;
    border-bottom: 1px dashed #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    width: 24px;
    margin-right: 12px;
    color: #82C41A;
    font-size: 16px;
    text-align: center;
}

/* 关机提示样式 */
.pricing-features .shutdown-notice {
    color: #ff4757;
    font-weight: 500;
}

.pricing-features .shutdown-notice i {
    color: #ff4757;
}

/* 按钮样式 */
.pricing-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

/* 功能对比表格 */
.features-comparison {
    padding: 6rem 5%;
    background: var(--white);
}

.features-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--card-shadow);
    border-radius: 12px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: 12px;
}

.comparison-table th:last-child {
    border-top-right-radius: 12px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.comparison-table i.fa-check {
    color: #22C55E;
}

.comparison-table i.fa-times {
    color: #EF4444;
}

/* FAQ部分 */
.faq-section {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 页脚样式 */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.subscribe-form button {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 30px 15px;
    }
    
    .pricing-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 10px;
    }
    
    .stat-item {
        width: 100%;
        margin: 5px 0;
        padding: 10px;
    }
    
    .hero-buttons .cta-button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-switch {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        padding: 20px;
        flex-direction: column;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }

    .nav-links .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 10px;
        padding: 10px;
        background: #f8f9fa;
    }

    .mobile-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1001;
        margin-right: 15px;
    }

    .mobile-menu span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #000;
        margin: 4px 0;
        transition: all 0.3s ease;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        z-index: 1000;
        padding: 10px 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu {
        display: none;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 10px 0 10px 20px !important;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    body {
        padding-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .subscribe-form {
        flex-direction: column;
    }
}

/* 价格内容区域 */
.pricing-container {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* 分类切换按钮 */
.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    padding: 1rem;
}

.tab-btn {
    background: none;
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover {
    background: rgba(37, 99, 235, 0.1);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* 分类介绍内容 */
.category-content {
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
}

.category-section {
    display: none;
}

.category-section.active {
    display: block;
}

.category-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-header p {
    color: #666;
    font-size: 1.1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* 价格表 */
.pricing-table {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-top: 2rem;
}

.table-header {
    display: grid;
    grid-template-columns: 0.8fr 3.5fr 0.8fr 0.8fr 0.5fr;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.table-body {
    display: none;
}

.table-body.active {
    display: block;
}

.table-row {
    display: grid;
    grid-template-columns: 0.8fr 3.5fr 0.8fr 0.8fr 0.5fr;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.model-col {
    flex: 1;
    text-align: left;
    padding: 0 10px;
    font-weight: 600;
    color: var(--text-color);
}

.table-header .model-col,
.table-header .spec-col,
.table-header .price-col,
.table-header .action-col {
    color: var(--white);
    font-size: 0.95rem;
}

.spec-col {
    padding-right: 1rem;
}

.spec-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.spec-details span {
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.price-col {
    font-weight: 600;
    color: var(--primary-color);
}

.deploy-btn {
    display: inline-block;
    min-width: 80px;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.deploy-btn:hover {
    background-color: #0056b3;
}

.vip-notice {
    margin: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    border-radius: 8px;
    color: #EF4444;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.vip-notice i {
    margin-right: 8px;
    color: #EF4444;
}

@media (max-width: 1024px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        width: calc(50% - 0.5rem);
        text-align: center;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .spec-details {
        margin: 0.5rem 0;
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-top: 15px;
    }
    
    .pricing-hero {
        padding: 30px 15px !important;
    }
    
    .pricing-hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-item {
        width: 45%;
        margin: 5px 0;
    }
    
    .hero-buttons .cta-button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    /* 价格表格移动端适配 */
    .pricing-table {
        margin: 1rem;
        overflow-x: auto;
    }

    .table-row {
        flex-direction: column;
        padding: 1rem;
    }

    .model-col, .spec-col, .price-col, .action-col {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    /* FAQ部分移动端适配 */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    /* 页脚移动端适配 */
    .footer-content {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* 价格页面主要样式 */
.pricing-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

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

.pricing-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.pricing-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.toggle-label {
    font-size: 1.1rem;
    color: #495057;
    cursor: pointer;
}

.toggle-label.active {
    color: #007bff;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* GPU包的布局 - 每行2张卡片 */
#gpu-packages {
    grid-template-columns: repeat(2, 1fr);
}

/* 海外云主机和云电脑包的布局 - 每行4张卡片 */
#overseas-packages .pricing-grid,
#cloudpc-packages .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* 海外云主机卡片样式 */
#overseas-packages {
    padding: 40px;
}

#overseas-packages .pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

#overseas-packages .pricing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
    width: 100%;
}

#overseas-packages .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

#overseas-packages .card-header {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

#overseas-packages .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 70%),
        linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 80%);
    z-index: 1;
}

#overseas-packages .pricing-type {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

#overseas-packages .server-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    color: white;
    font-weight: normal;
}

#overseas-packages .server-info i {
    font-size: 1rem;
    color: #ffd700;
}

#overseas-packages .price-header {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 500;
}

#overseas-packages .price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563EB;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

#overseas-packages .price-amount .currency {
    font-size: 0.9rem;
}

#overseas-packages .price-amount .period {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: normal;
    margin-left: 4px;
}

#overseas-packages .pricing-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding: 15px 20px;
    border-top: 1px dashed #e2e8f0;
    width: 100%;
}

#overseas-packages .price-option {
    width: 100%;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

#overseas-packages .price-option:hover {
    background: #fff;
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

#overseas-packages .price-header {
    width: 80px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

#overseas-packages .price-amount {
    width: 120px;
    margin-left: auto;
    display: flex;
    align-items: baseline;
    color: #2563EB;
    white-space: nowrap;
}

/* 修复流量图标样式 */
.pricing-features li i.fa-tachometer-alt {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    margin-right: 12px !important;
    color: #007bff !important;
    font-size: 16px !important;
}

@media (max-width: 768px) {
    #overseas-packages .pricing-options {
        flex-direction: column;
    }
    
    #overseas-packages .price-option {
        width: 100%;
    }
}

/* 国旗展示区域样式 */
.country-flags {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.country-flags-title {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 40px;
    font-weight: 700;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 30px;
    justify-items: center;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 15px;
    background: #f8fafc;
    width: 100%;
}

.flag-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.flag-item img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flag-item span {
    color: #475569;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    #overseas-packages .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .flags-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .flag-item {
        padding: 10px;
    }
    
    .flag-item img {
        width: 40px;
        height: 40px;
    }
}

/* 云电脑卡片样式 */
#cloudpc-packages .pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#cloudpc-packages .pricing-type {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

#cloudpc-packages .pricing-features {
    flex: 1;
    padding: 15px;
    margin: 10px 0;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

#cloudpc-packages .pricing-features li {
    padding: 8px 0;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #e2e8f0;
}

#cloudpc-packages .pricing-features li i {
    color: #2563eb;
    font-size: 1rem;
    background: rgba(37, 99, 235, 0.1);
    width: 28px;
    height: 28px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px;
    flex-shrink: 0;
}

#cloudpc-packages .pricing-features li i.fa-microchip,
#cloudpc-packages .pricing-features li i.fa-memory,
#cloudpc-packages .pricing-features li i.fa-hdd,
#cloudpc-packages .pricing-features li i.fa-network-wired,
#cloudpc-packages .pricing-features li i.fa-window-maximize {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#cloudpc-packages .pricing-price {
    text-align: center;
    margin: 15px 0;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

#cloudpc-packages .pricing-price .currency {
    font-size: 1.2rem;
    color: #2563eb;
    margin-right: 2px;
    font-weight: 600;
}

#cloudpc-packages .pricing-price .amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

#cloudpc-packages .pricing-price .period {
    font-size: 0.9rem;
    color: #64748b;
    margin-left: 2px;
}

#cloudpc-packages .pricing-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: none;
    margin-top: 10px;
}

/* 响应式布局调整 */
@media (max-width: 1200px) {
    #overseas-packages .pricing-grid,
    #cloudpc-packages .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #gpu-packages,
    #overseas-packages .pricing-grid,
    #cloudpc-packages .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* 区域组样式 */
.region-group:not(:last-child) {
    margin-bottom: 20px;
}

/* 价格显示优化 */
.pricing-price {
    text-align: center;
    margin: 15px 0;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: #666;
}

/* 套餐分类标签 */
.package-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.package-tab {
    padding: 20px 30px;
    background: #fff;
    border-radius: 12px;
    color: #495057;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
    min-width: 200px;
}

.package-tab .tab-main {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.package-tab .tab-sub {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: normal;
    line-height: 1.4;
}

.package-tab:hover {
    color: #2563eb;
    border-color: #2563eb;
    background: #f8fafc;
}

.package-tab.active {
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.package-tab.active .tab-main {
    color: #fff;
}

.package-tab.active .tab-sub {
    color: rgba(255, 255, 255, 0.85);
}

/* 套餐比较表格 */
.compare-table {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.compare-table th {
    background: #f8f9fa;
    padding: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
}

.compare-table td {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.compare-table tr:hover {
    background: #f8f9fa;
}

.feature-check {
    color: #28a745;
    font-size: 1.2rem;
}

.feature-times {
    color: #dc3545;
    font-size: 1.2rem;
}

/* 自定义滚动条 */
.pricing-features::-webkit-scrollbar {
    width: 6px;
}

.pricing-features::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.pricing-features::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.pricing-features::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* GPU卡片特殊布局 */
#gpu-packages .pricing-card {
    padding: 30px;
    display: flex;
    align-items: stretch;
}

#gpu-packages .card-left {
    flex: 6;
    border-right: 1px solid #eee;
    padding-right: 30px;
    margin-top: -30px;
    margin-bottom: -30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

#gpu-packages .card-right {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 20px;
    height: 100%;
    min-height: 280px;
}

#gpu-packages .billing-type {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    padding: 6px 15px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 15px;
}

#gpu-packages .pricing-price {
    text-align: right;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(37, 99, 235, 0.2);
}

#gpu-packages .member-price {
    margin-bottom: 20px;
}

#gpu-packages .pricing-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

#gpu-packages .pricing-price .currency {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-right: 4px;
}

#gpu-packages .pricing-price .period {
    font-size: 0.9rem;
    color: #666;
    margin-left: 4px;
}

#gpu-packages .member-price {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

#gpu-packages .member-price i {
    font-size: 1.1rem;
    color: #ffd700;
}

#gpu-packages .member-price .amount {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ff6b6b;
}

#gpu-packages .pricing-btn {
    width: 100%;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

#gpu-packages .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
    #gpu-packages .pricing-card {
        grid-template-areas: 
            "model"
            "header"
            "price"
            "features"
            "action";
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    #gpu-packages .model-name {
        font-size: 1.2rem;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    
    #gpu-packages .pricing-price {
        text-align: left;
        padding-bottom: 15px;
    }
    
    #gpu-packages .member-price {
        justify-content: flex-start;
    }
    
    #gpu-packages .pricing-features {
        padding: 20px;
    }
    
    #gpu-packages .pricing-btn {
        width: 100%;
        margin-top: 20px;
    }

    #gpu-packages .billing-type {
        font-size: 1.2rem;
        padding: 4px 12px;
    }
}

#gpu-packages .pricing-features {
    margin: 0;
    padding: 15px;
    list-style: none;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

/* 修改"可选闪连加速"的样式 */
.pricing-features li:last-child {
    color: #ff4757 !important;
}

.pricing-features li:last-child i {
    color: #ff4757 !important;
}

#overseas-packages .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

#overseas-packages .pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    font-size: 0.95rem;
    color: #4a5568;
    border-radius: 12px;
    background: #f8fafc;
    padding: 15px 20px;
}

#overseas-packages .pricing-features li i.fa-network-wired.native {
    color: #10b981;
}

#overseas-packages .pricing-features li.native-ip {
    color: #10b981;
}

#overseas-packages .pricing-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding: 15px 20px;
    border-top: 1px dashed #e2e8f0;
    width: 100%;
}

#overseas-packages .pricing-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

#overseas-packages .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

#overseas-packages .pricing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
    width: 100%;
}

#cloudpc-packages .pricing-features li.native-ip {
    color: #10b981;
}

#cloudpc-packages .pricing-features li.native-ip i.native {
    color: #10b981;
}

#overseas-packages .pricing-features li.native-ip i.fa-globe {
    color: #10b981;
}

#cloudpc-packages .pricing-features li.native-ip i.fa-globe {
    color: #10b981;
}

#cloudpc-packages .server-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
}

#cloudpc-packages .server-info i {
    color: #ffd700;
    font-size: 1rem;
}
 