 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }
        body {
            background: #f5f5f5;
            color: #333;
        }
   
        .header-wrap {
            background: #fff;
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
            max-width: 1168px;
            margin: 0 auto;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            justify-content: space-between;
        }
        .logo-text {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sscp-logo {
            font-size: 28px;
            font-weight: bold;
            color: #ff3300;
        }
        .company-name {
            font-size: 18px;
            font-weight: 500;
        }
        .search-box {
            flex: 1;
            max-width: 260px;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 8px 10px;
            border: 1px solid #ccc;
            border-right: none;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        .search-box button {
            background: #ff9900;
            color: #fff;
            border: none;
            padding: 0 18px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
        }
 
        .nav-menu {
            display: flex;
            overflow-x: auto;
            gap: 4px;
            padding-bottom: 6px;
        }
        .nav-item {
            padding: 8px 16px;
            background: #f7f7f7;
            border: 1px solid #eee;
            white-space: nowrap;
            cursor: pointer;
        }
        .nav-item.active {
            background: #ff9900;
            color: #fff;
        }
     
        .main-container {
            max-width: 1200px;
            margin: 0px auto;
            padding: 16px;
            /* background: #fff; */
        }
        .card {
            background: #fff;
            /* border-radius: 6px; */
            padding: 16px;
            margin-bottom: 16px;
            /* box-shadow: 0 1px 3px #eee; */
        }
        .card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
            color: #ff9900;
        }
 
        .banner-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            background: url(/template/pc/static/ban.jpg) no-repeat;
            padding: 20px;
            align-items: center;
            /* background-size: 100%; */
            background-color: #fff;
            background-position: right top;
        }
        .banner-left-img {
            width: 420px;
             
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }
.banner-left-img img{
            width: 100%;
           
        }
        .banner-right-text {
            flex: 1;
            min-width: 280px;
            line-height: 27px;
        }
 .banner-right-text p{
        margin:15px 0px
        }
        .banner-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
        }
 
        .news-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }
        @media (max-width:768px) {
            .news-list {
                grid-template-columns: 1fr;
            }
        }
        .news-item {
            display: flex;
            gap: 8px;
            padding: 6px 0;
            line-height: 35px;
            border-bottom: 1px solid #e8e8e8;
        }
        .news-hot {
            color: #f33;
        }
        .news-date {
            color: #999;
            font-size: 12px;
            margin-left: auto;
        }
   
        .brand-swiper {
            overflow: hidden;
            position: relative;
        }
        .brand-track {
            display: flex;
            gap: 30px;
            animation: scrollBrand 20s linear infinite;
        }
 
        .brand-swiper:hover .brand-track {
            animation-play-state: paused;
        }
        @keyframes scrollBrand {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        .brand-item img {
            height: 60px;
            object-fit: contain;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .brand-item img:hover {
            transform: scale(1.1);
        }
   
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .link-group a {
            color: #0066cc;
            text-decoration: none;
        }
   
        .footer-wrap {
            background: #222;
            color: #ccc;
            padding: 24px 16px;
            text-align: center;
            margin-top: 30px;
        }
        .footer-wrap p {
            line-height: 1.8;
            font-size: 14px;
        }
		
		
		
		
		 .container-xc {
            width: 100%;
            padding: 20px;
        }
 
        .breadcrumb-xc {
            display: flex;
            align-items: center;
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb-icon-xc {
            width: 24px;
            height: 24px;
            background: #ff7800;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 8px;
        }
        .breadcrumb-item-xc {
            color: #333;
            text-decoration: none;
        }
        .breadcrumb-split-xc {
            margin: 0 8px;
            color: #666;
        }
  
        .tab-wrap-xc {
            display: flex;
            gap: 40px;
            margin-bottom: 30px;
        }
        .tab-item-xc {
            font-size: 26px;
            color: #333;
            cursor: pointer;
            position: relative;
            padding: 6px 0;
        }
       
        .tab-item-xc.active::after {
          
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background-color: #ff7800;
        }
     
       
        .img-box-xc img {
          
        }
        
        
        
        
        
        
      
        .contact-container-lx {
            width: 100%;
            max-width: 1200px;
            padding: 45px;
            margin: 0 auto;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

    
 
        .company-name-lx {
            font-size: 28px;
            font-weight: bold;
            color: #222;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }

 
        .contact-item-lx {
            display: flex;
            align-items: center;
            font-size: 18px;
            color: #555;
            margin-bottom: 22px;
            line-height: 1.7;
        }

        .contact-label-lx {
            width: 90px;
            color: #444;
            font-weight: 600;
        }

        .contact-value-lx {
            color: #333;
            text-decoration: none;
            transition: color 0.25s ease;
        }

   
        .contact-value-lx:hover {
            color: #0066cc;
            text-decoration: underline;
        }  
        
        
        
        
        
      /* å¯¼èˆªæ æ•´ä½“å®¹å™¨ */
.nav-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 20px 0;
  background: #ffffff;
  flex-wrap: wrap;
}

/* åŽ»æŽ‰é»˜è®¤åˆ—è¡¨æ ·å¼ */
.nav-menu li {
  list-style: none;
  display: inline-block;
}

/* å¯¼èˆªæ–‡å­—é»˜è®¤æ ·å¼ */
.nav-menu .nav-link {
  font-size: 16px;
  color: #333333;
  text-decoration: none;
  padding: 8px 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

/* é¼ æ ‡æ‚¬æµ®æ•ˆæžœ */
.nav-menu .nav-link:hover {
  color: #0066cc;
}

/* å½“å‰é¡µé¢é«˜äº®æ ·å¼ */
.nav-menu .nav-link.active {
  color: #0066cc;
  font-weight: 600;
}

/* é«˜äº®ä¸‹æ–¹å°æ¨ªçº¿ï¼ˆå¯é€‰ï¼Œæ›´ç²¾è‡´ï¼‰ */
.nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #0066cc;
  border-radius: 1px;
}  
        

a {

  text-decoration: none;

  color: inherit;
 
  -webkit-tap-highlight-color: transparent;
}

 
a:hover {
  text-decoration: none;
 
}

 
a:active {
  color: inherit;
}

 
a:visited {
  color: inherit;
}

 
a:focus {
  outline: none;
}      
   ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li,
ol li {
  margin: 0;
  padding: 0;
 
}    
li {
 
  list-style: none;
 
  padding: 0;
 
  margin: 0;
}

 


      .card2 {
            background: #ffffff;
            /* border-radius: 5px; */
            /* box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08), 0 8px 24px -6px rgba(0, 0, 0, 0.02); */
            padding: 20px;
            margin-bottom: 2.5rem;
            transition: box-shadow 0.25s ease;
        }

        .card2:hover {
            box-shadow: 0 30px 50px -16px rgba(0, 0, 0, 0.12);
        }

        /* æ ‡é¢˜è¡Œï¼šå¸¦æ—¥æœŸ */
        .card-title {
            /* font-size: 2rem; */
            /* font-weight: 700; */
            /* letter-spacing: -0.02em; */
            line-height: 1.2;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: baseline;
            gap: 0.8rem 1.2rem;
            margin-bottom: 1.25rem;
            border-bottom: 2px solid #eef2f6;
            /* padding-bottom: 1rem; */
        }

        .card-title span:first-child {
            background: linear-gradient(145deg, #0b1e33, #1a3a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .date-right {
            font-size: 1rem;
            font-weight: 500;
            color: #64748b;
            background: #f1f4f9;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            letter-spacing: 0.3px;
            -webkit-text-fill-color: #475569;
            white-space: nowrap;
            border: 1px solid #e2e8f0;
        }

        /* æ­£æ–‡å†…å®¹ */
        .news-list2 {
            font-size: 16px;
            color: #1e293b;
        }

        .news-list2 p {
            margin-bottom: 1.5rem;
            /* background: #fafcff; */
            /* padding: 1.2rem 1.6rem; */
            /* border-radius: 20px; */
            /* border-left: 6px solid #3b7cff; */
            /* box-shadow: inset 0 1px 3px rgba(0,0,0,0.02); */
        }

        .news-list2 p:last-of-type {
            margin-bottom: 0;
        }

        .news-list2 p strong {
            color: #0f2b4b;
            font-weight: 600;
        }

        /* â€”â€” ç›¸å…³é“¾æŽ¥åŒºåŸŸï¼ˆ6ä¸ªæ ‡é¢˜ï¼‰ â€”â€” */
        .related-section {
            /* margin-top: 2.5rem; */
            /* padding-top: 1.8rem; */
            /* border-top: 2px solid #eef2f6; */
        }

        .related-section .related-label {
            font-size: 18px;
            font-weight: 600;
            color: #64748b;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .related-section .related-label::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #e2e8f0;
        }

        .related-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem 1.6rem;
        }

        .related-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem 0.2rem;
            border-bottom: 1px dashed #e9edf4;
            transition: all 0.15s ease;
        }

        .related-item:hover {
            border-bottom-color: #3b7cff;
            padding-left: 6px;
        }

        .related-item .num {
            font-weight: 600;
            color: #8aa3c9;
            font-size: 0.85rem;
            min-width: 24px;
        }

        .related-item a {
            text-decoration: none;
            color: #1e3f6e;
            font-weight: 500;
            font-size: 0.98rem;
            transition: color 0.15s;
        }

        .related-item a:hover {
            color: #1a5bbf;
            text-decoration: underline;
        }

        /* å“åº”å¼ */
        @media (max-width: 640px) {
            .card2 {
                padding: 1.5rem 1.2rem;
            }
            .card-title {
                font-size: 1.6rem;
                flex-direction: column;
                align-items: flex-start;
            }
            .date-right {
                align-self: flex-start;
                font-size: 0.8rem;
            }
            .related-grid {
                grid-template-columns: 1fr;
                gap: 0.4rem;
            }
        }

        @media (max-width: 430px) {
            .card-title {
                font-size: 1.4rem;
            }
        }
        
        .main-container {
    max-width: 1200px;
    margin: 0px auto;
 
  
}
        
        
        
        
        
        
        
        
        
        
        
        
         .container-xc {
      max-width: 1200px;
      width: 100%;
      background: #ffffff;
      border-radius: 32px;
      box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08), 0 8px 24px -6px rgba(0, 0, 0, 0.02);
      padding: 28px 24px 40px;
      transition: padding 0.2s ease;
    }  
        
      
 
    .breadcrumb-xc {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 4px;
      font-size: 0.9rem;
      color: #64748b;
      padding-bottom: 18px;
      border-bottom: 1px solid #eef2f6;
      margin-bottom: 24px;
    }

    .breadcrumb-xc .crumb {
      color: #1e293b;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .breadcrumb-xc .crumb:hover {
      color: #2563eb;
    }

    .breadcrumb-xc a:not(.crumb) {
      color: #475569;
      text-decoration: none;
      transition: color 0.2s;
    }

    .breadcrumb-xc a:not(.crumb):hover {
      color: #2563eb;
      text-decoration: underline;
    }

    .breadcrumb-xc > * {
      display: inline-block;
    }
 
    .tab-wrap-xc {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 12px;
      margin-bottom: 32px;
      padding: 4px 0 4px 2px;
    }

    .tab-item-xc {
      background: #f1f5f9;
      border-radius: 40px;
      transition: all 0.2s;
      font-size: 0.95rem;
      line-height: 1;
      box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    }

    .tab-item-xc a {
      display: block;
      padding: 10px 22px;
      color: #1e293b;
      text-decoration: none;
      font-weight: 500;
      letter-spacing: 0.3px;
      border-radius: 40px;
      transition: all 0.2s;
    
    }

  
    .tab-item-xc:hover {
      background: #e2e8f0;
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    }

    .tab-item-xc a:hover {
      color: #0f172a;
    }

 
    .tab-item-xc.active{
      background: #ffffff;
      color: #2563eb;
     box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
       
    } .tab-item-xc.active a{
     
      color: #2563eb;
     
      font-weight: 600;
    }

  
    .img-box-xc {
  
      overflow: hidden;
      background: #f1f5f9;
   
      transition: all 0.25s ease;
   
    }

    .img-box-xc img {
      width: 100%;
    }

 
    @media (hover: hover) {
      .img-box-xc:hover {
        box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.10);
        transform: translateY(-4px);
      }
      .img-box-xc:hover img {
        transform: scale(1.03);
        filter: brightness(1.02) contrast(1.04);
      }
    }

 
    .container-xc {
      display: flex;
      flex-direction: column;
    }

 
    .container-xc .img-box-xc {
      display: flex;   
    }

 
    .container-xc {
      display: block;   
    }
 
    .container-xc {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px 20px;
      background: transparent;
      box-shadow: none;
      padding: 0;
      border-radius: 0;
      margin-bottom: 20px;
    }

 
    .container-xc {
      display: flex;
      flex-direction: column;
      background: #ffffff;
  
      padding: 28px 24px 40px;
    }
 
    .container-xc {
      display: flex;
      flex-direction: column;
    }
 
    .container-xc .img-box-xc {
      flex: 0 0 calc(33.333% - 14px);
      max-width: calc(33.333% - 14px);
      /* margin: 0 7px 14px 7px; */
      aspect-ratio: 4 / 3;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 2px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    
    .container-xc {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: stretch;
      gap: 16px 16px;   
      background: #ffffff;
 
      flex-direction: row;
    }

 
    .breadcrumb-xc,
    .tab-wrap-xc {
      flex: 0 0 100%;
      max-width: 100%;
    }

 

   
    .container-xc .img-box-xc {
      margin: 0;
    }

  
    .breadcrumb-xc {
      padding-bottom: 16px;
      margin-bottom: 8px;
      border-bottom: 1px solid #eef2f6;
    }

    .tab-wrap-xc {
      margin-bottom: 20px;
      padding: 4px 0;
    }

   
    @media screen and (max-width: 768px) {
      .main-container {
    
    padding: 0px;
   
}

      .container-xc {
        padding: 20px 16px 32px;
        border-radius: 24px;
        gap: 12px;
      }

      .breadcrumb-xc {
        font-size: 0.8rem;
        padding-bottom: 12px;
        margin-bottom: 4px;
        flex-wrap: wrap;
      }

      .tab-wrap-xc {
        gap: 8px;
        margin-bottom: 16px;
      }

      .tab-item-xc a {
        padding: 8px 16px;
        font-size: 0.85rem;
      }

      .img-box-xc {
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
        min-width: 140px;
        aspect-ratio: 4 / 3;
        border-radius: 16px;
      }

      
      @media screen and (max-width: 480px) {
        .container-xc {
          padding: 16px 12px 24px;
          gap: 12px;
        }

        .img-box-xc {
          flex: 1 1 100%;
          max-width: 100%;
          aspect-ratio: 4 / 3;
          border-radius: 16px;
        }

        .tab-item-xc a {
          padding: 6px 14px;
          font-size: 0.8rem;
        }

        .breadcrumb-xc {
          font-size: 0.75rem;
        }
      }
    }

 
    @media screen and (min-width: 769px) and (max-width: 1024px) {
      .img-box-xc {
        flex: 1 1 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
        aspect-ratio: 4 / 3;
      }
    }

 
    @media screen and (min-width: 1025px) {
      .img-box-xc {
        flex: 1 1 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
        aspect-ratio: 4 / 3;
      }
    }
 
    @media screen and (max-width: 360px) {
      .container-xc {
        padding: 12px 8px 20px;
        gap: 10px;
      }
      .tab-item-xc a {
        padding: 5px 10px;
        font-size: 0.7rem;
      }
    }

 

 
    .breadcrumb-xc .crumb + * {
      margin-left: 2px;
    }

 
    .breadcrumb-xc > :not(:last-child)::after {
      /* content: "â€º"; */
      margin: 0 6px 0 8px;
      color: #94a3b8;
      font-weight: 300;
    }

    /* ç§»é™¤æœ€åŽä¸€ä¸ªç®­å¤´ */
    .breadcrumb-xc > :last-child::after {
      display: none;
    }

 
    .breadcrumb-xc a {
      display: inline-flex;
      align-items: center;
    }

  
    .breadcrumb-xc {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

  
    .breadcrumb-xc .crumb + a::before,
    .breadcrumb-xc a + a::before {
 
      margin: 0 6px 0 2px;
      color: #94a3b8;
      font-weight: 300;
    }
 
    .breadcrumb-xc {
      font-size: 0.9rem;
    }

    .breadcrumb-xc .crumb {
      color: #1e293b;
    }   
        
        
           .title-main {
            text-align: center;
            font-size: 32px;
            color: #222;
            margin-bottom: 40px;
            font-weight: 600;
        }
        /* 一行3列网格 */
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .logo-card {
            background: #fff;
            padding: 10px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.25s ease;
        }
        .logo-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
 
        .img-wrapper {
            width: 100%;
            aspect-ratio: 4 / 3; /* 固定4:3比例 */
            overflow: hidden;
            border-radius: 2px;
            margin-bottom: 16px;
        }
        .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 铺满容器，居中裁剪 */
            object-position: center; /* 始终居中 */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .card-title {
            font-size: 20px;
            color: #1a1a1a;
            font-weight: 500;
        }
        /* 移动端适配 */
        @media (max-width: 992px) {
            .logo-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .logo-grid {
                grid-template-columns: 1fr;
            }
            .title-main {
                font-size: 24px;
            }
        }