﻿@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*简单样式重置*/
html,body,div,a,ul,li,h4,h5,h6,pre,p,i,span,img,input,select,form,label,iframe,button {margin: 0;padding: 0;font-family: "Microsoft YaHei";}
a{text-decoration: none;color: #323232;}
a:hover { text-decoration: none !important;}
ul, li {list-style: none;}
table {border-collapse: collapse;}
img {border: 0;}
input, button {outline-style: none;}
input,textarea{outline: none;}
textarea:focus{border: 1px solid rgba(18,126,236,0.8)}
input:focus{border: 1px solid rgba(18,126,236,0.8)}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
	color: #b0b0b0;
}
textarea{resize:none}

/*公共类样式*/
.clearfloat:after {display: block;clear: both;content: "";visibility: hidden;height: 0;}
.clearfloat {zoom: 1;}
.hide_1{display: none!important;}
.show_1{display: block}
.userDefinedRow {
	width: 100%;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
}
[class*=Rowcol-] {float: left;padding:0.1rem  0.2rem;box-sizing: border-box;}
.Rowcol-8 {width: 33.33333%;}
.Rowcol-6 {width: 25%;}
.Rowcol-18{width: 75%;}

.m-t_20{margin-top: 20px;}
.m-t_10{margin-top: 10px;}
/*超出省略*/
.beyond_ellipsis {text-overflow: ellipsis;overflow: hidden;white-space: nowrap}
.fl {float: left;}
.fr {float: right;}

/*淡入淡出*/
.fadeShow {
	animation: fadeshow 2s both;
	-ms-animation: fadeshow 2s both;
	/* IE 9 */
	-moz-animation: fadeshow 2s both;
	/* Firefox */
	-webkit-animation: fadeshow 2s both;
	/* Safari 和 Chrome */
	-o-animation: fadeshow 2s both;
	/* Opera */
}

@keyframes fadeshow {
	from {
		opacity: 0;
	}
	to {

		opacity: 1;
	}
}

