/* reset */

/* *,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */
*{
    margin: 0;
    padding: 0;
   /* box-sizing: border-box; */
}

html {
    font-size: 14px;
    color: #323232;
    font-family: '微软雅黑', Arial;
}

a {
    text-decoration: none;
    color: #323232;
}

ul,
ol,
li {
    list-style: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearFix::before,
.clearFix::after {
    content: "";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}

.mr_t20 {
    margin-top: 20px;
}

.mr_b20 {
    margin-bottom: 20px;
}

.con_w {
    max-width: 100%;
    overflow: hidden;
}

.con_all {
    padding: 0 10px;
}

img {
    display: block;
    max-width: 100%
}


/* input[type="text"],
input[type="submit"],
input[type="button"],
textarea,
select,
option {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
} */