:root {
  --el-menu-item-height: 45px !important;
}
/**
 * 缩小展开
 */
html.hideSidebar {
  --frame-sidebar-left: 80px;
  --frame-sidebar-menu-pd: 10px;
  --frame-sidebar-icon-ml: 10px;
}
html.openSidebar {
  --frame-sidebar-left: 200px;
  --frame-sidebar-menu-pd: 20px;
  --frame-sidebar-icon-ml: 0;
}
/**
 * 导航tabs
 */
html.hideNavtabs {
  --frame-navtabs-top: 50px;
}
html.openNavtabs {
  --frame-navtabs-top: 90px;
}
#cloud-main-container {
  width: 100%;
  height: 100%;
}

/**
 * 水印
 * 去掉背景，兼容水印
 */
html.openWatermark {
  .cloud-login-change-box1 {
    background: unset;
    backdrop-filter: unset;
  }
  .cloud-login-change-item-bao {
    background: unset;
  }

  .cloud-header__wrap {
    background: unset;
  }
  .cloud-sidebar__wrap {
    background: unset;
  }
  .cloud-subapp-menu-box .el-menu {
    background: unset;
  }
  .cloud-pages__wrap {
    background: unset;
  }
  .cloud-navtabs__box {
    background: unset;
  }
  .cloud-pages__box .el-table {
    background: unset;
  }
  .cloud-pages__box .el-table th.el-table__cell {
    background: unset;
  }
  .cloud-pages__box .el-table tr {
    background: unset;
  }
  .cloud-pages__box .el-table th.el-table-fixed-column--right {
    background-color: var(--el-table-tr-bg-color);
  }
  .cloud-pages__box .el-table td.el-table-fixed-column--right {
    background-color: var(--el-table-tr-bg-color);
  }
  .cloud-pages__box .el-table tr.hover-row td.el-table-fixed-column--right {
    background-color: var(--el-table-row-hover-bg-color);
  }
}

/**
 * =========== 框架
 */
.cloud-frame__wrap {
  width: 100%;
  height: 100%;
  /* display: flex;
  flex-direction: column; */
}
/**
 * =========== 主布局
 */
.cloud-layout__wrap {
  flex: 1;
  display: flex;
  height: 100%;
}
/**
 * =========== 头部
 */
