.row {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.ml-20 {
  margin-left: 20px;
}
.mt-20 {
  margin-top: 20px
}
.noBorder {
  border: none;
}

/* menu */
.menu-topBar {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EEEEEE;
}
.menu-topBar .vline {
  width: 4px;
  height: 40px;
  background: linear-gradient(to bottom, #FD0000, #B90000);
}
.menu-title {
  height: 40px;
  line-height: 40px;
  padding-left: 23px;
  padding-right: 9px;
  color: #FFFFFF;
  position: relative;
  font-size: 18px;
  font-weight: var(--font-bold-weight);
  background: url('../img/menu_title_01.png');
  background-size: 100% 100%;
}
.menu-title::after {
  content: '';
  width: 37px;
  height: 40px;
  background: url('../img/menu_title_02.png');
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 100%;
}


.moreBtn {
  font-size: 14px;
  color: #999999;
  cursor: pointer;
  margin-right: 28px;
}
.menu-content {
  height: 356px;
  overflow: hidden;
  border: 1px solid #E4E4E4;
}
.menu-list {
  height: 100%;
  padding: 13px 0;
  background: #FDFDFD;
}
.menu-item {
  width: 100%;
  height: 33px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--main-font-color);
  font-weight: var(--font-regular-weight);
  padding: 0 25px;
}
.menu-item-arrow {
  width: 5px;
  height: 7px;
}
.menu-item-text {
  margin: 0 16px;
  flex: 1;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow:ellipsis;
}
.menu-item-time {
  font-size: 12px;
  color: #666666;
}
.menu-item:hover {
  color: var(--hover-color) !important;
}

/* special menu */
.menu_01 {
  width: 290px;
}
.menu_01 .menu-topBar {
  justify-content: flex-start;
}
.menu_01  .menu-title {
  background: none;
  color: #DC0000;
  padding: 0;
}
.menu_01  .menu-title::after {
  display: none;
}
.menu_01 .titleIcon {
  width: 17px;
  height: 17px;
  margin-left: 24px;
  margin-right: 11px;
}
.menu_01 .menu-content {
  border-top: none;
}
.menu_01 .menu-item-icon {
  width: 12px;
  height: 12px;
}
.menu_01 .menu-item {
  height: 59px;
  padding: 0 26px;
  background-color: #fff;
  font-weight: var(--font-bold-weight);
}
.menu_01 .menu-item:nth-of-type(2n) {
    background-color: #FDFDFD;
}
.noBorder {
  border: none;
}