/* banner */
.banner {
  position: relative;
  width: 100%;
}

.banner img {
  width: 100%;
}

.contact {
  width: 100%;
  padding: 0 0 80px;
  box-sizing: border-box;
}

.contact h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

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

.contact .in .left,
.contact .in .right {
  width: 48%;
}

.contact .in .item {
  margin-bottom: 23px;
}

.contact .in p {
  font-size: 15px;
  /* font-weight: bold; */
  margin-bottom: 6px;
}

.contact .in i {
  color: #DC000C;
}

.contact .in input {
  width: 100%;
  height: 30px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #262727;
}

.contact .in .user {
  position: relative;
  width: 100%;
}

.contact .in .user input {
  display: inline-block;
  width: 48%;
  margin-right: 3%;
}

.contact .in .user input:last-of-type {
  margin-right: 0;
}

.contact .in .user span {
  position: absolute;
  bottom: -18px;
  left: 0;
  color: #262727;
  font-size: 12px;
}

.contact .in .user span:last-of-type {
  left: unset;
  right: 46.5%;
}

.contact .checkbox .item {
  margin-bottom: 13px;
}

.contact .checkbox .item .list {
  width: 650px;
}

.contact .checkbox p {
  font-size: 15px;
  /* font-weight: bold; */
  margin-bottom: 6px;
}

.contact .checkbox i {
  color: #DC000C;
}

.contact .checkbox span {
  font-size: 15px;
  /* font-weight: bold; */
  letter-spacing: 2px;
}

.contact .checkbox label {
  margin-right: 30px;
  cursor: pointer;
}

.contact textarea {
  width: 100%;
  height: 150px;
  padding: 8px;
  margin-bottom: 14px;
  box-sizing: border-box;
  border: 1px solid #262727;
}

.contact button {
  width: 85px;
  height: 24px;
  color: #262727;
  font-size: 12px;
  border: 1px solid #474645;
  transition: all .3s;
  cursor: pointer;
}

.contact button:hover {
  color: #fff;
  border-color: #E85400;
  background-color: #E85400;
}

.contact .message {
  width: 100%;
  margin-top: 20px;
}

.contact .message h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact .message .list {
  display: flex;
}

.contact .message .list .item {
  font-size: 16px;
  margin-right: 100px;
}

@media screen and (max-width: 1580px) {
  .contact .in .user input {
    margin-right: 2%;
  }
}

@media screen and (max-width: 992px) {
  .contact .checkbox .item .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  .contact .checkbox label {
    width: 48%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .contact .message .list {
    display: block;
  }

  .contact .message .list .item {
    margin-right: 0;
    margin-bottom: 10px;
  }
}