/* 行业信息页面特有样式 */

/* 全局样式变量 */
:root {
    --primary-color: #2E7D32; /* 主色调：深绿色 */
    --primary-light: #4CAF50; /* 浅绿色 */
    --primary-dark: #1B5E20;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* 行业概况样式 */
.industry-overview {
    margin-bottom: 40px;
}

.overview-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.overview-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.overview-text p {
    margin-bottom: 15px;
}

.overview-image {
    flex: 1;
    max-width: 500px;
}

.overview-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* 行业信息网格样式 */
.industry-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* 行业信息卡片样式 */
.industry-info-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
}

.industry-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.industry-info-card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.industry-info-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 详情按钮样式 */
.details-btn {
    padding: 8px 20px;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.details-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 返回按钮样式 */
.back-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2a7f62;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background-color: #1a5f42;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .overview-content {
        flex-direction: column;
    }
    
    .overview-image {
        order: -1;
        max-width: 100%;
    }
    
    .industry-info-grid {
        grid-template-columns: 1fr;
    }
}