/* 背景图设置 */
.styles_header__dg_BN {
  width: 100%;
  height: 660px; /* 可调整高度 */
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("/searchBarBg.jpeg"); */
  background: linear-gradient(
    155deg,
    #021e18 0%,
    /* 极暗青（起始） */ #073029 20%,
    /* 暗青过渡 */ #114d42 40%,
    /* 主极光青 */ #2d8373 60%,
    /* 亮青绿 */ #52a999 80%,
    /* 荧光高光 */ #87d3c5 100% /* 柔光白（最亮） */
  );

  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 搜索引擎选择器 */
.styles_engineSelector__57Bj3 {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.styles_engineButton__0_9Ef {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.styles_engineButton__0_9Ef:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.styles_engineButtonActive__PWgRx {
  background-color: #1677ff !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

