/* Biaobiaoku static clone */
:root {
  --bbk-bg: #f7f7f7;
  --bbk-surface: #ffffff;
  --bbk-line: #dadde2;
  --bbk-muted: #7b8088;
  --bbk-text: #2f343b;
  --bbk-primary: #1788d8;
  --bbk-primary-dark: #106fb0;
  --bbk-accent: #f36a22;
  --bbk-green: #42b36a;
  --bbk-yellow: #ffb940;
  --bbk-shadow: 0 8px 26px rgba(22, 36, 58, 0.09);
  --bbk-radius: 10px;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--bbk-text);
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", Tahoma, Arial, sans-serif;
  background: var(--bbk-bg);
  font-size: 14px;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

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

* {
  box-sizing: border-box;
}

.bbk-page {
  min-height: 100vh;
  background: var(--bbk-bg);
}

.bbk-page.white {
  background: #fff;
}

.bbk-container {
  width: 100%;
  margin: 0 auto;
  padding: 10px 12px 28px;
}

.bbk-main-wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.bbk-top-panel {
  background: transparent;
  padding: 0 0 10px;
}

.bbk-tab-row,
.bbk-toolbar-row,
.bbk-filter-row,
.bbk-form-row,
.bbk-action-row,
.bbk-card-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bbk-tab-row {
  gap: 10px;
  margin-bottom: 10px;
}

.bbk-tab-title {
  color: var(--bbk-primary);
  font-weight: 900;
  font-size: 17px;
  line-height: 30px;
  margin-right: 20px;
}

.bbk-tab-link {
  color: #333;
  font-size: 16px;
  line-height: 30px;
  padding: 0 2px;
}

.bbk-tab-link.active {
  color: var(--bbk-primary);
  font-weight: 900;
  font-size: 17px;
}

.bbk-top-select {
  display: inline-flex;
  align-items: center;
  height: 30px;
  min-width: 96px;
  padding: 0 28px 0 10px;
  border: 1px solid #d4d9df;
  border-radius: 2px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23646b73' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 10px center;
  color: #333;
  font-size: 14px;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

button.bbk-top-select {
  cursor: pointer;
  text-align: left;
}

.bbk-top-select:focus {
  border-color: var(--bbk-primary);
}

.bbk-search-shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
}

.bbk-search-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--bbk-primary);
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.bbk-search-input {
  flex: 1;
  min-width: 0;
  height: 37px;
  border: 0;
  outline: none;
  padding: 0 12px;
  font-size: 16px;
  line-height: 37px;
  background: transparent;
}

.bbk-search-input::placeholder,
.bbk-note,
.bbk-help {
  color: #7f8894;
}

.bbk-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 40px;
  border: 0;
  background: var(--bbk-primary);
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
}

.bbk-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 96px;
  padding: 0 12px;
  border: 1px solid #d6d6d6;
  background: #f8f8f8;
  color: #444;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  appearance: none;
}

.bbk-mini-btn.orange {
  background: #f7662e;
  border-color: #f7662e;
  color: #fff;
}

.bbk-mini-btn.active,
.bbk-mini-btn.orange.active,
.bbk-mini-btn.blue.active,
.bbk-mini-btn.green.active {
  background: var(--bbk-primary);
  border-color: var(--bbk-primary);
  color: #fff;
}

.bbk-mini-btn:disabled,
.bbk-mini-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.bbk-mini-btn.blue {
  background: #fff;
  border-color: var(--bbk-primary);
  color: var(--bbk-primary);
}

.bbk-mini-btn.green {
  background: #fff;
  border-color: var(--bbk-green);
  color: var(--bbk-green);
}

.bbk-mini-btn.solid-blue {
  background: var(--bbk-primary);
  border-color: var(--bbk-primary);
  color: #fff;
}

.bbk-mini-btn.small {
  height: 26px;
  min-width: auto;
  padding: 0 10px;
  font-size: 13px;
  line-height: 1;
}

.bbk-mini-btn:hover,
.bbk-float-btn:hover,
.bbk-dock-btn:hover,
.layui-btn:hover {
  box-shadow: none;
  transform: none;
}

.layui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  line-height: 1;
  padding: 0 14px;
  border-radius: 2px;
  box-shadow: none;
  border: 1px solid #d6d6d6;
  background: #fff;
  color: #444;
  font-size: 14px;
}

.layui-btn-sm {
  height: 26px;
  line-height: 1;
  padding: 0 10px;
  font-size: 13px;
}

.layui-btn-primary {
  background: #fff;
  border-color: #cfd5dc;
  color: #555;
}

.layui-btn-normal {
  background: var(--bbk-primary);
  border-color: var(--bbk-primary);
  color: #fff;
}

.layui-btn-warm {
  background: var(--bbk-accent);
  border-color: var(--bbk-accent);
  color: #fff;
}

.layui-btn + .layui-btn,
.bbk-mini-btn + .bbk-mini-btn {
  margin-left: 0;
}

.bbk-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bbk-chip,
.bbk-chip-gray,
.bbk-chip-outline,
.bbk-chip-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 4px;
  font-size: 13px;
  border: 1px solid #d5d7db;
  background: #fdfdfd;
  color: #333;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.bbk-chip.active,
.bbk-chip-active {
  background: #19a000;
  border-color: #19a000;
  color: #fff;
}

.bbk-chip.gray {
  background: #f4f6f8;
}

.bbk-chip.orange {
  background: #fff4ec;
  border-color: #f3b593;
  color: #ca5c1e;
}

.bbk-chip.green {
  background: #19a000;
  border-color: #19a000;
  color: #fff;
}

.bbk-chip.red {
  background: #fff0ef;
  border-color: #f2b0aa;
  color: #d9534f;
}

.bbk-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
  margin-top: 10px;
}

.bbk-active-filters:empty {
  min-height: 0;
  margin-top: 0;
}

.bbk-active-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #d7dce2;
  border-radius: 3px;
  background: #fff;
  color: #333;
  font-size: 13px;
  cursor: pointer;
}

.bbk-active-filter::after {
  content: "×";
  color: #7b8088;
  font-size: 14px;
  line-height: 1;
}

.bbk-field {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.bbk-range {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.bbk-range-input {
  width: 120px;
  max-width: 100%;
  flex: 0 0 120px;
}

.bbk-range-sep {
  color: #8a9098;
  font-size: 18px;
  line-height: 1;
  flex: none;
}

.bbk-range-tags {
  flex: 1;
}

.bbk-range-tags .bbk-chip {
  min-width: auto;
}

.bbk-field > label,
.bbk-label {
  min-width: 112px;
  text-align: right;
  color: #333;
  font-size: 14px;
}

.bbk-input,
.bbk-textarea,
.bbk-select {
  width: 100%;
  border: 1px solid #d9dce1;
  outline: none;
  border-radius: 2px;
  background: #fff;
  padding: 0 12px;
  color: #333;
  font-size: 14px;
}

.bbk-input,
.bbk-select {
  height: 36px;
}

.bbk-range-input {
  height: 32px;
}

.bbk-textarea {
  min-height: 118px;
  padding: 12px;
  resize: none;
}

.bbk-grid {
  display: grid;
  gap: 8px;
}

.bbk-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bbk-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bbk-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bbk-grid.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.bbk-section {
  margin-top: 16px;
}

.bbk-home-page .bbk-section {
  display: none;
}

.bbk-result-shell {
  margin-top: 8px;
}

.bbk-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border: 1px solid #e1e3e7;
  border-radius: 8px;
  background: #fff;
}

.bbk-result-header-left,
.bbk-result-header-right,
.bbk-result-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bbk-result-grid.is-loading {
  opacity: 0.52;
  pointer-events: none;
}

.bbk-group-label {
  min-width: 100%;
  margin-top: 4px;
  color: #6f7782;
  font-size: 12px;
  font-weight: 700;
}

.bbk-result-header-right {
  justify-content: flex-end;
}

.bbk-result-stat {
  min-width: 96px;
  padding: 6px 10px;
  border: 1px solid #d7dce2;
  border-radius: 16px;
  color: #4b525b;
  background: #fafafa;
  font-size: 13px;
  line-height: 1;
}

.bbk-result-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 10px;
  gap: 10px;
  align-items: stretch;
}

.bbk-result-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bbk-result-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bbk-result-grid.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.bbk-result-grid.dim-unselected .bbk-result-card:not(.selected) {
  opacity: 0.34;
  filter: grayscale(0.55);
}

.bbk-result-card {
  position: relative;
  min-height: 238px;
  padding: 10px 10px 0;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.bbk-result-card:hover {
  border-color: #cfd6dd;
}

.bbk-result-card.selected {
  border-color: #2d8fe8;
}

.bbk-result-card.selected::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(45, 143, 232, 0.2);
  pointer-events: none;
}

.bbk-card-check {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  right: 3px;
  top: 3px;
  z-index: 4;
  width: 23px;
  height: 25px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #222;
  font-size: 23px;
  line-height: normal;
  text-align: right;
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
}

.bbk-result-card:hover .bbk-card-check,
.bbk-result-card.selected .bbk-card-check {
  display: inline-flex;
}

.bbk-result-card.selected .bbk-card-check {
  border-color: green;
  background: green;
  color: #fff;
}

.bbk-has-selected-bar {
  padding-bottom: 126px;
}

