*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
#app {
  height: 100%;
  margin: 0;
}

body {
  min-width: 1366px;
  background: #f5f7fa;
  color: #606266;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  --sidebar-width: 54px;
}

.app-wrapper.sidebar-opened {
  --sidebar-width: 236px;
}

.sidebar-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  width: var(--sidebar-width);
  overflow: visible;
  background: #fff;
  border-right: 1px solid #eef0f4;
  transition: width 0.22s ease;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0;
  background: #fff;
}

.sidebar-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  color: #fff;
  background: #fff;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.sidebar-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-nav {
  padding-top: 18px;
}

.icon-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 64px;
  color: #606266;
  font-size: 18px;
  cursor: pointer;
}

.icon-nav-item.is-active {
  color: #1688ff;
}

.main-container {
  min-height: 100%;
  margin-left: var(--sidebar-width);
  background: #f5f7fa;
  transition: margin-left 0.22s ease;
}

.fixed-header {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--sidebar-width);
  z-index: 1000;
  height: 54px;
  background: #fff;
  border-bottom: 1px solid #eef0f4;
  box-shadow: none;
  transition: left 0.22s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 14px 0 0;
}

.breadcrumb-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #606266;
}

.hamburger {
  margin: 0 18px 0 0;
  color: #1f2d3d;
  font-size: 17px;
  cursor: pointer;
}

.user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f0d7a9;
  border: 1px solid #c9b084;
  border-radius: 10px;
  color: #1f2d3d;
  font-weight: 700;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #303133;
}

.user-role-tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  background: #f5f7fa;
  color: #606266;
  font-size: 12px;
}

.user-name {
  max-width: 120px;
  overflow: hidden;
  color: #303133;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 80px 24px;
  background: #eef2f7;
}

.login-panel {
  width: 420px;
  padding: 34px 36px 30px;
  border: 1px solid #dcdfe6;
  background: #fff;
  box-shadow: 0 14px 36px rgba(31, 45, 61, 0.12);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.login-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #eef0f4;
  background: #fff;
  color: #fff;
  font-weight: 700;
}

.login-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login-brand h1 {
  margin: 0;
  color: #303133;
  font-size: 20px;
  font-weight: 600;
}

.login-brand p {
  margin: 4px 0 0;
  color: #909399;
  font-size: 13px;
}

.login-form {
  margin-top: 8px;
}

.login-error {
  margin: -4px 0 14px;
}

.login-submit {
  width: 100%;
}

.change-password-panel {
  width: 460px;
}

.password-change-alert {
  margin: -8px 0 18px;
}

.change-password-logout {
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
}

.login-accounts {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #909399;
  font-size: 12px;
}

.login-accounts div {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 4px 8px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #ebeef5;
  background: #f8fafc;
}

.login-accounts strong {
  color: #303133;
  font-weight: 600;
}

.login-accounts em {
  grid-column: 1 / -1;
  color: #909399;
  font-style: normal;
}

.platform-name {
  color: #303133;
  font-weight: 500;
}

.app-main {
  min-height: calc(100vh - 54px);
  padding-top: 54px;
}

.app-container {
  padding: 22px 24px 78px 0;
}

.page-frame {
  position: relative;
  min-height: calc(100vh - 120px);
  padding-bottom: 72px;
}

.panel {
  background: #fff;
  border: 1px solid #ebeef5;
}

.replica-grid {
  display: grid;
  grid-template-columns: 790px minmax(760px, 1fr);
  gap: 26px;
  align-items: start;
}

.left-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 20px 51px 0 46px;
}

.replica-card {
  padding: 18px 28px 24px;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 5px;
}

.account-card {
  min-height: 666px;
  padding-left: 12px;
}

.strategy-card {
  min-height: 560px;
  padding-bottom: 34px;
}

.material-card {
  min-width: 0;
  min-height: 800px;
  overflow: hidden;
  padding: 20px 34px 34px;
}

.card-title {
  margin: 0 0 22px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.strategy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.strategy-template-select {
  width: 208px;
}

.strategy-tabs-line {
  display: flex;
  align-items: flex-end;
  height: 48px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e4e7ed;
}

.strategy-tab-card {
  min-width: 168px;
  height: 48px;
  padding: 0 22px;
  color: #303133;
  background: #fff;
  border: 1px solid #dcdfe6;
  border-bottom-color: #fff;
  border-radius: 4px 4px 0 0;
  font-weight: 500;
  line-height: 48px;
  cursor: pointer;
}

.strategy-tab-card.is-active {
  color: #1688ff;
}

.strategy-tab-icon {
  margin-left: 6px;
  color: #1688ff;
  font-size: 14px;
  cursor: pointer;
}

.strategy-add {
  margin-left: auto;
  margin-right: 8px;
  color: #303133;
  font-size: 18px;
  cursor: pointer;
}

.base-panel {
  margin-bottom: 12px;
  padding: 14px 16px 2px;
}

.ad-tabs {
  background: #fff;
  border: 1px solid #ebeef5;
}

.ad-tabs > .el-tabs__header {
  margin: 0;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid #ebeef5;
}

.ad-tabs > .el-tabs__content {
  background: #fff;
}

.strategy-tab-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.app-container2 {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 576px;
  background: #fff;
}

.account-content-form .el-form-item {
  margin-bottom: 26px;
}

.strategy-form .el-form-item,
.material-form .el-form-item {
  margin-bottom: 24px;
}

.account-content-form .el-form-item__label,
.strategy-form .el-form-item__label,
.material-form .el-form-item__label {
  color: #606266;
  font-size: 14px;
  font-weight: 600;
}

.account-content-form .el-form-item__label {
  padding-right: 12px;
}

.account-content-form .el-input__inner,
.strategy-form .el-input__inner,
.material-form .el-input__inner {
  height: 42px;
  line-height: 42px;
}

.account-content-form .el-radio-button__inner {
  min-width: 82px;
  height: 42px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
}

.account-content-form .el-form-item:nth-child(1) .el-radio-button__inner {
  min-width: 85px;
}

.account-content-form .el-form-item:nth-child(2) .el-radio-button__inner {
  min-width: 102px;
}

.account-content-form .el-form-item:nth-child(3) .el-radio-button__inner {
  min-width: 66px;
}

.account-content-form .el-radio-button:first-child .el-radio-button__inner,
.account-content-form .el-radio-button:last-child .el-radio-button__inner {
  border-radius: 3px;
}

.account-content-form .el-radio__label,
.strategy-form .el-radio__label,
.material-form .el-radio__label {
  font-size: 14px;
}

.required-star {
  color: #f56c6c;
  margin-right: 4px;
}

.content-select-dropdown .el-select-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 520px;
}

