/* 个人信息卡片样式 */
body {
    background-color: #f5f6fa;
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

.personal-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

.personal-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.personal-header {
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.personal-avatar {
    margin-right: 15px;
}

.personal-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.personal-title {
    flex-grow: 1;
}

.personal-title h2 {
    font-size: 22px;
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #333;
}

.personal-location {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 14px;
}

.personal-location svg {
    margin-right: 5px;
    color: #8dba36;
}

.personal-resource-btn {
    background-color: #8dba36;
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.personal-resource-btn:hover {
    background-color: #7aa32e;
}

.personal-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 15px;
    background-color: #f5f7fc;
    border-bottom: 1px solid #f0f0f0;
}

.personal-info-item {
    padding: 8px 15px;
}

.info-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-value {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.personal-fields {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.personal-field {
    margin-bottom: 15px;
}

.personal-field:last-child {
    margin-bottom: 0;
}

.field-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.field-content {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

.personal-photos {
    padding: 15px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.photo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-data {
    text-align: center;
    padding: 40px 0;
    color: #888;
    font-size: 16px;
}

@media (max-width: 768px) {
    .personal-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .personal-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .personal-title {
        margin-bottom: 15px;
        width: 100%;
    }
    
    .personal-resource-btn {
        width: 100%;
        text-align: center;
    }
    
    .personal-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-item {
        width: 140px;
        height: 180px;
    }
} 