/* 基础样式 */
        body {
            background-color: #FFEEF2; /* 浅粉色背景 */
            color: #D84B7F; /* 玫瑰红文字 */
            font-family: Arial, sans-serif;
            min-height: 100vh;
        }
        
        /* 整体容器 - 限制在1200px内 */
        .bookshelf-page-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            min-height: 440px;
			padding: 20px;
        }
        
        /* 左侧菜单样式 */
        .bookshelf-sidebar {
            width: 250px;
            background-color: white;
            box-shadow: 2px 0 10px rgba(216, 75, 127, 0.1);
            padding: 20px;
            flex-shrink: 0;
			background-color: #fff0f7;
			border-radius: 10px;
        }
        
        .bookshelf-sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .bookshelf-sidebar-menu-item {
            margin-bottom: 10px;
        }
        
        .bookshelf-sidebar-menu-link {
            display: block;
            padding: 10px 15px;
            color: #D84B7F;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .bookshelf-sidebar-menu-link:hover, .bookshelf-sidebar-menu-link.active {
            background-color: #ffcceb;
            transform: translateX(5px);
			border-radius: 6px;
        }
        
        .bookshelf-sidebar-logout-form {
            margin-top: 20px;
        }
        
        .bookshelf-sidebar-logout-btn {
            width: 100%;
            background: none;
            border: none;
            color: #D84B7F;
            text-align: left;
            padding: 12px 20px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .bookshelf-sidebar-logout-btn:hover {
            background-color: #FFEEF2;
            font-weight: bold;
            padding-left: 25px;
        }
        
        /* 主内容区容器样式 */
        .bookshelf-main-content {
            flex-grow: 1;
        }
        
        .bookshelf-container {
            width: 100%;
        }
        
        /* 标题样式 */
        .bookshelf-title {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            color: #D84B7F;
            text-shadow: 1px 1px 2px rgba(216, 75, 127, 0.2);
        }
        
        /* 空状态提示 */
        .bookshelf-empty {
            text-align: center;
            padding: 50px 0;
            font-size: 18px;
        }
        
        /* 网格布局 - 电脑端 */
        .bookshelf-comic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        /* 漫画项样式 - 电脑端 */
        .bookshelf-comic-item {
            background-color: white;
            border-radius: 8px;
            padding: 10px;
            box-shadow: 0 3px 10px rgba(216, 75, 127, 0.1);
            transition: transform 0.3s ease;
        }
        
        .bookshelf-comic-item:hover {
            transform: translateY(-5px);
        }
        
        .bookshelf-comic-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .bookshelf-comic-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        
        /* 隐藏电脑端的标题 */
        .bookshelf-comic-title {
            display: none;
        }
        
        /* 按钮样式 */
        .bookshelf-unfavorite-btn {
            width: 100%;
            background-color: #FF85A1;
            color: white;
            border: none;
            padding: 8px 0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .bookshelf-unfavorite-btn:hover {
            background-color: #D84B7F;
            transform: scale(1.05);
        }
        
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            /* 移动端隐藏侧边栏 */
            .bookshelf-sidebar {
                display: none;
            }
            
            .bookshelf-comic-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .bookshelf-comic-item {
                display: flex;
                align-items: flex-start;
                padding: 15px;
            }
            
            .bookshelf-comic-img {
                width: 70px;
                height: 90px;
                margin-bottom: 0;
                margin-right: 15px;
                flex-shrink: 0;
            }
            
            /* 移动端显示标题并控制为2行 */
            .bookshelf-comic-title {
                display: block;
                font-size: 16px;
                margin-bottom: 10px;
                font-weight: bold;
                /* 控制文本显示为2行，超出部分省略 */
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                line-height: 1.5; /* 适当调整行高 */
                max-height: 3em; /* 2行 * 1.5行高 = 3em */
            }
            
            .bookshelf-comic-info {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                min-height: 90px;
            }
            
            .bookshelf-comic-actions {
                margin-top: auto;
                align-self: flex-end;
            }
            
            .bookshelf-form {
                margin-top: 0;
            }
            
            .bookshelf-unfavorite-btn {
                width: auto;
                padding: 6px 12px;
            }
        }
        
        /* 中等屏幕适配 */
        @media (min-width: 769px) and (max-width: 1200px) {
            .bookshelf-page-container {
                padding: 0 15px;
            }
        }



        * {
            box-sizing: border-box;
            font-family: "Comic Sans MS", "Chalkboard SE", "Marker Felt", sans-serif;
        }
        

        
        .edit_profile-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 30px;
			padding: 20px;
        }
        
        /* 左侧菜单样式 */
        .edit_profile-sidebar {
            width: 250px;
            background-color: #fff0f7;
            border-radius: 6px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(219, 68, 142, 0.15);
			border-radius: 10px;
        }
        
        .edit_profile-sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .edit_profile-sidebar-menu-item {
            margin-bottom: 10px;
        }
        
        .edit_profile-sidebar-menu-link {
            display: block;
            padding: 10px 15px;
            color: #d12e6b;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
			font-size: 16px;
        }
        
        .edit_profile-sidebar-menu-link:hover,
        .edit_profile-sidebar-menu-link.active {
            background-color: #ffcceb;
            transform: translateX(5px);
        }
        
        /* 右侧内容区域 */
        .edit_profile-content {
            flex: 1;
            background-color: #fff0f7;
            border-radius: 6px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(219, 68, 142, 0.15);
        }
        
        .edit_profile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px dashed #ffb3d1;
        }
        
        .edit_profile-title {
            margin: 0;
            color: #d12e6b;
            font-size: 24px;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
        }
        
        /* 按钮样式 */
        .edit_profile-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .edit_profile-btn-back {
            background-color: #ffb3d1;
            color: #d12e6b;
        }
        
        .edit_profile-btn-back:hover {
            background-color: #ff85b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(219, 68, 142, 0.2);
        }
        
        .edit_profile-btn-save {
            background-color: #d12e6b;
            color: white;
        }
        
        .edit_profile-btn-save:hover {
            background-color: #b31a55;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(219, 68, 142, 0.2);
        }
        
        /* 表单样式 */
        .edit_profile-form-group {
            margin-bottom: 20px;
        }
        
        .edit_profile-label {
            display: block;
            margin-bottom: 8px;
            color: #d12e6b;
            font-weight: bold;
        }
        
        .edit_profile-input, 
        .edit_profile-select {
            width: 100%;
            padding: 10px;
            border: 2px solid #ffb3d1;
            border-radius: 6px;
            font-size: 14px;
            background-color: white;
            color: #d12e6b;
        }
        
        .edit_profile-input:focus, 
        .edit_profile-select:focus {
            outline: none;
            border-color: #d12e6b;
            box-shadow: 0 0 0 3px rgba(209, 46, 107, 0.1);
        }
        
        .edit_profile-input:disabled {
            background-color: #ffe6f2;
            cursor: not-allowed;
        }
        
        .edit_profile-gender-options {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }
        
        .edit_profile-gender-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .edit_profile-gender-option .edit_profile-input {
            width: auto;
        }
        
        /* 消息提示 */
        .edit_profile-message {
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
        }
        
        .edit_profile-success {
            background-color: #e6ffe6;
            color: #28a745;
            border: 2px solid #b3ffb3;
        }
        
        .edit_profile-error {
            background-color: #ffe6e6;
            color: #dc3545;
            border: 2px solid #ffb3b3;
        }
        
        .edit_profile-form-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 30px;
        }
        
        .edit_profile-small {
            display: block;
            margin-top: 5px;
            color: #ff85b3;
            font-size: 12px;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .edit_profile-container {
                flex-direction: column;
            }
            
            .edit_profile-sidebar {
                width: 100%;
                display: none; /* 移动端隐藏左侧菜单 */
            }
            
            .edit_profile-content {
                padding: 20px;
            }
        }
        a {
            color: #D84B7F;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #B93A68;
        }
        
        /* 容器样式 - 确保在1200px内居中 */
        .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .recharge_log-container {
            width: 100%;
            padding: 20px;
            display: flex;
            gap: 30px;
        }
        
        /* 左侧菜单样式 */
        .recharge_log-sidebar {
            width: 250px;
            background-color: white;
            box-shadow: 2px 0 10px rgba(216, 75, 127, 0.1);
            padding: 20px;
            flex-shrink: 0;
            background-color: #fff0f7;
			border-radius: 10px;
        }
        
        .recharge_log-sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .recharge_log-sidebar-menu-item {
            margin-bottom: 10px;
        }
        
        .recharge_log-sidebar-menu-link {
            display: block;
            padding: 10px 15px;
            color: #D84B7F;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .recharge_log-sidebar-menu-link:hover,
        .recharge_log-sidebar-menu-link.active {
            background-color: #ffcceb;
            transform: translateX(5px);
            border-radius: 6px;
        }
        
        /* 主内容区样式 */
        .recharge_log-main {
            flex: 1;
            background-color: #FFF5F8;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 3px 10px rgba(216, 75, 127, 0.1);
        }
        
        .recharge_log-title {
            font-size: 24px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #FFD1DC;
        }
        
        /* 无记录提示样式 */
        .recharge_log-no-records {
            text-align: center;
            padding: 50px 20px;
            background-color: #FFEEF2;
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .recharge_log-no-records p {
            font-size: 18px;
            margin-bottom: 20px;
            color: #D84B7F;
        }
        
        /* 表格样式 */
        .recharge_log-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .recharge_log-table th,
        .recharge_log-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #FFD1DC;
        }
        
        .recharge_log-table th {
            background-color: #FFD1DC;
            font-weight: bold;
        }
        
        .recharge_log-table tr:hover {
            background-color: #FFEFF3;
        }
        
        /* 状态标签样式 */
        .recharge_log-status {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 10px;
            font-size: 14px;
            color: white;
        }
        
        .recharge_log-status-paid {
            background-color: #5CB85C;
        }
        
        .recharge_log-status-unpaid {
            background-color: #D9534F;
        }
        
        /* 按钮样式 */
        .recharge_log-btn {
            display: inline-block;
            padding: 8px 16px;
            background-color: #D84B7F;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .recharge_log-btn:hover {
            background-color: #B93A68;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(216, 75, 127, 0.2);
        }
        
        /* 响应式样式 */
        @media (max-width: 992px) {
            .recharge_log-container {
                gap: 15px;
            }
            
            .recharge_log-sidebar {
                width: 220px;
                padding: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .recharge_log-sidebar {
                display: none; /* 移动端隐藏左侧菜单 */
            }
            
            .recharge_log-main {
                padding: 0px;
            }
			.recharge_log-container {
				padding: 10px 0;
            }
			.recharge_log-title{
                padding: 10px;
            }
            
            /* 移动端隐藏订单号和会员类型列 */
            .recharge_log-table th:nth-child(1),  /* 订单号 */
            .recharge_log-table td:nth-child(1),
            .recharge_log-table th:nth-child(3),  /* 会员类型 */
            .recharge_log-table td:nth-child(3) {
                display: none;
            }
            
            .recharge_log-no-records {
                padding: 30px 15px;
            }
        }
		
body.login {
            background-color: #FFE6F2; /* 浅粉色背景 */
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
			justify-content: center;
        }
        
        /* 登录容器样式 */
        .login-container {
            width: 90%;
            max-width: 400px;
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
            margin-top: 50px;
        }
        
        .login-title {
            color: #E6399B; /* 玫瑰红文字 */
            text-align: center;
            margin-bottom: 25px;
            font-size: 28px;
            text-shadow: 1px 1px 3px rgba(255, 105, 180, 0.3);
        }
        
        /* 表单组样式 */
        .login-form-group {
            margin-bottom: 20px;
        }
        
        .login-label {
            display: block;
            margin-bottom: 8px;
            color: #E6399B; /* 玫瑰红文字 */
            font-weight: bold;
        }
        
        .login-input {
            width: 100%;
            padding: 12px;
            border: 2px solid #FFB6C1;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .login-input:focus {
            outline: none;
            border-color: #E6399B;
            box-shadow: 0 0 0 3px rgba(230, 57, 155, 0.1);
        }
        
        /* 按钮样式 */
        .login-btn {
            width: 100%;
            padding: 12px;
            background-color: #FF69B4;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: translateY(0);
            box-shadow: 0 4px 0 #E6399B;
        }
        
        .login-btn:hover {
            background-color: #E6399B;
            transform: translateY(2px);
            box-shadow: 0 2px 0 #CC1A7E;
        }
        
        /* 错误提示样式 */
        .login-error {
            color: #E6399B;
            text-align: center;
            margin-bottom: 15px;
            padding: 10px;
            background-color: #FFF0F5;
            border-radius: 6px;
            border: 1px solid #FFB6C1;
        }
        
        /* 注册链接样式 */
        .login-register-link {
            text-align: center;
            margin-top: 20px;
            color: #E6399B;
			font-size: 16px;
        }
        
        .login-register-link a {
            color: #E6399B;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        
        .login-register-link a:hover {
            color: #CC1A7E;
            text-decoration: underline;
        }
		
.register-container {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2); /* 粉色阴影 */
            width: 100%;
            max-width: 400px; /* 电脑端宽度 */
        }
        
        .register-title {
            color: #E63972; /* 玫瑰红文字 */
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            text-shadow: 1px 1px 3px rgba(255, 105, 180, 0.3);
        }
        
        .register-form-group {
            margin-bottom: 1.2rem;
        }
        
        .register-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #E63972; /* 玫瑰红文字 */
            font-weight: 500;
        }
        
        .register-input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #FFB6C1; /* 浅粉色边框 */
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .register-input:focus {
            outline: none;
            border-color: #E63972; /* 玫瑰红边框 */
            box-shadow: 0 0 0 2px rgba(230, 57, 114, 0.1);
        }
        
        .register-btn {
            width: 100%;
            padding: 0.8rem;
            background-color: #E63972; /* 玫瑰红按钮 */
            color: white;
            border: none;
            border-radius: 6px; /* 严格遵循6px圆角 */
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease; /* 悬停动画效果 */
            box-shadow: 0 2px 5px rgba(230, 57, 114, 0.3);
        }
        
        .register-btn:hover {
            background-color: #D62828; /* 深一点的红色 */
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(230, 57, 114, 0.4);
        }
        
        .register-error {
            color: #D62828;
            text-align: center;
            margin-bottom: 1rem;
            padding: 0.5rem;
            background-color: #FFEBEE;
            border-radius: 6px;
            border: 1px solid #F8BBD0;
        }
        
        .register-success {
            color: #4CAF50;
            text-align: center;
            margin-bottom: 1rem;
            padding: 0.5rem;
            background-color: #E8F5E9;
            border-radius: 6px;
            border: 1px solid #C8E6C9;
        }
        
        .register-login-link {
            text-align: center;
            margin-top: 1.5rem;
            color: #E63972;
			font-size: 16px;
        }
        
        .register-login-link a {
            color: #E63972;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        
        .register-login-link a:hover {
            color: #D62828;
            text-decoration: underline;
        }
        
        .register-small-text {
            color: #E63972;
            font-size: 0.8rem;
            margin-top: 0.3rem;
            display: block;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .register-container {
                width: 90%; /* 移动端宽度90% */
                padding: 1.5rem;
            }
        }
		
/* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #FFEEF2; /* 浅粉色背景 */
            color: #D8437A; /* 玫瑰红文字 */
            line-height: 1.6;
        }
        
        /* 容器样式 */
        .vip-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        /* 左侧菜单样式 */
        .vip-sidebar {
            width: 200px;
            background-color: #FFF0F5;
            border-radius: 6px;
            padding: 15px;
        }
        
        .vip-sidebar h3 {
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FFB6C1;
        }
        
        .vip-sidebar ul {
            list-style: none;
        }
        
        .vip-sidebar li {
            margin-bottom: 10px;
        }
        
        .vip-sidebar a {
            color: #D8437A;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .vip-sidebar a:hover {
            color: #FF69B4;
            padding-left: 5px;
        }
        
        /* 主内容区样式 */
        .vip-main {
            flex: 1;
        }
        
        .vip-main h2 {
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FFB6C1;
        }
        
        /* 卡片容器样式 */
        .vip-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        /* 卡片样式 */
        .vip-card {
            background-color: white;
            border: 1px solid #FFB6C1;
            border-radius: 6px;
            padding: 10px;
            width: calc(25% - 15px);
            text-align: center;
            box-shadow: 0 3px 10px rgba(216, 67, 122, 0.1);
            transition: transform 0.3s;
        }
        
        .vip-card:hover {
            transform: translateY(-5px);
        }
        
        .vip-card h3 {
            color: #D8437A;
            margin-bottom: 10px;
        }
        
        .vip-validity {
            color: #D8437A;
            margin-bottom: 10px;
        }
        
        .vip-price {
            font-size: 24px;
            color: #D8437A;
            font-weight: bold;
            margin: 15px 0;
        }
        
        .vip-description {
            font-size: 14px;
            color: #D8437A;
            margin-bottom: 15px;
            padding: 0 10px;
        }
        
        /* 按钮样式 */
        .vip-btn-pay {
            padding: 10px 20px;
            background: #D8437A;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .vip-btn-pay:hover {
            background: #FF69B4;
            transform: scale(1.05);
        }
        
        /* 弹窗样式 */
        .vip-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .vip-modal-content {
            background-color: white;
            border-radius: 6px;
            padding: 20px;
            width: 300px;
            max-width: 80%;
            text-align: center;
        }
        
        .vip-modal h3 {
            margin-bottom: 15px;
            color: #D8437A;
        }
        
        .vip-modal p {
            margin-bottom: 10px;
        }
        
        .vip-payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        
        .vip-payment-btn {
            padding: 10px 15px;
            background: #FFB6C1;
            color: #D8437A;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
            max-width: 120px;
        }
        
        .vip-payment-btn:hover {
            background: #D8437A;
            color: white;
        }
        
        .vip-close-modal {
            padding: 8px 15px;
            background: #f0f0f0;
            color: #666;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            margin-top: 10px;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .vip-sidebar {
                display: none;
            }
            
            .vip-card {
                width: calc(50% - 10px);
            }
        }
/* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #FFEEF2; /* 浅粉色背景 */
            color: #D84B7F; /* 玫瑰红文字 */
            line-height: 1.6;
        }
        
        a {
            color: #D84B7F;
            text-decoration: none;
        }
        
        /* 容器样式 */
        .user-vip-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 卡片通用样式 */
        .user-vip-card {
            background-color: #FFF;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(216, 75, 127, 0.15);
			width: 100%;
        }
        
        /* 按钮样式 */
        .user-vip-btn {
            display: inline-block;
            padding: 8px 80px;
            background-color: #FFB6C1;
            color: #D84B7F;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .user-vip-btn:hover {
            background-color: #D84B7F;
            color: #FFF;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(216, 75, 127, 0.3);
        }
        
        /* 电脑端布局 */
        @media (min-width: 768px) {
            .user-vip-sidebar {
                float: left;
                width: 200px;
            }
            
            .user-vip-content {
                float: right;
                width: calc(100% - 270px);
            }
            
            .user-vip-clear {
                clear: both;
            }
            
            .user-vip-mobile-only {
                display: none !important;
            }
            
            .user-row-1, .user-row-2 {
                display: flex;
                gap: 15px;
                margin-bottom: 15px;
            }
            
            .user-row-1 .user-vip-card {
                flex: 1;
                margin-bottom: 0;
            }
            
            .user-row-2 .user-vip-card {
                width: 100%;
                margin-bottom: 0;
            }
            
            .user-vip-balance-title, .user-vip-permission-title {
                font-weight: bold;
                margin-bottom: 10px;
                font-size: 16px;
            }
            
            .user-vip-balance-value, .user-vip-permission-value {
                font-size: 24px;
                margin-bottom: 5px;
            }
            
            .user-vip-expire-date {
                font-size: 14px;
                color: #999;
                margin-top: 10px;
            }
            
            .user-vip-info-item {
                margin-bottom: 10px;
            }
            
            .user-vip-info-label {
                display: inline-block;
                width: 100px;
                font-weight: bold;
            }
			
			.user-vip-info-item {
			    display: flex;
			}
        }
        
        /* 移动端布局 */
        @media (max-width: 767px) {
            .user-vip-sidebar, .user-vip-desktop-only {
                display: none !important;
            }
            
            .user-vip-header-card {
                display: flex;
                align-items: center;
				width: 100%;
            }
            
            .user-vip-avatar {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                margin-right: 15px;
                background-color: #FFB6C1;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .user-vip-avatar img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
                object-fit: cover;
            }
            
            .user-vip-user-info {
                flex: 1;
            }
            
            .user-vip-username {
                font-size: 18px;
                font-weight: bold;
                margin-bottom: 5px;
            }
            
            .user-vip-edit-profile {
                font-size: 14px;
                color: #D84B7F;
            }
            
            .user-vip-status-card {
                display: flex;
                justify-content: space-between;
				width: 100%;
            }
            
            .user-vip-status-item {
                flex: 1;
                text-align: center;
                padding: 10px 5px;
            }
            
            .user-vip-status-title {
                font-size: 14px;
                margin-bottom: 5px;
            }
            
            .user-vip-status-value {
                font-size: 18px;
                font-weight: bold;
                margin-bottom: 5px;
            }
            
            .user-vip-status-desc {
                font-size: 12px;
                color: #999;
            }
            
            .user-vip-permission-normal {
                color: #333; /* 普通用户黑色 */
            }
            
            .user-vip-permission-vip {
                color: #FF69B4; /* 会员用户粉红色 */
            }
            
            .user-vip-permission-admin {
                color: #FF3333; /* 管理员红色 */
            }
            
            .user-vip-service-card {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .user-vip-service-item {
                padding: 15px 10px;
                text-align: center;
                background-color: #FFEEF2;
                border-radius: 6px;
            }
            
            .user-vip-bottom-btn {
                width: 100%;
                padding: 15px;
                box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
				border-radius: 10px;
            }
            
            .user-vip-logout-btn {
                display: block;
                width: 100%;
                padding: 12px;
                background-color: #D84B7F;
                color: #FFF;
                text-align: center;
                border-radius: 6px;
                font-weight: bold;
            }
        }
        
        /* 菜单样式 */
        .user-vip-menu-list {
            list-style: none;
        }
        
        .user-vip-menu-item {
            margin-bottom: 8px;
        }
        
        .user-vip-menu-link {
            display: block;
            padding: 10px 15px;
            background-color: #FFF;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .user-vip-menu-link:hover, .user-vip-menu-link.active {
            background-color: #D84B7F;
            color: #FFF;
        }
        
        /* 会员卡片特殊样式 */
        .user-vip-vip-card {
            text-align: center;
            background-color: #FFD1DC;
			width: 100%;
        }
        
        .user-vip-vip-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }