HTML, body,div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,
pre, form, fieldset, table, th, td {
    border:none;
    font-family:Chinese Quote,-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size:14px;
    margin:0px;
    padding:0px;
    }
textarea{
    resize: none;
}
html,body{
    height: 100%;
    width: 100%;
    }
red{
    color: red;
}
select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #000;
    /*很关键：将默认的select选择框样式清除*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("../static/images/arrow.png") no-repeat scroll right center transparent;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px;
    text-indent: 10px;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }
address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal;
}
a{
    text-decoration:none;
}
a:link{
    color:#4d4d4d;
}
a:visited{
    color:#4d4d4d;
}
a:hover{
    color:#4d4d4d !important;
    text-decoration: none !important;
}
a:active{
    color:#4d4d4d;
}
input::-ms-clear{
    display:none;
    }
input::-ms-reveal{
    display:none;
}
input{
    margin: 0;
    outline: none;
    padding: 0;
}
input:required:invalid, input:focus:invalid, textarea:required:invalid, textarea:focus:invalid{
    box-shadow: none;
}
input::-webkit-input-placeholder{
    color: #ccc;
}
input::-ms-input-placeholder{
    color: #ccc;
}
input::-moz-placeholder{
    color: #ccc;
}
input[type=submit],input[type=button]{
    cursor: pointer;
}
button[disabled], input[disabled] {
    cursor: default;
}
img{
    border:none;
    object-fit: cover;
}
ul,ol,li{
    list-style-type:none;
}
/*公共方法*/
.clear{
    clear: both;
}
.clearleft{
    clear: left;
}
.clearright{
    clear: right;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
.cursor{
    cursor: pointer;
}
/*背景及色值表*/
.bg000{
    background: #000;
}
.color000{
    color: #000;
}
.bgc{
    background-color: #be8914;
}
.color{
    color: #be8914;
}
.clearfix:after{display:block;clear:both;content:"";visibility:hidden;height:0}
.clearfix{zoom:1}
.mt{
    margin-top: 20px;
}
.mb{
    margin-bottom: 20px;
}
.ml{
    margin-left: 20px;
}
.mr{
    margin-right: 20px;
}
.pt{
    padding-top: 20px;
}
.pl{
    padding-left: 20px;
}
.pd{
    padding-bottom: 20px;
}
.dib{
    display: inline-block;
}
.vt{
    vertical-align: top;
}
.elip {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.box_shadow {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
    border: none;
}