/* 我的页面特定样式 */
.profile-section {
    background-color: #0acd8a;
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
}

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

.user-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.user-role {
    font-size: 14px;
    opacity: 0.9;
}

.menu-list {
    margin-top: 20px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: #333;
}

.menu-icon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
}

.menu-text {
    flex: 1;
    font-size: 16px;
}

.menu-arrow {
    color: #ccc;
    font-size: 20px;
}

.logout-btn {
    margin: 20px;
    background-color: #fff;
    color: #ff3b30;
    border: none;
    padding: 15px 0;
    width: calc(100% - 40px);
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    display: block;
}

.header-right {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
}

.header-icon {
    width: 24px;
    height: 24px;
    margin-left: 15px;
}

.version-info {
    text-align: center;
    color: #999;
    font-size: 12px;
    padding: 20px 0 80px;
} 