/* PC 资讯列表页（浮层）— 居中、加宽、无白底 */
@media (min-width: 769px) {
  .dual-pc .page--news-list,
  .spa-overlay--pc-news-list .page--news-list {
    background-color: transparent;
    height: var(--pc-canvas-h, 10.8rem);
    min-height: var(--pc-canvas-h, 10.8rem);
    max-height: var(--pc-canvas-h, 10.8rem);
    overflow: hidden;
  }

  .dual-pc .pc-news-list-layout,
  .dual-pc .page--news-list .news-content,
  .spa-overlay--pc-news-list .pc-news-list-layout,
  .spa-overlay--pc-news-list .page--news-list .news-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: 0;
    padding: calc(var(--header-height) + 0.68rem) 0.6rem 0.48rem;
    box-sizing: border-box;
  }

  .dual-pc .pc-news-list-wrap,
  .spa-overlay--pc-news-list .pc-news-list-wrap {
    width: 10.4rem;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-sizing: border-box;
    max-height: calc(var(--pc-canvas-h, 10.8rem) - var(--header-height) - 0.36rem);
  }

  .dual-pc .pc-news-list-head,
  .spa-overlay--pc-news-list .pc-news-list-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0.71rem;
    margin-bottom: 0.12rem;
    flex-shrink: 0;
  }

  .dual-pc .pc-news-list-head .pc-news-back,
  .spa-overlay--pc-news-list .pc-news-list-head .pc-news-back {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    transition: transform var(--transition);
  }

  .dual-pc .pc-news-list-head .pc-news-back:hover,
  .spa-overlay--pc-news-list .pc-news-list-head .pc-news-back:hover {
    transform: translateY(-50%) scale(var(--hover-scale));
  }

  .dual-pc .pc-news-list-head .pc-news-back img,
  .spa-overlay--pc-news-list .pc-news-list-head .pc-news-back img {
    width: 0.8rem;
    height: 0.71rem;
    object-fit: contain;
  }

  .dual-pc .page--news-list .news-tabs,
  .spa-overlay--pc-news-list .page--news-list .news-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }

  .dual-pc .page--news-list .news-list-body,
  .spa-overlay--pc-news-list .page--news-list .news-list-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0.08rem;
  }

  .dual-pc .page--news-list .news-list-item,
  .spa-overlay--pc-news-list .page--news-list .news-list-item {
    padding: 0.14rem 0.06rem;
    border-bottom: 0.01rem dotted rgba(0, 0, 0, 0.14);
  }

  .dual-pc .page--news-list .news-list-item:last-child,
  .spa-overlay--pc-news-list .page--news-list .news-list-item:last-child {
    border-bottom: none;
  }

  .dual-pc .page--news-list .news-list-link,
  .spa-overlay--pc-news-list .page--news-list .news-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.16rem;
    width: 100%;
    color: inherit;
    text-decoration: none;
  }

  .dual-pc .page--news-list .news-list-title,
  .spa-overlay--pc-news-list .page--news-list .news-list-title {
    font-size: 0.22rem;
  }

  .dual-pc .page--news-list .news-list-date,
  .spa-overlay--pc-news-list .page--news-list .news-list-date {
    font-size: 0.2rem;
  }

  .dual-pc .pc-news-pagination,
  .spa-overlay--pc-news-list .pc-news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.16rem;
    margin-top: 0.24rem;
    padding-top: 0.08rem;
    flex-shrink: 0;
  }

  .dual-pc .pc-news-page-arrow,
  .spa-overlay--pc-news-list .pc-news-page-arrow {
    width: 0.36rem;
    height: 0.36rem;
    border: none;
    border-radius: 0.04rem;
    font-size: 0.2rem;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    transition: opacity var(--transition), transform var(--transition);
  }

  .dual-pc .pc-news-page-arrow--prev,
  .spa-overlay--pc-news-list .pc-news-page-arrow--prev {
    background: #7eb8e8;
  }

  .dual-pc .pc-news-page-arrow--next,
  .spa-overlay--pc-news-list .pc-news-page-arrow--next {
    background: #1a4a7a;
  }

  .dual-pc .pc-news-page-arrow:hover:not(:disabled),
  .spa-overlay--pc-news-list .pc-news-page-arrow:hover:not(:disabled) {
    transform: scale(1.06);
  }

  .dual-pc .pc-news-page-arrow:disabled,
  .spa-overlay--pc-news-list .pc-news-page-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .dual-pc .pc-news-page-nums,
  .spa-overlay--pc-news-list .pc-news-page-nums {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .dual-pc .pc-news-page-num,
  .spa-overlay--pc-news-list .pc-news-page-num {
    padding: 0;
    border: none;
    background: none;
    font-family: var(--font-serif);
    font-size: 0.2rem;
    color: #999999;
    cursor: pointer;
    transition: color var(--transition);
  }

  .dual-pc .pc-news-page-num:hover,
  .spa-overlay--pc-news-list .pc-news-page-num:hover {
    color: #1a4a7a;
  }

  .dual-pc .pc-news-page-num.is-active,
  .spa-overlay--pc-news-list .pc-news-page-num.is-active {
    color: #1a4a7a;
    font-weight: bold;
  }

  .dual-pc .pc-news-list-empty,
  .spa-overlay--pc-news-list .pc-news-list-empty {
    padding: 0.48rem 0;
    text-align: center;
    font-size: 0.2rem;
    color: #999999;
  }
}
