/* 企业主页样式 */
.company-profile {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px 0;
}

/* 企业头部信息 */
.profile-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.company-avatar {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.company-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-info {
    flex: 1;
}

.company-name {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-name h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f3ff;
    color: #2B61B3;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.verify-badge i {
    color: #2B61B3;
}

.company-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.contact-item i {
    color: #2B61B3;
    width: 16px;
}

/* 企业介绍 */
.company-intro {
    margin-bottom: 40px;
}

.section-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #2B61B3;
}

.intro-content {
    color: #666;
    line-height: 1.8;
}

.intro-content p {
    margin-bottom: 15px;
}

.intro-content ul {
    list-style: none;
    padding-left: 20px;
}

.intro-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.intro-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2B61B3;
}

/* 最新发布信息 */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.post-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.post-image {
    width: 200px;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    flex: 1;
}

.post-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px 0;
}

.post-desc {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 14px;
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        gap: 20px;
    }

    .company-avatar {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .company-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .post-item {
        flex-direction: column;
    }

    .post-image {
        width: 100%;
        height: 200px;
    }
} 