.map {
  height: 368px;
}

.row-a1 {
  display: flex;
  flex-direction: column;
}

.row-a1 .title {
  font-size: 20px;
  text-align: center;
  margin: 50px 0;
  position: relative;
}

.row-a1 .title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  display: block;
  background: #52c2eb;
  width: 100px;
  height: 10px;
  z-index: -1;
}

.row-a1 .con {
  display: flex;
  flex-direction: column;
}

.row-a1 .con .inputs {
  display: flex;
  flex-direction: column;
}

.row-a1 .con .inputs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.row-a1 .con .inputs .left {
  width: 49%;
}

.row-a1 .con .inputs .right {
  width: 49%;
}

.row-a1 .con .inputs .left .tit {
  line-height: 45px;
  position: relative;
  padding-left: 10px;
  color: #111;
}

.row-a1 .con .inputs .left .require::before {
  content: "*";
  display: block;
  color: #ff0000;
  position: absolute;
  left: 0;
  top: 0;
}

.row-a1 .con .inputs .right .tit {
  line-height: 45px;
  position: relative;
  padding-left: 10px;
  color: #111;
}

.row-a1 .con .inputs .right .require::before {
  content: "*";
  display: block;
  color: #ff0000;
  position: absolute;
  left: 0;
  top: 0;
}

.row-a1 .con .inputs .left .input>input {
  border: none;
  background: #f2f3f5;
  height: 50px;
  width: 100%;
  padding-left: 10px;
}

.row-a1 .con .inputs .right .input input {
  border: none;
  background: #f2f3f5;
  height: 50px;
  width: 100%;
  padding-left: 10px;
}

.row-a1 .con .inputs .left .input {
  position: relative;
}

.row-a1 .con .inputs .left .input img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

.row-a1 .con .inputs .right .input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.row-a1 .con .inputs .right .input .inp {
  position: relative;
  width: 45%;
}

.row-a1 .con .inputs .right .input .inp img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

.row-a1 .con .text .tit {
  line-height: 45px;
  position: relative;
  padding-left: 10px;
  color: #111;
}

.row-a1 .con .text .tit::before {
  content: "*";
  display: block;
  color: #ff0000;
  position: absolute;
  left: 0;
  top: 0;
}

.row-a1 .con .text textarea {
  background: #f2f3f5;
  width: 100%;
  padding: 15px;
}

.row-a1 .con .inputs .left .input .pop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 30;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
  display: none;
}

.row-a1 .con .inputs .left .input .pop .radios {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px #dadada;
  padding-left: 20px;
  line-height: 50px;
}

.row-a1 .con .inputs .left .input .pop .radios .radio {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 30px;
}
.row-a1 .con .inputs .left .input .pop .radios .radio input{
  margin-right: 10px;
  color: #f66b17;
  background: #f66b17;
}
.row-a1 .con .inputs .left .input .pop .con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.row-a1 .con .inputs .left .input .pop .con .left {
  display: flex;
  flex-direction: column;
  width: 40%;
  border-left: solid 1px #dadada;
  border-right: solid 1px #dadada;
  height: 240px;
  overflow-y: auto;
}

.row-a1 .con .inputs .left .input .pop .con .right {
  display: flex;
  flex-direction: column;
  width: 60%;
  /* border: solid 1px #dadada; */
  border-right: solid 1px #dadada;
  height: 240px;
  overflow-y: auto;
}

.row-a1 .con .inputs .left .input .pop .con .left .tit {
  line-height: 35px;
}

.row-a1 .con .inputs .left .input .pop .con .left .list {
  padding-left: 12px;
}

.row-a1 .con .inputs .left .input .pop .con .left .list .ti {
  color: #aaaaaa;
}

.row-a1 .con .inputs .left .input .pop .con .left .list .li {
  line-height: 30px;
  padding-left: 15px;
}

.row-a1 .con .inputs .left .input .pop .con .left .list .li.on {
  color: #fe4317;
  position: relative;
}

.row-a1 .con .inputs .left .input .pop .con .left .list .li.on:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  width: 30px;
  height: 1px;
  left: 30px;
  transform: translate(-15px, 0);
  background: #fe4317;
}

.row-a1 .con .inputs .left .input .pop .con .right .desc .txt.on {
  color: #fe4317;
  position: relative;
}

.row-a1 .con .inputs .left .input .pop .con .right .desc .txt.on:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  width: 30px;
  height: 1px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fe4317;
}

.row-a1 .con .inputs .left .input .pop .con .right .ti {
  padding-left: 15px;
  line-height: 25px;
  color: #999;
}

.row-a1 .con .inputs .left .input .pop .con .right .desc {
  padding-left: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.row-a1 .con .inputs .left .input .pop .con .right .desc .txt {
  width: 25%;
  text-align: center;
  line-height: 30px;
}

.row-a1 .con .inputs .left .input .pop .con .right::-webkit-scrollbar {
  width: 5px;
  background-color: #ffffff;
}

.row-a1 .con .inputs .left .input .pop .con .right::-webkit-scrollbar-thumb {
  border-radius: 10px;
  width: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #dadada;
}

.row-a1 .con .inputs .left .input .pop .con .left::-webkit-scrollbar {
  width: 5px;
  background-color: #ffffff;
}

.row-a1 .con .inputs .left .input .pop .con .left::-webkit-scrollbar-thumb {
  border-radius: 10px;
  width: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #dadada;
}
.row-a1 .con .inputs .left .input .pop .con .left .list .li:hover{
  cursor:pointer;
}
.row-a1 .con .inputs .left .input .pop .con .right .desc .txt:hover{
  cursor:pointer;
}
.row-a1 .con .btn {
  text-align: center;
  border: none;
  width: 100%;
  margin: 20px 0;
}
.row-a1 .con .btn input{
  width: 120px;
  height: 35px;
  line-height: 35px;
  background: #f66b17;
  color: #fff;
}
.row-a1 .con .btn:hover{
  background: none;
}
.row-a1 .con .btn input:hover{
  background: #f66b17;
}

@media only screen and (max-width: 959px) {
  .row-a1 .con .inputs{
    flex-direction: column;
  }
  .row-a1 .con .inputs .left{
    width: 75%;
  }
  .row-a1 .con .inputs .right{
    width: 75%;
  }
}
@media only screen and (max-width: 769px) {
  .row-a1 .con .inputs .left{
    width: 85%;
  }
  .row-a1 .con .inputs .right{
    width: 85%;
  }
}
@media only screen and (max-width: 500px) {
  .row-a1 .con .inputs{
    flex-direction: column;
  }
  .row-a1 .con .inputs .left{
    width: 95%;
  }
  .row-a1 .con .inputs .right{
    width: 95%;
  }
}