.bbk-selected-bar {
  position: fixed;
  left: 10.4vw;
  right: 10.4vw;
  bottom: 10px;
  z-index: 20;
  min-height: 111px;
  padding: 0;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 2px;
  box-shadow: #ddd 2px 2px 2px 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}

.bbk-selected-bar[hidden] {
  display: none;
}

.bbk-selected-title {
  position: relative;
  height: 30px;
  padding-left: 5px;
  background: #f9f9f9;
  line-height: 30px;
}

.bbk-selected-num {
  color: #00f;
  font-size: 18px;
}

.bbk-selected-content {
  min-height: 80px;
  padding: 20px 10px;
}

.bbk-selected-content .layui-btn {
  height: 30px;
  margin: 0 0 10px 10px;
  padding: 0 10px;
  border-radius: 2px;
  line-height: 30px;
  font-size: 12px;
}

.bbk-selected-content .layui-btn:first-child {
  margin-left: 0;
}

.bbk-selected-content .layui-icon {
  padding: 0 2px;
  font-size: 16px;
}

.bbk-selected-close-box {
  position: absolute;
  top: 5px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bbk-selected-close-box button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #666;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.bbk-selected-close-box .layui-icon {
  margin-top: 1px;
  font-size: 16px;
}

.bbk-result-image {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.bbk-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  transition: transform 0.6s;
}

.bbk-result-image:hover img {
  transform: scale(1.3);
}

.bbk-result-info {
  position: relative;
  margin: 0 -10px;
  padding-bottom: 9px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.bbk-result-info:hover,
.bbk-result-info:focus-visible {
  background: rgba(255, 195, 0, 0.1);
  outline: none;
}

.bbk-result-card.selected .bbk-result-info:hover,
.bbk-result-card.selected .bbk-result-info:focus-visible {
  background: rgba(50, 205, 50, 0.1);
}

.bbk-result-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 0;
  padding: 0 15px;
}

.bbk-result-name {
  min-width: 0;
  color: #d68a12;
  font-size: 16px;
  font-weight: 900;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bbk-result-tag {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 6px;
  border-radius: 3px;
  background: #189000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.bbk-result-class {
  margin-top: 2px;
  padding: 0 42px 0 15px;
  color: #2f343b;
  font-size: 13px;
  line-height: 25px;
}

.bbk-top-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: 0 2px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  vertical-align: 1px;
}

.bbk-top-badge.is-booked {
  background: #cb9724;
}

.bbk-top-badge.is-top {
  background: #1e9fff;
}

.bbk-result-stars {
  display: inline-block;
  margin-left: 6px;
  color: #cb9724;
  font-size: 12px;
  font-weight: 700;
}

.bbk-result-fav {
  position: absolute;
  top: 25px;
  right: 15px;
  display: none;
  width: 22px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.85);
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}

.bbk-result-info:hover .bbk-result-fav,
.bbk-result-info:focus-visible .bbk-result-fav,
.bbk-result-fav.active {
  display: inline-block;
}

.bbk-result-fav.active {
  color: #ffa513;
}

.bbk-result-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  padding: 0 15px;
}

.bbk-result-price {
  color: #ff8b00;
  font-size: 16px;
  font-weight: 900;
  line-height: 25px;
}

.bbk-result-goods {
  color: #666;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  white-space: nowrap;
}

.bbk-live-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bbk-live-modal[hidden] {
  display: none;
}

.bbk-live-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.bbk-live-modal-panel {
  position: relative;
  z-index: 1;
  width: 410px;
  max-width: calc(100vw - 32px);
  padding: 22px 28px 24px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.bbk-live-modal-close {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 12px;
  top: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 26px;
  line-height: 30px;
  cursor: pointer;
}

.bbk-live-modal-title {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.bbk-live-modal-desc {
  margin-top: 26px;
  color: #4b525b;
  font-size: 15px;
}

.bbk-live-modal-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bbk-floating-menu {
  position: fixed;
  z-index: 120;
  min-width: 150px;
  padding: 6px 0;
  border: 1px solid #d8dce2;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 36, 58, 0.16);
}

.bbk-floating-menu[hidden] {
  display: none;
}

.bbk-floating-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 34px;
  padding: 0 14px;
  border: 0;
  background: #fff;
  color: #333;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
}

.bbk-floating-menu button:hover,
.bbk-floating-menu button.active {
  background: #eef7ff;
  color: var(--bbk-primary);
}

.bbk-dialog {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bbk-dialog[hidden] {
  display: none;
}

.bbk-dialog-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.bbk-dialog-panel {
  position: relative;
  z-index: 1;
  width: 640px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.23);
  overflow: hidden;
}

.bbk-dialog.is-download-center .bbk-dialog-panel {
  width: 960px;
}

.bbk-dialog.is-realname-form .bbk-dialog-panel {
  width: 760px;
}

.bbk-dialog.is-selected-action .bbk-dialog-panel {
  width: 520px;
}

.bbk-dialog.is-selected-action .bbk-dialog-body {
  padding: 18px 22px;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}

.bbk-realname-form {
  color: #333;
}

.bbk-realname-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bbk-realname-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: #555;
  font-size: 13px;
}

.bbk-realname-field > span {
  color: #333;
}

.bbk-realname-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bbk-realname-upload {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 178px;
  padding: 10px;
  border: 1px dashed #cfd6df;
  border-radius: 4px;
  background: #fbfcfe;
  text-align: center;
  cursor: pointer;
}

.bbk-realname-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.bbk-realname-upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  border-radius: 3px;
  background: #f0f4f8;
  color: #9aa7b5;
  font-size: 34px;
  overflow: hidden;
}

.bbk-realname-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bbk-realname-upload strong {
  color: #333;
  font-size: 13px;
  font-weight: 600;
}

.bbk-realname-upload em {
  color: #888;
  font-size: 12px;
  font-style: normal;
}

.bbk-realname-upload.uploading em {
  color: var(--bbk-primary);
}

.bbk-realname-upload.uploaded {
  border-color: #67c23a;
}

.bbk-up-page {
  min-height: 100vh;
  background: #fff;
  color: rgba(0, 0, 0, 0.85);
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", Tahoma, Arial, sans-serif;
  font-size: 14px;
}

.bbk-up-page .bbk-right-dock {
  right: 5px;
  gap: 5px;
}

.bbk-up-page .bbk-dock-btn {
  width: 55px;
  height: 56px;
  border-color: #ddd;
  border-radius: 5px;
  background: #f3f3f3;
  box-shadow: none;
}

.bbk-up-page .bbk-dock-icon {
  margin-bottom: 2px;
  color: #666;
}

.bbk-up-notice {
  display: block;
  height: 40px;
  line-height: 40px;
  color: #f00;
  text-align: center;
  font-size: 14px;
}

.bbk-up-wrap {
  width: 1204px;
  max-width: calc(100vw - 120px);
  margin: 10px auto 0;
}

.bbk-up-auth {
  height: 42px;
  line-height: 40px;
  border: 1px solid orange;
  border-radius: 3px;
  color: #666;
  text-align: center;
  font-weight: 600;
}

.bbk-up-auth a {
  color: #00f;
  font-weight: 700;
}

.bbk-up-work {
  display: grid;
  grid-template-columns: 590px 590px;
  gap: 24px;
  margin-top: 10px;
}

.bbk-up-left,
.bbk-up-right {
  min-width: 0;
}

