/* 云服务器页面样式 - 腾讯云风格优化版 */

/* 全局变量定义 */
:root {
    --primary-color: #006eff;
    --primary-hover: #0056cc;
    --secondary-color: #f5f7fa;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --border-color: #e5e6eb;
    --success-color: #52c41a;
    --warning-color: #faad14;
    --error-color: #ff4d4f;
    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* 云服务器页面特有样式 */
.cloud-ecs-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--secondary-color);
}

/* 容器样式 */
.cloud-ecs-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 按钮样式 */
.ecs-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ecs-btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #fff;
}

.ecs-btn-primary:hover {
    background-color: #f0f7ff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.ecs-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.ecs-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* 在白色背景区域使用原按钮样式 */
.ecs-advantages .ecs-btn-primary,
.ecs-features .ecs-btn-primary,
.ecs-scenarios .ecs-btn-primary,
.ecs-pricing .ecs-btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.ecs-advantages .ecs-btn-primary:hover,
.ecs-features .ecs-btn-primary:hover,
.ecs-scenarios .ecs-btn-primary:hover,
.ecs-pricing .ecs-btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(0, 110, 255, 0.3);
}

.ecs-advantages .ecs-btn-secondary,
.ecs-features .ecs-btn-secondary,
.ecs-scenarios .ecs-btn-secondary,
.ecs-pricing .ecs-btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.ecs-advantages .ecs-btn-secondary:hover,
.ecs-features .ecs-btn-secondary:hover,
.ecs-scenarios .ecs-btn-secondary:hover,
.ecs-pricing .ecs-btn-secondary:hover {
    background-color: #f0f7ff;
}

.ecs-btn-large {
    padding: 12px 32px;
    font-size: 18px;
}

/* 英雄区域 */
.ecs-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ecs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/hero-pattern.png') repeat;
    opacity: 0.1;
}

.ecs-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

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

.ecs-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.ecs-hero-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.9;
    color: #fff;
}

.ecs-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #fff;
}

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

