.header {
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  justify-content: space-evenly;
}

.logo {
  width: 155px;
  height: 35px;
}

.logo>img {
  width: 100%;
}

.nav_box {
  position: relative;
  width: 65%;
}

.poaeNav {
  position: absolute;
  right: 0;
}

.Nav {
  display: flex;
}

.Nav>li {
  margin-right: 30px;
  height: 45px;
  line-height: 60px;
  color: #696969;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* 激活样式*/

.active {
  /* color: #346ff4 !important; */
  border-bottom: 3px solid #517CFF;
}

.calbtne {
  width: 101px;
  height: 33px;
  background-color: #517CFF;
  border-radius: 15px;
  border: none;
  color: #fff;
  margin-top: 15px;
  cursor: pointer;
}

/* 弹窗 */
.box-containter {
  position: absolute;
  left: calc(50% - 60px);
  display: flex;
  margin: 0;
  padding: 0;
  background-color: #fff;
  margin-top: 10px;
  border-radius: 4px;
  box-shadow: 0px 2px 8px 0px rgba(128, 128, 128, 0.55);
}

.left-box,
.right-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box-item {
  height: 20px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
  padding: 10px;
}

.hr {
  height: 1px;
  width: 90%;
  margin: 10px 5% 0 5%;
  background-color: #696969;
}

.box-item:hover {
  border-radius: 4px;
  background-color: #ccc;
}