/* 品牌概览专用样式 */
.brand-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 30px;
}



.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.brand-item img {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.brand-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
}
.agent-banner {
    width: 100%;
    height: 250px; /* 可根据需求调整高度 */
    background-color: #ccc; /* 占位背景色，和效果图一致 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.agent-banner .banner-text {
    font-size: 36px;
    color: #333;
    font-weight: bold;
}
/* 响应式 */
@media (max-width: 1024px) {
  .brand-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .brand-item img {
    height: 120px;
  }
  .brand-name {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .brand-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .brand-item img {
    height: 100px;
  }
  .brand-name {
    font-size: 14px;
  }
}