.bbk-up-drop {
  height: 300px;
  min-height: 300px;
  border: 0;
  border-radius: 5px;
  background: #efefef;
  color: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.bbk-up-drop.active,
.bbk-up-drop.uploading {
  outline: 2px solid #1e9fff;
  outline-offset: -2px;
}

.bbk-up-drop.uploaded {
  background: #eef8ef;
  color: #248a32;
}

.bbk-up-drop.failed {
  background: #fff1f0;
  color: #b42318;
}

.bbk-up-cloud {
  width: 82px;
  height: 58px;
  background: #1e9fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M39.4 83.8H36C16.1 83.8 0 68.1 0 48.7c0-16.8 12.2-31.1 28.5-34.4C36.4 5.4 48.1 0 61 0c21.5 0 39.2 15.8 41.7 36.2C117.3 39.9 128 52.8 128 68.2c0 17.3-14.4 31.3-32.2 31.3H88V65.7h18.2L64 27.8 21.8 65.7h17.6v18.1Z'/%3E%3Cpath fill='black' d='M52 65h24v34H52z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M39.4 83.8H36C16.1 83.8 0 68.1 0 48.7c0-16.8 12.2-31.1 28.5-34.4C36.4 5.4 48.1 0 61 0c21.5 0 39.2 15.8 41.7 36.2C117.3 39.9 128 52.8 128 68.2c0 17.3-14.4 31.3-32.2 31.3H88V65.7h18.2L64 27.8 21.8 65.7h17.6v18.1Z'/%3E%3Cpath fill='black' d='M52 65h24v34H52z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bbk-up-help {
  margin-top: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 30px;
}

.bbk-up-help strong {
  font-weight: 800;
}

.bbk-up-help em {
  color: #5f9ea0;
  font-style: normal;
  font-weight: 800;
}

.bbk-up-textarea {
  width: 100%;
  height: 300px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  resize: none;
  padding: 4px;
  color: #000;
  background: #fff;
  font-size: 14px;
  line-height: 20px;
}

.bbk-up-textarea::placeholder {
  color: #999;
}

.bbk-up-actions {
  display: flex;
  gap: 10px;
  height: 30px;
  margin-top: 10px;
}

.bbk-up-submit,
.bbk-up-clear {
  width: 100px;
  height: 30px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
}

.bbk-up-submit {
  border: 1px solid transparent;
  background: #009688;
  color: #fff;
}

.bbk-up-submit:disabled {
  cursor: wait;
  opacity: 0.75;
}

.bbk-up-clear {
  border: 1px solid #d2d2d2;
  background: transparent;
  color: #666;
}

.bbk-up-manual {
  margin-top: 0;
}

.bbk-up-manual-status {
  margin-top: 10px;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 4px;
  border: 1px solid #d2d2d2;
  color: #666;
  background: #fafafa;
  font-size: 12px;
  line-height: 16px;
}

.bbk-up-manual-status.loading {
  border-color: #91caff;
  color: #1e6bb8;
  background: #eef7ff;
}

.bbk-up-manual-status.success {
  border-color: #b7eb8f;
  color: #237804;
  background: #f6ffed;
}

.bbk-up-manual-status.error {
  border-color: #ffccc7;
  color: #a8071a;
  background: #fff1f0;
}

.bbk-up-secondary {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.bbk-up-secondary button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 222px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  cursor: pointer;
}

.bbk-up-warning {
  margin-top: 30px;
  color: #f00;
  font-size: 14px;
}

.bbk-up-rule {
  margin: 12px 0 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.bbk-up-sync > strong {
  display: block;
  color: #666;
  font-size: 14px;
  font-weight: 800;
}

.bbk-up-sites {
  min-height: 112px;
  margin-top: 5px;
  padding: 6px 4px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.bbk-up-sites a {
  display: inline-block;
  margin-right: 16px;
  color: #333;
  line-height: 20px;
}

.bbk-download-center-dialog {
  color: #2f343b;
}

.bbk-download-table-wrap {
  max-height: min(58vh, 520px);
  overflow: auto;
}

.bbk-download-table-wrap .bbk-table {
  min-width: 860px;
}

.bbk-empty-cell {
  text-align: center;
  color: #888;
}

.bbk-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 18px;
  border-bottom: 1px solid #edf0f3;
  color: #333;
  font-size: 15px;
}

.bbk-dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 24px;
  line-height: 30px;
  cursor: pointer;
}

.bbk-dialog-body {
  padding: 12px 12px 14px;
}

.bbk-dialog-textarea {
  width: 100%;
  min-height: 320px;
  resize: vertical;
  border: 0;
  outline: none;
  background: #f2f2f2;
  padding: 14px;
  color: #222;
  font-size: 14px;
  line-height: 1.6;
}

.bbk-dialog-field {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.bbk-dialog-field span {
  text-align: right;
  color: #555;
}

.bbk-number-stepper {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid #d9dce1;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.bbk-number-stepper button {
  width: 36px;
  height: 34px;
  border: 0;
  background: #f6f7f9;
  color: #333;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.bbk-number-stepper button:hover {
  background: #5fb878;
  color: #fff;
}

.bbk-number-stepper strong {
  min-width: 44px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #d9dce1;
  border-right: 1px solid #d9dce1;
  font-weight: 600;
}

.bbk-count-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 156px;
  overflow: auto;
  padding: 2px;
}

.bbk-dialog-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 20px 16px;
}

.bbk-realname-confirm {
  position: fixed;
  inset: 0;
  z-index: 19891014;
}

.bbk-realname-confirm[hidden] {
  display: none;
}

.bbk-realname-confirm-shade {
  position: fixed;
  inset: 0;
  z-index: 19891014;
  background: #000;
  opacity: 0.3;
}

.bbk-realname-confirm-box {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 19891015;
  width: 336px;
  height: 158px;
  transform: translate(-50%, -50%);
  background: #fff;
  color: rgba(0, 0, 0, 0.85);
  border-radius: 2px;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
  font-size: 14px;
}

.bbk-realname-confirm-title {
  height: 51px;
  line-height: 50px;
  padding: 0 80px 0 20px;
  color: #333;
}

.bbk-realname-confirm-title .layui-icon {
  font-size: 16px;
}

.bbk-realname-confirm-close {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 26px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
  opacity: 0.7;
}

.bbk-realname-confirm-close:hover {
  opacity: 1;
}

.bbk-realname-confirm-content {
  height: 60px;
  line-height: normal;
}

.bbk-realname-confirm-content > div {
  padding: 20px;
}

.bbk-realname-confirm-actions {
  height: 47px;
  padding: 5px 15px 12px;
  text-align: right;
}

.bbk-realname-confirm-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 30px;
  margin-left: 6px;
  padding: 0 15px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.bbk-realname-confirm-ok {
  border: 1px solid #1e9fff;
  background: #1e9fff;
  color: #fff;
}

.bbk-realname-confirm-cancel {
  border: 1px solid #dedede;
  background: #fff;
  color: #333;
}

.bbk-realname-confirm-resize {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15px;
  height: 15px;
}

.bbk-toast {
  position: fixed;
  left: 50%;
  top: 88px;
  z-index: 150;
  transform: translateX(-50%);
  max-width: calc(100vw - 36px);
  padding: 10px 16px;
  border-radius: 4px;
  background: rgba(37, 45, 56, 0.92);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.bbk-section-title {
  margin: 0 0 12px;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  color: #1f2833;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  border: 0;
}

.bbk-box {
  background: var(--bbk-surface);
  border: 1px solid var(--bbk-line);
  border-radius: var(--bbk-radius);
  box-shadow: var(--bbk-shadow);
}

.bbk-card {
  background: #fff;
  border: 1px solid var(--bbk-line);
  border-radius: 8px;
  padding: 12px 14px;
}

.bbk-border-box {
  border: 1px solid var(--bbk-line);
  background: #fff;
}

.bbk-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bbk-list-item {
  padding: 10px 12px;
  border: 1px solid var(--bbk-line);
  border-radius: 6px;
  background: #fff;
}

.bbk-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bbk-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #51565f;
  font-size: 12px;
}

.bbk-list-meta strong {
  color: #222;
}

.bbk-template-list {
  display: grid;
  gap: 10px;
}

.bbk-template-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--bbk-line);
  border-radius: 6px;
  background: #fff;
}

.bbk-template-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.bbk-template-summary {
  color: #535b66;
  font-size: 12px;
  line-height: 1.7;
  max-width: 420px;
}

.bbk-template-meta {
  margin-top: 4px;
  color: #8b929b;
  font-size: 12px;
}

.bbk-template-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.bbk-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.bbk-table th,
.bbk-table td {
  border: 1px solid var(--bbk-line);
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
}

.bbk-table th {
  background: #f7f8fa;
  color: #3a3f46;
  font-weight: 700;
}

.bbk-right-dock {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bbk-dock-btn {
  width: 54px;
  height: 54px;
  border: 1px solid #d2d6dc;
  background: #fff;
  color: #666;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bbk-dock-btn.active {
  background: var(--bbk-primary);
  color: #fff;
  border-color: var(--bbk-primary);
}

.bbk-dock-btn[data-dock-page="teamer_on"],
.bbk-right-dock .bbk-dock-btn[href*="page=teamer_on"],
.bbk-page-footer a[href*="page=teamer_on"] {
  display: none;
}

.bbk-me-page [data-team-feature] {
  display: none;
}

.bbk-dock-icon {
  width: 22px;
  height: 22px;
  display: block;
  color: inherit;
  font-size: 0;
  line-height: 1;
  margin-bottom: 4px;
}

.bbk-dock-icon::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: var(--bbk-dock-svg) center / contain no-repeat;
  mask: var(--bbk-dock-svg) center / contain no-repeat;
}

.bbk-dock-icon.icon-all {
  --bbk-dock-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.8 12 3l9 7.8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E");
}

.bbk-dock-icon.icon-saver {
  --bbk-dock-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2L12 17.2 6.4 20.2 7.5 14 3 9.6l6.2-.9L12 3z'/%3E%3C/svg%3E");
}

.bbk-dock-icon.icon-team {
  --bbk-dock-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.9'/%3E%3Cpath d='M16 3.1a4 4 0 0 1 0 7.8'/%3E%3C/svg%3E");
}

