/*在input组件中支持addonBefore输入Select*/
.ant-input-group-addon:first-child{
	padding: 0 !important;
	border: none !important;
}
.ant-input-group-addon>.ant-select>.ant-select-selection{
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	border-top-left-radius: 6px !important;
	border-bottom-left-radius: 6px !important;
}	

/*修改btn基本样式, 防止贴在一起*/
.ant-btn{
	margin:0 5px
}

/*允许Select组件addonBefore输入Select*/
.ant-input-group>.ant-select>.ant-select-selection--single {
	background-color: white !important;
}
.ant-input-group-addon>.ant-select>.ant-select-selection--single {
	margin-left: -1px;
	height: 32px;
	background-color: #eee;
}