/* Banner样式 */
.company-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/static-en/images/bg22_886.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .company-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .company-banner .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
  }
  
  .banner-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  /* 响应式调整 */
  @media (max-width: 992px) {
    .company-banner {
      padding: 80px 0;
    }
    
    .company-banner h1 {
      font-size: 2.4rem;
    }
  }
  
  @media (max-width: 768px) {
    .company-banner {
      padding: 60px 0;
    }
    
    .company-banner h1 {
      font-size: 2rem;
    }
    
    .company-banner .lead {
      font-size: 1.1rem;
    }
    
    .banner-btns .btn {
      padding: 0.5rem 1rem;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .company-banner {
      padding: 50px 20px;
    }
    
    .company-banner h1 {
      font-size: 1.8rem;
    }
    
    .banner-btns {
      flex-direction: column;
      width: 100%;
    }
    
    .banner-btns .btn {
      width: 100%;
      margin: 5px 0 !important;
    }
  }


  /* 栏目目录样式 */
.section-navbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.75rem 1.5rem;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.nav-link:hover {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.nav-link.active {
    color: #fff;
    background-color: #0d6efd;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .nav-links {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-navbar {
        padding: 0.5rem 0;
    }
    
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}



/* -----------33--------- */
/* 公司简介样式 */
.company-profile {
    padding: 60px 0;
    background-color: #fff;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}
.company-name {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.divider {
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
    margin-bottom: 2rem;
}
.company-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}
.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    margin: 2rem 0;
}
.company-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.company-image img {
    transition: transform 0.3s ease;
}
.company-image:hover img {
    transform: scale(1.03);
}
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}
/* 公司优势卡片 */
.advantage-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}
.advantage-card:hover {
    transform: translateY(-5px);
}
.advantage-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
}
.advantage-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}
.advantage-card p {
    color: #666;
    font-size: 1rem;
}
/* 产品应用网格 */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}
.application-item {
    background: #f8f9fa;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.application-item:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-3px);
}
.application-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}
.application-item span {
    font-weight: 500;
}
/* 响应式调整 */
@media (max-width: 992px) {
    .company-profile {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
}
@media (max-width: 768px) {
    .company-description p {
        font-size: 1rem;
    }
    
    .applications-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* -----------004------- */


/* 制造商信息模块样式 */
.manufacturer-info {
    padding: 60px 0; /* 调整上下内边距 */
    position: relative; /* 关键：设置相对定位，方便叠加层定位 */
    color: #fff; /* 默认文字颜色设为白色 */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* 添加文字阴影 */
}

/* 添加叠加层，实现渐变效果 */
.manufacturer-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); /* 渐变颜色 */
    z-index: 1; /* 确保叠加层在背景图片之上，内容之下 */
}

.manufacturer-info .container {
    position: relative; /* 关键：设置相对定位，使内容在叠加层之上 */
    z-index: 2; /* 确保内容在叠加层之上 */
    max-width: 1200px; /* 设置最大容器宽度 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 15px; /* 左右内边距，保证内容不贴边 */
}

/* 设置背景图片 */
.manufacturer-info {
    background-image: url("../images/bg22_886.jpg"); /* 替换为您的图片路径 */
    background-size: cover; /* 让背景图片覆盖整个元素 */
    background-position: center; /* 让背景图片居中显示 */
    background-repeat: no-repeat; /* 防止背景图片重复 */
}

.manufacturer-info .cbox-1-0 {
    text-align: center; /* 内容居中显示 */
}

.manufacturer-info .e_text-10,
.manufacturer-info .e_text-11 {
    font-size: 2.2rem; /* 标题文字大小 */
    font-weight: bold; /* 标题文字加粗 */
    color: #fff; /* 标题文字颜色 */
    margin-bottom: 20px; /* 标题文字间距 */
}

.manufacturer-info .e_richText-9 {
    font-size: 1.2rem; /* 内容文字大小 */
    color: #eee; /* 内容文字颜色，稍微浅一些 */
    line-height: 1.9; /* 行高 */
    text-align: justify; /* 两端对齐 */
    padding: 0 20px; /* 左右内边距，让文本内容不要太靠边 */
}

/* 响应式调整（可选）*/
@media (max-width: 992px) {
    .manufacturer-info .e_text-10,
    .manufacturer-info .e_text-11 {
        font-size: 1.8rem;
    }

    .manufacturer-info .e_richText-9 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .manufacturer-info {
        padding: 50px 0; /* 调整上下内边距 */
    }

    .manufacturer-info .e_text-10,
    .manufacturer-info .e_text-11 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .manufacturer-info .e_richText-9 {
        font-size: 1rem;
        padding: 0 10px; /* 缩小左右内边距 */
    }
}


/* ----------666----- */

/* 罗茨风机展示模块样式 */
.blower-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.blower-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.blower-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
}

.blower-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.blower-image:hover .blower-main-img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(13, 110, 253, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.blower-info {
    flex: 1;
    padding: 20px 0;
}

.blower-header {
    margin-bottom: 30px;
}

.blower-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.blower-title span {
    color: #0d6efd;
}

.title-divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.8) 50%, rgba(13, 110, 253, 0.1) 100%);
}

.title-divider i {
    margin: 0 15px;
    color: #0d6efd;
    font-size: 1.2rem;
}

.blower-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.blower-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
}

.blower-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #0d6efd;
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #212529;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.buying-guide {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0d6efd;
}

.buying-guide h3 {
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.buying-guide h3 i {
    margin-right: 10px;
    color: #0d6efd;
}

.buying-guide p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.guide-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-item {
    display: flex;
    gap: 15px;
}

.guide-number {
    width: 30px;
    height: 30px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.guide-text h4 {
    font-size: 1rem;
    color: #212529;
    margin-bottom: 0.3rem;
}

.guide-text p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .blower-container {
        flex-direction: column;
    }
    
    .blower-title {
        font-size: 2rem;
    }
    
    .blower-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blower-showcase {
        padding: 60px 0;
    }
    
    .blower-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .blower-showcase {
        padding: 40px 0;
    }
    
    .blower-title {
        font-size: 1.6rem;
    }
    
    .blower-description p {
        font-size: 1rem;
    }
}