 .news-categories {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-bottom: 50px;
   margin-top: 40px;
   flex-wrap: wrap;
 }

 .category-tab {
   padding: 14px 28px;
   font-size: 18px;
   font-weight: 500;
   background: none;
   border: none;
   border-radius: 24px;
   cursor: pointer;
   color: #515154;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
 }

 .category-tab:hover {
   background-color: rgba(0, 0, 0, 0.05);
   color: #1d1d1f;
 }

 .category-tab.active {
   background-color: #007AFF;
   color: white;
   box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
 }

 .category-tab .count {
   background-color: rgba(255, 255, 255, 0.2);
   padding: 2px 8px;
   border-radius: 12px;
   font-size: 14px;
   margin-left: 8px;
 }

 .news-content {
   margin-bottom: 80px;
 }

 .news-list {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
   gap: 30px;
   margin-bottom: 50px;
 }

 .news-item {
   background-color: white;
   border-radius: 18px;
   padding: 30px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   height: 100%;
   display: flex;
   flex-direction: column;
 }

 .news-item:hover {
   transform: translateY(-10px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
 }

 .news-meta {
   display: flex;
   align-items: center;
   margin-bottom: 20px;
   font-size: 14px;
   color: #86868b;
 }

 .news-category {
   display: inline-block;
   padding: 4px 12px;
   border-radius: 12px;
   font-size: 12px;
   font-weight: 600;
   margin-right: 12px;
 }

 .news-category.dynamic {
   background-color: rgba(0, 122, 255, 0.1);
   color: #007AFF;
 }

 .news-category.policy {
   background-color: rgba(52, 199, 89, 0.1);
   color: #34c759;
 }

 .news-category.tech {
   background-color: rgba(255, 149, 0, 0.1);
   color: #ff9500;
 }

 .news-category.trend {
   background-color: rgba(175, 82, 222, 0.1);
   color: #af52de;
 }

 .news-date {
   display: flex;
   align-items: center;
   gap: 6px;
 }

 .news-item h3 {
   font-size: 22px;
   font-weight: 600;
   margin-bottom: 16px;
   line-height: 1.3;
   color: #1d1d1f;
   flex-grow: 0;
 }

 .news-description {
   color: #515154;
   line-height: 1.6;
   margin-bottom: 24px;
   flex-grow: 1;
 }

 .news-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 24px;
 }

 .news-tag {
   padding: 4px 10px;
   background-color: #f5f5f7;
   border-radius: 6px;
   font-size: 12px;
   color: #515154;
 }

 .news-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: #007AFF;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s;
   padding: 8px 0;
   align-self: flex-start;
 }

 .news-link:hover {
   gap: 12px;
 }

 .news-link i {
   transition: transform 0.3s;
 }

 .news-link:hover i {
   transform: translateX(4px);
 }

 .view-more-container {
   text-align: center;
   margin-top: 40px;
 }

 .view-pre-btn {
   /* opacity: 0.7; */
 }

 .page-info {
   margin: 0 10px;
 }

 .view-more-btn,
 .view-pre-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 32px;
   background-color: #007AFF;
   color: white;
   border: none;
   border-radius: 24px;
   font-size: 17px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s;
 }

 .view-pre-btn.disabled,
 .view-more-btn.disabled {
   opacity: 0.7;
 }

 .view-more-btn:hover,
 .view-pre-btn:hover {
   background-color: #0056CC;
   transform: translateY(-2px);
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
 }

 .empty-state {
   text-align: center;
   padding: 60px 20px;
   color: #86868b;
 }

 .empty-state i {
   font-size: 64px;
   margin-bottom: 24px;
   color: #d2d2d7;
 }

 .empty-state h3 {
   font-size: 24px;
   margin-bottom: 12px;
   color: #515154;
 }

 @media (max-width: 768px) {
   .news-categories {
     justify-content: flex-start;
     overflow-x: auto;
     padding-bottom: 10px;
     margin-bottom: 20px;
     margin-top: 20px;
   }

   .category-tab {
     padding: 6px 14px;
     font-size: 14px;
     white-space: nowrap;
   }

   .news-list {
     grid-template-columns: 1fr;
     gap: 20px;
     margin-bottom: 20px;
   }

   .news-item {
     padding: 16px;
   }
   .view-more-container {
    margin-top: 20px;
   }
   .view-more-btn, .view-pre-btn {
      font-size: 14px;
      padding: 5px 15px;
   }
 }