.bm-picker-modal {
	content: '';
	width: 100%;
	height: 100%;
	max-width: 500px;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 1000;
}

.bm-picker-body * {
	box-sizing: border-box;
}
.bm-picker-body {
	position: fixed;
	width: calc(100% - 1.4em);
	height: calc(100% - 1.4em);
	margin: 0.7em;
	top: 0;
	background: #f5f5f9;
	z-index: 1000;
}
.bm-picker-body.visible {
	display: block;
}
.bm-list-body {
	position: relative;
	height: calc(100% - 96px);
	height: -moz-calc(100% - 96px);
	height: -webkit-calc(100% - 96px);
	overflow-y: scroll;
	background: #fff;
	margin-top: 10px;
}
.bm-header {
	text-align: center;
	line-height: 45px;
	position: relative;
	display: flex;
	justify-content: flex-end;
	color: rgb(79,119,170);
	font-size: 18px;
	font-weight: bold;
	background: #fff;
}
.bm-header .bm-form-name {
	width: 50%;
}
.bm-header .bm-close {
	width: 25%;
	background: url('../image/closeimg.png') no-repeat 50% 50% transparent;
	background-size: 16px 16px;
}

.bm-footer:before, .bm-tree-line:first-child:before,
.bm-list-body:before {
	content: "";
	position: absolute;
	background-color: #ccc;
	display: block;
	z-index: 1;
	top: 0;
	right: auto;
	bottom: auto;
	left: 0;
	width: 100%;
	height: 1px;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: scaleY(.5);
	-ms-transform: scaleY(.5);
	transform: scaleY(.5);
}
.bm-header:after {
	content: "";
	position: absolute;
	background-color: #ccc;
	display: block;
	z-index: 1;
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transform: scaleY(.5);
	-ms-transform: scaleY(.5);
	transform: scaleY(.5);
}
.bm-list-body .bm-list-line:after,
.bm-tree-line:after,
.bm-footer.multi .bm-filter-wrap:after {
	content: "";
	position: absolute;
	background-color: #ddd;
	display: block;
	z-index: 1;
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transform: scaleY(.5);
	-ms-transform: scaleY(.5);
	transform: scaleY(.5);
}
.bm-list-item {
	height: 44px;
	line-height: 30px;
	padding-left: 15px;
	background-color: #fff;
	transition: background-color 0.2s;
	position: relative;
}
.bm-list-item.checked, .bm-tree-item.checked {
	background: #eee;
}
.bm-list-item:active {
	background-color: #ddd;
}
.bm-list-line {
	padding: 7px 0;
	position: relative;
}

/* 单选框 */
.bm-radio-inner {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 15px;
	height: 15px;
}
.bm-radio-inner:after {
	display: none;
	border-color: #108ee9;
	position: absolute;
	top: -2.5px;
	right: 5px;
	z-index: 999;
	width: 7px;
	height: 14px;
	border-style: solid;
	border-width: 0 1.5px 1.5px 0;
	content: " ";
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.bm-list-item.checked .bm-radio-inner:after {
	display: block;
}

/* 多选框 */
.bm-multi-radio-inner {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 16px;
	height: 16px;
	background-color: rgba(255, 255, 255, 1);
	border: 1px solid #888;
	vertical-align: middle;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/* 多选选中状态 */
.bm-list-item.checked .bm-multi-radio-inner:after,
.bm-multi-radio-inner.checked:after,
.bm-multi-radio-inner.half-check:after {
	content: "";
	width: 10px;
	height: 5px;
	border-bottom: 1px solid #C00;
	border-left: 1px solid #C00;
	display: block;
	position: absolute;
	top: 2px;
	left: 2px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.bm-list-item.checked .bm-multi-radio-inner,
.bm-multi-radio-inner.checked {
	border: 1px solid #C00;
}
.bm-multi-radio-inner.half-check {
	background-color: #ccc;
}

.bm-footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: #fff;
	height: 44px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.bm-filter-wrap {
	/* display: flex; */
	overflow: hidden;
	padding-left: 3px;
}
.bm-filter-wrap label {
	min-width: 40px;
}
.bm-filter-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	font-size: 14px;
	border-bottom: 1px solid #ccc;
}

.bm-confirm-wrap {
	width: 33.3%;
	margin: 5px 0;
}
.multi-tree .bm-confirm-wrap {
	margin-top: 10px;
}
.bm-confirm {
	height: 35px;
	line-height: 35px;
	width: 7em;
	padding: 0 15px;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center;
}
.bm-primary-btn {
	font-size: 16px;
	background: rgb(79,119,170);
	border: none;
	color: #fff;
	border-radius: 5px;
}
.bm-primary-btn:active {
	color: rgba(255, 255, 255, 0.3);
	background-color: rgb(14, 128, 210);
}

.bm-other-wrap {
	width: 33.3%;
}

/* 清单选择 */
/* ****************** 清单单选 ****************** */
.bm-footer.single {
	align-items: flex-start;
}
.bm-footer.single .bm-filter-wrap {
	color: #999;
}
.bm-footer.single .bm-filter-input {
	width: 20em;
}
/* ****************** 清单多选 ****************** */
.bm-list-body.multi {
	height: calc(100% - 140px);
	height: -moz-calc(100% - 140px);
	height: -webkit-calc(100% - 140px);
}
.bm-footer.multi {
	height: auto;
}
.bm-footer.multi .bm-filter-wrap {
	line-height: 40px;
	position: relative;
	width: 100%;
	color: #999;
	padding-left: 15px;
}
.bm-footer.multi .bm-filter-input {
	border: none;
}

/* 树形窗 */
/* ****************** 树形单选 ****************** */
.bm-tree-item {
	line-height: 35px;
	padding-left: 15px;
}
.bm-tree-line {
	position: relative;
}
.bm-tree-item .bm-radio-inner, .bm-tree-item .bm-multi-radio-inner {
	top: 10px;
}
.bm-tree-item .bm-radio-inner:after {
	top: -5.5px;
}
.bm-tree-item.checked .bm-radio-inner:after {
	display: block;
}


.bm-tree-expand {
	width: 12px;
	height: 12px;
	display: inline-block;
	position: relative;
	border: 0
}
.bm-tree-expand.has-children {
	line-height: 7px;
	border: 1px solid #333;
	text-align: left;
}

.bm-tree-label {
	position: relative;
	display: flex;
	align-items: center;
}
.bm-tree-label-content {
	flex: 1;
	margin-left: 2px;
}

.bm-radio-box {
	height: 33px;
	width: 49px;
}

.check_boxHw{
	width: 2.5rem;
	padding-left: 0.7rem; 
}