

/* Banner样式 */
.company-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/static-en/images/banner002.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;
    }
  }

  


  /* --------------- */
   /* 联系我们模块样式 */
   .contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #0d6efd;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #e9f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.info-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-content a {
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.form-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .info-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}