.storsec-section,
.storsec-section * {
  box-sizing: border-box;
}

.storsec-section {
  --storsec-ink: #071642;
  --storsec-text: #11192b;
  --storsec-blue: #0d63e9;
  --storsec-blue-deep: #0755dc;
  --storsec-border: #bdd5f4;
  --storsec-card: rgba(255, 255, 255, 0.91);
  color: var(--storsec-ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.storsec-preview {
  margin: 0;
  background: #fff;
}

.storsec-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.storsec-inner {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding: 16px 14px 20px;
  background:#ffffff
}

.storsec-section h2,
.storsec-section h3,
.storsec-section h4,
.storsec-section p,
.storsec-section ul {
  margin: 0;
}

.storsec-section h2 {
  margin: 0 0 14px 14px;
  color: #071642;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.storsec-scenario-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.storsec-scenario-card,
.storsec-panel {
  border: 1px solid var(--storsec-border);
  border-radius: 10px;
  background: var(--storsec-card);
  box-shadow: 0 9px 20px rgba(31, 89, 169, 0.04);
}

.storsec-scenario-card {
  min-height: 120px;
  padding: 5px 5px 5px;
}

.storsec-scenario-card svg {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 13px;
  color: var(--storsec-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.storsec-scenario-card h3 {
  margin-bottom: 10px;
  color: #071642;
  font-size: 18px;
  line-height: 1.15;
  text-align: center;
  font-weight: 600;
}

.storsec-scenario-card p {
  color: var(--storsec-text);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.storsec-top-grid,
.storsec-table-grid {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.storsec-panel {
  min-width: 0; /* 新增此行 */  
  min-height: 330px;
  padding: 16px 26px 16px;
}

.storsec-panel h3 {
  margin-bottom: 15px;
  color: #071642;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.16;
}

.storsec-adv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 34px;
}

.storsec-adv-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.storsec-adv-item svg {
  width: 56px;
  height: 56px;
  padding: 12px;
  color: var(--storsec-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 50%;
  background: #eaf3ff;
}

.storsec-adv-item h4 {
  margin-bottom: 5px;
  color: #071642;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.storsec-adv-item p {
  color: var(--storsec-text);
  font-size: 14px;
  line-height: 1.35;
}

.storsec-arch-flow {
  display: grid;
  grid-template-columns: 120px 24px minmax(120px, 1fr) 24px 130px;
  align-items: center;
  gap: 12px;
  padding: 4px 12px 0;
}

.storsec-arch-card {
  min-height: 210px;
  padding: 12px 14px;
  border: 1px solid var(--storsec-border);
  border-radius: 10px;
  background: linear-gradient(180deg, #edf5ff, #fff);
  text-align: center;
}

.storsec-arch-card h4 {
  margin-bottom: 14px;
  color: var(--storsec-blue-deep);
  font-size: 14px;
  font-weight: 900;
}

.storsec-client-card {
  display: grid;
  justify-items: center;
}

.storsec-client-card svg {
  width: 28px;
  height: 28px;
  margin: 2px 0;
  color: var(--storsec-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.storsec-storage-card {
  min-height: 210px;
}

.storsec-server-svg {
  width: 60px;
  height: 30px;
  color: #173a73;
  fill: #12376d;
  stroke: #16b8f2;
  stroke-width: 2.5;
}

.storsec-storage-card p {
  color: var(--storsec-text);
  font-size: 14px;
  line-height: 1.15;
}

.storsec-drive-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 8px 0 3px;
  padding-top: 8px;
}

.storsec-drive-row::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 115px;
  height: 11px;
  content: "";
  border-top: 2px dashed var(--storsec-blue);
  border-left: 2px dashed var(--storsec-blue);
  border-right: 2px dashed var(--storsec-blue);
  transform: translateX(-50%);
}

.storsec-drive-row svg {
  width: 20px;
  height: 28px;
  color: var(--storsec-blue);
  fill: #0e63e8;
  stroke: #fff;
  stroke-width: 2;
}

.storsec-protect-card ul {
  display: grid;
  gap: 8px;
  padding-left: 9px;
  color: var(--storsec-text);
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}

.storsec-protect-card li::marker {
  color: var(--storsec-blue);
}

.storsec-arrow {
  position: relative;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--storsec-blue);
}

.storsec-arrow::after {
  position: absolute;
  right: -1px;
  top: -7px;
  width: 15px;
  height: 15px;
  content: "";
  border-top: 3px solid var(--storsec-blue);
  border-right: 3px solid var(--storsec-blue);
  transform: rotate(45deg);
}

.storsec-table-panel {
  min-height: 340px;
}

.storsec-table-wrap {
  overflow-x: auto;
}

.storsec-table-wrap table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--storsec-border);
  border-radius: 8px;
  border-spacing: 0;
  table-layout: fixed;
}

.storsec-table-wrap th,
.storsec-table-wrap td {
  padding: 12px 12px;
  border-right: 1px solid var(--storsec-border);
  border-bottom: 1px solid var(--storsec-border);
  color: var(--storsec-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

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

.storsec-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.storsec-table-wrap th {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(180deg, #1f76ff, #0755dc);
}

.storsec-table-wrap tbody td:first-child {
  color: #071642;
  font-weight: 900;
}

@media (max-width: 1320px) {
  .storsec-scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storsec-top-grid,
  .storsec-table-grid {
    grid-template-columns: 1fr;
  }

  .storsec-arch-flow {
    grid-template-columns: 1fr;
  }

  .storsec-arrow {
    width: 3px;
    height: 38px;
    margin: 0 auto;
  }

  .storsec-arrow::after {
    right: -6px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }
}

@media (max-width: 760px) {
  .storsec-inner {
    padding: 14px;
  }

  .storsec-section h2,
  .storsec-panel h3 {
    font-size: 18px;
  }

  .storsec-scenario-grid,
  .storsec-adv-grid {
    grid-template-columns: 1fr;
  }

  .storsec-scenario-card,
  .storsec-panel {
    min-height: auto;
    padding: 5px;
  }

  .storsec-scenario-card h3 {
    font-size: 14px;
  }

  .storsec-scenario-card p,
  .storsec-adv-item p,
  .storsec-protect-card ul,
  .storsec-table-wrap th,
  .storsec-table-wrap td {
    font-size: 11px;
  }

  .storsec-adv-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .storsec-adv-item svg {
    width: 48px;
    height: 48px;
  }
}
