/* 生意参谋 */
#sycmContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  gap: 0.5rem 0;
  padding: 0.25rem 0;
}
.sycm {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
  min-height: 0;
}
.sycm-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
  min-height: 0;
}
.sycm-item {
  text-align: center;
  position: relative;
  padding: 0 0.25rem;
  min-width: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.sycm-item + .sycm-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 0.0625rem;
  background: rgba(100, 160, 220, 0.12);
}
.sycm-cols-1 .sycm-item:first-child::before,
.sycm-cols-2 .sycm-item:nth-child(2n+1)::before,
.sycm-cols-3 .sycm-item:nth-child(3n+1)::before,
.sycm-cols-4 .sycm-item:nth-child(4n+1)::before {
  display: none;
}
.sycm-main h2 {
  color: #7eb8f0;
}
.sycm-item h2 {
  font-size: 1rem;
  color: #e8edf5;
  font-family: "Courier New", monospace;
  font-weight: bold;
  margin-bottom: 0.125rem;
  white-space: nowrap;
  letter-spacing: -0.03125rem;
  overflow: hidden;
  text-overflow: clip;
  line-height: 1.1;
}
.sycm-item span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.sycm-divider {
  height: 0.0625rem;
  background: -webkit-linear-gradient(
    left,
    transparent,
    rgba(100, 160, 220, 0.15),
    transparent
  );
  background: linear-gradient(
    90deg,
    transparent,
    rgba(100, 160, 220, 0.15),
    transparent
  );
  margin: 0 10%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.mobile-layout .order-sycm {
  min-height: auto;
  padding-bottom: 1.25rem;
}
.mobile-layout .sycm-row {
  padding: 0.625rem 0;
}
.mobile-layout .sycm-item h2 {
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
  letter-spacing: -0.03125rem;
}
.mobile-layout .sycm-item span {
  font-size: 0.625rem;
}

