/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 03 2025 | 05:53:24 */
/* 初始化計數器 'section' */
.counter {
    counter-reset: section;
}

/* 為每個 <h2> 添加中文格式的編號前綴 */
.counter h2::before,
.counter h4::before {
    counter-increment: section;
	content: '第' counter(section, cjk-ideographic) '條：';
    /*content: '第' counter(section, trad-chinese-formal)'條：';*/
}
