* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Microsoft YaHei", sans-serif;
      scroll-behavior: smooth;
    }
    :root {
      --main-red: #c7000b;
      --light-red: #e63946;
      --white: #ffffff;
      --gray: #f5f5f5;
      --dark: #222222;
      --text-gray: #666;
      --shadow: 0 3px 15px rgba(0,0,0,0.08);
      --shadow-hover: 0 8px 25px rgba(0,0,0,0.12);
      --transition: all 0.3s ease;
    }
    body {
      background: var(--white);
      color: var(--dark);
      line-height: 1.6;
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      z-index: 999;
      transition: all 0.3s ease;
      backdrop-filter: blur(8px);
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 76px;
    }
    .logo {
      font-size: 26px;
      color: var(--main-red);
      display: flex;
      align-items: center;
      gap: 12px;
      letter-spacing: 0.5px;
    }
	.logo img{width:90%}
    .logo i {
      font-size: 30px;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 0;
    }
    .nav-menu > li {
      position: relative;
      padding: 0 20px;
      height: 76px;
      display: flex;
      align-items: center;
    }
    .nav-menu a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 400;
      font-size: 16px;
      transition: color 0.3s;
      position: relative;
      display: flex;
      align-items: center;
      gap: 6px;
      letter-spacing: 0.3px;
      padding: 8px 0;
    }
    .nav-menu a:hover {
      color: var(--main-red);
    }
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--main-red);
      transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      border-radius: 1px;
    }
    .nav-menu a:hover::after {
      width: 100%;
    }
    .nav-menu .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      border-radius: 6px;
      min-width: 210px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      z-index: 9999;
      padding: 8px 0;
    }
    .nav-menu .dropdown li {
      padding: 10px 20px;
      list-style: none;
      transition: background 0.3s;
    }
    .nav-menu .dropdown li:hover {
      background: #f8f8f8;
    }
    .nav-menu .dropdown a {
      font-size: 15px;
      padding: 4px 0;
      color: #333;
    }
    .nav-menu .dropdown a::after {
      display: none;
    }
    .nav-menu .dropdown a:hover {
      color: var(--main-red);
      background: transparent;
    }
    .nav-menu > li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-toggle i {
      font-size: 12px;
      transition: transform 0.4s ease;
      color: #888;
    }
    .nav-menu > li:hover .dropdown-toggle i {
      transform: rotate(180deg);
      color: var(--main-red);
    }
    .menu-btn {
      display: none;
      font-size: 26px;
      color: var(--main-red);
      cursor: pointer;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
    }
    .menu-btn:hover {
      transform: scale(1.05);
    }

    @media (max-width: 992px) {
      .menu-btn {
        display: flex;
      }
      .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.4s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 0;
        overflow-y: auto;
      }
      .nav-menu.active {
        left: 0;
      }
      .nav-menu > li {
        height: auto;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
      }
      .nav-menu .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        min-width: 100%;
        display: none;
        margin-top: 10px;
        padding-left: 20px;
        background: #f9f9f9;
        border-radius: 4px;
        padding: 10px 0;
      }
      .nav-menu .dropdown.show {
        display: block;
      }
      .nav-menu .dropdown li {
        padding: 8px 20px;
      }
      .nav-menu .dropdown-toggle i {
        transition: transform 0.3s ease;
      }
      .nav-menu .dropdown-active i {
        transform: rotate(180deg);
        color: var(--main-red);
      }
    }
    
    .banner {
      margin-top: 76px;
      height: 550px;
      position: relative;
      overflow: hidden;
    }
    .banner-slider {
      display: flex;
      width: 300%;
      height: 100%;
      transition: transform 0.8s ease;
    }
    .banner-slide {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }
    .banner-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.2);
    }
    .banner-text {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
    }
    .banner-text h1 {
      font-size: 48px;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeInUp 1s 0.2s forwards;
    }
    .banner-text p {
      font-size: 20px;
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0;
      animation: fadeInUp 1s 0.5s forwards;
    }
    .banner-btn {
      padding: 12px 30px;
      background: var(--white);
      color: var(--main-red);
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s;
      opacity: 0;
      animation: fadeInUp 1s 0.8s forwards;
    }
    .banner-btn:hover {
      background: var(--light-red);
      color: var(--white);
      transform: translateY(-3px);
    }
    .banner-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;
    }
    .banner-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.3s;
    }
    .banner-dot.active {
      background: var(--white);
      width: 30px;
      border-radius: 6px;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }
    .section {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }
    .section.animate {
      opacity: 1;
      transform: translateY(0);
    }
    .animate .title {
      animation: fadeInUp 0.8s ease forwards;
    }
    .animate .about-text {
      animation: fadeInLeft 0.8s ease forwards;
    }
    .animate .about-img {
      animation: fadeInRight 0.8s ease forwards;
    }
    .animate .news-left {
      animation: fadeInLeft 0.8s ease forwards;
    }
    .animate .news-right {
      animation: fadeInRight 0.8s ease forwards;
    }
    .animate .party-left {
      animation: fadeInLeft 0.8s ease forwards;
    }
    .animate .party-right {
      animation: fadeInRight 0.8s ease forwards;
    }
    .animate .service-box {
      animation: scaleIn 0.8s ease forwards;
    }
    .animate .case-wrap {
      animation: scaleIn 0.8s ease forwards;
    }
    .animate .media-wrap {
      animation: scaleIn 0.8s ease forwards;
    }
    .animate .service-card {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease;
    }
    .animate .service-card:nth-child(1) { transition-delay: 0.1s; }
    .animate .service-card:nth-child(2) { transition-delay: 0.2s; }
    .animate .service-card:nth-child(3) { transition-delay: 0.3s; }
    .animate .service-card:nth-child(4) { transition-delay: 0.4s; }
    .animate .service-card:nth-child(5) { transition-delay: 0.5s; }
    .animate .service-card:nth-child(6) { transition-delay: 0.6s; }
    .animate .service-card.show {
      opacity: 1;
      transform: translateY(0);
    }

    .section {
      padding: 80px 0;
    }
    .title {
      text-align: center;
      margin-bottom: 50px;
      font-size: 24px;
      color: var(--main-red);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      font-weight: 600;
    }
    .title::before,
    .title::after {
      content: '';
      flex: 0 1 90px;
      height: 1px;
    }
    .title::before {
      background: linear-gradient(90deg, transparent, var(--main-red));
    }
    .title::after {
      background: linear-gradient(90deg, var(--main-red), transparent);
    }
    .bg-gray {
      background: var(--gray);
    }
    .card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    .case-wrap {
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      padding: 0;
      width: 100%;
      height: 450px;
    }
    .case-list {
      display: flex;
      transition: transform 0.5s ease;
      height: 100%;
    }
    .case-item {
      min-width: 100%;
      padding: 0 60px;
      height: 100%;
    }
    .case-item .card {
      position: relative;
      height: 100%;
      overflow: hidden;
    }
    .case-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }
    .case-item .case-desc {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px 25px 25px;
      text-align: center;
      background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
      border-radius: 0 0 10px 10px;
    }
    .case-item h4 {
      color: #fff;
      margin-bottom: 10px;
      font-size: 22px;
      font-weight: 600;
    }
    .case-item p {
      color: rgba(255,255,255,0.9);
      font-size: 15px;
      line-height: 1.7;
    }
    .case-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(199,0,11,0.8);
      color: #fff;
      border: none;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .case-btn:hover {
      background: var(--main-red);
    }
    .case-prev {
      left: 15px;
    }
    .case-next {
      right: 15px;
    }
    .about-row {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .about-text {
      flex: 1;
    }
    .about-text .about-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
    }
    .about-text .about-icon {
      width: 40px;
      height: 40px;
      background: rgba(199,0,11,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 5px;
    }
    .about-text .about-icon i {
      color: var(--main-red);
      font-size: 18px;
    }
    .about-text p {
      font-size: 16px;
      line-height: 2;
      color: #333;
    }
    .about-links {
      display: flex;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    .about-link-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      padding: 15px 20px;
      border-radius: 8px;
      background: rgba(199,0,11,0.05);
      min-width: 120px;
    }
    .about-link-item:hover {
      background: rgba(199,0,11,0.1);
      transform: translateY(-5px);
    }
    .about-link-icon {
      width: 50px;
      height: 50px;
      background: rgba(199,0,11,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      transition: var(--transition);
    }
    .about-link-item:hover .about-link-icon {
      background: var(--main-red);
    }
    .about-link-icon i {
      font-size: 22px;
      color: var(--main-red);
      transition: var(--transition);
    }
    .about-link-item:hover .about-link-icon i {
      color: var(--white);
    }
    .about-link-text {
      font-size: 15px;
      color: var(--dark);
      font-weight: 500;
    }
    .about-img {
      flex: 1;
      position: relative;
    }
    .about-img img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }
    .about-img::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100px;
      height: 100px;
      border: 5px solid var(--main-red);
      border-radius: 8px;
      z-index: -1;
      opacity: 0.2;
    }
    .about-img::after {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 80px;
      height: 80px;
      background: var(--main-red);
      border-radius: 8px;
      z-index: -1;
      opacity: 0.1;
    }
    .news-row {
      display: flex;
      gap: 30px;
    }
    .news-left {
      flex: 4;
    }
    .news-right {
      flex: 6;
    }
    .news-left .big-img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }
    .news-left h3 {
      margin-top: 15px;
      font-size: 20px;
      color: var(--main-red);
    }
    .news-left p {
      margin-top: 8px;
      color: var(--text-gray);
      line-height: 1.8;
    }
    .news-list {
      list-style: none;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    .news-list li {
      padding: 15px 20px;
      border-bottom: 1px dashed #ddd;
      display: flex;
      align-items: center;
      background: var(--white);
      border-radius: 8px;
      margin-bottom: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }
    .news-list li:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }
    .news-list li::before {
      content: '●';
      color: var(--main-red);
      margin-right: 10px;
      font-size: 14px;
    }
    .news-list a {
      color: var(--dark);
      text-decoration: none;
      flex: 1;
      transition: color 0.3s;
    }
    .news-list a:hover {
      color: var(--main-red);
    }
    .news-list .date {
      color: var(--text-gray);
      font-size: 13px;
      background: var(--gray);
      padding: 3px 8px;
      border-radius: 4px;
    }
    .service-box {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 15px;
      max-width: 100%;
      overflow: hidden;
    }
    .service-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      padding: 20px 10px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--main-red), var(--light-red));
      border-radius: 12px 12px 0 0;
    }
    .service-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: var(--shadow-hover);
    }
    .service-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 15px;
      background: rgba(199, 0, 11, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .service-card:hover .service-icon {
      background: var(--main-red);
      transform: rotate(5deg);
    }
    .service-icon i {
      font-size: 30px;
      color: var(--main-red);
      transition: var(--transition);
    }
    .service-card:hover .service-icon i {
      color: var(--white);
    }
    .service-card h3 {
      font-size: 16px;
      color: var(--dark);
      margin-bottom: 8px;
      font-weight: 600;
    }
    .service-card p {
      font-size: 13px;
      color: var(--text-gray);
      line-height: 1.5;
    }
    .party-row {
      display: flex;
      gap: 30px;
      align-items: center;
    }
    .party-left {
      flex: 6;
    }
    .party-right {
      flex: 4;
    }
    .party-list {
      list-style: none;
    }
    .party-list li {
      padding: 20px;
      margin-bottom: 15px;
      background: var(--white);
      border-radius: 10px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-left: 4px solid transparent;
    }
    .party-list li:hover {
      border-left-color: var(--main-red);
      transform: translateX(5px);
      box-shadow: var(--shadow-hover);
    }
    .party-list li h3 {
      color: var(--main-red);
      font-size: 18px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .party-list li h3 i {
      font-size: 16px;
    }
    .party-list li p {
      color: #555;
      font-size: 14px;
      line-height: 1.8;
    }
    .party-card {
      background: var(--white);
      border-radius: 10px;
      box-shadow: var(--shadow);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .party-card-img {
      width: 100%;
      height: 345px;
      overflow: hidden;
    }
    .party-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .party-card:hover .party-card-img img {
      transform: scale(1.05);
    }
    .party-card-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .party-card-title {
      color: var(--main-red);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .party-card-title i {
      font-size: 16px;
    }
    .party-card-desc {
      color: #555;
      font-size: 14px;
      line-height: 1.8;
      flex: 1;
    }
    .party-card::before {
      content: '';
      position: absolute;
      top: -15px;
      right: -15px;
      width: 80px;
      height: 80px;
      border: 4px solid var(--main-red);
      border-radius: 10px;
      z-index: -1;
      opacity: 0.2;
    }

    /* ========== 已修复：全媒矩阵 移动端强制长方形 ========== */
    .media-section {
      background: #;
      padding: 80px 0;
    }
    .media-wrap {
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    .media-scroll-container {
      display: flex;
      width: 200%;
      animation: mediaScroll 20s linear infinite;
    }
    .media-list {
      display: flex;
      list-style: none;
      width: 50%;
      align-items: center;
      padding: 0 10px;
      gap: 15px;
    }
    .media-item {
      flex: 1;
      min-width: 260px;
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      aspect-ratio: 4/2.5 !important;
      display: flex;
      flex-direction: column;
    }
    .media-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }
    .media-img {
      flex: 7;
      width: 100%;
      overflow: hidden;
    }
    .media-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .media-item:hover .media-img img {
      transform: scale(1.05);
    }
    .media-text {
      flex: 3;
      padding: 10px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .media-text h4 {
      font-size: 16px;
      color: var(--dark);
      font-weight: 600;
      margin-bottom: 5px;
    }
    .media-text p {
      font-size: 12px;
      color: var(--text-gray);
    }
    @keyframes mediaScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .media-wrap:hover .media-scroll-container {
      animation-play-state: paused;
    }

    footer {
      background: var(--main-red);
      color: var(--white);
      padding: 40px 0 20px;
      text-align: center;
    }
    .footer-info {
      margin-bottom: 20px;
    }
    .footer-info p {
      margin: 5px 0;
    }
    
    
    /* 新闻二级页面专属样式 */
    .news-page {
      padding: 40px 0;
      background: var(--gray);
      min-height: calc(100vh - 76px - 350px - 60px - 60px); /* 适配高度 */
    }
    .news-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    /* 左侧子栏目改为顶部横向导航 */
    .news-sidebar {
      background: var(--white);
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 20px 25px;
      margin-bottom: 30px;
    }
    .sidebar-title {
      display: none; /* 隐藏原侧边栏标题，整合到顶部 */
    }
    .news-submenu {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .news-submenu li {
      border-radius: 6px;
      transition: var(--transition);
    }
    .news-submenu li a {
      display: block;
      padding: 12px 20px;
      color: var(--dark);
      text-decoration: none;
      font-size: 15px;
      border-radius: 6px;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .news-submenu li a i {
      color: var(--main-red);
      font-size: 12px;
    }
    .news-submenu li:hover {
      background: rgba(199,0,11,0.05);
    }
    .news-submenu li a:hover {
      color: var(--main-red);
    }
    .news-submenu li.active {
      background: rgba(199,0,11,0.1);
    }
    .news-submenu li.active a {
      color: var(--main-red);
      font-weight: 600;
    }
    
    /* 新闻列表样式优化 */
    .news-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .news-item {
      background: var(--white);
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 25px;
      display: flex;
      gap: 25px;
      transition: var(--transition);
    }
    .news-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }
    .news-item-img {
      width: 220px;
      height: 150px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .news-item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .news-item:hover .news-item-img img {
      transform: scale(1.05);
    }
    .news-item-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .news-item-title {
      font-size: 20px;
      color: var(--dark);
      font-weight: 600;
      margin-bottom: 12px;
      transition: color 0.3s;
    }
    .news-item:hover .news-item-title {
      color: var(--main-red);
    }
    .news-item-desc {
      font-size: 15px;
      color: var(--text-gray);
      line-height: 1.8;
      margin-bottom: 18px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-item-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #999;
    }
    .news-item-date {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .news-item-date i {
      font-size: 12px;
      color: var(--main-red);
    }
    .news-item-more {
      color: var(--main-red);
      text-decoration: none;
      font-size: 14px;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .news-item-more:hover {
      color: var(--light-red);
      text-decoration: underline;
    }
    
    /* 分页样式 */
    .news-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
      gap: 10px;
    }
    .pagination-btn {
      padding: 10px 18px;
      border: 1px solid #ddd;
      border-radius: 6px;
      background: var(--white);
      color: var(--dark);
      text-decoration: none;
      transition: var(--transition);
      font-size: 15px;
    }
    .pagination-btn:hover {
      border-color: var(--main-red);
      color: var(--main-red);
    }
    .pagination-btn.active {
      background: var(--main-red);
      color: var(--white);
      border-color: var(--main-red);
    }
    .pagination-btn.disabled {
      color: #ccc;
      cursor: not-allowed;
      border-color: #eee;
    }
    .pagination-btn.disabled:hover {
      border-color: #eee;
      color: #ccc;
    }

    
    
    
    /* 路径与栏目名称样式 - 独立一行 */
    .breadcrumb-section {
      background: var(--white);
      padding: 20px 0;
      border-bottom: 1px solid #eee;
    }
    .breadcrumb-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .section-title {
      font-size: 24px;
      color: var(--main-red);
      font-weight: 700;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-title i {
      font-size: 20px;
    }
    .breadcrumb {
      font-size: 14px;
      color: var(--text-gray);
    }
    .breadcrumb a {
      color: var(--text-gray);
      text-decoration: none;
      transition: color 0.3s;
    }
    .breadcrumb a:hover {
      color: var(--main-red);
    }
    .breadcrumb span {
      margin: 0 8px;
      color: #999;
    }

    /* 新闻正文页面样式 */
    .news-detail-page {
      padding: 60px 0;
      background: var(--gray);
      min-height: calc(100vh - 76px - 350px - 60px - 60px);
    }
    .news-detail-container {
      width: 90%;
      max-width: 1250px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 40px;
    }
    
    /* 新闻标题区域 */
    .news-detail-header {
      text-align: center;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee;
    }
    .news-detail-title {
      font-size: 28px;
      color: var(--dark);
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.4;
    }
    .news-detail-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px;
      font-size: 14px;
      color: #999;
    }
    .news-detail-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .news-detail-meta i {
      font-size: 14px;
      color: var(--main-red);
    }
    
    /* 新闻正文内容 */
    .news-detail-content {
      font-size: 16px;
      color: #333;
      line-height:2;
    }
    .news-detail-content p {
      margin-bottom: 20px;
      text-align: justify;
    }
    .news-detail-content img {
      max-width: 100%;
      border-radius: 8px;
      margin: 25px auto;
      display: block;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .news-detail-content h3 {
      font-size: 20px;
      color: var(--main-red);
      margin: 30px 0 15px;
      font-weight: 600;
    }
    .news-detail-content ul {
      margin: 15px 0 20px 25px;
    }
    .news-detail-content li {
      margin-bottom: 10px;
    }
    .news-detail-content blockquote {
      border-left: 4px solid var(--main-red);
      padding: 15px 20px;
      background: #f9f9f9;
      border-radius: 0 6px 6px 0;
      margin: 20px 0;
      color: #555;
    }
    
    /* 新闻底部操作区 - 优化上下篇样式 */
    .news-detail-footer {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid #eee;
    }
    .news-detail-nav {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .news-detail-nav-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-gray);
      text-decoration: none;
      font-size: 15px;
      padding: 12px 20px;
      background: var(--gray);
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      transition: var(--transition);
      flex: 1;
      min-width: 280px;
      max-width: calc(50% - 10px);
    }
    .news-detail-nav-btn:hover {
      color: var(--white);
      background: var(--main-red);
      border-color: var(--main-red);
      box-shadow: 0 4px 12px rgba(199, 0, 11, 0.2);
      transform: translateY(-2px);
    }
    .news-detail-nav-btn i {
      font-size: 18px;
      transition: var(--transition);
    }
    .news-detail-nav-btn:hover i {
      transform: scale(1.1);
    }
    .news-detail-nav-prev i {
      margin-right: 5px;
    }
    .news-detail-nav-next {
      justify-content: flex-end;
    }
    .news-detail-nav-next i {
      margin-left: 5px;
    }
    
    /* 相关新闻推荐 */
    .related-news {
      margin-top: 50px;
      padding-top: 30px;
      border-top: 2px solid #f0f0f0;
    }
    .related-news-title {
      font-size: 20px;
      color: var(--main-red);
      font-weight: 600;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .related-news-title i {
      font-size: 16px;
    }
    .related-news-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }
    .related-news-item {
      padding: 15px;
      background: #f9f9f9;
      border-radius: 8px;
      transition: var(--transition);
    }
    .related-news-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      background: var(--white);
    }
    .related-news-title-link {
      font-size: 16px;
      color: var(--dark);
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.5;
    }
    .related-news-title-link:hover {
      color: var(--main-red);
    }
    .related-news-date {
      font-size: 12px;
      color: #999;
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .related-news-date i {
      font-size: 10px;
      color: var(--main-red);
    }
    
    
    
    
    

    @media (max-width: 1200px) {
      .service-box { grid-template-columns: repeat(7, 1fr); gap: 10px; }
      .service-icon { width: 60px; height: 60px; }
      .service-icon i { font-size: 26px; }
      .service-card h3 { font-size: 14px; }
      .service-card p { font-size: 12px; }
    }
    @media (max-width: 992px) {
      .banner { height: 450px; }
      .banner-text h1 { font-size: 32px; }
      .banner-text p { font-size: 16px; }
      .case-wrap { height: 350px; }
      .case-item { padding: 0 50px; }
      .case-btn { width: 40px; height: 40px; font-size: 18px; }
      .about-row { flex-direction: column; }
      .about-img img { height: 350px; }
      .about-links { justify-content: center; }
      .news-row { flex-direction: column; }
      .service-box { grid-template-columns: repeat(3, 1fr); gap: 15px; }
      .party-row { flex-direction: column; }
      .party-card-img { height: 200px; }
      .media-scroll-container { animation-duration: 25s; }
    }
    @media (max-width: 576px) {
      .news-left .big-img {height: 250px;}
      .logo img{width:80%}
      .service-box { grid-template-columns: repeat(2, 1fr); }
      .banner { height: 230px; }
      .banner-text h1 { font-size: 26px; }
      .case-wrap { height: 300px; }
      .case-item { padding: 0; }
      .case-btn { width: 35px; height: 35px; font-size: 16px; }
      .party-card-img { height: 180px; }
      .media-item { min-width: 240px; aspect-ratio: 4/2.5 !important; }
      .media-scroll-container { animation-duration: 30s; }
    }