@charset 'utf-8';
html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    /*解决chrome浏览器下字体不能小于12px*/
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "微软雅黑", "宋体", "Arial Narrow", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #fff;
}

ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td,
pre,
xmp {
    margin: 0;
    padding: 0;
}

input,
textarea,
button,
select,
pre,
xmp,
tt,
code,
kbd,
samp {
    line-height: inherit;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
small,
big,
input,
textarea,
button,
select {
    font-size: inherit;
}

strong {
    font-weight: bold;
}

address,
cite,
dfn,
em,
i,
optgroup,
var {
    font-style: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    text-align: left;
}

ul,
ol,
menu {
    list-style: none;
}

fieldset,
img {
    border: 0;
    vertical-align: middle;
    display: block;
    /*margin: 0 auto;*/
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

textarea {
    resize: vertical;
}

input,
textarea,
button,
select a {
    outline: 0 none;
}

input,
textarea,
button,
select {
    color: inherit;
}

input:disabled,
textarea:disabled,
button:disabled,
select:disabled {
    opacity: 1;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

mark {
    background-color: rgba(0, 0, 0, 0);
}

a,
ins,
s,
u,
del {
    text-decoration: none;
}

a:hover {
    -webkit-tap-highlight-color: transparent;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input {
    display: block;
}

input {
    -webkit-appearance: none;
    /*去除input默认样式*/
}

textarea {
    -webkit-appearance: none;
}
select{
    appearance:none;border: 0;
    -moz-appearance:none;
    -webkit-appearance:none;outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);'
}
a,
img,
button,
input,
textarea {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -moz-tap-highlight-color: rgba(255, 255, 255, 0);
}


/*万能浮动清除法*/

.clear::after {
    content: ".";
    clear: both;
    display: block;
    overflow: hidden;
    font-size: 0;
    height: 0;
}

.left {
    float: left;
}

.right {
    float: right;
}

input::-webkit-input-placeholder { /* WebKit browsers */
    color: #888f95;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #888f95;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #888f95;
}
input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #888f95;
}


/*取消因为双击选中字体状态*/

.double_click{
    -moz-user-select:none;/*火狐*/
    -webkit-user-select:none;/*webkit浏览器*/
    -ms-user-select:none;/*IE10*/
    -khtml-user-select:none;/*早期浏览器*/
    user-select:none;
}


/*弹性盒应用*/
.flex_box {
    display: -webkit-box;
    display: -moz-box;
    display: flex;
    display: -ms-flexbox;
}

.flex_box_children {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    -ms-flexbox: 1;
}



