@charset "UTF-8";
/* --公共样式-- */
*,::after,::before{margin: 0;padding: 0;box-sizing: border-box;font-family:"Times New Roman", "Microsoft YaHei", Times, serif;}
/*--显示方式--*/
.disb{
    display: block;
}
.disn{
    display: none;
}
.disib{
    display: inline-block;
}
.disf{
    display: flex;
    -webkit-display: flex;
}
.column{
    flex-direction: column;
}
/*--定位--*/
.posa{
    position: absolute;
}
.posr{
    position: relative;
}
.posf{
    position: fixed;
}
/*--浮动--*/
.clearfix::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  clear: both;
  zoom: 1;
}
.fr{
    float: right;
}
.fl{
    float: left;
}
/*--字体--*/
.text-center{
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
}
/*--常用处理--*/
a{
    outline: none;
    text-decoration: none;
    text-decoration: -moz-none;
    color: inherit;
    cursor: pointer;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0; }
table {
    border-collapse: collapse;
    border-spacing: 0; }
img{
    border: 0;
    width: 100%;
    height: 100%;
    /*vertical-align: middle;*/
}
ul,li,ol{
    list-style: none;
}
input{
    border: 0;
    outline: none;
}
input[type="submit"], input[type="reset"], input[type="button"], input[type=date], button, select, input[type=text] {
    /*去掉苹果的默认UI来渲染按钮 、解决部分手机浏览器对border：none无效办法*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*去掉微信端input-text在ios轻快下的点击出先黑色半透明背景*/
    tap-highlight-color: transparent !important; }
a, input[type=text], select, input[type=password], textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*去掉微信端input-text在ios轻快下的点击出先黑色半透明背景*/
    tap-highlight-color: transparent !important; }