/*!
 * ============================================================
 *  版权所有 (C) 2026 AISkyLab. 保留所有权利。
 *  Copyright (C) 2026 AISkyLab. All Rights Reserved.
 * ------------------------------------------------------------
 *  公司名称        : AISkyLab
 *  国际网站        : https://aiskylab.com
 *  国内网站        : https://aiskylab.cn
 *  作者            : XueYuSky
 *  文件            : front_templates/enterprise/static/css/enterprise.css
 *  模块/功能       : enterprise 模块
 *  创建日期        : 2025-11-25
 *  最后修改日期    : 2026-02-20
 *  许可证          : Proprietary and Confidential
 * ------------------------------------------------------------
 *  未经授权，禁止复制、传播、修改或用于商业用途。
 * ============================================================
 */
/* 企业网站样式 */
.main-content {
    min-height: calc(100vh - 200px);
    padding-bottom: 2rem;
}

/* Hero区域样式 */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* 区块标题样式 */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
}

/* 产品/服务卡片样式 */
.product-card, .service-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.product-card:hover, .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

/* 产品卡片图片区域 */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f7fafc;
    height: 240px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #a0aec0;
    font-size: 3rem;
}

/* 精选标签 */
.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.featured-badge-service {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

/* 服务卡片图标 */
.service-icon-wrapper {
    position: relative;
    margin-top: -40px;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* 卡片内容 */
.product-card .card-body,
.service-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title,
.service-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.product-card .card-text,
.service-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #718096;
}

/* 服务特点列表 */
.service-features {
    padding-left: 0;
}

.service-features li {
    font-size: 0.9rem;
    color: #4a5568;
    display: flex;
    align-items: center;
}

.service-features li i {
    font-size: 0.85rem;
}

/* 按钮样式增强 */
.product-card .btn,
.service-card .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.product-card .btn-primary,
.service-card .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.product-card .btn-primary:hover,
.service-card .btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 公司优势卡片 */
.advantage-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.about-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

/* 空状态样式 */
.empty-state {
    padding: 3rem;
}

.empty-state i {
    opacity: 0.5;
}

/* 价格显示 */
.text-primary.fw-bold {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* 规格参数表格 */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

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

.specifications-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* 服务流程步骤 */
.service-process {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.service-step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-process {
        flex-direction: column;
    }
    
    .product-card .card-body,
    .service-card .card-body {
        padding: 1.25rem;
    }
}




