/* 新闻详情内容区域 */
.page {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 50px;
}

.breadcrumb {
  width: 100%;
  padding: 15px 11%;
  /* background: #f5f5f5; */
  font-size: 0.9rem;
  margin-top: 10px;
}

.breadcrumb a {
  color: #222222;
  text-decoration: none;
}

.breadcrumb span {
  color: #999;
  margin: 0 8px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb a:last-child:hover {
  text-decoration: none;
}

.news-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  /* background: white;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05); */
  border-radius: 8px;
}

.news-title {
  font-size: 2.2rem;
  font-family: var(--font-family);
  font-weight: 900;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

.news-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
  display: block;
  font-family: var(--font-family);
}

.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 25px 0;
}

.news-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  font-family: var(--font-family);
}
.news-text p,
.news-text span,
.news-text h2{
    font-family: var(--font-family);
}
.news-text p img {
  /*width: 100%;*/
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-text p img:hover {
  scale: 1.05;
  transition: all 0.5s ease;
}

/*.news-image {*/
/*  width: 100%;*/
/*  max-width: 800px;*/
/*  height: auto;*/
/*  border-radius: 12px;*/
/*  margin: 40px auto;*/
/*  display: block;*/
/*  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
/*  transition: transform 0.3s ease;*/
/*}*/

/*.news-image:hover {*/
/*  scale: 1.05;*/
/*  transition: all 0.5s ease;*/
/*}*/
@media only screen and (max-width:1560px) {
    .news-content{
        max-width: 1000px;
    }
    .news-text{
        font-size: 1rem;
        line-height: 1.7;
    }
    .news-title{
        font-size: 2.1rem;
        line-height: 1.2;
    }
}
/* 响应式优化 */
/*@media (max-width: 1200px) {*/
/*  .news-content {*/
/*    padding: 25px;*/
/*  }*/

/*  .news-title {*/
/*    font-size: 2rem;*/
/*  }*/
/*}*/

/*@media (max-width: 992px) {*/
/*  .news-title {*/
/*    font-size: 1.8rem;*/
/*  }*/

/*  .news-text {*/
/*    font-size: 1.05rem;*/
/*  }*/
/*}*/

/*@media (max-width: 768px) {*/
  /* 内容区域优化 */
/*  .breadcrumb {*/
/*    font-size: 0.8rem;*/
/*    padding: 10px 5%;*/
/*  }*/

/*  .news-content {*/
/*    padding: 20px 15px;*/
/*    margin: 0 10px;*/
/*    width: calc(100% - 20px);*/
/*  }*/

/*  .news-title {*/
/*    font-size: 1.6rem;*/
/*  }*/

/*  .news-date {*/
/*    font-size: 0.85rem;*/
/*  }*/
/*  .news-text {*/
/*    font-size: 1rem;*/
/*    line-height: 1.7;*/
/*  }*/

/*  .divider {*/
/*    margin: 20px 0;*/
/*  }*/
/*}*/

/*@media (max-width: 576px) {*/
/*  .news-title {*/
/*    font-size: 1.4rem;*/
/*  }*/

/*  .news-date {*/
/*    font-size: 0.8rem;*/
/*  }*/

/*  .news-text {*/
/*    font-size: 0.95rem;*/
/*  }*/
/*}*/
.header {
  background-color: rgba(11, 102, 204, 0.95);
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); */
}
@media only screen and (max-width:960px) {
  .breadcrumb{
      padding: 15px 4%;
      font-size: 14px;
  }
  .breadcrumb span{
      margin: 0 5px;
  }
  .news-content{
      max-width: 92%;
      width: 92%;
      padding: 20px 0 0 0;
      margin: 0 auto;
      border-radius: 0;
  }
  .news-title{
      font-size: 18px;
      line-height: 22px;
  }
  .news-date{
      font-size: 14px;
      margin-bottom: 18px;
  }
  .divider{
      margin: 18px 0;
  }
  .news-text{
      font-size: 14px;
      line-height: 21px;
  }
  .news-text img{
      margin: 20px auto !important;
      border-radius: 0;
  }
}