﻿/* 清除浮动 */

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}


/* 重置样式 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}


/* 设置默认字体 */

body {
    line-height: 1;
    font-family: '微软雅黑 Regular', '微软雅黑 Light', '微软雅黑', ;
}


/* 移除链接的下划线 */

a {
    text-decoration: none;
}


/* 移除列表样式 */

ul,
ol {
    list-style: none;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}


/* 其他的重置样式，根据需要使用或修改 */

.full-with {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;

}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.flexbox {
    display: flex;
}

* {
    box-sizing: border-box;
}

html,body {
width:100%;
-webkit-text-size-adjust:100%;
}