.xcop8f7d-wrap {
  max-width: 1258px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 40px;
  background: transparent;
  box-sizing: border-box;
}
.xcop8f7d-title {
  text-align: center;
  font-size: 26px;
  margin: 0 0 25px;
  color: #2c3e50;
  line-height: 1.4;
  font-weight: 600;
}
.xcop8f7d-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
/* 240*160比例 */
.xcop8f7d-card {
  width: 100%;
  aspect-ratio: 240 / 160;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.xcop8f7d-card:hover {
  transform: translateY(-4px);
}
.xcop8f7d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xcop8f7d-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.65);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .xcop8f7d-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .xcop8f7d-wrap {
    padding: 18px 0 30px;
  }
  .xcop8f7d-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .xcop8f7d-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
  }
  .xcop8f7d-badge {
    font-size: 11px;
    padding: 2px 6px;
  }
}

.xcop8f7d-hide,
.xcop8f7d-ele {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}