 /* 用户页面样式 */
 .user-header {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.user-info-container {
    max-width: 600px;
    margin: 0 auto;
}

.user-basic-info {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 60px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.user-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 60px;
}

.user-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.2;
}

.vip-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vip-status {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vip-tag {
    display: none;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vip-expire {
    color: #666;
    font-size: 12px;
}

.upgrade-vip-btn {
    display: none;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
}

.upgrade-vip-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.menu-list {
    background: #fff;
    margin-top: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

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

.menu-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.menu-item span {
    flex: 1;
}

.menu-item .arrow {
    color: #999;
    font-size: 18px;
}

/* 语言切换样式 */
.language-status {
    background-color: #f0f0f0;
    color: #333;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 10px;
}

#current-language {
    font-weight: 500;
}

.language-active {
    background-color: #e1f5fe;
    color: #0277bd;
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 300px;
    text-align: center;
}

.contact-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.contact-text {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.5;
}

#modal-close {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 20px;
    background-color: #2E8B57;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.activate-form {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activate-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.activate-btn {
    padding: 10px 20px;
    background-color: #2E8B57;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.activate-btn:hover {
    background-color: #3CB371;
}

.message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.message.success {
    background-color: #2E8B57;
}

.message.error {
    background-color: #DC3545;
}

.message.info {
    background-color: #17A2B8;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.user-vip-status {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}