/* 联系我们页面样式 */

/* 页面顶部横幅 */
.product-banner {
  height: 450px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 65px;
  position: relative;
}

.product-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.product-banner h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

/* 面包屑导航 - 胶囊形状 */
.breadcrumb {
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.breadcrumb .container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 52px;
  background: #FFFFFF;
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
  border-radius: 26px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #2C2C2C;
  text-align: center;
}

.breadcrumb a {
  color: #2C2C2C;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb a:hover {
  color: #66cc33;
}

/* 联系我们内容样式 */
.contact-content {
  padding: 60px 0;
  background-color: #fff;
}

.contact-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 第一行联系卡片 - 市场营销和产品研发 */
.contact-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-row.animated {
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  width: 48%;
  display: flex
;
  background-color: #fff;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  /* border-radius: 10px; */
  overflow: hidden;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid #E5E5E5;
}

/* .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
} */

.card-content {
  flex: 1;
}

.card-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.card-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  /* background-color: #66cc33; */
}

.contact-person {
  margin-top: 20px;
}

.contact-person h4 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.position {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
}

.position span {
  font-size: 14px;
  color: #888;
  margin-left: 5px;
}

.contact-info, .contact-email {
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

.qr-code {
  margin-left: 30px;
  display: flex;
  align-items: center;
}

.qr-code img {
  width: 120px;
  height: 120px;
  border: 1px solid #eee;
  padding: 5px;
}

/* 分隔线 */
.contact-divider {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.contact-divider img {
  max-width: 90%;
  height: auto;
}

/* 人力资源部分 */
.hr-section {
  display: flex
  ;
      flex-wrap: wrap;
      background-color: #fff;
      /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
      /* border-radius: 10px; */
      padding: 30px;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      border-bottom: 1px solid #E5E5E5;
}

.hr-section.animated {
  opacity: 1;
  transform: translateY(0);
}

.hr-content {
  flex: 0 0 30%;
}

.hr-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.hr-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  /* background-color: #66cc33; */
}

.hr-info {
  margin-top: 20px;
}

.hr-info p {
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

.hr-qrcodes {
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.qrcode-item {
  text-align: center;
}

.qrcode-item img {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  padding: 5px;
  margin-bottom: 8px;
}

.qrcode-item p {
  font-size: 14px;
  color: #666;
}

.hr-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hr-image img {
  max-width: 50%;
  height: auto;
  border-radius: 8px;
}

/* 公司总机电话 */
.company-phone {
  padding: 30px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.company-phone.animated {
  opacity: 1;
  transform: translateY(0);
}

.company-phone p {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .contact-row {
    flex-direction: column;
  }
  
  .contact-card {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .hr-content {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  
  .hr-qrcodes {
    flex: 0 0 100%;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  
  .hr-image {
    flex: 0 0 100%;
    justify-content: center;
  }
  
  /* 横幅响应式调整 */
  .product-banner {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-content {
    padding: 40px 0;
  }
  
  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .card-content h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .qr-code {
    margin-left: 0;
    margin-top: 20px;
  }
  
  .hr-qrcodes {
    justify-content: center;
  }
  
  .company-phone p {
    font-size: 18px;
  }
  
  /* 横幅响应式调整 */
  .product-banner {
    height: 300px;
  }
  
  .breadcrumb .container {
    width: 180px;
    height: 46px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .contact-content {
    padding: 30px 0;
  }
  
  .card-content h3 {
    font-size: 20px;
  }
  
  .contact-person h4 {
    font-size: 16px;
  }
  
  .position, .contact-info, .contact-email {
    font-size: 14px;
  }
  
  .hr-content h3 {
    font-size: 20px;
  }
  
  .hr-info p {
    font-size: 14px;
  }
  
  .company-phone p {
    font-size: 16px;
  }
  
  /* 小屏幕横幅调整 */
  .product-banner {
    height: 250px;
  }

  .product-banner h1 {
    font-size: 24px;
  }
  
  .breadcrumb {
    bottom: -20px;
  }
  
  .breadcrumb .container {
    width: 160px;
    height: 40px;
    font-size: 12px;
  }
} 