.times-picker {
  width: 100vmin;
  height: 100%;
  margin: auto;
  border-top-left-radius: 3.2vmin;
  border-top-right-radius: 3.2vmin;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
}
.times-picker-content {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 12.8vmin;
  box-sizing: border-box;
  background-color:transparent !important;
}
.times-picker-content > view {
  width: 100%;
}

.times-picker-toolbar {
  width: 100vmin;
  position: absolute;
  top: 0;
  z-index: 10;
  padding: 0 4.2vmin;
  box-sizing: border-box;
  background-color: #ffffff;
  line-height: 12.8vmin;
  height: 12.8vmin;
  display: flex;
  justify-content: space-between;
  color: #333333;
}
.times-picker-toolbar .title{
    font-size: 4.2vmin;
    font-weight: 700;
}
.times-picker-toolbar .cancel{
    color: #999999;
}
.times-picker-toolbar .confirm{
  color: #1472FF;
}
.times-picker-toolbar:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #ececec;
}
.times-picker-col {
  font-size: 4.2vmin !important;
}
.times-picker-active {
  position: absolute;
  width: 100vmin;
  left: 0;
  top: 12.8vmin;
  bottom: 0;
  margin: auto;
  border-bottom: 1px solid #F2F3F4;
  box-sizing: border-box;
  background-color: #F6F6F6;
}