.site-map {
  width: 1320px;
  padding: 20px 40px;
  box-shadow: 1px 1px 10px #eeeeee;
  margin: 0 auto 20px;
}

.site-map .map {
  padding: 20px 0;
  overflow: hidden;
}

.map .title {
  width: 100%;
  height: 42px;
  line-height: 42px;
  border-bottom: 2px solid #f5f5f5;
  font-weight: bold;
}

.map .title a {
  float: left;
  width: 130px;
  text-align: center;
  line-height: 42px;
  border-bottom: 2px solid #1275ca;
  color: #0662b1;
  font-size: 18px;
}

.map .con>a {
  display: inline-block;
  font-size: 16px;
  min-width: 164px;
  padding: 0 10px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: #f2f2f2;
  color: #333;
  margin-top: 20px;
  margin-right: 36px;
}

.map .con>a:hover {
  color: #ffffff;
  background: #1275ca;
}

@media screen and (max-width: 768px){
  .site-map{
    width: 100%;
    box-sizing: border-box;
    padding: .2rem;
  }
  .site-map *{
    box-sizing: border-box;
  }
  .site-map .map{
    padding: 0 0 .3rem;
  }
  .map .title{
    height: initial;
    line-height: initial;
  }
  .map .title a{
    float: none;
    display: inline-block;
    font-size: .36rem;
    line-height: .7rem;
    width: auto;
  }
  .map .con{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .map .con>a{
    font-size: .32rem;
    min-width: 48%;
    width: auto;
    height: .7rem;
    line-height: .7rem;
    margin: .2rem 0 0;
  }
}