/* 复用基础样式 */
:root {
    --primary-color: #2b6cb0;
    --primary-light: rgba(43, 108, 176, 0.1);
    --primary-dark: #2c5282;
    --accent-color: #3182ce;
}

/* 页面头部样式 */
.page-header {
    height: 50vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 80px;
    background: #fff;
    width: 100%;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        rgba(0,102,204,0.4)
    );
}

.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: #fff;
    text-align: center;
}

.header-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.solution-nav {
    position: sticky;
    top: 90px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 99;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.solution-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0;
}

.solution-nav .nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1.2rem 3rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 3px solid transparent;
}

.solution-nav .nav-item.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.solution-nav .nav-item:hover {
    color: var(--primary-color);
}

/* 行业特点样式 */
.industry-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* 常见痛点样式 - 新设计 */
.pain-points-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pain-point-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pain-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.pain-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pain-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pain-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-content ul li {
    color: var(--text-secondary);
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pain-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pain-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* 方案架构样式 */
.architecture-diagram {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0;
}

.arch-layer {
    background: #fff;
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.arch-layer h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.layer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.layer-content span {
    background: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* 优化页面整体布局 */
section {
    padding: 0 0 3rem 0;
    background: #f8f9fa;
    scroll-margin-top: 150px;
}

section:nth-child(even) {
    background: #fff;
}

/* 标题样式 */
.section-header {
    margin: 0 0 2rem 0;
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-title {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.8rem;
}

.section-subtitle {
    margin: 0.5rem 0 0 0;
    color: var(--text-secondary);
}

/* 方案功能样式 */
.functions-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.function-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding-bottom: 1rem;
}

.function-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.function-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.function-content {
    padding: 1rem 1.2rem;
}

.function-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.function-content ul {
    list-style: none;
    padding-left: 0;
}

.function-content ul li {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}


/* 响应式调整 */
@media (max-width: 1024px) {
    .solutions-container {
        grid-template-columns: 1fr;
    }
    
    .solution-image {
        height: 240px;
    }
    
    .pain-points-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-image {
        height: 200px;
        padding: 1rem;
    }
    
    .product-list ul,
    .scene-list ul {
        grid-template-columns: 1fr;
    }
    
    .pain-points-container {
        grid-template-columns: 1fr;
    }
    
    .layer-content {
        flex-direction: column;
    }
    
    .layer-content span {
        text-align: center;
    }
} 