/* ============== 主营行业类目 ============== */
.swy-industries {
  padding: 100px 0;
  background: white;
  position: relative;
}
.swy-industries__top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ffb800);
}
.swy-industries__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.swy-industries__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: stretch;
}
.swy-industries__label {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a5b 100%);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.22);
  position: relative;
  overflow: hidden;
  min-height: 292px;
}
.swy-industries__label-deco1 {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.swy-industries__label-deco2 {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.swy-industries__label-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  position: relative;
  z-index: 1;
}
.swy-industries__label-count {
  position: absolute;
  bottom: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.4;
}

.swy-industries__cards {
  overflow: hidden;
  min-width: 0;
}
.swy-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.swy-industries__track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

/* 品牌卡片 */
.swy-brand {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef0f3;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.swy-brand:hover {
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-6px);
}
.swy-brand__img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.swy-brand__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.swy-brand:hover .swy-brand__img { transform: scale(1.06); }
.swy-brand__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.82), rgba(255, 184, 0, 0.82));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swy-brand:hover .swy-brand__hover { opacity: 1; }
.swy-brand__hover-btn {
  padding: 10px 22px;
  border: 1px solid white;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: scale(0.85);
  transition: transform 0.3s ease;
}
.swy-brand:hover .swy-brand__hover-btn { transform: scale(1); }
.swy-brand__hover-btn svg { width: 14px; height: 14px; }
.swy-brand__info {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}
.swy-brand__name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 36px);
}
.swy-brand__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.swy-brand:hover .swy-brand__arrow { background: linear-gradient(135deg, #ff6b35, #ffb800); }
.swy-brand__arrow svg { width: 13px; height: 13px; }
.swy-brand__arrow svg path { stroke: #999; transition: stroke 0.3s ease; }
.swy-brand:hover .swy-brand__arrow svg path { stroke: white; }
