 body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 0;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .novel {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            padding: 20px;
            overflow: hidden;
        }
        .novel-header {
            display: flex;
            align-items: center;
            flex-direction: column;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
        .novel img {
            /*width: 500px;*/
            /*height: 1024px;*/
            max-width: 100%;
            border-radius: 4px;
            object-fit: cover;
            margin-bottom: 2px;
        }
        .novel-title {
            font-size: 1.8rem;
            color: #333;
            text-align: center;
        }
        .novel-description {
            font-size: 1rem;
            color: #666;
            margin: 10px 0;
        }
        .chapter-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .chapter-list li {
            font-size: 1rem;
            color: #007BFF;
            margin-bottom: 5px;
        }
        .chapter-list li a {
            text-decoration: none;
            color: #007BFF;
        }
        .chapter-list li a:hover {
            text-decoration: underline;
        }
        .chapter-group {
            margin-bottom: 20px;
        }
        .chapter-group h3 {
            margin: 0;
            padding: 10px;
            background: #eee;
            border-radius: 4px;
            cursor: pointer;
        }
        .chapter-group ul {
            display: none;
            margin-top: 10px;
        }
        
        .breadcrumb {
            padding: 10px 15px;
            background-color: #f8f9fa;
            border-radius: 0.25rem;
        }

        .breadcrumb-item {
            display: inline;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            padding: 0 5px;
        }