.contact {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: bottom;
}

.contact .list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 50px 0;
}

.contact .list .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact .list .item img {
  height: 64px;
  margin-bottom: 6px;
}

.contact .list .item span {
  font-size: 22px;
}

.contact .list .item .line {
  width: 24px;
  height: 4px;
  margin-top: 9px;
  margin-bottom: 10px;
  background: #5288F5;
  border-radius: 50px;
}

.contact .list .item p {
  font-size: 20px;
}

.contact iframe {
  width: 100%;
  height: 600px;
}

/* 提交留言 */
.message {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.message .form .in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.message .form .in .item {
  width: 48%;
  margin-bottom: 50px;
}

.message .form .in .item p {
  font-size: 16px;
  margin-bottom: 15px;
}

.message .form .in .item input {
  width: 100%;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #E8E8E8;
}

.message .form .text {
  width: 100%;
  margin-bottom: 50px;
}

.message .form .text p {
  font-size: 16px;
  margin-bottom: 15px;
}

.message .form .text textarea {
  width: 100%;
  height: 385px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #E8E8E8;
}

.message .form button {
  width: 242px;
  height: 63px;
  color: #fff;
  font-size: 18px;
  background: #2573CD;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .banner .title {
    top: 48%;
    font-size: 30px;
  }

  .contact .list {
    flex-wrap: wrap;
  }

  .contact .list {
    flex-wrap: wrap;
  }

  .contact .list .item {
    width: 100%;
    margin-bottom: 40px;
  }
  
  .contact iframe {
    height: 400px;
  }
}