        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.6;
            min-height: 100vh;
        }



        .glass-nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 2px solid #2a9d8f;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1880px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #2a9d8f;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-main {
            display: flex;
            gap: 3px;
            align-items: center;
        }

        .nav-link {
            color: #b0b0b0;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(42, 157, 143, 0.2);
            color: #2a9d8f;
        }

        .nav-user {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn {
            padding: 8px 18px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 36px;
            font-size: 14px;
            line-height: 1;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2a9d8f, #264653);
            color: white;
            border: 2px solid transparent;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #2a9d8f;
            color: #2a9d8f;
        }

        .btn-outline:hover {
            background: rgba(42, 157, 143, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.4);
        }

        .search-container {
            position: relative;
        }

        .search-input {
            padding: 10px 15px 10px 40px;
            border: 2px solid #2a9d8f;
            border-radius: 25px;
            width: 250px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: rgba(30, 30, 30, 0.9);
            color: #e0e0e0;
        }

        .search-input:focus {
            outline: none;
            width: 300px;
            box-shadow: 0 0 10px rgba(42, 157, 143, 0.5);
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #2a9d8f;
        }

        .main-content {
            flex: 1;
            padding-top: 100px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-container {
            display: block;
            width: 1400px;
            margin: 0 auto;
        }

        .page-container.hidden {
            display: none;
        }

        .banner-section {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            height: 500px;
            background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
        }

        .banner-slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .banner-slides {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
        }

        .banner-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
            max-width: 800px;
        }

        .slide-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .slide-desc {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.7;
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .banner-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .banner-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .banner-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .banner-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 3;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 2.2rem;
            color: #2a9d8f;
            font-weight: bold;
            position: relative;
            padding-left: 15px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background: linear-gradient(135deg, #2a9d8f, #264653);
            border-radius: 3px;
        }

        .view-all {
            color: #2a9d8f;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .view-all:hover {
            color: #e9c46a;
            transform: translateX(5px);
        }

        .glass-card {
            background: rgba(30, 30, 60, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .comics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .comic-card {
            background: rgba(40, 40, 70, 0.9);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .comic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .comic-cover {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .comic-info {
            padding: 20px;
        }

        .comic-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #e0e0e0;
        }

        .comic-meta {
            display: flex;
            justify-content: space-between;
            color: #b0b0b0;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .comic-intro {
            color: #888;
            font-size: 0.9rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .comic-badge {
            background: #e76f51;
            color: white;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: bold;
            margin-left: 10px;
        }

        .ranking-list {
            display: grid;
            gap: 15px;
        }

        .ranking-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: rgba(50, 50, 80, 0.8);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .ranking-item:hover {
            transform: translateX(5px);
            background: rgba(60, 60, 100, 0.8);
        }

        .rank-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2a9d8f;
            width: 40px;
            text-align: center;
        }

        .ranking-info {
            flex: 1;
            margin-left: 15px;
        }

        .ranking-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: #e0e0e0;
        }

        .ranking-meta {
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .ranking-badge {
            background: #e76f51;
            color: white;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            margin-left: 10px;
        }

        .recommend-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .recommend-card {
            background: rgba(40, 40, 70, 0.9);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .recommend-card:hover {
            transform: scale(1.05);
            background: rgba(50, 50, 90, 0.9);
        }

        .recommend-cover {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }

        .category-item {
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.9), rgba(38, 70, 83, 0.9));
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .category-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .category-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 30px rgba(42, 157, 143, 0.4);
            background: linear-gradient(135deg, rgba(42, 157, 143, 1), rgba(38, 70, 83, 1));
        }

        .category-item:hover::before {
            opacity: 1;
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .category-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .category-count {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .category-item:hover .category-icon {
            transform: scale(1.1);
            color: white;
        }

        .hot-comics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }

        .hot-comic-card {
            background: rgba(40, 40, 70, 0.9);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .hot-comic-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(42, 157, 143, 0.4);
        }

        .hot-comic-card .hot-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            z-index: 1;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .hot-comic-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .hot-comic-info {
            padding: 15px;
        }

        .hot-comic-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: #e0e0e0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hot-comic-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #b0b0b0;
            font-size: 0.85rem;
        }

        .hot-comic-meta .views {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .author-name {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .author-works {
            font-size: 0.9rem;
            color: #b0b0b0;
        }

        .chapters-page {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: #2a9d8f;
            color: #fff;
            /* 改为白色以提高对比度 */
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: #21867a;
            transform: translateX(-5px);
        }

        .chapters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }

        .chapter-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .chapter-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.98);
        }

        .stars {
            color: #ffd700;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
            margin-right: 5px;
        }

        /* 魔法棒星星动画 */
        .magic-wand-stars {
            display: inline-block;
            position: relative;
            width: 24px;
            height: 24px;
            margin-right: 18px;
            margin-top: 6px;
            vertical-align: middle;
        }

        .magic-wand {
            position: absolute;
            top: 35%;
            left: 15%;
            transform: translateY(-50%) rotate(-45deg);
            width: 18px;
            height: 3px;
            background: linear-gradient(to right, #ffd700, #ffed4e);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
            animation: wandGlow 2s ease-in-out infinite;
        }

        .magic-wand::before {
            content: '';
            position: absolute;
            top: -2px;
            right: -3px;
            width: 7px;
            height: 7px;
            background: #ffd700;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
        }

        .magic-star {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ffd700;
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
        }

        .magic-star:nth-child(2) {
            top: 7px;
            left: 22px;
            animation: starFloat1 3s ease-in-out infinite;
        }

        .magic-star:nth-child(3) {
            top: 8px;
            left: 24px;
            animation: starFloat2 2.5s ease-in-out infinite;
        }

        .magic-star:nth-child(4) {
            top: 9px;
            left: 26px;
            animation: starFloat3 2.8s ease-in-out infinite;
        }

        .magic-star:nth-child(5) {
            top: 11px;
            left: 29px;
            animation: starFloat1 3.2s ease-in-out infinite;
        }

        @keyframes wandGlow {

            0%,
            100% {
                box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
            }

            50% {
                box-shadow: 0 0 15px rgba(255, 215, 0, 1);
            }
        }

        @keyframes starFloat1 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 1;
            }

            25% {
                transform: translate(-3px, -2px) scale(1.2);
                opacity: 0.8;
            }

            50% {
                transform: translate(2px, -3px) scale(0.9);
                opacity: 1;
            }

            75% {
                transform: translate(-2px, 2px) scale(1.1);
                opacity: 0.9;
            }
        }

        @keyframes starFloat2 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 1;
            }

            33% {
                transform: translate(3px, -2px) scale(1.1);
                opacity: 0.8;
            }

            66% {
                transform: translate(-2px, 3px) scale(0.9);
                opacity: 1;
            }
        }

        @keyframes starFloat3 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 1;
            }

            20% {
                transform: translate(-2px, -3px) scale(1.2);
                opacity: 0.7;
            }

            40% {
                transform: translate(3px, 2px) scale(0.8);
                opacity: 1;
            }

            60% {
                transform: translate(-3px, 1px) scale(1.1);
                opacity: 0.9;
            }

            80% {
                transform: translate(2px, -2px) scale(0.9);
                opacity: 1;
            }
        }

        .chapter-meta.free {
            background: rgba(42, 157, 143, 0.1);
            border: 1px solid rgba(42, 157, 143, 0.3);
            border-radius: 15px;
            padding: 2px 8px;
            font-size: 0.9rem;
        }

        .chapter-meta.purchased {
            background: rgba(26, 26, 46, 0.9);
            border-radius: 15px;
            padding: 4px 12px;
            font-size: 0.9rem;
            color: #2a9d8f;
            font-weight: 600;
        }

        .chapter-meta.locked {
            background: rgba(255, 87, 34, 0.1);
            border: 1px solid rgba(255, 87, 34, 0.3);
            border-radius: 15px;
            padding: 2px 8px;
            font-size: 0.9rem;
        }

        .chapter-cover {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .chapter-info {
            padding: 15px;
            text-align: center;
        }

        .chapter-title {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: #333;
        }

        .chapter-author {
            font-size: 0.8rem;
            color: #666;
        }

        .article-page {

            background: rgba(255, 255, 255, 0.98);

            border-radius: 20px;

            padding: 40px;

            margin-bottom: 30px;

            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

        }

        .all-comics-page {

            background: rgba(255, 255, 255, 0.98);

            border-radius: 20px;

            padding: 40px;

            margin-bottom: 30px;

            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

        }

        .article-container {
            line-height: 1.8;
            color: #fff;
        }

        .article-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #2a9d8f;
        }

        .article-content h3 {
            color: #2a9d8f;
            margin: 25px 0 15px;
            font-size: 1.3rem;
        }

        .article-content p {
            margin-bottom: 15px;
            color: #333;
            /* 提高文字对比度 */
        }

        .article-content ul {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .article-content li {
            margin-bottom: 8px;
            color: #333;
            /* 提高文字对比度 */
        }

        .comic-reader-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            overflow-y: auto;
        }

        .reader-content {
            position: relative;
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .close-reader {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #e76f51;
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 16px;
            z-index: 2001;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .comic-pages-container {
            background: #1a1a1a;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .comic-title-bar {
            background: rgba(0, 0, 0, 0.7);
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
        }

        .comic-title-bar h3 {
            color: white;
            margin: 0;
            font-size: 1.5rem;
        }

        .comic-page-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
            display: block;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .page-indicator {
            text-align: center;
            color: #fff;
            /* 提高文字对比度 */
            margin: 10px 0 30px;
            font-size: 1rem;
        }

        .preview-end {
            background: linear-gradient(135deg, rgba(255, 87, 34, 0.15), rgba(255, 87, 34, 0.05));
            border: 1px solid rgba(255, 87, 34, 0.3);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            margin-top: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(255, 87, 34, 0.1);
        }

        .preview-end h4 {
            color: #ff5722;
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .preview-end p {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .preview-end .price-info {
            background: rgba(42, 157, 143, 0.1);
            border: 1px solid rgba(42, 157, 143, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            display: inline-block;
        }

        .preview-end .price-info .price {
            color: #2a9d8f;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .preview-end .price-info .balance {
            color: #e0e0e0;
            font-size: 1rem;
            margin-top: 5px;
        }

        .preview-end .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 25px;
        }

        .preview-end .action-btn {
            background: linear-gradient(135deg, #2a9d8f, #264653);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
        }

        .preview-end .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4);
        }

        .preview-end .action-btn.secondary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .preview-end .action-btn.secondary:hover {
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .action-btn {
            background: #ff5722;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }

        .action-btn:hover {
            background: #e64a19;
        }

        .site-footer {
            background: rgba(0, 0, 0, 0.8);
            color: #b0b0b0;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: #e0e0e0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #2a9d8f;
        }

        .footer-contact {
            color: #b0b0b0;
            line-height: 1.8;
        }

        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-contact i {
            color: #2a9d8f;
            width: 20px;
            text-align: center;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 30000;
        }

        .modal {
            display: none;
            /* 默认隐藏，通过JavaScript控制显示 */
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-radius: 20px;
            padding: 0;
            width: 90%;
            max-width: 500px;
            z-index: 30001;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
            color: #e0e0e0;
            min-height: 400px;
            border: 2px solid rgba(42, 157, 143, 0.3);
            backdrop-filter: blur(10px);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 1px solid rgba(42, 157, 143, 0.3);
            background: rgba(0, 0, 0, 0.2);
            border-radius: 18px 18px 0 0;
        }

        .modal-title {
            font-size: 1.5rem;
            color: #2a9d8f;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-body {
            padding: 30px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 0 0 18px 18px;
        }

        .modal-content {
            padding: 25px;
            border-radius: 15px;
            background: transparent;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(42, 157, 143, 0.3);
        }

        .modal-title {
            font-size: 1.5rem;
            color: #2a9d8f;
            font-weight: 600;
        }

        #chapter-modal-title {
            color: #2a9d8f;
            font-weight: 600;
            font-size: 1.4rem;
        }

        .close-modal {
            font-size: 1.5rem;
            color: #999;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
        }

        .close-modal:hover {
            color: #ff4757;
            background: rgba(255, 71, 87, 0.2);
            transform: scale(1.1);
        }

        .close-btn {
            font-size: 1.5rem;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 300;
            line-height: 1;
            padding: 0;
            margin: 0;
        }

        .close-btn:hover {
            color: #ff4757;
            background: rgba(255, 71, 87, 0.2);
            border-color: rgba(255, 71, 87, 0.4);
            transform: scale(1.1);
        }

        .close-btn:active {
            transform: scale(0.95);
        }

        .modal-body {
            color: #e0e0e0;
        }

        .form-group {
            margin-bottom: 20px;
        }

        /* 站点配置表单样式 */
        .config-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .config-section {
            background: rgba(40, 40, 60, 0.6);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .config-section h4 {
            color: #2a9d8f;
            margin-bottom: 20px;
            font-size: 1.2rem;
            border-bottom: 2px solid rgba(42, 157, 143, 0.3);
            padding-bottom: 10px;
        }

        .logo-preview {
            text-align: center;
            padding: 15px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            border: 1px dashed rgba(255, 255, 255, 0.2);
        }

        .logo-preview img {
            max-width: 120px;
            max-height: 60px;
            margin-bottom: 10px;
        }

        .logo-info {
            color: #888;
            font-size: 0.9rem;
            margin: 0;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #b0b0b0;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(20, 20, 35, 0.9);
            border: 1px solid rgba(42, 157, 143, 0.3);
            border-radius: 8px;
            font-size: 16px;
            color: #e0e0e0;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #2a9d8f;
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
            background: rgba(30, 30, 45, 0.95);
        }

        .readonly-input {
            cursor: help;
            background: rgba(20, 20, 35, 0.5) !important;
            color: #999 !important;
        }

        .readonly-input:hover {
            border-color: #e76f51;
            background: rgba(30, 30, 45, 0.6) !important;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #2a9d8f, #21867a);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.4);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .modal-title {
            font-size: 1.5rem;
            color: #2a9d8f;
        }

        .close-modal {
            font-size: 1.5rem;
            color: #999;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: #ff4757;
        }

        /* 充值模态框标题样式 */
        #recharge-modal .modal-title {
            color: #2a9d8f;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        #recharge-modal .modal-title i {
            background: linear-gradient(135deg, #2a9d8f, #21867a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 1.8rem;
        }

        /* 充值模态框整体样式 */
        #recharge-modal .modal-body {
            padding: 30px;
        }

        #recharge-modal .form-group {
            margin-bottom: 25px;
        }

        #recharge-modal .form-label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        #recharge-modal .form-input {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        #recharge-modal .form-input:focus {
            border-color: #2a9d8f;
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
            outline: none;
        }

        /* 立即充值按钮样式 */
        #recharge-submit {
            background: linear-gradient(135deg, #2a9d8f, #21867a);
            border: none;
            border-radius: 25px;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        #recharge-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
        }

        #recharge-submit:active {
            transform: translateY(0);
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-label {
            display: block;
            margin-bottom: 5px;
            color: #666;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-input:focus {
            outline: none;
            border-color: #2a9d8f;
            box-shadow: 0 0 5px rgba(42, 157, 143, 0.5);
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: #2a9d8f;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #21867a;
        }

        .form-footer {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: #666;
        }

        .form-footer a {
            color: #2a9d8f;
            text-decoration: none;
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 15px;
            }

            .nav-main {
                flex-wrap: wrap;
                justify-content: center;
            }

            .search-input {
                width: 200px;
            }

            .search-input:focus {
                width: 250px;
            }

            .comics-grid {
                grid-template-columns: 1fr;
            }

            .slide-title {
                font-size: 2.5rem;
            }

            .banner-section {
                height: 400px;
            }

            .chapters-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .chapters-page,
            .article-page {
                padding: 20px;
            }

            .modal {
                width: 95%;
                padding: 20px;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* 模态框样式优化 */
        .modal {
            animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: center;
        }

        @keyframes modalAppear {
            0% {
                transform: translate(-50%, -50%) scale(0.7);
                opacity: 0;
            }

            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        /* 注册协议复选框样式 */

        .agree-terms {

            display: flex;

            align-items: flex-start;

            margin: 15px 0;

            padding: 12px;

            background: rgba(42, 157, 143, 0.08);

            border-radius: 8px;

            border: 1px solid rgba(42, 157, 143, 0.2);

            transition: all 0.3s ease;

        }

        .agree-terms:hover {

            background: rgba(42, 157, 143, 0.12);

            border-color: rgba(42, 157, 143, 0.3);

        }

        .agree-terms input {

            margin-right: 10px;

            margin-top: 3px;

            transform: scale(1.2);

        }

        .agree-terms a {

            color: #2a9d8f;

            text-decoration: none;

            font-weight: 500;

        }

        .agree-terms a:hover {

            text-decoration: underline;

        }

        /* 支付选项动效 */

        .payment-option {

            transition: all 0.3s ease;

            border: 2px solid #ddd;

        }

        .payment-option.selected {

            border-color: #2a9d8f;

            background: rgba(42, 157, 143, 0.1);

            transform: scale(1.05);

        }

        /* 充值选项样式 */

        .recharge-options {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));

            gap: 15px;

            margin: 20px 0;

        }

        .recharge-option {

            background: linear-gradient(135deg, #f8f9fa, #e9ecef);

            border: 2px solid #dee2e6;

            border-radius: 12px;

            padding: 20px 15px;

            text-align: center;

            cursor: pointer;

            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

            position: relative;

            overflow: hidden;

        }

        .recharge-option::before {

            content: '';

            position: absolute;

            top: 0;

            left: -100%;

            width: 100%;

            height: 100%;

            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);

            transition: left 0.5s;

        }

        .recharge-option:hover::before {

            left: 100%;

        }

        .recharge-option:hover {

            transform: translateY(-5px);

            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

            border-color: #2a9d8f;

        }

        .recharge-option.selected {

            background: linear-gradient(135deg, #2a9d8f, #21867a);

            border-color: #2a9d8f;

            color: white;

            transform: translateY(-5px) scale(1.03);

            box-shadow: 0 15px 30px rgba(42, 157, 143, 0.3);

        }

        .recharge-amount {

            font-size: 1.5rem;

            font-weight: bold;

            margin-bottom: 8px;

        }

        .recharge-price {

            font-size: 1.1rem;

            color: #6c757d;

            margin-bottom: 5px;

        }

        .recharge-option.selected .recharge-price {

            color: rgba(255, 255, 255, 0.9);

        }

        .recharge-bonus {

            font-size: 0.9rem;

            color: #e76f51;

            font-weight: 500;

        }

        .recharge-option.selected .recharge-bonus {

            color: #ffd166;

        }

        /* 支付方式样式 */

        .payment-methods {

            display: flex;

            gap: 15px;

            flex-wrap: wrap;

            justify-content: space-between;

        }

        .payment-option {

            flex: 1;

            min-width: 120px;

            background: white;

            border: 2px solid #e9ecef;

            border-radius: 10px;

            padding: 15px;

            text-align: center;

            cursor: pointer;

            transition: all 0.3s ease;

            display: flex;

            flex-direction: column;

            align-items: center;

            gap: 8px;

        }

        .payment-option:hover {

            border-color: #2a9d8f;

            transform: translateY(-3px);

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        }

        .payment-option.active {

            border-color: #2a9d8f;

            background: linear-gradient(135deg, #e8f5f3, #d1ede9);

            transform: translateY(-3px);

            box-shadow: 0 8px 20px rgba(42, 157, 143, 0.2);

        }

        .payment-option i {

            font-size: 32px;

            margin-bottom: 5px;

            transition: transform 0.3s ease;

        }

        .payment-option:hover i {

            transform: scale(1.1);

        }

        .payment-option span {

            font-size: 0.95rem;

            font-weight: 500;

            color: #495057;

        }

        .payment-option.active span {

            color: #2a9d8f;

            font-weight: 600;

        }

        /* 当前余额样式 */

        .current-balance {

            background: linear-gradient(135deg, #fff3cd, #ffeaa7);

            border: 1px solid #ffeaa7;

            border-radius: 8px;

            padding: 15px;

            text-align: center;

            font-size: 1.2rem;

            color: #856404;

            font-weight: bold;

        }

        /* 模态框样式优化 */

        .modal {

            animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

            transform-origin: center;

            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

            border: 1px solid rgba(255, 255, 255, 0.1);

        }

        .modal-header {

            border-bottom: 1px solid rgba(42, 157, 143, 0.2);

        }

        .submit-btn {

            position: relative;

            overflow: hidden;

            transition: all 0.3s ease;

        }

        .submit-btn::after {

            content: "";

            position: absolute;

            top: 50%;

            left: 50%;

            width: 5px;

            height: 5px;

            background: rgba(255, 255, 255, 0.5);

            opacity: 0;

            border-radius: 100%;

            transform: scale(1, 1) translate(-50%);

            transform-origin: 50% 50%;

        }

        .submit-btn:focus:not(:active)::after {

            animation: ripple 1s ease-out;

        }

        @keyframes ripple {

            0% {

                transform: scale(0, 0);

                opacity: 0.5;

            }

            100% {

                transform: scale(200, 200);

                opacity: 0;

            }

        }



        /* 粒子效果容器样式增强 */

        #particles-js {

            position: absolute;

            width: 100%;

            height: 100%;

            top: 0;

            left: 0;

            z-index: 1;

        }

        /* 提高文字对比度 */

        .article-content h3 {
            color: #2a9d8f;
            margin: 25px 0 15px;
            font-size: 1.3rem;
            border-left: 4px solid #2a9d8f;
            padding-left: 15px;
        }

        .article-content p {

            margin-bottom: 15px;

            color: #fff;
            /* 更深的灰色提高可读性 */

        }

        .article-content ul {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .article-content li {
            margin-bottom: 8px;
            color: #fff;
        }



        .agree-terms {

            display: flex;

            align-items: flex-start;

            margin: 15px 0;

            padding: 10px;

            background: rgba(42, 157, 143, 0.05);

            border-radius: 8px;

            font-size: 14px;

            color: #e0e0e0;

        }

        .agree-terms input {

            margin-right: 10px;

            margin-top: 3px;

        }

        .agree-terms a {

            color: #2a9d8f;

            text-decoration: none;

        }

        .agree-terms a:hover {

            text-decoration: underline;

        }

        /* 章节页面优化 */
        .comic-detail-header {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .comic-detail-cover {
            width: 250px;
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .comic-detail-info {
            flex: 1;
        }

        .comic-detail-title {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 15px;
        }

        .comic-detail-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            color: #fff;
            font-size: 1.1rem;
        }

        .comic-detail-intro {
            color: #fff;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .similar-recommendations {
            margin-top: 50px;
        }

        .similar-title {
            font-size: 1.8rem;
            color: #2a9d8f;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a9d8f;
        }

        /* 首页优化 */
        .comic-meta span:last-child {
            color: #e76f51;
            /* 人气值使用醒目的颜色 */
        }

        .refresh-button {
            background: transparent;
            border: none;
            color: #2a9d8f;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 1rem;
        }

        .refresh-button:hover {
            color: #e9c46a;
        }

        .category-item {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
        }

        /* 用户信息样式 */
        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2a9d8f;
            font-weight: 500;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #2a9d8f;
        }

        .user-level {
            background: linear-gradient(135deg, #e9c46a, #f4a261);
            color: #333;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
        }

        .user-level[data-level="VIP"] {
            background: linear-gradient(135deg, #2a9d8f, #264653);
            color: white;
        }

        .user-level[data-level="SVIP"] {
            background: linear-gradient(135deg, #e76f51, #e9c46a);
            color: white;
        }

        /* 个人中心模态框样式 */
        #user-center-modal {
            max-width: 900px !important;
            width: 95% !important;
        }

        #user-center-modal .modal-body {
            max-height: 75vh;
            overflow-y: auto;
            padding: 20px;
        }

        .user-center-tabs {
            display: flex;
            border-bottom: 1px solid #444;
            margin-bottom: 20px;
        }

        .user-center-tab {
            padding: 10px 20px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .user-center-tab.active {
            border-bottom: 3px solid #2a9d8f;
            color: #2a9d8f;
            font-weight: bold;
        }

        .user-center-tab-content {
            display: none;
        }

        .user-center-tab-content.active {
            display: block;
        }

        .user-profile-card {
            background: rgba(40, 40, 60, 0.7);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        /* 三卡片网格布局 */
        .profile-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        @media (max-width: 1024px) {
            .profile-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 个人资料卡片容器 */
        .profile-card {
            padding: 0;
            background: linear-gradient(135deg, rgba(30, 30, 50, 0.95), rgba(40, 40, 60, 0.95));
            border-radius: 16px;
            border: 2px solid rgba(42, 157, 143, 0.2);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .profile-card:hover {
            border-color: rgba(42, 157, 143, 0.4);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        /* 卡片标题 */
        .card-title {
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.15), rgba(38, 70, 83, 0.15));
            border-bottom: 2px solid rgba(42, 157, 143, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            font-weight: 600;
            color: #2a9d8f;
        }

        .card-title i {
            font-size: 1.2rem;
        }

        /* 头像卡片 */
        .avatar-card {
            text-align: center;
            min-height: 380px;
            display: flex;
            flex-direction: column;
        }

        .avatar-upload-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 24px;
            flex: 1;
            justify-content: center;
        }

        .avatar-preview {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #2a9d8f;
            box-shadow: 0 8px 24px rgba(42, 157, 143, 0.4);
            transition: all 0.3s ease;
            position: relative;
        }

        .avatar-preview::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .avatar-preview:hover {
            transform: scale(1.08);
            border-color: #e9c46a;
            box-shadow: 0 12px 32px rgba(42, 157, 143, 0.6);
        }

        .avatar-preview:hover::after {
            opacity: 1;
        }

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

        .avatar-upload-controls {
            width: 100%;
            max-width: 280px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .avatar-upload-controls .form-control {
            font-size: 13px;
            padding: 8px 12px;
            background: rgba(30, 30, 50, 0.8);
            border: 1px solid rgba(42, 157, 143, 0.3);
            color: #e0e0e0;
            border-radius: 8px;
        }

        .avatar-upload-controls .btn {
            font-size: 14px;
            font-weight: 600;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 8px;
        }

        /* 信息卡片 */
        #profile-reg-date,#profile-last-login{
            font-size: 10px !important;
        }
        .info-card {
            min-height: 380px;
            display: flex;
            flex-direction: column;
        }

        .info-card .profile-info-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 24px;
            flex: 1;
        }
        

        .info-row {
            display: flex;
            align-items: center;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            border-left: 3px solid #2a9d8f;
            transition: all 0.3s ease;
        }

        .info-row:hover {
            background: rgba(255, 255, 255, 0.05);
            border-left-color: #e9c46a;
        }

        .info-label {
            display: flex;
            align-items: center;
            gap: 2px;
            min-width: 99px;
            font-size: 0.9rem;
            color: #999;
            font-weight: 500;
        }

        .info-label i {
            color: #2a9d8f;
            font-size: 0.95rem;
        }

        .info-value {
            flex: 1;
            font-size: 12px;
            color: #e0e0e0;
            font-weight: 600;
            /* white-space: nowrap; */
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .info-value.user-level {
            color: #e9c46a;
        }

        .info-value.coins-display {
            color: #2a9d8f;
            font-weight: 700;
        }


        /* 签到卡片 */
        .signin-card {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            border-color: rgba(102, 126, 234, 0.4);
            min-height: 380px;
            display: flex;
            flex-direction: column;
        }

        .signin-card:hover {
            border-color: rgba(102, 126, 234, 0.6);
        }

        .signin-title {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
            border-bottom-color: rgba(102, 126, 234, 0.3);
            color: #667eea;
        }

        .signin-content {
            padding: 24px;
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .signin-info {
            margin-bottom: 16px;
            padding: 16px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            color: #e0e0e0;
            font-size: 0.9rem;
        }

        .signin-info p {
            margin: 0;
            line-height: 1.6;
        }

        .signin-btn {
            width: 100%;
            padding: 12px 24px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
        }

        .signin-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
            background: linear-gradient(135deg, #764ba2, #667eea);
        }

        .signin-btn:active {
            transform: translateY(0);
        }

        .signin-btn i {
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .profile-badges {
                flex-direction: column;
                align-items: center;
            }

            .user-level,
            .coins-balance {
                width: 100%;
                justify-content: center;
            }
        }

        .recharge-history,
        .consumption-history {
            background: rgba(40, 40, 60, 0.7);
            padding: 20px;
            border-radius: 10px;
        }

        .history-item {
            padding: 10px 0;
            border-bottom: 1px solid #444;
        }

        /* 实名认证样式 */
        .verification-section {
            background: rgba(40, 40, 60, 0.7);
            padding: 20px;
            border-radius: 10px;
        }

        .verification-status .status-card {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(42, 157, 143, 0.1);
            border: 1px solid rgba(42, 157, 143, 0.3);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .verification-status #verification-icon {
            font-size: 24px;
            color: #2a9d8f;
        }

        .verification-status .status-info h5 {
            margin: 0 0 5px 0;
            color: #2a9d8f;
        }

        .verification-status .status-info p {
            margin: 0;
            color: #ccc;
        }

        .verification-actions {
            margin-top: 10px;
            display: flex;
            gap: 10px;
        }

        .verification-actions .btn-sm {
            padding: 5px 10px;
            font-size: 12px;
        }

        .verification-form .form-group {
            margin-bottom: 20px;
        }

        .id-card-upload {
            display: flex;
            gap: 20px;
        }

        .upload-area {
            flex: 1;
            border: 2px dashed #444;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .upload-area:hover {
            border-color: #2a9d8f;
            background: rgba(42, 157, 143, 0.05);
        }

        .upload-area i {
            font-size: 24px;
            color: #ccc;
            margin-bottom: 10px;
            display: block;
        }

        .upload-area p {
            margin: 0;
            color: #ccc;
        }

        .verification-notice {
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .verification-notice p {
            margin: 0;
            color: #ffc107;
        }

        .verification-notice i {
            margin-right: 8px;
        }

        /* 已解锁漫画样式 */
        .unlocked-comics {
            background: rgba(40, 40, 60, 0.7);
            padding: 20px;
            border-radius: 10px;
        }

        .unlocked-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(42, 157, 143, 0.1);
            border: 1px solid rgba(42, 157, 143, 0.3);
            border-radius: 8px;
            padding: 15px;
        }

        .stat-item i {
            font-size: 24px;
            color: #2a9d8f;
        }

        .stat-info {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #2a9d8f;
        }

        .stat-label {
            font-size: 14px;
            color: #ccc;
        }

        .unlocked-filter {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .unlocked-list {
            display: grid;
            gap: 15px;
        }

        .unlocked-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .unlocked-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .unlocked-cover {
            width: 60px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
        }

        .unlocked-info {
            flex: 1;
        }

        .unlocked-title {
            font-weight: bold;
            color: #fff;
            margin-bottom: 5px;
        }

        .unlocked-chapter {
            color: #ccc;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .unlocked-price {
            color: #ffc107;
            font-size: 14px;
        }

        .unlocked-actions {
            display: flex;
            gap: 10px;
        }

        .read-btn {
            background: #2a9d8f;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .read-btn:hover {
            background: #21867a;
        }

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

        .vip-packages {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        @media (max-width: 1200px) {
            .vip-packages {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .vip-packages {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .vip-packages {
                grid-template-columns: 1fr;
            }
        }

        .vip-package {
            background: linear-gradient(135deg, rgba(50, 50, 80, 0.9), rgba(40, 40, 70, 0.9));
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .vip-package::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .vip-package:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: #2a9d8f;
            box-shadow: 0 12px 30px rgba(42, 157, 143, 0.4);
        }

        .vip-package:hover::before {
            opacity: 1;
        }

        .vip-package.selected {
            border-color: #2a9d8f;
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.25), rgba(38, 70, 83, 0.25));
            box-shadow: 0 8px 24px rgba(42, 157, 143, 0.3);
        }

        .vip-package-title {
            font-weight: 700;
            color: #e9c46a;
            margin-bottom: 10px;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }

        .vip-package-price {
            font-size: 1.5rem;
            color: #2a9d8f;
            font-weight: 700;
            margin: 12px 0;
            position: relative;
            z-index: 1;
        }

        .vip-package-original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.95rem;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
        }

        .vip-package-bonus {
            color: #e76f51;
            font-size: 0.95rem;
            font-weight: 600;
            margin-top: 8px;
            position: relative;
            z-index: 1;
        }

        /* 更新的充值选项样式 */
        .recharge-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            margin: 15px 0;
        }

        .recharge-option {
            background: rgba(50, 50, 70, 0.7);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .recharge-option:hover {
            background: rgba(60, 60, 80, 0.7);
            transform: translateY(-3px);
        }

        .recharge-option.selected {
            border-color: #2a9d8f;
            background: rgba(42, 157, 143, 0.2);
        }

        .recharge-amount {
            font-weight: bold;
            color: #e9c46a;
        }

        .recharge-price {
            color: #2a9d8f;
            font-weight: bold;
            margin: 5px 0;
        }

        .recharge-option.selected .recharge-price {
            color: #2a9d8f;
        }

        .recharge-bonus {
            color: #e76f51;
            font-size: 0.9rem;
        }

        .recharge-form {
            margin-top: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 5px;
            color: #b0b0b0;
        }

        .form-input {
            width: 100%;
            padding: 10px 15px;
            border: 2px solid #2a9d8f;
            border-radius: 5px;
            background: rgba(30, 30, 40, 0.9);
            color: #e0e0e0;
            margin-bottom: 15px;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #2a9d8f, #264653);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.4);
        }

        /* 后台管理样式 */
        .admin-panel {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
            backdrop-filter: blur(10px);
            z-index: 9999;
            overflow: auto;
        }

        .admin-container {
            max-width: 1400px;
            width: 90%;
            margin: 30px auto;
            padding: 25px;
            background: rgba(40, 40, 70, 0.9);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(42, 157, 143, 0.2);
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(42, 157, 143, 0.3);
            margin-bottom: 25px;
        }

        .admin-tabs {
            display: flex;
            background: rgba(30, 30, 50, 0.8);
            border-radius: 25px;
            padding: 5px;
            margin-bottom: 25px;
            overflow-x: auto;
        }

        .admin-tab {
            padding: 12px 20px;
            cursor: pointer;
            border-radius: 20px;
            transition: all 0.3s ease;
            white-space: nowrap;
            margin: 0 2px;
        }

        .admin-tab:hover {
            background: rgba(42, 157, 143, 0.2);
        }

        .admin-tab.active {
            background: linear-gradient(135deg, #2a9d8f, #264653);
            color: white;
            font-weight: 600;
        }

        .admin-tab-content {
            display: none;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease, display 0.3s ease;
        }

        .admin-tab-content.active {
            display: block;
            opacity: 1;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 章节管理样式优化 */
        .chapter-preview {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            margin-top: 10px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }

        .chapter-preview-item {
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            padding: 5px;
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.3s ease;
        }

        .chapter-preview-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        .chapter-preview-item img {
            max-width: 100px;
            max-height: 100px;
            border-radius: 4px;
            object-fit: cover;
        }

        .chapter-preview-item .page-number {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }

        .chapter-cover-preview {
            text-align: center;
            padding: 10px;
        }

        /* 漫币充值样式 */
        .coins-recharge-section {
            background: rgba(40, 40, 60, 0.7);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(42, 157, 143, 0.2);
        }

        .coins-recharge-section h4 {
            color: #2a9d8f;
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .coins-recharge-section .recharge-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .coins-recharge-section .recharge-option {
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(38, 70, 83, 0.1));
            border: 2px solid rgba(42, 157, 143, 0.3);
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .coins-recharge-section .recharge-option:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 157, 143, 0.25);
            border-color: rgba(42, 157, 143, 0.5);
        }

        .coins-recharge-section .recharge-option.selected {
            background: linear-gradient(135deg, #2a9d8f, #21867a);
            border-color: #2a9d8f;
            color: white;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 25px rgba(42, 157, 143, 0.35);
        }

        .coins-recharge-section .recharge-option .amount {
            display: block;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: #e9c46a;
        }

        .coins-recharge-section .recharge-option.selected .amount {
            color: white;
        }

        .coins-recharge-section .recharge-option .coins {
            display: block;
            font-size: 0.9rem;
            color: #b0b0b0;
        }

        .coins-recharge-section .recharge-option.selected .coins {
            color: rgba(255, 255, 255, 0.9);
        }

        .coins-recharge-section .payment-methods {
            display: flex;
            gap: 15px;
            margin: 15px 0;
        }

        .coins-recharge-section .payment-methods .payment-option {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px;
            border: 2px solid rgba(42, 157, 143, 0.3);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(40, 40, 60, 0.5);
        }

        .coins-recharge-section .payment-methods .payment-option:hover {
            border-color: #2a9d8f;
            background: rgba(42, 157, 143, 0.1);
        }

        .coins-recharge-section .payment-methods .payment-option.active {
            border-color: #2a9d8f;
            background: rgba(42, 157, 143, 0.2);
        }

        .coins-recharge-section .payment-methods .payment-option i {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .recharge-summary {
            background: rgba(42, 157, 143, 0.1);
            border: 1px solid rgba(42, 157, 143, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
        }

        .recharge-summary .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .recharge-summary .summary-item:last-child {
            margin-bottom: 0;
            font-weight: bold;
            color: #2a9d8f;
        }

        /* 消费记录特殊样式 */
        .coins-spent {
            color: #e76f51;
            /* 消费显示为橙红色 */
            font-weight: bold;
        }

        .coins-gained {
            color: #2a9d8f;
            /* 获得显示为青色 */
        }

        .history-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            border-left: 4px solid #2a9d8f;
            transition: all 0.3s ease;
        }

        .history-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
        }

        .history-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .history-type {
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
            color: white;
        }

        .history-type.reward {
            background: linear-gradient(135deg, #27ae60, #229954);
        }

        .history-type.purchase {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .history-type.vip {
            background: linear-gradient(135deg, #f39c12, #e67e22);
        }

        .history-date {
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .history-item-content {
            color: #e0e0e0;
        }

        .history-description {
            margin-bottom: 8px;
            font-weight: 500;
        }

        .history-amount {
            color: #f39c12;
            margin-bottom: 5px;
        }

        .history-coins {
            margin-bottom: 5px;
        }

        .history-coins.spent {
            color: #e74c3c;
        }

        .history-coins.gained {
            color: #27ae60;
        }

        .history-coins span {
            font-weight: bold;
            font-size: 1.1rem;
        }

        font-weight: bold;
        }

        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-top: 10px;
        }

        .chapter-cover-preview img {
            max-width: 200px;
            max-height: 200px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .chapter-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .chapter-form-grid .form-group:last-child {
            grid-column: 1 / -1;
        }

        @media (max-width: 768px) {
            .chapter-form-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 章节模态框特定样式 */
        #chapter-modal {
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
            background: linear-gradient(135deg, #1a1a2e, #0f0f1e) !important;
            border: 1px solid rgba(42, 157, 143, 0.2) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8) !important;
        }

        #chapter-modal .modal-content {
            max-height: none;
            background: transparent !important;
        }

        #chapter-modal .chapter-form-grid {
            gap: 20px;
        }

        #chapter-modal .form-group {
            margin-bottom: 15px;
        }

        #chapter-modal .modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(42, 157, 143, 0.2);
        }

        #chapter-modal label {
            color: #ffffff !important;
            font-weight: 500;
            margin-bottom: 5px;
        }

        #chapter-modal small {
            color: #e0e0e0 !important;
            font-size: 12px;
        }

        /* 章节模态框表单控件样式 */
        #chapter-modal .form-control {
            background: rgba(20, 20, 35, 0.9) !important;
            border: 1px solid rgba(42, 157, 143, 0.3) !important;
            color: #ffffff !important;
        }

        #chapter-modal .form-control:focus {
            background: rgba(30, 30, 45, 0.95) !important;
            border-color: #2a9d8f !important;
        }



        /* 自定义滚动条样式 */
        #chapter-modal::-webkit-scrollbar {
            width: 8px;
        }

        #chapter-modal::-webkit-scrollbar-track {
            background: rgba(20, 20, 35, 0.3);
            border-radius: 4px;
        }

        #chapter-modal::-webkit-scrollbar-thumb {
            background: rgba(42, 157, 143, 0.5);
            border-radius: 4px;
        }

        #chapter-modal::-webkit-scrollbar-thumb:hover {
            background: rgba(42, 157, 143, 0.7);
        }

        /* 后台管理面板模态框样式 */
        #edit-user-modal,
        #edit-comic-modal,
        #add-comic-modal,
        #edit-article-modal,
        #add-article-modal {
            z-index: 30002;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #edit-user-modal .modal,
        #edit-comic-modal .modal,
        #add-comic-modal .modal,
        #edit-article-modal .modal,
        #add-article-modal .modal {
            background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
            border: 1px solid rgba(42, 157, 143, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
            max-height: 85vh;
            overflow-y: auto;
            color: #e0e0e0;
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            margin: 0 !important;
            width: 90%;
        }

        #edit-user-modal .modal-header,
        #edit-comic-modal .modal-header,
        #add-comic-modal .modal-header,
        #edit-article-modal .modal-header,
        #add-article-modal .modal-header {
            border-bottom: 1px solid rgba(42, 157, 143, 0.3);
            padding: 20px;
        }

        #edit-user-modal .modal-title,
        #edit-comic-modal .modal-title,
        #add-comic-modal .modal-title,
        #edit-article-modal .modal-title,
        #add-article-modal .modal-title {
            color: #2a9d8f;
            font-weight: 600;
        }

        #edit-user-modal .modal-body,
        #edit-comic-modal .modal-body,
        #add-comic-modal .modal-body,
        #edit-article-modal .modal-body,
        #add-article-modal .modal-body {
            padding: 20px;
        }

        #edit-user-modal .form-control,
        #edit-comic-modal .form-control,
        #add-comic-modal .form-control,
        #edit-article-modal .form-control,
        #add-article-modal .form-control {
            background: rgba(20, 20, 35, 0.9) !important;
            border: 1px solid rgba(42, 157, 143, 0.3) !important;
            color: #ffffff !important;
        }

        #edit-user-modal .form-control:focus,
        #edit-comic-modal .form-control:focus,
        #add-comic-modal .form-control:focus,
        #edit-article-modal .form-control:focus,
        #add-article-modal .form-control:focus {
            background: rgba(30, 30, 45, 0.95);
            border-color: #2a9d8f;
        }

        #edit-user-modal .form-label,
        #edit-comic-modal .form-label,
        #add-comic-modal .form-label,
        #edit-article-modal .form-label,
        #add-article-modal .form-label {
            color: #ffffff !important;
            font-weight: 500;
        }

        #edit-user-modal .close-modal,
        #edit-comic-modal .close-modal,
        #add-comic-modal .close-modal,
        #edit-article-modal .close-modal,
        #add-article-modal .close-modal {
            color: #ffffff !important;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s;
        }

        #edit-user-modal .close-modal:hover,
        #edit-comic-modal .close-modal:hover,
        #add-comic-modal .close-modal:hover,
        #edit-article-modal .close-modal:hover,
        #add-article-modal .close-modal:hover {
            color: #2a9d8f;
        }

        #edit-user-modal .submit-btn,
        #edit-comic-modal .submit-btn,
        #add-comic-modal .submit-btn,
        #edit-article-modal .submit-btn,
        #add-article-modal .submit-btn {
            background: linear-gradient(135deg, #2a9d8f, #264653);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        #edit-user-modal .submit-btn:hover,
        #edit-comic-modal .submit-btn:hover,
        #add-comic-modal .submit-btn:hover,
        #edit-article-modal .submit-btn:hover,
        #add-article-modal .submit-btn:hover {
            background: linear-gradient(135deg, #264653, #2a9d8f);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
        }

        /* 自定义滚动条样式 */
        #edit-user-modal::-webkit-scrollbar,
        #edit-comic-modal::-webkit-scrollbar,
        #add-comic-modal::-webkit-scrollbar,
        #edit-article-modal::-webkit-scrollbar,
        #add-article-modal::-webkit-scrollbar {
            width: 8px;
        }

        #edit-user-modal::-webkit-scrollbar-track,
        #edit-comic-modal::-webkit-scrollbar-track,
        #add-comic-modal::-webkit-scrollbar-track,
        #edit-article-modal::-webkit-scrollbar-track,
        #add-article-modal::-webkit-scrollbar-track {
            background: rgba(20, 20, 35, 0.3);
            border-radius: 4px;
        }

        #edit-user-modal::-webkit-scrollbar-thumb,
        #edit-comic-modal::-webkit-scrollbar-thumb,
        #add-comic-modal::-webkit-scrollbar-thumb,
        #edit-article-modal::-webkit-scrollbar-thumb,
        #add-article-modal::-webkit-scrollbar-thumb {
            background: rgba(42, 157, 143, 0.5);
            border-radius: 4px;
        }

        #edit-user-modal::-webkit-scrollbar-thumb:hover,
        #edit-comic-modal::-webkit-scrollbar-thumb:hover,
        #add-comic-modal::-webkit-scrollbar-thumb:hover,
        #edit-article-modal::-webkit-scrollbar-thumb:hover,
        #add-article-modal::-webkit-scrollbar-thumb:hover {
            background: rgba(42, 157, 143, 0.7);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: rgba(40, 40, 60, 0.7);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #2a9d8f;
        }

        .stat-label {
            color: #b0b0b0;
            margin-top: 5px;
        }

        .table-container {
            overflow-x: auto;
        }

        .table-controls {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: nowrap;
        }

        .table-controls .search-input {
            flex: 1;
            min-width: 200px;
        }

        .verification-filters {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: nowrap;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(40, 40, 60, 0.95);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }

        th,
        td {
            padding: 16px 18px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        th {
            background: linear-gradient(135deg, #2a9d8f, #264653);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        tr:hover {
            background: rgba(60, 60, 90, 0.6);
            transform: translateX(3px);
        }

        tr:last-child td {
            border-bottom: none;
        }

        /* 消费记录特殊样式 */
        .coins-spent {
            color: #e76f51;
            font-weight: 600;
        }

        .coins-gained {
            color: #2a9d8f;
            font-weight: 600;
        }

        /* 表格条纹效果 */
        tbody tr:nth-child(even) {
            background: rgba(45, 45, 65, 0.4);
        }

        tbody tr:nth-child(even):hover {
            background: rgba(60, 60, 90, 0.6);
        }

        /* 表格内容优化 */
        .table-container {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* 空数据提示样式 */
        .no-data-message {
            text-align: center;
            padding: 40px 20px;
            color: #888;
            font-size: 1.1rem;
            background: rgba(40, 40, 60, 0.5);
            border-radius: 8px;
            margin: 20px 0;
        }

        .action-btns {
            display: flex;
            gap: 8px;
        }

        .action-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .edit-btn {
            background: linear-gradient(135deg, #2a9d8f, #21867a);
            color: white;
        }

        .edit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(42, 157, 143, 0.3);
        }

        .delete-btn {
            background: linear-gradient(135deg, #e76f51, #d45d42);
            color: white;
        }

        .delete-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(231, 111, 81, 0.3);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {

            .pagination {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 25px;
                gap: 4px;
                flex-wrap: wrap;
                background: linear-gradient(135deg, #2C2A4A, #1F1D3A);
                padding: 16px;
                border-radius: 8px;
                max-width: fit-content;
                margin-left: auto;
                margin-right: auto;
                border-bottom: 2px solid #1A1830;
            }

            .pagination-btn,
            .page-btn {
                padding: 8px 16px;
                background: linear-gradient(145deg, #FFFFFF, #F8F9FA);
                border: 1px solid #E0E0E0;
                border-radius: 8px;
                cursor: pointer;
                color: #2C3E50;
                font-weight: 600;
                font-size: 14px;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                min-width: 40px;
                text-align: center;
                margin: 0 3px;
                height: 40px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .pagination-btn::before,
            .page-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
                transition: left 0.5s;
            }

            .pagination-btn:hover,
            .page-btn:hover:not(.active) {
                background: linear-gradient(145deg, #F8F9FA, #FFFFFF);
                transform: translateY(-2px) scale(1.02);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
                border-color: #1976D2;
                color: #1976D2;
            }

            .pagination-btn:hover::before,
            .page-btn:hover::before {
                left: 100%;
            }

            .pagination-btn:active,
            .page-btn:active:not(.active) {
                transform: translateY(-1px) scale(0.98);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
            }

            .pagination-btn.active,
            .page-btn.active {
                background: linear-gradient(145deg, #1976D2, #1565C0);
                color: #FFFFFF;
                font-weight: 700;
                border-color: #1565C0;
                box-shadow: 0 6px 12px rgba(25, 118, 210, 0.3), 0 3px 6px rgba(25, 118, 210, 0.2);
                transform: translateY(-1px);
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            }

            .pagination-btn.active::before,
            .page-btn.active::before {
                display: none;
            }

            .pagination-btn:disabled {
                color: #999999;
                cursor: not-allowed;
                opacity: 0.5;
                pointer-events: none;
            }

            .pagination-btn:disabled:hover {
                background: #FFFFFF;
                transform: none;
                box-shadow: none;
            }

            /* 分页标题样式 */
            .pagination-title {
                font-size: 22px;
                color: #FFFFFF;
                margin-bottom: 16px;
                text-align: center;
                font-weight: 500;
                letter-spacing: 0.5px;
            }

            /* 确保chapters-pagination的按钮样式正确应用 */
            #chapters-pagination .pagination-btn {
                padding: 8px 16px !important;
                background: linear-gradient(145deg, #FFFFFF, #F8F9FA) !important;
                border: 1px solid #E0E0E0 !important;
                border-radius: 8px !important;
                cursor: pointer !important;
                color: #2C3E50 !important;
                font-weight: 600 !important;
                font-size: 14px !important;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
                min-width: 40px !important;
                text-align: center !important;
                margin: 0 3px !important;
                height: 40px !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                position: relative !important;
                overflow: hidden !important;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1) !important;
                text-transform: uppercase !important;
                letter-spacing: 0.5px !important;
                text-decoration: none !important;
            }

            #chapters-pagination .pagination-btn:hover {
                background: linear-gradient(145deg, #F8F9FA, #FFFFFF) !important;
                transform: translateY(-2px) scale(1.02) !important;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06) !important;
                border-color: #1976D2 !important;
                color: #1976D2 !important;
                text-decoration: none !important;
            }

            #chapters-pagination .pagination-btn.active {
                background: linear-gradient(145deg, #1976D2, #1565C0) !important;
                color: #FFFFFF !important;
                font-weight: 700 !important;
                border-color: #1565C0 !important;
                box-shadow: 0 6px 12px rgba(25, 118, 210, 0.3), 0 3px 6px rgba(25, 118, 210, 0.2) !important;
                transform: translateY(-1px) !important;
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
                text-decoration: none !important;
            }

            /* 通用A链接分页按钮样式 */
            .pagination-btn {
                text-decoration: none !important;
                color: inherit !important;
            }

            .pagination-btn:hover {
                text-decoration: none !important;
            }

            /* 解锁章节提示样式 */
            .unlock-prompt {
                background: linear-gradient(135deg, #2a9d8f, #264653);
                padding: 20px;
                border-radius: 10px;
                text-align: center;
                margin: 20px 0;
            }

            .vip-features {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 30px;
                margin: 40px 0;
                padding: 20px;
                background: linear-gradient(135deg, rgba(15, 25, 35, 0.08), rgba(10, 20, 30, 0.15));
                border-radius: 25px;
                box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
                position: relative;
                overflow: hidden;
            }

            .vip-features::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(42, 157, 143, 0.1) 0%, transparent 70%);
                animation: rotateGradient 20s linear infinite;
                z-index: 0;
            }

            @keyframes rotateGradient {
                0% {
                    transform: rotate(0deg);
                }

                100% {
                    transform: rotate(360deg);
                }
            }

            .vip-feature {
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.2), rgba(38, 70, 83, 0.25));
                border: 2px solid rgba(42, 157, 143, 0.4);
                padding: 35px 30px;
                border-radius: 20px;
                text-align: center;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
                z-index: 1;
                backdrop-filter: blur(10px);
            }

            .vip-feature::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(42, 157, 143, 0.15));
                opacity: 0;
                transition: opacity 0.5s ease;
                z-index: -1;
            }

            .vip-feature::after {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg, #2a9d8f, #264653, #2a9d8f);
                border-radius: 20px;
                opacity: 0;
                z-index: -2;
                transition: opacity 0.5s ease;
                animation: borderGlow 3s ease-in-out infinite;
            }

            @keyframes borderGlow {

                0%,
                100% {
                    opacity: 0;
                }

                50% {
                    opacity: 0.3;
                }
            }

            .vip-feature:hover {
                transform: translateY(-12px) scale(1.03);
                box-shadow: 0 25px 50px rgba(42, 157, 143, 0.4);
                border-color: rgba(42, 157, 143, 0.6);
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.3), rgba(38, 70, 83, 0.35));
            }

            .vip-feature:hover::before {
                opacity: 1;
            }

            .vip-feature:hover::after {
                opacity: 1;
            }

            .vip-feature i {
                font-size: 3.5rem;
                margin-bottom: 25px;
                display: block;
                background: linear-gradient(135deg, #e9c46a, #f4a261);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-shadow: 0 4px 15px rgba(233, 196, 106, 0.5);
                filter: drop-shadow(0 3px 6px rgba(233, 196, 106, 0.4));
                transition: all 0.4s ease;
                animation: iconPulse 2s ease-in-out infinite;
            }

            @keyframes iconPulse {

                0%,
                100% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.05);
                }
            }

            .vip-feature:nth-child(2) i {
                background: linear-gradient(135deg, #a8dadc, #457b9d);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-shadow: 0 4px 15px rgba(168, 218, 220, 0.5);
                filter: drop-shadow(0 3px 6px rgba(168, 218, 220, 0.4));
            }

            .vip-feature:nth-child(3) i {
                background: linear-gradient(135deg, #f1faee, #a8dadc);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-shadow: 0 4px 15px rgba(241, 250, 238, 0.4);
                filter: drop-shadow(0 3px 6px rgba(241, 250, 238, 0.3));
            }

            .vip-feature:hover i {
                transform: scale(1.1);
                filter: drop-shadow(0 5px 10px rgba(233, 196, 106, 0.6));
            }

            .vip-feature:nth-child(2):hover i {
                filter: drop-shadow(0 5px 10px rgba(168, 218, 220, 0.6));
            }

            .vip-feature:nth-child(3):hover i {
                filter: drop-shadow(0 5px 10px rgba(241, 250, 238, 0.5));
            }

            .vip-feature h4 {
                color: #2a9d8f;
                margin: 20px 0 15px 0;
                font-size: 1.5rem;
                font-weight: 700;
                letter-spacing: 0.8px;
                text-shadow: 0 2px 4px rgba(42, 157, 143, 0.4);
                transition: all 0.3s ease;
            }

            .vip-feature:hover h4 {
                color: #e9c46a;
                text-shadow: 0 2px 8px rgba(233, 196, 106, 0.5);
                transform: translateY(-2px);
            }

            .vip-feature p {
                color: #e0e0e0;
                font-size: 1.05rem;
                line-height: 1.7;
                margin: 0;
                opacity: 0.9;
                transition: all 0.3s ease;
            }

            .vip-feature:hover p {
                opacity: 1;
                color: #ffffff;
                transform: translateY(-1px);
            }

            .vip-feature .badge {
                position: absolute;
                top: 15px;
                right: 15px;
                background: linear-gradient(135deg, #e76f51, #e9c46a);
                color: white;
                padding: 5px 12px;
                border-radius: 20px;
                font-size: 0.75rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                box-shadow: 0 3px 10px rgba(231, 111, 81, 0.4);
                animation: badgeShine 3s ease-in-out infinite;
            }

            @keyframes badgeShine {

                0%,
                100% {
                    opacity: 0.8;
                }

                50% {
                    opacity: 1;
                }
            }

            /* VIP页面增强样式 */
            .vip-header {
                margin-bottom: 40px;
            }

            .vip-status-card {
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.15), rgba(38, 70, 83, 0.25));
                border: 2px solid rgba(42, 157, 143, 0.3);
                border-radius: 20px;
                padding: 30px;
                position: relative;
                overflow: hidden;
            }

            .vip-status-card::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(233, 196, 106, 0.1) 0%, transparent 70%);
                animation: rotateGradient 15s linear infinite;
            }

            .vip-current-status {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 20px;
                position: relative;
                z-index: 1;
            }

            #vip-status-icon {
                font-size: 3rem;
                color: #e9c46a;
                filter: drop-shadow(0 3px 6px rgba(233, 196, 106, 0.4));
            }

            .status-info h3 {
                margin: 0 0 5px 0;
                font-size: 1.8rem;
                color: #ffffff;
                font-weight: 700;
            }

            .status-info p {
                margin: 0;
                color: #e0e0e0;
                font-size: 1rem;
                opacity: 0.9;
            }

            .vip-progress {
                position: relative;
                z-index: 1;
            }

            .progress-bar {
                width: 100%;
                height: 8px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 4px;
                overflow: hidden;
                margin-bottom: 8px;
            }

            .progress-fill {
                height: 100%;
                background: linear-gradient(90deg, #2a9d8f, #e9c46a);
                border-radius: 4px;
                width: 0%;
                transition: width 1s ease;
                position: relative;
            }

            .progress-fill::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                animation: shimmer 2s infinite;
            }

            @keyframes shimmer {
                0% {
                    transform: translateX(-100%);
                }

                100% {
                    transform: translateX(100%);
                }
            }

            .progress-text {
                font-size: 0.9rem;
                color: #e9c46a;
                font-weight: 600;
            }

            .feature-badge {
                position: absolute;
                top: 15px;
                right: 15px;
                padding: 5px 12px;
                border-radius: 20px;
                font-size: 0.75rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                z-index: 2;
            }

            .feature-badge {
                background: linear-gradient(135deg, #e76f51, #e9c46a);
                color: white;
                box-shadow: 0 3px 10px rgba(231, 111, 81, 0.4);
            }

            .feature-badge.premium {
                background: linear-gradient(135deg, #2a9d8f, #e9c46a);
                box-shadow: 0 3px 10px rgba(42, 157, 143, 0.4);
            }

            .feature-badge.bonus {
                background: linear-gradient(135deg, #f4a261, #e76f51);
                box-shadow: 0 3px 10px rgba(244, 162, 97, 0.4);
            }

            .vip-feature.featured {
                transform: scale(1.05);
                border: 2px solid #e9c46a;
                box-shadow: 0 0 30px rgba(233, 196, 106, 0.3);
            }

            .feature-list {
                text-align: left;
                margin: 20px 0;
            }

            .feature-item {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-bottom: 8px;
                color: #e0e0e0;
                font-size: 0.9rem;
            }

            .feature-item i {
                color: #2a9d8f;
                font-size: 0.8rem;
            }

            .feature-price {
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .feature-price .price {
                font-size: 1.8rem;
                font-weight: 700;
                color: #e9c46a;
            }

            .feature-price .period {
                font-size: 1rem;
                color: #e0e0e0;
                opacity: 0.8;
            }

            .bonus-display {
                margin-top: 15px;
                padding: 15px;
                background: rgba(233, 196, 106, 0.1);
                border-radius: 10px;
                text-align: center;
            }

            .bonus-amount {
                font-size: 2rem;
                font-weight: 700;
                color: #e9c46a;
                display: block;
            }

            .bonus-text {
                font-size: 0.9rem;
                color: #e0e0e0;
                opacity: 0.8;
            }

            .vip-purchase-section {
                margin-top: 40px;
                padding: 40px;
                background: linear-gradient(135deg, rgba(40, 40, 60, 0.8), rgba(30, 30, 50, 0.9));
                border-radius: 20px;
                border: 2px solid rgba(42, 157, 143, 0.3);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            }

            .vip-purchase-section h4 {
                margin-bottom: 30px;
                color: #2a9d8f;
                font-size: 1.8rem;
                font-weight: 700;
                text-align: center;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            }

            .payment-methods {
                display: flex;
                gap: 15px;
                margin-bottom: 20px;
            }

            .payment-option {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
                padding: 20px;
                border: 2px solid rgba(255, 255, 255, 0.1);
                border-radius: 15px;
                cursor: pointer;
                transition: all 0.3s ease;
                position: relative;
                background: rgba(255, 255, 255, 0.02);
            }

            .payment-option:hover {
                border-color: rgba(42, 157, 143, 0.5);
                background: rgba(42, 157, 143, 0.05);
                transform: translateY(-2px);
            }

            .payment-option.active {
                border-color: #2a9d8f;
                background: rgba(42, 157, 143, 0.1);
            }

            .payment-option i {
                font-size: 2rem;
            }

            .payment-option span {
                font-weight: 500;
                color: #e0e0e0;
            }

            .check-mark {
                position: absolute;
                top: 10px;
                right: 10px;
                width: 20px;
                height: 20px;
                background: #2a9d8f;
                border-radius: 50%;
                display: none;
                align-items: center;
                justify-content: center;
            }

            .check-mark i {
                font-size: 0.8rem;
                color: white;
            }

            .payment-option.active .check-mark {
                display: flex;
            }

            #purchase-vip-submit {
                width: 100%;
                padding: 15px;
                font-size: 1.1rem;
                background: linear-gradient(135deg, #2a9d8f, #264653);
                border: none;
                border-radius: 10px;
                color: white;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            #purchase-vip-submit:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(42, 157, 143, 0.4);
            }

            /* 新VIP对比卡片样式 */
            .vip-comparison-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                margin: 40px 0;
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
            }

            .vip-plan-card {
                background: rgba(30, 30, 50, 0.95);
                border-radius: 16px;
                padding: 32px 24px;
                text-align: center;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                border: 2px solid rgba(255, 255, 255, 0.1);
                position: relative;
            }

            .vip-plan-card.featured {
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.15), rgba(38, 70, 83, 0.25));
                border-color: #2a9d8f;
                box-shadow: 0 8px 32px rgba(42, 157, 143, 0.3);
            }

            .vip-plan-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
            }

            .featured-badge {
                position: absolute;
                top: -12px;
                left: 50%;
                transform: translateX(-50%);
                background: linear-gradient(135deg, #e9c46a, #f4a261);
                color: white;
                padding: 6px 16px;
                border-radius: 20px;
                font-size: 0.75rem;
                font-weight: 700;
                box-shadow: 0 4px 12px rgba(233, 196, 106, 0.4);
            }

            .plan-icon {
                width: 64px;
                height: 64px;
                margin: 0 auto 16px;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 28px;
                color: #999;
            }

            .plan-icon.vip-icon {
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.2), rgba(38, 70, 83, 0.2));
                color: #2a9d8f;
                box-shadow: 0 4px 16px rgba(42, 157, 143, 0.3);
            }

            .plan-name {
                font-size: 1.5rem;
                font-weight: 700;
                margin: 0 0 16px 0;
                color: #fff;
            }

            .plan-price {
                margin-bottom: 24px;
                padding-bottom: 24px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .price-symbol {
                font-size: 1.2rem;
                color: #2a9d8f;
                font-weight: 600;
                vertical-align: super;
            }

            .price-amount {
                font-size: 2.5rem;
                font-weight: 700;
                color: #2a9d8f;
            }

            .normal-plan .price-amount {
                font-size: 1.8rem;
                color: #888;
            }

            .price-period {
                font-size: 0.9rem;
                color: #999;
                margin-left: 4px;
            }

            .plan-features {
                text-align: left;
                margin-bottom: 24px;
            }

            .feature-row {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 10px 0;
                color: #e0e0e0;
                font-size: 0.9rem;
            }

            .feature-row i {
                width: 18px;
                font-size: 14px;
                color: #2a9d8f;
            }

            .feature-row.disabled {
                opacity: 0.4;
            }

            .feature-row.disabled i {
                color: #666;
            }

            .feature-row.highlight i {
                color: #2a9d8f;
            }

            .plan-button {
                width: 100%;
                padding: 14px 24px;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            .plan-button.current {
                background: rgba(150, 150, 150, 0.15);
                color: #999;
                cursor: not-allowed;
            }

            .plan-button.upgrade {
                background: linear-gradient(135deg, #2a9d8f, #264653);
                color: white;
                box-shadow: 0 4px 16px rgba(42, 157, 143, 0.3);
            }

            .plan-button.upgrade:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(42, 157, 143, 0.5);
            }

            @media (max-width: 768px) {
                .vip-comparison-container {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
            }

            /* 消息提示动画 */
            @keyframes messageSlideIn {
                0% {
                    transform: translate(-50%, -50%) scale(0.8);
                    opacity: 0;
                }

                100% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 1;
                }
            }

            @keyframes messageSlideOut {
                0% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 1;
                }

                100% {
                    transform: translate(-50%, -50%) scale(0.8);
                    opacity: 0;
                }
            }

            /* 自定义滚动条样式 */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }

            ::-webkit-scrollbar-track {
                background: rgba(30, 30, 46, 0.3);
                border-radius: 4px;
            }

            ::-webkit-scrollbar-thumb {
                background: linear-gradient(135deg, #2a9d8f, #264653);
                border-radius: 4px;
                transition: background 0.3s ease;
            }

            ::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(135deg, #21867a, #1e3a42);
            }

            ::-webkit-scrollbar-corner {
                background: rgba(30, 30, 46, 0.3);
            }

            /* Firefox滚动条样式 */
            * {
                scrollbar-width: thin;
                scrollbar-color: #2a9d8f rgba(30, 30, 46, 0.3);
            }

            /* 消息容器滚动条样式 */
            .message-container::-webkit-scrollbar {
                width: 6px;
            }

            .message-container::-webkit-scrollbar-track {
                background: rgba(0, 0, 0, 0.1);
                border-radius: 3px;
            }

            .message-container::-webkit-scrollbar-thumb {
                background: rgba(255, 255, 255, 0.3);
                border-radius: 3px;
            }

            .message-container::-webkit-scrollbar-thumb:hover {
                background: rgba(255, 255, 255, 0.5);
            }

            /* Modal滚动条样式优化 */
            .modal::-webkit-scrollbar {
                width: 8px;
            }

            .modal::-webkit-scrollbar-track {
                background: rgba(26, 26, 46, 0.3);
                border-radius: 4px;
                margin: 10px 0;
            }

            .modal::-webkit-scrollbar-thumb {
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.7), rgba(38, 70, 83, 0.7));
                border-radius: 4px;
                border: 1px solid rgba(42, 157, 143, 0.3);
                transition: all 0.3s ease;
            }

            .modal::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.9), rgba(38, 70, 83, 0.9));
                border-color: rgba(42, 157, 143, 0.5);
            }

            .modal::-webkit-scrollbar-thumb:active {
                background: linear-gradient(135deg, rgba(42, 157, 143, 1), rgba(38, 70, 83, 1));
            }

            .modal::-webkit-scrollbar-corner {
                background: rgba(26, 26, 46, 0.3);
            }

            /* Modal body特定滚动条样式 */
            .modal-body::-webkit-scrollbar {
                width: 6px;
            }

            .modal-body::-webkit-scrollbar-track {
                background: rgba(0, 0, 0, 0.1);
                border-radius: 3px;
            }

            .modal-body::-webkit-scrollbar-thumb {
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.6), rgba(38, 70, 83, 0.6));
                border-radius: 3px;
                border: 1px solid rgba(42, 157, 143, 0.2);
            }

            .modal-body::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(135deg, rgba(42, 157, 143, 0.8), rgba(38, 70, 83, 0.8));
            }

            /* Firefox Modal滚动条样式 */
            .modal {
                scrollbar-width: thin;
                scrollbar-color: rgba(42, 157, 143, 0.7) rgba(26, 26, 46, 0.3);
            }

            .modal-body {
                scrollbar-width: thin;
                scrollbar-color: rgba(42, 157, 143, 0.6) rgba(0, 0, 0, 0.1);
            }