/* 清除默认样式 */
body,
strong,
h3,
h4{ 
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

input {
    outline: none;
}

button {
    border: none;
    outline: none;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1{ 
    margin: 0;
    padding: 0;
}



/* 谷歌 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none; 
    margin: 0; 
}
/* 火狐 */
input{
    -moz-appearance:textfield;
}

/* --ie清除--*/

select::-ms-expand{ display: none; }

/* --火狐、谷歌清除--*/

select{
    width: 25px;
    line-height: 15px;
    text-align:center;
    text-align-last: center;
    /*清除默认下拉三角，可在背景图上做三角*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
}

option::-ms-expand{ display: none; }
option{
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari 和 Chrome */
    appearance:none;
    text-align:center;
}
/* --背景色字体颜色--*/
option:hover{
    color:#fff;
    background-color:#1E90FF;
}
