ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.club p,
.club h1,
.club h2,
.club h3,
.club h4 {
  margin: 0;
}
.club a {
  text-decoration: none;
  color: inherit;
}
.club {
  font-size: 14px;
}
.club * {
  box-sizing: border-box;
}
.club img {
  width: 100%;
  height: 100%;
  display: block;
}

.club .club-city {
  --left: calc(-50% - 1180px / 2);
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translate(var(--left), 0);
  z-index: 10;
  background: #f5f7fa;
  border-radius: 6px;
  width: 74px;
  padding: 20px 9px;
  transition: transform 0.3s linear;
  opacity: 0;
}
.club .club-city.show {
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  .club .club-city {
    left: 13px;
    transform: translate(0, -50%);
  }
}
.club .club-city .club-city-title {
  margin-bottom: 16px;
}

.club .club-city .club-city__item {
  width: 56px;
  height: 28px;
  background: #ffffff;
  border-radius: 18px;
  color: #4a4a54;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.club .club-city .club-city__item.active,
.club .club-city .club-city__item:hover {
  background: #2266ff;
  color: #ffffff;
}
.club .club-city .club-city__item:not(:last-child) {
  margin-bottom: 12px;
}

.club .club-section {
  min-width: 1180px;
  padding: 50px 0;
}

.club .club-wrapper {
  width: 1180px;
  margin: 0 auto;
}
.club .club-section {
  background-color: #ffffff;
}
.club .club-section:nth-child(even) {
  background-color: #f5f7fa;
}

.club .club-main {
  width: 1102px;
  margin: 0 auto;
}

.club .club-section-title {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 30px;
}
.club-section-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.club .club-section:nth-child(even) .club-section-item {
  background: #ffffff;
}
.club-section-item {
  padding: 24px 18px;
  background: #f5f7fa;
  border-radius: 6px;
  width: 378px;
  height: 335px;
}
.club-section-item:hover .club-section-item_img-wrapper > img {
  transform: scale(1.1);
}
.club-section-item__title {
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}
.club-section-item_img-wrapper {
  position: relative;
  width: 342px;
  height: 192px;
  margin: 20px 0;
  display: block;
  overflow: hidden;
}
.club-section-item_img-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
/* .club-section-item_img-wrapper > img:hover {
  transform: scale(1.1);
} */
.club-section-item_location {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96px;
  height: 28px;
  background: url(/assets/club/images/location-bg.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
}
.club-section-item_location > div {
  color: #ffffff;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.club-section-item_infos {
  display: flex;
}

.club-section-item_infos-item {
  position: relative;
  min-width: 84px;
}

.club-section-item_infos-item > div:first-child {
  color: #888999;
  margin-bottom: 5px;
}
.club-section-item_infos-item:not(:first-child) {
  padding: 0 28px;
}
.club-section-item_infos-item::after {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #cdcdd4;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.club-section-item_infos-item:last-child::after {
  visibility: hidden;
}
