/* ==================== 产品卡片 ==================== */
.product-service .item {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: var(--sp-48);
  margin-bottom: var(--sp-48);
  border: 1px solid var(--border-color);
  transition: none;
}
.product-service .item:hover {
  border-color: #000000;
  box-shadow: none;
}
.product-service .cover {
  width: 50%;
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: none;
}
.product-service .cover:hover {
  transform: none;
  box-shadow: none;
}
.product-service .text {
  width: 50%;
  color: #000000;
}
.product-service .title {
  padding: 0 2rem;
  box-sizing: border-box;
  color: #000000;
}
.product-service .desc {
  padding: 0 2rem;
  margin-top: 16px;
  box-sizing: border-box;
  color: var(--text-secondary);
}

/* 图片左右交替 */
.product-service .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.product-service .item:nth-child(2n) .cover {
  order: 2;
}
.product-service .item:nth-child(2n) .text {
  order: 1;
}

/* ==================== 品牌墙 ==================== */
.brand {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-16);
  margin-bottom: var(--sp-48);
}
.brand > div {
  width: 100%;
  min-width: unset;
  height: 80px;
  line-height: 80px;
  box-sizing: border-box;
  box-shadow: none;
  text-align: center;
  padding: 0 var(--sp-8);
  background-color: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand > div:hover {
  border-color: #000000;
  box-shadow: none;
  transform: none;
}
.brand > div img {
  max-height: 100%;
  object-fit: contain;
  background-color: var(--bg-card);
}

/* ==================== "了解更多" 按钮 ==================== */
.more-btn,
.more-btn:link,
.more-btn:visited,
.more-btn:hover,
.more-btn:focus,
.more-btn:active {
  display: inline-block;
  padding: 10px 28px;
  margin-top: var(--sp-24);
  background: #000000;
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  text-decoration: none !important;
}
.more-btn:hover {
  color: #fff !important;
  background: #333333;
  transform: none;
  text-decoration: none !important;
}

/* ==================== 合作伙伴 ==================== */
.section-partner .container .item .cover {
  width: 100%;
  object-fit: contain;
  opacity: 0;
}
.section-partner .section-header {
  max-width: 100%;
}

/* ==================== 占位背景 ==================== */
.bg-cover {
  position: relative;
  background-color: var(--border-color);
}
.bg-cover .cover {
  opacity: 0;
}
.bg-cover .more-tip {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 24px;
}

/* ==================== 品牌按钮 ==================== */
.brand-btn {
  display: block !important;
  margin: 0 auto !important;
  width: fit-content;
  text-align: center;
}

/* ==================== 技术合伙人流程图 ==================== */
.partner-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: var(--sp-48) auto;
  max-width: 1000px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
  padding: 0 var(--sp-8);
}
.flow-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  margin-bottom: var(--sp-12);
  transition: transform 0.2s ease;
}
.flow-icon svg {
  width: 100%;
  height: 100%;
}
.flow-label {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--sp-4);
}
.flow-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.flow-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  width: 32px;
}
.flow-arrow svg {
  width: 24px;
  height: 24px;
}

/* ==================== 优势数字 ==================== */
.advantage {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.advantage .item {
  border: 1px solid var(--border-color);
  width: 20%;
  padding: 12px 0;
  color: #000000;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: none;
}
.advantage .item:hover {
  border-color: #000000;
  box-shadow: none;
  transform: none;
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
  .product-service .item {
    width: 100%;
    flex-wrap: wrap;
  }
  .product-service .cover {
    width: 100%;
    margin-bottom: 16px;
  }
  .product-service .text {
    width: 100%;
  }
  .pro-content .item {
    width: 25%;
  }
  .brand {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-service .item:nth-child(2n) .cover {
    order: 1;
  }
  .product-service .item:nth-child(2n) .text {
    order: 2;
  }
  .more-btn {
    margin-bottom: var(--sp-16);
  }
  .advantage .item {
    width: 45%;
  }
  .advantage .item:nth-child(1),
  .advantage .item:nth-child(2) {
    margin-bottom: 16px;
  }
  .bg-cover .more-tip {
    width: 100%; height: 100%; left: 0;
  }
  .partner-flow {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-8);
  }
  .flow-step {
    width: 100%;
    max-width: 260px;
  }
  .flow-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    width: 24px;
  }
}
@media (max-width: 992px) {
  .section-partner .container .item {
    width: 100%;
  }
}
