@charset "utf-8";

/*
@名称: base
@功能: 重设浏览器默认样式
*/


/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */

html {
	color: #36394d;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 14px;
}


/* 内外边距通常让各个浏览器样式的表现位置不同 */

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,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	margin: 0;
	padding: 0;
	font-family: 'Microsoft YaHei', '微软雅黑', Arial, Lucida Grande, Tahoma, sans-serif;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;

}


/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}


/* HTML5 媒体文件跟 img 保持一致 */

audio,
canvas,
video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}


/* 要注意表单元素并不继承父级 font 的问题 */

input,
select,
textarea {
	font-size: 100%;
	font-family: 'Microsoft YaHei', '微软雅黑', Arial, Lucida Grande, Tahoma, sans-serif;
	outline:none;
}


/* 去掉各Table cell 的边距并让其边重合 */

table {
	border-collapse:collapse;
	border-spacing: 0;
}


/* IE bug fixed: th 不继承 text-align*/

th {
	text-align: inherit;
}


/* 去除默认边框 */

fieldset,
img {
	border: 0;
	vertical-align: bottom;
}


/* ie6 7 8(q) bug 显示为行内表现 */

iframe {
	display: block;
}


/* 去掉 firefox 下此元素的边框 */

abbr,
acronym {
	border: 0;
	font-variant: normal;
}


/* 一致的 del 样式 */

del {
	text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: 500;
}


/* 去掉列表前的标识, li 会继承 */

ol,
ul {
	list-style: none;
}


/* 对齐是排版最重要的因素, 别让什么都居中 */

caption,
th {
	text-align: left;
}


/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: 500;
}

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


/* 统一上标和下标 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

a {
	color: #333;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

a:focus {
	outline: none;
}

button:active {
	opacity: 0.8;
	filter: alpha(opacity = 80);
}

/* 默认不显示下划线，保持页面简洁 */

ins,
a {
	text-decoration: none;
}


/* 清理浮动 */

.fc:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.fc {
	zoom: 1;
	/* for IE6 IE7 */
}


/* 隐藏, 通常用来与 JS 配合 */

body .fh {
	display: none!important;
}

body .fs {
	display: block!important;
}


/* 设置内联, 减少浮动带来的bug */

.fl,
.fr {
	display: inline;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

/**
 * 基类
 **/

html, body {
	height: 100%;
}
html.full-layout, html.full-layout body {
  /*min-width: 1280px;*/
  background-color: #F1F1F1;
}
html.iframe-layout, html.iframe-layout body {
	width: 100%;
	background-color: #FFFFFF;
}

.fs12 {
	font-size: 12px!important;
}

.fs14 {
	font-size: 14px!important;
}

.fs16 {
	font-size: 16px!important;
}

.fs18 {
	font-size: 18px!important;
}

.fs20 {
	font-size: 20px!important;
}

.fw_bold {
	font-weight: bold!important;
}

.fw_normal {
	font-weight: normal!important;
}

.text-left {
	text-align: left!important;
}

.text-center {
	text-align: center!important;
}

.text-right {
	text-align: right!important;
}

.btn {
	border: none;
	outline: none;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.input::-webkit-input-placeholder {
	color: #757575;
}
.input::-moz-placeholder {
	color: #757575;
}
.input:-moz-placeholder {
	color: #757575;
}
.input:-ms-input-placeholder {
	color: #757575;
}

.over_1 {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.over_2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.over_3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.mt10 {
	margin-top: 10px!important;
}
.mr10 {
	margin-right: 10px!important;
}
.mb10 {
	margin-bottom: 10px!important;
}
.ml10 {
	margin-left: 10px!important;
}
.mt15 {
	margin-top: 15px!important;
}
.mr15 {
	margin-right: 15px!important;
}
.mb15 {
	margin-bottom: 15px!important;
}
.ml15 {
	margin-left: 15px!important;
}
.mt20 {
	margin-top: 20px!important;
}
.mr20 {
	margin-right: 20px!important;
}
.mb20 {
	margin-bottom: 20px!important;
}
.ml20 {
	margin-left: 20px!important;
}
.mr0 {
	margin-right: 0!important;
}
.mt0 {
	margin-top: 0!important;
}
.mh10 {
	margin: 0 10px!important;
}
.mv10 {
	margin: 10px 0!important;
}
.mh20 {
	margin: 0 20px!important;
}
.mv20 {
	margin: 20px 0!important;
}
.m10 {
	margin: 10px!important;
}
.p10 {
	padding: 10px!important;
}
.p20 {
	padding: 20px!important;
}
.ph20 {
	padding: 0 20px!important;
}
.pv20 {
	padding: 20px 0!important;
}
.pb20 {
	padding-bottom: 20px!important;
}
.no_padding {
	padding: 0!important;
}
.padding-t-l {
	padding: 0 20px 20px 0!important;
}

.img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: bottom;
	border: none;
}
.white-box {
	background-color: #FFFFFF;
	border-radius: 8px;
}

.cursor {
	cursor: pointer;
}

.visible {
	overflow: visible!important;
}

/*定位*/
.relative {
	position: relative;
}

/*盒子模型*/
.flex {
	display: flex;
	display: -webkit-flex;
}

.flex-aro {
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	align-items: center;
}

.flex-bet {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
}
.flex-center {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
}
.flex-1 {
	flex: 1;
}
.flex-2 {
	flex: 2;
}
.flex-3 {
	flex: 3;
}

/* 项目自定义 */
.oa-bg-1 {
	background-color: #0084FF;
}
.oa-bg-2 {
	background-color: #30f3e6;
}
.oa-bg-3 {
	background-color: #ff7649;
}
.oa-bg-4 {
	background-color: #f729d2;
}
.oa-bg-5 {
	background-color: #23c531;
}
.oa-color-1 {
	color: #0084FF!important;
}


/* 媒体对象 */
@media (min-width: 1280px) and (max-width: 1439px) {
	.login-form .h1 {
		font-size: 24px!important;
	}
	.sm-hidden {
		display: none!important;
	}
}
@media (min-width: 1280px) and (max-width: 1599px) {
	.xs-hidden {
		display: none!important;
	}
}
@media (min-width: 1600px) {
	.xs-hidden {
		display: block!important;
	}
}

/* 重定义layui */
.layui-layer-title {
	height: 50px!important;
	line-height: 50px!important;
	font-weight: bold!important;
	background-color: #fff!important;
}
.layui-layer-setwin {
	top: 17px!important;
}
.layui-layer.layui-layer-iframe {
	/*border-radius: 12px!important;
	 overflow: hidden; */
}
.layui-table th {
	font-weight: bold!important;
}

.layui-form-select.multi dl dd.layui-this {
	background-color: #fff;
}


