/*公共样式*/
html, body {
    height: 100%;
    width: 100%;
    min-width: 1250px;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    position: relative;
    /*font-weight: 100;*/
    font-family: "PingFang SC", "Helvetica Neue", "Hiragino Sans GB", "Segoe UI", "Microsoft YaHei", 微软雅黑, sans-serif;;
}

h1, h2, h3, h4, h5, p, ul, li {
    margin: 0;
    padding: 0;
}

ul, li {
    list-style: none;
}
a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

/*提示语*/
.cuephrases {
    color: #E4E4E4;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

textarea {
    resize: none;
}
select {
    /*很关键：将默认的select选择框样式清除*/
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center transparent !important;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px !important;
    outline: none; !important;
}

select::-ms-expand {
    display: none;
}

select:focus {
    outline: none; !important;
}

#container {
    width: 100%;
    /*width: 1200px;*/
    min-height: 100%;
    height: 100%;
    /*margin: 20px auto 0;*/
    position: relative;
}
.bg_grey{
    background-color: #f0f2f5;
    min-height: 100%;
    height: 100%;
}
/*公共样式end*/
