.my-top-bar {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
  /* 添加这行以支持 Safari */
  user-select: none;
}

.logo {
  width: 345px;
  height: 65px;
}

.logo img {
  height: 100%;
  width: 100%;
}

.navbar {
  display: flex;
  font-size: 18px;
  padding-top: 10px;
}

.navbar .navbar-item {
  padding: 3px 28px 5px 28px;
  margin-left: 40px;
  border-radius: 20px;
  cursor: pointer;
}

.navbar .active {
  background-color: #3d80b7;
  color: #fff;
}

.navbar-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 3px 28px 5px 28px;
  border-radius: 20px;
}