@charset "utf-8";
.contact{
  display: grid;
  grid-template-columns: 45% auto;
  row-gap: 20px;
  column-gap: 5%;
  width: auto;
  height: auto;
  overflow: hidden;
}
@media (max-width:767px){
  .contact{
    grid-template-columns: auto;
  }
}
.contact_left{
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
}
.contact_right{
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
}
.title{
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}
.tbody{
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
  margin-top: 20px;
}
.lianxi_list{
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  row-gap: 20px;
  width: auto;
  height: auto;
  overflow: hidden;
}
.lianxi_tb{
  display: grid;
  grid-template-columns: 50px auto;
  column-gap: 20px;
  width: auto;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.lianxi_left{
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
}
.lianxi_right{
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
}
.lianxi_ico{
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--link-color-selected);
  border-radius: 50%;
}
.lianxi_name{
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
}
.form_list{
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  width: auto;
  height: auto;
  overflow: hidden;
  margin-top: 10px;
}
.form-left{display: none;}
.form-item{
  display: block;
  width: calc(50% - 20px/2 );
}
.form-item:nth-child(n+5){
  width:100%;
}
.form-tfoot{
  display: block;
}
#form-save{
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  background-color: var(--link-color-selected);
}
.tb{
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
  margin-top: 20px;
}
.thead{
  text-align: center;
}
.pic{
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: auto;
}
.map_thead{
  display: block;
  position: relative;
  text-align: center;
}
.map_thead>.title{
  display: inline-block;
  background-color: #fff;
  padding: 10px;
  margin: auto;
}
.map_thead:before{
  content: "";
  border-top:1px dotted #ddd;
  position: absolute;
  left: 0px;
  right: 0px;
  top:0px;
  bottom: 0px;
  margin: auto;
  display: block;
  z-index: -1;
  height: 0px;
}