/*全局设置**************/


/* 设置默认字体 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    box-sizing: border-box;
}

html, body,
button, input, select, textarea {
	font-size: 12px;
	line-height: 1.5;
    font-family: "AlibabaPuHuiTiH", "\5FAE\8F6F\96C5\9ED1","Microsoft Yahei","Hiragino Sans GB",tahoma,arial,"\5B8B\4F53" !important;
/*	font: 12px/1 "Tahoma", "Helvetica", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;  用 ascii 字符表示，使得在任何编码下都无问题 */
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

address, cite, dfn, em, var {
    font-style: normal;
}

/* 重置列表元素 */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 重置文本格式元素 */
a {
    color: #494b4c;
    text-decoration: none;
    cursor: pointer;
}
	a:link{
		text-decoration:none;
	}
	a:visited {
    	text-decoration: none;
    }
    a:hover {
        color: #45b0e5;
        text-decoration: none;
    }
	a:active{
		text-decoration:none;
	}


a.link-primary {
    color: #45b0e5;
    text-decoration: none;
    cursor: pointer;
}
	a.link-primary:visited {
        color: #45b0e5;
        text-decoration: none;
    }
    a.link-primary:hover {
        color: #0576b2;
        text-decoration: none;
    }


a[disabled]
,a.link-primary[disabled] {
	color: #c4c8cc;
	cursor: not-allowed;
}

abbr[title], acronmk[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before, q:after {
    content: '';
}

/* 重置表单元素 */
legend {
    color: #000;
}
/* for ie6 */
fieldset, img {
    border: none;
}
/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}

/*全局设置 END*************************/

/*公用CSS***************************/

/* 鼠标样式 */
.pointer {
    cursor: pointer;
}

/* 取消边框 */
.NoBorder {
    border: 0 none;
}

/* 文本对齐方式 */
.tl {
    text-align: left;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

/* 字母和单词换行设置，强制内容换行，强制内容不换行 */
.Break {
    word-break: break-all;
    word-wrap: break-word;
}

.Nobreak {
    word-break: keep-all;
    word-wrap: normal;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
}

/* 浮动定义 */
.FL {
    float: left;
}

.FR {
    float: right;
}

.clear {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

/* 定义文本下划线 */
.UnLine {
    text-decoration: underline;
}

.DisunLine {
    text-decoration: none;
}

/* 定位关系 */
.abs {
    position: absolute;
}

.rel {
    position: relative;
}

/* 隐藏元素，visibility可以隐藏元素，但是还是会在布局中占位 */
.invisible {
    visibility: hidden;
}

.border-box {
    box-sizing: border-box;
}

/* 从页面布局上隐藏元素，从布局上隐藏元素 */
.hide {
    display: none;
}

.block {
    display: block;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;}
.flex {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0; }
.b-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.b-v-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.b-c-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}