* {
    margin: 0;
    padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    outline: none;
    resize: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font: 400 14px/1.5 Arial, "Lucida Grande", Verdana, "Microsoft YaHei", hei;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    background-color: #F3F6FF;
}

img {
    border: 0;
    vertical-align: middle;
}

a {
    background: transparent;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    color: #231815;
    cursor: pointer;
}

a:active {
    outline: 0;
}

input {
    line-height: normal;
}

input:focus {
    outline: 0 none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #bbb;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #bbb;
}

/*去掉chrome记住密码后自动填充表单的黄色背景*/
input:-webkit-autofill {
    background-color: #FAFFBD;
    background-image: none;
    color: #000;
}

ul,
li,
dl,
dd,
dt {
    list-style: none;
}

i,
em {
    font-style: normal;
}

a:hover,
a:focus {
    text-decoration: none;
}

/*清浮动*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix {
    *zoom: 1;
}

select {
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;

    /*在选择框的最右侧中间显示小箭头图片*/
    background: url(../images/serach-ico-down.png) no-repeat scroll right center transparent;
    background-size: 9px 6px;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 7px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
    display: none;
}

/*文字溢出省略号显示*/
/*单行文本*/
.inaline {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*多行文本*/
.intwoline {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*多少行*/
}

/*公用样式设置*/
* {
    box-sizing: border-box;
}