/* ========================================
   News List Section
   ======================================== */

   .zhongyu-news-list {
    padding: 140px 0;
    background-color: #f8f8f8;
  }
  
  /* ========================================
     Section Title
     ======================================== */
     @media screen and (min-width: 1800px) {
      .zhongyu-news-list .container{
        max-width: 1600px;
      }
    }
  .zhongyu-news-list-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.17;
    text-align: center;
    background: linear-gradient(90deg, #0C3054 0%, #1B6ABA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 50px 0;
  }
  
  /* ========================================
     Featured News (Top 3)
     ======================================== */
  
  .zhongyu-news-featured {
    display: flex;
    gap: 53px;
    margin-bottom: 140px;
  }
  
  .zhongyu-news-featured-item {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 37px 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* min-height: 650px; */
    transition: all 0.3s ease;
  }
  
  .zhongyu-news-featured-item:hover {
    background: linear-gradient(180deg, #0C3054 0%, #1B6ABA 100%);
  }
  
  /* Change text color on hover */
  .zhongyu-news-featured-item:hover .zhongyu-news-featured-date,
  .zhongyu-news-featured-item:hover .zhongyu-news-featured-title,
  .zhongyu-news-featured-item:hover .zhongyu-news-featured-desc,
  .zhongyu-news-featured-item:hover .zhongyu-news-featured-link-text,
  .zhongyu-news-featured-item:hover .zhongyu-news-featured-link-icon {
    color: #FFFFFF;
  }
  
  .zhongyu-news-featured-item:hover .zhongyu-news-featured-divider {
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  .zhongyu-news-featured-item:hover .zhongyu-news-featured-line {
    background-color: #FFFFFF;
  }
  
  /* ========================================
     Featured News Content
     ======================================== */
  
  .zhongyu-news-featured-content {
    display: flex;
    flex-direction: column;
    gap: 23px;
  }
  
  .zhongyu-news-featured-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .zhongyu-news-featured-image{
    aspect-ratio:429/303;
  }
  .zhongyu-news-featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .zhongyu-news-featured-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: #595757;
    transition: color 0.3s ease;
  }
  
  .zhongyu-news-featured-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    color: #0C3054;
    margin: 0;
    transition: color 0.3s ease;
  }
  
  .zhongyu-news-featured-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(89, 87, 87, 0.2);
    transition: background-color 0.3s ease;
  }
  
  .zhongyu-news-featured-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: #595757;
    margin: 0;
    transition: color 0.3s ease;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 这里是超出几行省略 */
    overflow: hidden;
  }
  
  /* ========================================
     Featured News Footer
     ======================================== */
  
  .zhongyu-news-featured-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .zhongyu-news-featured-line {
    width: 100%;
    height: 1px;
    background-color: #595757;
    transition: background-color 0.3s ease;
  }
  
  .zhongyu-news-featured-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .zhongyu-news-featured-link-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    color: #595757;
    transition: color 0.3s ease;
  }
  
  .zhongyu-news-featured-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #595757;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .zhongyu-news-featured-link-icon i{
    font-size:20px;
  }
  
  /* ========================================
     Scrollable News List
     ======================================== */
  
  .zhongyu-news-scroll-wrapper {
    margin-bottom: 50px;
  }
  
  .zhongyu-news-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-height: 1140px;
    overflow-y: auto;
    padding-right: 10px;
  }
  
  /* Custom Scrollbar */
  .zhongyu-news-scroll-list::-webkit-scrollbar {
    width: 6px;
  }
  
  .zhongyu-news-scroll-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .zhongyu-news-scroll-list::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: rgba(89, 87, 87, 0.34);
  }
  
  .zhongyu-news-scroll-list::-webkit-scrollbar-thumb:hover {
    background: #1B6ABA;
  }
  
  /* ========================================
     Scroll Item
     ======================================== */
  
  .zhongyu-news-scroll-item {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 37px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 123px;
    transition: all 0.3s ease;
  }
  
  
  
  .zhongyu-news-scroll-content {
    flex: 1;
    display: flex;
    gap: 10px;
    max-width: 930px;
  }
  
  .zhongyu-news-scroll-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: #595757;
    min-width: 105px;
  }
  
  .zhongyu-news-scroll-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .zhongyu-news-scroll-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    color: #595757;
    margin: 0;
  }
  
  .zhongyu-news-scroll-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: #595757;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* ========================================
     Scroll Item Footer
     ======================================== */
  
  .zhongyu-news-scroll-footer {
    flex-shrink: 0;
  }
  
  .zhongyu-news-scroll-link {
    display: flex;
    align-items: center;
    gap: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .zhongyu-news-scroll-link-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    color: #595757;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  
  .zhongyu-news-scroll-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #595757;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .zhongyu-news-scroll-link-icon i{
    font-size:20px;
  }
  .zhongyu-news-scroll-item:hover .zhongyu-news-scroll-link-text,
  .zhongyu-news-scroll-item:hover .zhongyu-news-scroll-link-icon {
    color: #0C3054;
  }
  
  .zhongyu-news-scroll-item:hover .zhongyu-news-scroll-link-icon {
    transform: translateX(5px);
  }
  
  /* ========================================
     Pagination
     ======================================== */
  
  .zhongyu-news-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
  }
  #pagesize{
    margin: 0 !important;
  }
  #pagesize ul li a{
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin:0 10px !important;
    border: none !important;
    font-size: 20px !important;
    background: transparent !important;
    padding: 8px 0 !important;
  }
  #pagesize ul li a{
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
#pagesize ul li a.active,
#pagesize ul li a:hover{
    background:#002E9C !important;
    border-radius:50%;
}
  #pagesize ul li:nth-child(1) a,
  #pagesize ul li:nth-last-child(1) a{
    color: transparent !important;
    position: relative;
    border: 1px solid #3E3A39 !important;
    font-size: 0 !important;
    padding: 0;
    height: 18px;
    width: 18px;
    background: #fff !important;
  }
  #pagesize ul li:nth-last-child(1) a::before{
    position: absolute;
    content: "\e692";
  }
  #pagesize ul li:nth-child(1) a::before{
    position: absolute;
    content: "\e6aa";
  }
  #pagesize ul li:nth-last-child(1) a::before,
  #pagesize ul li:nth-child(1) a::before{
    color: #3E3A39;
    font-family: "iconfont";
    font-size: 16px;
    left: 0;
    top: 0;
  }
  #pagesize ul{
    align-items: center;
  }
  #pagesize ul li:nth-child(1) a:hover,
  #pagesize ul li:nth-last-child(1) a:hover{
    border-radius: 0;
    font-size: 0 !important;
  }
  /* ========================================
     Responsive Styles
     ======================================== */
  
  /* Large tablets and below (max-width: 1200px) */
  @media (max-width: 1200px) {
    .zhongyu-news-list {
      padding: 100px 0;
    }
  
    .zhongyu-news-list-title {
      font-size: 48px;
      margin-bottom: 40px;
    }
  
    .zhongyu-news-featured {
      gap: 30px;
      margin-bottom: 80px;
    }
  
    .zhongyu-news-featured-item {
      min-height: 550px;
      padding: 30px 20px;
    }
  
    .zhongyu-news-scroll-item {
      gap: 50px;
      padding: 30px 40px;
    }
    .zhongyu-news-scroll-link{
      gap:20px;
    }
  }
  
  /* Tablets and below (max-width: 991px) */
  @media (max-width: 991px) {
    .zhongyu-news-list {
      padding: 80px 0;
    }
  
    .zhongyu-news-list-title {
      font-size: 36px;
    }
  
    .zhongyu-news-featured {
      flex-direction: column;
      gap: 25px;
      margin-bottom: 50px;
    }
  
    .zhongyu-news-featured-item {
      min-height: auto;
    }
  
    .zhongyu-news-scroll-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 25px;
    }
  
    .zhongyu-news-scroll-footer {
      width: 100%;
    }
  
    .zhongyu-news-scroll-link {
      justify-content: space-between;
    }
  }
  
  /* Mobile landscape and below (max-width: 767px) */
  @media (max-width: 767px) {
    .zhongyu-news-list {
      padding: 60px 0;
    }
  
    .zhongyu-news-list-title {
      font-size: 28px;
      margin-bottom: 30px;
    }
  
    .zhongyu-news-featured {
      gap: 20px;
      margin-bottom: 30px;
    }
  
    .zhongyu-news-featured-item {
      padding: 25px 20px;
    }
  
    .zhongyu-news-featured-title {
      font-size: 20px;
    }
  
    .zhongyu-news-featured-desc {
      font-size: 14px;
      min-height: auto;
    }
  
    .zhongyu-news-featured-link-text {
      font-size: 18px;
    }
  
    .zhongyu-news-scroll-list {
      gap: 10px;
      max-height: 600px;
    }
  
    .zhongyu-news-scroll-item {
      padding: 25px 20px;
      gap: 20px;
    }
  
    .zhongyu-news-scroll-title {
      font-size: 18px;
    }
  
    .zhongyu-news-scroll-desc {
      font-size: 14px;
    }
  
    .zhongyu-news-scroll-link-text {
      font-size: 18px;
    }
  }
  
  /* Mobile portrait (max-width: 575px) */
  @media (max-width: 575px) {
    .zhongyu-news-list {
      padding: 40px 0;
    }
  
    .zhongyu-news-list-title {
      font-size: 24px;
    }
  
    .zhongyu-news-featured-item {
      padding: 20px 15px;
    }
  
    .zhongyu-news-featured-title {
      font-size: 18px;
    }
  
    .zhongyu-news-featured-desc {
      font-size: 13px;
    }
  
    .zhongyu-news-featured-link-text {
      font-size: 16px;
    }
  
    .zhongyu-news-scroll-list {
      max-height: 420px;
    }
  
    .zhongyu-news-scroll-item {
      padding: 20px 15px;
    }
  
    .zhongyu-news-scroll-title {
      font-size: 16px;
    }
  
    .zhongyu-news-scroll-desc {
      font-size: 13px;
    }
  
    .zhongyu-news-scroll-link-text {
      font-size: 16px;
    }
  }