@-webkit-keyframes fadeshow {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*淡入淡出 ---------end*/
/*  从小 到 正常 显示   */
@keyframes scale_xToz {
	0% {
		transform: scale(0.9);
		-ms-transform: scale(0.9);
		/* IE 9 */
		-moz-transform: scale(0.9);
		/* Firefox */
		-webkit-transform: scale(0.9);
		/* Safari 和 Chrome */
		-o-transform: scale(0.9);
		/* Opera */
		opacity: 0;
	}
	100% {
		transform: scale(1);
		-ms-transform: scale(1);
		/* IE 9 */
		-moz-transform: scale(1);
		/* Firefox */
		-webkit-transform: scale(1);
		/* Safari 和 Chrome */
		-o-transform: scale(1);
		/* Opera */
		opacity: 1;
	}
}

@-webkit-keyframes scale_xToz {
	0% {
		transform: scale(0.9);
		-webkit-transform: scale(0.9);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
		opacity: 1;
	}
}

@-ms-keyframes scale_xToz {
	0% {
		transform: scale(0.9);
		-ms-transform: scale(0.9);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		-ms-transform: scale(1);
		opacity: 1;
	}
}

@-moz-keyframes scale_xToz {
	0% {
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		-moz-transform: scale(1);
		opacity: 1;
	}
}

@-o-keyframes scale_xToz {
	0% {
		transform: scale(0.9);
		-o-transform: scale(0.9);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		-o-transform: scale(1);
		opacity: 1;
	}
}


.scale_xToz {
	animation: scale_xToz 1s both;
	-ms-animation: scale_xToz 1s both;
	/* IE 9 */
	-moz-animation: scale_xToz 1s both;
	/* Firefox */
	-webkit-animation: scale_xToz 1s both;
	/* Safari 和 Chrome */
	-o-animation: scale_xToz 1s both;
	/* Opera */
}

/*  从小 到 正常 显示 -----------end  */

/* 下移 0px */
@keyframes moveup_20 {
	0% {
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
		-moz-transform: translateY(20px);
		-o-transform: translateY(20px);
		-ms-transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		opacity: 1;
	}
}
.moveup_20 {
	animation: moveup_20 1s both;
	-ms-animation: moveup_20 1s both;
	/* IE 9 */
	-moz-animation: moveup_20 1s both;
	/* Firefox */
	-webkit-animation: moveup_20 1s both;
	/* Safari 和 Chrome */
	-o-animation: moveup_20 1s both;
	/* Opera */
}

/* 上移 5px */
.moveUp {
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
	-ms-transition: All 0.4s ease-in-out;
	cursor: pointer;
}
.moveUp:hover {
	transform: translateY(-5px);
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
}

/*滚动条*/
._scroll_{width: 100%;height: 100%;}
.table_1 .mCustomScrollBox {padding:0; }
.table_1 .mCSB_container{}
.mCSB_container{
	width:auto;
	margin-right:0;
}
.mCSB_container.mCS_no_scrollbar{
	margin-right:0;
}
.mCS_disabled>.mCustomScrollBox>.mCSB_container.mCS_no_scrollbar,
.mCS_destroyed>.mCustomScrollBox>.mCSB_container.mCS_no_scrollbar{
	margin-right:0;
}
.mCustomScrollBox>.mCSB_scrollTools{
	width:5px;
	height:100%;
	top:0;
	right:0;
}
.mCSB_scrollTools .mCSB_draggerContainer{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	height:auto;
}
.mCSB_scrollTools .mCSB_draggerRail{
	width:2px;
	height:100%;
	margin:0 auto;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	padding: 2px 0;
}
.mCSB_scrollTools .mCSB_dragger{
	cursor:pointer;
	width:100%;
	height:40px;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:5px;
	height:100%;
	margin:0 auto;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	text-align:center;
	vertical-align:middle;
}
.mCS-dark>.mCSB_scrollTools .mCSB_draggerRail{

	background-color:#d5d5d5;
	width:8px;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
}
.mCS-dark>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background-color:#718ca8;
}


/*样式公用库*/