.bbk-dock-icon.icon-my {
  --bbk-dock-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.bbk-dock-icon.icon-cuber {
  --bbk-dock-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

.bbk-dock-icon.icon-account {
  --bbk-dock-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M6 21v-2a6 6 0 0 1 12 0v2'/%3E%3Cpath d='M18 4 20 2'/%3E%3Cpath d='m20 6 2-2'/%3E%3C/svg%3E");
}

.bbk-dock-icon:not([class*="icon-"]) {
  font-size: 18px;
}

.bbk-dock-icon:not([class*="icon-"])::before {
  display: none;
}

.bbk-left-float {
  position: fixed;
  left: 10px;
  top: 12px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bbk-float-btn {
  width: 104px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3f8ed1;
  background: #fff;
  color: #4a4f57;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.bbk-float-btn.primary {
  background: var(--bbk-primary);
  color: #fff;
}

.bbk-side-nav {
  position: fixed;
  left: 10px;
  top: 100px;
  z-index: 18;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bbk-side-nav .bbk-float-btn {
  width: 106px;
  height: 38px;
}

.bbk-float-btn.primary,
.bbk-mini-btn.orange,
.layui-btn-normal,
.layui-btn-warm,
.bbk-dock-btn.active,
.bbk-search-btn {
  box-shadow: none;
}

.bbk-hero-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.bbk-tip {
  color: #e75b00;
}

.bbk-tip-ok {
  color: #168a39;
}

.bbk-stacked {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bbk-page-footer {
  margin: 28px auto 10px;
  text-align: center;
  color: #34393f;
  font-size: 14px;
}

.bbk-history-toggle {
  margin: 10px 0 6px;
  text-align: center;
  color: var(--bbk-muted);
  font-size: 12px;
}

.bbk-top-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 12px 0;
}

.bbk-top-strip-link {
  color: #2a78c9;
  font-size: 14px;
}

.bbk-page-footer a {
  margin: 0 8px;
}

.bbk-article {
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 18px 60px;
  background: #fff;
  border: 1px solid var(--bbk-line);
  border-radius: 10px;
  box-shadow: none;
}

.bbk-article h1 {
  margin: 0 0 16px;
  font-size: 28px;
}

.bbk-article h2 {
  font-size: 18px;
  margin-top: 24px;
}

.bbk-article p,
.bbk-article li {
  line-height: 1.9;
  font-size: 15px;
  color: #32363d;
}

.bbk-article ol,
.bbk-article ul {
  padding-left: 20px;
}

.bbk-redirect {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #fff 0%, #f2f5f8 65%, #e9edf2 100%);
}

.bbk-redirect-card {
  width: min(420px, calc(100vw - 32px));
  background: #fff;
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: var(--bbk-shadow);
  text-align: center;
}

.bbk-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 4px solid #cfe5f9;
  border-top-color: var(--bbk-primary);
  animation: bbkspin 1s linear infinite;
}

@keyframes bbkspin {
  to { transform: rotate(360deg); }
}

.bbk-mobile-shell {
  min-height: 100vh;
  background: #f3f5f7;
}

.bbk-mobile-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bbk-line);
  padding: 12px 14px;
}

.bbk-mobile-tabs {
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid var(--bbk-line);
  position: sticky;
  bottom: 0;
  padding: 10px 0;
}

.bbk-mobile-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #5c6270;
  font-size: 12px;
}

.bbk-mobile-tab.active {
  color: var(--bbk-primary);
}

.bbk-login-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.bbk-login-modal {
  width: 380px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--bbk-shadow);
  overflow: hidden;
}

.bbk-login-modal-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-bottom: 1px solid #eceff3;
  color: #4b4f55;
  font-size: 16px;
}

.bbk-login-modal-body {
  padding: 14px 18px 18px;
  text-align: center;
}

.bbk-qrcode {
  width: 255px;
  height: 255px;
  margin: 0 auto;
  background: conic-gradient(from 90deg, #000 0 25%, #fff 0 50%, #000 0 75%, #fff 0);
  background-size: 28px 28px;
  border: 14px solid #fff;
  box-shadow: inset 0 0 0 1px #000;
}

.bbk-login-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #4d9f58;
  font-size: 13px;
}

.bbk-login-foot {
  margin-top: 10px;
  color: #666;
  font-size: 12px;
}

.bbk-wechat-login-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.bbk-muted {
  color: var(--bbk-muted);
}

.bbk-mb-8 { margin-bottom: 8px; }
.bbk-mb-12 { margin-bottom: 12px; }
.bbk-mb-16 { margin-bottom: 16px; }
.bbk-mt-8 { margin-top: 8px; }
.bbk-mt-12 { margin-top: 12px; }
.bbk-mt-16 { margin-top: 16px; }

.bbk-flex {
  display: flex;
}

.bbk-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bbk-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bbk-small {
  font-size: 12px;
}

.bbk-search-page-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  grid-template-rows: auto auto;
  gap: 6px 10px;
  align-items: start;
}

.bbk-search-page-top .bbk-search-input-wrap {
  grid-column: 1;
  grid-row: 1;
  min-height: 40px;
  align-self: start;
}

.bbk-search-page-top .bbk-mini-btn {
  height: 34px;
  width: 112px;
  min-width: 112px;
  padding: 0 10px;
  justify-self: end;
  font-size: 13px;
}

.bbk-search-page-top > .bbk-mini-btn:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1;
}

.bbk-search-page-top > .bbk-mini-btn:nth-of-type(2) {
  grid-column: 2;
  grid-row: 2;
}

.bbk-search-input-wrap {
  border-color: #2d8fe8;
}

.bbk-target-filter-panel {
  margin-top: 14px;
  padding: 0 2px 8px;
}

.bbk-group-help,
.bbk-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bbk-batch-row {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
}

.bbk-batch-label {
  width: 118px;
  text-align: right;
  color: #222;
  font-size: 14px;
  line-height: 32px;
  grid-column: 1;
}

.bbk-batch-content {
  grid-column: 2;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bbk-batch-btn {
  height: 32px;
  min-width: auto;
  padding: 0 14px;
}

.bbk-filter-row {
  margin: 8px 0;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
}

.bbk-filter-row > label {
  width: 118px;
  text-align: right;
  color: #222;
  font-size: 14px;
  line-height: 32px;
  grid-column: 1;
}

.bbk-filter-row-tight {
  align-items: start;
}

.bbk-filter-content,
.bbk-filter-row > :not(label):not(.bbk-filter-content) {
  grid-column: 2;
  min-width: 0;
}

.bbk-filter-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bbk-filter-tags,
.bbk-price-pills,
.bbk-account-pills {
  flex: 1;
}

.bbk-range-inline {
  flex: 0 0 auto;
}

.bbk-wide-input {
  flex: 1;
  max-width: 700px;
  height: 32px;
}

.bbk-class-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  flex: 1;
}

.bbk-class-grid .bbk-chip {
  min-height: 28px;
  padding: 0 10px;
  font-size: 13px;
}

.bbk-group-help {
  margin: 4px 0 10px;
  color: #333;
  font-size: 14px;
}

.bbk-group-options[hidden],
.bbk-group-help[hidden] {
  display: none;
}

.bbk-group-link {
  color: #0b66d1;
  font-weight: 700;
}

.bbk-more-options {
  margin: 10px 0 6px;
  text-align: center;
  color: var(--bbk-primary);
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.bbk-more-options-panel {
  margin-top: 2px;
}

.bbk-more-options-panel[hidden] {
  display: none;
}

.bbk-more-options.expanded {
  color: var(--bbk-primary);
}

.bbk-more-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.15s ease;
}

.bbk-more-options.expanded .bbk-more-arrow {
  transform: rotate(180deg);
}

.bbk-bottom-actions {
  justify-content: flex-end;
  margin: 6px 0 2px;
}

.bbk-bottom-actions .bbk-mini-btn {
  height: 34px;
  min-width: auto;
  padding: 0 14px;
}

.bbk-home-result {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 14px;
  padding: 6px 0 0;
}

.bbk-home-item {
  padding: 8px 0;
  border-bottom: 1px dotted #e0e4e8;
}

.bbk-home-item .name {
  font-weight: 700;
  color: #111;
}

.bbk-home-item .meta {
  margin-top: 4px;
  color: #5b616b;
  font-size: 13px;
}

.bbk-home-item .price {
  margin-top: 4px;
  color: #d45920;
  font-weight: 700;
}

.bbk-hidden-overflow {
  overflow: hidden;
}

.bbk-ctrl-grid {
  display: grid;
  grid-template-columns: 290px minmax(220px, 1fr) 1.25fr;
  gap: 12px;
}

.bbk-ctrl-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bbk-ctrl-panel {
  background: #fff;
  border: 1px solid var(--bbk-line);
  padding: 10px 12px;
  border-radius: 8px;
}

.bbk-info-grid {
  display: grid;
  gap: 8px;
}

.bbk-info-box {
  border: 1px solid #d9dde3;
  background: #fff;
  border-radius: 4px;
  padding: 10px 12px;
}

.bbk-action-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.bbk-action-stack .layui-btn,
.bbk-action-stack .bbk-mini-btn {
  min-width: 110px;
  text-align: center;
}

.bbk-tool-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bbk-tool-list .bbk-float-btn {
  width: 100%;
  height: 46px;
  justify-content: center;
  font-size: 15px;
}

.bbk-pill-set {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bbk-pill-set .bbk-chip,
.bbk-pill-set .bbk-chip-active {
  min-width: 52px;
  min-height: 34px;
  border-radius: 4px;
  padding: 0 10px;
}

.bbk-legal-note {
  background: #fafaf6;
  border: 1px dashed #d8cfb5;
  color: #7a6643;
  padding: 10px 12px;
  border-radius: 6px;
}

.bbk-alert {
  border: 1px solid #f2c38a;
  background: #fff9f2;
  color: #a25b10;
  padding: 10px 12px;
  border-radius: 6px;
}

.bbk-form-card .bbk-section-title {
  margin-top: 0;
}

.bbk-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 22px;
  padding: 0 8px;
  border-radius: 2px;
  background: #f3f5f7;
  color: #56616d;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.bbk-status-pill.orange {
  background: #fff3e7;
  color: #b65b14;
}

.bbk-status-pill.blue {
  background: #eaf3ff;
  color: #176bc2;
}

