body {
    margin: 0;
}

h1 {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

li::marker {
    content: "";
}

/* 清除所有 details 标签的箭头（全局生效） */
details summary {
    /* Chrome、Safari、Edge 等 WebKit 内核浏览器 */
    list-style: none; /* 移除默认列表样式 */
}

/* 兼容 WebKit 内核旧版本（如 Safari 14 及以下） */
details summary::-webkit-details-marker {
    display: none;
}

/* Firefox 浏览器 */
details summary::-moz-list-bullet {
    list-style-type: none;
}

a {
    text-decoration: none !important;
}

i {
    font-style: normal;
}

input[type=text] {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
}

dd {
    margin-left: 0;
}