 /* 容器居中 */
 .product__pagination-wrapper {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 30px 0;
 }

 /* 加载更多按钮样式，与分页统一风格 */
 .load-more {
     display: inline-block;
     margin-top: 20px;
     padding: 10px 20px;
     background-color: #e53637;
     /* Anime 主色 */
     color: #fff;
     border-radius: 6px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .load-more:hover {
     background-color: #e53637;
 }

 /* ---------------- 移动端及整体优化 ---------------- */
 .article-item.anime__article-card {
     display: flex;
     gap: 15px;
     background: #1b1b2f;
     border-radius: 8px;
     overflow: hidden;
     padding: 10px;
     align-items: center;
     color: #fff;
     text-decoration: none;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s, box-shadow 0.3s;
     margin: 0 auto 20px auto;
     /* 居中卡片 */
     max-width: 700px;
     /* 最大宽度 */
 }

 /* hover 效果 */
 .article-item.anime__article-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
 }

 /* 左边图片 */
 .article-thumb {
     flex-shrink: 0;
     display: block;
 }

 .article-thumb img {
     width: 150px;
     height: 100px;
     object-fit: cover;
     border-radius: 4px;
 }

 /* 右边信息 */
 .info {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 /* 标题 */
 .article-title {
     margin: 0 0 5px 0;
     font-weight: bold;
     color: #fff;
 }

 .article-item:hover .article-title {
     color: #00aaff;
 }

 /* 时间 */
 .article-meta {
     font-size: 12px;
     color: #aaa;
 }

 /* ---------------- 移动端适配 ---------------- */
 @media (max-width: 768px) {
     .article-item.anime__article-card {
         flex-direction: column;
         /* 上下堆叠 */
         align-items: flex-start;
         padding: 10px 15px;
         margin-left: auto;
         margin-right: auto;
     }

     .article-thumb img {
         width: 100%;
         /* 图片占满卡片宽度 */
         height: auto;
     }

     .info {
         margin-top: 8px;
     }
 }