#headerContainer {
    height: 300px;
    overflow: hidden;
    position: relative;
}

#headerContainer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#headerContainer .header-banner {
    width: 100%;
}

#headerContainer .page-title {
    top: 50%;
    font-size: 70px;
    z-index: 1;
}

.news-section::before {
    display: none;
}

.news-section .news-card {
    margin-bottom: 50px;
}

/*
文章詳情
*/
#news_detail {
    padding: 80px 0px;
    margin: 0 10px;
  }
  
  .news-detail-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .news-title {
    font-size: 42px;
    color: #333333;
    line-height: 53px;
    margin-bottom: 20px;
  }
  
  .news-info {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    align-items: center;
  }
  
  .news-info span:first-child {
    color: #777777;
    text-align: left;
    font-size: 14px;
  }
  
  .news-info a {
    text-decoration: none;
    font-size: 14px;
    color: #777777;
    line-height: 30px;
    display: inline-block;
    padding-right: 35px;
    background: url("/image/back.png") no-repeat center right;
    background-size: contain;
  }
  
  .news-info a:hover {
    color: #1d523e;
  }
  
  #blogDetailMain .news-content {
    margin-top: 25px;
    padding: 15px 0px;
    line-height: 36px;
    font-size: 16px;
    color: #333333;
    min-height: 400px;
  }
  
  .news-content img {
    max-width: 100%;
    height: auto !important;
  }
  
  .news-content p {
    margin-bottom: 12px;
    text-indent: 2em;
  }
  
  .news-box {
    width: 100%;
    margin-top: 35px;
    padding-top: 20px;
    line-height: 36px;
    display: flex;
    justify-content: space-between;
    border-top: solid 1px #ccc;
  }
  
  .news-box a {
    color: #777777;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
    display: inline-block;
  }
  
  .news-box a:hover {
    color: var(--main-color);
  }
  
  .news-title {
    text-align: center;
  }
  
  /*
  文章詳情結束
  */