/* Store Gallery样式 - 无缝连接效果 */
.store-gallery {
  display: flex;
  flex-direction: column;
}

.store-gallery .store-item:first-child {
  margin-top: 60px;
}

.store-gallery .store-item {
  width: 100%;
  margin: 0;
  padding: 0;
}

.store-gallery .store-item img {
  /* width: 100%; */
  height: auto;
  display: block;
  border-radius: 0;
  max-width: 100%;
  margin: 0 auto;
}

.store-item-1{
  max-width:575px;
  margin: 0 auto;
  padding: 20px 0;
}
.store-item-1 img{
  padding: 20px 50px;
}
/* 手机版样式 */
@media (max-width: 767px) {
  section, .section {
    padding-top: 50px;
  }
  .store-gallery .store-item:first-child {
    margin-top: 30px;
  }
  .store-gallery .store-item img {
    width: 100vw;
    /* margin-left: calc(-50vw + 50%); */
  }
  .store-item-1{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}