*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.contact-title{
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    margin-top: 1rem;

    font-size: 2rem;
    color: rgb(229, 111, 35);
    border-bottom: 5px solid rgb(210, 90, 43);
}
.contact-title h2 > span{
    margin-left: 1rem;
    padding-left: 1rem;
    font-weight: 300;
    font-style:italic;
    border-left: 5px solid rgb(210, 90, 43);
}
/* 联系图片 */
#contactMap{
  width: 75%;
  height: 60vh;
  margin: 20px auto;
  box-sizing: border-box;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.contactImg{
  box-sizing: border-box;
  width: 60%;
  margin: 10px auto;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.contactImg img{
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}
/*  */
.contact-tools{
    width: 1000px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;

}
.single-member{
    width: 280px; 
    font-family: sans-sarif; 
    margin: 30px 2.5%; 
    background-color: #fff; 
    text-align: center; 
    position: relative;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  }
  .member-image img{
    max-width: 100%; 
    vertical-align: middle;
  }
  h3 {
    font-size: 24px; 
    font-weight: normal; 
    margin: 10px 0 0; 
    text-transform: uppercase;
    color: #e5642b;
  }
  h5 {
    font-size: 16px; 
    font-weight: 300; 
    margin: 0 0 15px; 
    line-height: 22px;
    color: #e5642b;
  }
  p {
    height: 200px;
    font-size: 14px; 
    font-weight: 300; 
    line-height: 22px; 
    padding: 0 30px; 
    margin-bottom: 5px;
    background-color: rgb(254, 243, 232);
  }

  .effect-3{
    max-height: 302px; 
    min-height: 302px; 
    overflow: hidden;
  }
  .effect-3 h3{
    padding-top: 7px; 
    line-height: 33px;
  }
  .effect-3 .member-image{
    border-bottom: 5px solid #e5642b; 
    transition: 0.4s; 
    height: 212px; 
    width: 100%; 
    display: inline-block; 
    float: none; 
    vertical-align: middle;
  }
  .effect-3 .member-info{
    transition: 0.4s;
  }
  .effect-3 .member-image img{
    width: 100%; 
    height: 100%;
    vertical-align: bottom;

    object-fit: cover;
    object-position: center;

  }
  .effect-3:hover .member-image{
    border-bottom: 0; 
    /* border-radius: 0 0 50px 50px;  */
    height: 145px; 
    display: inline-block; 
    overflow: hidden; 
    width: 145px; 
    transition: 0.4s;
  }
    /* 720p响应式 */
    @media screen and  (max-width: 720px){
      .contact-tools{
        width:100%;
      }
      .contact-tools .single-member{
        width: 210px;
      }

      .contactImg{
        width: 100%;
        height: auto;
      }
    }
