
input[type="date"] {
    width: 150px;
    height: 30px;
    position: relative;
  }
  
  input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background: transparent;
    z-index: 1;
  }
  
  input[type="date"]::after {
    content: '';
    background-image: url("/static/icon/calendar.127164210258.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }