/* 存放一些公共的基础样式 */
* {
    margin: 0;
    padding: 0;
    outline: none;
    color: #333;
    -webkit-font-smoothing: antialiased; /*字体锯齿*/
    box-sizing: border-box; /*移动端防止溢出*/
    /*font-size: 50px;*/
}

html {
    text-align: center;
    height: 100%;
    width: 100%;
}

html body {
    font: 14px/1.5 "Hiragino Sans GB W3","Microsoft YaHei","WenQuanYi Micro Hei",Arial,Helvetica,sans-serif;
    height: 100%;
    width: 100%;
}
body{
    background: #fff;
    font-family: "Hiragino Sans GB W3","Microsoft YaHei","WenQuanYi Micro Hei",Arial,Helvetica,sans-serif;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
}

p, span, li, a, h2, h3, h4,input{
    font: 14px/1.5 "Hiragino Sans GB W3","Microsoft YaHei","WenQuanYi Micro Hei",Arial,Helvetica,sans-serif;
}

input, textarea {
    border: none;
    background: none; /*设置高亮颜色*/
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-appearance: none;
}
i,em{
    font-style: normal;
}
div {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-appearance: none;
    font: 14px/1.5 "Hiragino Sans GB W3","Microsoft YaHei","WenQuanYi Micro Hei",Arial,Helvetica,sans-serif;

}
textarea{resize:none}

img {
    border: 0 none;
}

/*高度*/
.heg1 {
    height: 100%
}

/*宽度*/
.wid1 {
    width: 100%
}

/*外边距*/
.marg1 {
    margin-left: auto;
    margin-right: auto
}

.clearfix:after {
    content: "020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

/*内边距*/
.clear {
    clear: both
}

.hide {
    display: none
}

.fl {
    float: left
}

.fr {
    float: right
}

textarea ,input::-webkit-input-placeholder { /* WebKit browsers */
    color: #bcbcbc;
}

textarea,input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #bcbcbc;
}

textarea,input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #bcbcbc;
}

textarea,input:-ms-input-placeholder {
    color: #bcbcbc; /* Internet Explorer 10+ */
}

.auto{
    margin: 0px auto;
   width:1100px;
}



