/* MiningTech 网站公共样式 */

/* 字体与颜色 */
.logo-font {
  font-family: 'Pacifico', cursive;
}
.bg-primary {
  background-color: #002C6A;
}
.text-primary {
  color: #002C6A;
}
.bg-primary-light {
  background-color: rgba(0, 44, 106, 0.1);
}
.btn-primary {
  background-color: #FF6B00;
}
.text-dark-blue {
  color: #1B3764;
}

/* 下拉菜单样式 */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 20;
  min-width: 12rem;
  padding: 0.5rem 0;
  /* 注意：此处不设置display，由JavaScript控制 */
}
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #4B5563;
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  background-color: #F3F4F6;
}

/* 滚动条样式 */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
} 