.cloud-header__wrap {
  display: flex;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  border-bottom: 1px solid var(--frame-border-color);
  background: var(--frame-header-bg);
  color: var(--frame-text-color);
}
.cloud-header__logo {
  width: var(--frame-sidebar-left);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.cloud-header__logo a.cloud-header__logo-a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cloud-header__logo img.cloud-header__logo-img {
  padding-left: 5px;
  width: 45px;
}
.cloud-header__logo div.cloud-header__logo-title {
  font-size: 16px;
  text-align: center;
}

/**
* ==== 缩小打开
*/
.cloud-header__opt {
  height: 100%;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  font-size: 14px;
  min-width: 40px;
  padding: 0 10px;
  justify-content: center;
}
.cloud-header__opt span {
  margin-left: 5px;
}
.cloud-header__opt .el-icon svg path {
  fill: currentColor;
}
.cloud-header__opt:hover {
  background: var(--el-color-primary-light-9);
}
.cloud-header__opt.chopt-relative {
  position: relative;
  min-width: 50px;
}
.cloud-header__opt.chopt-relative:hover .el-icon svg {
  fill: currentColor;
  /* color: blue; */
}
.cloud-header__opt.chopt-relative .chopt-num {
  position: absolute;
  top: 7px;
  left: 22px;
  height: auto;
  line-height: normal;
  color: #ffffff;
  background-color: #ff0000;
  text-align: center;
  border-radius: 10px;
  padding: 1px 5px;
  font-size: 12px;
  transform: scale(0.9);
  z-index: 1;
}
/**
* 面包屑
*/
.cloud-header__breadcrumb {
  padding: 0 12px;
  display: flex;
  font-size: 13px;
  align-items: center;
}
/**
* ==== 占位菜单
*/
.cloud-header__seat {
  flex: 1;
  overflow: hidden;
}
/**
* ==== 信息
*/
.cloud-header__info {
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  font-size: 25px;
  min-width: 40px;
  justify-content: center;
  height: 100%;
  padding: 0 15px;
}
.cloud-header__info:hover {
  background: var(--el-color-primary-light-9);
}
.cloud-header__info_dropdown {
  width: 200px;
}
.cloud-header__info .el-dropdown span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cloud-header__info .chinfo-avatar {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  margin-right: 5px;
}
.cloud-header__info .chinfo-infoname {
  margin-right: 5px;
  display: flex;
  gap: 5px;
}
.cloud-header__info .chinfo-infobname {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
@media (max-width: 768px) {
  .cloud-header__info .chinfo-infobname {
    display: none;
  }
}
/**
*
*  左边布局
* =========== 左边侧栏菜单
*/
.cloud-sidebar__wrap {
  transition: width 0.28s;
  width: var(--frame-sidebar-left);
  height: calc(100% - 50px);
  position: fixed;
  margin-top: 50px;
  font-size: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  overflow: hidden;
  border-right: 1px solid var(--frame-border-color);
  background: var(--frame-slide-bg);
}
.cloud-sidebar__title {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  border-bottom: 1px solid var(--frame-border-color);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
  text-indent: 10px;
}
.cloud-sidebar__seat {
  height: 50px;
}
.cloud-sidebar__version {
  font-size: 12px;
  height: 50px;
  line-height: 50px;
  width: 100%;
  padding-left: 15px;
  position: absolute;
  bottom: 0;
  z-index: 999;
  background: var(--frame-header-bg);
}
.cloud-subapp-wrap {
  width: var(--frame-sidebar-left);
  height: 100%;
  transition: width 0.2s;
  display: flex;
  flex-direction: column;
}

.cloud-subapp-menu-box {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  padding-bottom: 20px;
}
.cloud-subapp-menu-box > .el-menu {
  border-right: none;
  border: none;
  width: 100%;
}
.cloud-subapp-menu-box > .el-menu .el-sub-menu__title {
  padding: 0 var(--frame-sidebar-menu-pd);
}
.cloud-subapp-menu-box > .el-menu .el-menu-item {
  padding: 0 var(--frame-sidebar-menu-pd);
}
.cloud-subapp-menu-box > .el-menu .el-menu-tooltip__trigger {
  padding: 0 var(--frame-sidebar-menu-pd);
}
.cloud-subapp-menu-box .el-menu-item.is-active {
  font-weight: 500;
}
.cloud-subapp-menu-box .el-menu-item svg path {
  fill: currentColor;
}
.cloud-subapp-menu-icon {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.cloud-subapp-menu-icon i {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-right: 5px;
  margin-left: var(--frame-sidebar-icon-ml) !important;
}
.cloud-subapp-menu-icon .cv-mask-icon {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-right: 5px;
  margin-left: var(--frame-sidebar-icon-ml) !important;
}
/**
* ===== 右边内容
*/
.cloud-pages__wrap {
  min-height: 100%;
  -webkit-transition: margin-left 0.28s;
  transition: margin-left 0.28s;
  margin-left: var(--frame-sidebar-left);
  position: relative;
  overflow-y: auto;
  width: 100%;
  background: var(--frame-main-bg);
  overflow: hidden;
}
.cloud-pages__box {
  /* position: relative; */
  width: 100%;
  height: calc(100% - var(--frame-navtabs-top));
  margin-top: var(--frame-navtabs-top);
  overflow-x: hidden;
}

/**
*** 
*** SameNavTabs页面
*** 
***/
.cloud-navtabs__wrap {
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 998;
  width: calc(100% - var(--frame-sidebar-left));
  transition: width 0.28s;
}

.cloud-navtabs__box {
  display: flex;
  height: 40px;
  position: relative;
  z-index: 999;
  border-bottom: 1px solid var(--frame-border-color);
  background: var(--frame-header-bg);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cloud-navtabs__box .btn-opt-left {
  width: 44px;
  height: 39px;
  border: 0;
  border-right: 1px solid var(--frame-border-color);
  border-radius: unset;
  background: var(--frame-tab-bg);
}
.cloud-navtabs__box .btn-opt-right {
  width: 44px;
  height: 39px;
  border: 0;
  border-radius: unset;
  border-left: 1px solid var(--frame-border-color);
  border-right: 1px solid var(--frame-border-color);
  background: var(--frame-tab-bg);
}
.cloud-navtabs__box .btn-opt-close {
  height: 39px;
  width: 90px;
  margin-left: 0px !important;
  border: unset;
  border-radius: unset;
  text-align: center;
  background: var(--frame-tab-bg);
}
.cloud-navtabs__main {
  width: calc(100% - 45px - 45px - 90px);
  padding: 0 5px;
}

.cloud-navtabs__main .el-scrollbar {
  height: 39px;
  line-height: 39px;
  padding: 0 10px;
}
.cloud-navtabs__main .el-scrollbar__wrap {
  overflow-x: auto;
  overflow-y: hidden;
}
.cloud-navtabs__main .el-scrollbar .el-scrollbar__wrap .el-scrollbar__view {
  white-space: nowrap;
  display: inline-block;
}
.cloud-navtabs__main .el-scrollbar__bar.is-vertical {
  width: 6px;
  height: 3px;
}
.cloud-navtabs__main .el-scrollbar__bar.is-horizontal {
  width: 6px;
  height: 3px;
}

.cloud-navtabs__main .el-scrollbar__wrap::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 8px;
}

.cloud-navtabs__main .el-scrollbar__wrap::-webkit-scrollbar {
  width: 6px;
  height: 3px;
  background-color: transparent;
  border-radius: 8px;
}

.cloud-navtabs__main .el-scrollbar__wrap::-webkit-scrollbar-thumb {
  background-color: #d0d0d0;
  border-radius: 8px;
}

.cloud-navtabs__main .el-scrollbar__thumb {
  background: none;
}
.cloud-navtabs__main .cloud-navtabs__tags {
  display: flex;
  height: 40px;
}
.cloud-navtabs__main .el-tag {
  background: var(--frame-tab-bg);
}
.cloud-navtabs__main .el-tag:nth-of-type(n + 2) {
  margin-left: 3px;
}
.cloud-navtabs__main .xxxxxx-tag {
  display: flex;
  align-items: center;
  height: 100%;
  border: unset;
  border-radius: unset;
  font-size: 14px;
  padding: 0 15px;
  background: var(--frame-tab-bg);
  color: var(--frame-tab-text-color);
}
.cloud-navtabs__main .xxxxxx-tag.active {
  background: var(--frame-tab-active-bg);
  color: var(--frame-tab-text-active-color);
}
/**
*** 
*** SameNavTabs页面
*** 右键菜单
***/
.cloud-navtabs__contextmenu {
  width: 100px;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  z-index: 3000;
  position: absolute;
  list-style-type: none;
  padding: 5px 0;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.2);
}
.cloud-navtabs__contextmenu li {
  margin: 0;
  padding: 0px 22px;
}
.cloud-navtabs__contextmenu li:hover {
  background: #f2f2f2;
  cursor: pointer;
}
.cloud-navtabs__contextmenu li button {
  color: #2c3e50;
}
/**
 * 抽屉设置
 */
.cloud-sett-drawer-body {
  padding: 0 20px;
}

.cloud-sett-drawer-skin {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cloud-sett-drawer-skin .el-card {
  width: 100%;
  height: 60px;
}

/**
* 暗黑模式
*/
.cloud-sett-drawer-body .light-switch {
  width: 40px;
  height: 20px;
  border: 1px solid #dcdfe6;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  padding-bottom: 0;
  padding-top: 0px;
  background-color: #ebeef5 !important;
  font-size: 12px;
}
.cloud-sett-drawer-body .light-switch .el-icon {
  background-color: #fff !important;
  padding: 2px;
  border-radius: 50%;
  color: #000;
  margin-left: -8px;
}

.cloud-sett-drawer-body .dark-switch {
  width: 40px;
  height: 20px;
  border: 1px solid #dcdfe6;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  padding-bottom: 0;
  padding-top: 0px;
  background-color: #ebeef5 !important;
  font-size: 12px;
  background-color: rgb(8, 8, 8) !important;
}
.cloud-sett-drawer-body .dark-switch .el-icon {
  color: #fff;
  margin-left: 15px;
}

/**
 * 路由动画
 */
.subapp-slide-left-enter-active,
.subapp-slide-left-leave-active,
.subapp-slide-right-enter-active,
.subapp-slide-right-leave-active {
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: all 300ms cubic-bezier(0.55, 0, 0.1, 1);
  position: absolute;
  backface-visibility: hidden;
}
.subapp-slide-right-enter-active {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.subapp-slide-right-leave-active {
  opacity: 0;
  transform: translate3d(3%, 0, 0);
}
.subapp-slide-left-enter-active {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.subapp-slide-left-leave-active {
  opacity: 0;
  transform: translate3d(-3%, 0, 0);
}

/**
 * 通用页面加载 loading
 */
.cloud-view-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cloud-view-loading > div {
  text-align: center;
}
.cloud-view-loading > div > div {
  color: #ccc;
  margin: 0;
  font: 11px verdana;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cloud-view-loading > div > span {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  margin: 2px;
  background: #007db6;
  border-radius: 8px;
  animation: common-view-loadanim 1s infinite alternate;
}
.cloud-view-loading > div > span:nth-of-type(2) {
  background: #008fb2;
  animation-delay: 0.2s;
}
.cloud-view-loading > div > span:nth-of-type(3) {
  background: #009b9e;
  animation-delay: 0.4s;
}
.cloud-view-loading > div > span:nth-of-type(4) {
  background: #00a77d;
  animation-delay: 0.6s;
}
.cloud-view-loading > div > span:nth-of-type(5) {
  background: #00b247;
  animation-delay: 0.8s;
}
.cloud-view-loading > div > span:nth-of-type(6) {
  background: #5ab027;
  animation-delay: 1s;
}
.cloud-view-loading > div > span:nth-of-type(7) {
  background: #a0b61e;
  animation-delay: 1.2s;
}
@keyframes common-view-loadanim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * 通用登录页面
 */
.cloud-login-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* background-color: #f8f8f8; */
}
.cloud-login-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
}
.cloud-login-logo {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
}
.cloud-login-logo img {
  width: 84px;
}
.cloud-login-logo.can-click {
  cursor: pointer;
}
.cloud-login-box {
  flex-shrink: 0;
  position: relative;
  margin-top: 20px;
  width: 400px;
  max-width: 90%;
  border-radius: 12px;
  background-color: transparent;
  box-shadow: 0 0 10px #e6ecfa;
  overflow: hidden;
  padding-bottom: 10px;
}
.cloud-login-box .login-mode-switch {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}
.cloud-login-box .login-mode-switch .login-mode-switch-box {
  width: 80px;
  height: 80px;
  transform: translate(40px, -40px) rotate(45deg);
  cursor: pointer;
  background-color: rgba(var(--primary-color), 0.8);
  transition: background-color 0.3s;
  overflow: hidden;
}
.cloud-login-box .login-mode-switch .login-mode-switch-box:hover {
  background-color: var(--primary-color);
}
.cloud-login-box .login-mode-switch .login-mode-switch-box .login-mode-switch-icon {
  position: absolute;
  font-size: 32px;
  width: 50px;
  height: 50px;
  /* color: #ffffff; */
  bottom: -20px;
  left: 16px;
  transform: rotate(-45deg);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.cloud-login-box .login-mode-switch .login-mode-switch-box .login-mode-switch-icon > svg {
  width: 32px;
  height: 32px;
  margin-left: 13px;
  margin-top: 3px;
}
.cloud-login-box .login-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 46px;
}
.cloud-login-box .login-subtitle {
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
  padding: 0 12px;
  color: #aaaaaa;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.cloud-login-box .login-qrcode {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 51px;
  height: 180px;
}
.cloud-login-mode-access {
  margin: 25px 40px 30px;
}
.cloud-login-mode-access .el-input {
  margin-bottom: 20px;
  border-color: #f1f1f1;
}
.cloud-login-mode-access .el-input[readonly='readonly'] {
  background-color: #f5f5f5;
}
.cloud-login-mode-access .el-input-large {
  font-size: 15px;
}
.cloud-login-mode-access .login-code .el-input-group__append {
  font-size: 16px;
  background: transparent;
  border-color: #f1f1f1;
  padding: 0 2px;
}
.cloud-login-mode-access .login-code .el-input-group__prepend,
.cloud-login-mode-access .login-code .el-input-group__prepend > span {
  font-size: 14px;
}
.cloud-login-mode-access .login-code .el-input-group__prepend {
  padding-right: 0;
}
.cloud-login-mode-access .login-code .el-input {
  border-left-color: transparent;
  box-shadow: none;
}
.cloud-login-mode-access .login-code .login-code-end {
  margin: 0;
  height: 38px;
  overflow: hidden;
  cursor: pointer;
}
.cloud-login-mode-access .login-code .login-code-end .code-load,
.cloud-login-mode-access .login-code .login-code-end .code-error {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  margin: 0 20px;
}
.cloud-login-mode-access .login-code .login-code-end .code-error {
  width: auto;
  font-size: 14px;
  opacity: 0.8;
}
.cloud-login-mode-access .login-code .login-code-end img {
  height: 100%;
  min-width: 60px;
}
.cloud-login-mode-access .login-switch {
  color: #aaaaaa;
}
.cloud-login-switch-text {
  text-align: center;
  color: var(--el-color-primary);
  margin-bottom: 15px;
}
.cloud-login-other {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cloud-login-other a {
  text-align: right;
}
.cloud-login-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  width: 388px;
  max-width: 90%;
}
.cloud-login-footer .login-setting {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--primary-text-color);
}
.cloud-login-footer .login-setting .taskfont {
  margin-top: 1px;
  margin-left: 3px;
  transform: scale(0.8);
  font-size: 12px;
}
.cloud-login-footer .login-setting-menu {
  display: flex;
  flex-direction: column;
}
.cloud-login-footer .login-setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*多商户登录*/
.cloud-login-change-wrap {
  top: 0;
  /* right: 50px; */
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-left: 100px; */
  z-index: 99;
}
.cloud-login-change-box1 {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff9;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cloud-login-change-refresh {
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--el-color-primary);
  cursor: pointer;
}
.cloud-login-change-reset {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--el-color-primary);
  cursor: pointer;
}
.cloud-login-change-box2 {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10px 20px;
  height: calc(100% - 165px);
}
.cloud-login-change-title {
  font-size: 20px;
  color: #444;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
}
.cloud-login-change-desc {
  text-align: center;
  margin-bottom: 10px;
}
.cloud-login-change-desc p {
  color: #aaaaaa;
  font-size: 13px;
}
.cloud-login-change-search {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.cloud-login-change-group-box {
  height: 100%;
  overflow-y: auto;
}
.cloud-login-change-group-item {
  display: flex;
  flex-direction: column;
}
.cloud-login-change-group-title {
  color: #333;
  font-size: 18px;
  padding: 5px 0;
}
.cloud-login-change-group-sublist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cloud-login-change-item-bao {
  padding: 9px;
  border: 1px solid #dbdbdb;
  display: flex;
  width: 375px;
  background-color: #ffffff;
  cursor: pointer;
}
.cloud-login-change-item-bao:hover {
  border-color: var(--el-color-primary);
}
.cloud-login-change-item-left {
  width: 50px;
  display: flex;
}

.cloud-login-change-item-left-icon {
  width: 20px;
  height: 40px;
}

.cloud-login-change-item-left-icon img {
  width: 40px;
  height: 40px;
}

.cloud-login-change-item-right {
  width: 200px;
  flex: 1;
}

.cloud-login-change-item-right-label {
  font-size: 15px;
  line-height: 22px;
  height: 22px;
  overflow: hidden;
}

.cloud-login-change-item-right-label2 {
  font-size: 14px;
  line-height: 22px;
  height: 22px;
  color: #a66cd0;
  overflow: hidden;
}

.cloud-login-change-item-more {
  width: 20px;
  display: flex;
  align-items: center;
  font-size: 20px;
}
/* 选择商户 end*/
/**
 * none空页面
 */

.cloud-none-wrap {
  background-color: unset;
  color: #636b6f;
  font-weight: 400;
  height: 100%;
  margin: 0;
}
.cloud-none-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cloud-none-code {
  border-right: 2px solid;
  font-size: 26px;
  padding: 0 15px 0 15px;
  text-align: center;
}
.cloud-none-message {
  font-size: 18px;
  padding: 10px;
  text-align: center;
}
/**
 * 404页面
 */
.cloud-404-wrap {
  background-color: #fff;
  color: #636b6f;
  font-weight: 400;
  height: 100vh;
  margin: 0;
}
.cloud-404-box {
  height: 100vh;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
.cloud-404-code {
  border-right: 2px solid;
  font-size: 26px;
  padding: 0 15px 0 15px;
  text-align: center;
}
.cloud-404-message {
  font-size: 18px;
  padding: 10px;
  text-align: center;
}
/**
 * 主应用单独
 */

.cloud-pages__scroll {
  width: 100%;
  height: 100%;
}

.cloud-pages__scroll .el-scrollbar__wrap {
  overflow-x: hidden;
}
/**
 *  主应用左边子菜单锁进
 */
.cloud-subapp-fold {
  width: 20px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #d9dee4;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -0px;
  bottom: 0;
  z-index: 2;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cloud-subapp-fold i,
.cloud-subapp-fold svg {
  font-size: 16px;
  color: #546478;
  width: 16px;
  height: 16px;
}

.cloud-subapp-unfold {
  width: 20px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #d9dee4;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cloud-subapp-unfold i,
.cloud-subapp-unfold svg {
  font-size: 16px;
  color: #546478;
  width: 16px;
  height: 16px;
}
/**
 *  主应用特殊菜单
 */
.cloud-nav-open,
.cloud-nav-close {
  width: 50px;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cloud-nav-open i,
.cloud-nav-close i {
  background-size: 100%;
  font-size: 20px;
  color: #fff;
}
.cloud-nav-open svg,
.cloud-nav-close svg {
  background-size: 100%;
  font-size: 20px;
  color: #fff;
  width: 24px;
  height: 24px;
}

.cloud-nav-open {
  background-color: #409eff;
}

.cloud-nav-close {
  background: #337ecc;
}

.cloud-nav-wrap {
  display: flex;
  position: fixed;
  top: 50px;
  bottom: 0px;
  left: 0px;
  z-index: 998;
  right: 0px;
}

.cloud-nav-com-wrap {
  position: relative;
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 4px 0px;
  background-color: rgb(255, 255, 255);
  width: 230px;
  height: 100%;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
  transition-delay: initial;
  transition-property: all;
}

.cloud-nav-com {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cloud-nav-comall {
  border: 0;
  outline: 0;
  text-align: left;
  color: rgb(85, 85, 85);
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: rgb(245, 245, 245);
  color: rgb(51, 51, 51);
  padding: 0 16px 0 0;
  height: 48px;
  line-height: 48px;
  border-bottom: 1px solid rgb(222, 222, 222);
  text-transform: none;
  overflow: visible;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.cloud-nav-comall i,
.cloud-nav-comall svg {
  line-height: 48px;
  width: 40px;
  text-align: center;
  padding: 0 10px;
}

.cloud-nav-comall i:first-child,
.cloud-nav-comall svg:first-child {
  width: 40px;
}

.cloud-nav-comall i:last-child,
.cloud-nav-comall svg:last-child {
  width: 40px;
}

.cloud-nav-comall span {
  flex: auto;
  -webkit-box-align: center;
  align-items: center;
  height: 48px;
  line-height: 48px;
}

.cloud-allnav-box {
  display: block;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  position: relative;
  z-index: 5;
  background-color: rgb(247, 247, 247);
  min-width: 490px;
  max-width: 980px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-delay: initial;
  transition-property: all;
}

.cloud-allnav-caidan {
  padding: 20px 30px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
}

.cloud-allnav-caidan-left {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}

.caidan-left-title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: rgb(51, 51, 51);
  transition-duration: 250ms;
  transition-timing-function: linear;
  transition-delay: initial;
  transition-property: all;
}

.caidan-left-desc {
  color: rgb(153, 153, 153);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.caidan-left-desc svg {
  font-size: 16px;
  width: 16px;
  height: 16px;
}
.caidan-left-main {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  overflow-x: auto;
  overflow-y: auto;
}
.caidan-left-main-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.caidan-left-mod-group {
  width: 100%;
  max-width: 300px;
}

.caidan-left-mod-title {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  color: rgb(51, 51, 51);
  transition-duration: 250ms;
  transition-timing-function: linear;
  transition-delay: initial;
  transition-property: all;
}

.caidan-left-mod-desc {
  color: rgb(153, 153, 153);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.caidan-left-mod-desc svg {
  font-size: 16px;
  width: 16px;
  height: 16px;
}
.caidan-left-mod-list {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
.caidan-left-mod-item {
  transition-duration: 300ms;
  transition-timing-function: ease;
  transition-delay: initial;
  transition-property: all;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.caidan-left-mod-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.caidan-left-mod-item a {
  text-align: left;
  color: rgb(85, 85, 85);
  overflow-x: hidden;
  overflow-y: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  height: 32px;
  line-height: 30px;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.caidan-left-mod-item button {
  width: 24px;
  height: 100%;
  transition-duration: 250ms;
  transition-timing-function: ease;
  transition-delay: initial;
  transition-property: opacity;
  opacity: 1;
  border: 0;
  outline: 0;
  background: transparent;
}
.caidan-left-mod-item button svg,
.caidan-left-mod-item button i {
  font-size: 15px;
  width: 20px;
  height: 20px;
}

.caidan-left-mod-item button:hover {
  color: rgb(255, 106, 0);
}

.caidan-left-mod-item button:visited {
  color: rgb(255, 106, 0);
}

.caidan-left-mod-item button.on {
  color: rgb(255, 106, 0);
}

.caidan-left-mod-item button.on svg,
.caidan-left-mod-item button.on i {
  font-size: 15px;
  width: 25px;
  height: 25px;
}

.cloud-allnav-caidan-right {
  padding-top: 32px;
  width: 160px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.cloud-allnav-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 20px;
  color: rgb(85, 85, 85);
  border: 0;
  outline: 0;
  background: unset;
  cursor: pointer;
}

.cloud-nav-comlist {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  padding-top: 8px;
  padding-right: 0px;
  overflow-x: auto;
  overflow-y: auto;
}

.cloud-nav-comlist-tip {
  padding: 10px;
}

.cloud-nav-comitem {
  position: relative;
  width: 100%;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  transition-delay: initial;
  transition-property: all;
  height: 40px;
}

.cloud-nav-comitem:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.cloud-nav-comitem a {
  padding-top: 0px;
  box-sizing: border-box;
  outline-color: initial;
  outline-style: initial;
  outline-width: medium;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  line-height: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-decoration-line: none;
  text-decoration-style: initial;
  text-decoration-color: initial;
  text-decoration: none;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-delay: initial;
  transition-property: all;
  border: 0 none initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  text-align: left;
  color: rgb(85, 85, 85);
  display: block;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 0px;
  padding-right: 16px;
  padding-bottom: 0px;
  padding-left: 0px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.cloud-nav-comitem a,
.cloud-nav-comitem a:link,
.cloud-nav-comitem a:visited,
.cloud-nav-comitem a:hover {
  color: rgb(51, 51, 51);
}

.cloud-nav-comitem a span:nth-child(1) {
  width: 40px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.cloud-nav-comitem a span:nth-child(2) {
  width: 40px;
  font-size: 15px;
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.cloud-nav-comitem:hover button {
  background: transparent;
  opacity: 1;
}

.cloud-nav-comitem > button {
  position: absolute;
  top: 0px;
  padding-top: 0px;
  width: 20px;
  height: 100%;
  transition-duration: 250ms;
  transition-timing-function: ease;
  transition-delay: initial;
  transition-property: opacity;
  opacity: 0;
  border: none;
  outline: none;
}

.cloud-nav-comitem > button:nth-child(2) {
  right: 28px;
}

.cloud-nav-comitem > button:nth-child(3) {
  right: 8px;
  cursor: move;
}

.cloud-nav-comitem > button i {
  display: inline-block;
  line-height: 1;
  font-size: inherit;
  font-weight: 200;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  vertical-align: baseline;
  text-rendering: auto;
  transition-duration: 200ms;
  transition-timing-function: ease;
  transition-delay: initial;
  transition-property: all;
  -webkit-text-stroke-width: 0.2px;
}

.cloud-nav-mask {
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100vw;
  height: 100vh;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
  transition-delay: initial;
  transition-property: opacity;
  visibility: visible;
  opacity: 1;
}
/**
 * 页面通用样式
 */
.page-container {
  padding: 20px;
}
.page-main-wrap {
  padding: 20px;
}
.page-top-wrap {
  position: absolute;
  background: var(--el-bg-color);
  width: 100%;
  display: flex;
  z-index: 99;
  padding: 14px 20px;
  margin-top: -20px;
  margin-left: -20px;
  border-bottom: 1px dotted var(--el-border-color);
}
.page-top-seat {
  height: 80px;
  margin-top: -20px;
}
.page-flex-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
/**
 * 通用配置
 */
.page-setting-warpper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.page-setting-left {
  height: 600px;
  width: 300px;
}
.page-setting-right {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  width: calc(100% - 300px);
}
.page-setting-group-box {
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-setting-group-item {
  width: 120px;
  height: 40px;
  border: 1px solid #dedede;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.page-setting-group-item.activity {
  background-color: #dedede;
}
.page-setting-right-empty {
  display: flex;
  justify-content: center;
  flex: 1;
  align-items: center;
}
/**
 * 弹窗通用样式
 */
/* 弹窗标题 */
.cloud-dialog-choice-wrap .el-dialog__header {
  border-bottom: 1px solid #e8eaec;
}
.cloud-dia-choice-box {
  display: flex;
  height: 500px;
  gap: 10px;
  position: relative;
}
/* 
 * 左侧
 */
.cloud-dia-choice-left {
  width: 200px;
  padding-right: 10px;
  border-right: 1px solid rgba(230, 230, 230);
}
.cloud-dia-left-title {
  color: #333;
  font-size: 14px;
  padding-left: 10px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dedede;
}
.cloud-dia-left-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 3px;
  height: 14px;
  background-color: #00aeff;
}
.cloud-dia-left-filter {
  margin-bottom: 5px;
}
/* 树形列表 */
.cloud-dia-left-tree {
  margin-top: 10px;
  height: 420px;
  overflow-y: auto;
  /* display: flex; */
}
.cloud-dia-left-tree .el-tree-node__label {
  font-size: 12px;
}

/* 
 * 右侧
*/
.cloud-dia-choice-right {
  width: calc(100% - 220px);
}

.cloud-dia-right-tools {
  width: 100%;
}
.cloud-dia-right-tools .cv-select-tree {
  display: inline-block;
  width: 200px;
  float: none;
  margin-top: 1px;
}
.dialog-choice-image-upload {
  display: inline-block;
  margin: 0 10px;
}

/* 图片列表 */
.cloud-dia-right-list {
  display: flex;
  height: 420px;
  flex-wrap: wrap;
  margin-top: 5px;
  overflow: auto;
  gap: 5px;
}
.cloud-dia-right-item {
  width: 100px;
  margin: 0 10px 10px 0;
}
.cloud-dia-right-item img {
  display: block;
  width: 100px;
  height: 100px;
  cursor: pointer;
  border: 2px solid transparent;
}
/* 选中图片时 */
.cloud-dia-right-item .active {
  border-color: #5fb878;
}
/* 小红圈 */
.cloud-dia-right-item .el-badge__content.is-fixed {
  top: 14px;
  right: 30px;
  width: 22px;
  height: 22px;
  line-height: 20px;
  background-color: orangered;
}
/* 备用方案：使用更高优先级选择器 */
.cloud-dia-right-item > .el-badge.isshowBadge > .el-badge__content.is-fixed {
  display: none !important;
}
.cloud-dia-right-item_text {
  display: flex;
  align-items: center;
}
.cloud-dia-right-item_text .el-input--mini,
.cloud-dia-right-item_text input,
.cloud-dia-right-item_text p {
  display: inline-block;
  width: 80px;
  height: 24px;
  line-height: 24px;
  padding: 0 4px;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.cloud-dia-right-item_text p {
  cursor: pointer;
}
.cloud-dia-right-item_text span {
  display: none;
  cursor: pointer;
}
.cloud-dia-right-item_text:hover span {
  display: inline-block;
}
/* 底部分页 */
.cloud-dialog-choice-wrap .el-pagination {
  margin: 10px 0 5px;
  text-align: right;
}
