 * {
            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;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .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;
            min-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: 16px;
            font-weight: bold;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
            color: #d00;
        }
 
        .banner-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            background: linear-gradient(90deg, #fff, #fffbe0);
            padding: 20px;
            align-items: center;
        }
        .banner-left-img {
            width: 120px;
            height: 120px;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }
        .banner-right-text {
            flex: 1;
            min-width: 280px;
        }
        .banner-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
        }
 
        .news-list {
            display: grid;
            grid-template-columns: 1fr 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: 120px;
            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 {
            color: #ff7800;
        }
        .tab-item-xc.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background-color: #ff7800;
        }
     
        .img-box-xc {
            width: 140px;
            height: 140px;
            border: 1px solid #e5e5e5;
            padding: 6px;
        }
        .img-box-xc img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        
        
        
        
        
      
        .contact-container-lx {
            width: 100%;
            max-width: 800px;
            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: center;
  align-items: center;
  gap: 40px;
  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;
 
  
}
        
        