
.about-enterprises-list-v1 {
    margin-top: 40px;
    padding: 20px  20px;
    margin-bottom: 20px;
}
.about-enterprises-list-v1 .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 顶部标题 */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header .section-title {
    font-size: 29px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.section-header .section-desc {
    font-size: 17px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

/* 主体：左右结构 */
.enterprises-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}
/* 左侧卡片 */
.enterprise-card {
    border-radius: 12px;
    overflow: hidden;
}
.card-left {
    background-color: #f4e8f9; /* 淡紫色背景，和你图一致 */
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.card-left .card-logo {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}
/* 左侧Logo图片强制限制大小 */
.card-left .card-logo img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 2px;
}
.card-left .logo-placeholder {
    /* 你自己放logo图，这里用文字占位 */
    color: #333;
    font-weight: bold;
}
.card-left .card-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
}
.card-left .card-text p {
    font-size: 17px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

/* 右侧网格：2列 */
.enterprises-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.card-grid {
    background-color: #f5f5f5; /* 浅灰色背景 */
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px 18px;
}
.card-grid .card-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%; /* 圆形图片，和你图一致 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
/* 右侧圆形卡片内的图片强制限制大小，防止变形 */
.card-grid .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 裁切填充圆形，保证不变形 */
    object-position: center; /* 居中显示 */
    display: block;
    border-radius: 2px;
}
.card-grid .icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}
/* 示例背景色，你可以按自己图片调整 */
.icon-placeholder.teal-bg {
    background-color: #23a6a6;
}
.icon-placeholder.red-bg {
    background-color: #fff;
    color: #ff3b30;
}
.icon-placeholder.white-bg {
    background-color: #fff;
}

.card-grid .card-info h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.5;
}
.card-grid .card-info p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}
.card-grid .card-email {
    font-size: 14px;
    color: #000;
    text-decoration: underline;
}

/* 底部按钮 */
.section-footer {
    text-align: center;
}
.btn-learn-more {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid #9f5890;
    color: #9f5890;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}
.btn-learn-more:hover {
    background-color: #9f5890;
    color: #fff;
}

/* 移动端适配 */
@media (max-width: 992px) {
    .enterprises-row {
        grid-template-columns: 1fr;
    }
    .enterprises-grid {
        grid-template-columns: 1fr;
    }
    .section-header .section-title {
        font-size: 24px;
        padding: 0 10px;
        text-align: center;
        box-sizing: border-box;
    }
    .card-left {
        padding: 20px 15px;
    }
    .card-left .card-logo {
        margin-bottom: 20px;
    }
    .card-left .card-text h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .card-grid {
        padding: 15px;
    }
    .card-grid .card-icon {
        width: 80px;
        height: 80px;
    }
    .card-grid .card-info h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .btn-learn-more {
        padding: 12px 30px;
        font-size: 16px;
    }
}
