.wux-picker {
	position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    width: 100%;
    z-index: 1000;
}

.wux-picker__content {
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 1010;
	text-align: center;
	border-radius: 0;
	opacity: 1;
	color: #3d4145;
	height: 260px;
	background: #EFEFF4;
	box-sizing: border-box;
}

.wux-picker__hd {
	position: relative;
	width: 100%;
	font-size: .85rem;
	line-height: 1.5;
	color: #3d4145;
	background: #f7f7f8;

	&:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: auto;
		right: auto;
		height: 1px;
		width: 100%;
		background-color: #d9d9d9;
		display: block;
		z-index: 15;
		transform-origin: 50% 0%;
	}
}

.wux-picker__toolbar {
	height: 44px;
	display: flex;
	text-align: center;
}

.wux-picker__title {
	position: absolute;
	display: block;
	width: 100%;
	padding: 0;
	font-size: .85rem;
	font-weight: normal;
	line-height: 44px;
	color: #3d4145;
	text-align: center;
	white-space: nowrap;
}

.wux-picker__button {
	position: absolute;
	height: 44px;
	line-height: 44px;
	color: #586c94;
	z-index: 1;
	padding: 0 .5rem;
	box-sizing: border-box;
}

.wux-picker__button--close {
	top: 0;
	right: 0;
}

.wux-picker__bd {
	width: 100%;
	height: 216px;
}

.wux-picker__cols--left {
	text-align: left !important;
}

.wux-picker__cols--right {
	text-align: right !important;
}

.wux-picker__cols--center {
	text-align: center !important;
}

.wux-picker__col {
	font-size: 16px;
	height: 32px;
    line-height: 32px;
    padding: 0 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #9b9b9b;
    width: 100%;
    box-sizing: border-box;
}