



 /* 全局重置 + 唯一页面根类隔离样式，不污染全站 */

    .news-page-wrap {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: #F5F7FA;
      color: #333A47;
      font-weight: 400;
      line-height: 1.65;
      letter-spacing: -0.01em;
      font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    }
    .news-page-wrap a {
      /* text-decoration: none; */
      /* color: inherit; */
    }
    .news-page-wrap ul, .news-page-wrap li {
      list-style: none;
    }
    .news-page-wrap button, .news-page-wrap input, .news-page-wrap textarea {
      font-family: inherit;
    }

    /* 工具通用类 */
    .news-page-container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 16px;
    }
    @media screen and (min-width: 1024px) {
      .news-page-container {
        padding: 0 32px;
      }
    }
    .news-page-card-shadow {
      box-shadow: 0 4px 20px rgba(15, 76, 129, 0.08);
    }
    .news-page-ellipsis-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-page-ellipsis-3 {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-page-modal-hidden {
      display: none !important;
    }
    .news-page-font-title {
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.3;
    }

    /* 颜色变量统一管理 */
    .news-page-wrap {
      --primary: #0F4C81;
      --secondary: #2973B9;
      --neutral: #F5F7FA;
      --darkgray: #333A47;
      --gray-light: #f1f1f1;
      --gray-border: #e5e7eb;
      --gray-text: #6b7280;
    }

    /* Banner区域 */
    .news-page-banner {
      position: relative;
      height: 180px;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    @media screen and (min-width: 640px) {
      .news-page-banner {
        height: 220px;
      }
    }
    @media screen and (min-width: 768px) {
      .news-page-banner {
        height: 280px;
      }
    }
    .news-page-banner-overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(0,0,0,0.3);
    }
    .news-page-banner-inner {
      position: relative;
      z-index: 1;
      color: #fff;
    }
    .news-page-banner-title {
      font-size: 26px;
      margin-bottom: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-banner-title {
        font-size: 32px;
      }
    }
    @media screen and (min-width: 768px) {
      .news-page-banner-title {
        font-size: 48px;
      }
    }
    .news-page-banner-desc {
      font-size: 0.825rem;
      color: rgba(255,255,255,0.8);
      max-width: 700px;
    }
    @media screen and (min-width: 768px) {
      .news-page-banner-desc {
        font-size: 1.125rem;
      }
    }
    .news-page-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      font-size: 12px;
      opacity: 0.9;
    }
    @media screen and (min-width: 768px) {
      .news-page-breadcrumb {
        font-size: 14px;
        margin-top: 24px;
      }
    }
    .news-page-breadcrumb a:hover {
      color: #fff;
    }

    /* 主内容区域 */
    .news-page-main {
      padding: 32px 0;
    }
    @media screen and (min-width: 768px) {
      .news-page-main {
        padding: 48px 0;
      }
    }
    @media screen and (min-width: 1024px) {
      .news-page-main {
        padding: 64px 0;
      }
    }
    .news-page-grid-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media screen and (min-width: 1024px) {
      .news-page-grid-wrap {
        grid-template-columns: 8fr 4fr;
        gap: 40px;
      }
    }

    /* 左侧筛选栏 */
    .news-page-filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }
    @media screen and (min-width: 640px) {
      .news-page-filter-bar {
        gap: 12px;
        margin-bottom: 40px;
      }
    }
    .news-page-filter-btn-active {
      padding: 8px 16px;
      background: var(--primary);
      color: #fff;
      border-radius: 999px;
      border: none;
      font-size: 0.825rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .news-page-filter-btn {
      padding: 8px 16px;
      background: #fff;
      color: var(--darkgray);
      border: 1px solid var(--gray-border);
      border-radius: 999px;
      font-size: 0.825rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .news-page-filter-btn:hover {
      border-color: var(--secondary);
      color: var(--secondary);
    }
    @media screen and (min-width: 640px) {
      .news-page-filter-btn-active, .news-page-filter-btn {
        padding: 8px 20px;
        font-size: 14px;
      }
    }

    /* 新闻卡片列表 */
    .news-page-card-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media screen and (min-width: 768px) {
      .news-page-card-list {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }
    .news-page-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .news-page-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(15, 76, 129, 0.12);
    }
    .news-page-card-img-box {
      overflow: hidden;
      height: 160px;
    }
    @media screen and (min-width: 640px) {
      .news-page-card-img-box {
        height: 200px;
      }
    }
    .news-page-card-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .news-page-card:hover .news-page-card-img-box img {
      transform: scale(1.1);
    }
    .news-page-card-body {
      padding: 20px;
    }
    @media screen and (min-width: 640px) {
      .news-page-card-body {
        padding: 24px;
      }
    }
    .news-page-card-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--gray-text);
      margin-bottom: 12px;
    }
    .news-page-card-title {
      font-size: 1rem;
      margin-bottom: 12px;
      transition: color 0.3s;
    }
    @media screen and (min-width: 640px) {
      .news-page-card-title {
        font-size: 1.125rem;
      }
    }
    .news-page-card:hover .news-page-card-title {
      color: var(--secondary);
    }
    .news-page-card-desc {
      font-size: 0.825rem;
      color: var(--gray-text);
    }
    .news-page-card-link {
      display: inline-flex;
      align-items: center;
      margin-top: 16px;
      color: var(--secondary);
      font-size: 0.825rem;
      font-weight: 500;
      gap: 8px;
      transition: gap 0.3s;
    }
    .news-page-card-link:hover {
      gap: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-card-link {
        font-size: 14px;
      }
    }

    /* 分页 */
    .news-page-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }
    @media screen and (min-width: 768px) {
      .news-page-pagination {
        margin-top: 48px;
      }
    }
    .news-page-page-btn, .news-page-page-active {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 14px;
      transition: all 0.3s;
    }
    @media screen and (min-width: 640px) {
      .news-page-page-btn, .news-page-page-active {
        width: 40px;
        height: 40px;
      }
    }
    .news-page-page-btn {
      border: 1px solid var(--gray-border);
    }
    .news-page-page-btn:hover {
      background-color: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .news-page-page-active {
      background-color: var(--primary);
      color: #fff;
    }

    /* 右侧侧边栏模块 */
    .news-page-sidebar-block {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 24px;
    }
    @media screen and (min-width: 640px) {
      .news-page-sidebar-block {
        padding: 24px;
        margin-bottom: 32px;
      }
    }
    .news-page-sidebar-title {
      font-size: 1rem;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
      margin-bottom: 16px;
    }
    @media screen and (min-width: 640px) {
      .news-page-sidebar-title {
        font-size: 1.125rem;
      }
    }
    /* 分类列表 */
    .news-page-category-list {
      font-size: 0.825rem;
    }
    @media screen and (min-width: 640px) {
      .news-page-category-list {
        font-size: 14px;
      }
    }
    .news-page-category-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 8px;
      margin-bottom: 8px;
      border-bottom: 1px solid var(--gray-light);
      transition: color 0.3s;
    }
    .news-page-category-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .news-page-category-item a:hover {
      color: var(--secondary);
    }
    .news-page-category-item span {
      font-size: 10px;
      background: var(--neutral);
      padding: 2px 8px;
      border-radius: 999px;
    }
    /* 热门资讯 */
    .news-page-hot-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    @media screen and (min-width: 768px) {
      .news-page-hot-list {
        gap: 20px;
      }
    }
    .news-page-hot-item {
      display: flex;
      gap: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-hot-item {
        gap: 16px;
      }
    }
    .news-page-hot-item img {
      width: 64px;
      height: 56px;
      border-radius: 8px;
      flex-shrink: 0;
      object-fit: cover;
    }
    @media screen and (min-width: 640px) {
      .news-page-hot-item img {
        width: 80px;
        height: 64px;
      }
    }
    .news-page-hot-item time {
      font-size: 10px;
      color: var(--gray-text);
    }
    .news-page-hot-item a {
      display: block;
      margin-top: 4px;
      font-size: 0.825rem;
      font-weight: 500;
      transition: color 0.3s;
    }
    @media screen and (min-width: 640px) {
      .news-page-hot-item a {
        font-size: 14px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1; /* 显示3行 */
        overflow: hidden;
      }
    }
    .news-page-hot-item a:hover {
      color: var(--secondary);
    }

    /* 侧边咨询广告块 */
    .news-page-contact-box {
      background-color: var(--primary);
      color: #fff;
      border-radius: 12px;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }
    @media screen and (min-width: 640px) {
      .news-page-contact-box {
        padding: 24px;
      }
    }
    .news-page-contact-box > div:first-child {
      position: relative;
      z-index: 1;
    }
    .news-page-contact-box i.fa-message-dots {
      position: absolute;
      right: 0;
      bottom: 0;
      font-size: 80px;
      opacity: 0.1;
    }
    @media screen and (min-width: 640px) {
      .news-page-contact-box i.fa-message-dots {
        font-size: 120px;
      }
    }
    .news-page-contact-title {
      font-size: 1.125rem;
      margin-bottom: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-contact-title {
        font-size: 1.25rem;
      }
    }
    .news-page-contact-desc {
      font-size: 0.825rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 16px;
    }
    @media screen and (min-width: 640px) {
      .news-page-contact-desc {
        font-size: 14px;
        margin-bottom: 20px;
      }
    }
    #news-page-open-modal-btn {
      background: #fff;
      color: var(--primary);
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 0.825rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
    }
    #news-page-open-modal-btn:hover {
      background-color: #f1f1f1;
    }
    @media screen and (min-width: 640px) {
      #news-page-open-modal-btn {
        padding: 12px 24px;
        font-size: 14px;
      }
    }

    /* 弹窗遮罩 */
    .news-page-modal-wrap {
      position: fixed;
      inset: 0;
      background-color: rgba(0,0,0,0.6);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-modal-wrap {
        padding: 16px;
      }
    }
    .news-page-modal-inner {
      width: 100%;
      max-width: 680px;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      position: relative;
      max-height: 85vh;
      overflow-y: auto;
    }
    @media screen and (min-width: 640px) {
      .news-page-modal-inner {
        padding: 32px;
      }
    }
    #news-page-close-modal-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      background: transparent;
      border: none;
      font-size: 18px;
      color: var(--gray-text);
      cursor: pointer;
      transition: color 0.3s;
    }
    @media screen and (min-width: 640px) {
      #news-page-close-modal-btn {
        top: 16px;
        right: 16px;
        font-size: 20px;
      }
    }
    #news-page-close-modal-btn:hover {
      color: var(--primary);
    }
    .news-page-modal-title {
      font-size: 20px;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
      margin-bottom: 24px;
    }
    @media screen and (min-width: 640px) {
      .news-page-modal-title {
        font-size: 24px;
        margin-bottom: 32px;
      }
    }

    /* 表单样式 */
    .news-page-form-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    @media screen and (min-width: 640px) {
      .news-page-form-wrap {
        gap: 20px;
      }
    }
    .news-page-form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media screen and (min-width: 768px) {
      .news-page-form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
    }
    .news-page-form-item label {
      display: block;
      font-size: 0.825rem;
      font-weight: 500;
      margin-bottom: 4px;
    }
    @media screen and (min-width: 640px) {
      .news-page-form-item label {
        font-size: 14px;
      }
    }
    .news-page-form-input, .news-page-form-textarea, .news-page-form-file {
      width: 100%;
      border: 1px solid var(--gray-border);
      border-radius: 8px;
      padding: 10px 12px;
      font-size: 0.825rem;
      outline: none;
      transition: border-color 0.3s;
    }
    @media screen and (min-width: 640px) {
      .news-page-form-input, .news-page-form-textarea, .news-page-form-file {
        padding: 12px 16px;
        font-size: 14px;
      }
    }
    .news-page-form-input:focus, .news-page-form-textarea:focus {
      border-color: var(--secondary);
    }
    .news-page-form-textarea {
      resize: none;
      min-height: 100px;
    }
    .news-page-form-file::file-selector-button {
      margin-right: 12px;
      padding: 6px 12px;
      border: none;
      border-radius: 6px;
      background-color: var(--primary);
      color: #fff;
      cursor: pointer;
    }
    .news-page-form-tip {
      font-size: 10px;
      color: var(--gray-text);
      margin-top: 4px;
    }
    #news-page-form-submit {
      width: 100%;
      padding: 12px;
      background-color: var(--primary);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 0.825rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
    }
    #news-page-form-submit:hover {
      background-color: var(--secondary);
    }
    @media screen and (min-width: 640px) {
      #news-page-form-submit {
        font-size: 14px;
      }
    }
	
	
	
	
	
	 /* 页面隔离根容器，不污染全站 */
 
    .news-detail-wrap {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: #F5F7FA;
      color: #333A47;
      font-weight: 400;
      line-height: 1.7;
      letter-spacing: -0.01em;
      font-feature-settings: "cv02", "cv03", "cv04", "cv11";
      --primary: #0F4C81;
      --secondary: #2973B9;
      --neutral: #F5F7FA;
      --darkgray: #333A47;
      --gray-light: #f1f1f1;
      --gray-border: #e5e7eb;
      --gray-text: #6b7280;
    }

    .news-detail-wrap ul, .news-detail-wrap li {
      list-style: none;
    }
    .news-detail-wrap button, .news-detail-wrap input, .news-detail-wrap textarea {
      font-family: inherit;
    }

    /* 通用工具类 */
    .news-detail-container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 16px;
    }
    @media (min-width:1024px) {
      .news-detail-container {
        padding: 0 32px;
      }
    }
    .news-detail-card-shadow {
      box-shadow: 0 4px 20px rgba(15, 76, 129, 0.08);
    }
    .news-detail-modal-hidden {
      display: none !important;
    }
    .news-detail-font-title {
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.3;
    }
    .news-detail-text-ellipsis-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 顶部Banner */
    .news-detail-banner {
      position: relative;
      height: 180px;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    @media (min-width:640px) {
      .news-detail-banner { height:220px; }
    }
    @media (min-width:768px) {
      .news-detail-banner { height:280px; }
    }
    .news-detail-banner-overlay {
      position: absolute;
      inset:0;
      background: rgba(0,0,0,0.3);
    }
    .news-detail-banner-inner {
      position: relative;
      z-index:1;
      color:#fff;
    }
    .news-detail-breadcrumb {
      display: flex;
      gap:8px;
      align-items:center;
      font-size:12px;
      opacity:0.9;
      margin-top:16px;
    }
	.news-detail-breadcrumb a{color:#fff;}
    @media (min-width:768px) {
      .news-detail-breadcrumb { font-size:14px; margin-top:24px; }
    }
    .news-detail-breadcrumb a:hover { color:#fff; }

    /* 主体布局 */
    .news-detail-main {
      padding:32px 0;
    }
    @media (min-width:768px) {
      .news-detail-main { padding:48px 0; }
    }
    @media (min-width:1024px) {
      .news-detail-main { padding:64px 0; }
    }
    .news-detail-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap:32px;
    }
    @media (min-width:1024px) {
      .news-detail-grid { grid-template-columns:8fr 4fr; gap:40px; }
    }

    /* 左侧文章主体 */
    .news-detail-article-wrap {
      background:#fff;
      border-radius:12px;
      overflow:hidden;
      .news-detail-card-shadow
    }
    .news-detail-article-bigimg {
      width:100%;
      height:240px;
      object-fit:cover;
    }
    @media (min-width:640px) {
      .news-detail-article-bigimg { height:320px; }
    }
    @media (min-width:1024px) {
      .news-detail-article-bigimg { height:400px; }
    }
    .news-detail-article-body {
      padding:24px 20px;
    }
    @media (min-width:640px) {
      .news-detail-article-body { padding:32px; }
    }
    .news-detail-meta-row {
      display:flex;
      flex-wrap:wrap;
      gap:16px;
      font-size:13px;
      color:var(--gray-text);
      margin-bottom:16px;
    }
    .news-detail-meta-row span i { margin-right:6px; }
    .news-detail-article-title {
      font-size:22px;
      margin-bottom:20px;
    }
    @media (min-width:640px) {
      .news-detail-article-title { font-size:28px; }
    }
    /* 正文富文本 */
    .news-detail-content p {
      margin-bottom:16px;
      font-size:15px;
      color:#444;
    }
    .news-detail-content h4 {
      font-size:18px;
      margin:24px 0 12px;
      color:var(--darkgray);
    }
    .news-detail-content ul {
      padding-left:20px;
      margin-bottom:16px;
    }
    .news-detail-content li {
      list-style:disc;
      margin-bottom:8px;
      font-size:15px;
    }
    .news-detail-content img {
      width:100%;
      border-radius:8px;
      margin:20px 0;
    }
    /* 标签 & 分享 */
    .news-detail-tag-share {
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      margin:30px 0;
      padding-top:24px;
      border-top:1px solid var(--gray-border);
    }
    .news-detail-tag-list {
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .news-detail-tag-item {
      padding:4px 12px;
      background:var(--neutral);
      border-radius:999px;
      font-size:12px;
      color:var(--gray-text);
    }
    .news-detail-share-list {
      display:flex;
      gap:10px;
    }
    .news-detail-share-btn {
      width:34px;
      height:34px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--gray-light);
      color:var(--darkgray);
      transition:0.3s;
    }
    .news-detail-share-btn:hover {
      background:var(--primary);
      color:#fff;
    }
    /* 上一篇下一篇 */
    .news-detail-prev-next {
      display:grid;
      grid-template-columns:1fr;
      gap:16px;
      margin-bottom:40px;
    }
    @media (min-width:768px) {
      .news-detail-prev-next { grid-template-columns:1fr 1fr; }
    }
    .news-detail-prev-next-item {
      padding:16px;
      border:1px solid var(--gray-border);
      border-radius:10px;
      transition:0.3s;
    }
    .news-detail-prev-next-item:hover {
      border-color:var(--secondary);
    }
    .news-detail-prev-next-label {
      font-size:12px;
      color:var(--gray-text);
      margin-bottom:6px;
      display:flex;
      align-items:center;
      gap:4px;
    }
    .news-detail-prev-next-title {
      font-size:14px;
      font-weight:500;
    }
    /* 相关推荐新闻 */
    .news-detail-relate-title {
      font-size:20px;
      margin-bottom:24px;
      padding-left:12px;
      border-left:4px solid var(--primary);
    }
    .news-detail-relate-wrap {
      display:grid;
      grid-template-columns:1fr;
      gap:24px;
    }
    @media (min-width:640px) {
      .news-detail-relate-wrap { grid-template-columns:1fr 1fr; }
    }
    @media (min-width:1024px) {
      .news-detail-relate-wrap { grid-template-columns:1fr 1fr 1fr; }
    }
    .news-detail-relate-card {
      background:#fff;
      border-radius:10px;
      overflow:hidden;
      .news-detail-card-shadow
      transition:0.3s;
    }
    .news-detail-relate-card:hover { transform:translateY(-4px); }
    .news-detail-relate-img {
      width:100%;
      height:160px;
      object-fit:cover;
    }
    .news-detail-relate-body {
      padding:16px;
    }
    .news-detail-relate-date {
      font-size:11px;
      color:var(--gray-text);
    }
    .news-detail-relate-txt {
      font-size:14px;
      font-weight:500;
      margin-top:6px;
    }
    .news-detail-relate-card:hover .news-detail-relate-txt { color:var(--secondary); }

    /* 右侧侧边栏通用 */
    .news-detail-sidebar-block {
      background:#fff;
      border-radius:12px;
      padding:20px;
      margin-bottom:24px;
      .news-detail-card-shadow
    }
    @media (min-width:640px) {
      .news-detail-sidebar-block { padding:24px; margin-bottom:32px; }
    }
    .news-detail-sidebar-title {
      font-size:1rem;
      padding-left:12px;
      border-left:4px solid var(--primary);
      margin-bottom:16px;
    }
    @media (min-width:640px) {
      .news-detail-sidebar-title { font-size:1.125rem; }
    }
    /* 分类列表 */
    .news-detail-category-list { font-size:0.825rem; }
    @media (min-width:640px) { .news-detail-category-list { font-size:14px; } }
    .news-detail-category-item {
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding-bottom:8px;
      margin-bottom:8px;
      border-bottom:1px solid var(--gray-light);
      transition:0.3s;
    }
    .news-detail-category-item:last-child { border:none; padding-bottom:0; margin-bottom:0; }
    .news-detail-category-item a:hover { color:var(--secondary); }
    .news-detail-category-item span {
      font-size:10px;
      background:var(--neutral);
      padding:2px 8px;
      border-radius:999px;
    }
    /* 热门资讯 */
    .news-detail-hot-list { display:flex; flex-direction:column; gap:16px; }
    @media (min-width:768px) { .news-detail-hot-list { gap:20px; } }
    .news-detail-hot-item { display:flex; gap:12px; }
    @media (min-width:640px) { .news-detail-hot-item { gap:16px; } }
    .news-detail-hot-item img {
      width:64px;
      height:56px;
      border-radius:8px;
      flex-shrink:0;
      object-fit:cover;
    }
    @media (min-width:640px) { .news-detail-hot-item img { width:80px; height:64px; } }
    .news-detail-hot-item time { font-size:10px; color:var(--gray-text); }
    .news-detail-hot-item a {
      display:block;
      margin-top:4px;
      font-size:0.825rem;
      font-weight:500;
    }
    @media (min-width:640px) { .news-detail-hot-item a { font-size:14px; } }
    .news-detail-hot-item a:hover { color:var(--secondary); }
    /* 侧边咨询块 */
    .news-detail-contact-box {
      background:var(--primary);
      color:#fff;
      border-radius:12px;
      padding:20px;
      position:relative;
      overflow:hidden;
    }
    @media (min-width:640px) { .news-detail-contact-box { padding:24px; } }
    .news-detail-contact-box > div:first-child { position:relative; z-index:1; }
    .news-detail-contact-box i.fa-message-dots {
      position:absolute;
      right:0;
      bottom:0;
      font-size:80px;
      opacity:0.1;
    }
    @media (min-width:640px) { .news-detail-contact-box i.fa-message-dots { font-size:120px; } }
    .news-detail-contact-title { font-size:1.125rem; margin-bottom:12px; }
    @media (min-width:640px) { .news-detail-contact-title { font-size:1.25rem; } }
    .news-detail-contact-desc {
      font-size:0.825rem;
      color:rgba(255,255,255,0.8);
      margin-bottom:16px;
    }
    @media (min-width:640px) { .news-detail-contact-desc { font-size:14px; margin-bottom:20px; } }
    #news-detail-open-modal-btn {
      background:#fff;
      color:var(--primary);
      border:none;
      padding:10px 20px;
      border-radius:8px;
      font-size:0.825rem;
      font-weight:500;
      cursor:pointer;
      transition:0.3s;
    }
    #news-detail-open-modal-btn:hover { background:#f1f1f1; }
    @media (min-width:640px) { #news-detail-open-modal-btn { padding:12px 24px; font-size:14px; } }

    /* 弹窗全局样式（同列表统一表单） */
    .news-detail-modal-wrap {
      position:fixed;
      inset:0;
      background:rgba(0,0,0,0.6);
      z-index:9999;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:12px;
    }
    @media (min-width:640px) { .news-detail-modal-wrap { padding:16px; } }
    .news-detail-modal-inner {
      width:100%;
      max-width:680px;
      background:#fff;
      border-radius:12px;
      padding:20px;
      position:relative;
      max-height:85vh;
      overflow-y:auto;
    }
    @media (min-width:640px) { .news-detail-modal-inner { padding:32px; } }
    #news-detail-close-modal-btn {
      position:absolute;
      top:12px;
      right:12px;
      background:transparent;
      border:none;
      font-size:18px;
      color:var(--gray-text);
      cursor:pointer;
    }
    @media (min-width:640px) { #news-detail-close-modal-btn { top:16px; right:16px; font-size:20px; } }
    #news-detail-close-modal-btn:hover { color:var(--primary); }
    .news-detail-modal-title {
      font-size:20px;
      padding-left:12px;
      border-left:4px solid var(--primary);
      margin-bottom:24px;
    }
    @media (min-width:640px) { .news-detail-modal-title { font-size:24px; margin-bottom:32px; } }
    .news-detail-form-wrap { display:flex; flex-direction:column; gap:16px; }
    @media (min-width:640px) { .news-detail-form-wrap { gap:20px; } }
    .news-detail-form-row {
      display:grid;
      grid-template-columns:1fr;
      gap:16px;
    }
    @media (min-width:768px) { .news-detail-form-row { grid-template-columns:1fr 1fr; gap:20px; } }
    .news-detail-form-item label {
      display:block;
      font-size:0.825rem;
      font-weight:500;
      margin-bottom:4px;
    }
    @media (min-width:640px) { .news-detail-form-item label { font-size:14px; } }
    .news-detail-form-input, .news-detail-form-textarea, .news-detail-form-file {
      width:100%;
      border:1px solid var(--gray-border);
      border-radius:8px;
      padding:10px 12px;
      font-size:0.825rem;
      outline:none;
      transition:0.3s;
    }
    @media (min-width:640px) {
      .news-detail-form-input, .news-detail-form-textarea, .news-detail-form-file {
        padding:12px 16px;
        font-size:14px;
      }
    }
    .news-detail-form-input:focus, .news-detail-form-textarea:focus { border-color:var(--secondary); }
    .news-detail-form-textarea { resize:none; min-height:100px; }
    .news-detail-form-file::file-selector-button {
      margin-right:12px;
      padding:6px 12px;
      border:none;
      border-radius:6px;
      background:var(--primary);
      color:#fff;
      cursor:pointer;
    }
    .news-detail-form-tip { font-size:10px; color:var(--gray-text); margin-top:4px; }
    #news-detail-form-submit {
      width:100%;
      padding:12px;
      background:var(--primary);
      color:#fff;
      border:none;
      border-radius:8px;
      font-size:0.825rem;
      font-weight:500;
      cursor:pointer;
    }
    #news-detail-form-submit:hover { background:var(--secondary); }
    @media (min-width:640px) { #news-detail-form-submit { font-size:14px; } }
	
	
	
	/* 合作伙伴外层区块 */
.brand-cooperation-block {
    padding: 70px 0 0;
    background-color: var(--surface);
}

/* 标题区域 */
.brand-title-wrap {
    text-align: center;
    margin-bottom: 55px;
}
.brand-sub-label {
    display: block;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #6a707c;
    margin-bottom: 14px;
}
.brand-main-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 18px;
}
.brand-desc-text {
    max-width: 620px;
    margin: 0 auto;
    font-size: 16px;
    color: #555a66;
    line-height: 1.75;
}
/* Logo网格容器 */
.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(127px, 1fr));
    gap: 20px;
    align-items: center;
}
/* 单个Logo卡片 */
.brand-logo-card {
    background: #ffffff;
    /* height: 110px; */
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.32s ease-out;
}
.brand-logo-card img {
    max-width: 100%;
    /* max-height: 65px; */
    /* filter: grayscale(100%); */
    opacity: 0.72;
    transition: all 0.32s ease-out;
}
/* Hover交互效果 */
.brand-logo-card:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.055);
}
.brand-logo-card:hover img {
    /* filter: grayscale(0%); */
    opacity: 1;
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    .brand-cooperation-block {
        padding: 65px 0;
    }
    .brand-main-title {
        font-size: 28px;
    }
    .brand-logo-grid {
        gap: 22px;
    }
    .brand-logo-card {
        height: 95px;
    }
}
	
	
	