.bbk-status-pill.success {
  background: #eaf8ef;
  color: #218341;
}

.bbk-status-pill.danger {
  background: #fff0f0;
  color: #c43d3d;
}

.big-blue,
.blue {
  color: #1e9fff;
  font-weight: 700;
}

.simple-blue {
  color: #1e9fff;
}

.red {
  color: #f5222d;
}

.orange {
  color: #ff8020;
}

.green {
  color: #16a34a;
}

.data-price-box {
  text-align: center;
  padding: 16px 0 8px;
}

.data-price-input {
  width: 220px;
  height: 36px;
  margin-top: 8px;
  text-align: center;
}

.export-batch-box {
  padding: 6px 0 2px;
}

.export-batch-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.export-batch-first-line {
  margin-top: 0;
}

.export-batch-label {
  width: 86px;
  flex: 0 0 86px;
  text-align: right;
  color: #333;
  font-weight: 600;
}

.export-batch-field {
  flex: 1;
  min-width: 0;
}

.export-batch-price-input {
  width: 86px;
  height: 32px;
  text-align: center;
}

.bbk-action-or {
  display: inline-block;
  margin: 0 14px;
  color: #888;
}

.bbk-action-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.bbk-action-chip {
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #333;
  border-radius: 2px;
  cursor: pointer;
}

.bbk-action-chip.small {
  min-width: 38px;
  padding: 0 8px;
}

.bbk-action-chip:hover,
.bbk-action-chip.active {
  border-color: #5fb878;
  background: #5fb878;
  color: #fff;
}

.bbk-export-result {
  text-align: center;
  line-height: 2;
}

.bbk-export-file {
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid #edf0f3;
  background: #f8fafc;
  color: #475569;
  word-break: break-all;
}

.bbk-brother-min-panel {
  display: grid;
  grid-template-columns: repeat(9, 32px);
  justify-content: center;
  gap: 8px;
  margin: 14px auto 0;
  max-width: 360px;
}

.bbk-brother-min-panel[hidden] {
  display: none;
}

.bbk-brother-num {
  width: 32px;
  height: 32px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #333;
  border-radius: 2px;
  cursor: pointer;
}

.bbk-brother-num:hover,
.bbk-brother-num.active {
  border-color: #5fb878;
  background: #5fb878;
  color: #fff;
}

.bbk-applicant-mark-page .bbk-main-wrap {
  padding-left: 0;
  padding-right: 0;
}

.bbk-applicant-panel {
  width: 1180px;
  max-width: calc(100vw - 130px);
  min-height: 520px;
  margin: 0 auto;
  padding: 20px 0 42px;
  color: #333;
}

.bbk-applicant-note {
  margin: 14px 0 12px;
  color: #333;
  font-size: 14px;
  line-height: 28px;
}

.bbk-applicant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px;
}

.bbk-applicant-actions .layui-btn {
  height: 34px;
  line-height: 34px;
  margin: 0;
  border-radius: 2px;
}

.bbk-applicant-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.bbk-applicant-table th,
.bbk-applicant-table td {
  padding: 10px 12px;
  border: 1px solid #ececec;
  color: #333;
  text-align: left;
  font-size: 14px;
}

.bbk-applicant-table th {
  background: #f8f8f8;
  font-weight: 600;
}

.bbk-applicant-table td:first-child,
.bbk-applicant-table th:first-child {
  width: 70px;
  text-align: center;
}

.bbk-applicant-table td:last-child,
.bbk-applicant-table th:last-child {
  width: 90px;
  text-align: center;
}

.bbk-action-confirm {
  text-align: center;
}

.bbk-action-note {
  text-align: center;
  color: #777;
  margin-bottom: 14px;
}

.bbk-color-grid {
  display: grid;
  grid-template-columns: repeat(32, 12px);
  justify-content: center;
  gap: 0;
  width: 384px;
  max-width: 384px;
  height: 192px;
  margin: 0 auto;
  overflow: hidden;
}

.bbk-color-swatch {
  box-sizing: content-box;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
}

.bbk-color-swatch.light {
  border-color: #fff;
  box-shadow: none;
}

.bbk-color-swatch.active {
  position: relative;
  z-index: 1;
  outline: 2px solid #1e9fff;
  outline-offset: -1px;
  box-shadow: none;
}

.bbk-color-input-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px auto 0;
  color: #333;
  font-size: 14px;
}

.bbk-color-value-input {
  width: 150px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid #dcdfe6;
  border-radius: 2px;
  color: #333;
  outline: none;
}

.new-color {
  width: 148px;
  margin: 16px auto 0;
  padding: 8px 10px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.bbk-card-sold::after {
  content: "已卖出";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: #f5222d;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 2px;
}

.bbk-status {
  font-size: 12px;
  color: #6a7078;
}

.bbk-page-headline {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

[data-page-only] {
  display: none;
}

body.bbk-mode-team [data-page-only~="teamer"],
body.bbk-mode-my [data-page-only~="my"] {
  display: inline-flex;
}

.bbk-page-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0 0 8px;
}

.bbk-page-mode-tabs[hidden] {
  display: none;
}

.bbk-mode-chip {
  height: 28px;
  padding: 0 12px;
  border: 1px solid #d6dbe2;
  background: #fff;
  color: #3c4652;
  border-radius: 2px;
  line-height: 26px;
  cursor: pointer;
}

.bbk-mode-chip.active {
  border-color: var(--bbk-primary);
  background: var(--bbk-primary);
  color: #fff;
}

body.bbk-mode-my .bbk-page-mode-tabs {
  gap: 0;
  padding: 0 0 8px;
  align-items: stretch;
}

body.bbk-mode-my .bbk-mode-chip {
  flex: 0 0 240px;
  width: 240px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #333;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
}

body.bbk-mode-my .bbk-mode-chip.active {
  border: 0;
  border-radius: 3px;
  background: #1e9fff;
  color: #fff;
}

.bbk-empty-result {
  min-height: 120px;
  padding: 34px 16px;
  color: #858b94;
  text-align: center;
  border-top: 1px solid #e8ebef;
  border-bottom: 1px solid #e8ebef;
  background: #fff;
}

.bbk-page-control {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: 12px 0 4px;
  color: #535a64;
  font-size: 13px;
}

.bbk-page-size {
  height: 28px;
  border: 1px solid #d6dbe2;
  background: #fff;
  color: #3c4652;
  padding: 0 6px;
}

.bbk-jump-input {
  width: 42px;
  height: 28px;
  text-align: center;
}

.bbk-standard-page .bbk-main-wrap {
  max-width: 1204px;
  padding-left: 0;
  padding-right: 0;
}

.bbk-standard-page .bbk-side-nav ~ .bbk-container .bbk-main-wrap {
  max-width: 1280px;
  padding-left: 188px;
  padding-right: 78px;
}

.bbk-side-nav {
  position: fixed;
  left: 10px;
  top: 14px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 150px;
}

.bbk-page-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #242b33;
}

.bbk-subtitle {
  color: #626b76;
  font-size: 13px;
  line-height: 1.7;
}

.bbk-kv-list {
  display: grid;
  gap: 10px;
}

.bbk-kv-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #edf0f3;
}

.bbk-kv-row:last-child {
  border-bottom: 0;
}

.bbk-kv-label {
  color: #5c6570;
}

.bbk-me-qrcode {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: cover;
  border: 1px solid #e2e6ea;
  border-radius: 4px;
  background: #fff;
}

.bbk-me-stars {
  color: #d89b18;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 700;
  white-space: nowrap;
}

.bbk-account-type {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.bbk-account-type-badge {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #1781ff;
  color: #fff;
  font-weight: 700;
}

.bbk-account-type-lines,
.bbk-account-type-rules {
  color: #333b44;
  line-height: 1.75;
}

.bbk-account-type-rules {
  margin-top: 12px;
  color: #66707b;
  font-size: 13px;
}

.bbk-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}

.bbk-table th,
.bbk-table td {
  border: 1px solid #e4e7eb;
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
}

.bbk-table th {
  background: #f6f8fa;
  color: #3d4650;
  font-weight: 700;
}

.bbk-detail-page .bbk-section {
  padding: 0;
}

.bbk-detail-page {
  min-width: 1250px;
}

.bbk-detail-topbar {
  position: sticky;
  top: 0;
  z-index: 25;
  height: 50px;
  margin: -10px -12px 10px;
  background: #fff;
  border-bottom: 1px solid #eef0f4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bbk-detail-notice {
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.bbk-detail-similar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  height: 30px;
  padding: 0 15px;
  border-radius: 2px;
  background: #1e9fff;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

.bbk-detail-shell {
  width: 1204px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 590px 590px;
  gap: 24px;
  align-items: start;
}

.bbk-detail-main,
.bbk-detail-seller {
  background: #fff;
  border: 1px solid #d7dbe1;
}

.bbk-detail-logo-line {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #4b5562;
  font-size: 13px;
}

.bbk-detail-logo-box {
  height: 206px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bbk-detail-logo-box img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

.bbk-detail-row {
  display: grid;
  grid-template-columns: 77px 1fr;
  min-height: 40px;
  border-top: 1px solid #e4e7eb;
}

.bbk-detail-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px 0 4px;
  background: #f4f4f4;
  color: #606976;
  font-size: 14px;
  line-height: 20px;
}

.bbk-detail-content {
  min-width: 0;
  padding: 9px 10px;
  color: #20252b;
  line-height: 22px;
  font-size: 14px;
}

.bbk-detail-row-tall {
  min-height: 120px;
}

.bbk-detail-row-compact {
  min-height: 40px;
}

.bbk-detail-row-meaning {
  min-height: 82px;
}

.bbk-detail-price,
.bbk-detail-orange {
  color: #ff6a00;
}

.bbk-detail-price {
  display: inline-block;
  min-width: 60px;
  font-size: 17px;
  font-weight: 700;
}

.bbk-detail-link {
  color: #1788d8;
  cursor: pointer;
  font-size: 13px;
}

.bbk-detail-muted {
  color: #6f7782;
}

.bbk-detail-hover:hover {
  color: #ff6a00;
}

.bbk-detail-textbtn,
.bbk-detail-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #1788d8;
  cursor: pointer;
  padding: 0 16px 0 0;
  font-size: 14px;
}

