@media screen and (min-width: 768px) {
  .g-list img {
    width: 1rem;
    height: 1rem;
  }
  hu .g-list p {
    font-size: 0.2rem; /*margin-right: 10px;*/
  }
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
}
.marquee-content {
  display: inline-block;
  animation: marquee 15s linear infinite;
}
.marquee-content-2 {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.swiper-slide {
  width: 500px;
}
.g-list ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 20px;
  justify-content: flex-start;
}
.g-list li {
  flex: 0 1 calc(25% - 3px);
  box-sizing: border-box; /*text-align: center;*/
}
.g-list .img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.g-list p {
  margin: 10px 0 5px;
  font-size: 14px;
}
.g-list {
  overflow: visible;
  display: flex;
  flex-direction: column;
}
