/*!
 * @author waanhappy@163.com
 * timepicker 时间选择器less
 */
.timepicker {
  position: absolute;
  z-index: 1000;
  float: left;
  width: 100px;
  margin: 2px 0 0 0;
  list-style: none;
  font-size: 14px !important;
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: -1px 2px 11px 0 rgba(0, 0, 0, 0.175);
  box-shadow: -1px 2px 11px 0 rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  padding: 5px 1px;
}
.timepicker:before,
.timepicker:after {
  content: '';
  border-top: 0;
  display: inline-block;
  position: absolute;
}
.timepicker .icon-up {
  transform: rotate(-45deg);
}
.timepicker .icon-down {
  transform: rotate(135deg);
}
.timepicker .icon-up,
.timepicker .icon-down {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #808080;
  border-right: 2px solid #808080;
  opacity: .4;
  cursor: pointer;
}
.timepicker .icon-up:hover,
.timepicker .icon-down:hover {
  opacity: .7;
}
.timepicker:before {
  top: -7px;
  left: 6px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(0, 0, 0, 0.2);
}
.timepicker:after {
  top: -6px;
  left: 7px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}
.timepicker .title {
  padding: 10px 0 5px 0;
  color: #888;
  width: 100%;
  cursor: default;
}
.timepicker .cell-2 {
  float: left;
  width: 24%;
  min-height: 14px;
  cursor: default;
}
.timepicker .cell-4 {
  width: 38%;
  float: left;
  font-size: 1.50rem;
}
.timepicker .handle,
.timepicker .text {
  position: relative;
}
.timepicker .chose-all {
  position: relative;
  margin: 0 10px 0 10px;
}
.timepicker .chose-all .text {
  font: bold 18px/22px arial, sans-serif;
}
.timepicker a {
  color: #aaa;
  text-decoration: none;
}
.timepicker .text {
  color: #808080;
}
.timepicker .text a {
  color: #444;
}
.timepicker .text a:active,
.timepicker .text a:focus,
.timepicker .text a:hover {
  color: #222;
}
.timepicker ul {
  list-style: none;
  padding: 0;
  margin: 0 5px;
}
.timepicker li.cell-2 {
  padding: 3px 0;
  cursor: pointer;
}
.timepicker li.cell-2:hover {
  background: #ccc;
  color: #555;
}
.timepicker > .title {
  display: none;
}

.js-hour-show, .js-minute-show {
  width: 28px;
  border: 0;
  padding: 3px;
  -moz-appearance: textfield;
}

.js-hour-show::-webkit-outer-spin-button,
.js-hour-show::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.js-minute-show::-webkit-outer-spin-button,
.js-minute-show::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}