/* 头部 */
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background-color: #1f2d3d;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

header .navbar .left {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

header .navbar .left .logo {
  margin-right: 10px;
  height: 40px;
  width: 40px;
}

header .navbar .left .system-name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

header .navbar .right {
  display: flex;
  margin-right: 15px;
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-items: center;
  font-weight: normal;
}

header .navbar .right .mechanism {
  color: var(--primary-color);
}

header .navbar .right .right-menu {
  cursor: pointer;
  position: relative;
}

header .navbar .right .right-menu .drop-down {
  width: 12px;
  margin-left: 5px;
}

.drop-down-select {
  position: absolute;
  z-index: 9;
  top: 50px;
  color: #333;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.drop-down-select::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  z-index: 1;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #e4e7ed;
  border-bottom-color: transparent !important;
  border-right-color: transparent !important;
}

.drop-down-select-content {
  border-radius: 3px;
  padding: 5px 0;
  width: 110px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #dee1e8;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  min-height: 50px;
  max-height: 200px;
  overflow: auto;
}

.drop-down-select-content li a {
  padding: 8px 15px;
  cursor: pointer;
  display: block;
  color: #333;
}

.drop-down-select-content li a:hover {
  color: var(--primary-color);
  background: #e8f2ff;
}

.drop-down-select-content li:not(:last-child) a {
  border-bottom: 1px solid #e6e9f2;
}

header .navbar .right .toggle-mechanism {
  color: #fff;
  cursor: pointer;
  position: relative;
}

header .navbar .right .toggle-mechanism img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

.toggle-mechanism-select {
  position: absolute;
  z-index: 9;
  top: 50px;
  color: #333;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  background: #fff;
}

.toggle-mechanism-content {
  border-radius: 3px;
  padding: 5px 0;
  width: 100px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #dee1e8;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  min-height: 50px;
  max-height: 200px;
  overflow: auto;
}

.toggle-mechanism-content::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  z-index: 1;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #e4e7ed;
  border-bottom-color: transparent !important;
  border-right-color: transparent !important;
}

.toggle-mechanism-content li a {
  display: flex;
  padding: 8px 15px;
  cursor: pointer;
}

.toggle-mechanism-content li a {
  color: #333;
}

.toggle-mechanism-content li.active {
  color: var(--primary-color);
}

.toggle-mechanism-content li:hover {
  background: #f5f7fa;
}

/* 容器 */
.dk-container {
  height: calc(100% - 70px);
  display: flex;
  flex: 1;
  flex-basis: auto;
  flex-direction: row;
  min-width: 0;
}

/* 侧边栏 */
.dk-aside {
  position: relative;
}

/* 切换按钮 */
.dk-aside .toggle_button {
  position: absolute;
  background: #304156;
  font-size: 20px;
  padding: 5px;
  right: -30px;
  top: 0;
  color: #fff;
  z-index: 999;
  cursor: pointer;
}

.dk-aside .aside-menu {
  height: 100%;
  width: 240px;
  background: #304156;
  overflow-y: auto;
  position: relative;
}

.aside-menu .menu-item > a {
  padding: 0 20px;
  height: 56px;
  line-height: 56px;
  align-items: center;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  position: relative;
}

.aside-menu .menu-item a i {
  margin-right: 10px;
  color: #fff;
  font-size: 14px;
}

.aside-menu .menu-item.one-level:hover {
  background: #1d2735;
}

.aside-menu .menu-item .drop-down {
  width: 12px;
  position: absolute;
  right: 20px;
}

.aside-menu .second-level .aside-menu-2 {
  background: #1f2d3d;
}
.aside-menu .second-level .aside-menu-2 li:hover {
  background: #304156;
}

.aside-menu .menu-item span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 5px;
}

.aside-menu .active > a {
  background-color: #1890ff !important;
  color: #fff;
}

.aside-menu .aside-menu-2 {
  display: none;
}

.aside-menu .menu-item-2 > a {
  padding: 0 20px 0 40px;
  height: 50px;
  line-height: 50px;
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  position: relative;
}

.dk-container .main {
  overflow: auto;
  width: calc(100% - 240px);
}

.dk-container main {
  padding: 20px;
}
/* 用户告知书1 */
.notice-wrap-mark {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .6);
}
.notice-contain {
  position: fixed;
  top: 100px;
  left:  300px;
  width: 65%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
 }
 .notice-view {
      position: relative;
  }
  .notice-view .title {
      width: 100%;
      text-align: center;
      margin: 16px 0;
      font-weight: 600;
      font-size: 16px;
      color: #1D2129;
  }
  .notice-view .notice-content {
      padding: 0 16px;
      line-height: 20px;
      font-size: 12px;
      color: #1D2129;
  }
  .notice-view .notice-content .notice-con-title {
      font-size: 14px;
      color: #1D2129;
      line-height: 22px;
  }
  .notice-view .btn-view {
      background-color: #fff;
      padding: 20px;
      box-sizing: border-box;
      font-size: 12px;
      color: #1D2129;
      line-height: 18px;
  } 
  .notice-view .btn-view .checkout-view {
      display: flex;
      align-items: baseline;
  }
  .notice-view .btn-view .checkout-view>img {
      width: 10px;
      height: 10px;
      margin-right: 4px;
  }
  .notice-view .btn-view .btn-next {
      display: flex;
      justify-content: center;
      margin-top: 20px;
  }
  .notice-view .btn-view .btn-next .btn-cancel {
      color: rgb(51, 51, 51);
      background: rgb(246, 247, 251);
      padding: 10px 32px;
      border-radius: 100px;
      margin-right: 16px;
      text-align: center;
  }
  .notice-view .btn-view .btn-next .btn-confirm {
      color: #fff;
      background: #3F6696;
      padding: 10px 32px;
      border-radius: 100px;
      text-align: center;
  }
  /* 用户告知书2 */