/* 联系我们页面样式 */
section,header,footer,.page-banner{
  max-width: 1920px;
  margin: 0 auto;
}

/* 页面横幅 */
.page-banner {
  height: 400px;
  padding: 80px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image: url("../images/contact/contact-top.png");
}
.page-banner h2{
  text-align: center;
  padding-top: 100px;
  font-size: 50px;
  color: #000;
  font-weight: 600;
}


.page-banner p{
  margin-top: 20px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: 600;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 联系我们内容 */
.contact-us {
  padding: 60px 0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 40px;
}

.contact-map {
  flex-basis: calc(60% - 20px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  animation: fade-in-left 1s ease-out;
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-info {
  flex-basis: calc(40% - 20px);
  animation: fade-in-right 1s ease-out;
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item .icon {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-item .icon img {
  width: 100%;
}

.info-item .text h4 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.info-item .text p {
  color: #34495e;
  margin: 0;
  font-size: 1rem;
}

.qrcode {
  margin-top: 10px;
  width: 120px;
  height: 120px;
  border: 1px solid #eee;
  padding: 5px;
  background-color: #fff;
}

.qrcode img {
  width: 100%;
  height: 100%;
}
 #baiduMap {
      width: 100%;
      height: 100%;
  }
.connactName{
  color: #000;
  font-size: 38px;
}
.connactName div{
  line-height: 50px;
  height: 50px;
  display: inline-block;
}
.connactName span{
  font-size: 30px;
  font-weight: 600;
}
.connactName .enname{
  line-height: 40px;
  font-size: 20px;
  padding-bottom: 20px;
  display: inline-block;
  color: #aaa;
}
.linePiont{
 border-top: #9ed138 4px solid;
 width: 40px;
 margin-bottom: 20px;
}
/* 响应式调整 */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-map,
  .contact-info {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  .contact-us {
    padding: 40px 0;
  }

  .info-item {
    padding: 12px;
  }

  .contact-form {
    padding: 20px;
  }

  .submit-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .info-item .icon {
    width: 30px;
    height: 30px;
  }

  .info-item .text h4 {
    font-size: 1rem;
  }

  .qrcode {
    width: 100px;
    height: 100px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
  }

  .contact-form h3 {
    font-size: 1.4rem;
  }
}

.info-window {
  font-family: "微软雅黑", Arial, sans-serif;
  line-height: 1.5;
}
.info-window h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.info-window .green-line {
  width: 100%;
  height: 4px;   
  background-color: green; 
  margin: 5px 0;     
}
.info-window p {
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 14px;
}