/* ------ 新闻类型  Style ------ */
.news-section .tabs {
  margin-top: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #d3d3fd;
}

.news-section .tabs .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width:125px;
  height: 45px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 6px;
  text-align: left;
  cursor: pointer;
}


.news-section .tabs .active {
  color: #ffffff;
  background: #5f5be0;
}

/* ------ 新闻内容  Style ------ */

.tab-pane {
  padding-right: 20px;
  margin-bottom: 30px;
}

.tab-pane .news-item {
  display: flex;
  flex-direction: row;
  padding: 25px 0;
  border-bottom: 2px solid #e9e9e9;
}

.tab-pane .news-item .news-item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 20px;
}

.tab-pane .news-item .news-item-right h3 {
  margin-bottom: 8px;
}

.tab-pane .news-item .news-item-right p {
  line-height: 1.8;
  font-size: 16px;
  color: #787878;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.tab-pane .news-item .news-item-right p span {
  color: #353333;
  margin-right: 20px;
}

.tab-pane .news-item .news-item-right .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab-pane .news-item .news-item-right .bottom .p-box {
    display: flex;
}
.tab-pane .news-item .news-item-right .bottom .p-box p {
  margin-bottom: 0;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 30px;
  background: #f0efff;
  border-radius: 3px 3px 3px 3px;
  font-weight: 500;
  font-size: 14px;
  color: #6966d9;
  letter-spacing: 2px;
}


/* 窄屏幕（小于 md 断点，即 <768px） */
@media (max-width: 767.98px) {
  .news-section .tabs .tab {
      width:120px;
  }
  .news-item {
      display: flex;
      flex-direction: column !important;
  }
  
  .news-item > img {
      width: 100%;
      min-width: 100%;
      height: auto;
      margin-bottom: 30px;
  }
  
  .news-item .news-item-right .bottom {
      flex-wrap: wrap;
      justify-content: flex-end !important;
  }
  
  .news-item .news-item-right .bottom .p-box {
      display: flex;
      flex-wrap: wrap;
  }
  
  .news-item .news-item-right .bottom .btn {
      flex-wrap: wrap;
  }
  .new-detail-content p{
    margin:0 !important;
  }
  .new-detail-content img{
    width: 100% !important;
  }
}

/* 中等屏幕尺寸 (平板) 布局优化 */
@media (min-width: 768px) and (max-width: 991.98px) {
  .news-item {
      display: flex;
  }
  .news-item > img {
      width: 260px;
      min-width: 260px;
      height: 175px;
  }
  .tab-pane .news-item .news-item-right .bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}
  .tab-pane .news-item .news-item-right .bottom .p-box {
      flex-wrap: wrap;
  }
  .news-item .news-item-right .bottom .btn {
      flex-wrap: wrap;
      margin-top: -30px;
  }
}

/* 大屏幕设备 (≥992px) 布局优化 */
@media (min-width: 992px) and (max-width:1219.98px) {
  .news-item > img {
    width: 260px;
    min-width: 260px;
    height: 175px;
  }
  .news-item .news-item-right .bottom .p-box {
      display: flex;
      flex-wrap: wrap;
  }
  .news-item .news-item-right .bottom .btn {
      flex-wrap: wrap;
      white-space: nowrap;
      margin-top: 0;
  }
}
/* 超大桌面显示器 (≥1220px) 布局优化 */
@media (min-width: 1220px) {
.news-item > img {
    width: 260px;
    min-width: 260px;
    height: 175px;
  }
  .news-item .news-item-right .bottom .p-box {
      display: flex;
      flex-wrap: wrap;
  }
  .news-item .news-item-right .bottom .btn {
      flex-wrap: wrap;
      white-space: nowrap;
      margin-top: 0;
  }
}
/* ------ 新闻分页  Style ------ */
.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination span,
.pagination a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  background: #fff;
}
.pagination a:hover {
  border: 1px solid #d9d9d9;
}
.pagination .active {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
  cursor: default;
}
.pagination .disabled {
  color: #bfbfbf;
  cursor: not-allowed;
  background: #f5f5f5;
}

/* ------ 新闻详情  Style ------ */

.top-box {
  background: #eeeeee;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
.top {
  padding-left: -30px;
  color: #626262;
}

.sn-news-detail-container {
  padding-top: 40px;
}

.news-detail h2 {
  font-size: 28px;
}

.news-detail > span {
  font-size: 16px;
  line-height: 1.5;
  color: #9d9d9d;
}

.news-detail .author {
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
}

.news-detail .author span {
  padding-right:10px;
}

.news-detail .author .tab {
  padding: 8px 16px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5f5be0;
  border-radius: 15px 15px 15px 15px;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 2px;
}

/* 富文本内容 */
.new-detail-content {
  padding: 20px;
  letter-spacing: 3px;
}
/* 免责声明 */
.new-disclaimer {
  padding: 20px 16px;
  background: #f2f5fe;
  border-radius: 3px 3px 3px 3px;
  color: #818ba7;
}

.new-disclaimer h4 {
  margin-bottom: 8px;
}
.new-disclaimer p {
  font-size: 14px;
}
