/******* Do not edit this file *******
Code Snippets Manager
Saved: Jul 24 2025 | 14:51:08 */
@charset "UTF-8";
/*网站标题双色*/
.main-title .site-title-accent {
  color: #cd164f;
}
/* 所有文章段落首行缩进 */
.entry-content p {
  text-indent: 2em;
}
/* 避免影响其他元素 */
.wp-block-heading, .wp-block-list, .wp-block-table {
  text-indent: 0 !important;
}
/*链接页过渡*/
.siss {
  /* 添加过渡效果 */
  transition: transform 0.2s ease;
}
.siss:hover {
  transform: scale(1.02);
  /* 如果需要精确匹配原始矩阵效果 */
  /* transform: matrix(1.02, 0, 0, 1.02, 0, 0); */
}
