/* 网格容器 */
.novel-category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px; /* 项目之间的间距 */
    padding: 1rem; /* 内边距 */
    max-width: 1200px; /* 限制最大宽度 */
    margin: 0 auto; /* 居中 */
    box-sizing: border-box;
}

/* 卡片式容器 */
.novel-item-wrapper-card {
    display: flex;
    flex-direction: column; /* 将布局改为垂直排列 */
    border: 1px solid #ccc; /* 边框 */
    border-radius: 8px; /* 圆角 */
    background-color: #fff; /* 白色背景 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 阴影 */
    overflow: hidden; /* 隐藏超出部分 */
    transition: transform 0.2s, box-shadow 0.2s; /* 悬停效果 */
}

.novel-item-wrapper-card:hover {
    transform: translateY(-5px); /* 悬停时上移 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 悬停时阴影加深 */
}

/* 书籍封面图片容器 */
.novel-image {
    width: 100%; /* 宽度占满容器 */
    height: 200px; /* 设置图像高度 */
    overflow: hidden; /* 隐藏超出部分 */
}

.novel-image img {
    width: 100%; /* 使图像宽度占满容器 */
    height: 100%; /* 使图像高度占满容器 */
    object-fit: cover; /* 保持图像比例并填充容器 */
}

/* 书籍信息区域 */
.novel-info {
    padding: 15px; /* 内边距 */
}

.novel-info h3 {
    margin: 0 0 10px 0; /* 标题的上下边距 */
    font-size: 1.1rem; /* 标题字体大小 */
    font-weight: 600; /* 标题加粗 */
    color: #333; /* 标题颜色 */
    line-height: 1.4; /* 行高 */
}

.novel-info p {
    margin: 0; /* 移除默认边距 */
    font-size: 0.9rem; /* 描述字体大小 */
    color: #666; /* 描述颜色 */
    line-height: 1.5; /* 行高 */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示两行 */
    -webkit-box-orient: vertical;
    overflow: hidden; /* 隐藏超出部分 */
}

/* 响应式样式 */
@media screen and (max-width: 768px) {
    .novel-category-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px; /* 调整间距 */
    }

    .novel-image {
        height: 150px; /* 调整图像高度 */
    }

    .novel-info h3 {
        font-size: 1rem; /* 调整标题字体大小 */
    }

    .novel-info p {
        font-size: 0.85rem; /* 调整描述字体大小 */
    }
}

@media screen and (max-width: 480px) {
    .novel-category-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px; /* 调整间距 */
    }

    .novel-image {
        height: 120px; /* 调整图像高度 */
    }

    .novel-info h3 {
        font-size: 0.95rem; /* 调整标题字体大小 */
    }

    .novel-info p {
        font-size: 0.8rem; /* 调整描述字体大小 */
    }
}
