I have another problem when I refer to the option showing a blue color so that I can not edit the CSS option,has long searched and did not find a way to modify the color option on hover
/**
 * Option item
 */
option {
    cursor: pointer;
}
option:last-child {
    border-bottom: none;
}
option:hover {
 background: red linear-gradient(0deg, red 0%, red 100%);
}
only work:
select:focus option:checked {
  background: red linear-gradient(0deg, red 0%, red 100%);
}
<select>
  <option value="" disabled selected>Choose your option</option>
  <option value="1">Option 1</option>
  <option value="2">Option 2</option>
  <option value="3">Option 3</option>
</select>
