/* 容器样式 */
.pj_container {
    
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* 用户信息容器样式 */
.pj_profile {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    
    border-radius: 10px;
    
}

/* 用户头像样式 */
.pj_profile_image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

/* 用户名称样式 */
.pj_profile_name {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    text-align: left;
}

/* 用户描述样式 */
.pj_profile_description {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}