.sidebar {
  display: flex;
  align-items: center;
  width: 1184px;
  background: #DBF47E;
  border-radius: 14px;
}

.menu-index {
  width: 100%;
  height: 40px;
  margin-bottom: 6px;
  background: linear-gradient(270deg, #035FF5 0%, #00A8F9 100%);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.menu-index-item {
  margin-left: 20px;
  height: 16px;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 16px;
  text-align: left;
  font-style: normal;
  text-decoration: none;
}

.menu-index-arrow {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.menu-section {
  flex: 1;
  position: relative;
  padding: 20px 30px 0;
  display: flex;
}

.menu-section a {
  text-decoration: none;
}

.submenu {
  display: flex;
  flex-wrap: wrap;
}

.submenu-item {
  font-weight: 400;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.submenu a {
  width: 50%;
  padding-bottom: 16px;
  text-align: center;
}

.submenu-item a:last-child {
  padding-right: 0;
}

.menu-header-name {
  font-weight: 600;
}

.submenu-item:hover {
  color: #3787F6;
}

.menu-section:nth-child(1) {
  flex: 2;
}

.menu-section:nth-child(1) .submenu a {
  width: 20%;
}

.menu-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 44%;
  background: #93B127;
  transform: translate(0, -50%);
}

.menu-section:last-child::after {
  width: 0;
}

.menu-section:nth-child(1) .menu-header-name {
  color: #3787F6;
}
