 /* 处理二级分类栏目中的框架影响 */
 body {
    overflow: auto;
  }
  .fullpage-container {
    overflow: auto;
  }
  .scroll-indicator {
    display: none;
  }


  /* 模块标题 */
.second-category-title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: rgba(51, 51, 51, 1);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 12px;
  }

  /* 公告 */
  .second-category-notice-bar{
      max-width: 1200px;
      margin: 12px auto 0;
      padding: 8px 12px;
      border-radius: 8px;
      background: #f4fbfd;
      border: 1px solid #e6f4fa;
      display: flex;
      align-items: center;
      gap: 12px;
  }
 .second-category-notice-label {
     display: flex;
     align-items: center;
     gap: 6px;
     color: rgba(51, 169, 183, 1);
     font-weight: 600;
 }


 .second-category-notice-track-wrap {
     flex: 1;
     overflow: hidden;
 }


 .second-category-notice-track {
     display: inline-block;
     white-space: nowrap;
     animation: notice-marquee 20s linear infinite;
 }
 .second-category-notice-track:hover {
     animation-play-state: paused;
 }
 .second-category-notice-item {
     display: inline-flex;
     flex-direction: row;
     align-items: center;
     margin-right: 32px;
     cursor: pointer;
     padding: 8px 0;
 }
 .second-category-notice-item a {
     color: #333;
     margin-right: 8px;
 }
 .second-category-notice-item a:hover {
     color: rgba(51, 169, 183, 1);
 }
 .second-category-notice-time {
     color: #999;
     font-size: 13px;
 }
 @keyframes notice-marquee {
     0% {
         transform: translateX(0);
     }
     100% {
         transform: translateX(-50%);
     }
 }

.second-category-card-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-top: 8px;
    color: #333;
}

  /* 二级栏目的新闻模块 */
  .second-category-news-list {
    margin: 0;
    padding: 0;
  }
  .second-category-news-list > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  .second-category-news-list > li > a {
    width: calc(100% - 100px);
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .second-category-news-list > li > span {
    display: inline-block;
    width: 90px;
    color: #999;
    font-size: 0.9rem;
  }
  .second-category-news-list > li:hover > a {
    color: rgb(51 169 183);
  }
  .art-category-teach{
   display: grid;
   grid-template-columns: repeat(8, 1fr);
   gap: 14px;
  }

  .art-category-teach .art-item {
    text-align: center;
  }
  .art-category-teach .art-item .label {
    margin-top: 6px;
    color: #333;
    font-size: 14px;
  }