.red {
	color: #EF3232 !important;
}
.blue {
	color: #12447F !important;
}
.orange {
	color: #F16F35 !important;
}
.mouse_btn {
	cursor: pointer;
}
.thumb {
	width: 40px;
}
.trd-200 {
	width: 200px;
	max-width: 200px;
	white-space: normal;
}
.hr {
	width: 100%;
	height: 1px;
	position: relative;
	margin: 10px 0;
	background-color: #ddd;
}
table {
	white-space: nowrap;
}
.table-lab {
	display: inline-block;
	padding: 0 6px;
	line-height: 20px;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 400;
	color: #fff !important;
}
.table-lab.orange {
	background-color: #f16f35;
}
.table-lab.green {
	background-color: #80C269;
}
.table-lab.blue {
	background-color: #4CA3E5;
}
.table-lab.red {
	background-color: #EF3232;
}
.t-toolsbox {
	width: 100%;
	background-color: #fff;
	margin-bottom: 10px;
}
.t-toolsbox .tabox {
	width: 100%;
	border-bottom: 1px solid #ddd;
}
.t-toolsbox .tabox .tab {
	display: inline-block;
	line-height: 50px;
	padding: 0 15px;
	border-bottom: 2px solid #fff;
	font-size: 14px;
	font-weight: 400;
	color: #000;
	white-space: nowrap;
}
.t-toolsbox .tabox .tab.on {
	border-bottom: 2px solid #12447F;
	color: #12447F;
}
.t-toolsbox .filterbox {
	width: 100%;
	padding: 10px;
	background-color: #fff;
	margin-bottom: 0;
}

.contentbox {
	width: 100%;
}
.contentbox .leftcon {
	width: 325px;
	border: 1px solid #bec4cd;
	background-color: #fff;
	margin-right: 10px;
}
.contentbox .leftcon .toptit {
	width: 100%;
	padding: 16px 20px;
	border-bottom: 1px solid #bec4cd;
}
.contentbox .leftcon .toptit a {
	font-size: 14px;
	font-weight: 400;
	color: #12447f;
}
.contentbox .leftcon .hdbox {
	width: 100%;
}
.contentbox .leftcon .hdbox .item {
	width: 50%;
	line-height: 54px;
	border-bottom: 1px solid #bec4cd;
	border-right: 1px solid #bec4cd;
	background-color: #EDF1F7;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 400;
	color: #999;
}
.contentbox .leftcon .hdbox .item:last-of-type {
	border-right: 0;
}
.contentbox .leftcon .bdbox {
	width: 102%;
	height: 655px;
	overflow-y: scroll;
}
.contentbox .leftcon .bdbox .group {
	width: 100%;
}
.contentbox .leftcon .bdbox .group .itembox {
	width: 100%;
}
.contentbox .leftcon .bdbox .group .itembox .item {
	width: 50%;
	line-height: 54px;
	border-bottom: 1px solid #bec4cd;
	border-right: 1px solid #bec4cd;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 400;
	color: #000;
}
.contentbox .leftcon .bdbox .group .itembox .item:last-of-type {
	border-right: 0;
}
.contentbox .leftcon .bdbox .group .item.c-tit {
	padding-left: 20px;
}
.contentbox .leftcon .bdbox .group .item .icon {
	font-size: 14px;
	color: #12447f;
	margin-right: 10px;
}
.contentbox .leftcon .bdbox .group .item a {
	font-size: 14px;
	color: #12447f;
}
.contentbox .leftcon .bdbox .group .item .icon:hover, 
.contentbox .leftcon .bdbox .group .item a:hover {
	opacity: 0.9;
}
.contentbox .rightcon {
	border: 1px solid #bec4cd;
	background-color: #fff;
	padding-bottom: 15px;
}
.contentbox .rightcon .toptools {
	width: 100%;
	height: 45px;
	padding: 0 15px;
}
.contentbox .rightcon .toptools .icon {
	font-size: 16px;
	font-weight: 400;
	color: #12447f;
	margin-right: 20px;
}
.contentbox .rightcon .tablebox {
	margin-left: -1px;
	margin-right: -1px;
	overflow-x: auto;
}
.contentbox .rightcon .tablebox table {
	white-space: nowrap;
}


