
.RHM_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.RHM_company_profile {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    margin: 40px 0;
    min-height: 428px;
}

.RHM_profile_image {
    width: 50%;
    background-size: cover;
    background-position: center;
    min-height: 428px;
}

.RHM_profile_content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.RHM_profile_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.RHM_profile_content h2 {
    font-size: 26px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    margin: 0;
    margin-right: 20px;
}

.RHM_profile_content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #333;
}

.RHM_more_link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-top: 5px;
}

.RHM_more_link:hover {
    text-decoration: underline;
}

.RHM_profile_text {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.RHM_highlight {
    font-weight: bold;
}

.RHM_stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.RHM_stat_item {
    text-align: center;
    padding: 0 15px;
}

.RHM_stat_number {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.RHM_stat_label {
    font-size: 14px;
    color: #777;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .RHM_company_profile {
        flex-direction: column;
        min-height: auto;
    }

    .RHM_profile_image {
        width: 100%;
        min-height: 250px;
        height: 250px;
        order: 1;
    }

    .RHM_profile_content {
        width: 100%;
        padding: 25px 20px;
        order: 2;
    }

    .RHM_profile_content h2 {
        font-size: 24px;
    }

    .RHM_profile_text {
        -webkit-line-clamp: 6;
    }

    .RHM_stats {
        flex-direction: row;
        margin-top: 20px;
    }

    .RHM_stat_item {
        margin-bottom: 0;
        padding: 0 10px;
    }

    .RHM_stat_number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .RHM_stats {
        flex-direction: column;
    }

    .RHM_stat_item {
        margin-bottom: 15px;
        padding: 0;
    }

    .RHM_profile_image {
        min-height: 200px;
        height: 200px;
    }
}