.tabwrap {
  width: 1300px;
  height: 50px;
  display: none;

  margin: 0 auto;
}

.tabwrap ul {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 50px auto 0;

  border: 1px solid rgb(179, 179, 179);
}

.tabwrap ul li {
  width: 100%;
  height: 100%;
  background: white;
  border-left: 1px solid rgb(179, 179, 179);
  /* box-sizing: border-box; */
}
.tabwrap ul li:first-child {
  border-left: 0;
}
.tabwrap ul li a {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 16px;
  font-weight: 300;
  color: #3d4d56;
  font-weight: 600;
}

.tabwrap ul li a.tab_on {
  font-weight: 600;

  color: white;
  background: #3d4d56;
}
