/* ==================== 旧版行业样式（已废弃） ==================== */
/*
.industries {
    padding: 80px 0;
    background-color: white;
}

.industry-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.industry-icon {
    width: 120px;
    text-align: center;
}

.industry-icon i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.industry-icon:hover i {
    transform: scale(1.2);
}

.industry-icon p {
    font-size: 14px;
}
*/

/* ==================== 新版行业展示区域样式 ==================== */

.industries-new {
    background: #F9FBFF;
    border-radius: 0;
    mix-blend-mode: normal;
    padding: 80px 0;
    height: 720px;
}

.industries-new .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 标题 */
.industries-new .industries-title {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #17181A;
    text-align: center;
    margin: 0 0 16px 0;
}

/* 副标题 */
.industries-new .industries-subtitle {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7C7D81;
    text-align: center;
    line-height: 24px;
    max-width: 900px;
    margin: 0 auto 56px auto;
}

/* 行业网格 */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 48px 32px;
    margin-bottom: 0;
}

/* 单个行业项 */
.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-8px);
}

.industry-item:hover .industry-icon img {
    filter: brightness(1.1);
}

/* 行业图标容器 */
.industry-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
    border-color: #3457DC;
    background: #F5F8FF;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* 行业名称 */
.industry-name {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #17181A;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-name {
    color: #5B7FFF;
    font-weight: 500;
}