/*弹窗样式 开始*/
.newModalbox {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	overflow: hidden;
	transform: scale(0, 0);
}
.newModalbox.show {
	transform: scale(1, 1);
}
.newModalbox .mask {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.5);
}
.newModalbox .modals {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 101;
}
.newModalbox .modals .modalbox {
	/*min-width: 425px;
	max-width: 1200px;*/
	width: 1200px;
	position: relative;
	z-index: 101;
	transform: scale(0, 0);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}
.newModalbox.show .modals .modalbox {
	transform: scale(1, 1);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}
.newModalbox .modals .modalbox .modal-top {
	width: 100%;
	height: 52px;
	background-color: #EDF1F7;
	padding: 0 15px;
}
.newModalbox .modals .modalbox .modal-top .titbox {
	font-size: 18px;
	font-weight: 400;
	color: #000;
}
.newModalbox .modals .modalbox .modal-top .close {
	width: 26px;
	line-height: 26px;
	display: inline-block;
	position: relative;
}
.newModalbox .modals .modalbox .modal-top .close .icon {
	font-size: 20px;
	color: #000;
}

.newModalbox .modals .modalbox .modal-con {
	width: 100%;
	min-height: 160px;
	max-height: 560px;
	position: relative;
	overflow: auto;
	padding: 20px;
	background-color: #fff;
}
.newModalbox .modals .modalbox .modal-con .leftcon {
	width: 800px;
}
.newModalbox .modals .modalbox .modal-con .group {
	margin-right: 10px;
}
.newModalbox .modals .modalbox .modal-con .label {
	width: 100px;
	line-height: 34px;
	background-color: #edf1f7;
	border: 1px solid #bec4cd;
	border-right: 0;
	padding: 0 10px;
}
.newModalbox .modals .modalbox .modal-con .inp,
.newModalbox .modals .modalbox .modal-con .sel {
	border-radius: 0;
}
.newModalbox .modals .modalbox .modal-con .inp input {
	width: 247px;
	font-size: 14px;
	font-weight: 400;
	color: #333;
}
.newModalbox .modals .modalbox .modal-con .sel select,
.newModalbox .modals .modalbox .modal-con .sel input {
	width: 287px !important;
	font-size: 14px;
	font-weight: 400;
	color: #333;
}
.newModalbox .modals .modalbox .filter-sm .inp input {
	width: 120px !important;
}
.newModalbox .modals .modalbox .filter-sm .sel select {
	width: 150px;
}
.newModalbox .modals .modalbox .modal-con .group-lg {
	width: 788px;
	margin-bottom: 20px
}
.newModalbox .modals .modalbox .modal-con .group-lg .label {
	line-height: 32px;
	display: inline-block;
}
.newModalbox .modals .modalbox .modal-con .group-lg .inp-lg {
	padding: 0 10px;
	height: 34px;
	border: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .modal-con .group-lg .group-c {
	margin-right: 20px;
}
.newModalbox .modals .modalbox .modal-con .group-lg .group-c .label-sm {
	width: 86px;
	line-height: 26px;
	display: inline-block;
	background-color: #edf1f7;
	border: 1px solid #bec4cd;
	border-right: 0;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 400;
	color: #999;
}
.newModalbox .modals .modalbox .modal-con .group-lg .group-c .sel-sm {
	width: 82px;
	height: 28px;
}
.newModalbox .modals .modalbox .modal-con .group-lg .group-c .sel-sm input {
	width: 82px !important;
	height: 28px;
	border-radius: 0;
}
.newModalbox .modals .modalbox .modal-con .group-lg .group-c .sel-sm select {
	font-size: 14px;
	font-weight: 400;
	color: #999;
}
.newModalbox .modals .modalbox .modal-con .group-lg .group-c .txt {
	font-size: 14px;
	font-weight: 400;
	color: #12447f;
}
.newModalbox .modals .modalbox .modal-con .group-lg .group-c .sminp input {
	width: 53px;
	height: 22px;
	border: 1px solid #bec4cd;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	color: #333;
	margin: 0 6px;
}
.newModalbox .modals .modalbox .modal-con .group-lg .inp-lg .input {
	width: 100%;
}
.newModalbox .modals .modalbox .modal-con .group-lg .tip {
	width: 100%;
	padding-left: 110px;
	font-size: 14px;
	font-weight: 400;
	color: #000;
}
.newModalbox .modals .modalbox .modal-con .group-lg .tip .unit {
	color: #F16F35;
}

.newModalbox .modals .modalbox .rightcon {
	width: 340px;
	text-align: center;
}
.newModalbox .modals .modalbox .rightcon .imgbox {
	width: 190px;
	display: inline-block;
	border: 1px dashed #bec4cd;
}
.newModalbox .modals .modalbox .rightcon .imgbox .previewbox {
	width: 186px;
	height: 186px;
	font-size: 0;
	line-height: 0;
	border-bottom: 1px dashed #bec4cd;
}
.newModalbox .modals .modalbox .rightcon .imgbox .previewbox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.newModalbox .modals .modalbox .rightcon .imgbox .btnbox {
	width: 100%;
	padding: 6px 0;
	text-align: center;
}
.newModalbox .modals .modalbox .formmiddle {
	width: 100%;
	margin-bottom: 20px;
}
.newModalbox .modals .modalbox .textareabox {
	width: 372px;
	border: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .textareabox .tit {
	width: 370px !important;
	line-height: 36px;
	background-color: #edf1f7;
	border-bottom: 1px solid #bec4cd;
	padding: 0 10px;
	font-size: 12px;
	font-weight: 400;
	color: #999;
}
.newModalbox .modals .modalbox .textareabox .textarea {
	width: 100%;
	height: 120px;
	padding: 10px;
}
.newModalbox .modals .modalbox .textareabox .textarea textarea {
	width: 100%;
	height: 100%;
	font-size: 12px;
	font-weight: 400;
	color: #999;
}
.newModalbox .modals .modalbox .formdown {
	width: 100%;
	padding: 10px;
	border: 1px solid #bec4cd;
	margin-bottom: 20px;
}
.newModalbox .modals .modalbox .formdown .tit {
	margin-bottom: 10px;
}
.newModalbox .modals .modalbox .formdown .layui-form .label {
	width: 110px !important;
	font-size: 14px;
	font-weight: 400;
	color: #999;
}
.newModalbox .modals .modalbox .layui-form .group {
	margin-bottom: 0;
}
.newModalbox .modals .modalbox .layui-form .layui-form-switch {
	margin-top: 0;
	height: 24px;
	line-height: 22px;
	width: 65px;
	border-color: #BEC4CD;
	background-color: #EDF1F7;
}
.newModalbox .modals .modalbox .layui-form .layui-form-switch i {
	background-color: #fff;
}
.newModalbox .modals .modalbox .layui-form .layui-form-onswitch {
	border-color: #12447F;
	background-color: #12447F;
}
.newModalbox .modals .modalbox .formbtn {
	width: 100%;
	text-align: center;
}
.newModalbox .modals .modalbox .formbtn .btn {
	margin: 0 5px;
}
.newModalbox .modals .modalbox .loadimgbox {
	width: 190px;
	display: inline-block;
	border: 1px dashed #bec4cd;
}
.newModalbox .modals .modalbox .loadimgbox .previewbox {
	width: 186px;
	height: 186px;
	font-size: 0;
	line-height: 0;
	border-bottom: 1px dashed #bec4cd;
}
.newModalbox .modals .modalbox .loadimgbox .previewbox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.newModalbox .modals .modalbox .loadimgbox .btnbox {
	width: 100%;
	padding: 6px 0;
	text-align: center;
}
.newModalbox .modals .modalbox .tab-inp {
	width: 116px;
	height: 30px;
	background-color: #ffffff;
	border: 1px solid #707070;
	padding: 0 5px;
	font-size: 14px;
	font-weight: 400;
	color: #333;
}
.newModalbox .modals .modalbox .tab-text {
	width: 257px;
	height: 45px;
	background-color: #ffffff;
	border: 1px solid #707070;
	padding: 0 5px;
	font-size: 14px;
	font-weight: 400;
	color: #333;
}
.newModalbox .modals .modalbox .toptools {
	width: 100%;
	padding-bottom: 10px;
	margin-top: -10px;
}
.newModalbox .modals .modalbox .toptools .icon {
	font-size: 14px;
	color: #12447F;
	margin-right: 20px;
}
.newModalbox .modals .modalbox .tipbox {
	width: 100%;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 400;
	color: #ef3232;
}
.newModalbox .modals .modalbox .formbox .group .inpbtn {
	position: absolute;
    right: 10px;
}
.newModalbox .modals .modalbox .table1 {
	height: 380px;
	overflow-y: auto;
}
.newModalbox .modals .modalbox .table1 .infobox .avatar {
	width: 45px;
	height: 45px;
	line-height: 0;
	font-size: 0;
}
.newModalbox .modals .modalbox .table1 .infobox .avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.newModalbox .modals .modalbox .table1 .infobox .txt {
	font-size: 14px;
	font-weight: 400;
	color: #000;
}
.newModalbox .modals .modalbox .table1 .infobox .small {
	font-size: 12px;
	font-weight: 400;
	color: #999;
	margin-right: 30px;
}
.newModalbox .modals .modalbox .table2 {
	width: 200px;
	height: 380px;
	overflow-y: auto;
}
.newModalbox .modals .modalbox .table2 .hdbox .item {
	width: 100%;
	line-height: 54px;
	border: 1px solid #bec4cd;
	background-color: #EDF1F7;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 400;
	color: #999;
}
.newModalbox .modals .modalbox .table2 .bdbox {
	width: 100%;
}
.newModalbox .modals .modalbox .table2 .bdbox .group {
	width: 100%;
}
.newModalbox .modals .modalbox .table2 .bdbox .group .itembox {
	width: 100%;
}
.newModalbox .modals .modalbox .table2 .bdbox .group .itembox .item {
	width: 100%;
	line-height: 54px;
	border: 1px solid #bec4cd;
	border-top: 0;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 400;
	color: #000;
}
.newModalbox .modals .modalbox .table3 {
	width: 220px;
	height: 380px;
	overflow-y: auto;
	border: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table3 .hdbox {
	width: 100%;
	line-height: 44px;
	background-color: #edf1f7;
}
.newModalbox .modals .modalbox .table3 .hdbox .item {
	width: 100%;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 400;
	color: #999;
	border-bottom: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table3 .hdbox .item a {
	font-size: 14px;
	font-weight: 400;
	color: #2c9ef7;
}
.newModalbox .modals .modalbox .table3 .bdbox {
	width: 100%;
}
.newModalbox .modals .modalbox .table3 .bdbox .group {
	width: 100%;
}
.newModalbox .modals .modalbox .table3 .bdbox .group.on {
	background-color: #D5E4FD;
}
.newModalbox .modals .modalbox .table3 .bdbox .item {
	width: 100%;
	padding: 20px 10px;
	border-bottom: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table3 .bdbox .item a {
	font-size: 14px;
	font-weight: 400;
	color: #2c9ef7;
}
.newModalbox .modals .modalbox .table3 .bdbox .additem.item .tab-inp {
	height: 25px;
	font-size: 12px;
}
.newModalbox .modals .modalbox .table3 .bdbox .item .text {
	font-size: 14px;
	font-weight: 400;
	color: #000000;
}
.newModalbox .modals .modalbox .table3 .bdbox .item .icon {
	font-size: 14px;
	color: #999;
}
.newModalbox .modals .modalbox .table3 .bdbox .item .txt {
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #12447f;
}
.newModalbox .modals .modalbox .table4 {
	height: 380px;
	overflow-y: auto;
}
.newModalbox .modals .modalbox .table5 {
	width: 240px;
	height: 380px;
	overflow-y: auto;
	border: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table5 .hdbox {
	width: 100%;
	line-height: 44px;
	background-color: #edf1f7;
}
.newModalbox .modals .modalbox .table5 .hdbox .item {
	width: 100%;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 400;
	color: #999;
	border-bottom: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table5 .hdbox .item .add {
	font-size: 14px;
	font-weight: 400;
	color: #2c9ef7;
}
.newModalbox .modals .modalbox .table5 .bdbox {
	width: 100%;
}
.newModalbox .modals .modalbox .table5 .bdbox .otherfrom {
	width: 100%;
	padding: 10px;
	border: 1px solid #BEC4CD;
}
.newModalbox .modals .modalbox .table5 .bdbox .otherfrom .tit {
	font-size: 12px;
	font-weight: 400;
	color: #000;
}
.newModalbox .modals .modalbox .table5 .bdbox .otherfrom .group {
	height: 28px;
	border: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table5 .bdbox .otherfrom .group .lab {
	width: 50px;
	line-height: 28px;
	border-right: 1px solid #bec4cd;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	color: #000000;
}
.newModalbox .modals .modalbox .table5 .bdbox .otherfrom .group input {
	width: 40px;
	padding: 0 5px;
	font-size: 12px;
	font-weight: 400;
	color: #000000;
}
.newModalbox .modals .modalbox .table5 .bdbox2 {
	width: 100%;
	border-bottom: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .titbox {
	width: 100%;
	height: 34px;
	background-color: #edf1f7;
	border-top: 1px solid #bec4cd;
	border-bottom: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .titbox .item {
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #999;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .titbox .item.i1 {
	width: 60%;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .titbox .item.i2 {
	width: 40%;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox {
	width: 100%;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .group {
	height: 36px;
	width: 100%;
	border-bottom: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .group.nobor {
	border-bottom: 0;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .group .item {
	height: 100%;
	line-height: 32px;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .group .item.i1 {
	width: 60%;
	border-right: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .group .item.i2 {
	width: 40%;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .group .item input {
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	color: #333;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .group .btn {
	width: 60%;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .group .item.total {
	padding: 0 5px;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .bditemcon {
	width: 100%;
	min-height: 200px;
	border-bottom: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table5 .bdbox2 .bditembox .item.bg {
	background-color: #f7f7f7;
	padding: 0 5px;
}
.newModalbox .modals .modalbox .new-lab {
	width: 68px;
	font-size: 12px;
	font-weight: 400;
	color: #000;
}
.newModalbox .modals .modalbox .dw-group .label {
	font-size: 12px;
}
.newModalbox .modals .modalbox .dw-group .inp input {
	width: 90px !important;
	font-size: 12px;
}
.newModalbox .modals .modalbox .dw-group .small {
	font-size: 12px;
	color: #999;
}
.newModalbox .modals .modalbox .filterbox .inp input {
	width: 120px !important;
}
.newModalbox .modals .modalbox .filterbox .sel select, 
.newModalbox .modals .modalbox .filterbox .sel input {
	width: 150px !important;
}
.newModalbox .modals .modalbox .table6 {
	width: 210px;
	height: 380px;
	overflow-y: auto;
	border: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table6 .hdbox .item {
	width: 100%;
	line-height: 36px;
	border-bottom: 1px solid #bec4cd;
	background-color: #EDF1F7;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 400;
	color: #999;
}
.newModalbox .modals .modalbox .table6 .bdbox {
	width: 100%;
}
.newModalbox .modals .modalbox .table6 .bdbox .group {
	width: 100%;
	height: 55px;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 400;
	color: #000;
	border-bottom: 1px solid #bec4cd;
}
.newModalbox .modals .modalbox .table6 .bdbox .group:last-of-type {
	border-bottom: 0;
}
/*弹窗样式 结束*/









































