﻿/* 网站网格容器 */
.website-grid {
  max-width: 1024px;
  width: 100%;
  border: 0;
  margin: 0 auto;
  text-align: center;
}

/* 头部行 */
.header-row {
  text-align: center;
  height: 20px;
}

/* 标题行和分类行 */
.title-row,
.category-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}

/* 分类行 */
.category-row {
  text-align: left;
}

/* 通用单元格 */
.title-cell,
.spacer-cell,
.more-cell,
.category-name,
.link-cell {
  width: 120px;
  padding: 1px 0;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* 标题单元格 */
.title-cell {
  width: 120px;
  text-align: center;
}

/* 标题文本 */
.title-text {
  color: red;
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}


/* 标题悬停 */
.title-text:hover {
  transform: scale(1.2);
}

/* 更多单元格 */
.more-cell {
  text-align: left;
}

/* 分类名称 */
.category-name {
  text-align: center;
  color: blue;
}

/* 链接单元格 */
.link-cell a {
  display: inline-block;
}

/* 更多链接 */
.more-cell a {
  display: inline-block;
}

