/* my custom css */
/* 调整根元素字体大小2024.6.19 */
@media only screen and (min-width: 652px) {

	:root {
		--global--font-size-xl: 2.5rem;
		--global--font-size-xxl: 3rem;
		--global--font-size-xxxl: 5rem;
		--heading--font-size-h3: 1.5rem;
		--heading--font-size-h2: 2.5rem;
	}
}

/* 为文章详情中元素p增加缩进2字符2024.6.19 */
.single .entry-content p {
    text-indent: 2em;
}