/* 首页样式 - 从内联style属性分离出来 */

/* 行业切换模块样式 */
.industry-switcher-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.industry-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.industry-tab:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

.industry-tab.active {
    background-color: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
}

.industry-tab i {
    font-size: 18px;
}

.industry-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.industry-panel {
    display: none;
}

.industry-panel:first-child {
    display: block;
}

.industry-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.industry-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry-highlights {
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.highlight-dot {
    width: 8px;
    height: 8px;
    background-color: #2c3e50;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.industry-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.industry-btn:hover {
    background-color: #1a2530;
}

.industry-cases {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.industry-cases h4 {
    margin-bottom: 15px;
    color: #333;
}

.case-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.case-logo {
    display: inline-block;
}

.case-logo img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
    transition: transform 0.3s;
}

.case-logo:hover img {
    transform: translateY(-3px);
}

/* 客户统计区域样式 */
.client-stats {
    padding: 60px 0;
    background-color: #2c3e50;
    color: #fff;
}

.stats-content {
    text-align: center;
}

.stats-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.logo-item {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 6px;
    transition: transform 0.3s;
    padding: 5px;
}

.logo-item:hover {
    transform: scale(1.05);
}

.placeholder-logo {
    color: #2c3e50;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    padding: 10px;
}

/* 客户统计区域中的占位Logo样式 */
.client-stats .placeholder-logo {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

/* 部署方式区域样式 */
.deployment-section {
    padding: 60px 0;
}

.deployment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deployment-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.deployment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.deployment-icon {
    width: 80px;
    height: 80px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.deployment-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.deployment-card p {
    color: #666;
    margin-bottom: 20px;
}

.deployment-features {
    text-align: left;
    margin-bottom: 25px;
}

.deployment-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.deployment-features li:before {
    content: '✓';
    color: #2c3e50;
    margin-right: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .industry-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .logo-item {
        width: 100px;
        height: 60px;
    }
    
    .deployment-cards {
        grid-template-columns: 1fr;
    }
}