@charset "utf-8";

/* CSS Document */
html {
    color: #333;
}

div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
form,
legend,
input,
button,
textarea,
select,
p,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: none;
}

button,
em,
input,
option,
select,
textarea,
th {
    font: inherit;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-weight: normal;
    font-size: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Microsoft YaHei, Simsun, SimHei, Arial, sans-serif;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

input,
input:focus,
textarea,
textarea:focus,
button {
    outline: none;
}

/****公用****/
.fl {
    float: left;
}

.fr {
    float: right;
}

.txtcenter {
    text-align: center;
}

.txtright {
    text-align: right;
}

.bor {
    border: 1px solid #CCC;
}

.rel {
    position: relative;
}

.red {
    color: #FF0000;
}

.white {
    color: #FFF;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

.inlineblock {
    display: inline-block;
}

.hide {
    display: none;
}

.flex {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.inlineflex {
    display: inline-flex;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
}

.flex1 {
    flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
}

.flex2 {
    flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
}

.flex3 {
    flex: 3;
    -webkit-flex: 3;
    -ms-flex: 3;
}

.flex4 {
    flex: 4;
    -webkit-flex: 4;
    -ms-flex: 4;
}

.visHide {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.cursor {
    cursor: pointer;
}

.nodrop {
    cursor: no-drop !important;
}

.borderbox {
    box-sizing: border-box
}

.textoverflow,
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.overflowhide {
    overflow: hidden;
}

.overflowyhide {
    overflow-y: hidden;
}

.overflowyauto {
    overflow-y: auto
}

.overflowxauto {
    overflow-x: auto
}

.overflowxhide {
    overflow-x: hidden;
}

.transparent_class {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.dotted {
    border-bottom: 1px dotted #CCCCCC;
    font-size: 0;
    line-height: 0;
    padding: 0;
    margin: 0;
    clear: both;
}

.pm0 {
    padding: 0 !important;
    margin: 0 !important;
}

.pd5 {
    padding: 5px;
}

.pd10 {
    padding: 10px;
}

.pd15 {
    padding: 15px;
}

.pd20 {
    padding: 20px;
}

.m5 {
    margin: 5px;
}

.m10 {
    margin: 10px;
}

.m15 {
    margin: 15px;
}

.m20 {
    margin: 20px;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.p5 {
    padding: 5px;
}

.p10 {
    padding: 10px;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb15 {
    padding-bottom: 15px;
}

.pb20 {
    padding-bottom: 20px;
}

.pl5 {
    padding-left: 5px;
}

.pl10 {
    padding-left: 10px;
}

.pl15 {
    padding-left: 15px;
}

.pl20 {
    padding-left: 20px;
}

.pr5 {
    padding-right: 5px;
}

.pr10 {
    padding-right: 10px;
}

.pr15 {
    padding-right: 15px;
}

.pr20 {
    padding-right: 20px;
}

.resetBtn {
    border: 0;
    cursor: pointer;
}

.borderNone {
    border: 0 !important;
}

/**
** 系统色——文字
**/
.primaryColor {
    color: #2a90fc;
}

.primaryColor:hover {
    color: #6bb3ff;
}

.primaryColor:active {
    color: #247cd8;
}

.warningColor {
    color: #ff9334;
}

.safeColor {
    color: #5cb85c;
}

.safeColor:hover {
    color: #7dc67d;
}

.safeColor:active {
    color: #4b974b;
}

.dangerColor {
    color: #fe4343;
}

.dangerColor:hover {
    color: #fe6262;
}

.dangerColor:active {
    color: #db3b3b;
}

/**
** 系统色——背景
**/

.primaryBgColor {
    background-color: #2a90fc;
}

.warningBgColor {
    background-color: #ff9334;
}

.safeBgColor {
    background-color: #5cb85c;
}

.dangerBgColor {
    background-color: #fe4343;
}

.defaultBgColor {
    background-color: #f5f5f5;
}

.whiteBgColor {
    background-color: #ffffff;
}

/**
** 文字色
**/

.important {
    color: #1f1f1f;
}

.ordinary {
    color: #404040;
}

.secondary {
    color: #959595;
}

/**
** 辅助色
**/

.borColor {
    color: #d5d5d5;
}

.splitLineColor {
    color: #e8e8e8;
}

/**
** 按钮不允许点击
**/

.notAllowClick {
    color: white !important;
    cursor: no-drop !important;
    background: #c3c3c3 !important;
}

/**
** 文字大小
**/
.size24 {
    font-size: 24px;
}

.size20 {
    font-size: 20px;
}

.size18 {
    font-size: 18px;
}

.size16 {
    font-size: 16px;
}

.size14 {
    font-size: 14px;
}

.size12 {
    font-size: 12px;
}

/*清除浮动1*/
.clear {
    clear: both;
    height: 0;
    overflow: hidden;
    clear: both !important;
}

.clear.both {
    height: 10px;
}

/*清除浮动2*/
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/*IE6页面定位*/
* html .ie6fixedBR {
    position: absolute;
    left: expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft, 10)||0)-(parseInt(this.currentStyle.marginRight, 10)||0));
    top: expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop, 10)||0)-(parseInt(this.currentStyle.marginBottom, 10)||0)))
}

* html .ie6fixedBT {
    position: absolute;
    right: expression(eval(document.documentElement.scrollRight));
    top: expression(eval(document.documentElement.scrollTop+40))
}

* html .ie6fixedBT2 {
    position: absolute;
    left: expression(eval(document.documentElement.scrollRight));
    top: expression(eval(document.documentElement.scrollTop+500))
}