/*標準化*/
/*margin padding 標準化*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

/*標題 font-size 的標化*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%
}

/*移除清單list-style樣式*/
ol,
ul {
    list-style: none;
}

/*font-style,font-weight*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
}

/*del table border*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*del fieldset and img border*/
fieldset,
img {
    border: 0;
}

/*caption and th text-align:left*/
caption,
th {
    text-align: left;
}

/*del q的引號*/
q:before,
q:after {
    content: '';
}

/*clear float*/
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

