* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
 }
 
 body {
  background-color: #fff5e6;
  color: #333;
  line-height: 1.6;
 }
 
 .zxcontent {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
 }
 
 .tab-zxcontent {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(255, 119, 0, 0.12);
  overflow: hidden;
 }
 
 .tab-header {
  display: flex;
  background: linear-gradient(to right, #ffeed9, #fff5e6);
  border-bottom: 2px solid #ff7700;
  overflow-x: auto;
  scrollbar-width: none;
 }
 
 .tab-header::-webkit-scrollbar {
  display: none;
 }
 
 .tab-btn {
  padding: 12px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
 }
 
 .tab-btn:hover {
  color: #ff5500;
  background: rgba(255, 119, 0, 0.08);
 }
 
 .tab-btn.active {
  color: #ff5500;
  background: #fff;
 }
 
 .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff7700;
 }
 
 .tab-content {
  padding: 25px;
 }
 
 .tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
 }
 
 @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
 }
 
 .tab-pane.active {
  display: block;
 }
 
 .articles-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 15px;
 }
 
 .table-header {
  background: #ffeed9;
 }
 
 .table-header th {
  padding: 16px 12px;
  font-weight: 600;
  color: #ff7700;
  font-size: 15px;
 }
 
 .article-row {
  border-bottom: 1px solid #ffe4c4;
  transition: all 0.3s ease;
 }
 
 .article-row:hover {
  background: #fffaf0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 119, 0, 0.1);
 }
 
 .article-row td {
  padding: 18px 12px;
 }
 
 .category-cell {
  color: #ff7700;
  font-weight: 500;
  text-align: center;
  width: 10%;
 }
 
 .title-cell {
  width: 60%;
 }
 
 .title-cell a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
 }
 
 .title-cell a:hover {
  color: #ff5500;
  text-decoration: underline;
 }
 
 .hot-cell {
  color: #666;
  text-align: center;
  width: 10%;
  font-weight: 500;
 }
 
 .time-cell {
  color: #888;
  text-align: center;
  width: 20%;
 }
 
 @media (max-width: 992px) {
  .tab-btn {
padding: 14px 22px;
font-size: 15px;
  }
  
  .tab-content {
padding: 20px;
  }
  
  .table-header th, .article-row td {
padding: 14px 10px;
  }
 }
 
 @media (max-width: 768px) {
  .zxcontent {
padding: 15px;
  }
  
  .tab-header {
flex-wrap: nowrap;
overflow-x: auto;
  }
  
  .tab-btn {
padding: 12px 18px;
font-size: 14px;
  }
  
  .tab-content {
padding: 15px;
  }
  
  .articles-table {
display: block;
overflow-x: auto;
  }
  
  .table-header th, .article-row td {
padding: 12px 8px;
font-size: 14px;
  }
  
  .category-cell, .hot-cell, .time-cell {
width: auto;
  }
  
  .title-cell {
width: 50%;
  }
 }
 
 @media (max-width: 576px) {
  .tab-zxcontent {
border-radius: 8px;
  }
  
  .tab-btn {
padding: 10px 12px;
min-width: auto;
text-align: center;
font-size: 12px;
  }
  
  .tab-content {
padding: 12px;
  }
  
  .table-header {
display: none;
  }
  
  .articles-table, .articles-table tbody, .articles-table tr {
display: block;
width: 100%;
  }
  
  .article-row {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin-bottom: 12px;
padding: 10px;
border: 1px solid #ffddb9;
border-radius: 6px;
min-height: 44px;
  }
  
  .category-cell, .hot-cell {
display: none !important;
  }
  
  .title-cell {
width: auto;
flex: 1;
margin: 0;
padding: 0;
font-size: 13px;
text-align: left;
  }
  
  .title-cell a {
font-size: 13px;
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
line-height: 1.4;
text-align: left;
  }
  
  .time-cell {
width: auto;
text-align: right;
color: #888;
font-size: 11px;
padding: 0 0 0 12px;
white-space: nowrap;
flex-shrink: 0;
  }
  
  .article-row td {
display: block;
padding: 0;
border: none;
line-height: 1.4;
  }
  .article-row td::before {
display: none;
  }
 }
 @media (max-width: 400px) {
  .tab-btn {
padding: 8px 10px;
font-size: 11px;
  }
  
  .title-cell a {
font-size: 12px;
  }
  
  .time-cell {
font-size: 10px;
padding-left: 8px;
  }
  
  .article-row {
padding: 8px;
margin-bottom: 10px;
  }
 }