/* 主内容区样式 */
.main-content {
    display: flex;
    align-items: center;
}

/* 公司信息样式 */
.company-info {
    padding-right: 62px;
}

.company-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.company-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 统计数据样式 */
.statistics {
    display: flex;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
}

.stat-divider {
    width: 1px;
    background-color: #ddd;
    margin: 0 30px;
}

/* 图片样式 */
.company-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.company-image-min{
    width: 49%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .statistics {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
}