.ecs-hero-image {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecs-hero-image svg {
    width: 100%;
    height: auto;
    max-width: 350px;
}

/* 章节头部 */
.ecs-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ecs-section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ecs-section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* 优势区域 */
.ecs-advantages {
    padding: 80px 0;
    background-color: #fff;
}

.ecs-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ecs-advantage-card {
    background-color: #fafafa;
    padding: 40px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.ecs-advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.ecs-advantage-icon {
    margin-bottom: 24px;
}

.ecs-advantage-icon svg {
    width: 64px;
    height: 64px;
}

.ecs-advantage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ecs-advantage-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* 核心功能 */
.ecs-features {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.ecs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ecs-feature-module {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.ecs-feature-module:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ecs-feature-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 24px 32px;
}

.ecs-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.ecs-feature-content {
    padding: 32px;
}

.ecs-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ecs-feature-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.ecs-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 应用场景 */
.ecs-scenarios {
    padding: 80px 0;
    background-color: #fff;
}

.ecs-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.ecs-scenario-card {
    display: flex;
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.ecs-scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.ecs-scenario-image {
    flex: 0 0 160px;
    background-color: #e8f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.ecs-scenario-content {
    flex: 1;
    padding: 32px;
}

.ecs-scenario-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ecs-scenario-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.ecs-scenario-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ecs-scenario-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* 客户案例 */
.ecs-cases {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.ecs-cases-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding-bottom: 24px;
}

.ecs-case-item {
    flex: 0 0 500px;
    background-color: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.ecs-case-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.ecs-case-logo {
    margin-bottom: 24px;
}

.ecs-case-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ecs-case-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* 产品定价 */
.ecs-pricing {
    padding: 80px 0;
    background-color: #fff;
}

.ecs-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ecs-pricing-card {
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.ecs-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.ecs-pricing-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 24px 32px;
}

.ecs-pricing-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.ecs-pricing-content {
    padding: 32px;
}

.ecs-pricing-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.ecs-pricing-features {
    margin-bottom: 32px;
}

.ecs-pricing-feature {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.ecs-pricing-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ecs-pricing-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* 立即购买 */
.ecs-cta {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.ecs-cta-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.ecs-cta-desc {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #fff;
}

.ecs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 响应式设计 - 云服务器页面 */
@media (max-width: 992px) {
    .ecs-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ecs-hero-image {
        margin-top: 40px;
        flex: 0 0 auto;
    }
    
    .ecs-advantage-card,
    .ecs-feature-module,
    .ecs-scenario-card,
    .ecs-pricing-card {
        margin-bottom: 24px;
    }
    
    .ecs-advantages-grid,
    .ecs-features-grid,
    .ecs-scenarios-grid,
    .ecs-pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .ecs-case-item {
        flex: 0 0 400px;
    }
}

@media (max-width: 768px) {
    .ecs-hero-image {
        display: none;
    }
    
    .ecs-hero-title {
        font-size: 36px;
    }
    
    .ecs-section-title {
        font-size: 28px;
    }
    
    .ecs-hero-buttons,
    .ecs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ecs-btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* 基础样式重置 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #f4f5f6;
}

/* 顶部导航 */
.p-ceiling-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.c-nav-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
}

.c-nav-all-trigger {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-right: 16px;
}

.c-nav-all-trigger:hover {
    background-color: var(--secondary-color);
}

.c-nav-all-trigger-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.c-nav-bottom-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 20px;
}

.c-nav-bm-categories {
    flex: 1;
}

.c-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.c-nav-list li {
    margin-right: 32px;
}

.c-nav-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 0;
    display: block;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.c-nav-list li a:hover {
    color: var(--primary-color);
}

.c-nav-bm-btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-nav-bm-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 110, 255, 0.2);
}

.c-nav-bm-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(0, 110, 255, 0.3);
    transform: translateY(-1px);
}

/* 产品主体 */
.product-body {
    background: #fff;
}

/* 英雄区域 */
.c-hero-section {
    background: linear-gradient(135deg, #006eff 0%, #0056cc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.c-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/hero-pattern.png') repeat;
    opacity: 0.1;
}

.c-hero-section-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.c-hero-section-ct {
    flex: 1;
    color: #fff;
    max-width: 600px;
}

.c-hero-section-tit {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.product-info-link {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    font-size: 16px;
    transition: var(--transition);
}

.product-info-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.c-hero-section-des {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.c-hero-section-btn {
    display: flex;
    gap: 16px;
    align-items: center;
}

.c-hero-section-btn .c-btn {
    padding: 12px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.c-hero-section-btn .c-btn.default {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.c-hero-section-btn .c-btn.default:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.c-hero-section-btn .c-btn.p-weak-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.c-hero-section-btn .c-btn.p-weak-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.c-hero-icon-mod {
    flex: 0 0 400px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.c-hero-icon-mod img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 标签页导航 */
.p-tab-mod {
    background: var(--secondary-color);
    padding: 24px 0;
}

.c-tab-cross {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.c-tab-hd {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-tab-scroll {
    overflow-x: auto;
    flex: 1;
}

.c-tab-scroll::-webkit-scrollbar {
    height: 4px;
}

.c-tab-scroll::-webkit-scrollbar-track {
    background: #e5e6eb;
    border-radius: 2px;
}

.c-tab-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.c-tab-ctrl {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid var(--border-color);
    min-width: max-content;
}

.c-tab-simple {
    margin-right: 40px;
}

.c-tab-simple a {
    display: block;
    padding: 16px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    font-weight: 500;
}

.c-tab-simple a:hover {
    color: var(--primary-color);
}

.c-tab-simple.actived a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.c-tab-btns {
    display: flex;
    gap: 12px;
}

.c-tab-btns a {
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-left: 10px;
    transition: var(--transition);
    font-weight: 500;
}

.c-tab-btns a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* 内容区域 */
.J-subContent {
    background: #fff;
}

.c-section {
    padding: 60px 0;
}

.c-section-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.c-section-hd {
    text-align: center;
    margin-bottom: 50px;
}

.c-section-tit {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.c-section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 关于模块 */
.about-mod-con {
    background: var(--secondary-color);
    padding: 48px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.about-mod-con:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-2px);
}

.c-media-horiz {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.c-media-left {
    flex: 0 0 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.c-media-body {
    flex: 1;
}

.c-media-heading {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.c-media-heading-img {
    width: 48px;
    height: 48px;
}

.c-media-info {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.product-info-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.product-info-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    font-weight: 500;
}

.product-info-link:hover {
    text-decoration: underline;
    transform: translateX(4px);
}

/* 特性模块 */
.c-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
}

.function-list .c-g-8 {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.function-list .c-g-8:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.c-media-heading img.ico64 {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

/* 应用场景 */
.scenario-mod {
    background: var(--secondary-color);
    padding: 60px 0;
}

.c-tab-normal {
    margin-bottom: 40px;
}

.c-tab-normal ul {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto 40px;
}

.c-tab-normal li {
    margin: 0 24px;
}

.c-tab-normal li a {
    display: block;
    padding: 16px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    font-weight: 500;
}

.c-tab-normal li a:hover {
    color: var(--primary-color);
}

.c-tab-normal li.actived a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.c-tab-panel {
    display: none;
    padding: 40px 0;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.c-tab-panel[data-style*="display:block"] {
    display: block;
}

.d-wrap {
    display: flex;
    gap: 40px;
    align-items: stretch;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.d-mod {
    flex: 1;
}

.d-split-mod {
    display: flex;
    flex-direction: column;
}

.d-split-con {
    flex: 1;
    margin-bottom: 30px;
}

.d-split-con h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.d-split-con h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.d-split-con p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.p-area-relate {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.p-area-relate-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
    font-weight: 500;
}

.p-area-relate-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.p-icon-relate {
    width: 20px;
    height: 20px;
}

.d-split-aside {
    flex: 0 0 320px;
}

.d-p-show-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 110, 255, 0.3);
    transition: var(--transition);
}

.d-p-show-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 110, 255, 0.4);
}

.d-p-show-card-icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 20px;
}

.d-p-show-card-tit {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 600;
}

.d-p-show-card-param {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.d-p-show-card-param-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.d-p-show-card-param-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.d-p-show-card-param-item label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.d-p-show-card-param-item span {
    font-size: 20px;
    font-weight: 700;
}

.d-p-show-card-link a {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.d-p-show-card-link a:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 客户案例 */
.customer-mod {
    background: #fff;
    padding: 60px 0;
}

.p-customer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.p-customer-item {
    text-align: center;
}

.p-customer-item a {
    display: block;
    padding: 24px;
    background: var(--secondary-color);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.p-customer-item a:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.p-customer-item img {
    max-width: 100%;
    height: auto;
    max-height: 70px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.p-customer-item a:hover img {
    filter: grayscale(0%);
}

/* 联系模块 */
.home-contact-mod {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    padding: 60px 0;
}

.c-section-bd {
    display: flex;
    gap: 80px;
    align-items: center;
}

.home-recommend-wrap,
.home-contact-wrap {
    flex: 1;
}

.home-recommend-tit,
.home-contact-tit {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-recommend-con,
.home-contact-con {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.home-recommend-con a,
.home-contact-con a {
    color: #fff;
    text-decoration: underline;
    transition: var(--transition);
    font-weight: 500;
}

.home-recommend-con a:hover,
.home-contact-con a:hover {
    opacity: 0.8;
}

.home-use-btn-wrap,
.home-contact-btn-wrap {
    margin-top: 32px;
}

.home-use-btn,
.home-contact-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.home-use-btn:hover,
.home-contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.home-contact-desc {
    margin-bottom: 24px;
}

.sol-contact-code {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.sol-contact-code-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.sol-contact-code-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.sol-contact-code-box img {
    width: 160px;
    height: 160px;
}

.sol-contact-code-box p {
    margin-top: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

/* 购买页特有样式 */
.cloud-configuration {
    padding: 30px 0;
    background: var(--secondary-color);
}

.calculator-side-menu {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.calculator-side-menu:hover {
    box-shadow: var(--box-shadow-hover);
}

.calculator-side-menu .ivu-menu-submenu-title {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 4px;
}

.calculator-side-menu .ivu-menu-submenu-title:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.calculator-side-menu .ivu-menu {
    display: none;
    padding-left: 16px;
    margin-top: 8px;
}

.calculator-side-menu .ivu-menu-opened .ivu-menu {
    display: block;
}

.calculator-side-menu .ivu-menu-item a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: var(--transition);
}

.calculator-side-menu .ivu-menu-item a:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.config-panel {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.config-panel:hover {
    box-shadow: var(--box-shadow-hover);
}

.config-row {
    margin-bottom: 28px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.config-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.config-row-title {
    display: inline-block;
    width: 130px;
    font-weight: 600;
    color: var(--text-primary);
    vertical-align: top;
    font-size: 14px;
}

.config-row-content {
    display: inline-block;
    vertical-align: top;
    flex: 1;
    margin-left: 24px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}

.button-group a {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.button-group a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 110, 255, 0.15);
    transform: translateY(-1px);
}

.button-group a.selected,
.button-group a.slt {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 110, 255, 0.25);
}

/* 响应式设计 - 多终端兼容 */
@media (max-width: 1200px) {
    .c-hero-section-inner {
        padding: 0 24px;
    }
    
    .c-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }
    
    .c-section-bd {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .c-nav-bottom {
        padding: 0 16px;
    }
    
    .c-nav-list li {
        margin-right: 20px;
    }
    
    .c-hero-section-tit {
        font-size: 40px;
    }
    
    .c-tab-cross {
        padding: 0 16px;
    }
    
    .c-section-inner {
        padding: 0 16px;
    }
    
    .c-media-horiz {
        gap: 30px;
    }
    
    .d-wrap {
        flex-direction: column;
        padding: 32px;
    }
    
    .d-split-aside {
        flex: 0 0 auto;
    }
    
    .c-section-bd {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .sol-contact-code {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-nav-bottom {
        flex-direction: column;
        padding: 16px;
        height: auto;
        gap: 16px;
    }
    
    .c-nav-all-trigger {
        margin-right: 0;
    }
    
    .c-nav-bottom-divider {
        display: none;
    }
    
    .c-nav-bm-categories {
        width: 100%;
    }
    
    .c-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .c-nav-list li {
        margin: 0;
    }
    
    .c-hero-section {
        padding: 60px 0;
    }
    
    .c-hero-section-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .c-hero-section-ct {
        max-width: 100%;
    }
    
    .c-hero-section-tit {
        font-size: 32px;
    }
    
    .c-hero-section-des {
        font-size: 16px;
    }
    
    .c-hero-section-btn {
        flex-direction: column;
        align-items: center;
    }
    
    .c-hero-icon-mod {
        display: none;
    }
    
    .c-tab-hd {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .c-tab-btns {
        justify-content: center;
        order: -1;
    }
    
    .c-tab-ctrl {
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .c-tab-simple {
        margin-right: 24px;
    }
    
    .c-section {
        padding: 40px 0;
    }
    
    .c-section-tit {
        font-size: 28px;
    }
    
    .c-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-mod-con {
        padding: 32px 20px;
    }
    
    .c-media-horiz {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .c-media-left {
        margin: 0 auto;
    }
    
    .product-info-links {
        justify-content: center;
    }
    
    .c-tab-normal ul {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .c-tab-normal li {
        margin: 0;
    }
    
    .p-customer-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .d-wrap {
        padding: 24px;
    }
    
    .config-panel {
        padding: 24px;
    }
    
    .config-row {
        padding: 16px 0;
        margin-bottom: 20px;
    }
    
    .config-row-title {
        width: 100%;
        margin-bottom: 12px;
        display: block;
    }
    
    .config-row-content {
        margin-left: 0;
        width: 100%;
        display: block;
    }
    
    .button-group {
        width: 100%;
        gap: 10px;
    }
    
    .button-group a {
        flex: 1;
        min-width: 120px;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .c-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .c-nav-list li a {
        text-align: center;
        padding: 12px;
        background: var(--secondary-color);
        border-radius: 8px;
    }
    
    .c-hero-section {
        padding: 40px 0;
    }
    
    .c-hero-section-tit {
        font-size: 28px;
    }
    
    .c-hero-section-des {
        font-size: 15px;
    }
    
    .c-section-tit {
        font-size: 24px;
    }
    
    .c-tab-simple {
        margin-right: 16px;
    }
    
    .c-tab-simple a {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .about-mod-con {
        padding: 24px 16px;
    }
    
    .c-media-heading {
        font-size: 24px;
    }
    
    .p-customer-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .d-wrap {
        padding: 20px;
    }
    
    .d-p-show-card {
        padding: 24px;
    }
    
    .d-p-show-card-param {
        grid-template-columns: 1fr;
    }
    
    .config-panel {
        padding: 20px;
    }
    
    .button-group a {
        flex: 1 0 100%;
    }
}

@media (max-width: 480px) {
    .c-hero-section-tit {
        font-size: 24px;
    }
    
    .c-hero-section-btn .c-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .c-section {
        padding: 30px 0;
    }
    
    .c-section-inner {
        padding: 0 12px;
    }
    
    .about-mod-con {
        padding: 20px 12px;
    }
    
    .d-wrap {
        padding: 16px;
    }
    
    .config-panel {
        padding: 16px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* 加载状态 */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 选择文本样式 */
::selection {
    background: rgba(0, 110, 255, 0.2);
    color: var(--primary-color);
}

::-moz-selection {
    background: rgba(0, 110, 255, 0.2);
    color: var(--primary-color);
}
