/* 适配 PbootCMS position 标签生成的 a 链接样式 */
.breadcrumb-links a {
  color: #9ca3af;
  /* text-gray-400 */
  transition: color 0.3s ease;
  margin: 0 8px;
}

.breadcrumb-links a:hover {
  color: #ffffff;
}

.breadcrumb-links span {
  color: #6b7280;
  /* 分隔符颜色 */
}

/* 强制去除 pboot 默认可能生成的最后一位分隔符 */
.breadcrumb-links a:last-child {
  color: #0056b3;
  /* 最后一级高亮科技蓝 */
  pointer-events: none;
}

/* 自定义动画：缩放进入 */
@keyframes scaleIn {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
  }
}

.scaleIn {
  animation-name: scaleIn;
}

/* 联系我们页面 */
.contact-container {
  background-color: #ffffff;
  position: relative;
}

.indus-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.indus-input:focus {
  outline: none;
  border-color: #0056b3;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.05);
}

.info-tag {
  border-left: 4px solid #0056b3;
  background: #f8fafc;
  padding: 30px;
  transition: transform 0.3s ease;
}

.info-tag:hover {
  transform: translateX(10px);
}

.tech-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #9ca3af;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tech-value {
  font-size: 16px;
  font-weight: 800;
  color: #1f2937;
  margin-top: 5px;
  display: block;
}

.submit-btn {
  background: #111;
  color: #fff;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.submit-btn:hover {
  background: #0056b3;
  letter-spacing: 1px;
}

#map-container {
  height: 500px;
  filter: grayscale(100%) invert(90%) contrast(90%);
  opacity: 0.8;
  transition: all 0.5s ease;
}

#map-container:hover {
  filter: grayscale(20%);
  opacity: 1;
}

.pagebar a,
.pagebar span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #2c3e50;
  border-right: 1px solid #f3f4f6;
  transition: all 0.3s;
}


.pagebar a:hover {
  background: #f9fafb;
  color: #0056b3;
}

.pagebar .current {
  background: #0056b3;
  color: #fff;
}