/* 整体容器样式 */
.nav_moveBox {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

/* 按钮通用样式 */
.nav_moveBox button {
    padding: 10px 20px;
    margin: 0 6px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

/* 注册按钮样式 */
.nav_moveBox button:nth-child(1) {
    background-color: #007BFF;
    color: white;
}

/* 注册按钮鼠标悬停样式 */
.nav_moveBox button:nth-child(1):hover {
    background-color: #0056b3;
}

/* 登录按钮样式 */
.nav_moveBox button:nth-child(2) {
    background-color: #28A745;
    color: white;
}

/* 登录按钮鼠标悬停样式 */
.nav_moveBox button:nth-child(2):hover {
    background-color: #1e7e34;
}

/* 个人中心 */
.nav_moveBox button:nth-child(3) {
    background-color: #007BFF;
    color: white;
}

/* 个人中心悬停样式 */
.nav_moveBox button:nth-child(3):hover {
    background-color: #0056b3;
}

.w-prd-list1 .w-prd-list-cell{ width:24.99%; *width:24.98%;}
.comic-categories { margin: 20px 0; }
.comic-categories ul { list-style: none; padding: 0; }
.comic-categories li { display: inline-block; margin-right: 10px; }
.comic-categories a {
    display: block;
    padding: 5px 15px;
    border: 1px solid #ddd;
    border-radius: 15px;
    text-decoration: none;
    color: #ea4f0d;
}
.comic-categories a.active,
.comic-categories a:hover {
    background: #f0f0f0;
}
.chapter-links {
    margin-top: 10px;
    display: flex;
    gap: 8px; /* 链接之间的间距 */
    flex-wrap: wrap; /* 如果内容过多，自动换行 */
}
.chapter-links a {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px; /* 圆角按钮 */
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease; /* 平滑过渡效果 */
    background-color: white; /* 默认背景色 */
    color: #333; /* 默认文字颜色 */
    border: 1px solid #ddd; /* 边框 */
}
.chapter-links a:hover {
    background-color: #007bff; /* 悬停背景色 */
    color: #fff; /* 悬停文字颜色 */
    border-color: #007bff; /* 悬停边框颜色 */
    transform: translateY(-2px); /* 轻微上移效果 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 悬停阴影 */
}
.chapter-links a.more-link {
    background-color: #28a745; /* “更多”按钮背景色 */
    color: #fff; /* “更多”按钮文字颜色 */
    border-color: #28a745; /* “更多”按钮边框颜色 */
}
.chapter-links a.more-link:hover {
    background-color: #218838; /* “更多”按钮悬停背景色 */
    border-color: #218838; /* “更多”按钮悬停边框颜色 */
}