.apps {
  overflow: hidden;
}
.apps .add-btn {
  float: right;
}
.apps .apps-list {
  width: 100%;
  /* display: flex;
      flex-wrap: wrap;
      justify-content: space-between; */
  display: grid;
  grid-template-columns: repeat(auto-fill, 220px);
  grid-row-gap: 12px;
  grid-column-gap: 8px;
  justify-content: space-between;
  padding-top: 10px;
  float: left;
  overflow: hidden;
  height: 100%;
  background: #fff;
}
.apps .apps-list .apps-item {
  border: 1px solid #cecece;
  width: 220px;
  overflow: hidden;
  line-height: 1;
  position: relative;
}
.apps .apps-list .apps-item .apps-item-logo {
  width: 220px;
  height: 150px;
  border-bottom: 1px solid #cecece;
  cursor: pointer;
}
.apps .apps-list .apps-item .apps-item-info {
  height: 110px;
  box-sizing: border-box;
  padding: 16px;
}
.apps .apps-list .apps-item .apps-item-info p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.apps .apps-list .apps-item .apps-item-info p:nth-of-type(1) {
  color: #000;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 16.8px */
}
.apps .apps-list .apps-item .apps-item-info p:nth-of-type(2) {
  margin-top: 6px;
  overflow: hidden;
  color: #7e7f83;
  text-overflow: ellipsis;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}
.apps .apps-list .apps-item .apps-item-status {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.apps .apps-list .apps-item .apps-item-status .item-status-left {
  display: inline-flex;
  width: 48px;
  height: 12px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2px;
  border: 1px solid #06ba5b;
  box-sizing: content-box;
  font-family: PingFang SC;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px; /* 100% */
}
.apps .apps-list .apps-item .apps-item-status .item-status-right {
  display: flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid #eff3f5;
  background: #fff;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 2px;
}
.apps .apps-list .apps-item .apps-item-status .item-status-right span {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #7e7f83;
  margin: 0 1px;
}
.apps .apps-list .apps-item .apps-item-status .item-status-right:hover {
  border: 1px solid #7e7f83;
}
.apps .apps-list .apps-item .apps-item-status .normal {
  color: #06ba5b;
  border: 1px solid #06ba5b;
}
.apps .apps-list .apps-item .apps-item-status .pause {
  color: #f00000;
  border: 1px solid #f00000;
}
.apps .apps-list .apps-item .apps-item-action {
  position: absolute;
  height: 68px;
  box-sizing: border-box;
  padding: 8px;
  display: flex;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgb(255, 255, 255), rgb(255, 255, 255));
  display: flex;
  justify-content: space-between;
}
.apps .apps-list .apps-item .apps-item-action .close-btn {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 16px;
  cursor: pointer;
}
.apps .apps-list .apps-item .apps-item-action .edit-btn {
  display: flex;
  width: 98px;
  height: 28px;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #1c1f23;
  border: 0;
  padding: 0;
  margin-top: 21px;
  cursor: pointer;
}
.apps .apps-list .apps-item .apps-item-action .edit-btn:hover {
  color: #0F58D6;
}
.apps .apps-list .apps-item .apps-item-action-show {
  z-index: 1;
}
.apps .apps-list .apps-item .apps-item-action-hide {
  z-index: -1;
}

.app-view .view-form {
  margin-top: 20px;
}
.nopading .ant-card-body {
  padding: 0;
}
.nopading .ant-table-wrapper {
  margin-top: 0;
}

.card-head .ant-card-head {
  background-color: transparent;
}