nav {
  background-color: var(--blue);
  height: 80px;
}

.navbar {
  background-color: var(--blue);
  height: 80px;
}

.my-fluid {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: var(--blue);
}

.headLogo {
  width: 140px;
  /* height: 80px; */
}

.navbar-ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  width: 400px;
  gap: 20px;
}

.nav-link {
  width: 100px;
  text-align: center;
  color: #ffffff !important;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
  font-family: PingFang SC, PingFang SC;
  /* text-decoration: none; */
  display: inline-block;
  box-sizing: border-box;
}

.active {
  border-bottom: 3px solid #ffffff;

}

.blur {
  width: 200px;
  height: 80px;
  line-height: 80px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  margin-right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-form {
  position: relative;
}

.myicon-search {
  position: absolute;
  right: 50px;
  top: 4px;
  cursor: pointer;
  color: var(--blue);
}


.header-input {
  border-radius: 30px !important;
  height: 30px !important;
}

.btn-set,
.btn-lang,
.my-fluid .layui-form {
  margin-right: 40px;
}

.btn-set {
  position: relative;
  top: 3px;
  color: #FFFFFF;
  cursor: pointer;
}

.btn-lang {
  color: #FFFFFF;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  padding: 1px 2px;
  font-size: 12px;
}

.login-btn {
  width: 130px;
  height: 34px;
  background: #FFFFFF;
  border-radius: 17px 17px 17px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--blue);
}

.supportBox {
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.supportBox:hover .support {
  display: block;
}

.support {
  display: none;
  /* display: block; */
  min-width: 120px;
  position: absolute;
  top: 58px;
  left: 30%;
  transform: translateX(-50%);
  margin-top: 4px;
  color: #000;
  background-color: #fff;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.support p {
  margin: 8px 0;
  padding: 5px 10px;
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
  transform: all 1s;
}
.support p:hover{
  background-color: var(--blue);
  color: var(--w);
}

.noLogin{
  color: var(--w);
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.layui-icon-triangle-d{
  font-size: 20px;
}