.bbk-detail-more {
  margin-top: 4px;
  color: #1788d8;
  cursor: pointer;
}

.bbk-detail-side {
  display: grid;
  gap: 14px;
}

.bbk-detail-title {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid #e4e7eb;
  color: #313943;
  font-weight: 700;
}

.bbk-detail-seller-body {
  display: grid;
  grid-template-columns: 294px 1fr;
  min-height: 210px;
}

.bbk-detail-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid #e4e7eb;
}

.bbk-detail-fakeqr {
  width: 150px;
  height: 150px;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px) 0 0 / 30px 30px,
    linear-gradient(#111 10px, transparent 10px) 0 0 / 30px 30px,
    #fff;
  border: 12px solid #fff;
  box-shadow: inset 0 0 0 1px #111, 0 0 0 1px #e4e7eb;
}

.bbk-detail-seller-info {
  padding: 16px 12px;
  color: #252b33;
  line-height: 30px;
  font-size: 14px;
}

.bbk-detail-stat-line,
.bbk-detail-team-actions,
.bbk-detail-records,
.bbk-detail-footnote {
  border-top: 1px solid #e4e7eb;
  padding: 9px 12px;
  min-height: 40px;
  line-height: 21px;
}

.bbk-detail-team-actions,
.bbk-detail-records {
  display: flex;
  gap: 18px;
  color: #1788d8;
}

.bbk-detail-more-sellers {
  overflow: hidden;
}

.bbk-detail-seller-table {
  width: 100%;
  font-size: 13px;
}

.bbk-detail-seller-row {
  display: grid;
  grid-template-columns: 88px 118px 147px 147px 88px;
  min-height: 40px;
  border-top: 1px solid #e4e7eb;
}

.bbk-detail-seller-row:first-child {
  border-top: 0;
}

.bbk-detail-seller-row > div {
  display: flex;
  align-items: center;
  padding: 8px 8px;
  border-left: 1px solid #e4e7eb;
  min-width: 0;
}

.bbk-detail-seller-row > div:first-child {
  border-left: 0;
}

.bbk-detail-seller-head {
  background: #f6f6f6;
  color: #4b5562;
  font-weight: 700;
}

.bbk-detail-bottom-actions {
  width: 1204px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #1788d8;
}

.bbk-detail-feedback {
  margin-left: 20px;
  color: #ff6a00;
}

.bbk-company-user-page {
  background: #fff;
  overflow: hidden;
}

.bbk-company-user-page .title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #666;
}

.bbk-company-user-page .user-content-box {
  width: 1200px;
  margin: 10px auto;
}

.bbk-company-user-page .user-item-box {
  overflow: hidden;
  height: 50px;
  padding: 10px 0;
  line-height: 30px;
}

.bbk-company-user-page .cell {
  min-height: 10px;
}

.bbk-company-user-page .left {
  float: left;
}

.bbk-company-user-page .center {
  text-align: center;
}

.bbk-company-user-page .user-title {
  font-weight: 600;
}

.bbk-company-user-page .user-choose-btn {
  width: 4%;
  padding-left: 1%;
  cursor: pointer;
  line-height: 30px;
}

.bbk-company-user-page .company-check,
.bbk-company-user-page .layui-icon-ok-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
}

.bbk-company-user-page .company-check:hover,
.bbk-company-user-page .layui-icon-ok-circle:hover {
  transition: all 0.2s;
  font-size: 24px;
}

.bbk-company-user-page .user-index {
  width: 5%;
}

.bbk-company-user-page .user-id {
  width: 8%;
}

.bbk-company-user-page .user-wx-info {
  width: 15%;
}

.bbk-company-user-page .user-price {
  width: 15%;
}

.bbk-company-user-page .user-status {
  width: 20%;
}

.bbk-company-user-page .user-buyer-remark {
  width: 10%;
}

.bbk-company-user-page .buyer-remark-btn {
  width: 10%;
}

.bbk-company-user-page .layui-btn-primary {
  height: 38px;
  line-height: 36px;
  border-color: #c9c9c9;
  background: #fff;
  color: #555;
  font-size: 14px;
}

.bbk-company-user-page .background-line-0 {
  background-color: beige;
}

.bbk-company-user-page .background-line-1 {
  background-color: aliceblue;
}

.bbk-company-user-page .user-choosed {
  border: 2px solid green;
  color: green;
  border-radius: 100%;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.bbk-company-user-page .bbk-right-dock {
  right: 5px;
  gap: 5px;
}

.bbk-company-user-page .bbk-dock-btn {
  width: 55px;
  height: 55px;
  border-radius: 5px;
  color: #666;
  background: #f3f3f3;
  box-shadow: none;
}

.bbk-company-user-page .bbk-dock-btn:hover {
  background: #1e9fff;
  border-color: #1e9fff;
  color: #fff;
}

.bbk-company-user-page .bbk-dock-icon {
  font-size: 20px;
  margin-bottom: 2px;
}

.bbk-company-login-mask {
  background: rgba(0, 0, 0, 0.32);
  z-index: 60;
}

.bbk-company-user-page .bbk-login-modal {
  width: 400px;
  border-radius: 2px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.bbk-company-user-page .bbk-login-modal-head {
  position: relative;
  height: 50px;
  border-bottom-color: #eee;
  color: #333;
  font-size: 16px;
}

.bbk-company-user-page .bbk-login-wechat-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #09bb07;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.bbk-company-user-page .bbk-login-close {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #303642;
  font-size: 24px;
  line-height: 22px;
  cursor: pointer;
}

.bbk-company-user-page .bbk-login-modal-body {
  padding: 12px 18px 13px;
}

.bbk-company-user-page .bbk-qrcode {
  width: 255px;
  height: 255px;
  border: 0;
  background-size: 12px 12px;
  box-shadow: inset 0 0 0 1px #000;
}

.bbk-company-user-page .bbk-login-check {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

.bbk-company-user-page .bbk-login-check span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #5fb878;
  color: #fff;
  font-size: 13px;
}

.bbk-company-user-page .bbk-login-foot {
  margin-top: 11px;
  color: #333;
  font-size: 14px;
}

.bbk-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.bbk-quick-card {
  display: block;
  border: 1px solid #dfe3e8;
  background: #fff;
  padding: 12px;
  min-height: 72px;
}

.bbk-quick-card strong {
  display: block;
  color: #202832;
  margin-bottom: 4px;
}

.bbk-quick-card span {
  color: #68717d;
  font-size: 12px;
}

.bbk-tool-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 14px;
}

.bbk-drop-zone {
  min-height: 220px;
  border: 1px dashed #b8c2cf;
  background: #fbfcfd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #727b86;
  padding: 20px;
}

.bbk-up-page .bbk-drop-zone.bbk-up-drop {
  min-height: 300px;
  border: 0;
  background: #efefef;
  color: rgba(0, 0, 0, 0.85);
  padding: 0;
}

