html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
}


/* 1. 覆盖 Chrome/Edge/Safari 的自动填充样式 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /* 关键：用 box-shadow 覆盖默认背景色 */
    -webkit-box-shadow: 0 0 0 30px #FAF9F9 inset !important;
}

/* 2. 覆盖 Firefox 的自动填充样式 */
input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus,
input:-moz-autofill:active {
    box-shadow: 0 0 0 30px #FAF9F9 inset !important;
}

/* 3. 可选：隐藏自动填充的下拉箭头（部分浏览器） */
input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
}

* {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

ul, ol {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
}

a {
    text-decoration: none;
    cursor: pointer;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
}

input, textarea {
    outline: none;
    border: none;
}

textarea {
    resize: none;
    overflow: auto;
}
