

.store-list-container{
  margin-bottom: 70px;
}
.store-list-container .title{
  font-size: 120%;font-weight: bolder;
}

.store-list{
  margin-top: 12px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  flex-direction: column;
}
.store-list .line{
  display: flex;padding: 4px 0;
}
.store-list .line:nth-of-type(even){
  background-color: #fff
}
.store-list .store{
  width: 33%;
  line-height: 2;
  padding: 0 12px; 
}

@media screen and (max-width:640px) {
  .store-list .line{
    display: block;padding:0;
  }
  .store-list .line  .store{
    display: block;
    width: 100%;padding: 8px 12px;
  }
  .store-list .line:nth-of-type(even){
    background-color: transparent;
  }

  .store-list .line:nth-of-type(odd) .store:nth-of-type(even){
    background-color: #fff
  }

  .store-list .line:nth-of-type(even) .store:nth-of-type(odd){
    background-color: #fff
  }
}
 