#vinKeyboardPop {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
  left: 0;
	z-index: 1000;
	padding: 0;
	margin: 0;
	overflow: hidden;
	font-size: 62.5%;
	background: #ededed;
	font-family: Microsoft YaHei;
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.25);
}

.vin-key-board-shadow-cancel {
	width: 100%;
	flex: 1;
}

#vinInputKeyboard {
	width: 100%;
	height: auto;
	background-color: white;
	display: flex;
	flex-direction: column;
}

.vin-input-key-board-title {
	height: 45px;
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
	background: linear-gradient(#046BDD, #00418A);
	color: white;
}

.vin-input-key-board-title>span {
	line-height: 45px;
	height: 45px;
	font-size: 15px;
	font-weight: 600;
}

.vin-input-key-board-title-btn {
	display: flex;
	justify-content: space-around;
	padding: 5px 15px;
	font-size: 14px;
}

.vin-input-key-board-title-btn>button {
	flex: 1;
	margin: 10px;
	padding: 6px 0;
	border: none;
	border-radius: 50px;
	text-align: center;
	outline:none;
}

.vin-input-key-board-title-btn>button:active{
	background: #BEBEBE;
}

.key-board-clear,
.key-board-del{
	background: #F4F1F4;
	color: #8C8C8C;
	border: #E5E5E5 1px solid;
}

.key-board-confirm {
	background: #2867CE;
	color: white;
}

#vinKeyboard {
	margin-top: 5px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	padding: 2px;
	background: #D1D5DB;
}

.vin-input-container {
	width: 100 %;
	display: flex;
	margin-top: 30px;
	margin-left: 16px;
	margin-right: 15px;
}

.vin-input-item {
	width: 32px;
	height: 42px;
	flex: 1;
	border: 1px solid #D9D9D9;
	margin-left: -1px;
	text-align: center;
	line-height: 42px;
	z-index: 0;
}

.vin-input-item-active {
	border: 1px solid #2867CE;
	z-index: 1;
}

.key-board-item-cotainer {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 5px;
}

.key-board-item {
	margin: 0;
	padding: 0;
	width: 32px;
	height: 42px;
	margin-left: 3px;
	line-height: 42px;
	background: white;
	color: #000000;
	text-align: center;
	outline: none;
	border: none;
	border-radius: 6px;
}

.key-board-item:active {
	background: #BEBEBE;
}

.key-board-item:disabled {
	background: #BEBEBE;
	color: #959292;
}

.key-board-item-direction {
	flex: 1;
	background: #ADB3BC;
}
