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 {
	font-size: 16px;
	font-family: Gordita,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
	margin: 0;
	padding: 0;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a.Link{
    text-decoration: none;
    color: #3a424d;
}
a:hover.Link{
    text-decoration: underline;
    color: #3ba7f8;
}
.f12{
    font-size: 12px;
}
.f14{
    font-size: 14px;
}
.f16{
    font-size: 16px;
}
/**
 * 没有数据时的样式
 */
.noData_container{
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.noData_container>img{
	max-width: 10rem;
}
.noData_container>div{
    font-size: 15px;
    text-align: center;
    margin-top: 1rem;
    color: #A9AEB1;
}

/*.mobilestyle{*/
/*cursor: pointer;*/
/*}*/
/**
 * 没有数据时显示的公共样式
 */
.noData{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}
.noData>img{
	width: 10rem;
	height: 8rem;
}
.noData-font{
	color: #6C6C6C;
	font-size: .65rem;
	line-height: .9rem;
	text-align: center;
}

.loading {
	display: inline-block;
	width: 50px;
	height:50px;
	border:1px solid #ccc;
	border-top: 1px solid #000;
	margin: auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 5px solid rgba(0, 0, 0, 0.4);
	border-left: 5px solid #fff;
	animation: load 1s linear infinite;
	-moz-animation: load 1s linear infinite;
	-webkit-animation: load 1s linear infinite;
	-o-animation: load 1s linear infinite;
}

@-webkit-keyframes load {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes load {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes load {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
  }
}

.df {
	display: flex;
}

.ai {
	align-items: center;
}

.jc {
	justify-content: center;
}

.flex {
	flex: 1;
}

.noMarginBottom {
	margin-bottom: 0 !important;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.inline {
	display: inline-block;
}

.v-middle {
	vertical-align: middle;
}

.noFont {
	font-size: 0 !important;
}

.ellipsis {
	-o-text-overflow: ellipsis;
	word-break: normal;
	word-wrap: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ellipsis-2 {
	display: -webkit-box;
	overflow: hidden;
	white-space: normal !important;
	text-overflow: ellipsis;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.log-row {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex-auto {
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
}

.flex-shrink-0 {
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}