/*初始化样式*/
html,body{
    width:100%;
    height:100%;
    position: relative;
}
p {
	padding: 0;
	margin: 0;
}

.p-center {
	text-align: center;
}

iframe {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

iframe * {
	padding: 0;
	margin: 0;
	overflow: hidden;
}

* {
	padding: none;
	margin: none;
	box-sizing: border-box;
}

ul,
dl {
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
}

button,
input,
select,
textarea {
	outline: none;
	-webkit-appearance: none;
	border: 1px #ddd solid;
	background: none;
}

img {
	max-width: 100%;
	max-height: 100%;
}

::-webkit-scrollbar {
	width: 0px;
	height: 5px;
	background-color: #f3f3f3;
}


/*定义滚动条轨道 内阴影+圆角*/

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #f3f3f3;
}


/*定义滑块 内阴影+圆角*/

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: rgba(0, 0, 0, 0.03);
}


/*全局布局*/

.fl {
	float: left;
}

.fr {
	float: right;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.h-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.v-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.algin {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.between {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.around {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.end {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.wrap-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nowrap {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.margin {
	margin: 10px;
}

.margin-left {
	margin-left: 10px;
}

.margin-right {
	margin-right: 10px;
}

.margin-top {
	margin-top: 10px;
}

.margin-bottom {
	margin-bottom: 10px;
}

.pointer{
	cursor: pointer;
}

/*共有样式*/


/*****************************************************************************************/

.pagination>li {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 0.5em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    *cursor: hand;
    color: #333 !important;
    border: 1px solid transparent;
    border-radius: 2px;
}
.none{
	background: transparent;
}
.pagination{
	float: right;
}
/*table全局样式*/

.dataTable {
	/*margin-bottom: 100px;*/
	padding: 0 10px;
}

table.dataTable tr td button {
	margin: 0 10px;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td:last-child {
	display: flex;
	align-items: center;
}


/*颜色*/


/*紫色*/

.border-purple {
	border: 1px #b66dff solid;
}

.color-purple {
	color: #b66dff;
}

.bg-purple {
	background: #b66dff;
}


/*绿色*/

.border-green {
	border: 1px #1bcfb4 solid;
}

.color-green {
	color: #1bcfb4;
}

.bg-green {
	background: #1bcfb4;
}


/*蓝色*/

.border-blue {
	border: 1px #198ae3 solid;
}

.color-blue {
	color: #198ae3;
}

.bg-blue {
	background: #198ae3;
}
/**layel 自带的按钮颜色*/


.bg-layel {
	background: #1E9FFF;
	color: white;
	border-radius: initial;
}

/*粉色*/

.border-pink {
	border: 1px #fe7c96 solid;
}

.color-pink {
	color: #fe7c96;
}

.bg-pink {
	background: #fe7c96;
}


/*暗灰色*/

.border-dark {
	border: 1px #3e4b5b solid;
}

.color-dark {
	color: #3e4b5b;
}

.bg-dark {
	background: #3e4b5b;
}


/*白色*/

.border-white {
	border: 1px #fff solid;
}

.color-white {
	color: #fff;
}

.bg-white {
	background: #fff;
}


/*浅灰色*/

.border-gray {
	border: 1px #f3f3f3 solid;
}

.color-gray {
	color: #f3f3f3;
}

.bg-gray {
	background: #f3f3f3;
}


/*通用按钮样式*/

button {
	position: relative;
	/* overflow: hidden; */
	background: none;
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 12px;
}


/*圆形波纹*/

button.ripple:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background-image: radial-gradient(circle, #1890ff 10%, transparent 10.01%);
	background-repeat: no-repeat;
	background-position: 50%;
	transform: scale(10, 10);
	opacity: 0;
	transition: transform .3s, opacity .5s;
}

button.ripple:active:after {
	transform: scale(0, 0);
	opacity: .3;
	transition: 0s;
}


/*矩形波纹*/

button.around:after {
	content: "";
	display: block;
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	cursor: pointer;
	border: 10px #ddd solid;
	background-color: none;
	opacity: 0;
	transition: all .5s;
	border-radius: 5px;
	z-index: 0;
}

button.around:active:after {
	opacity: .3;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 0;
	transition: 0s;
}


/*按钮颜色*/


/*紫色按钮*/

.btn-border-purple {
	border: 1px #b66dff solid;
	color: #b66dff;
}

button.btn-border-purple.ripple:after {
	background-image: radial-gradient(circle, #b66dff 10%, transparent 10.01%);
}


/*绿色按钮*/

.btn-border-green {
	border: 1px #1bcfb4 solid;
	color: #1bcfb4;
}

button.btn-border-green.ripple:after {
	background-image: radial-gradient(circle, #1bcfb4 10%, transparent 10.01%);
}


/*蓝色按钮*/

.btn-border-blue {
	border: 1px #198ae3 solid;
    color: #198ae3;
}

button.btn-border-blue.ripple:after {
	background-image: radial-gradient(circle, #198ae3 10%, transparent 10.01%);
}


/*粉色按钮*/

.btn-border-pink {
	border: 1px #fe7c96 solid;
	color: #fe7c96;
}

button.btn-border-pink.ripple:after {
	background-image: radial-gradient(circle, #fe7c96 10%, transparent 10.01%);
}


/*红色按钮*/

.btn-border-red {
	border: 1px #CE0000 solid;
	color: #CE0000;
}

button.btn-border-red.ripple:after {
	background-image: radial-gradient(circle, #CE0000 10%, transparent 10.01%);
}


/*暗灰色按钮*/

.btn-border-dark {
	border: 1px #3e4b5b solid;
	color: #3e4b5b;
}

button.btn-border-dark.ripple:after {
	background-image: radial-gradient(circle, #3e4b5b 10%, transparent 10.01%);
}


/*黄色按钮*/

.btn-border-yellow {
	border: 1px #fed713 solid;
	color: #fed713;
}

button.btn-border-yellow.ripple:after {
	background-image: radial-gradient(circle, #fed713 10%, transparent 10.01%);
}


/******************************************/


/*紫色按钮*/

.btn-bg-purple {
	background-color: #b66dff;
	border: none;
	color: #fff;
}

button.btn-bg-purple.ripple:after {
	background-image: radial-gradient(circle, #b66dff 10%, transparent 10.01%);
}

button.btn-bg-purple.around:after {
	border: 10px #b66dff solid;
}


/*绿色按钮*/

.btn-bg-green {
	background-color: #1bcfb4;
	color: #fff;
	border: 1px #1bcfb4 solid;
}

button.btn-bg-green.ripple:after {
	background-image: radial-gradient(circle, #1bcfb4 10%, transparent 10.01%);
}

button.btn-bg-green.around:after {
	border: 10px #1bcfb4 solid;
}


/*蓝色按钮*/

.btn-bg-blue {
	background-color: #198ae3;
	color: #fff;
	border: 1px #198ae3 solid;
}

button.btn-bg-blue.ripple:after {
	background-image: radial-gradient(circle, #198ae3 10%, transparent 10.01%);
}

button.btn-bg-blue.around:after {
	border: 10px #198ae3 solid;
}


/*粉色按钮*/

.btn-bg-pink {
	background-color: #fe7c96;
	color: #fff;
	border: none;
}

button.btn-bg-pink.ripple:after {
	background-image: radial-gradient(circle, #fe7c96 10%, transparent 10.01%);
}

button.btn-bg-pink.around:after {
	border: 10px #fe7c96 solid;
}


/*暗灰色按钮*/

.btn-bg-dark {
	background-color: #3e4b5b;
	color: #fff;
	border: none;
}

button.btn-bg-dark.ripple:after {
	background-image: radial-gradient(circle, #3e4b5b 10%, transparent 10.01%);
}

button.btn-bg-dark.around:after {
	border: 10px #3e4b5b solid;
}


/*红色按钮*/

.btn-bg-red {
	background-color: #CE0000;
	color: #fff;
	border: none;
}

button.btn-bg-red.ripple:after {
	background-image: radial-gradient(circle, #CE0000 10%, transparent 10.01%);
}

button.btn-bg-red.around:after {
	border: 10px #CE0000 solid;
}


/*黄色按钮*/

.btn-bg-yellow {
	background-color: #fed713;
	color: #fff;
	border: none;
}

button.btn-bg-yellow.ripple:after {
	background-image: radial-gradient(circle, #fed713 10%, transparent 10.01%);
}

button.btn-bg-yellow.around:after {
	border: 10px #fed713 solid;
}


/*输入框*/

input,
select,
textarea {
	width: 150px;
	border: 1px #ddd solid;
	background: #fff;
	border-radius: 5px;
	height: 33px;
	line-height: 33px;
	padding: 0 10px;
	outline: none;
	-webkit-appearance: none;
	margin: 0;
	font-size:12px;
}

input[type=checkbox] {
	width: auto;
	border: none;
	background: #fff;
	border-radius: 0;
	height: auto;
	outline: none;
	-webkit-appearance: checkbox;
	margin: 0;
}

input[type=radio] {
	width: auto;
	border: none;
	background: #fff;
	border-radius: 0;
	height: auto;
	outline: none;
	-webkit-appearance: radio;
	margin: 0;
}

input[type=date]::-webkit-inner-spin-button {
	visibility: hidden;
}

input[type=date]::-webkit-datetime-edit-year-field {
	color: #0073B7;
}

input[type=date]::-webkit-datetime-edit-month-field {
	color: #0073B7;
}

input[type=date]::-webkit-datetime-edit-day-field {
	color: #0073B7;
}

.input-noborder {
	border: none;
	background: none;
}

.input-width {
	width: auto !important;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    color: #fff !important;
}
/*修改select2样式*/

.select2-container--default .select2-selection--single {
	border: 1px #ddd solid;
}

.select2-container .select2-selection--single {
	height: 33px;
	line-height: 33px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 33px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 31px;
}

.select2-container {
	margin: 5px;
}


/*修改dataTable样式*/

select.input-sm {
	line-height: 20px;
}

div.dataTables_wrapper div.dataTables_processing {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	padding-top: 10px;
	border-radius: 20px;
	background: rgba(0, 0, 0, 0.4);
	text-align: center;
	text-align: center;
	font-size: 16px;
	color: #fff;
}


/*弹窗以及提示窗样式*/


/*提示框*/

#prompt {
	position: fixed;
    width: 110px;
    height: 37px;
    border-radius: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999999999;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

#prompt #close {
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	top: 0;
	right: 0;
	cursor: pointer;
}


/*确认框*/

#confirm-modal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: rgba(0, 0, 0, 0.3);
	z-index: 9999;
}

#confirm-modal .mian {
	position: absolute;
	min-width: 300px;
	width: 20%;
	height: 200px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
	border-radius: 3px;
}

#confirm-modal .mian .title {
	padding: 0 10px;
	height: 42px;
	line-height: 42px;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	background-color: #F8F8F8;
	border-radius: 2px 2px 0 0;
}

#confirm-modal .mian .title .btn-cancel {
	width: 30px;
	font-size: 23px;
	text-align: center;
	cursor: pointer;
}

#confirm-modal .mian .content {
	padding: 10px 0;
}

#confirm-modal .mian .content.prompt {
	padding-top: 40px;
	text-align: center;
}

#confirm-modal .mian .action-btn {
	position: absolute;
	width: 100%;
	height: 60px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#confirm-modal .mian .action-btn.end {
	padding-right: 5%;
}

#confirm-modal .mian .action-btn button {
	height: 28px;
	line-height: 28px;
	margin: 5px 5px 0;
	padding: 0 15px;
	border: 1px solid #dedede;
	background-color: #fff;
	color: #333;
	border-radius: 2px;
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
}

#confirm-modal .mian .action-btn button.btn-ok {
	border-color: #1E9FFF;
	background-color: #1E9FFF;
	color: #fff;
}


/*表单弹窗*/

#confirm-modal .mian .content .form-modal {
	width: 100%;
	padding: 10px;
}

#confirm-modal .mian .content .form-modal .group {
	min-height: 40px;
	margin-bottom: 8px;
}

#confirm-modal .mian .content .form-modal .group label {
	text-align: left;
	min-width: 120px;
	width: 30%;
	padding-left: 10%;
}

#confirm-modal .mian .content .form-modal .group input {
	min-width: 150;
	width: 50%;
}

#confirm-modal .mian .content .form-modal .group select {
	min-width: 150;
	width: 50%;
}

#confirm-modal .mian .content .form-modal .group textarea {
	min-width: 150;
	width: 50%;
	min-height: 100px;
	line-height: 20px;
}

.error {
	color: #FFAE1A;
}

.succes {
	color: #08C160;
}

.padding-5 {
	padding: 5px;
}


/*通用form表单样式*/

.page-form {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	padding: 10px;
}

.page-form .group {
	min-height: 40px;
	margin-bottom: 8px;
}

.page-form .group label {
	text-align: left;
	min-width: 120px;
	width: 30%;
	padding-left: 10%;
}

.page-form .group input {
	min-width: 150;
	width: 50%;
}

.page-form .group select {
	min-width: 150;
	width: 50%;
}

.page-form .group textarea {
	min-width: 150;
	width: 50%;
	min-height: 100px;
	line-height: 35px;
}


/*地区选择器*/

.distpicker select {
	-webkit-appearance: menulist;
}


/*按钮样式*/

.btn-display {
	display: -webkit-inline-box;
	display: initial;
	display: inline-block;
}


/*layel 弹出表格样式*/

.layer-div {
	height: 100%;
	width: 100%;
}

.layer-content {
	height: 90%;
	OVERFLOW-Y: auto;
	OVERFLOW-X: hidden;
}

.layer-footer {
	height: 10%;
}


/*select2*/

.select2-container--open .select2-dropdown {
	left: -5px;
}


/*隐藏*/

.hidden {
	display: none;
}


/*列表样式*/

.listGrid {
	width: 90%;
	margin: 10px;
}

.listGrid .list-title {
	height: 40px;
	background: #f3f3f3;
}

.listGrid .list-title p {
	text-align: center;
}

.listGrid ul {
	width: 100%;
}

.listGrid ul li {
	height: 40px;
	cursor: pointer;
	border-bottom: 1px #f3f3f3 solid;
}
/* .listGrid ul li:nth-child(2n) {
	background-color: #f3f3f3;
} */
.listGrid ul li:hover {
	background: rgba(37, 124, 167, 0.1);
}
/* .listGrid ul li.active {
	background: rgba(37, 124, 167, 0.1);
} */

.listGrid ul li p {
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.listGrid ul li p img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.form-horizontal {
	padding-top: 10px;
}

.span-padding {
	padding: 10px;
}

.no-border {
	border: none;
}

.tr-active {
	background-color: #46B8DA;
}

.container {
	padding-right: 0px;
	padding-left: 0px;
	margin-right: initial;
	margin-left: initial;
}

.content-header>h3>small {
	font-size: 15px;
	display: inline-block;
	padding-left: 4px;
	font-weight: 300;
}

.main-content {
	padding: 10px;
	padding-top: 5px;
	height: 100%;
}

.main-content-div {
	background: #FFFFFF;
	height: 100%;
}
.dataTable {
	height: 83%;
}
.table-responsive {
	height: 90%;
    overflow-y:scroll;
}

.pagination {
	margin: 5px 0px 5px 0px;
}
{
	
}
.menu_list_div{
	overflow: hidden;
}
#menu_list{
	display: block;
	overflow-y: auto;
	overflow-x: hidden;
    border: none;
}
[data-funcname]{
	display: none;
}
[data-funcname].show{
	display: block;
}
.remove-self{
	position: relative;
	margin: 5px;
	border:none;
}
.remove-self:after{
	position: absolute;
	content: "x";
	display: block;
	min-width: 10px;
	min-height: 10px;
	background: #fff;
	z-index: 10;
	color: red;
	top:-5px;
	right:-5px;
	font-size: 10px;
}
.font-red{
	color: red;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td.dataTables_empty{
	display: table-cell;
}
/*导航展示条*/
.title-bar {
    height: 40px;
    background: #fff;
    padding-left: 10px;
    border-bottom: 1px #f3f3f3 solid;
}
.title-bar p {
    line-height: 14px;
    font-size: 13px;
}
.title-bar p:first-child {
    line-height: 14px;
    padding-left: 5px;
    border-left: 2px #0073b7 solid;
    font-size: 13px;
}
.title-bar span{
	display: inline;
	margin: 0px 5px;
}

/* 分页*/
#pagenum{
		padding-top: 20px;
		display: inline-block;
		font-size: 12px;
}
.dataTable {
	height: auto;
    max-height: 83%;
}
table tr td, table tr th{
	font-size: 12px!important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	}
	table.dataTable tr td button{
		margin: 0px 5px!important;
	}
	
	
a:link {text-decoration: none;} 

a:visited{text-decoration: none;} 

a:active{text-decoration: none;} 

a:hover{text-decoration: none;} 

.help-btn {
	font-size: 18px;
	color: red;
	font-weight: 650;
	margin:4px;
}
/*进度条样式*/
.progress {
	display: inline-block;
    margin-top: 4px;
    width: 200px;
    height: 14px;
    margin-bottom: 3px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.progress-bar {
    background-color: rgb(92, 184, 92);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.14902) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.14902) 50%, rgba(255, 255, 255, 0.14902) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    box-shadow: rgba(0, 0, 0, 0.14902) 0px -1px 0px 0px inset;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    display: block;
    float: left;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    transition-delay: 0s;
    transition-duration: 0.6s;
    transition-property: width;
    transition-timing-function: ease;
    width: 266.188px;
}
#ossfile b {
	display: inline-block;
	position:relative;
	text-align:center; 
	top:-5px;
	left:5px; 
}