button,a{cursor: pointer;}
.show{display: block}
.hide{display: none}
.click_switcher{cursor: pointer}
.click_switcher_box_active{display: block}
.position_relative{position: relative}
.box_center{position: absolute;left: 0;right: 0;top: 0;bottom: 0;display: block;margin: auto}
.bnt_1{background-color: #398bf7;color: white;height: 40px;line-height: 40px;text-align: center;border: none;border-radius: 5px;padding: 0 20px;}
.bnt_2{background-color: white;color: #666666;height: 40px;line-height: 40px;text-align: center;border: 1px solid #d9d9d9;border-radius: 5px;padding: 0 20px;}
.bnt_1:hover{background-color: #70abf9;}
/*.bnt_1_a{background-color: #70abf9;}*/
.bnt_2:hover{color: #398bf7;border: 1px solid #398bf7;}
/*.bnt_2_a{color: #398bf7;border: 1px solid #398bf7;}*/

.bnt_3{overflow: hidden;background-color: white;color: #398bf7;height: 35px;line-height:35px;text-align: center;border: 1px solid #398bf7;border-radius: 5px;padding: 0 20px;}
.bnt_3:hover{background-color: #398bf7;color: white}
.input_1{height: 35px;border: 1px solid #d8d8d8;text-indent: 10px;font-size: 14px;border-radius: 5px;min-width: 200px;color: #333333}
.box-shadow-1{
	-webkit-box-shadow:0 0 15px 5px #d8d8d9;
	-moz-box-shadow:0 0 15px 5px #d8d8d9;
	box-shadow:0 0 15px 5px #d8d8d9;
}

.border_no{border: none!important;}
.bottom_b_no{border-bottom: none!important;}


/*复选框*/
input[type="checkbox"]{width: 15px;height: 15px;position: relative;text-align: center;cursor: pointer;outline: none !important;border: none;}
input[type="checkbox"]::before{content: "";position: absolute;top: 0;left: 0;background: #fff;width: 100%;height: 100%;border: 1px solid #d9d9d9;border-radius: 2px;}
input[type="checkbox"]:checked::before{content: "\2713";border: 1px solid #2684e6;background-color: #2684e6;position: absolute;left: 0;width:100%;font-weight: bold;color:#fff !important; }

/*单选*/
input[type="radio"] + label::before {
    content: "\a0"; /*不换行空格*/
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    width: 13px;
    height: 13px;
    margin-right: .4em;
    border-radius: 50%;
    border: 1px solid #2281f3;
    text-indent: .15em;
    line-height: 1;
}
input[type="radio"]:checked + label::before {
    background-color: #2281f3;
    background-clip: content-box;
    padding: .2em;
	width: 8px;
    height: 8px;
}
input[type="radio"] {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 16px;
    cursor: pointer;
    opacity: 0;
}

/*下拉选择*/
.select_box{
	position: relative;
}
.select_box select{
	appearance: none;
	-ms-appearance: none;
	/* IE 9 */
	-moz-appearance: none;
	/* Firefox */
	-webkit-appearance: none;
	/* Safari 和 Chrome */
	-o-appearance: none;
	width: 100%;
}
.select_box select option{
	padding: 2px 10px;
}
.select_box::after{
	position: absolute;
	content: '';
	width: 4px;
	height: 4px;
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: #444444;
	right: 1.5em;
	-webkit-transform: rotate(-135deg) translate(0, -50%);
	-moz-transform: rotate(-135deg) translate(0, -50%);
	-ms-transform: rotate(-135deg) translate(0, -50%);
	-o-transform: rotate(-135deg) translate(0, -50%);
	transform: rotate(-135deg) translate(0, -50%);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	-moz-transform-origin: top;
	-o-transform-origin: top;
	transform-origin: top;
	top: 47%;
	-ms-transition: all .3s ease-out;
	/* IE 9 */
	-moz-transition: all .3s ease-out;
	/* Firefox */
	-webkit-transition: all .3s ease-out;
	/* Safari 和 Chrome */
	-o-transition: all .3s ease-out;

	transition: all .3s ease-out;
}
.select_box_active::after {
	-webkit-transform: rotate(135deg) translate(0, -50%);
	-ms-transform: rotate(135deg) translate(0, -50%);
	-moz-transform: rotate(135deg) translate(0, -50%);
	-o-transform: rotate(135deg) translate(0, -50%);
	top: 45%;
	width: 7px;
	border-color: white;
	transform: rotate(135deg) translate(0, -50%);
}

/*右边三角形*/
.triangle::after{
	position: absolute;
	content: '';
	width: 7px;
	height: 7px;
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: #333333;
	right: 15px;
	-webkit-transform: rotate(135deg) translate(0, -50%);
	-ms-transform: rotate(135deg) translate(0, -50%);
	-moz-transform: rotate(135deg) translate(0, -50%);
	-o-transform: rotate(135deg) translate(0, -50%);
	transform: rotate(135deg) translate(0, -50%);
	-moz-transform-origin: top;
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	-o-transform-origin: top;
	transform-origin: top;
	top: 47%;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.triangle_active::after {
	-webkit-transform: rotate(-135deg) translate(0, -50%);
	-moz-transform: rotate(-135deg) translate(0, -50%);
	-ms-transform: rotate(-135deg) translate(0, -50%);
	-o-transform: rotate(-135deg) translate(0, -50%);
	top: 45%;
	width: 7px;
	/*border-color: white;*/
	transform: rotate(-135deg) translate(0, -50%);
}

.no_after::after{display: none}

/*修改滚动条样式*/
/*滚动条整体部分*/
.scroll_box::-webkit-scrollbar {
	width: 10px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 10px;
}

._scroll_box {
	/* margin-right: 10px; */
}
/*滚动条的轨道（里面装有Thumb）*/
.scroll_box::-webkit-scrollbar-track {}

/*滚动条里面的小方块，能向上向下移动（或向左向右移动）*/

.scroll_box::-webkit-scrollbar-thumb {
	-webkit-box-shadow: inset 0 0 7px #e3e3e3;;
	border-radius:5px;
	background: #e3e3e3;
}

/*滚动条的轨道的两端按钮，由于通过点击微调小方块的位置。*/
.scroll_box::-webkit-scrollbar-button {}
/*内层轨道，滚动条中间部分*/
.scroll_box::-webkit-scrollbar-track-piece {}
/*边角，即垂直滚动条和水平滚动条相交的地方*/
.scroll_box::-webkit-scrollbar-corner {}
/*两个滚动条的交汇处上用于拖动调整元素大小的小控件*/
.scroll_box::-webkit-resizer {
	/*-webkit-box-shadow: inset 0 0 5px rgba(123, 178, 218, 0.9);*/
	-webkit-box-shadow: inset 0 0 5px #e3e3e3;
	border-radius: 0;
	background: #e3e3e3;
}

/***************** dialog   *********************/
.dialog-box {
	background-color: #333333;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    -moz-opacity: 0.8;
    opacity: .3;
    height: 100%;
    width: 100%;
    min-width: 1640px;
}

.dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%) translateY(-50%);
    background: rgba(255,255,255,1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.23);
    border-radius: 5px;
}

.dialog-header {
    padding: 0 13px 0 18px;
    height: 40px;
    background-color: #2684E6;
    border-radius: 5px 5px 0 0;
}

.dialog-header span {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 40px;
}

.dialog-header .dislog-header-close {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    cursor: pointer;
    position: relative;
	top: 13px;
	float: right;
}

.dialog-header .dislog-header-close:hover {
	opacity: .7;
}

.dialog-content {
    padding: 22px;
}

.page-table {
    width: 100%;
    overflow-y: auto;
}

.page-table thead {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #CAE1F9;
    border-radius: 3px;
    text-align: left;
    font-size: 16px;
    font-weight: 100;
    color: #333333;
}

.page-table thead tr th {
	font-weight: 400;
}

.page-table tbody {
    color: #193648;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.page-table tbody tr {
    background-color: #ffffff;
    border-bottom: 1px solid #E9EAEB;
}
.page-table tbody td {
    height: 50px;
    display: table-cell;
    vertical-align: middle;
}

.page-table tbody tr:last-child {
    border-bottom: 0;
}

.page-table .confirmed-td {
    color: #159321;
}

.page-table .operation-td span {
    color: #2684E6;
    cursor: pointer;
    margin-right: 10px;
}

.page-table .operation-td span:hover {
    color: #0F6DCE;
    border-bottom: 1px solid #0F6DCE;
}

/*滚动条*/
._scroll_box::-webkit-scrollbar {
    width: 8px;
    background: #E5E5E5;        
}
._scroll_box::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background:#ffffff;
    border: 1px solid #E5E5E5;
}

.m-r-10 {
	margin-right: 10px !important;
}

.m-r-30 {
	margin-right: 30px !important;
}

.m-l-10 {
	margin-left: 10px !important;
}

select::-ms-expand { 
	display: block;
	border: none;
	background-color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"]{
  -moz-appearance: textfield;
}

/*蓝底按钮样式*/
.divButton {
    display: inline-block;
    cursor: pointer;
    background: #2684E6;
    padding: 1px 8px;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
    line-height: 24px;
    height: 24px;
}

.divButton a {
    color: #fff;
}

.divButton a:hover {
    color: #fff;
}

/*蓝底按钮样式*/
