.inputStyle {
  outline: unset;
  border: unset;
  padding: 10px;
  font-size: 18px;
  height: 60px;
  width: 100%;
  border-radius: 8px;
  color: rgb(117,117,117);
}

.selectStyle {
  border: unset;
  border-radius: 8px;
  width: 100%;
  height: 60px;
  font-size: 18px;
  padding: 9px;
  color: rgb(117,117,117);
}

/* 隱藏預設的下拉式選單箭頭 */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  outline: unset;
}


/* 自定義下拉式選單箭頭 */
select::-ms-expand {
  display: none;
}

.selectBox {
  position: relative;
  width: 100%;
  display: inline-block;
  cursor: pointer;
}

/* 自定義箭頭樣式 */
.selectBox img {
  position: absolute;
  width: 20px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* 方框樣式 */

.inputSquare input {
  display: none;
}

.inputSquare label {
  display: inline-block;
  padding: 5px 10px 5px 0;
  cursor: pointer;
}

.inputSquare label span {
  position: relative;
  line-height: 22px;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}

.inputSquare label span:before,
.inputSquare label span:after {
  content: '';
}

.inputSquare label span:before {
  border: unset solid rgb(132, 132, 132);
  background: #fff;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}

.inputSquare label span:after {
  background: #222021;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 3px;
  transition: 300ms;
  opacity: 0;
}

.inputSquare label input:checked+span:after {
  opacity: 1;
}

/* 方框樣式 end */