.bbk-preview-box {
  min-height: 300px;
  border: 1px dashed #cbd3dd;
  background: linear-gradient(180deg, #fafafa, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d96a1;
}

.bbk-cuber-page {
  background: #fff;
  min-width: 1180px;
}

.bbk-cuber-page .bbk-container {
  padding-top: 20px;
}

.bbk-cuber-page .bbk-main-wrap {
  max-width: 1000px;
  padding-left: 0;
  padding-right: 0;
}

body.bbk-standard-page.bbk-cuber-page .bbk-side-nav ~ .bbk-container .bbk-main-wrap,
body.bbk-standard-page.bbk-cuber-page .bbk-main-wrap {
  max-width: 1000px;
  padding-left: 0;
  padding-right: 0;
}

body.bbk-cuber-page .bbk-side-nav {
  position: fixed;
  left: 1%;
  top: 0;
  width: 9%;
  padding-top: 50px;
  gap: 0;
}

body.bbk-cuber-page .bbk-side-nav .bbk-float-btn {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 28px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  color: #333;
  box-shadow: none;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  min-width: 0;
}

body.bbk-cuber-page .bbk-side-nav .bbk-float-btn.primary {
  background: #1e9fff;
  border-color: #1a8fe2;
  color: #f1f1f1;
}

.bbk-cuber-workbench {
  display: grid;
  grid-template-columns: 272px 208px 520px;
  align-items: start;
  gap: 0;
  width: 1000px;
  margin-top: 15px;
}

.bbk-cuber-workbench > .bbk-ctrl-col,
.bbk-cuber-page .bbk-ctrl-panel,
.bbk-cuber-page .bbk-input,
.bbk-cuber-page .bbk-textarea {
  min-width: 0;
}

.bbk-cuber-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.bbk-cuber-textarea {
  display: block;
  width: 272px;
  height: 312px;
  min-height: 312px;
  margin-top: 10px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: none;
  line-height: 20px;
  font-size: 14px;
}

.bbk-cuber-empty-state strong {
  grid-column: 1 / -1;
  margin-top: 24px;
  color: #999;
  font-size: 14px;
  line-height: 1.6;
}

.bbk-cuber-tip {
  display: none;
}

.bbk-cuber-plain-title {
  height: 20px;
  line-height: 20px;
  color: #222;
  font-size: 14px;
}

.bbk-cuber-clear-btn,
.bbk-cuber-export-link {
  float: right;
  height: 22px;
  border: 1px solid #7b4310;
  border-radius: 2px;
  padding: 1px 5px;
  background: #fff;
  color: #7b4310;
  cursor: pointer;
  font-size: 13px;
  line-height: 18px;
}

.bbk-cuber-load-btn {
  width: 100%;
  height: 30px;
  margin-top: 5px;
  line-height: 30px;
}

.bbk-cuber-save-col {
  margin-left: 5px;
}

.bbk-cuber-saver-title {
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #222;
}

.bbk-cuber-saver-title [data-saver-count]::after {
  content: "";
}

.bbk-cuber-saver-search {
  display: block;
  width: 200px;
  height: 24px;
  line-height: 24px;
  margin: 11px 0 0;
  padding: 0 5px;
  border: 1px solid #ddd;
  border-bottom: 0;
  border-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  text-align: center;
}

.bbk-cuber-save-list {
  display: block;
  width: 200px;
  height: 288px;
  margin-top: 0;
  border: 1px solid #ddd;
  border-top: 0;
  border-radius: 2px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  overflow: auto;
}

.bbk-cuber-save-item {
  display: flex;
  align-items: center;
  height: 24px;
  line-height: 24px;
  margin-top: 3px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #333;
  cursor: move;
  font-size: 12px;
}

.bbk-cuber-save-item:hover,
.bbk-cuber-save-item.active {
  background: #5fb878;
  color: #fff;
}

.bbk-cuber-save-item span {
  width: 80%;
  min-width: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bbk-cuber-save-item em {
  display: none;
}

.bbk-cuber-save-item .bbk-mini-btn {
  width: 15%;
  min-width: 0;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 12px;
}

body.bbk-cuber-page .bbk-right-dock {
  top: 200px;
  right: 5px;
  transform: none;
  gap: 0;
}

body.bbk-cuber-page .bbk-dock-btn {
  width: 55px;
  height: 56px;
  border-color: #ddd;
  border-radius: 5px;
  box-shadow: none;
}

.bbk-cuber-save-current {
  width: 100%;
  height: 30px;
  margin-top: 9px;
  line-height: 30px;
}

.bbk-cuber-page .bbk-field {
  display: flex;
  align-items: flex-start;
  min-height: 30px;
  margin: 0 0 10px;
  line-height: 30px;
}

.bbk-cuber-page .bbk-field > label {
  width: 80px;
  min-width: 80px;
  padding: 0 5px 0 0;
  color: #222;
  font-size: 14px;
  line-height: 30px;
  text-align: right;
}

.bbk-cuber-page .bbk-input {
  width: 417px;
  height: 30px;
  padding: 0 5px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
}

.bbk-cuber-page .bbk-input.bbk-cuber-saver-search {
  width: 200px;
  height: 24px;
  line-height: 24px;
  margin: 11px 0 0;
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  text-align: center;
}

.bbk-cuber-price-field .bbk-input {
  width: 230px;
}

.bbk-cuber-price-field .bbk-mini-btn {
  min-width: auto;
  height: 32px;
  margin-left: 5px;
  padding: 0 11px;
  line-height: 30px;
}

.bbk-cuber-page .bbk-pill-set,
.bbk-cuber-chip-block,
.bbk-cuber-common-actions {
  display: flex;
  flex-wrap: wrap;
  width: 430px;
  min-height: 30px;
  gap: 6px;
}

.bbk-cuber-page .bbk-pill-set .bbk-chip,
.bbk-cuber-field-chip,
.bbk-cuber-operation-row .bbk-mini-btn,
.bbk-cuber-color-row .bbk-mini-btn {
  min-width: auto;
  min-height: 28px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  color: #555;
  line-height: 28px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

.bbk-cuber-page .bbk-pill-set .bbk-chip.active,
.bbk-cuber-field-chip:has(input:checked),
.bbk-cuber-field-chip.active {
  border-color: orange;
  color: orange;
  background: #fff;
}

.bbk-cuber-field-chip input {
  margin: 0 4px 0 0;
}

.bbk-cuber-line {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bbk-card-state {
  display: none;
}

.bbk-cuber-color-row {
  display: flex;
  align-items: center;
  min-height: 30px;
  margin-top: 14px;
  line-height: 30px;
  gap: 0;
}

.bbk-cuber-operation-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  width: 600px;
}

.bbk-cuber-color-panel {
  width: 1000px;
  margin-top: 10px;
}

.bbk-cuber-color-row .bbk-mini-btn {
  margin-right: 10px;
}

.bbk-cuber-color-row .bbk-mini-btn.active,
.bbk-cuber-color-row .bbk-mini-btn.small.active {
  border-color: #5fb878;
  background: #5fb878;
  color: #fff;
}

.bbk-cuber-color-refresh {
  width: 18px;
  height: 30px;
  margin: 0 0 0 -2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #555;
  line-height: 30px;
  cursor: pointer;
}

.bbk-cuber-color-refresh:hover {
  color: #1e9fff;
}

.bbk-cuber-color-enhance {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.bbk-cuber-color-grid {
  display: flex;
  flex-wrap: wrap;
  min-height: 52px;
  margin-top: 10px;
  border: 0;
  border-radius: 0;
  gap: 8px;
  padding: 0;
}

.bbk-cuber-color-grid.is-empty {
  min-height: 42px;
}

.bbk-cuber-color-swatch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 102px;
  height: 30px;
  border: 1px solid #d2d2d2;
  border-radius: 0;
  background: #fff;
  color: #333;
  cursor: pointer;
  gap: 6px;
  padding: 0 6px;
  font-size: 12px;
  line-height: 28px;
}

.bbk-cuber-color-swatch[data-active="1"],
.bbk-cuber-color-swatch.active {
  outline: 2px solid #1e9fff;
  outline-offset: 1px;
}

.bbk-cuber-color-preview {
  display: inline-block;
  width: 20px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, .12);
  flex: 0 0 auto;
}

.bbk-cuber-color-value {
  font-family: Consolas, "Courier New", monospace;
  white-space: nowrap;
}

.bbk-cuber-color-picker {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  padding: 0;
}

.bbk-cuber-color-dialog-mask {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .28);
}

.bbk-cuber-color-dialog {
  width: 360px;
  padding: 18px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.bbk-cuber-color-dialog-title {
  margin-bottom: 14px;
  color: #222;
  font-size: 16px;
  font-weight: 600;
}

.bbk-cuber-color-dialog-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bbk-cuber-color-dialog-picker {
  width: 54px;
  height: 36px;
  padding: 0;
  border: 1px solid #d2d2d2;
  background: #fff;
}

.bbk-cuber-color-dialog-input {
  flex: 1;
  height: 36px;
  font-family: Consolas, "Courier New", monospace;
}

.bbk-cuber-color-dialog-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #555;
  font-size: 13px;
}

.bbk-cuber-color-dialog-preview span {
  width: 46px;
  height: 26px;
  border: 1px solid #d2d2d2;
}

.bbk-cuber-color-dialog-preview em {
  font-style: normal;
  font-family: Consolas, "Courier New", monospace;
}

.bbk-cuber-color-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.bbk-cuber-item-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 1000px;
  margin-top: 18px;
  margin-bottom: 10px;
}

.bbk-cuber-index-box {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  background: #888;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.bbk-cuber-status {
  color: #555;
  font-size: 13px;
}

.bbk-cuber-preview-panel {
  width: 1000px;
  padding-bottom: 50px;
}

.bbk-cuber-canvas {
  width: 860px;
  min-height: 217px;
  margin: 5px auto 0;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: #f3f3f3;
  box-shadow: none;
}

.bbk-cuber-canvas-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 5px 0;
  border-radius: 0;
  background: transparent;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.bbk-cuber-title-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(70%, 360px);
  border-top: 2px solid #d7d7d7;
  transform: translate(-50%, -50%);
}

.bbk-cuber-title-text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  background: #f3f3f3;
  gap: 8px;
}

.bbk-cuber-title-plane {
  color: #333;
  font-size: 18px;
  line-height: 1;
}

.bbk-cuber-title-plane:last-child {
  transform: scaleX(-1);
}

.bbk-cuber-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, var(--bbk-cuber-card-width, 160px)));
  justify-content: center;
  column-gap: 10px;
  row-gap: 12px;
  margin: 0 auto;
  align-items: start;
}

