  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    padding: 10px;
  }
  .grid-item {
    padding: 10px;height: 120px;
    border: 1px solid #ccc;border-radius: 22px 0 22px 0;
    text-align: center;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .grid-item .name {
    font-weight: bold; font-size: 1.5em; /* 增加字体大小 */
    margin-bottom: 10px; /* 添加一些间距 */
  }
  .grid-item a {
    color: white;font-size: 0.6em; /* 减小字体大小 */
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
