.content-min {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column; }
  .content-min .big-padding {
    padding: 5px;
    gap: 10px;
    display: flex;
    flex-direction: column; }
  .content-min .type-title {
    color: #002a41;
    font-size: 19px;
    font-weight: 900; }
  .content-min .list-shu-m {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    display: grid;
    grid-gap: 12px; }
  .content-min .type-m {
    display: grid; }
    .content-min .type-m .type-item-m {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      margin: 6px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      text-align: center; }
      .content-min .type-m .type-item-m .name {
        text-align: center;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        font-weight: 700;
        font-size: 15px;
        color: #337ab7;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .content-min .type-m .type-item-m .num {
        font-size: 12px;
        color: #333; }
  @media screen and (max-width: 576px) {
    .content-min .list-shu-m {
      grid-template-columns: repeat(2, 1fr); }
    .content-min .type-m {
      grid-template-columns: repeat(3, 1fr); } }
  @media screen and (min-width: 577px) {
    .content-min .type-m {
      grid-template-columns: repeat(6, 1fr); }
    .content-min .list-shu-m {
      grid-template-columns: repeat(6, 1fr); } }
