@charset "utf-8";
/* CSS Document */

        :root {
            --primary: #3a86ff;
            --secondary: #2dce89;
            --accent: #ff9e1b;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --text-primary: #334155;
            --text-secondary: #475569;
            --text-light: #94a3b8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: #f8fafc;
            color: var(--text-primary);
            line-height: 1.7;
            padding-top: 80px;
        }
        
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
    
        /* 导航栏样式 */
        .navbar {
            background-color: #ffffff;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .nav-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Logo设计 */
        .logo {
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            background: linear-gradient(90deg, #3a86ff, #2dce89, #ff9e1b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            padding-right: 5px;
        }
        

        
        /* 导航菜单 */
        .nav-menu {
            display: flex;
            list-style: none;
            margin-left: 40px;
        }
        
        .nav-item {
            margin-right: 40px;
            position: relative;
        }
        
        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            padding: 8px 0;
            position: relative;
        }
        
        .nav-link.active {
            color: #3a86ff;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #3a86ff;
            bottom: -2px;
            left: 0;
        }
        
        .nav-link:hover {
            color: #3a86ff;
        }
		
   
        /* 下拉箭头 */
        .dropdown-arrow {
            margin-left: 5px;
            font-size: 12px;
        }
        
        /* 下拉菜单 */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            z-index: 100;
        }
        
        .nav-item.has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: var(--text-secondary);
            text-decoration: none;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.2s;
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-item:hover {
            background-color: #f8fafc;
            color: #3a86ff;
        }
		
		
  /* 响应式菜单按钮 */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-secondary);
        }
        
        /* 主视觉区域 */
        .hero {
           /* background-color: #f8fafc;*/
            color: white;
            padding: 30px 0 20px;
            margin-top: 0;
            position: relative;
           /* overflow: hidden;*/
        }
		
		
/* 静态图片样式 */
        .hero-image {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .image-container {
            width: 100%;
            height: 400px;
            position: relative;
        }
        
        .static-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-image: url('../images/banner1.gif');
        }
        
        .image-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            padding: 10px 20px 10px 20px;
            color: white;
        }
        
        .image-content h3 {
            margin-bottom: 0px;
            font-size: 32px;
            font-weight: 600; /* 优化标题粗细 */
        }
        
        .image-content p {
            font-size: 20px;
            opacity: 0.9;
            font-weight: 400; /* 优化正文字重 */
        }
		
		
   /* 页脚 */
        footer {
            background-color: #0f2a5f;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-bottom {
            color: #b3c5e5;
            font-size: 14px;
            font-weight: 400;
        }
		
		
.footer-bottom  a{
    color: #b3c5e5;
	    text-decoration: none;
  
}

.products-grid  a
{

 text-decoration: none;
 
}

 @media (max-width: 767px) {
 .active {
    color: #3a86ff;
}

active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #3a86ff;
    bottom: -2px;
    left: 0;
}

.logo img {
width: 90%;
}

.navbar {
    background-color:#ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


 }
 
  /* 面包屑导航样式 */
        .breadcrumb-nav {
            background-color: white;
            border-radius: 10px;
            padding: 15px 20px;
            margin: 0px 0 20px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 999;
        }
        
        .breadcrumb-list {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 500;
        }
        
        .breadcrumb-item a::after {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            margin: 0 10px;
            color: var(--text-light);
        }
        
        .breadcrumb-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .breadcrumb-link i {
            margin-right: 8px;
            font-size: 14px;
        }
        
        .breadcrumb-link:hover {
            color: var(--primary);
        }
        
        .breadcrumb-link.active {
            color: var(--primary);
            font-weight: 600;
        }
		
		.breadcrumb-item a:last-of-type {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-item a:last-child:after {
    display: none;
}

 @media (max-width: 767px) {
 .image-content h3 {
    font-size: 20px!important;
	    margin-bottom: 0px!important;
	  
}
.image-content p {
    font-size: 15px!important;
}




 }




