123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- @charset "utf-8";
- @charset "utf-8";
- * @名称:base.css
- * @功能:1、重设浏览器默认样式
- * 2、设置通用原子类
- */
- html {
- background: white;
- color: black;
- }
- body,
- div,
- dl,
- dt,
- dd,
- ul,
- ol,
- li,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- pre,
- code,
- form,
- fieldset,
- legend,
- input,
- textarea,
- p,
- blockquote,
- th,
- td,
- hr,
- button,
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- hgroup,
- menu,
- nav,
- section {
- margin: 0;
- padding: 0;
- }
- body,
- button,
- input,
- select,
- textarea {
- font: 12px \5b8b\4f53, arial, sans-serif;
- }
- input,
- select,
- textarea {
- font-size: 100%;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- th {
- text-align: inherit;
- }
- fieldset,
- img {
- border: none;
- }
- iframe {
- display: block;
- }
- abbr,
- acronym {
- border: none;
- font-variant: normal;
- }
- del {
- text-decoration: line-through;
- }
- address,
- caption,
- cite,
- code,
- dfn,
- em,
- th,
- var {
- font-style: normal;
- font-weight: 500;
- }
- ol,
- ul {
- list-style: none;
- }
- caption,
- th {
- text-align: left;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-size: 100%;
- font-weight: 500;
- }
- q:before,
- q:after {
- content: '';
- }
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sup {
- top: -0.5em;
- }
- sub {
- bottom: -0.25em;
- }
- a:hover {
- text-decoration: underline;
- }
- ins,
- a {
- text-decoration: none;
- }
- a:focus,
- *:focus {
- outline: none;
- }
- .clearfix:before,
- .clearfix:after {
- content: "";
- display: table;
- }
- .clearfix:after {
- clear: both;
- overflow: hidden;
- }
- .clearfix {
- zoom: 1;
-
- }
- .clear {
- clear: both;
- display: block;
- font-size: 0;
- height: 0;
- line-height: 0;
- overflow: hidden;
- }
- .hide {
- display: none;
- }
- .block {
- display: block;
- }
- .fl,
- .fr {
- display: inline;
- }
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
|