@charset "UTF-8";
#uw-header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 6666;
  height: 58px;
  background-color: #fff; }

.uw-header-model {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 6666;
  height: 58px;
  background-color: #fff;
  padding-left: 5.42%;
  padding-right: 4.17%;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 下拉菜单：默认左对齐，不再用 left:50% 居中（避免出界） */
  /* hover 触发 */
  /* hover “桥接”，防止鼠标从标题移到菜单时闪断 */
  /* 下拉链接 */ }
  .uw-header-model-search {
    width: 268px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 18px 18px 18px 18px;
    border: 1px solid #EFEFEF;
    display: flex;
    align-items: center;
    padding: 0 16px;
    margin-right: 128px; }
    .uw-header-model-search input {
      border: 0;
      flex: 1; }
  .uw-header-model .uw-header-model-nav {
    display: flex;
    align-items: center;
    gap: 0 104px;
    flex: 1;
    min-width: 0;
    justify-content: center; }
  .uw-header-model .uw-header-model-nav .nav-item {
    position: relative;
    height: 58px;
    display: flex;
    align-items: center; }
  .uw-header-model .uw-header-model-nav .nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 22px;
    padding: 0 6px; }
    .uw-header-model .uw-header-model-nav .nav-link.active {
      font-weight: 500;
      font-size: 18px;
      color: #4FD2FF;
      text-decoration-line: underline; }
  .uw-header-model .uw-header-model-nav .nav-link:hover {
    color: #4FD2FF;
    text-decoration-line: underline; }
  .uw-header-model .uw-header-model-nav .nav-link span {
    font-size: 16px;
    font-weight: 500; }
  .uw-header-model .uw-header-model-nav .nav-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: #fff;
    border-radius: 0;
    padding: 10px 0;
    display: none;
    z-index: 999;
    box-shadow: 0px 10px 50px 0px rgba(140, 168, 177, 0.2); }
  .uw-header-model .uw-header-model-nav .nav-item.has-drop:hover .nav-drop {
    display: block; }
  .uw-header-model .uw-header-model-nav .nav-item.has-drop::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px; }
  .uw-header-model .uw-header-model-nav .nav-drop a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 22px;
    white-space: nowrap;
    text-align: center; }
  .uw-header-model .uw-header-model-nav .nav-drop a:hover {
    color: #4FD2FF;
    text-decoration-line: underline; }