.selectBox{
				width: 90px;
    border-radius: 20px;
    height: 25px;
    line-height: 26px;
    background: #f72323;
    float: right;
    margin-right: 20px;
    margin-top:20px;
    
			}
			.inputCase{
				position: relative;
				width: 100%;
				height: 100%;
				box-sizing: border-box;
			}
			.inputCase input.imitationSelect{
				width: 100%;
				height: 100%;
				box-sizing: border-box;
				border: 1px solid #ccc;
				display: block;
				text-indent: 20px;
				cursor: default;
				outline: none;
				border-radius: 4px;
			}
			.inputCase i.fa{
				position: absolute;
				right: 10px;
				top: 4px;
				color: #007AFF;
			}
			.selectUl{
				display: none;
				padding: 0;
				margin: 0;
				border-bottom: 1px solid #ccc;
				border-left: 1px solid #ccc;
				border-right: 1px solid #ccc;
			}
			.selectUl li{
				height: 26px;
				line-height: 26px;
				list-style: none;
				text-indent: 20px;
				border-bottom: 1px solid #ccc;transition: all .5s ease 0s;
				cursor: pointer;
			}
			.selectUl li:hover{
				background: #2274e5;
				color:#FFFFFF;
			}
			.selectUl li:last-child{
				border-bottom: 0 none;
			}