.side-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 28px;
  height: 30px;
}

.side-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.side-item > span:not(.side-icon) {
  white-space: nowrap;
}

.side-count {
  flex: none;
  margin-left: auto;
}

.side-item:not(.active) .side-icon img[src*="nav-publish"] {
  filter: brightness(0) saturate(100%) invert(78%);
}

.side-item.active .side-icon img {
  filter: brightness(0) invert(1);
}

.side-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 5px;
  border-radius: 50%;
  background: #f56c6c;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.order-page {
  position: relative;
}

.order-page .page-head {
  margin-bottom: 14px;
}

.timed-order-btn {
  position: absolute;
  top: 7px;
  left: 205px;
  height: 40px;
  padding: 0 20px;
  border: 0;
  background: var(--blue);
  color: #fff;
}

.order-category-tabs {
  display: flex;
  width: min(1080px, 70%);
  margin: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.order-category-tabs button {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 38px;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  background: #fff;
  color: #303133;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.order-category-tabs button:last-child {
  border-right: 1px solid var(--line);
}

.order-category-tabs button.active {
  background: var(--blue);
  color: #fff;
}

.order-search-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 12px;
  max-width: 1080px;
  padding: 8px 0 12px;
  margin-bottom: 6px;
}

.order-row-break {
  flex: 0 0 100%;
  width: 100%;
  height: 0;
}

.order-status-row {
  display: flex;
  flex: 0 0 100%;
  align-items: flex-end;
  gap: 12px;
  min-height: 34px;
}

.order-status-row label {
  min-width: 0;
  width: 300px;
}

.order-status-row .btn {
  flex: none;
}

.order-search-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  color: #606266;
  font-size: 12px;
  white-space: nowrap;
}

.order-search-panel label:nth-child(-n+3) {
  width: 310px;
}

.order-search-panel input,
.order-search-panel select {
  width: 100%;
  height: 34px;
  border: 1px solid #c7ccd3;
  border-radius: 4px;
  background: #fff;
  padding: 0 12px;
  outline: none;
}

.order-search-panel select:disabled {
  color: #606266;
  opacity: 1;
}

.date-range {
  display: flex;
  align-items: center;
  gap: 9px;
}

.date-range input {
  min-width: 135px;
}

.date-range i {
  font-style: normal;
}

.order-search-panel .btn {
  width: 82px;
  height: 34px;
}

.order-table-wrap {
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
}

.order-table {
  min-width: 1260px;
  table-layout: auto;
}

.order-published .order-table,
.order-issue .order-table {
  min-width: 1500px;
}

.order-table th,
.order-table td {
  height: 62px;
  padding: 10px 14px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  vertical-align: middle;
}

.order-table th:last-child,
.order-table td:last-child {
  border-right: 0;
}

.order-table th:first-child,
.order-table td:first-child {
  width: 105px;
  min-width: 105px;
  max-width: 105px;
  padding-right: 8px;
  padding-left: 8px;
  word-break: break-all;
}

.order-table .order-title {
  min-width: 260px;
  color: #42556d;
}

.publish-link {
  color: #ff6b18;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 240px;
}

.order-btn {
  height: 38px;
  padding: 0 17px;
  border: 0;
  border-radius: 3px;
  background: var(--blue);
  color: #fff;
  white-space: nowrap;
}

.order-btn.outline {
  min-width: 76px;
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
}

.order-btn.danger {
  background: #f56c6c;
}

.order-btn.warning {
  background: #e6a23c;
}

.order-waiting-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #9fc8ff;
  border-radius: 3px;
  color: var(--blue);
  background: #eef6ff;
  white-space: nowrap;
}

.order-empty {
  height: 330px !important;
  text-align: center !important;
  color: #a8adb5;
}

.order-empty .empty-box {
  display: block;
  color: #e8ebf0;
  font-size: 96px;
  line-height: 1;
}

.order-empty b {
  display: block;
  margin-top: 10px;
  font-weight: 400;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  padding: 0 20px;
}

.order-footer b {
  color: var(--blue);
}

@media (max-width: 1450px) {
  .order-category-tabs {
    width: 70%;
  }

  .order-search-panel label:nth-child(-n+3) {
    width: 300px;
  }

  .order-search-panel label {
    min-width: 190px;
  }

  .date-range input {
    min-width: 130px;
  }
}
