.mobileSelect {
  position: relative;
  z-index: 0;
  visibility: hidden;
}
.mobileSelect .grayLayer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #eee;
  background: rgba(0, 0, 0, 0.7);
  z-index: 888;
  display: block;
}
.mobileSelect .content {
  width: 100%;
  display: block;
  position: fixed;
  z-index: 889;
  color: black;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  bottom: -17.5rem;
  left:0;
  background: white;
  -webkit-transition-duration:.3s;
  transition-duration: 0.3s;
}
.mobileSelect .content .fixWidth {
  margin: 0 auto;
  position: relative;
}
.mobileSelect .content .fixWidth:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.mobileSelect .content .btnBar {
  border-bottom: 1px solid #e6e9f0;
  font-size: .75rem;
  height:2.5rem;
  position: absolute;
  text-align: center;
  line-height: 2.5rem;
  margin:0 .75rem;
  width: 90%;
  z-index: 200;
  background: #fff;
}
.mobileSelect .content .btnBar .cancel {
  height: 2.5rem;
  /*width: 55px;*/
  cursor: pointer;
  position: absolute;
  top: 0;
}
.panel{
  margin: 0 .75rem;
}
.mobileSelect .content .btnBar .cancel {
  right: 0;
  font-size: .75rem;
  color: #81888e;
}
.mobileSelect .content .btnBar .ensure {
  right: 0;
  color: #1e83d3;
}
.mobileSelect .content .btnBar .title {
  font-size: .8rem;
  font-weight: bold;
  float: left;
}
.mobileSelect .content .panel:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.mobileSelect .content .panel .wheels {
  width: 100%;
  height: 10rem;
  overflow: hidden;
}
.mobileSelect .content .panel .wheel {
  position: relative;
  z-index: 0;
  float: left;
  width: 50%;
  height: 10rem;
  overflow: hidden;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.mobileSelect .content .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;
  padding: 0 1.25rem;
}
.mobileSelect .content .panel .wheel .selectContainer li {
  color: #b5b8ba;
  font-size: .75rem;
  display: block;
  height: 2.5rem;
  line-height: 2.5rem;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mobileSelect .content .panel .wheel .selectContainer li.selected {
  color: #000;
  font-weight: bold;
}

.mobileSelect .content .panel .selectLine,
.mobileSelect .content .panel .panel-line-wrap{
  height: 2.5rem;
  width: 100%;
  position: absolute;
  top: 5rem;
  left: 0;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mobileSelect .content .panel .panel-line-wrap {
  padding: 0 2.5rem;
}

.mobileSelect .content .panel .panel-line{
  position: relative;
  height: 2.5rem;
}

.mobileSelect .content .panel .selectLine::after{
    content: "";
    display: block;
    width: 0;
    height: 2.5rem;
    border-left: 1px solid #e6e9f0;
    position: absolute;
    right: 50%;
    top: 50%;
    margin-top: -1.25rem;
}

.mobileSelect .content .panel .panel-line:before,
.mobileSelect .content .panel .panel-line:after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  border-top: 1px solid #e6e9f0;
  border-bottom: 1px solid #e6e9f0;
  position: absolute;
  top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mobileSelect .content .panel .panel-line:before {
  left: -1.25rem;
}

.mobileSelect .content .panel .panel-line:after {
  right: -1.25rem;
}

.mobileSelect .content .panel .shadowMask {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: 7.5rem;
  -webkit-mask-box-image: -webkit-linear-gradient(bottom, transparent, transparent 5%, white 20%, white 80%, transparent 95%, transparent);
  -webkit-mask-box-image: linear-gradient(to top, transparent, transparent 5%, white 20%, white 80%, transparent 95%, transparent);
  pointer-events: none;
}
.mobileSelect .content .panel .shadowMask1 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 5rem;
  background: -webkit-linear-gradient(to bottom, #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;
}
.mobileSelect-show {
  z-index: 10000;
  visibility: visible;
}
.mobileSelect-show .content {
  bottom: 0;
}
.ensure{
  display: block;
  line-height: 2rem;
  font-size: .75rem;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  background: linear-gradient(to right, #f55f66, #f56d5f);
  box-shadow: 0 .15rem .3rem rgba(245, 95, 102, .4);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: auto;
  outline: none!important;
  margin: 0 .75rem;
  margin-bottom: .75rem;
}