/* 个人中心页面样式 */
.container {
    padding-bottom: 20px;
    background-color: #f5f5f5;
    min-height: calc(100vh - 180px); /* 减去底部信息和导航栏的高度 */
}

/* 用户信息区域 */
.user-info-section {
    background-color: #1890ff;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    color: #fff;
}

.user-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.go-login-btn {
    display: inline-block;
    width: 120px;
    margin: 0 0 8px 0;
    padding: 10px 0;
    background: #fff;
    color: #1890ff;
    border: none;
    border-radius: 24px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(24,144,255,0.10);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    text-align: center;
}
.go-login-btn:hover {
    background: #e6f7ff;
    color: #e67e22;
}


.go-login-btn {
    display: block;
    width: 120px;
    margin: 0 auto 10px auto;
    padding: 10px 0;
    background: #fff;
    color: #1890ff;
    border: none;
    border-radius: 24px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(24,144,255,0.10);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.go-login-btn:hover {
    background: #e6f7ff;
    color: #e67e22;
}


.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    flex: 1;
}

.user-nickname {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.user-id {
    font-size: 14px;
    opacity: 0.8;
}

/* 菜单区域 */
.menu-section {
    padding: 15px;
}

.menu-group {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
}

.menu-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 1px;
    background-color: #f0f0f0;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
}

.menu-name {
    flex: 1;
    font-size: 15px;
    color: #333;
}

.menu-arrow {
    color: #ccc;
    font-size: 18px;
}

/* 退出登录按钮 */
.logout-btn {
    background-color: #fff;
    color: #ff4d4f;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
}

.logout-btn:active {
    background-color: #f5f5f5;
}

/* 底部导航栏样式已移至common.css */

/* 底部信息样式 */
.footer {
    background-color: #f8f8f8;
    padding: 10px 15px;
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 50px; /* 为底部导航栏留出空间 */
    border-top: 1px solid #eee;
}

.footer p {
    margin: 3px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 5px 0;
}

.footer-link {
    color: #1890ff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 12px;
}

.company-info {
    margin-top: 5px;
    font-size: 11px;
    color: #999;
}
