        :root {
            --primary-color: #0078d4;
            --secondary-color: #6b69d6;
            --background-color: #f3f2f1;
            --surface-color: #ffffff;
            --text-primary: #323130;
            --text-secondary: #605e5c;
            --accent-color: #da3b01;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
		}
		
		a {
	  text-decoration: none;
	  color:#000;
	}

/*LOGO电脑与手机切换显示*/		
	.desktop-logo {
    display: block;
}
.mobile-logo {
    display: none;
}

@media (max-width: 768px) {
    .desktop-logo {
        display: none;
    }
    .mobile-logo {
        display: block;
    }
}	
/*LOGO电脑与手机切换显示end*/	


        body {
            background-color: var(--background-color);
            color: var(--text-primary);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航栏样式 */
        header {
            background-color: var(--surface-color);
            box-shadow: var(--shadow);
			/*box-shadow: 5px 5px 10px #888888;*/
            position: sticky;
            top:0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }

        .logo {
            /*display: flex;*/
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .logo i {
            font-size: 1.8rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .nav-links a:hover, .nav-links a.active {
            background-color: rgba(0, 120, 212, 0.1);
            color: var(--primary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-primary);
            z-index: 101;
        }

        /* 主要内容区域 */
        main {
            padding:0;
        }

        /* 幻灯片样式 */
   .hero {
    /* 上下外边距30px，左右外边距0，创建垂直方向的间距 */
    margin: 0 0;
    /* 使用CSS变量定义边框圆角，保持样式一致性便于维护 */
    /*border-radius: var(--border-radius);*/
    /* 隐藏超出容器的内容，配合圆角实现完整的圆角效果 */
    overflow: hidden;
    /* 使用CSS变量添加阴影效果，增强元素立体感 */
    box-shadow: var(--shadow);
    /* 设置定位上下文，为子元素的绝对定位提供参考 */
    position: relative;
    /* 固定hero区域的高度为500px */
    height: 600px;
}

        .slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 0 50px;
        }

        .slide-content {
            max-width: 600px;
            background-color: rgba(255, 255, 255, 0.85);
            padding: 30px;
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
        }

        .slide-content h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .slide-content p {
            margin-bottom: 20px;
            color: var(--text-secondary);
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #106ebe;
            transform: translateY(-2px);
        }
		
		
		        .btn1 {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 3px 5px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn1:hover {
            background-color: #106ebe;
            transform: translateY(-2px);
        }

        .slide-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slide-dot.active {
            background-color: white;
            transform: scale(1.2);
        }

        /* 内容区域样式 - 居中显示 */
        .section {
            padding: 80px 0;
        }
		
		  .section1 {
            padding:0;
			margin:0;
        }

        /* 交替背景色 */
        .section:nth-child(even) {
            background-color: var(--surface-color);
		   
        }

        .section:nth-child(odd) {
            /*background-color: var(--background-color);*/
			background-color:#f3f2f0;/*蓝色#eff6ff;*//*#f3f2f0灰色*/
		
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--primary-color);
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* 特色服务 - 居中 */
        .features-container {
            display: flex;
            justify-content: center;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            width: 100%;
        }

        .feature-card {
            background-color: var(--surface-color);
            border-radius: var(--border-radius);
            padding: 35px 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        /* 产品展示 - 居中 */
        .products-container {
            display: flex;
            justify-content: center;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            width: 100%;
        }

        .product-card {
            background-color: var(--surface-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .product-image {
		    width:400px;
			height:230px;	
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 3.5rem;
        }
		.product-image img{
			
		    width:300px;
			height:185px;
			text-align:center;	
			
			
		}
		
		
		  .product-image-lei {
		    width:400px;
			height:219px;	
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 3.5rem;
        }
		.product-image-lei img{
			
		    width:180px;
			height:209px;
			text-align:center;	
			
			
		}
		
		
		

        .product-content {
            padding: 25px 20px;
        }

        .product-content h3 {
         /*   margin-bottom: 12px;
            font-size: 1.2rem;*/
			/*background:#eeeeee;*/
			color:#333;
			
		/*	box-shadow: 3px 2px 10px #888888;
			 border-radius: 8px;*/
        }
		
		
		
		
		
		
		
		
	.product-content123 {
  margin: 10px 0;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  margin-left:10px;
  margin-right:10px;
}

.product-content123:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transform: translateY(-2px);
}

.product-content123 h3 {
  margin: 0;
  font-family: 'Arial', 'Microsoft YaHei', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.product-content123 h3 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 5px 0;
}

.product-content123 h3 a:hover {
  color:#0080FF;

}

/* 如果需要添加图标 */
.product-content123 h3 a::before {
  content: "▸";
  margin-right: 8px;
  color: #95a5a6;
  font-size: 14px;
}	
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		

        .product-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .price {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

     .yz{
           
			box-shadow: 5px 5px 10px #888888;
        }

        /* 关于我们 - 居中 */
        .about-container {
            display: flex;
            justify-content: center;
			  
        }
		
		.section-about{/*不要的*/
		box-shadow: 5px 5px 10px #888888;
		
		}
		
		

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1200px;
            width: 100%;
        }

        .about-text h2 {
            margin-bottom: 25px;
            color: var(--primary-color);
            font-size: 2rem;
        }

        .about-text p {
            margin-bottom: 20px;
        }

.about-image img {
    width: 100%;       /* 图片宽度占父容器的100% */
    max-width: 600px;  /* 最大宽度不超过600px，保持原设计上限 */
    height: auto;      /* 高度自动计算，保持宽高比 */
    border-radius: 8px;
    box-shadow: var(--shadow);
	   transition: transform 1s ease; /* 延长过渡时间到1秒，使放大更缓慢 */
    transform-origin: center; /* 从中心位置开始放大 */
}
.about-image img:hover {
    transform: scale(1.05); /* 鼠标经过时放大5% */
}

        .team-container {
            display: flex;
            justify-content: center;
        }

        .team {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
            max-width: 1200px;
            width: 100%;
        }

        .team-member {
            text-align: center;
            background-color: var(--surface-color);
            border-radius: var(--border-radius);
            padding: 30px 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }

        .member-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e1dfdd, #f3f2f1);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 3rem;
            box-shadow: var(--shadow);
        }

        .team-member h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .team-member p {
            color: var(--text-secondary);
        }

        /* 公司新闻样式 */
        .news-container {
            display: flex;
            justify-content: center;
        }

        .news {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 10px;
            max-width: 1200px;
            width: 100%;
        }

        .news-card {
            background-color: var(--surface-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .news-image {
            height: 220px;
            background: linear-gradient(135deg, #e1dfdd, #f3f2f1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 3.5rem;
        }

        .news-content {
            padding: 25px;
        }

        .news-date {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: block;
        }

        .news-content h4 {
            margin-bottom: 15px;
           
        }

        .news-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        /* 项目样式 */
        .projects-container {
            display: flex;
            justify-content: center;
        }

        .projects {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            width: 100%;
        }

        .project-card {
            background-color: var(--surface-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            height: 220px;
            background: linear-gradient(135deg, #e1dfdd, #f3f2f1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 3.5rem;
        }

        .project-content {
            padding: 25px;
        }

        .project-status {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .status-completed {
            background-color: rgba(0, 128, 0, 0.1);
            color: green;
        }

        .status-ongoing {
            background-color: rgba(255, 165, 0, 0.1);
            color: orange;
        }

        .status-planned {
            background-color: rgba(0, 120, 212, 0.1);
            color: var(--primary-color);
        }

        .project-content h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .project-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        /* 页脚样式 */
        footer {
            background-color: var(--surface-color);
            padding: 60px 0 30px;
            margin-top: 0;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            margin-bottom: 25px;
            color: var(--primary-color);
            font-size: 1.4rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background-color: rgba(0, 120, 212, 0.1);
            border-radius: 50%;
            color: var(--primary-color);
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color:#f3f2f0;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                gap: 0;
                z-index: 99;
            }

            .nav-links.show {
                display: flex;
            }

            .nav-links li {
                margin-bottom: 10px;
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 12px 15px;
                width: 100%;
            }

            .mobile-menu-btn {
                display: block;
            }

            .slide {
                padding: 0 20px;
            }

            .slide-content h2 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 400px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .features, .products, .team, .news, .projects {
                grid-template-columns: 1fr;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		/* 二级菜单样式 - 仅桌面端 */
.nav-links li {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    list-style: none; /* 移除列表样式 */
}

.submenu li {
    width: 100%;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: #323130;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.submenu a:hover {
    background: rgba(0, 120, 212, 0.1);
    color: #0078d4;
}

.nav-links li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 确保桌面端没有小数点 */
.submenu, .submenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 移动端隐藏二级菜单 */
@media (max-width: 768px) {
    .submenu {
        display: none !important;
    }
    
    /* 修复移动菜单显示问题 */
    .nav-links.show {
        display: flex !important;
        flex-direction: column;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* 移除移动端的箭头指示 */
    .nav-links li.has-submenu > a::after {
        display: none;
    }
}

/* 修复产品展示链接样式 */
.nav-links li.has-submenu > a {
    text-decoration: none;
    color: inherit;
}

.nav-links li.has-submenu > a:hover {
    color: #0078d4;
}














/*---------------------------------------------------关于我们---------------------------------------------------------*/




        /* 公司介绍 */
.about-container {
    display: flex;
    justify-content: center; /* 水平居中容器 */
}

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1200px;
            width: 100%;
        }

.about-text h2 {
    margin-bottom: 25px; /* 底部间距 */
    color: var(--primary-color); /* 主色调 */
    font-size: 2rem; /* 字体大小 */
}

.about-text p {
    margin-bottom: 20px; /* 段落底部间距 */
}

.about-image img {
    width: 100%;       /* 图片宽度占父容器的100% */
    max-width: 600px;  /* 最大宽度不超过600px，保持原设计上限 */
    height: auto;      /* 高度自动计算，保持宽高比 */
    border-radius: 8px;
    box-shadow: var(--shadow);
	   transition: transform 1s ease; /* 延长过渡时间到1秒，使放大更缓慢 */
    transform-origin: center; /* 从中心位置开始放大 */
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4等分网格布局 */
    gap: 30px; /* 网格间距 */
    margin-top: 50px; /* 顶部外边距 */
}

.stat-card {
    background: var(--surface-color); /* 卡片背景色 */
    border-radius: var(--border-radius); /* 圆角边框 */
    padding: 30px 20px; /* 内边距 */
    text-align: center; /* 文字居中 */
    box-shadow: var(--shadow); /* 阴影效果 */
    transition: var(--transition); /* 过渡动画 */
}

.stat-card:hover {
    transform: translateY(-5px); /* 悬停上移效果 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12); /* 悬停阴影加深 */
}

.stat-number {
    font-size: 3rem; /* 数字字体大小 */
    font-weight: 700; /* 数字字体粗细 */
    color: var(--primary-color); /* 数字颜色 */
    margin-bottom: 10px; /* 底部间距 */
}

.stat-label {
    color: var(--text-secondary); /* 标签文字颜色 */
    font-size: 1.1rem; /* 标签字体大小 */
}






		
		
		        /* 横幅图片样式 */
        .banner {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
            margin-bottom: 0px;
        }
        .banner400 {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
            margin-bottom: 0px;
        }
        .banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }




        .banner:hover .banner-image {
            transform: scale(1.03);
        }

    .banner400:hover .banner-image {
            transform: scale(1.03);
        }

        .banner-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0 60px;
            /*background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);*/
            
        }
		
		    .banner-content {

        justify-content: center;
        align-items: center;

    }

        .banner-subtitle {
            font-size: 1.2rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }
		.coco{
			color:#F5F5F5;
		text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5); /* 右下模糊阴影 */
		}

        .banner-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .banner-description {
            font-size: 1.1rem;
            max-width: 500px;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
        }
		
		/*---------------------------------------------------关于我们end---------------------------------------------------------*/








        /* --------------------------------产品展示-----------------------------------------------------区域 */
        .chanpin-fenleiquyu {
			margin-top:50px;
            margin-bottom: 40px;
			
        }

        .fenlei-lvxingqi {
			margin-top:15px;
			margin-bottom:15px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }



.fenlei-lvxingqi button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 1rem;
    color: #323232;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 1px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fenlei-lvxingqi button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 120, 215, 0.2);
	color:#0080FF;
	font-weight: bold;
}

.fenlei-lvxingqi button.huoyue {
    background: linear-gradient(135deg, #0078D4 0%, #0066B4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 120, 212, 0.3),
        0 4px 12px rgba(0, 120, 212, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.fenlei-lvxingqi button:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 1px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.1s ease;
}

.fenlei-lvxingqi button.huoyue:hover {
    background: linear-gradient(135deg, #0086F0 0%, #0078D4 100%);
    box-shadow: 
        0 8px 24px rgba(0, 120, 212, 0.4),
        0 6px 16px rgba(0, 120, 212, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}















        /* 产品网格 */
        .chanpin-wangge {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .chanpin-zhengjian {
            background-color: var(--surface-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .chanpin-zhengjian:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .chanpin-zhengjian img {
            width: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .chanpin-zhengjian:hover img {
            transform: scale(1.1);
        }

        .pinpai-biaozhi {
	position: absolute;       /* 绝对定位，相对于最近的定位父元素 */
	top: 10px;               /* 距离顶部10像素 */
	right: 10px;             /* 距离右侧10像素 */
	background-color: #3498db; /* 背景颜色为蓝色 */
	color: white;            /* 文字颜色为白色 */
	padding: 5px 10px;       /* 内边距：上下5px，左右10px */
	border-radius: 4px;      /* 圆角半径为4像素 */
	font-size: 15px;         /* 字体大小15像素 */
	font-weight: bold;       /* 字体加粗 */
	letter-spacing: 1px;     /* 字母间距1像素 */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 阴影效果：x偏移0，y偏移2px，模糊4px，透明度20%的黑色 */
	z-index: 10;            /* 堆叠顺序为10，确保显示在最上层 */
	display: none;
}
        

.chanpin-zhengjian:hover .pinpai-biaozhi {
    display: block;
}
		

        .chanpin-zhengjian h3 {
            padding: 20px;
            margin: 0;
            font-size: 1.2rem;
            color: var(--text-primary);
        }

        /* 分页样式 */
        .fenye-liebiao {
            margin: 40px 0;
        }

        .fenye {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .fenye a, .fenye strong {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .fenye a {
            background-color: var(--surface-color);
            color: var(--text-primary);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .fenye a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .fenye strong {
            background-color: var(--primary-color);
            color: white;
        }

        .fenye .dianhao {
            color: var(--text-secondary);
            padding: 0 5px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .daohang-lianjie {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--surface-color);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                gap: 0;
            }

            .daohang-lianjie.xianshi {
                display: flex;
            }

            .daohang-lianjie li {
                margin-bottom: 10px;
                width: 100%;
            }

            .daohang-lianjie a {
                display: block;
                padding: 12px 15px;
                width: 100%;
            }

            .shouji-caidan-anniu {
                display: block;
            }

            .hengfu-neirong {
                padding: 0 30px;
            }

            .hengfu-fuziti {
                font-size: 1rem;
            }

            .hengfu-zhuti {
                font-size: 2rem;
            }

            .hengfu-miaoshu {
                font-size: 1rem;
                max-width: 100%;
            }

            .fenlei-lvxingqi {
                gap: 10px;
            }

            .fenlei-lvxingqi button {
                padding: 8px 16px;
                font-size: 0.9rem;
            }

            .chanpin-wangge {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .chanpin-wangge {
                grid-template-columns: 1fr;
            }

            .hengfu-neirong {
                padding: 0 20px;
            }

            .hengfu-zhuti {
                font-size: 1.8rem;
            }

            .fenlei-lvxingqi {
                flex-direction: column;
                align-items: center;
            }

            .fenlei-lvxingqi button {
                width: 200px;
            }
        }


    /* --------------------------------产品展示-----------------------------------------------------区域 */
	
	
	
	    /* --------------------------------单个查看产品----------------------------------------------------- */
		
		
		/* 主容器样式 */
.product-page-header {
    position: relative;  /* 相对定位 */
}

.product-header-image {
    width: 100%;  /* 图片宽度100% */
    height: auto; /* 高度自适应 */
    display: block; /* 块级显示 */
}

.product-container {
    width: 100%;  /* 容器宽度100% */
    max-width: 1200px; /* 最大宽度限制 */
    margin: 0 auto; /* 居中显示 */
    padding: 0 15px; /* 内边距 */
}

/* 产品展示区 - 主卡片 */
.product-main-card {
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 阴影效果 */
    background: #FFFFFF; /* 白色背景 */
    display: grid; /* 网格布局 */
    place-items: center; /* 内容居中 */
}

/* 产品图片基础样式 */
.product-main-card img {
    transition: transform 0.9s ease; /* 缩放动画效果 */
    max-width: 100%; /* 最大宽度限制 */
    height: auto; /* 高度自适应 */
}

/* 图片悬停效果 */
.product-main-card img:hover {
    transform: scale(1.1); /* 悬停放大1.1倍 */
}






/* 产品参数表格容器 */
.product-params-container {
    width: 100%; /* 宽度100% */
    overflow-x: auto; /* 允许横向滚动 */
	margin-left:10px;
	margin-right:10px;
}

/* 参数表格样式 */
.product-params-container table {
    border-collapse: collapse; /* 边框合并 */
    width: 90% !important; /* 固定宽度 */
	/*table-layout: auto;*//*列宽度由单元格内容设定*/
    font-family: Arial, sans-serif; /* 字体设置 */
    margin: 20px auto; /* 外边距 */
    border-radius: 5px; /* 圆角 */
    overflow: hidden; /* 隐藏溢出内容 */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* 阴影效果 */
	text-align:center !important;
}

/* 表头单元格 */
.product-params-container th {
    background-color: #f2f2f2; /* 浅灰背景 */
    font-weight: bold; /* 加粗文字 */
}

/* 普通单元格 */
.product-params-container td {
    border: 1px solid #ccc; /* 边框样式 */
    padding: 8px; /* 内边距 */
    text-align: center; /* 文字居中 */
    text-overflow: ellipsis; /* 文字溢出显示省略号 */
}

/* 表格隔行变色 */
.product-params-container tr:nth-child(even) {
    background-color: #f9f9f9; /* 浅色背景 */
}

/* 特殊备注行样式 */
/*.product-params-container tr:last-child td {
    text-align: left;   
    font-size: 14px;   
    padding-top: 10px;  
}
 */












/* 产品信息展示框 */
.product-details-box {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* 字体设置 */
    width: 60%; /* 宽度60% */
    padding: 20px; /* 内边距 */
    border: 1px solid #ccc; /* 边框 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 阴影 */
    background-color: #f9f9f9; /* 浅灰背景 */
    margin: 50px auto; /* 外边距居中 */
}

/* 产品名称样式 */
.product-details-box .product-title {
    font-size: 20px; /* 字号 */
    font-weight: bold; /* 加粗 */
    color: #333; /* 深灰色 */
    margin-bottom: 10px; /* 下边距 */
}

/* 产品编号样式 */
.product-details-box .product-sku {
    font-size: 16px; /* 字号 */
    color: #666; /* 灰色 */
}

/* 渐变背景样式 */
.gradient-bg-section {
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb1.jpg); /* 渐变背景图 */
}

/* 联系信息区域 */
.contact-info-section {
    padding: 40px 0; /* 上下内边距 */
}

/* 新闻卡片样式 */
.news-card-item {
    background: #fff; /* 白色背景 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* 阴影 */
}

/* 团队介绍区域 */
.team-intro-section {
    background: #f8f9fa; /* 浅灰色背景 */
}

/* 响应式设计 - 移动端适配 */
@media (max-width: 600px) {
    /* 产品卡片调整 */
    .product-main-card {
        margin: 0; /* 取消外边距 */
        place-items: start; /* 内容左对齐 */
    }
    
    /* 参数表格容器调整 */
    .product-params-container {
        width: 100%; /* 宽度100% */
    }
    
    /* 产品信息框调整 */
    .product-details-box {
        width: 90%; /* 更宽占比 */
        padding: 15px; /* 减小内边距 */
        margin: 30px auto; /* 调整外边距 */
        border-radius: 6px; /* 稍小圆角 */
        font-size: 14px; /* 较小字号 */
    }
    
    /* 联系区域调整 */
    .contact-info-section {
        padding: 20px 0; /* 减小内边距 */
    }
    
    /* 新闻卡片调整 */
    .news-card-item {
        padding: 15px; /* 减小内边距 */
    }
}

   /* --------------------------------单个查看产品end----------------------------------------------------- */  
   
   
   
   
   
   
   
      /* --------------------------------联系我们----------------------------------------------------- */  
   
   
   
     .lianxi-quyu {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .lianxi-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 40px;
        width: 800px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .lianxi-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .lianxi-card h3 {
        color: #2c3e50;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 30px;
        text-align: center;
        padding-bottom: 15px;
        border-bottom: 2px solid #f1f3f4;
    }
    
    .lianxi-zugou {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        padding: 12px 0;
        border-bottom: 1px solid #f1f3f4;
    }
    
    .lianxi-zugou:last-of-type {
        border-bottom: none;
        margin-bottom: 30px;
    }
    
    .tubiao {
        width: 24px;
        height: 24px;
        margin-right: 15px;
        flex-shrink: 0;
        color: #3498db;
    }
    
    .lianxi-zugou p {
        margin: 0;
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }
    
    .wangzhi a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .wangzhi a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    
    .erweima {
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dashed #e9ecef;
    }
    
    .erweima img {
        max-width: 400px;
        height: auto;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 10px;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .erweima p {
        margin-top: 10px;
        font-size: 18px;
        color: #7f8c8d;
    }

    /* 响应式设计 */
    @media (max-width: 992px) {
        .lianxi-quyu {
            gap: 30px;
        }
        
        .lianxi-card {
            max-width: 100%;
        }
    }
    
    @media (max-width: 768px) {
        body {
            padding: 15px;
        }
        
        h1 {
            font-size: 28px;
        }
        
        .lianxi-card {
            padding: 25px 20px;
        }
        
        .lianxi-card h3 {
            font-size: 20px;
            margin-bottom: 25px;
        }
        
        .lianxi-zugou p {
            font-size: 16px;
        }
        
        .erweima img {
            max-width: 300px;
        }
    }
    
    @media (max-width: 480px) {
        .lianxi-card {
            padding: 20px 15px;
        }
        
        .lianxi-zugou {
            margin-bottom: 15px;
            padding: 10px 0;
        }
        
        .tubiao {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }
    }  
   
   
        /* --------------------------------联系我们end----------------------------------------------------- */  
		
		
		
		
		
		
		
		
		
		
		
		
		
	 /* --------------------------------新闻----------------------------------------------------- */  	
		
		
		
		
		.ffibu-about-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

/* 列表容器样式 */
.list-container-fb {
    width: 100%;
    margin: 20px 0;
}

.styled-list-fb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list-fb li {
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.styled-list-fb li:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.styled-list-fb li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.styled-list-fb li a:hover {
    color: #007bff;
}

.styled-list-fb li:last-child {
    border-bottom: none;
}

/* 分页样式 */
.pagination-fb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px 0;
    gap: 8px;
}

.pagination-fb a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination-fb a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination-fb .current {
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    border-radius: 4px;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px 0;
    }
    
    .ffibu-about-card {
        padding: 20px;
        margin-top: -30px;
    }
    
    .styled-list-fb li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .styled-list-fb li a {
        font-size: 14px;
    }
    
    .pagination-fb {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination-fb a {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .ffibu-about-card {
        padding: 15px;
    }
    
    .styled-list-fb li {
        padding: 12px 0;
    }
}

   		
	 /* --------------------------------新闻----------------------------------------------------- */  
	 
	 
	 
	 
	 
	 
	 
	 
	 
 /* --------------------------------查看新闻----------------------------------------------------- */  	 
	 
	 /* 新闻内容区域样式 */
.zsfeibu-section {
    padding: 40px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ffibu-news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

/* 新闻标题样式 */
.ffibu-news-card p {
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: #333;
}

.ffibu-news-card p[align='center'] {
    text-align: center;
}

.ffibu-news-card p[align='center'] b {
    font-weight: 700;
}

.ffibu-news-card font[size='6'] {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* 新闻时间样式 */
.ffibu-news-card p[align='center']:not(:first-child) {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 30px;
}

/* 新闻内容样式 */
.ffibu-news-card > br + p + br + * {
    margin-top: 30px;
}

/* 新闻正文内容样式 */
.ffibu-news-card div:not([class]) {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.ffibu-news-card div:not([class]) p {
    margin-bottom: 20px;
    text-align: justify;
}

.ffibu-news-card div:not([class]) img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 表格样式 */
.ffibu-news-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.ffibu-news-card table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

/* 链接样式 */
.ffibu-news-card a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ffibu-news-card a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zsfeibu-section {
        padding: 20px 0;
    }
    
    .ffibu-news-card {
        padding: 25px 20px;
        margin-top: -10px;
    }
    
    .ffibu-news-card font[size='6'] {
        font-size: 22px;
    }
    
    .ffibu-news-card div:not([class]) {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .ffibu-news-card {
        padding: 20px 15px;
    }
    
    .ffibu-news-card font[size='6'] {
        font-size: 20px;
    }
    
    .ffibu-news-card div:not([class]) {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* 打印样式 */
@media print {
    .ffibu-news-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .ffibu-news-card a {
        color: #000;
        text-decoration: underline;
    }
}

 /* --------------------------------查看新闻end----------------------------------------------------- */ 
 
 
 
 
 
 
 
 
 /* --------------首页的的四幅图片展示区域样式------------------------ */
.win11-gallery {
  padding: 60px 0;
  background:#f8f9fa;
  position: relative;
  overflow: hidden;
}

.win11-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0078d4, #6b69d6);
  margin: 15px auto;
  border-radius: 2px;
}

.gallery-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
  height: 650px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.gallery-caption p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 300px);
    height: auto;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-rows: repeat(4, 250px);
  }
  
  .gallery-caption h3 {
    font-size: 1.1rem;
  }
  
  .gallery-caption p {
    font-size: 0.85rem;
  }
}

 /* --------------首页的的四幅图片展示区域样式END------------------------ */
 
 
 
 
 
 
 
 
 
 
 
 
 /* 首页关于我们部分 - Win11风格 */

.section9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.section-title1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
}

.section-title1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0067c0, #00b294);
    border-radius: 2px;
}

.about1-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about1-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.about1-content:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transform: translateY(-5px);
}

.about1-text {
    flex: 1;
}

.about1-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.about1-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0067c0, #00b294);
    border-radius: 2px;
}

.about1-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
    text-align: justify;
}



.about1-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about1-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.about1-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about1-image:hover img {
    transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about1-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
    }
    
    .about1-text, .about1-image {
        flex: none;
        width: 100%;
    }
    
    .section-title1 {
        font-size: 2rem;
    }
    
    .about1-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .section9 {
        padding: 60px 0;
    }
    
    .about1-content {
        padding: 30px;
    }
    
    .section-title1 {
        font-size: 1.8rem;
    }
    
    .about1-text h2 {
        font-size: 1.6rem;
    }
    
    .about1-text p {
        font-size: 1rem;
    }
}
 
 
 
 
 
 
 
 
 
 
 
 
 
  
 /* 首页关于我们部END */
 
 
 
 
 
 
 
 
 
 
 
 
 /*------------------------------about.asp------------------------*/
 
 
 
 
 
 .jieduan {
    margin-bottom: 80px;
	background:#FFFFFF;
	border-radius: 18px;
	 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.neirongkuang {
	
 /*   
    border-radius: 12px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #edebe9;*/
}

/* 阶段标题 */
.jieduan-biaoti {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    padding: 50px 0 30px;
    color: #323130;
    position: relative;
}

.jieduan-biaoti::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0078d4, #00b294);
    border-radius: 2px;
}

/* 关于内容区域 */
.guanyu-neirongkuang1 {
    padding: 0 40px;
}

.guanyu-neirong1 {
    margin-bottom: 40px;
}

.guanyu-wenzi h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0078d4;
    position: relative;
    display: inline-block;
}

.guanyu-wenzi h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0078d4, #00b294);
    border-radius: 2px;
}

.guanyu-wenzi p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    color: #605e5c;
}

/* 公司图片 */
.guanyu-tupian {
    width: 90%;
    height: auto;
    display: block;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
	 align-items: center;
	 justify-content: center;
	
}

.guanyu-tupian:hover {
    transform: scale(1.01);
}

/* 公司数据区域 */
.shuju-neirongkuang {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #edebe9;
}

.shuju-zhengka {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.shuju-zhengka:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.shuju-shuzi {
    font-size: 3rem;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #0078d4, #00b294);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shuju-biaozhu {
    font-size: 1.1rem;
    color: #605e5c;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .jieduan-biaoti {
        font-size: 2rem;
    }
    
    .guanyu-neirongkuang1 {
        padding: 0 30px;
    }
    
    .shuju-neirongkuang {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 300px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    main {
        padding: 40px 15px;
    }
    
    .jieduan-biaoti {
        font-size: 1.8rem;
        padding: 30px 0 20px;
    }
    
    .guanyu-neirongkuang1 {
        padding: 0 20px;
    }
    
    .guanyu-wenzi h2 {
        font-size: 1.6rem;
    }
    
    .guanyu-wenzi p {
        font-size: 1rem;
    }
    
    .shuju-neirongkuang {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .shuju-shuzi {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 250px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .jieduan-biaoti {
        font-size: 1.6rem;
    }
    
    .guanyu-neirongkuang1 {
        padding: 0 15px;
    }
}

 /*------------------------------about.asp------------------------*/
 