.clearFix::after{
  content: '';
  clear: both;
  display: block;
  height: 0;
  line-height: 0;
}
/* 新闻页面特定样式 */

/* 页面基本样式 */
.page-body {
  background-color: #000A1B;
  font-family: 'Scada-Regular', Arial, sans-serif;
  color: #ffffff;
}

/* 新闻主内容区域样式 */
.news-main-content {
  
}
.news-main-content-banner{
  position: relative;
  width: 100%;
}
.news-main-content-banner-img{
  float: left;
  width: 100%;
}

/* 新闻盒子样式 */
.news-box {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #000A1B;
  display: flex;
  flex-direction: column;
  padding: 50px 30px 30px;
  box-sizing: border-box;
  min-height: 700px;
}

/* 顶部导航样式 */
.news-nav {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.nav-back {
  margin-right: 20px;
}

.nav-back img {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Scada-Regular', Arial, sans-serif;
  margin: 0 5px;
}

.breadcrumb-link:hover {
  color: #2da8e9;
}

.breadcrumb-link.active {
  color: #2da8e9;
}

.nav-separator {
  color: #ffffff;
  margin: 0 10px;
}

/* 标签页导航样式 */
.news-tabs {
  display: flex;
  position: relative;
  border-bottom: 1px solid #333;
  margin-bottom: 10px;
  justify-content: center;
}

.tab-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: bold;
  padding: 10px 20px;
  position: relative;
  margin-right: 20px;
  transition: all 0.3s ease;
  height: 40px;
}

.tab-link:hover {
  color: #00A0FF;
}

.tab-link:hover::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00A0FF;
}

/* 使用伪类实现当前选中效果 */
.tab-link.active {
  font-size: 24px;
  color: #00A0FF;
  padding-top: 4px;
}

.tab-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00A0FF;
}

.tab-indicator {
  display: none; /* 不使用tab-indicator，改用伪类实现 */
}

/* 新闻列表样式 */
.news-list {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 10px;
  height: 350px;
  display: block;
}

.news-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.news-marker {
  width: 4px;
  height: 18px;
  background-color: #00A0FF;
  margin-right: 15px;
  border-radius: 2px;
}

.news-content {
  flex: 1;
}

.news-title {
  margin: 0;
  font-size: 20px;
  font-family: 'Scada-Regular', Arial, sans-serif;
  color: #ffffff;
}

.news-date {
  color: #ffffff;
  font-size: 20px;
  font-family: 'Scada-Regular', Arial, sans-serif;
  margin-left: 20px;
  width: 105px;
  text-align: right;
  display: inline-block;
}

/* 更多按钮样式 */
.news-more {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.more-btn {
  display: inline-block;
  background-color: #00A0FF;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: bold;
  text-align: center;
}

/* 自定义滚动条样式 */
.news-list::-webkit-scrollbar {
  width: 5px;
}

.news-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.news-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}
