﻿@charset "utf-8";

/*************************************
*样式主文件
*************************************/
/* CSS Document */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong,
img,
form,
ul,
li,
a,
table,
tr,
td {
    margin: 0;
    padding: 0;
}

body {
    font: normal 14px/1.5 '微软雅黑';
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
i,
button {
    font-family: '微软雅黑';
}

html,
body {
    width: 100%;
}

em,
i {
    font-style: normal;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

footer,
header,
nav,
section,
main,
aside {
    display: block;
}

a {
    text-decoration: none;
    border: none;
}

a:focus {
    -moz-outline-style: none;
    outline: none;
}

ul li {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

i {
    font-style: normal;
}

ul {
    margin-bottom: 0;
}

/* change border colour to suit your needs */
input,
select {
    vertical-align: middle;
    outline: none;
    border: none;
}

textarea {
    overflow: auto;
    resize: none;
}

a,
button {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

select::-ms-expand {
    display: none;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #7c7c7c;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #7c7c7c;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #7c7c7c;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #7c7c7c;
}

input:focus {
    border: none;
    outline: none;
}

h1,
h2,
h3 {
    margin-top: 0;
    margin-bottom: 0;
}

* {
    box-sizing: border-box;
}

/*浮动*/
.fl {
    float: left;
}

.fr {
    float: right;
}

/*清除浮动*/
.clearfix:after {
    height: 0;
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

.clearfix {
    zoom: 1;
}

* html .clearfix {
    zoom: 1;
}