1、去掉select样式
select {
border: solid 0 #000;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
background: url(../ossweb-img/btn-select.png) no-repeat scroll right 0.03rem
transparent;
background-size: 0.4rem 0.17rem;
padding-right: 0.14rem;
border-bottom: 1px solid #c7bda7;
width: 2rem;
margin-left: 0.3rem;
text-align: center;
background-color: #211d30;
}
2、取消默认选中第一个选项
<select name="Environment" id="id_Environment">
<option style='display: none'></option>
<option>a</option>
<option>b</option>
<option>c</option>
</select>