        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
:root {
    /* 主色调 - 橙色 */
    --primary-color: #ea712a;      /* 主橙色#ea712a */
    --primary-dark: #E55A00;       /* 深橙色（悬停/激活状态） */
    --primary-light: #FF9966;      /* 浅橙色（高亮/渐变效果） */
    
    /* 文字颜色 */
    --text-dark: #333333;          /* 深色文字（标题、主要文字） */
    --text-light: #666666;         /* 浅色文字（辅助文字、描述） */
    
    /* 背景色 */
    --bg-light: #F5F5F5;           /* 浅灰色背景（卡片背景、区域背景） */
    --white: #FFFFFF;              /* 纯白色 */
    
    /* 效果 */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* 通用阴影效果 */
}
		a {
  text-decoration: none;
 
}
        
        body {
            color: var(--text-dark);
	line-height: 1.6;
            background-color: var(--bg-light);
	background-color: #CCCCCC;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 - 橙色 */
        header {
            background-color: var(--primary-color);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
			margin-bottom: 0 !important;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 28px;
            color: var(--white);
            margin-left: 10px;
        }
        
        .logo-icon {
            font-size: 28px;
            color: var(--white);
        }
        
        nav ul {
            display: flex;
            list-style: none;
			font-size: 23px;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--white);
            cursor: pointer;
			margin-right:10px;
        }
        
        /* 幻灯片样式 */
        .slider {
		 padding: 0px 0 ;
		
            position: relative;
            height: 600px;
            overflow: hidden;
            margin-bottom: 0;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            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;
            color: var(--white);
            padding: 30px;
        }
        
        .slide-content h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: var(--primary-color);
        }
        
        /* 通用部分样式 */
        section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        /* 优势部分样式 - 修改为橙色 */
        .advantages {
            background-color: var(--white);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            background: var(--primary-color);
            color: var(--white);
        }
        
        .advantage-item:hover {
            transform: translateY(-10px);
            background: var(--primary-dark);
        }
        
        .advantage-icon {
            font-size: 48px;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .advantage-item h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .advantage-item p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* 公司简介样式 */
        .about {
            background-color: var(--bg-light);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
 
 
 
 
        
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c42, #ea712a); /* 渐变提升质感 */
    color: #ffffff;
    padding: 8px 60px; /* 稍大内边距，更舒适点击区域 */
    border-radius: 8px; /* 更柔和的圆角 */
    text-decoration: none;
    font-weight: 600; /* 加粗字体，增强可读性 */
    font-size: 18px;
    font-family: 'Microsoft YaHei', sans-serif; /* 现代字体栈 */
    letter-spacing: 0.5px; /* 字间距提升精致感 */
    box-shadow: 0 4px 12px rgba(234, 113, 42, 0.3); /* 柔和阴影增加立体感 */
    transition: all 0.3s ease; /* 平滑过渡所有属性 */
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 悬停效果：提升亮度与阴影 */
.btn:hover {
    background: linear-gradient(135deg, #ff9d5c, #f07d35);
    box-shadow: 0 6px 16px rgba(234, 113, 42, 0.4);
    transform: translateY(-2px); /* 轻微上浮，增强交互反馈 */
}

/* 点击效果：按下感 */
.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(234, 113, 42, 0.3);
}

/* 可选：添加光泽动画（高级感） */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
	background: var(--primary-dark);
}
		
		
		
		
		
        
        /* 产品部分样式 */
        .products {
            background-color: var(--white);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
		
		.products-grid-index {
    /* 使用 CSS Grid 布局 */
    display: grid;
    /* 自动适应列数，每列最小 280px，最大等分剩余空间 */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* 网格项之间的间距为 30px */
    gap: 25px;
}
	
	
	.product-card-index {
    /* 圆角边框 */
    border-radius: 8px;
    /* 隐藏溢出内容，确保圆角不被内部元素破坏 */
    overflow: hidden;
    /* 使用预设的阴影效果 */
    box-shadow: var(--shadow);
    /* 添加变换效果的过渡动画，持续0.3秒 */
    transition: transform 0.3s;
  border: 1px solid rgba(234, 113, 42, 0.3); /* 30%不透明度的橙色边框 */
    transition: transform 0.3s, border-color 0.3s; /* 添加边框颜色过渡 */
}

.product-card-index :hover {
    /* 鼠标悬停时向上平移10px */
    transform: translateY(-10px);
	 border-color: rgba(234, 113, 42, 1); /* 悬停时边框更明显 */
}
		
		
        .product-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
			
            
            overflow: hidden;
			text-align:center;
        }
        
        .product-image img {
			width:250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
			text-align:center;
        }
        
        .product-info h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .product-info p {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        /* 新闻部分样式 - 修改为只显示标题和日期 */
        .news {
            background-color: #fff;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .news-item {
            background: var(--white);
            border-radius: 8px;
            padding: 20px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
        }
        
        .news-date {
            color: var(--primary-color);
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .news-content h3 {
			
            font-size: 15px;
            margin-bottom: 0;
            line-height: 1.4;
        }
		.news-content h3 a{
			text-decoration: none;
			color:#333;
		}
		
        
        /* 页脚样式 */
        footer {
            background-color: #222222;/*ff7505  #222222*/
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #CCCCCC;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
        }
        
        .contact-info {
            color: #CCCCCC;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444444;
            color: #999999;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 10px 0;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--primary-color);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
				
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .slider {
                height: 400px;
            }
            
            .slide-content h2 {
                font-size: 24px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
						
        }
        
        @media (max-width: 576px) {
            .slider {
                height: 300px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-content h2 {
                font-size: 20px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .advantage-icon {
                font-size: 36px;
            }


        }
        }




.logo1 h1 {
  font-size: 24px;
  color:#FFFFFF;
  margin-left: 10px;
}
/* 手机端简化显示 */
@media (max-width: 768px) {
    .logo1 h1 {
        font-size: 1.5rem;

    }
    
    .logo1 h1::before {
        content: "FFIBU Casters";
        display: block;
    }
    
    .logo1 h1 .full-name {
        display: none;
    }
	
	
    .logo h1 {
        font-size: 1.3rem;

    }	
	
	
	
}

/* 桌面端显示完整名称 */
@media (min-width: 769px) {
    .logo1 h1::before {
        content: none;
    }
    
    .logo1 h1 .full-name {
        display: inline;
    }
}





/* 二级菜单----------主菜单中包含子菜单的菜单项 */
.main-nav .has-submenu {
  position: relative; /* 为子菜单提供定位参考 */
}

/* 子菜单容器样式 */
.main-nav .submenu {
  display: none; /* 默认隐藏子菜单 */
  position: absolute; /* 相对于父菜单项定位 */
  top: 100%; /* 位于父菜单项下方 */
  left: 0; /* 与父菜单项左对齐 */
  background-color:#f5f5f5; /* 白色背景 */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 轻微阴影 */
  padding: 0; /* 重置内边距 */
  min-width: 100px; /* 最小宽度 */
  z-index: 100; /* 确保显示在其他内容上方 */
  font-size: 16px; /* 整体字体大小调整 */
  white-space: nowrap;/*文字强制不换行*/
}

/* 子菜单项样式 */
.main-nav .submenu li {
  list-style: none; /* 移除列表标记 */
  margin: 0; /* 移除默认外边距 */
  padding: 0; /* 移除默认内边距 */
}

/* 子菜单链接样式 */
.main-nav .submenu li a {
  display: block; /* 块级显示 */
  padding: 5px ; /* 内边距 */
  text-decoration: none; /* 无下划线 */
  color: #333; /* 文字颜色 */
  transition: background-color 0.3s; /* 背景色过渡效果 */
}

/* 子菜单链接悬停状态 */
.main-nav .submenu li a:hover {
  background-color: #ea712a; /* 悬停时背景色变化#f5f5f5 */
  color:#FFFFFF;
}

/* 父菜单项悬停时显示子菜单 */
.main-nav .has-submenu:hover .submenu {
  display: block; /* 显示子菜单 */
}

/* +++++++++++++++++++++++++++++++桌面端菜单样式end+++++++++++++++++++++++++++++++++++++++++++++++++ */



























/* 首页四幅图片展示区域样式----------------------------------------------------- */
.image-gallery {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 16px;
  /* 初始状态：隐藏 */
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  /* 悬停时：显示 */
  opacity: 1;
  transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 250px;
  }
  
  .gallery-caption {
    font-size: 14px;
    padding: 10px;
  }
}
/* 首页四幅图片展示区域样式----------------------------------------------------- */