
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #121212;
            color: #e0e0e0;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 导航样式 */
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #ffffff;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: #6c63ff;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover, .nav-links a.active {
            background-color: rgba(108, 99, 255, 0.2);
            color: #6c63ff;
        }
        
        /* 漫画详情页样式 */
        .manga-detail-container {
            display: flex;
            margin-top: 20px;
            gap: 30px;
        }
        
        .manga-main-content {
            flex: 1;
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }
        
        .manga-header {
            display: flex;
            margin-bottom: 30px;
            gap: 25px;
        }
        
        .manga-cover {
            width: 220px;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            flex-shrink: 0;
        }
        
        .manga-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .manga-cover:hover img {
            transform: scale(1.05);
        }
        
        .manga-info {
            flex: 1;
        }
        
        .manga-title {
            font-size: 32px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .manga-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .manga-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .tag {
            background-color: #2d2b55;
            color: #a29bfe;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .tag.hot {
            background-color: #3d1e28;
            color: #ff6b6b;
        }
        
        .last-chapter {
            background-color: #2a2a2a;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #6c63ff;
        }
        
        .last-chapter span {
            font-weight: 600;
            color: #6c63ff;
        }
        
        .read-btn {
            background: linear-gradient(to right, #6c63ff, #4a44b5);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 12px rgba(108, 99, 255, 0.3);
        }
        
        .read-btn:hover {
            background: linear-gradient(to right, #5a52e0, #3a34a0);
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(108, 99, 255, 0.4);
        }
        
        /* 章节列表样式 */
        .chapters-section {
            margin-top: 30px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d2b55;
        }
        
        .chapters-list {
            max-height: 500px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .chapter-item {
            display: flex;
            align-items: center;
            padding: 18px;
            border-bottom: 1px solid #333;
            transition: background-color 0.2s ease;
            cursor: pointer;
        }
        
        .chapter-item:hover {
            background-color: #2a2a2a;
        }
        
        .chapter-item:last-child {
            border-bottom: none;
        }
        
        .chapter-cover {
            width: 80px;
            height: 60px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .chapter-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .chapter-info {
            flex: 1;
        }
        
        .chapter-name {
            font-size: 18px;
            font-weight: 600;
            color: #e0e0e0;
            margin-bottom: 5px;
        }
        
        .chapter-meta {
            font-size: 14px;
            color: #aaa;
        }
        
        /* 内容简介 */
        .manga-description {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #333;
        }
        
        .description-content {
            font-size: 16px;
            line-height: 1.8;
            color: #bbb;
            margin-top: 15px;
        }
        
        /* 侧边推荐栏 - 修改：去掉滚动，只显示6个 */
        .recommend-sidebar {
            width: 300px;
            flex-shrink: 0;
        }
        
        .recommend-container {
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 90px;
            max-height: calc(100vh - 120px);
            overflow: hidden;
        }
        
        .recommend-header {
            font-size: 20px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .recommend-list {
            height: auto;
            overflow-y: visible;
            padding-right: 5px;
        }
        
        .recommend-item {
            display: flex;
            align-items: center;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 10px;
            background-color: #2a2a2a;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .recommend-item:hover {
            background-color: #333;
            transform: translateX(5px);
        }
        
        .recommend-cover {
            width: 70px;
            height: 90px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .recommend-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recommend-info {
            flex: 1;
        }
        
        .recommend-title {
            font-size: 16px;
            font-weight: 600;
            color: #e0e0e0;
            margin-bottom: 5px;
        }
        
        .recommend-chapter {
            font-size: 14px;
            color: #aaa;
        }
        
        /* 评论区样式 */
        .comments-section {
            margin-top: 40px;
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }
        
        .comments-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .comment-count {
            color: #aaa;
            font-size: 16px;
        }
        
        .add-comment {
            display: flex;
            margin-bottom: 30px;
            gap: 15px;
        }
        
        .comment-input {
            flex: 1;
            padding: 15px;
            border: 1px solid #444;
            border-radius: 8px;
            font-size: 16px;
            resize: vertical;
            min-height: 100px;
            background-color: #2a2a2a;
            color: #e0e0e0;
        }
        
        .submit-comment {
            background-color: #6c63ff;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .submit-comment:hover {
            background-color: #5a52e0;
        }
        
        .comments-list {
            min-height: 150px;
        }
        
        .comment-item {
            padding: 20px;
            border-bottom: 1px solid #333;
        }
        
        .comment-item:last-child {
            border-bottom: none;
        }
        
        .comment-user {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #2d2b55;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a29bfe;
            font-weight: 600;
        }
        
        .user-info {
            flex: 1;
        }
        
        .user-name {
            font-weight: 600;
            color: #e0e0e0;
        }
        
        .comment-time {
            font-size: 14px;
            color: #888;
        }
        
        .comment-content {
            color: #bbb;
            line-height: 1.6;
        }
        
        .no-comments {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            font-size: 18px;
        }
        
        /* 漫画阅读页面样式 */
        .reader-container {
            display: flex;
            margin-top: 20px;
            gap: 20px;
            min-height: 80vh;
        }
        
        .reader-left {
            width: 220px;
            flex-shrink: 0;
        }
        
        .reader-center {
            flex: 1;
            background-color: #0f0f0f;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .reader-right {
            width: 280px;
            flex-shrink: 0;
        }
        
        .reader-panel {
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }
        
        .guess-you-like-title {
            font-size: 18px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 15px;
        }
        
        .guess-you-like-item {
            display: flex;
            align-items: center;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 8px;
            background-color: #2a2a2a;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .guess-you-like-item:hover {
            background-color: #333;
        }
        
        .guess-you-like-cover {
            width: 60px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        .guess-you-like-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .guess-you-like-name {
            font-size: 15px;
            font-weight: 600;
            color: #e0e0e0;
        }
        
        .manga-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: auto;
            padding: 20px;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
        
        .manga-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-radius: 4px;
        }
        
        .reader-controls {
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }
        
        .reader-controls-title {
            font-size: 18px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 15px;
        }
        
        .chapter-controls {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .control-btn {
            background-color: #2a2a2a;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            color: #a29bfe;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .control-btn:hover {
            background-color: #333;
        }
        
        .control-btn.chapters-btn {
            background-color: #6c63ff;
            color: white;
        }
        
        .control-btn.chapters-btn:hover {
            background-color: #5a52e0;
        }
        
        /* 漫耀星河页面样式 */
        .star-galaxy-container {
            margin-top: 20px;
        }
        
        .star-galaxy-title {
            font-size: 28px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .galaxy-layout {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            height: 600px;
        }
        
        .center-image {
            grid-column: 2;
            grid-row: 1 / span 2;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }
        
        .center-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .corner-image {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .corner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            padding: 20px;
        }
        
        .info-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .info-desc {
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* 漫拾旧光页面样式 - 修改：左侧大图，右侧小图+资讯列 */
        .old-light-container {
            margin-top: 20px;
        }
        
        .section-header {
            font-size: 36px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 30px;
            padding-bottom: 15px;
            text-align: center;
            border-bottom: 2px solid #2d2b55;
        }
        
        .old-light-layout {
            display: flex;
            gap: 30px;
        }
        
        .featured-manga {
            flex: 1.5; /* 左侧大图区域更宽 */
            background-color: #1e1e1e;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .featured-manga:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        
        .featured-cover {
            height: 420px; /* 左侧图片高度增加 */
            overflow: hidden;
        }
        
        .featured-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .featured-manga:hover .featured-cover img {
            transform: scale(1.05);
        }
        
        .featured-info {
            padding: 25px;
        }
        
        .featured-title {
            font-size: 24px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 10px;
        }
        
        .featured-desc {
            color: #bbb;
            line-height: 1.6;
        }
        
        .manga-sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .manga-images {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .manga-info-sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .manga-card-small {
            background-color: #1e1e1e;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            padding: 10px;
        }
        
        .manga-card-small:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        
        .manga-card-cover-small {
            width: 100px; /* 缩小到约100px */
            height: 100px; /* 缩小到约100px */
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            margin-right: 15px;
        }
        
        .manga-card-cover-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .manga-card-small:hover .manga-card-cover-small img {
            transform: scale(1.05);
        }
        
        .manga-card-info-small {
            flex: 1;
        }
        
        .manga-card-title-small {
            font-size: 16px;
            font-weight: 600;
            color: #e0e0e0;
            margin-bottom: 5px;
        }
        
        .manga-card-author-small {
            color: #aaa;
            font-size: 13px;
            margin-bottom: 5px;
        }
        
        .manga-card-desc-small {
            color: #bbb;
            font-size: 13px;
            line-height: 1.4;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        /* 内容资讯区域样式调整 */
        .manga-info-sidebar .manga-card-info-small {
            background-color: #2a2a2a;
            padding: 20px;
            border-radius: 10px;
            height: 100%;
        }
        
        .manga-info-sidebar .manga-card-title-small {
            font-size: 18px;
            margin-bottom: 15px;
            color: #6c63ff;
        }
        
        .manga-info-sidebar h5 {
            color: #6c63ff;
            margin-bottom: 8px;
        }
        
        .manga-info-sidebar p {
            color: #bbb;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .manga-info-sidebar button {
            background-color: #6c63ff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
        }
        
        .manga-info-sidebar button:hover {
            background-color: #5a52e0;
        }
        
        /* 响应式调整 */
        @media (max-width: 1024px) {
            .old-light-layout {
                flex-direction: column;
            }
            
            .manga-sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .manga-images, .manga-info-sidebar {
                flex: 1;
                min-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .manga-sidebar {
                flex-direction: column;
            }
            
            .manga-images, .manga-info-sidebar {
                min-width: 100%;
            }
        }
        
        /* 个人中心页面样式 */
        .user-center-container {
            margin-top: 20px;
        }
        
        .user-center-title {
            font-size: 36px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid #2d2b55;
        }
        
        .user-center-layout {
            display: flex;
            gap: 30px;
        }
        
        .user-sidebar {
            width: 250px;
            flex-shrink: 0;
        }
        
        .user-main-content {
            flex: 1;
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }
        
        .user-menu {
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }
        
        .user-avatar-large {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .user-avatar-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 4px solid #2d2b55;
        }
        
        .user-avatar-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .user-name {
            font-size: 22px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 5px;
        }
        
        .user-level {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 20px;
        }
        
        .user-menu-list {
            list-style: none;
        }
        
        .user-menu-item {
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #bbb;
        }
        
        .user-menu-item:hover, .user-menu-item.active {
            background-color: #2a2a2a;
            color: #6c63ff;
        }
        
        .user-menu-item i {
            width: 20px;
            text-align: center;
        }
        
        .user-section {
            display: none;
        }
        
        .user-section.active {
            display: block;
        }
        
        .user-section-title {
            font-size: 24px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d2b55;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #bbb;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #444;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
            background-color: #2a2a2a;
            color: #e0e0e0;
        }
        
        .form-input:focus {
            border-color: #6c63ff;
            outline: none;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-submit {
            background: linear-gradient(to right, #6c63ff, #4a44b5);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-submit:hover {
            background: linear-gradient(to right, #5a52e0, #3a34a0);
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(108, 99, 255, 0.4);
        }
        
        .account-info {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #333;
        }
        
        .account-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #2d2b55;
        }
        
        .account-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .account-details {
            flex: 1;
        }
        
        .account-name {
            font-size: 28px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 10px;
        }
        
        .account-meta {
            color: #aaa;
            margin-bottom: 10px;
        }
        
        .account-coins {
            font-size: 20px;
            color: #ffd166;
            font-weight: 700;
        }
        
        .account-stats {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #2a2a2a;
            border-radius: 10px;
            flex: 1;
        }
        
        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #aaa;
            font-size: 14px;
        }
        
        .message-list {
            margin-top: 20px;
        }
        
        .message-item {
            display: flex;
            padding: 20px;
            border-bottom: 1px solid #333;
            transition: background-color 0.3s ease;
        }
        
        .message-item:hover {
            background-color: #2a2a2a;
        }
        
        .message-item.unread {
            background-color: #2d2b55;
        }
        
        .message-checkbox {
            margin-right: 15px;
        }
        
        .message-content {
            flex: 1;
        }
        
        .message-title {
            font-weight: 600;
            color: #e0e0e0;
            margin-bottom: 5px;
        }
        
        .message-sender {
            color: #aaa;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .message-text {
            color: #bbb;
            margin-bottom: 10px;
        }
        
        .message-time {
            color: #777;
            font-size: 14px;
        }
        
        .message-actions {
            display: flex;
            gap: 10px;
        }
        
        .message-btn {
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
            padding: 5px;
            transition: color 0.3s ease;
        }
        
        .message-btn:hover {
            color: #6c63ff;
        }
        
        .payment-options {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .payment-option {
            flex: 1;
            text-align: center;
            padding: 20px;
            border: 2px solid #444;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .payment-option:hover, .payment-option.active {
            border-color: #6c63ff;
            background-color: #2a2a2a;
        }
        
        .payment-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: #6c63ff;
        }
        
        .payment-name {
            font-weight: 600;
            color: #e0e0e0;
        }
        
        .coins-selector {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .coin-option {
            flex: 1;
            text-align: center;
            padding: 20px;
            border: 2px solid #444;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .coin-option:hover, .coin-option.active {
            border-color: #6c63ff;
            background-color: #2a2a2a;
        }
        
        .coin-amount {
            font-size: 20px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 5px;
        }
        
        .coin-price {
            color: #aaa;
        }
        
        .record-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .record-table th {
            background-color: #2a2a2a;
            color: #6c63ff;
            font-weight: 600;
            text-align: left;
            padding: 15px;
            border-bottom: 2px solid #2d2b55;
        }
        
        .record-table td {
            padding: 15px;
            border-bottom: 1px solid #333;
            color: #bbb;
        }
        
        .record-table tr:hover {
            background-color: #2a2a2a;
        }
        
        .record-order {
            color: #6c63ff;
            font-weight: 600;
        }
        
        .record-amount {
            color: #ffd166;
            font-weight: 600;
        }
        
        .update-item {
            display: flex;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #333;
            transition: background-color 0.3s ease;
        }
        
        .update-item:hover {
            background-color: #2a2a2a;
        }
        
        .update-cover {
            width: 80px;
            height: 100px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .update-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .update-info {
            flex: 1;
        }
        
        .update-title {
            font-weight: 600;
            color: #e0e0e0;
            margin-bottom: 5px;
        }
        
        .update-chapter {
            color: #aaa;
            margin-bottom: 5px;
        }
        
        .update-time {
            color: #777;
            font-size: 14px;
        }
        
        .contribute-form {
            background-color: #2a2a2a;
            border-radius: 12px;
            padding: 30px;
            margin-top: 20px;
        }
        
        .contribute-title {
            font-size: 20px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 20px;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #0f0f0f;
            color: #e0e0e0;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #6c63ff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #6c63ff;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
            font-size: 14px;
            color: #777;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .manga-detail-container, .reader-container, .old-light-layout, .user-center-layout {
                flex-direction: column;
            }
            
            .recommend-sidebar, .reader-left, .reader-right, .user-sidebar {
                width: 100%;
                margin-top: 20px;
            }
            
            .galaxy-layout {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
                height: auto;
            }
            
            .center-image {
                grid-column: 1 / span 2;
                grid-row: 1;
                height: 400px;
            }
            
            .manga-sidebar {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .manga-header {
                flex-direction: column;
            }
            
            .manga-cover {
                width: 100%;
                max-width: 250px;
                margin: 0 auto 20px;
            }
            
            .galaxy-layout {
                grid-template-columns: 1fr;
            }
            
            .center-image {
                grid-column: 1;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .account-info {
                flex-direction: column;
                text-align: center;
            }
            
            .account-stats {
                flex-direction: column;
            }
        }
        
        /* 工具类 */
        .hidden {
            display: none !important;
        }
        
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: #6c63ff;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #5a52e0;
        }
        
        .btn-secondary {
            background-color: #2a2a2a;
            color: #a29bfe;
        }
        
        .btn-secondary:hover {
            background-color: #333;
        }
        
        /* 滚动条样式 */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1e1e1e;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        
        
        /* 精准匹配corner-image容器内的所有a链接，覆盖默认下划线和文字颜色 */
.corner-image a {
    /* 去除链接默认的下划线，核心属性 */
    text-decoration: none;
    /* 将链接文字改为白色，核心属性 */
    color: #ffffff;
    /* 可选：添加hover悬浮效果，提升交互体验（鼠标移上轻微变化，可删除） */
    transition: color 0.3s ease;
}

/* 可选：悬浮时文字微变（如浅灰），增强交互反馈，无需可删除 */
.corner-image a:hover {
    color: #f5f5f5;
}

/* 可选：如果需要让image-info内的文字继承白色，可添加（防止子元素样式覆盖） */
.corner-image .image-info {
    color: #ffffff;
}

/* 匹配center-image容器内的所有a链接 - 无下划线+白色文字 */
.center-image a {
    text-decoration: none; /* 去除下划线 */
    color: #ffffff; /* 文字改为白色 */
    transition: color 0.3s ease; /* 可选：悬浮过渡效果，保持和之前一致的交互体验 */
}

/* 可选：a链接悬浮时浅灰变色，增强交互反馈 */
.center-image a:hover {
    color: #f5f5f5;
}

/* 可选：让image-info内文字继承白色，防止子元素样式冲突（和corner-image保持一致） */
.center-image .image-info {
    color: #ffffff;
}