/* 分割线标题组件，供归档、友链、图标等内容页复用 */
.ta-Split-title {
  user-select: none;
}

.ta-Split-title h2 {
  margin-top: 25px;
  text-align: center;
}

.ta-Split-title hr {
  margin-bottom: 0;
}

/* 分页组件，统一桌面端和移动端的页码字号 */
.ta-common-pagination {
  user-select: none;
  justify-content: center;
  font-size: 22px;
}

@media (max-width: 768px) {
  .ta-common-pagination {
    font-size: 16px;
  }
}

/* 毛玻璃容器，用于卡片背景的遮罩效果 */
.ta-ground-glass {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: hsla(0, 0%, 100%, 0.1);
}
