.pc-menu {
  width: 100%;
}

li.login-button span.login-button-inner {
  min-width: 102px;
  display: block;
  background-color: #3b9ae8;
  border: 2px solid #3b9ae8;
  color: #fff;
  padding: 2px 8px 2px 28px;
  border-radius: 16px;
  position: relative;
  margin-top: -6px;
  cursor: pointer;
}
li.login-button span.login-button-inner::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 12px;
}
li.login-button span.login-button-inner:hover {
  opacity: 0.9;
}
li.login-button span.login-button-inner.active {
  background-color: #fff;
  color: #2167bc;
  border: 2px solid #3b9ae8;
}
li.login-button span.login-button-inner.active::before {
  border-color: #3b9ae8 transparent transparent transparent;
}
li.login-button:hover {
  border-bottom: 0px;
}

.login-menu {
  position: absolute;
  margin-left: -14px;
  margin-top: 8px;
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 4px 4px rgba(103, 103, 103, 0.2);
          box-shadow: 4px 4px rgba(103, 103, 103, 0.2);
  width: 100%;
  left: 14px;
  margin-top: 8px;
  padding: 0px 24px 0 24px;
  background: #fff;
  border: none;
  max-height: 100vh;
  overflow-y: visible;
  border-top: 8px solid #F8F8F8;
  min-height: 580px;
  display: none;
}
.login-menu::-webkit-scrollbar {
  display: none;
}
.login-menu .close-button {
  width: 200px;
  color: #333;
  background-color: #eee;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-radius: 24px;
  font-weight: bold;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 32px;
  padding-left: 24px;
  cursor: pointer;
  font-size: 14px;
}
.login-menu .close-button::before {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 12px;
  left: 24px;
}
.login-menu .close-button::after {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 12px;
  left: 24px;
}
.login-menu .close-button:hover {
  background-color: #ddd;
}
