.platform-store-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cddce7;
  border-radius: 10px;
  background: #fff;
  color: #173552;
  font: inherit;
}

.platform-operation-store-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 11px;
  background: #f0f8fd;
  color: #607e94;
}

.platform-operation-store-hint strong {
  color: #1278b2;
  white-space: nowrap;
}

.platform-store-data-list {
  display: grid;
  gap: 10px;
}

.platform-store-data-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.45fr) repeat(6, minmax(112px, .8fr)) 78px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #d8e4ed;
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.platform-store-data-row:hover {
  border-color: #9cc8e3;
  box-shadow: 0 8px 22px rgba(30, 93, 132, .08);
}

.platform-store-identity {
  min-width: 0;
  padding: 17px 18px;
  background: #f7fbff;
}

.platform-store-identity h5 {
  margin: 11px 0 5px;
  overflow: hidden;
  color: #12395a;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-store-identity p,
.platform-store-data-cell small {
  overflow: hidden;
  color: #6e8497;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-store-data-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 14px 12px;
  border-left: 1px solid #e4ecf2;
}

.platform-store-data-cell > span {
  color: #6f8799;
  font-size: 12px;
}

.platform-store-data-cell strong {
  display: block;
  margin: 8px 0 5px;
  overflow: hidden;
  color: #183b58;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-enter-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-left: 1px solid #dce7ee;
  background: #eef8ff;
  color: #137cb9;
  font-weight: 800;
  text-decoration: none;
}

.platform-enter-store span { font-size: 20px; }
.platform-mini-connections { display: flex; gap: 6px; margin-top: 12px; }
.platform-mini-connections span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: #e9eef2;
  color: #748998;
  font-size: 12px;
  font-weight: 900;
}
.platform-mini-connections span.connected { box-shadow: inset 0 0 0 2px #7dd4a7; }
.platform-mini-connections span.meituan { background: #e5f5ff; color: #1685c6; }
.platform-mini-connections span.taobao { background: #fff0e9; color: #dc5c2d; }

.platform-connection-grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-connection-icon-card {
  position: relative;
  width: 210px;
  border: 1px solid #d7e4ed;
  border-radius: 14px;
  background: #fbfdff;
}

.platform-connection-icon-card > summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  cursor: pointer;
  list-style: none;
}

.platform-connection-icon-card > summary::-webkit-details-marker { display: none; }
.platform-connection-icon-card > summary strong,
.platform-connection-icon-card > summary span { display: block; }
.platform-connection-icon-card > summary strong { color: #153b5d; font-size: 15px; }
.platform-connection-icon-card > summary span { margin-top: 2px; color: #738b9d; font-size: 12px; }
.platform-connection-icon-card > summary i { color: #7890a2; font: normal 24px/1 sans-serif; transition: transform .2s; }
.platform-connection-icon-card[open] > summary i { transform: rotate(90deg); }

.platform-connection-icon-card .platform-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 18px;
}

.platform-connection-icon-card.taobao .platform-logo-mark { background: #ff6b35; }
.platform-connection-popover { padding: 0 13px 13px; border-top: 1px solid #e3ebf0; }
.platform-connection-popover p { margin: 11px 0 6px; color: #526f84; font-size: 13px; }
.platform-connection-popover > small { display: block; color: #8296a5; line-height: 1.6; }
.platform-connection-popover .platform-card-actions { margin-top: 11px; }
.platform-connection-popover .button { min-height: 36px; padding: 7px 10px; font-size: 12px; }

@media (max-width: 1450px) {
  .platform-store-data-list {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .platform-store-data-row {
    min-width: 1080px;
    grid-template-columns: minmax(220px, 1.35fr) repeat(6, minmax(105px, .8fr)) 72px;
  }
}

@media (max-width: 920px) {
  .platform-store-data-list { overflow-x: visible; }
  .platform-store-data-row { min-width: 0; grid-template-columns: 1fr 1fr 1fr; }
  .platform-store-identity { grid-column: 1 / -1; }
  .platform-store-data-cell { border-top: 1px solid #e4ecf2; border-left: 0; }
  .platform-enter-store { min-height: 58px; border-top: 1px solid #dce7ee; border-left: 0; }
}

@media (max-width: 620px) {
  .platform-operation-store-hint { align-items: flex-start; flex-direction: column; }
  .platform-store-data-row { grid-template-columns: 1fr 1fr; }
}
