123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- article,
- aside,
- footer,
- header,
- hgroup,
- main,
- nav,
- section {
- display: block;
- }
- /*去除margin和padding*/
- body,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- ul,
- ol,
- p,
- dl,
- dd,
- hr,
- input,
- textarea {
- margin: 0;
- }
- ul,
- ol {
- padding: 0;
- list-style: none;
- }
- /*去除下划线*/
- a,
- u,
- ins {
- color: inherit;
- text-decoration: none;
- }
- /* 将斜体扶正 */
- i,
- cite,
- em,
- var,
- address,
- dfn {
- font-style: normal;
- }
- /* 统一等宽字体 */
- tt,
- code,
- kbd,
- samp {
- font-family: inherit;
- /*font-family: 'Courier New', Courier, monospace;*/
- }
- /* 统一字体粗细 */
- b,
- strong,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-weight: normal;
- }
- sup,
- sub {
- vertical-align: baseline;
- }
- textarea {
- resize: none;
- }
- samp,
- small {
- font-size: inherit;
- }
- img {
- border: none;
- }
- .clear {
- zoom: 1;
- }
- .clear:after {
- content: '';
- display: block;
- clear: both;
- }
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
- body {
- font-size: 12px;
- font-family: 'Microsoft YaHei';
- }
- .color_blue {
- color: #0998da;
- font-size: 14px !important;
- }
- .fa {
- font-family: FontAwesome;
- font-size: 16px;
- display: inline-block;
- /* vertical-align: middle;
- padding-top: 1px;*/
- }
- .ml-10 {
- margin-left: 10px !important;
- }
- .mb-10 {
- margin-bottom: 10px !important;
- }
|