.snippet-software-info-card {
  .SSIC__content {
    max-height: min(640px, 100vh - 200px);
    overflow-y: auto;
    .SSIC__content-baseinfo {
      /* 基本信息容器样式 */

      .SSIC__logo {
        width: 240px;
        padding-left: var(--spacing-4);
        padding-top: var(--spacing-4);
        img {

          /* Logo容器样式 */
          filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.12));
        }
      }

      .SSIC__right {
        /* 右侧内容容器样式 */
        flex: 1;

        .SSIC__supported-desc,
        .SSIC__supported-note {
          .metafield-rich_text_field {
            display: inline;
            p {
              display: inline;
            }
          }
        }
      }
    }

    .SSIC__content-supported-os-detail {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      padding-top: 3rem;
      margin-top: 1rem;
      border-top: 2px solid #b3b3b3;

      .SSIC__supported-os-card {
        border-radius: 8px;
        background-color: #f4f4f4;
        padding: 3rem 1rem 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;

        .SSIC__os--icon {
          width: 48px;
          height: 48px;
        }
        .SSIC__os-download,
        .SSIC__os-google {
          color: #247FFF;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .snippet-software-info-card {
    .SSIC__content {
      .SSIC__content-baseinfo {
        flex-direction: column;
        .SSIC__logo {
          width: 80px;
        }
      }
      .SSIC__content-supported-os-detail {
        grid-template-columns: repeat(2, 1fr);
        .SSIC__supported-os-card {
          padding-top: 1rem;
        }
      }
    }
  }

  .SSIC__revo-assistant-content {
    flex-direction: column;

    img {
      width: 48px;
    }
  }
}