.content-option-name {
  min-width: 0;
  overflow: hidden;
  color: #606266;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-option-meta {
  flex: 0 0 auto;
  color: #8492a6;
}

.form-column {
  flex: 0 0 39.5rem;
  width: 39.5rem;
  padding: 20px 0 22px 3%;
  background: #fff;
  border-right: 1px solid #ebeef5;
}

.creative-column {
  flex: 1;
  min-width: 0;
  padding: 20px 24px 22px;
  background: #fff;
}

.el-form--label-left .el-form-item__label {
  color: #606266;
}

.form-column .el-form-item,
.creative-column .el-form-item {
  margin-bottom: 18px;
}

.w-300 {
  width: 300px;
}

.w-500 {
  width: 500px;
}

.account-select-wrap {
  position: relative;
  width: 90%;
  min-height: 30px;
  max-height: 200px;
  overflow: hidden auto;
}

.account-select-wrap .account-select {
  width: 300px;
}

.account-select-wrap .el-select__tags {
  max-width: 268px !important;
}

.account-select-wrap .el-tag {
  max-width: 268px;
}

.account-select-wrap .el-select__tags-text {
  display: inline-block;
  max-width: 232px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.account-clear-side {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 268px;
  width: 32px;
  min-height: 36px;
  padding: 10px 0 0;
  border: 0;
  background: transparent;
  z-index: 5;
  cursor: pointer;
  color: #c0c4cc;
  text-align: center;
}

.account-clear-all {
  cursor: pointer;
  font-size: 14px;
}

.account-clear-side:hover .account-clear-all {
  color: #909399;
}

.account-search-all {
  position: absolute;
  top: 0;
  left: 21rem;
  white-space: nowrap;
}

.inline-help {
  margin-left: 8px;
  color: #909399;
  cursor: pointer;
}

.setting-buttons {
  display: inline-flex;
  gap: 8px;
  margin-left: 10px;
}

.creative-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.random-copy-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  max-width: 980px;
  color: #111;
  font-size: 14px;
}

.random-copy-item {
  white-space: nowrap;
}

.material-tabs {
  display: flex;
  align-items: flex-end;
  margin-top: 18px;
  border-bottom: 1px solid #e4e7ed;
}

.material-tab {
  min-width: 112px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid #e4e7ed;
  border-bottom: 0;
  color: #303133;
  background: #fff;
  font-size: 14px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
}

.material-tab.is-active {
  color: #1688ff;
}

.material-tab.has-error {
  color: #f56c6c;
  border-color: #f56c6c;
}

.material-validation-error {
  margin-top: 8px;
  color: #f56c6c;
  font-size: 12px;
}

.title-chip {
  cursor: pointer;
}

.random-copy-item.is-active {
  color: #1688ff;
  font-weight: 500;
}

.video-material-action {
  margin-left: 10px;
  color: #303133;
  cursor: pointer;
  font-size: 14px;
  line-height: 36px;
}

.video-material-action.is-active {
  color: #1688ff;
}

.video-material-action:hover {
  color: #1688ff;
}

.copy-material-pane {
  padding-top: 16px;
}

.copy-material-pane.is-error {
  padding: 14px;
  border: 1px solid #f56c6c;
}

.copy-material-pane .el-form-item {
  margin-bottom: 14px;
}

.copy-material-pane .el-form-item__content {
  display: flex;
  align-items: center;
}

.title-form-item .el-form-item__label {
  color: #606266;
  font-weight: 400;
}

.title-input {
  width: 500px;
}

.title-delete-icon {
  margin-left: 10px;
  color: #606266;
  cursor: pointer;
}

.title-delete-icon:hover {
  color: #1688ff;
}

.title-add-icon {
  margin-left: 10px;
  color: #303133;
  cursor: pointer;
  font-size: 14px;
  line-height: 32px;
}

.material-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selected-materials {
  display: grid;
  grid-template-columns: repeat(auto-fill, 148px);
  gap: 22px 19px;
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
  overflow: hidden;
}

.selected-materials.is-error {
  min-height: 96px;
  padding: 12px;
  border: 1px solid #f56c6c;
}

.material-card-wrapper {
  position: relative;
  width: 148px;
  height: 242px;
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid #dcdfe6;
  border-radius: 2px;
}

.material-card-wrapper.is-selected {
  border-color: #409eff;
}

.img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  color: #c0c4cc;
  background: linear-gradient(180deg, #f4f6f8 0%, #e9edf2 100%);
  font-size: 22px;
}

