.contactBlock {
  position: relative;
  padding-top: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.contactBlock .w1280 .top {
  display: flex;
  align-items: flex-end;
}
.contactBlock .w1280 .top .title {
  font-family: cutedino;
  font-size: 58px;
  color: #fff;
}
.contactBlock .w1280 .top .title span {
  color: #12eb31;
}
.contactBlock .w1280 .top .tips {
  transform: translateY(-16px);
  width: 375px;
  margin-left: 74px;
  font-family: Poppins-Medium;
  font-size: 20px;
  line-height: 34px;
  color: #fff;
}
.contactBlock .w1280 .bottom {
  display: flex;
  justify-content: flex-start;
  margin-top: 102px;
  padding-bottom: 180px;
}
.contactBlock .w1280 .bottom .list {
  display: flex;
  align-items: center;
  width: calc((100% - 120px) / 2);
  margin-left: 60px;
  padding-top: 51px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.contactBlock .w1280 .bottom .list .img {
  width: 35px;
  margin-right: 20px;
  font-size: 0;
}
.contactBlock .w1280 .bottom .list p {
  font-size: 20px;
  color: #fff;
}
.contactBlock .w1280 .bottom .list:first-child {
  margin-left: 0;
}
.contactBlock .form {
  display: flex;
}
.contactBlock .form .left {
  width: 50%;
  font-size: 0;
}
.contactBlock .form .left img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contactBlock .form .right {
  width: 50%;
  padding: 32px 60px;
  background: rgba(49, 26, 137, 0.7);
}
.contactBlock .form .right form .list {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.contactBlock .form .right form .list input {
  width: calc((100% - 40px) / 2);
  height: 76px;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
  color: #fff;
}
.contactBlock .form .right form .list input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contactBlock .form .right form .list input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contactBlock .form .right form .list textarea {
  width: 100%;
  height: 90px;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
  color: #fff;
  resize: none;
}
.contactBlock .form .right form .list textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contactBlock .form .right form .list textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contactBlock .form .right form .list.select {
  justify-content: flex-start;
  color: #fff;
  cursor: pointer;
}
.contactBlock .form .right form .list.select a {
  color: #12eb31;
}
.contactBlock .form .right form .list.select span {
  display: block;
  position: relative;
  transform: translateY(3px);
  transition: border 0.3s;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.contactBlock .form .right form .list.select span::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  width: 12px;
  height: 12px;
  background: #12eb31;
  opacity: 0;
}
.contactBlock .form .right form .list.select span.on {
  border-color: #12eb31;
}
.contactBlock .form .right form .list.select span.on::after {
  opacity: 1;
}
.contactBlock .form .right form .mess {
  margin-top: 27px;
}
.contactBlock .form .right form .select {
  margin-top: 18px;
}
.contactBlock .form .right form .submit {
  display: block;
  width: 211px;
  height: 53px;
  margin-top: 52px;
  background: url(/storage/images/contact/submit.png) no-repeat;
  text-align: center;
  font-family: Poppins-Medium;
  font-size: 18px;
  line-height: 53px;
  color: #fff;
}
.contactBlock::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

@media (max-width: 1080px) {
  .contactBlock {
    padding-top: 180px;
  }
  .contactBlock .w1280 .top {
    flex-wrap: wrap;
  }
  .contactBlock .w1280 .top .title {
    width: 100%;
    font-size: 32px;
  }
  .contactBlock .w1280 .top .tips {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    font-size: 16px;
  }
  .contactBlock .w1280 .bottom {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0;
    padding-bottom: 100px;
  }
  .contactBlock .w1280 .bottom .list {
    width: calc((100% - 60px) / 2);
    margin-top: 40px;
    margin-left: 0;
    padding-top: 40px;
  }
  .contactBlock .w1280 .bottom .list .img {
    width: 25px;
  }
  .contactBlock .w1280 .bottom .list p {
    font-size: 16px;
  }
  .contactBlock .form {
    flex-wrap: wrap;
  }
  .contactBlock .form .left {
    width: 100%;
  }
  .contactBlock .form .left img {
    min-height: auto;
  }
  .contactBlock .form .right {
    width: 100%;
    padding: 30px 5% 40px;
  }
  .contactBlock .form .right form .list {
    flex-wrap: wrap;
    padding-top: 0;
  }
  .contactBlock .form .right form .list input {
    width: 100%;
    height: 56px;
  }
  .contactBlock .form .right form .list.mess {
    margin-top: 15px;
  }
  .contactBlock .form .right form .submit {
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .contactBlock {
    padding-top: 140px;
  }
  .contactBlock .w1280 .bottom {
    padding-bottom: 60px;
  }
  .contactBlock .w1280 .bottom .list {
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
  }
  .contactBlock .form .right form .select {
    display: block;
  }
  .contactBlock .form .right form .select span {
    float: left;
    transform: translateY(-1px);
  }
}/*# sourceMappingURL=contact.css.map */