.links .selectStyle{margin-right:30px;}
.links .selectStyle:last-child{margin-right:0;}
.select{
    text-indent:8px;
    display:block;
    width:100%;
    height:100%;
    box-sizing:border-box;
    background:none;
    border:1px solid #222;
    outline:none;
    -webkit-appearance:none;
    padding:0 5px;
    line-height:inherit;
    color:inherit;
    cursor:default;
    font-size:14px;
    position:relative;
    z-index:3;
}
.select option{
    color:#222;
}
.select option:hover{
    color:#fff;
}
.select option:checked{
    background:#535353;
    color:#fff;
}
.selectStyle{
    display:block;
    margin:8px auto;
    overflow:hidden;
    height:30px;
    width:200px;
    border-radius:0;
    background:#fff;
    background-size:auto 80%;
    color:#8a898a;
    line-height:2;
    /* 如果不想加图片，
       则可以设置一个自己的三角形样式，
       如下的自定义方式，
       见代码1 */
    position:relative;
    z-index:1;
}
/* 代码1 */
.selectStyle:before{
    position:absolute;
    z-index:1;
    top:50%;
    right:10px;
    margin-top:-2.5px;
    display:block;
    width:0;
    height:0;
    border-style:solid;
    border-width:5px 5px 0 5px;
    border-color:#fff transparent transparent transparent;
    content:"";
}
/* 代码1 */
.selectStyle:after{
    position:absolute;
    z-index:1;
    top:50%;
    right:10px;
    margin-top:-3.5px;
    display:block;
    width:0;
    height:0;
    border-style:solid;
    border-width:5px 5px 0 5px;
    border-color:#535353 transparent transparent transparent;
    content:"";
}