.bbk-cuber-mark-card {
  position: relative;
  display: block;
  width: var(--bbk-cuber-card-width, 160px);
  min-height: max(82px, calc(var(--bbk-cuber-card-width, 160px) * 1.42));
  padding: var(--bbk-cuber-card-pad, 5px);
  border: 0;
  border-radius: 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.bbk-cuber-empty-state {
  width: 100%;
  min-height: 120px;
  grid-column: 1 / -1;
  padding-top: 20px;
  background: transparent;
}

.bbk-cuber-empty-state::before {
  display: none;
}

.bbk-cuber-empty-state span {
  color: #999;
}

.bbk-cuber-mark-card::before {
  content: "";
  display: block;
  width: var(--bbk-cuber-image-box, 150px);
  height: var(--bbk-cuber-image-box, 150px);
  margin: 0 auto;
  border-radius: 5px 5px 0 0;
  background: #fff;
}

.bbk-cuber-mark-card img {
  position: absolute;
  top: var(--bbk-cuber-image-top, 17px);
  left: 50%;
  transform: translateX(-50%);
  width: var(--bbk-cuber-image-size, 125px);
  height: var(--bbk-cuber-image-size, 125px);
  margin: 0 auto;
  object-fit: contain;
}

.bbk-cuber-mark-card strong {
  display: block;
  width: var(--bbk-cuber-text-width, 145px);
  margin: 10px auto 10px;
  min-width: 0;
  overflow: hidden;
  color: #222;
  font-size: var(--bbk-cuber-name-font, 14px);
  font-weight: 400;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bbk-cuber-mark-card span {
  display: block;
  width: var(--bbk-cuber-text-width, 145px);
  margin: 0 auto 10px;
  color: #222;
  font-size: var(--bbk-cuber-line-font, 12px);
  line-height: 20px;
}

.bbk-cuber-mark-card em {
  display: block;
  width: var(--bbk-cuber-text-width, 145px);
  margin: 0 auto 10px;
  color: #ffa513;
  font-size: var(--bbk-cuber-price-font, 15px);
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
}

.bbk-cuber-canvas-foot {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
  color: #555;
  text-align: center;
  font-size: 14px;
}

.bbk-cuber-moment-box {
  margin-top: 0;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
}

.bbk-cuber-moment-title {
  display: block;
  height: 30px;
  line-height: 30px;
  color: #333;
  text-align: center;
}

.bbk-cuber-moment-title + .bbk-cuber-moment-text,
.bbk-cuber-moment-text + .bbk-cuber-moment-title {
  border-top: 1px solid #ddd;
}

.bbk-cuber-moment-title:hover {
  color: orange;
}

.bbk-cuber-moment-text {
  display: block;
  width: 100%;
  height: 120px;
  padding: 5px;
  border: 0;
  resize: none;
}

.bbk-cuber-invite-adviser {
  margin-top: 150px;
}

.bbk-log-list {
  display: grid;
  gap: 12px;
}

.bbk-log-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid #edf0f3;
  padding-bottom: 12px;
}

.bbk-log-date {
  color: var(--bbk-primary);
  font-weight: 700;
}

.bbk-log-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: #242b33;
}

.bbk-log-version {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 6px;
  border: 1px solid #dce7f7;
  border-radius: 2px;
  background: #f4f8ff;
  color: var(--bbk-primary);
  font-size: 12px;
  line-height: 1;
}

.bbk-log-content {
  color: #333b44;
  line-height: 1.7;
}

.bbk-turner-page .bbk-main-wrap {
  max-width: 1280px;
}

.bbk-turner-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 6px 0 20px;
}

.bbk-turner-tab {
  height: 32px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #444;
  cursor: pointer;
}

.bbk-turner-tab.active {
  border-color: #ff9b21;
  color: #ff8a00;
}

.bbk-turner-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bbk-turner-panel[hidden] {
  display: none;
}

.bbk-turner-form,
.bbk-turner-cache {
  width: 650px;
}

.bbk-turner-form {
  display: grid;
  gap: 18px;
}

.bbk-turner-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.bbk-turner-row.compact {
  grid-template-columns: 96px 1fr auto 1fr;
}

.bbk-turner-row > label {
  margin: 0;
  color: #222;
  font-weight: 400;
  text-align: right;
}

.bbk-turner-row .bbk-input {
  height: 36px;
}

.bbk-turner-row .bbk-textarea {
  min-height: 40px;
  height: 40px;
  padding: 8px 12px;
  resize: vertical;
}

.bbk-turner-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 9px;
  padding: 8px;
  border: 1px solid #dcdfe6;
  background: #fff;
}

.bbk-turner-options button {
  height: 26px;
  padding: 0 10px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: #fff;
  color: #333;
  cursor: pointer;
}

.bbk-turner-options button.active {
  border-color: var(--bbk-primary);
  color: var(--bbk-primary);
}

.bbk-turner-actions {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin: 8px 0 70px;
}

.bbk-turner-actions .bbk-mini-btn {
  min-width: 116px;
  height: 38px;
}

.bbk-turner-cache {
  padding: 28px 42px 26px;
  border: 1px dashed #d7d7d7;
}

.bbk-turner-cache.auth-extra {
  margin-top: 72px;
}

.bbk-turner-cache-title {
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

.bbk-turner-cache-title .bbk-mini-btn {
  margin-left: 14px;
}

.bbk-turner-cache .bbk-turner-row {
  margin-bottom: 16px;
}

.bbk-turner-cache-note {
  margin-top: 20px;
  text-align: center;
  color: #222;
}

.bbk-dialog.is-turner-doc .bbk-dialog-panel {
  width: min(920px, calc(100vw - 32px));
}

.bbk-turner-preview {
  width: 100%;
  height: min(68vh, 720px);
  border: 1px solid #e3e5e8;
  background: #fff;
}

.bbk-muted-link {
  color: var(--bbk-primary);
  cursor: pointer;
}

@media (max-width: 1320px) {
  .bbk-cuber-workbench {
    grid-template-columns: 272px 208px 520px;
    align-items: start;
  }

  .bbk-cuber-workbench > .bbk-ctrl-col:last-child {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .bbk-up-wrap {
    max-width: calc(100vw - 24px);
  }

  .bbk-up-work {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bbk-up-secondary {
    flex-wrap: wrap;
  }

  .bbk-standard-page .bbk-main-wrap,
  .bbk-home-page .bbk-main-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .bbk-cuber-page .bbk-main-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .bbk-cuber-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bbk-cuber-head-actions {
    justify-content: flex-start;
  }

  .bbk-cuber-workbench {
    grid-template-columns: 1fr;
  }

  .bbk-cuber-workbench > .bbk-ctrl-col:last-child {
    grid-column: auto;
  }

  .bbk-side-nav,
  .bbk-right-dock {
    position: static;
    transform: none;
    flex-direction: row;
    width: auto;
    margin: 10px 12px;
  }

  .bbk-cuber-page .bbk-side-nav,
  .bbk-cuber-page .bbk-right-dock {
    flex-wrap: wrap;
  }

  .bbk-cuber-page .bbk-side-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
  }

  .bbk-cuber-page .bbk-side-nav .bbk-float-btn {
    width: auto;
  }

  .bbk-cuber-page .bbk-right-dock {
    display: grid;
    grid-template-columns: repeat(6, 54px);
    justify-content: start;
    gap: 6px;
    margin-top: 0;
  }

  .bbk-tool-layout {
    grid-template-columns: 1fr;
  }

  .bbk-turner-form,
  .bbk-turner-cache {
    width: min(100%, calc(100vw - 24px));
  }

  .bbk-turner-row,
  .bbk-turner-row.compact {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .bbk-turner-row > label {
    text-align: left;
  }

  .bbk-turner-actions {
    gap: 12px;
    margin-bottom: 32px;
  }

  .bbk-turner-cache {
    padding: 18px;
  }

  .bbk-kv-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .bbk-grid.cols-2,
  .bbk-grid.cols-3,
  .bbk-grid.cols-4,
  .bbk-grid.cols-5 {
    grid-template-columns: 1fr;
  }

  .bbk-realname-grid,
  .bbk-realname-upload-grid {
    grid-template-columns: 1fr;
  }

  .bbk-result-grid,
  .bbk-result-grid.cols-3,
  .bbk-result-grid.cols-4,
  .bbk-result-grid.cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bbk-result-card {
    min-height: 212px;
  }

  .bbk-result-image {
    height: 116px;
  }

  .bbk-result-bottom {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px 8px;
  }

  .bbk-result-goods {
    min-width: 0;
    white-space: normal;
  }

  .bbk-selected-bar {
    left: 12px;
    right: 12px;
  }
}

@media (max-width: 560px) {
  .bbk-cuber-page .bbk-field {
    display: block;
  }

  .bbk-cuber-page .bbk-field > label {
    display: block;
    min-width: 0;
    padding: 0 0 6px;
    text-align: left;
  }

  .bbk-cuber-canvas {
    padding: 12px;
  }

  .bbk-cuber-preview-grid {
    gap: 6px;
  }

  .bbk-cuber-mark-card {
    grid-template-rows: 44px auto auto auto;
    min-height: 118px;
    padding: 7px 5px;
  }

  .bbk-cuber-mark-card img {
    height: 44px;
  }

  .bbk-cuber-mark-card strong {
    font-size: 12px;
  }

  .bbk-cuber-mark-card span,
  .bbk-cuber-mark-card em {
    font-size: 11px;
  }
}
