	.container_xw {
            width: 100%;
            max-width: 1200px;
            height: 620px;
            display: flex;
            flex-direction: column;
			padding-top: 50px;
        }
        
        .header_xw {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }
        
        .header_xw h1 {
            font-size: 36px;
            color: #A6282E;
            margin-bottom: 10px;
        }
        
        .header_xw p {
            font-size: 18px;
            color: #666;
        }
        
        .book-container_xw {
            flex: 1;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .page_xw {
            flex: 1;
            padding: 25px;
            background: #f8f1e5;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }
        
        .page-left_xw {
            border-right: 1px solid #ddd;
            background-image: 
                linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px),
                linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
            background-size: 20px 20px;
        }
        
        .page-right_xw {
            background-image: 
                linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
                linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
            background-size: 18px 18px;
        }
        
        .page-title_xw {
            text-align: center;
            margin-bottom: 20px;
            color: #A6282E;
            font-size: 24px;
            position: relative;
            padding-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .page-title_xw:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 30%;
            right: 30%;
            height: 2px;
            background: linear-gradient(to right, transparent, #A6282E, transparent);
        }
        
        .more-btn_xw {
            position: absolute;
            right: 25px;
            top: 25px;
            background: #A6282E;
            color: white;
            border: none;
            padding: 6px 15px;
            border-radius: 15px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 10;
        }
        
        .more-btn_xw:hover {
            background: #c12f36;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        
        .more-btn_xw i {
            margin-left: 5px;
            font-size: 12px;
        }
        
        .content-list_xw {
            list-style: none;
            flex: 1;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .content-list_xw li {
            padding: 12px 15px;
            margin-bottom: 12px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: block;
            justify-content: space-between;
            align-items: center;
        }
        
        .content-list_xw li:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #A6282E;
        }
        
        .content-list_xw li:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }
        
        .content-list_xw a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            flex: 1;
            transition: color 0.3s ease;
        }
        
        .content-list_xw a:hover {
            color: #A6282E;
        }
        
        .content-list_xw .date {
            float:right;
            color: #888;
            font-size: 13px;
            min-width: 80px;
            text-align: right;
        }
        
        /* ��������ʽ */
        .content-list_xw::-webkit-scrollbar {
            width: 6px;
        }
        
        .content-list_xw::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }
        
        .content-list_xw::-webkit-scrollbar-thumb {
            background: #A6282E;
            border-radius: 10px;
        }
        
        .footer_xw {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }
        
        @media (max-width: 900px) {
            .book-container_xw {
                flex-direction: column;
            }
            
            .page_xw {
                height: 50%;
            }
            
            .page-left_xw {
                border-right: none;
                border-bottom: 1px solid #ddd;
            }
            
            .header_xw h1 {
                font-size: 28px;
            }
            
            .page-title_xw {
                font-size: 22px;
            }
            
            .more-btn_xw {
                top: 20px;
                right: 20px;
            }
        }