| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // 重置所有默认样式
- body {
- font-family: sans-serif;
- }
- html, body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, fieldset, form, label, input, legend, table, caption, tbody, tfoot, thead, tr, th, td, textarea, article, aside, audio, canvas, figure, footer, header, mark, menu, nav, section, time, video {
- margin: 0;
- padding: 0;
- }
- h1, h2, h3, h4, h5, h6 {
- font-size: 100%;
- font-weight: normal;
- }
- article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote {
- display: block;
- }
- ul, ol {
- list-style: none;
- }
- img {
- border: 0 none;
- vertical-align: top;
- }
- blockquote, q {
- quotes: none;
- }
- blockquote:before, blockquote:after, q:before, q:after {
- content: none;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- strong, em, i {
- font-style: normal;
- font-weight: normal;
- }
- ins {
- text-decoration: underline;
- }
- del {
- text-decoration: line-through;
- }
- mark {
- background: none;
- }
- input::-ms-clear {
- display: none !important;
- }
- body {
- background: #fff;
- }
- a {
- text-decoration: none;
- color: #333;
- }
- a:hover {
- text-decoration: underline;
- }
|