.nav-bar .nav-bar-view {
  overflow: hidden;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background-color: rgba(18, 18, 18, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.nav-bar .nav-bar-control {
  display: flex;
  align-content: center;
  flex-wrap: nowrap;
  padding: 0 10px;
}

.time-clock {
  padding: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

* {
  font-family: "PingFangSC-Regular", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  /*系统默认菜单被禁用*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  /*早期浏览器*/
  -moz-user-select: none;
  /*火狐*/
  /*IE10*/
  user-select: none;
}
ul,
li {
  list-style: none;
}
* {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}
html,
body,
#app {
  width: 100%;
  height: 100%;
  min-width: 512px;
  min-height: 700px;
}

