/* Solution 详情页样式 */

/* 第一个模块：全屏特色图片 */
.solution-hero-module {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.solution-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.solution-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.solution-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solution-hero-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 第二个模块：公司信息 */
.solution-info-module {
    background: #fff;
    padding: 60px 0;
    position: relative;
}

.solution-info-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 右上角图标 */
.solution-info-icon {
    position: absolute;
    top: 0;
    right: 20px;
    width: 100px;
    height: 100px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.solution-info-icon svg {
    width: 50px;
    height: 50px;
    color: #fff;
}

/* 主要内容区域 */
.solution-info-content {
    padding-right: 120px;
}

/* 公司头部信息 */
.solution-company-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.company-logo {
    flex-shrink: 0;
}

.logo-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: 2px solid #ffd700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.project-type {
    font-size: 18px;
    color: #666;
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
}

.project-type::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--theme-color);
}

.project-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

.project-meta span {
    display: flex;
    align-items: center;
}

/* 公司描述 */
.company-description {
    margin-bottom: 30px;
}

.company-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* 网站信息 */
.website-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.website-url {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.warning-icon {
    color: #ffa500;
    font-size: 16px;
}

.visit-website-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #333;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.visit-website-btn:hover {
    background: #333;
    color: #fff;
}

.visit-website-btn svg {
    width: 16px;
    height: 16px;
}

/* 底部导航 */
.solution-bottom-nav {
    background: #f5f5f5;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-btn {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: var(--theme-color);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .solution-hero-content h1 {
        font-size: 32px;
    }
    
    .solution-hero-content p {
        font-size: 16px;
    }
    
    .solution-info-container {
        padding: 0 15px;
    }
    
    .solution-info-content {
        padding-right: 0;
        padding-top: 120px;
    }
    
    .solution-company-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .company-name {
        font-size: 24px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .website-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .nav-controls {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .solution-hero-content h1 {
        font-size: 24px;
    }
    
    .solution-hero-content p {
        font-size: 14px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .project-type {
        font-size: 16px;
    }
}
