.document-announce {
  background: #f7f8fa;
  padding: 60px 0;
}

.document-announce .section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 面包屑导航样式 */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb li {
  position: relative;
  margin-right: 15px;
}

.breadcrumb li:not(:last-child):after {
  content: '>';
  position: absolute;
  right: -10px;
  top: 0;
  color: #999;
}

.breadcrumb li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb li a:hover {
  color: #FF6739;
}

.breadcrumb li:last-child a {
  color: #FF6739;
  font-weight: 500;
}

/* 移动端响应式样式 */
@media (max-width: 768px) {
  .document-announce {
    padding: 40px 0;
  }
  
  .document-announce .section-content {
    padding: 0 15px;
  }
  
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .breadcrumb li {
    margin-right: 10px;
  }
  
  .breadcrumb li:not(:last-child):after {
    right: -8px;
  }
  
  /* 限制面包屑导航项的宽度，防止过长 */
  .breadcrumb li a {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
  }
  
  /* 公告卡片移动端适配 */
  .document-announce .announce {
    border-radius: 8px;
  }
  
  .document-announce .announce .announce-head {
    padding: 20px;
  }
  
  .document-announce .announce .announce-head a {
    padding: 8px 16px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  
  .document-announce .announce-list {
    padding: 20px;
  }
  
  .document-announce .announce-list .announce-item {
    padding: 15px 0;
  }
  
  .document-announce .announce-list .announce-item a {
    font-size: 14px;
  }
  
  .document-announce .announce-list .announce-item .announce-item-time {
    font-size: 12px;
    min-width: 100px;
  }
  
  /* 分页移动端适配 */
  .jr-page {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .pagination li a {
    padding: 6px 12px;
    font-size: 14px;
  }
  
  /* 服务器banner移动端适配 */
  .server-banner2.banner-announce {
    padding: 40px 0;
  }
  
  .server-banner2.banner-announce h1 {
    font-size: 28px;
  }
  
  .server-banner2.banner-announce .server-banner-desc {
    font-size: 14px;
    padding: 0 20px;
  }
  
  /* 公告详情页调整 */
  .announce-details {
    padding: 20px 15px 60px 15px !important;
  }
  
  .announce-details .announce-title {
    font-size: 20px;
  }
  
  .announce-details .announce-details-cont {
    font-size: 14px;
    line-height: 24px;
    padding: 0 0 40px 0 !important;
  }
}

@media (max-width: 480px) {
  .breadcrumb li a {
    max-width: 90px;
  }
  
  .announce-details {
    padding: 15px 10px 40px 10px !important;
  }
  
  .announce-details .announce-title {
    font-size: 18px;
  }
}

.document-announce .announce {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E6EAED;
  overflow: hidden;
}

.document-announce .announce .announce-head {
  padding: 30px;
  border-bottom: 1px solid #E6EAED;
  background: #f9fafb;
}

.document-announce .announce .announce-head a {
  margin-right: 10px;
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #E6EAED;
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.90);
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}

.document-announce .announce .announce-head a.active,
.document-announce .announce .announce-head a:hover {
  background: rgba(255, 103, 57, 1);
  color: #fff;
  border-color: #FF6739;
  box-shadow: 0 4px 12px rgba(255, 103, 57, 0.3);
  transform: translateY(-2px);
}

.document-announce .announce-list {
  padding: 30px;
}

.document-announce .announce-list .announce-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed #E6EAED;
  transition: all 0.3s ease;
}

.document-announce .announce-list .announce-item:hover {
  padding-left: 15px;
  background: rgba(255, 103, 57, 0.05);
}

.document-announce .announce-list .announce-item:last-child {
  border-bottom: none;
}

.document-announce .announce-list .announce-item a {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.90);
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  margin-right: 20px;
  line-height: 1.4;
}

.document-announce .announce-list .announce-item a:hover {
  color: rgba(255, 103, 57, 1);
}

.document-announce .announce-list .announce-item .announce-item-time {
  font-size: 14px;
  text-align: right;
  min-width: 120px;
  color: rgba(0, 0, 0, 0.60);
  flex-shrink: 0;
}

/* 分页样式优化 */
.jr-page {
  padding: 30px;
  border-top: 1px solid #E6EAED;
  background: #f9fafb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jr-page .title-desc {
  font-size: 14px;
  color: #666;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination li a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #E6EAED;
  border-radius: 6px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}

.pagination li a:hover {
  border-color: #FF6739;
  color: #FF6739;
}

.pagination li.active a {
  background: #FF6739;
  color: #fff;
  border-color: #FF6739;
}

