/* 基础样式 */

#appHeader.global-header {
  display: flex;
  justify-content: space-between;
  box-sizing: content-box;
  width: 100%;
  height: 64px;
  user-select: none;

}

#appHeader.global-header .global-header-left {
  display: flex;
  padding-left: 24px;
  line-height: 64px;
}

#appHeader.global-header .global-header-left .global-header-logo {
  /* width: 176px; */
  height: 64px;
  margin-right: 50px;
}

#appHeader.global-header .global-header-right {
  display: flex;
  padding-right: 30px;
  /*line-height: 64px;*/
}


#appHeader.global-header .global-header-right .actions-btn {
  cursor: pointer;
}

/* #appHeader.global-header .global-header-right {
  font-size: 22px;
} */

#appHeader.global-header .global-header-right .icon-quit {
  margin-right: 10px;
  vertical-align: middle;
}

#appHeader.global-header .global-header-right .actions-btn .actions-btn-text {
  position: relative;
  font-size: 16px;
}

#appHeader.global-header .global-header-right .avatar {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
}

#appHeader.global-header .global-header-right .actions-btn-notice {
  margin: 0 30px;
}

#appHeader.global-header .global-header-right .action {
  display: inline-block;
  width: 22px;
  height: 100%;
  font-size: 22px;
  line-height: 64px;
  transition: all .3s;
  cursor: pointer;
}

#appHeader.global-header .global-header-right .action .ant-badge .action {
  width: 22px;
  height: 22px;
  font-size: 22px;
}

#appHeader.global-header .global-header-menu .menu-group {
  position: relative;
  display: inline-block;
  margin-right: 4px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}

#appHeader.global-header .global-header-menu .menu-group .first-menu {
  display: inline-block;
  height: 100%;
  padding: 0 10px;
}

#appHeader.global-header .global-header-menu .menu-group .second-menu-list {
  position: absolute;
  left: -16px;
  z-index: 99999;
  overflow: auto;
  min-width: 146px;
  /* width: 146px; */
  max-height: calc(100vh - 64px);
  padding: 8px 0;
  color: #333;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,.15);
}

#appHeader.global-header .global-header-menu .menu-group .second-menu-list a {
  color: #333;
}

#appHeader.global-header .global-header-menu .menu-group .second-menu-list .second-menu-item {
  /* overflow: hidden; */
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 40px;
  /* text-overflow: ellipsis;
  white-space: nowrap; */
}

#appHeader.global-header .global-header-menu .menu-group .second-menu-list .second-menu-item:hover {
  color: #076dd9;
  background-color: #eaf5ff;
}

#appHeader.global-header .third-menu-list {
  position: absolute;
  top: 64px;
  z-index: 99999;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  min-width: 1200px;
  max-height: 75vh;
  background-color: rgb(245, 245, 246);
  box-shadow: 0 2px 5px 0 #e8e8e8;
}

#appHeader.global-header .third-menu-list .list-container {
  display: flex;
  width: 1440px;
  margin: 0 auto;
}

#appHeader.global-header .third-menu-list .white_bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
  width: 50%;
  height: 100%;
  min-height: 100%;
  background-color: #fff;
}

#appHeader.global-header .third-menu-list .hot-menu {
  display: flex;
  justify-content: right;
  width: 240px;
  height: 100%;
  padding-bottom: 40px;
  padding-left: 30px;
  color: #333;
}

#appHeader.global-header .third-menu-list .hot-menu a {
  color: #333;
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
  #appHeader.global-header .third-menu-list .list-container {
    width: 1200px;
  }
}

#appHeader.global-header .third-menu-list .menu-list {
  height: auto;
  padding-bottom: 40px;
  padding-left: 60px;
  /* width: 1200px; */
  color: #333;
  background-color: #fff;
}

#appHeader.global-header .third-menu-list .menu-list a {
  color: #333;
}

#appHeader.global-header .third-menu-list.hot-menu-null {
  background-color: #fff;
}

#appHeader.global-header .third-menu-list.hot-menu-null .menu-list {
  margin: 0 auto;
}



#appHeader.global-header .third-menu-list .menu-item-container {
  display: inline-block;
  width: 224px;
  padding-right: 8px;
  margin-top: 40px;
  line-height: 22px;
}

#appHeader.global-header .third-menu-list  .menu-item-container .menu-title {
  overflow: hidden;
  margin-bottom: 20px;
  color: #1890ff;
  font-size: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

#appHeader.global-header .third-menu-list  .menu-item-container .menu-item {
  overflow: hidden;
  margin-bottom: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

#appHeader.global-header .third-menu-list  .menu-item-container .menu-item-content:last-child {
  margin-bottom: 0;
}

#appHeader.global-header .third-menu-list  .menu-item-container .menu-item:hover {
  color: #1098ff;
}

#appHeader.global-header .ant-badge-count {
  top: 18px;
}

#appHeader.global-header .ant-badge-dot {
  top: 20px;
}

#appHeader .user-dropdown-menu-wrapper .anticon {
  font-size: 24px !important;
  vertical-align: -webkit-baseline-middle;
}

/* 主题切换样式 */
#appHeader.global-header-dark {
  background-color: #096dd9;
}

#appHeader.global-header-light {
  background-color: #fff;
  border-bottom: 1px solid #e8e8e8;
}

#appHeader.global-header-dark .global-header-menu .menu-group .first-menu {
  color: #fff;
}

#appHeader.global-header-light .global-header-menu .menu-group .first-menu {
  color: #333;
}

#appHeader.global-header-light .global-header-menu .menu-group .first-menu:hover {
  color: #0091ff;
}

#appHeader.global-header-light .global-header-menu .menu-group {
  position: relative;
}

#appHeader.global-header-light .global-header-menu .menu-group .first-menu:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #0091ff;
}


#appHeader.global-header-dark .global-header-right {
  color: #fff;
}

#appHeader.global-header-light .global-header-right {
  color: #333;
}

#appHeader.global-header-light .global-header-right .ant-avatar {
  background-color: #eee;
}

#appHeader.global-header-dark .global-header-right .ant-avatar {
  background-color: #fff;
}

/* 前后台样式 */

#global-header-right-slot img {
 /* width: 22px  !important;*/
  /*height: 22px  !important;*/
  /*vertical-align: text-top !important;*/
}

/*处理一键置灰副导航出不来问题*/
#appHeader.global-header .menu-group {
  font-size: 18px !important;
}

#appHeader.global-header .bottom-menu .bottom-men-left .first-menu {
  font-size: 16px !important;
}

body>div:first-child{
  filter: none !important;
}

body>div:first-child>div:first-child{
  filter: none !important;
}

body>div:first-child>div:first-child .global-header{
  filter: none !important;
}

#appHeader.global-header .top-menu {
  filter: none !important
}

#appHeader.global-header .global-header-left {
  filter: none !important
}

#appHeader.global-header .global-header-menu {
  filter: none !important
}

#appHeader.global-header .menu-group {
  filter: none !important
}

#appHeader.global-header .global-header-menu .menu-group .second-menu-list {
  filter: none !important;
}

 #appHeader.global-header .global-header-left .global-header-logo {
  margin-right: 25px !important; 
}

#appHeader.global-header .global-header-left .global-header-logo>img {
  margin-top:-5px !important; 
}