.material-thumb {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.material-thumb::before,
.material-thumb::after {
  content: "";
  position: absolute;
  display: block;
}

.material-thumb::before {
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.material-thumb::after {
  right: 14px;
  bottom: 14px;
  width: 45px;
  height: 74px;
  border-radius: 22px 22px 6px 6px;
  background: rgba(30, 35, 43, 0.45);
}

.thumb-0 { background: linear-gradient(145deg, #9cc27f 0%, #d6d9d5 48%, #2b4557 100%); }
.thumb-1 { background: linear-gradient(145deg, #5a4738 0%, #d8b58b 45%, #80624a 100%); }
.thumb-2 { background: linear-gradient(145deg, #3d5b64 0%, #afc2bd 50%, #b88b60 100%); }
.thumb-3 { background: linear-gradient(145deg, #506340 0%, #9ca678 42%, #1c2531 100%); }
.thumb-4 { background: linear-gradient(145deg, #24252b 0%, #6d625a 45%, #d2c3b5 100%); }
.thumb-5 { background: linear-gradient(145deg, #b38b59 0%, #ebe2cd 50%, #6e7d69 100%); }
.thumb-6 { background: linear-gradient(145deg, #2d5c31 0%, #a6b577 52%, #3b2721 100%); }
.thumb-7 { background: linear-gradient(145deg, #476b4b 0%, #d3dfce 48%, #849bb3 100%); }
.thumb-8 { background: linear-gradient(145deg, #273142 0%, #c9aa8d 45%, #7d3030 100%); }
.thumb-9 { background: linear-gradient(145deg, #8aa6bd 0%, #e0d6ce 50%, #43536c 100%); }

.has-local-preview::before,
.has-local-preview::after {
  display: none;
}

.material-local-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-info {
  height: 52px;
  padding: 6px 6px;
  background: #fff;
}

.material-name {
  height: 18px;
  overflow: hidden;
  color: #606266;
  font-size: 12px;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.material-meta {
  margin-top: 4px;
  color: #909399;
  font-size: 12px;
}

.material-card-wrapper__mask {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 22px;
  padding: 4px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

.material-tag {
  display: inline-block;
  margin-right: 3px;
  padding: 0 5px;
  border-radius: 2px;
  background: rgba(64, 158, 255, 0.9);
  font-size: 12px;
  line-height: 18px;
}

.material-close {
  color: #fff;
  cursor: pointer;
}

.dialog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.material-picker-dialog {
  border-radius: 2px;
}

.material-picker-dialog .el-dialog__header {
  padding: 24px 24px 12px;
}

.material-picker-dialog .el-dialog__title {
  color: #303133;
  font-size: 18px;
  font-weight: 400;
}

.material-picker-dialog .el-dialog__headerbtn {
  top: 24px;
  right: 24px;
}

.material-picker-dialog .el-dialog__body {
  padding: 26px 24px 0;
}

.material-picker-dialog .el-dialog__footer {
  padding: 0 22px 24px;
}

.dialog-filter-label {
  margin-right: 8px;
  color: #606266;
  font-size: 14px;
  line-height: 36px;
}

.dialog-data-label {
  margin-left: 8px;
}

.dialog-designer-select {
  width: 188px;
}

.dialog-search-input {
  width: 174px;
}

.dialog-sort-select {
  width: 186px;
}

.dialog-type-select {
  width: 112px;
}

.dialog-tags-select {
  width: 334px;
}

.dialog-data-select {
  width: 188px;
}

.dialog-filter-bar .el-input__inner {
  height: 36px;
  line-height: 36px;
}

.dialog-filter-bar .el-select .el-input__inner {
  height: 36px;
  line-height: 36px;
}

.material-dialog-body {
  min-height: 748px;
}

.dialog-material-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 28px;
  margin: 6px 0 10px;
  color: #606266;
  font-size: 14px;
}

.dialog-select-all {
  color: #606266;
  cursor: pointer;
}

.dialog-select-all i {
  margin-right: 4px;
  color: #606266;
}

.dialog-clear-selection {
  color: #606266;
  cursor: pointer;
}

.dialog-select-all:hover,
.dialog-clear-selection:hover {
  color: #1688ff;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.dialog-material-grid {
  grid-template-columns: repeat(7, 148px);
  gap: 22px 20px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.dialog-material-stage {
  position: relative;
  min-height: 540px;
  user-select: none;
}

.dialog-material-card {
  cursor: pointer;
  overflow: visible;
}

.dialog-material-card.is-selected {
  border-color: #1688ff;
  box-shadow: 0 0 0 2px #1688ff;
}

.dialog-material-card.is-selected .material-info {
  border-top: 1px solid rgba(22, 136, 255, 0.2);
}

.dialog-material-card.is-used-other:not(.is-selected) {
  border-color: #dcdfe6;
  opacity: 0.48;
  filter: grayscale(1);
}

.dialog-material-card.is-used-other:not(.is-selected)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(245, 247, 250, 0.42);
  pointer-events: none;
}

.dialog-material-card .img-container {
  height: 192px;
}

.dialog-material-card .material-info {
  height: 50px;
  padding: 6px 4px;
}

.dialog-material-stats {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  pointer-events: none;
}

.dialog-material-stats div {
  max-width: 132px;
  padding: 0 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.68);
  border-radius: 3px;
}

.dialog-material-name {
  position: relative;
  cursor: default;
}

.dialog-material-name:hover::after {
  content: attr(data-full-name);
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 50;
  max-width: 340px;
  padding: 5px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.dialog-material-name:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 51;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.78);
  transform: translateX(-50%);
}

.dialog-material-corner {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 3px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.dialog-material-check {
  color: #409eff;
  font-weight: 700;
}

.dialog-material-used {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 4;
  padding: 0 6px;
  color: #fff;
  background: rgba(144, 147, 153, 0.92);
  border-radius: 3px;
  font-size: 12px;
  line-height: 20px;
}

.dialog-material-card.is-selected .dialog-material-check {
  position: absolute;
  right: 4px;
  top: 4px;
  z-index: 5;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #1688ff;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
}

.material-selection-box {
  position: absolute;
  z-index: 20;
  border: 1px dashed #1688ff;
  background: rgba(64, 158, 255, 0.14);
  pointer-events: none;
}

.dialog-footer-left {
  float: left;
  color: #606266;
  line-height: 36px;
}

.bottom-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 68px;
  z-index: 1002;
  height: 78px;
  padding: 16px 0 0 28px;
  text-align: left;
  background: #fff;
  border-top: 1px solid #dcdfe6;
  box-shadow: 0 -1px 4px rgba(0, 21, 41, 0.08);
}

.bottom-bar .el-button--primary {
  min-width: 80px;
  height: 42px;
}

.bottom-bar .save-link {
  margin-left: 12px;
  color: #1688ff;
  background: transparent;
  border: 0;
}

.filter-container {
  position: relative;
  margin-bottom: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #ebeef5;
}

.filter-container .filter-item {
  margin-right: 10px;
  margin-bottom: 10px;
}

.filter-item-button {
  width: 100px;
}

.material-list-page .filter-container .el-button {
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
}

.material-list-page .filter-container .el-button--primary {
  font-weight: 500;
}

.material-list-page .filter-container .el-button [class^="el-icon-"] {
  font-size: 14px;
  vertical-align: -1px;
}

.material-list-page .filter-container .el-button [class^="el-icon-"] + span {
  margin-left: 6px;
}

.material-list-page .copy-material-entry {
  color: #606266;
  background: #fff;
  border-color: #dcdfe6;
}

.material-list-page .copy-material-entry:hover,
.material-list-page .copy-material-entry:focus {
  color: #1688ff;
  background: #ecf5ff;
  border-color: #b3d8ff;
}

.material-list-page .el-table {
  color: #606266;
  font-size: 14px;
}

.material-list-page .el-table th > .cell {
  color: #909399;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.material-list-page .el-table td .cell {
  color: #606266;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.table-panel {
  padding: 0;
  background: #fff;
}

.title-library-panel {
  margin-bottom: 12px;
  border: 1px solid #ebeef5;
}

.title-library-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 20px;
  border-bottom: 1px solid #ebeef5;
}

.title-library-title {
  color: #303133;
  font-size: 16px;
  font-weight: 600;
}

.title-library-search {
  width: 180px;
}

.copy-material-dialog .el-dialog__body {
  padding: 18px 24px 24px;
}

.copy-material-manager {
  min-height: 560px;
}

.copy-group-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.copy-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid #ebeef5;
}

.copy-group-tags .el-tag {
  cursor: pointer;
}

.copy-title-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.copy-title-name {
  color: #303133;
  font-size: 15px;
  font-weight: 600;
}

.copy-title-count {
  color: #909399;
  font-size: 13px;
}

.copy-title-add {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.copy-title-table {
  border: 1px solid #ebeef5;
}

.pagination-container {
  padding: 18px 0;
  text-align: right;
  background: #fff;
}

.account-list-page {
  min-width: 1160px;
  color: #606266;
  font-size: 14px;
}

.system-user-page {
  min-width: 980px;
  color: #606266;
  font-size: 14px;
}

.account-filter-container {
  margin-bottom: 18px;
  padding: 20px 24px 10px;
  border: 0;
  background: transparent;
}

.account-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.account-filter-container .filter-item {
  margin-right: 12px;
  margin-bottom: 12px;
}

.account-filter-select {
  width: 220px;
}

.account-filter-select-large {
  width: 225px;
}

.account-filter-select-small {
  width: 145px;
}

.account-filter-input {
  width: 170px;
}

.account-filter-input-large {
  width: 280px;
}

.account-filter-button {
  width: 100px;
  height: 36px;
}

.account-add-button {
  width: 132px;
  height: 36px;
}

.account-filter-container .el-input__inner {
  height: 36px;
  color: #606266;
  font-size: 14px;
  line-height: 36px;
  border-color: #dcdfe6;
  border-radius: 4px;
}

.account-filter-container .el-input__inner::placeholder {
  color: #c0c4cc;
}

.account-filter-container .el-button {
  padding: 0 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
}

.account-table-panel {
  margin: 0 24px;
  background: #fff;
}

.account-list-table {
  width: 100%;
  border: 0;
  color: #606266;
  font-size: 14px;
}

.account-list-table .el-table__header th {
  height: 48px;
  color: #909399;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
}

.account-list-table .el-table__body td {
  height: 72px;
  color: #606266;
  font-size: 14px;
}

.account-list-table .cell {
  line-height: 22px;
}

.account-list-table .el-table__fixed-right {
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.04);
}

.account-list-table .el-button--text {
  color: #1688ff;
  font-size: 14px;
}

.account-list-table .el-switch {
  transform: scale(0.86);
}

.account-pagination {
  padding: 18px 0 26px;
}

.system-user-summary {
  padding: 16px 20px 22px;
  color: #909399;
  font-size: 13px;
  border-top: 1px solid #ebeef5;
}

.system-user-dialog .el-dialog__body {
  padding: 24px 42px 4px;
}

.system-user-form .el-input,
.system-user-form .el-radio-group {
  width: 100%;
}

.account-editor-dialog {
  border-radius: 2px;
}

.account-editor-dialog .el-dialog__header {
  padding: 24px 24px 10px;
}

.account-editor-dialog .el-dialog__title {
  color: #303133;
  font-size: 18px;
  font-weight: 500;
}

.account-editor-dialog .el-dialog__headerbtn {
  top: 26px;
  right: 24px;
}

.account-editor-dialog .el-dialog__body {
  min-height: 840px;
  padding: 26px 72px 0 70px;
}

.account-editor-dialog .el-dialog__footer {
  padding: 0 24px 24px;
}

.account-editor-form {
  width: 820px;
  color: #606266;
}

.account-editor-section-title {
  margin: 0 0 18px;
  color: #303133;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.account-editor-section-title:not(:first-child) {
  margin-top: 10px;
}

.account-editor-grid {
  display: grid;
  grid-template-columns: 370px 370px;
  column-gap: 16px;
  row-gap: 8px;
  margin-bottom: 14px;
}

.account-editor-form .el-form-item {
  margin-bottom: 16px;
}

.account-editor-form .el-form-item__label {
  color: #606266;
  font-size: 14px;
  font-weight: 600;
}

.account-editor-form .el-select,
.account-editor-form .el-input {
  width: 224px;
}

.account-editor-form .el-input__inner {
  height: 40px;
  color: #606266;
  font-size: 14px;
  line-height: 40px;
  border-color: #dcdfe6;
  border-radius: 4px;
}

.account-editor-form .el-input.is-disabled .el-input__inner {
  color: #c0c4cc;
  background: #f5f7fa;
  border-color: #e4e7ed;
}

.account-editor-with-help .el-form-item__content {
  display: flex;
  align-items: center;
}

.account-editor-help {
  margin-left: 8px;
  color: #606266;
  font-size: 14px;
}

.account-editor-date-item {
  grid-column: 1 / 3;
}

.account-editor-date-item .el-form-item__content {
  display: flex;
  align-items: center;
}

.account-editor-date-item .el-date-editor.el-input {
  width: 246px;
}

.account-editor-date-separator {
  display: inline-block;
  width: 20px;
  color: #606266;
  text-align: center;
}

.account-editor-rpa-title {
  margin-top: 8px;
}

.account-editor-rpa-row {
  display: flex;
  align-items: center;
  height: 40px;
  margin-left: 38px;
  color: #606266;
  font-size: 14px;
  font-weight: 600;
}

.account-editor-rpa-label {
  margin-right: 14px;
}

.account-editor-rpa-row .el-switch {
  transform: scale(0.92);
  transform-origin: left center;
}

.account-editor-footer .el-button {
  min-width: 78px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.account-dialog-placeholder {
  min-height: 120px;
  color: #909399;
  font-size: 14px;
}

.placeholder-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 96px;
  color: #c0c4cc;
  background: #f5f7fa;
  border: 1px solid #ebeef5;
}

.material-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 54px;
  padding: 0 8px;
  color: #303133;
  font-size: 14px;
  border-bottom: 1px solid #eef0f4;
}

.material-sidebar-head .sidebar-logo-mark {
  width: 24px;
  height: 24px;
  margin-right: 6px;
  border-radius: 4px;
  font-size: 12px;
  flex: 0 0 auto;
}

.material-platform-name {
  display: block;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.material-side-menu {
  padding-top: 12px;
  font-size: 14px;
}

.material-menu-item {
  display: grid;
  grid-template-columns: 24px 1fr 14px;
  align-items: center;
  justify-content: initial;
  width: var(--sidebar-width);
  height: 48px;
  padding: 0 8px 0 12px;
  color: #606266;
  font-size: 14px;
  cursor: pointer;
  transition: width 0.22s ease, padding 0.22s ease, background-color 0.15s ease, color 0.15s ease;
}

.material-menu-item i:first-child {
  color: #606266;
  font-size: 16px;
}

.material-menu-item span,
.material-menu-item .el-icon-arrow-down,
.material-menu-item .el-icon-arrow-up {
  display: inline-block;
}

.material-menu-item .el-icon-arrow-down,
.material-menu-item .el-icon-arrow-up {
  color: #a8abb2;
  font-size: 12px;
}

.material-menu-item:hover {
  color: #1688ff;
}

.material-menu-item:hover i:first-child {
  color: #1688ff;
}

.material-menu-item.is-open {
  color: #1688ff;
}

.material-menu-item.is-open i:first-child {
  color: #1688ff;
}

.material-sub-item {
  display: block;
  height: 42px;
  padding-left: 26px;
  color: #606266;
  font-size: 14px;
  line-height: 42px;
  cursor: pointer;
}

.material-sub-item.is-active {
  color: #1688ff;
}

.sidebar-collapsed .material-sidebar-head {
  justify-content: center;
  padding: 0;
}

.sidebar-collapsed .material-sidebar-head .sidebar-logo-mark {
  width: 28px;
  height: 28px;
  margin-right: 0;
  border-radius: 6px;
}

.sidebar-collapsed .material-platform-name {
  display: none;
}

.sidebar-collapsed .material-menu-item {
  display: flex;
  justify-content: center;
  width: 54px;
  height: 56px;
  padding: 0;
}

.sidebar-collapsed .material-menu-item:hover,
.sidebar-collapsed .material-menu-item.is-open {
  background: #dff0f8;
}

.sidebar-collapsed .material-menu-item i:first-child {
  font-size: 16px;
}

.sidebar-collapsed .material-menu-item span,
.sidebar-collapsed .material-menu-item .el-icon-arrow-down,
.sidebar-collapsed .material-menu-item .el-icon-arrow-up,
.sidebar-collapsed .material-sub-item {
  display: none !important;
}

.sidebar-opened .material-sidebar-head {
  padding: 0 10px;
}

.sidebar-opened .material-menu-item {
  width: 236px;
  grid-template-columns: 26px minmax(0, 1fr) 14px;
  padding: 0 18px 0 18px;
}

.sidebar-opened .material-sub-item {
  padding-left: 46px;
}

.collapsed-menu-flyout {
  position: fixed;
  left: 54px;
  z-index: 1003;
  width: 220px;
  padding: 12px 0;
  background: #fff;
  border: 1px solid #eef0f4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.collapsed-flyout-item {
  height: 46px;
  padding: 0 24px;
  overflow: hidden;
  color: #606266;
  font-size: 14px;
  line-height: 46px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.collapsed-flyout-item:hover,
.collapsed-flyout-item.is-active {
  color: #1688ff;
  background: #ecf5ff;
}

.material-list-page {
  color: #606266;
  font-size: 14px;
}

.material-action-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 0 10px;
  background: #f5f7fa;
}

.material-action-bar .el-button--medium {
  height: 32px;
  padding: 8px 18px;
  font-size: 14px;
  line-height: 14px;
}

.material-real-tabs.el-tabs--border-card {
  width: 100%;
  border: 1px solid #dcdfe6;
  border-radius: 0;
  box-shadow: none;
}

.material-real-tabs > .el-tabs__header {
  width: 100%;
  background: #f5f7fa;
}

.material-real-tabs > .el-tabs__header .el-tabs__item {
  height: 34px;
  padding: 0 20px;
  color: #909399;
  font-size: 14px;
  line-height: 34px;
}

.material-real-tabs > .el-tabs__header .el-tabs__item.is-active {
  color: #1688ff;
  background: #fff;
}

.material-real-tabs > .el-tabs__content {
  padding: 0;
  background: #fff;
}

.material-filter-zone,
.landing-filter-zone {
  padding: 10px 10px 8px;
  background: #fff;
  border-bottom: 1px solid #ebeef5;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.filter-row.second {
  margin-bottom: 0;
}

.material-list-page .upload-range {
  width: 350px;
}

.material-list-page .upload-range .el-range-input {
  width: 120px;
}

.material-list-page .upload-range .el-range-separator {
  flex: none;
  width: 26px;
  padding: 0;
  color: #909399;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}

.material-list-page .filter-select {
  width: 130px;
}

.material-list-page .filter-select.wide {
  width: 130px;
}

.material-list-page .filter-input {
  width: 120px;
}

.material-list-page .query-button {
  width: 80px;
  margin-left: 0;
}

.material-list-page .el-input--medium .el-input__inner {
  height: 36px;
  color: #606266;
  font-size: 14px;
  line-height: 36px;
}

.material-list-page .el-range-editor--medium.el-input__inner {
  height: 36px;
}

.material-list-page .el-button--medium.query-button {
  height: 36px;
  padding: 10px 18px;
  font-size: 14px;
}

.material-list-page .el-input--mini .el-input__inner {
  height: 28px;
  color: #606266;
  font-size: 14px;
  line-height: 28px;
}

.material-list-page .el-range-editor--mini.el-input__inner {
  height: 28px;
}

.material-list-page .el-button--mini {
  height: 28px;
  padding: 6px 12px;
  font-size: 14px;
}

.material-table-wrap {
  background: #fff;
}

.real-material-table {
  color: #606266;
  font-size: 14px;
}

.real-material-table.el-table th {
  background: #fff;
}

.real-material-table.el-table th > .cell {
  color: #909399;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.real-material-table.el-table td {
  height: 94px;
  border-bottom-color: #e6ebf2;
}

.real-material-table.el-table td .cell {
  color: #606266;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.real-material-table .cell {
  padding-right: 8px;
  padding-left: 8px;
}

.real-material-table .el-table__fixed {
  z-index: 5;
  background: #fff;
  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.05);
}

.real-material-table .el-table__fixed td,
.real-material-table .el-table__fixed th {
  background: inherit;
}

.material-list-thumb {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 74px;
  overflow: hidden;
  border: 1px solid #dcdfe6;
  background: linear-gradient(145deg, #7c8f9b, #d5dde2);
  background-size: cover;
  background-position: center;
}

.material-list-thumb-badge {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 2;
  max-width: 34px;
  overflow: hidden;
  padding: 1px 4px;
  border-radius: 2px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  font-size: 11px;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-cell-select {
  width: 88px;
}

.channel-cell-select .el-input__inner {
  height: 58px !important;
  padding-right: 18px;
  color: #909399;
  background: #f5f7fa;
}

.channel-cell-select .el-select__tags {
  max-width: 70px !important;
}

.channel-cell-select .el-tag {
  height: 18px;
  margin: 2px 0 0 3px;
  padding: 0 5px;
  font-size: 10px;
  line-height: 16px;
}

.auto-down-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #606266;
  font-size: 14px;
  line-height: 20px;
}

.auto-down-cell span {
  white-space: nowrap;
}

.auto-down-cell .el-switch {
  margin-left: 2px;
  transform: scale(0.82);
  transform-origin: left center;
}

.shooter-group-select {
  width: 90px;
}

.shooter-group-select .el-input__inner {
  color: #909399;
  background: #f5f7fa;
}

.material-pagination {
  padding: 14px 10px;
  text-align: right;
  background: #fff;
}

.landing-filter-zone {
  display: flex;
  align-items: center;
  gap: 4px;
}

.landing-table {
  min-height: 340px;
}

.material-upload-dialog .el-dialog__body,
.material-title-import-dialog .el-dialog__body,
.douyin-import-dialog .el-dialog__body {
  padding: 18px 24px;
}

.material-upload-dialog .el-dialog__header {
  padding: 18px 20px 10px;
  text-align: center;
}

.material-upload-dialog .el-dialog__title {
  color: #303133;
  font-size: 14px;
  font-weight: 400;
}

.material-upload-video-dialog .el-dialog__body {
  min-height: 610px;
  padding: 24px 56px 34px;
}

.material-upload-form {
  width: 560px;
}

.material-upload-form .el-form-item {
  margin-bottom: 20px;
}

.material-upload-form .el-form-item__label {
  color: #606266;
  font-size: 12px;
  font-weight: 400;
}

.material-upload-form .el-select,
.material-upload-form .el-input {
  width: 160px;
}

.material-upload-form .el-input__inner {
  height: 29px;
  border-color: #dcdfe6;
  color: #606266;
  font-size: 12px;
  line-height: 29px;
}

.material-upload-form .el-radio__label {
  color: #a8abb2;
  font-size: 12px;
}

.designer-folder-note {
  margin-top: 5px;
  color: #909399;
  font-size: 12px;
  line-height: 16px;
}

.upload-drop-panel {
  box-sizing: border-box;
  width: 288px;
  height: 144px;
  padding-top: 32px;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  color: #606266;
  text-align: center;
  cursor: pointer;
  background: #fff;
}

.upload-drop-panel .el-icon-upload {
  display: block;
  margin-bottom: 14px;
  color: #c0c4cc;
  font-size: 42px;
  line-height: 42px;
}

.upload-drop-panel div {
  font-size: 12px;
  line-height: 18px;
}

.upload-drop-panel em {
  color: #1890ff;
  font-style: normal;
}

.upload-drop-panel p {
  margin: 4px 0 0;
  color: #909399;
  font-size: 11px;
  line-height: 16px;
}

.upload-file-card {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 400px;
  height: 73px;
  margin-top: 20px;
  padding: 8px 14px 8px 20px;
  border: 1px solid #b9d7f3;
  border-radius: 4px;
  background: #fff;
}

.upload-file-thumb {
  width: 31px;
  height: 55px;
  margin-right: 24px;
  border: 1px solid #dcdfe6;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
    linear-gradient(160deg, #793c1c 0%, #f0c26b 45%, #aa3426 100%);
}

.upload-file-main {
  flex: 1;
  min-width: 0;
}

.upload-file-name {
  overflow: hidden;
  color: #606266;
  font-size: 12px;
  line-height: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-progress-row {
  margin-top: 8px;
}

.upload-progress-track {
  position: relative;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #e6ebf5;
}

.upload-progress-inner {
  height: 100%;
  border-radius: 8px;
  background: #409eff;
  transition: width 0.2s ease;
}

.upload-progress-track.is-complete .upload-progress-inner {
  background: #13c20f;
}

.upload-progress-track span {
  position: absolute;
  top: -2px;
  right: 4px;
  color: #fff;
  font-size: 11px;
  line-height: 14px;
}

.upload-file-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #f56c6c;
  font-size: 16px;
  cursor: pointer;
}

.upload-error-text {
  width: 530px;
  margin-top: 8px;
  color: #f00;
  font-size: 11px;
  line-height: 28px;
  word-break: break-all;
}

.material-share-dialog .el-dialog__body {
  padding: 16px 28px 4px;
}

.material-official-form .el-input {
  width: 360px;
}

.official-ready-text {
  color: #67c23a;
  font-size: 13px;
}

.material-share-form .el-form-item__label,
.material-share-form .el-radio__label,
.material-share-form .el-checkbox__label {
  font-size: 12px;
}

.material-share-form .el-collapse {
  border-top: 1px solid #ebeef5;
}

.material-share-form .el-collapse-item__header {
  height: 34px;
  color: #606266;
  font-size: 12px;
  line-height: 34px;
}

.material-title-import-dialog .title-import-tip {
  margin-top: 8px;
  color: #909399;
  font-size: 12px;
}

.douyin-import-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.douyin-search-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #606266;
  font-size: 12px;
}

.douyin-search-line .el-input {
  width: 180px;
}

.douyin-table {
  border: 1px solid #ebeef5;
}

.cps-video-page {
  min-height: calc(100vh - 54px);
  color: #606266;
  font-size: 14px;
}

.cps-filter-container {
  padding: 0 20px 12px;
  background: transparent;
  border: 0;
}

.cps-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 12px;
}

.cps-date-range {
  width: 410px !important;
}

.cps-date-range .el-range-separator {
  width: 28px;
  color: #606266;
  line-height: 34px;
}

.cps-hidden-type {
  display: none;
}

.cps-filter-input {
  width: 170px;
}

.cps-filter-select {
  width: 170px;
}

.cps-wide-select {
  width: 204px;
}

.cps-aweme-filter {
  width: 220px;
}

.cps-query-button {
  width: 104px;
}

.cps-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
}

.cps-action-row .el-button + .el-button {
  margin-left: 0;
}

.cps-video-page .el-input__inner,
.cps-video-page .el-range-editor.el-input__inner,
.cps-video-page .el-cascader .el-input__inner {
  height: 36px;
  color: #606266;
  border-color: #dcdfe6;
  font-size: 14px;
  line-height: 36px;
}

.cps-video-page .el-input__inner::placeholder,
.cps-video-page .el-range-input::placeholder {
  color: #c0c4cc;
}

.cps-video-page .el-button--medium {
  height: 36px;
  padding: 9px 20px;
  font-size: 14px;
}

.cps-table-panel {
  margin: 0 20px;
  background: #fff;
}

.cps-table {
  color: #606266;
  font-size: 14px;
}

.cps-table.el-table::before {
  background-color: #ebeef5;
}

.cps-table.el-table th {
  height: 54px;
  background: #fff;
  color: #909399;
  font-size: 14px;
  font-weight: 600;
}

.cps-table.el-table td {
  height: 96px;
  border-bottom-color: #ebeef5;
}

.cps-table.el-table .cell {
  line-height: 22px;
}

.cps-table .el-input__inner,
.cps-table .el-cascader .el-input__inner {
  height: 38px;
  line-height: 38px;
}

.cps-cell-input {
  width: 120px;
}

.cps-status-select,
.cps-aweme-select {
  width: 210px;
}

.cps-alias-input {
  width: 150px;
}

.cps-small-select,
.cps-category-cell {
  width: 120px;
}

.cps-cover-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 66px;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #c6c6c6, #9f9f9f);
  font-size: 20px;
}

.cps-table .el-button--text {
  color: #1688ff;
  font-size: 14px;
}

.cps-parse-popover {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cps-pagination {
  padding: 16px 0 18px;
  text-align: right;
}

.cps-editor-dialog,
.cps-import-dialog {
  max-width: calc(100vw - 40px);
  border-radius: 2px;
}

.cps-editor-dialog .el-dialog__header,
.cps-import-dialog .el-dialog__header {
  padding: 22px 24px 8px;
}

.cps-editor-dialog .el-dialog__title,
.cps-import-dialog .el-dialog__title {
  color: #303133;
  font-size: 16px;
  font-weight: 400;
}

.cps-editor-dialog .el-dialog__body {
  min-height: 760px;
  padding: 24px 72px 18px;
}

.cps-editor-form {
  width: 520px;
}

.cps-editor-form .el-form-item {
  margin-bottom: 18px;
}

.cps-editor-form .el-form-item__label {
  color: #606266;
  font-size: 14px;
}

.cps-editor-form .el-input,
.cps-editor-form .el-select,
.cps-editor-form .el-cascader,
.cps-editor-form .el-date-editor,
.cps-editor-form .el-textarea {
  width: 300px;
}

.cps-cover-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 124px;
  border: 1px dashed #dcdfe6;
  background: #fff;
}

.cps-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 100px;
  color: #fff;
  background: linear-gradient(135deg, #c7c7c7, #9f9f9f);
  font-size: 24px;
}

.cps-import-dialog .el-dialog__body {
  min-height: 680px;
  padding: 22px 28px;
}

.cps-import-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #606266;
  font-size: 14px;
}

.cps-import-defaults {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.cps-import-defaults .el-select,
.cps-import-defaults .el-cascader,
.cps-import-defaults .el-date-editor {
  width: 210px;
}

.cps-import-table {
  width: 100%;
}

.gap-note {
  color: #909399;
  font-size: 12px;
}

.route-placeholder {
  min-height: 360px;
  padding: 28px;
}

.route-placeholder-title {
  margin-bottom: 8px;
  color: #303133;
  font-size: 18px;
  font-weight: 600;
}

.route-placeholder-path {
  color: #909399;
  font-size: 13px;
}

.database-page {
  box-sizing: border-box;
  min-height: calc(100vh - 110px);
  padding: 18px 24px 32px;
  background: #f5f7fa;
}

.database-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #ebeef5;
}

.database-search {
  width: 260px;
}

.database-search-wide {
  width: 340px;
}

.database-filter-select {
  width: 150px;
}

.database-table {
  border: 1px solid #ebeef5;
}

.database-table .el-table__header th {
  color: #909399;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
}

.database-table .el-table__row td {
  height: 62px;
  color: #606266;
  font-size: 14px;
}

.publish-job-page {
  min-height: calc(100vh - 110px);
  padding: 18px 24px 36px;
  background: #f5f7fa;
}

.publish-job-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #ebeef5;
}

.publish-job-search {
  width: 340px;
}

.publish-job-status {
  width: 160px;
}

.publish-job-table,
.publish-job-item-table {
  border: 1px solid #ebeef5;
}

.publish-job-table .el-table__row,
.publish-job-item-table .el-table__row {
  cursor: pointer;
}

.publish-job-table .el-table__row.is-current-job td,
.publish-job-item-table .el-table__row.is-current-item td {
  background: #ecf5ff;
}

.publish-job-pagination {
  display: flex;
  justify-content: flex-end;
  padding: 14px 0;
}

.publish-job-detail {
  margin-top: 2px;
  background: #fff;
  border: 1px solid #ebeef5;
}

.publish-job-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px 18px;
  border-bottom: 1px solid #ebeef5;
}

.publish-job-detail-title {
  color: #303133;
  font-size: 16px;
  font-weight: 600;
}

.publish-job-detail-sub {
  margin-top: 4px;
  color: #909399;
  font-size: 12px;
}

.publish-job-detail-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.publish-job-warnings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 18px 0;
}

.publish-job-detail-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(560px, 1.05fr);
  gap: 16px;
  padding: 16px 18px 18px;
}

.publish-job-items-panel,
.publish-job-payload-panel {
  min-width: 0;
}

.publish-job-payload-panel {
  border: 1px solid #ebeef5;
}

.publish-job-payload-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 10px 12px;
  border-bottom: 1px solid #ebeef5;
}

.publish-job-payload-head span {
  color: #909399;
  font-size: 12px;
}

.publish-job-missing-list,
.publish-job-material-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px 0;
}

.publish-job-section-label {
  color: #909399;
  font-size: 12px;
}

.publish-job-empty-inline {
  color: #67c23a;
  font-size: 12px;
}

.publish-job-payload-tabs {
  padding: 4px 12px 12px;
}

.payload-json {
  min-height: 420px;
  max-height: 560px;
  margin: 0;
  padding: 12px;
  overflow: auto;
  color: #303133;
  background: #f8fafc;
  border: 1px solid #ebeef5;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.ad-job-page {
  min-width: 1280px;
  color: #606266;
  font-size: 14px;
}

.ad-job-filter-container {
  margin-bottom: 12px;
  padding: 18px 24px 8px;
  background: transparent;
  border: 0;
}

.ad-job-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ad-job-filter-container .filter-item {
  margin-right: 10px;
  margin-bottom: 10px;
}

.ad-job-filter-select {
  width: 180px;
}

.ad-job-filter-select-small {
  width: 150px;
}

.ad-job-filter-select-large {
  width: 220px;
}

.ad-job-filter-input {
  width: 160px;
}

.ad-job-filter-input-large {
  width: 220px;
}

.ad-job-filter-button {
  width: 90px;
}

.ad-job-selection-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 0 24px 12px;
  padding: 8px 12px;
  color: #606266;
  background: #fff;
  border: 1px solid #ebeef5;
}

.ad-job-table-panel {
  margin: 0 24px;
  background: #fff;
}

.ad-job-table {
  border: 0;
}

.ad-job-table .success-row td {
  background: #f0f9eb;
}

.ad-job-account-cell {
  max-height: 44px;
  overflow: hidden;
  color: #606266;
  line-height: 20px;
}

.ad-job-sub-text {
  margin-top: 2px;
  color: #909399;
  font-size: 12px;
  line-height: 16px;
}

.ad-job-pagination {
  padding: 16px 12px;
}

.job-log-dialog .el-dialog__body {
  padding: 10px 20px 24px;
}

.job-log-table {
  width: 100%;
}

.ad-job-log-output {
  max-height: 160px;
  margin: 0;
  overflow: auto;
  color: #606266;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.copyable-overflow-tooltip {
  position: fixed;
  z-index: 5000;
  display: none;
  max-width: 560px;
  max-height: 260px;
  padding: 9px 12px;
  overflow: auto;
  color: #fff;
  background: rgba(32, 34, 38, 0.94);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  line-height: 20px;
  pointer-events: auto;
  user-select: text;
  -webkit-user-select: text;
}

.copyable-overflow-tooltip.is-visible {
  display: block;
}

.copyable-overflow-tooltip__text {
  white-space: pre-wrap;
  word-break: break-word;
  cursor: text;
}

.copyable-overflow-tooltip-active .el-tooltip__popper.is-dark {
  opacity: 0;
  pointer-events: none;
}

.el-tooltip__popper {
  user-select: text;
  -webkit-user-select: text;
}

.database-editor-dialog .el-dialog__body {
  padding: 18px 36px 6px;
}

.database-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #ebeef5;
}

.database-tag-row .el-tag {
  cursor: pointer;
}

.database-title-editor {
  padding: 16px;
  background: #fff;
  border: 1px solid #ebeef5;
}

.database-title-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #303133;
  font-size: 14px;
  font-weight: 600;
}

.database-title-add {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.database-title-add .el-textarea {
  width: 520px;
}

.database-alert {
  margin-bottom: 14px;
}

.auth-toolbar {
  align-items: center;
}

.callback-url-input {
  width: 520px;
  margin-left: 8px;
}

.database-note {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #606266;
  font-size: 13px;
}

.auth-log-list {
  padding: 8px 20px;
  color: #606266;
  font-size: 13px;
  line-height: 1.8;
}

.sync-missing-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.asset-sync-runbar {
  align-items: flex-start;
  flex-wrap: wrap;
}

.asset-sync-account-select {
  width: 360px;
}

.asset-sync-type-select {
  width: 240px;
}

.asset-sync-param {
  width: 150px;
}

.asset-sync-table .el-table__expanded-cell {
  padding: 0;
  background: #fafbfc;
}

.asset-sync-expand {
  padding: 14px 18px 18px;
}

.asset-sync-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #606266;
  font-size: 13px;
  line-height: 1.7;
}

.asset-sync-step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.asset-sync-step {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ebeef5;
  border-radius: 4px;
}

.asset-sync-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #606266;
  font-size: 13px;
}

.asset-sync-step-head span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-sync-endpoint {
  margin-top: 8px;
  color: #303133;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 12px;
  word-break: break-all;
}

.asset-sync-endpoint a {
  margin-left: 8px;
}

.asset-sync-step-message {
  margin-top: 6px;
  color: #909399;
  font-size: 12px;
}

.asset-sync-dialog .el-dialog__body {
  padding-top: 8px;
}

.asset-sync-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  color: #606266;
  font-size: 13px;
}

.asset-sync-detail-grid div {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.asset-sync-detail-grid b {
  flex: 0 0 96px;
  color: #909399;
  font-weight: 500;
}

.asset-sync-detail-grid span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #303133;
}

.asset-sync-detail-block {
  margin-top: 16px;
}

.asset-sync-detail-title {
  margin-bottom: 8px;
  color: #303133;
  font-size: 14px;
  font-weight: 600;
}

.official-sync-next {
  margin-left: 10px;
  color: #909399;
  font-size: 12px;
}

.publish-gate-dialog .el-dialog__body {
  padding-top: 10px;
}

.publish-gate-form {
  margin-top: 16px;
}

.publish-gate-note {
  color: #909399;
  font-size: 12px;
  line-height: 1.6;
}

.readiness-summary {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 10px;
  margin: 12px 0 14px;
}

.readiness-summary-item {
  min-height: 76px;
  padding: 12px;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.readiness-summary-total {
  background: #f5f7fa;
}

.readiness-summary-item span,
.readiness-summary-item em {
  display: block;
  color: #909399;
  font-size: 12px;
  font-style: normal;
}

.readiness-summary-item b {
  display: block;
  margin: 8px 0 4px;
  color: #303133;
  font-size: 20px;
  font-weight: 600;
}

.readiness-blockers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
  color: #606266;
  font-size: 13px;
}

.readiness-sub-text {
  margin-top: 3px;
  color: #909399;
  font-size: 12px;
}

.readiness-expand {
  padding: 6px 12px;
}

.readiness-missing-list {
  display: grid;
  gap: 8px;
}

.readiness-missing-row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(160px, 1fr) minmax(120px, 180px) minmax(150px, 220px) minmax(120px, 1fr);
  gap: 10px;
  align-items: center;
  color: #606266;
  font-size: 12px;
}

.readiness-ready-line {
  color: #67c23a;
  font-size: 13px;
}

.el-button,
.el-input__inner,
.el-textarea__inner {
  border-radius: 4px;
}

.el-button--medium {
  padding: 10px 20px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #c0c4cc;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: #f5f7fa;
}
