.manufacturer-section {
  width: 100%;
  background-color: #fff;
}

.manufacturer-section .manufacturer-top {
  width: 100%;
  height: 400px;
  background-image: url(/dist/img/background/bg_04.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.manufacturer-section .manufacturer-top .manufacturer-top-contain {
  width: 1400px;
  margin: 0 auto;
  color: #fff;
  padding-top: 50px;
}

.manufacturer-section .manufacturer-top .manufacturer-top-contain p {
  line-height: 1.8;
}

.alphabet-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 130px;
  z-index: 999;
  background-color: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.alphabet-nav-contain {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.alphabet-nav-contain a {
  text-decoration: none;
  padding: 5px 15px;
  color: #333;
  font-size: 18px;
}

.alphabet-nav-contain a:hover {
  color: #fff;
  background-color: #007bff;
}

.manufacturer-section .manufacturers-show {
  width: 100%;
  padding: 50px 0;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain {
  width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-index {
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  color: #1a5fb4;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 0.1px solid #1a5fb4;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-grid .manufacturer-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border: 1px solid #eee;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-grid .manufacturer-item .manufacturer-pic {
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-bottom: 20px;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-grid .manufacturer-item .manufacturer-pic img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-grid .manufacturer-item .manufacturer-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-grid .manufacturer-item:hover {
  border-color: #1a5fb4;
  background-color: #fff;
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-grid .manufacturer-item:hover .manufacturer-pic img {
  transform: scale(1.1);
}

.manufacturer-section .manufacturers-show .manufacturers-show-contain .manufacturer-grid .manufacturer-item:hover .manufacturer-name {
  color: #1a5fb4;
}