ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.jdate-container {
  font-size: 20px;
  color: #333;
  text-align: center;

  header {
    position: relative;
    line-height: 60px;
    font-size: 18px;
    border-bottom: 1px solid #e0e0e0;
  }

  .jdate-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
    z-index: 999;
  }

  .jdate-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 273px;
    z-index: 1000;
    background: #fff;
    animation-duration: 300ms;
    animation-delay: 0s;
    animation-iteration-count: 1;
  }

  .jdate-btn {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .jdate-confirm {
    left: auto;
    right: 0;
    color: #007bff;
  }

  .jdate-content {
    position: relative;
    top: 20px;
  }

  .jdate-wrapper {
    display: flex;

    > div {
      position: relative;
      flex: 1;
      height: 173px;
      line-height: 36px;
      overflow: hidden;
      flex-basis: 1e-9px;
      width: 1%;
    }

    ul {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      margin-top: 68px;
    }

    li {
      height: 36px;
    }
  }

  .jdate-dim {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 68px;
    background: linear-gradient(0deg,hsla(0,0%,100%,.4),hsla(0,0%,100%,.8));
    pointer-events: none;
    transform: translateZ(0);
    z-index: 10;
  }

  .mask-top {
    border-bottom: 1px solid #ebebeb;
  }

  .mask-bottom {
    top: auto;
    bottom: 1px;
    border-top: 1px solid #ebebeb;
  }

  .fadeIn {
    animation-name: fadeIn;
  }

  .fadeOut {
    animation-name: fadeOut;
  }
  @keyframes fadeIn {
    from {
      bottom: -273px;
    }

    to {
      bottom: 0;
    }
  }
  @keyframes fadeOut {
    from {
      bottom: 0;
    }

    to {
      bottom: -273px;
      display: none;
    }
  }
}
@media screen and (max-width: 414px) {
  .jdate-container {
    font-size: 18px;
  }
}
@media screen and (max-width: 320px) {
  .jdate-container {
    font-size: 15px;
  }
}