/* 服务器banner样式优化 */
.server-banner2.banner-announce {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 60px 0;
  text-align: center;
}

.server-banner2.banner-announce .section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.server-banner2.banner-announce h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.server-banner2.banner-announce .server-banner-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* 新闻 */
.document-news .news-head {
  padding: 40px 0 20px 40px;
  background: #fff;
  border-bottom: 1px solid #E6EAED;
}

.document-news .announce {
  padding-top: 0;
}


/* 公告详情 */
.announce-details {
  background: #fff;
  padding: 30px 70px 100px 70px;
}

.announce-details .announce-title {
  text-align: center;
  font-size: 28px;
}

.announce-details .announce-details-time {
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.60);
}

.announce-details .announce-details-cont {
  text-indent: 32px;
  line-height: 30px;
  padding: 60px;
  padding-top: 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.90);
  border-bottom: 1px solid #E6EAED;
}

.document-news .announce-details .announce-details-cont {
  padding: 0;
  padding-bottom: 60px;
}

.announce-details .announce-details-page {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.60);
}

.announce-details .announce-details-page a {
  color: rgba(0, 0, 0, 0.90);
}

.announce-details .announce-details-page a:hover {
  color: rgba(255, 103, 57, 1)
}

.news-advert {
  margin-top: 30px;
  width: 910px;
  height: 140px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  border-radius: 3px;
}


/* 新闻列表 */
.announce-new-left {
  padding-bottom: 0;
  flex: 1;
}

.announce-new-right {
  width: 400px;
  margin-left: 10px;
  flex-shrink: 0;
}

.news-box {
  margin-bottom: 10px;
  width: 400px;
  background: #FFFFFF;
  border-radius: 3px;
}

.bottom-news {
  width: calc((100% - 72px) / 3) !important;
}

.news-box .news-box-head {
  padding: 18px 27px;
  border-bottom: 1px solid #E6EAED;
}

.news-box .news-box-head .news-title {
  position: relative;
  padding-left: 10px;
  font-size: 18px;
  line-height: 20px;
  height: 20px;
}

.news-box .news-box-head .news-title::before {
  content: '';
  width: 2px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: #FF6739;
}


.news-box .news-list {
  padding: 0 24px;
}

.news-box .news-list .news-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed #E6EAED;
  font-size: 16px;
}

.news-box .news-list .news-item a {
  color: #333;
  flex: 1;
  line-height: 1;
}


.news-box .news-list .news-item .news-text {
  display: inline-block;
  max-width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.news-box .news-list .news-item .news-time {
  float: right;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.announce-new-right .news-box .news-list .news-item {
  font-size: 14px;
}

.news-box .news-list .news-item .news-number {
  margin-right: 10px;
  line-height: 16px;
  text-align: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: #DEDEDE;
  opacity: 1;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: rgba(222, 222, 222, 1);
}

.news-box .news-list .news-item:nth-child(1) .news-number {
  background: rgba(255, 103, 57, 1);
}

.news-box .news-list .news-item:nth-child(2) .news-number {
  background: rgba(255, 103, 57, 1);
}

.news-box .news-list .news-item:nth-child(3) .news-number {
  background: rgba(255, 103, 57, 1);
}

.news-box .news-list .news-item:last-child {
  border: none;
}

.news-box .news-tag {
  padding: 13px 12px;
  background: #F7F8F9;
  margin-bottom: 10px;
  margin-right: 10px;
}


.news-box-tag {
  width: 100%;
}

.news-box .news-box-cont {
  padding: 20px 40px 30px;
  background: #fff;
}

.news-box-tag .news-box-head,
.news-box-tag .news-box-cont {
  padding-left: 0;
  padding-top: 0;
  border: none;
}

/* 新闻列表 */
.news-index {
  background: #fff;
  padding: 40px;
}

.news-index-banner {
  position: relative;
  margin-right: 70px;
  width: 610px;
  height: 340px;
}

.news-index-banner .news-banner-cont {
  position: absolute;
  bottom: 0;
  padding: 15px 20px;
  color: #fff;
  width: 610px;
  height: 80px;

}

.news-index-banner .news-banner-cont h5 {
  margin-bottom: 5px;
  z-index: 5;
}

.news-index-banner .news-banner-filter {
  position: absolute;
  width: 610px;
  height: 80px;
  left: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.3;
  border-radius: 0px 0px 3px 3px;

}


/* 新闻列表 */
.news-list-index {
  margin: -12px;
  margin-top: 24px;
}


.news-list-index .news-box {
  margin: 12px;
}

.announce-tabs .tab {
  display: none;
}

.announce-tabs .tab:first-child {
  display: block;
}