.dashboard-card-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 194px;
  font-size: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.dashboard-card-item.arco-card {
  border: 1px solid #e8ebf2;
  cursor: pointer;
}
.dashboard-card-item.arco-card .arco-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  box-sizing: border-box;
}
.dashboard-card-item.arco-card.arco-card-bordered {
  border-radius: 3px;
}
.dashboard-card-item:hover .card-top .icon-more {
  top: 0;
}
.dashboard-card-item .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-card-item .card-top .card-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-1);
}
.dashboard-card-item .card-top .icon-more {
  position: relative;
  top: -10000px;
  margin-left: 18px;
  cursor: pointer;
}
.dashboard-card-item .card-top .icon-more .arco-dropdown-list {
  min-width: 100px;
}
.dashboard-card-item .card-top .icon-other {
  position: relative;
  top: 0;
  margin-left: 18px;
  cursor: pointer;
}
.dashboard-card-item .card-desc {
  margin-top: 6px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 22px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dashboard-card-item .card-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  margin-top: 6px;
  font-size: 14px;
  color: var(--color-text-3);
  line-height: 22px;
  white-space: nowrap;
}
.dashboard-card-item .card-bottom .bottom-left {
  margin-right: 20px;
}
.dashboard-card-item .card-bottom .bottom-left,
.dashboard-card-item .card-bottom .bottom-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dashboard-card-item .card-tags {
  margin-top: 18px;
}
.dashboard-card-item .card-tags .tag {
  margin-right: 14px;
  padding: 3px 6px;
  color: #3c6eff;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  background: #e6f1fe;
  border-radius: 2px;
}
.dashboard-card-delete-modal {
  width: 320px;
  min-height: 140px;
}
.dashboard-card-delete-modal .arco-modal-header {
  border-bottom: none;
}
.dashboard-card-delete-modal .arco-modal-body {
  margin-top: -15px;
  padding-top: 0;
  padding-bottom: 0;
}
.dashboard-card-delete-modal .arco-modal-footer {
  border-top: none;
}
.dashboard-card-delete-modal .delete-modal-title {
  color: var(--color-text-1);
  font-size: 16px;
  line-height: 24px;
}
.dashboard-card-delete-modal .delete-modal-tip {
  color: var(--color-text-3);
  font-size: 12px;
  line-height: 20px;
}
