/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans SC', sans-serif;
        }a {
	text-decoration: none;
	color: #888;
}
      a:hover {}  
        :root {
            --primary-blue: #0056b3;
            --secondary-blue: #007bff;
            --light-blue: #e6f0ff;
            --dark-blue: #003d82;
            --accent-blue: #4da6ff;
            --text-dark: #333;
            --text-light: #666;
            --text-white: #fff;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
        }
        
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        
        .container {
            max-width: 100%;
            padding: 0 0px;
        }
        
        /* 顶部导航 */
        header {
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            color: var(--text-white);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.4rem;
            font-weight: 700;
        }
        
        .logo i {
            margin-right: 8px;
            color: var(--accent-blue);
            font-size: 1.2rem;
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100%;
            background: var(--primary-blue);
            z-index: 1000;
            transition: all 0.4s ease;
            padding-top: 60px;
            box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 20px;
        }
        
        .mobile-nav ul li {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 15px;
        }
        
        .mobile-nav ul li:last-child {
            border-bottom: none;
        }
        
        .mobile-nav ul li a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 8px 0;
        }
        
        .mobile-nav ul li a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .menu-toggle {
            background: transparent;
            border: none;
            color: var(--text-white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* 幻灯片 */
        .slider-container {
            height: 250px;
            position: relative;
            overflow: hidden;
            margin: 0px 0;
            border-radius: 0px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: var(--text-white);
        }
        
        .slide-title {
            font-size: 1.4rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .slide-desc {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background: var(--accent-blue);
        }
        
        /* 快捷图标 */
        .quick-icons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 20px 0;
        }
        
        .icon-card {
            background: var(--text-white);
            border-radius: 4px;
            text-align: center;
            padding: 15px 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .icon-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,86,179,0.2);
        }
        
        .icon-card i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
            background: var(--light-blue);
            width: 70px;
            height: 70px;
            line-height: 70px;
            border-radius: 50%;
            display: inline-block;
        }
        
        .icon-card h3 {
            font-size: 1rem;
            color: var(--text-dark);
            margin-top: 5px;
        }
        
        /* 产品中心 */
        .section {
            background: var(--text-white);
            border-radius: 0px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }
        
        .section-title {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-blue);
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            background: var(--light-blue);
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            border-radius: 50%;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .product-card {
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,86,179,0.15);
        }
        
        .product-img {
            height: 200px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-name {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 5px;
            color: var(--text-dark);
	text-align: center;
        }
        

        
        /* 企业介绍 */
        .about-content {
            display: flex;
            flex-direction: column;
        }
        
        .about-text {
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-dark);
        }
        
        .about-image {
	border-radius: 6px;
	overflow: hidden;
	height: 200px;
	box-shadow: 0 4px 5px rgba(0,0,0,0.1);

        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
   
        
        /* 联系我们 */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 15px;
        }
        
        .contact-card {
            background: var(--light-blue);
            border-radius: 0px;
            padding: 15px;
            text-align: center;
        }
        
        .contact-card i {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .contact-card h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--primary-blue);
        }
        
        .contact-card p {
            font-size: 0.9rem;
            color: var(--text-dark);
        }
        
        /* 底部固定栏 */
        .fixed-bottom {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            background: var(--text-white);
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 100;
        }
        
        .fixed-btn {
            flex: 1;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
            color: var(--text-white);
            background: var(--primary-blue);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .fixed-btn:first-child {
            background: var(--secondary-blue);
        }
        
        .fixed-btn:hover {
            background: var(--dark-blue);
        }
        
        /* 版权信息 */
        .copyright {
	text-align: center;
            color: var(--text-light);
	font-size: 0.85rem;
            background: var(--text-white);
	padding-top: 25px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
        }
        
        .copyright p {
            margin: 5px 0;
        }
        
        .copyright .company-name {
            color: var(--primary-blue);
            font-weight: bold;
        }
        
        /* 响应式调整 */
        @media (min-width: 1068px) {
            .container {
                max-width: 1050px;
                margin: 0 auto;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .about-content {
                flex-direction: row;
                gap: 3px;
            }
            
            .about-text {
                flex: 1;
            }
            
            .about-image {
                flex: 1;
                height: auto;
            }
        }
		
		/* CSS Document */
		 /* 联系我们 */
        .page-header {
            text-align: center;
            padding: 20px 20px 0px;
            margin-bottom: 30px;
        }
        
        .page-title {
            font-size: 2.2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .page-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* 联系信息卡片 */
        .contact-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        @media (min-width: 768px) {
            .contact-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .contact-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .contact-card {
            background: var(--text-white);
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,86,179,0.15);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        
        .contact-card h3 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .contact-card p {
            color: var(--text-light);
            font-size: 1.05rem;
            margin-bottom: 5px;
        }
        
        .contact-card a {
            color: var(--secondary-blue);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-card a:hover {
            color: var(--dark-blue);
            text-decoration: underline;
        }
		
		
		    /* 公司概述 */
        .company-overview {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .overview-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .overview-image {
            border-radius: 10px;
            overflow: hidden;
            height: 300px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .overview-image:hover img {
            transform: scale(1.05);
        }
        
   
        
        /* 企业文化 */
        .culture-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .culture-card {
            background: var(--light-blue);
            border-radius: 10px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .culture-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-blue);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .culture-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .culture-title {
            font-size: 1.3rem;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }
     
		      /* 分页器  */ 
        .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0 20px;list-style-type: none;
        }
        
        .page-numbers {
            display: flex;
            list-style: none;
        }
        
        .page-numbers li {
            margin: 0 4px;
        }
        
        .page-numbers a {
            display: block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 8px;
            background: var(--text-white);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .page-numbers a:hover,
        .page-numbers a.active {
            background: var(--primary-blue);
            color: var(--text-white);
        }
        
        .page-numbers a.prev,
        .page-numbers a.next {
            width: auto;
            padding: 0 15px;
        }

      
        /* 面包屑导航 */
        .breadcrumb {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 10px;
            border-bottom: 2px solid var(--light-blue);
	font-size: 16px;
            color: var(--text-light);
	padding-top: 15px;
	padding-left: 10px;
        }
        
        .breadcrumb a {font-size: 16px;
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        .breadcrumb span {
            margin: 0 8px;
            color: #333;
        }
            
			
			      /* 新闻内容 */
        .news-content-wrapper {
            background: var(--text-white);
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin: 20px 0 20px;
        }
        
        .news-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid var(--border-color);
        }
        

        
        .news-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-blue);
            line-height: 1.4;
        }
        
  
  
        .article-content {
            padding: 30px;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        
        .article-content p {
	margin-bottom: 25px;
	text-align: justify;
	
        }
 .news-date {font-size: 14px;}
 
 .nyxqnews_leftup {
	margin-top: 10px;
	margin-bottom: 15px;
	margin-left: 30px;
}

 <!-- 合作流程 -->


.he{}
.he h2{
	font-size:34px;
	line-height:60px;
	font-weight:bold;
	text-align: center;
	color: #0056b3;
}
.he p{ font-size:16px; color:#888; text-align: center;}
.clear {clear:both; }

      
	  
	    .quick-icons4 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 10px 0;
        }
        
   .icon-card4 {
	color: #333;
    background: var(--text-white);
	border-radius: 4px;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	margin-left: 2px;
	margin-top: 10px;
	padding-bottom: 10px;
        }       
        .icon-card4:hover {background-color: #e6f0ff;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,86,179,0.2);
        }
		.shi {

}