.container .first-con{
  position: fixed;
  height: 100vh;
}
.container .banner{
  width: 100%;
  height: 500px;
  background: url('../image/contact/banner.jpg') center no-repeat;
  background-size:cover;
  padding: 0 8%;
  box-sizing: border-box;
  color: #fff;
}
.banner .banner-en{
  font-size: 30px;
  padding-top: 240px;
}

.container .main{
  padding: 20px 8% 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.main .main-title{
  font-size: 25px;
  color: rgb(1,87,206);
  font-weight: 550;
  position: relative;
  margin: 20px 0 40px;
}
.main .main-title::before{
  position: absolute;
  content: '';
  bottom: -15px;
  left: 0;
  width: 150px;
  height: 3px;
  background: rgb(0,79,205);
}
.main .content{
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: rgb(97,97,97);
}
.content .con-item{
  width: 48%;
}
.con-item .left-top{
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  color: rgb(116,116,116);
  border: 1px solid rgb(231,230,231);
}
.content .con-item .left-lf{
  display: flex;
  align-items: center;
}
.content .con-item .icon-com{
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.con-item .left-middle{
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border: 1px solid rgb(231,230,231);
  margin: 20px 0;
}
.con-item .left-bottom{
  width: 100%;
  /* height: 300px;
  background: url('../image/contact/map.jpg') center no-repeat;
  background-size: cover; */
}

.con-item .right-title{
  margin-bottom: 15px;
  text-align: center;
}
.con-item .right-com{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.con-item .right-com .right-lf{
  width: 49.5%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  border: 1px solid rgb(231,230,231);
}
.right-com .right-lf span{
  display: inline-block;
  width: 80px;
  min-width: 80px;
} 
.con-item .right-com .com-ipt{
  flex: 1;
  border: none;
  min-width: 40%;
}
.con-item .right-spec{
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid rgb(231,230,231);
  margin-bottom: 20px;
}
.con-item .right-spec .texts{
  width: 100%;
  height: 2.45rem;
  border: none;
  margin-top: 10px;
}
.con-item .submits{
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: rgb(0,90,200);
  text-align: center;
  color: #fff;
  border: none;
}

.error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}
label.error {
  color: red;
  font-size: 15px;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}
#loader {
  display: none;
  margin-top: 10px;
}
#loader i {
  font-size: 30px;
  font-size: 2rem;
  color: #65967b;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}
#success,
#error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
  box-sizing: border-box;
}
#success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}
#error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}
@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

@media screen and (min-width: 1800px){
  .con-item .right-spec .texts{
    height: 3.1rem;
  }
}
@media screen and (min-width: 1450px) and (max-width: 1799px){
  .con-item .right-spec .texts{
    height: 2.69rem;
  }
}

@media screen and (max-width:1200px) {
  .container .banner{
    padding: 0 15px;
  }
  .container .main{
    padding: 20px 15px;
  }
  .main .main-title{
    display: none;
  }
  .main .content{
    display: block;
    font-size: 14px;
  }
  .content .con-item{
    width: 100%;
  }
  .con-item .left-top{
    padding: 10px;
  }
  .content .con-item .icon-com{
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .con-item .left-middle{
    padding: 10px;
  }

  .con-item .right-title{
    margin: 30px 0 15px;
  }
  .con-item .right-com .right-lf{
    padding: 6px;
  }
}
@media screen and (max-width:768px) {
  .right-com .right-lf span{
    display: inline-block;
    width: 60px;
    min-width: 60px;
  }
  .con-item .right-spec .texts{
    height: 120px;
  }
}