﻿@charset "UTF-8";

/* 重置样式 */
html, body, h1, h2, h3, h4, h5, h6, div, dl, dt, dd, ul, ol, li, p, blockquote, pre, hr, figure, table, caption, th, td, form, fieldset, legend, input, button, textarea, menu, header, aside, nav, article, section, footer {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	line-height: normal;
	font-size: 14px;
	font-family: "microsoft yahei";
}

ul, ol {
	list-style-type: none;
	list-style-image: none;
}

img {
	vertical-align: middle;
	border-style: none;
}

a {
	text-decoration: none;
	background-color: transparent;
}

a:active,
a:hover {
	outline-width: 0;
}

a:focus {
	outline: none;
}

li {
	text-decoration: none;
	list-style: none;
}

input {
	background: none;
	outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus {
	background: none;
	outline: none;
}
/* 去除自动填充背景色 */
input:-webkit-autofill {
	transition: background-color 5000s ease-in-out 0s;
}

/* 其他样式 */
.p-rela {
	position: relative;
}

.p-abso {
	position: absolute;
}

.p-text-left {
	text-align: left;
}

.p-text-center {
	text-align: center;
}

.p-text-right {
	text-align: right;
}

.p-flex-wrap {
	flex-wrap: wrap;
}

.p-flex-nowrap {
	flex-wrap: nowrap;
}

/* 滤镜 */
.filterGray {
	filter: grayscale(100%);
	filter: gray;
}
/* 单行不换行 */
.textOverflow {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* 变小手 */
.pointer {
	cursor: pointer;
}

/* .pointer:hover {
	opacity: 0.8;
} */
/* 全屏 */
.fullScreen {
	width: 100%;
	height: 100%;
}

.fullWidth {
	width: 100%;
}

.fullHeight {
	height: 100%;
}
/* 背景色 */
.bgWhite {
	background-color: #FFFFFF;
}

.bgLucency {
	background-color: transparent;
}

/* 字体颜色 */
.fontWhite {
	color: #FFFFFF;
}

.fontBlack {
	color: #333333;
}

.fontGray {
	color: #666666;
}

.fontLightGray {
	color: #999999;
}

.fontLighterGray {
	color: #cccccc;
}

.fontBlue {
	color: #1a3c80;
}

.fontLightBlue {
	color: #246bcc;
}

.fontLighterBlue {
	color: #008dff;
}

.fontGreen {
	color: #2ecc71;
}

.fontOrange {
	color: #f39c12;
}

/* 字体加粗、变细 */
.fontLighter {
	font-weight: lighter;
}

.fontBold {
	font-weight: bold;
}

/* 无边框 */
.noBorder {
	border: none;
}

.overHidden {
	overflow: hidden;
}

/* 重置easyUI框架日历弹窗大小 */
.combo-panel {
	max-height: 440px !important;
}
/*滚动条*/
::-webkit-scrollbar {
	width: 5px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background-color: rgba(255,255,255,0.7);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #4b81fc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


#applyBtn .easyui-linkbutton {
 margin-left:0 !important;
}