/* 个人信息页样式 */

.info-section {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 0 15px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #333;
    width: 80px;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    font-size: 14px;
    color: #666;
    text-align: right;
    margin-right: 10px;
}

.info-action {
    font-size: 14px;
    color: #1890FF;
    text-decoration: none;
    flex-shrink: 0;
}

/* 头像预览 */
.avatar-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 角色标签 */
.section-title {
    font-size: 14px;
    color: #999;
    padding: 15px 0 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.role-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #E6F7FF;
    color: #1890FF;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}

.role-tag:active {
    background-color: #BAE7FF;
}

/* 申请记录 */
.apply-record-list {
    padding: 10px 0;
}

.apply-record-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.apply-record-item:last-child {
    border-bottom: none;
}

.apply-record-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.apply-record-status {
    font-size: 12px;
    color: #999;
}

.apply-record-action {
    font-size: 14px;
    color: #1890FF;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}

