* {
  margin: 0;
  padding: 0;
}
.pickDate {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0,100%);
    transform: translate(0,100%);
    -webkit-transition: transform 0.4s;
    transition: transform 0.4s;
    border-radius: 10px 10px 0 0;
    background: #fff;
  }
  .mask-black {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 888;
  }
.pickDate .bt{
  width: 5rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 1.5rem;
  font-size: .28rem;
  font-family: yaoti;
}
  .pickDate .fixWidth {
    width: 90%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
pickDate .fixWidth.bt:after {
  display: none;
}
  .pickDate .fixWidth:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

.pickDate .btnBar{
  background: #fff!important;
  box-sizing: border-box;
  padding:20px auto
}
.pickDate .btnBar a{
  display: block;
  width: 120px !important;
  border-radius: 5px;
  height: 40px !important;
  line-height: 40px !important;
  background-color: rgb(240, 240, 240);
  color: rgb(68, 68, 68) !important;
  padding-left: 0 !important;
}
.pickDate .btnBar a:nth-of-type(2){
  display: block;
  width: 120px !important;
  border-radius: 5px;
  height: 40px !important;
  line-height: 40px !important;
  color: #fff!important;
  background-color: rgb(13, 193, 96) !important;
  padding-right: 0 !important;
}


  .pickDate .btnBar {
    /*height: 50px;*/
    position: relative;
    text-align: center;
    /*line-height: 50px;*/
    /*box-shadow: 0 1px 0 0 rgba(32, 43, 61, 0.06);*/
    margin-bottom: 10px;
  }
  /*.btnBar .cancel, .btnBar .ensure {*/
  /*  font-size: 16px;*/
  /*  height: 50px;*/
  /*  width: 55px;*/
  /*  cursor: pointer;*/
  /*  position: absolute;*/
  /*  top: 0;*/
  /*}*/
  /*.btnBar .cancel {*/
  /*  left: 0;*/
  /*  color: #434C67;*/
  /*}*/
  /*.btnBar .ensure {*/
  /*  right: 0;*/
  /*  color: #0D7DFC;*/
  /*}*/
  .pickDate .title {
    font-size: 18px;;
    color: #434C67;
    letter-spacing: 0;
  }
  .pickDate .panel {
    margin-top: 20px;
  }
  .pickDate .panel:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .pickDate .panel .wheels {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  .pickDate .panel .wheel {
    position: relative;
    z-index: 0;
    float: left;
    width: 50%;
    height: 250px;
    overflow: hidden;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  .panel .wheel .selectContainer {
    display: block;
    text-align: center;
    -webkit-transition: -webkit-transform 0.18s ease-out;
    transition: -webkit-transform 0.18s ease-out;
    transition: transform 0.18s ease-out;
    transition: transform 0.18s ease-out, -webkit-transform 0.18s ease-out;
  }
  .wheel .selectContainer li {
    font-size: .3rem;
    display: block;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  .panel .selectLine {
    height: 50px;
    width: 100%;
    position: absolute;
    top: 100px;
    pointer-events: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
  }
  .panel .shadowMask {
    position: absolute;
    top: 0;
    width: 100%;
    height: 250px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(rgba(255, 255, 255, 0)), to(#ffffff));
    background: -webkit-linear-gradient(top, #ffffff, rgba(255, 255, 255, 0), #ffffff);
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0), #ffffff);
    opacity: 0.9;
    pointer-events: none;
  }
  .pickDate-show {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  /* add */
