.mobileSelect {
    position: relative;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s, z-index 0.4s;
    transition: opacity 0.4s, z-index 0.4s;
}
.mobileSelect * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.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: #ffffff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    bottom: -350px;
    left: 0;
    background: white;
    width: 7.5rem;
    height: 6.03rem;
    background-color: #ffffff;
    box-shadow: 0 -0.01rem 0 0 #eeeeee;
    border-radius: 0.32rem 0.32rem 0 0;
}
.mobileSelect .content .fixWidth {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.mobileSelect .content .fixWidth:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.mobileSelect .content .btnBar {
    font-size: 15px;
    height: 45px;
    position: relative;
    text-align: center;
    line-height: 45px;
}
.mobileSelect .content .btnBar .cancel,
.mobileSelect .content .btnBar .ensure {
    height: 45px;
    width: 55px;
    cursor: pointer;
    position: absolute;
    top: 0;
}
.mobileSelect .content .btnBar .cancel {position: absolute;top: -0.58rem;left: 0;right: 0;margin: auto;width: 100%;height: 0.42rem;line-height: 0.42rem;cursor: pointer;font-size: 0.28rem;color: #ffffff;text-align: center;text-indent: 0.5rem;}
.mobileSelect .content .btnBar .cancel:after {content: '';position: absolute;top: 0;left: 3.22rem;background: url("//static.fhyx.com/images/application/wap/com/products/icon13.png") no-repeat;width: 0.42rem;height: 0.42rem;background-size: 100% 100%;}
.mobileSelect .content .btnBar .ensure {
    right: 0;
    color: #333333;
    font-size: 0.36rem;
    font-weight: bold;
}
.mobileSelect .content .btnBar .title {
    font-size: 0.36rem;
    font-weight: bold;
    padding: 0 15%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333333;
}
.mobileSelect .content .panel:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.mobileSelect .content .panel .wheels {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.mobileSelect .content .panel .wheel {
    position: relative;
    z-index: 1;
    float: left;
    width: 50%;
    height: 200px;
    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;
}
.mobileSelect .content .panel .wheel .selectContainer li {
    font-size: 0.44rem;
    display: block;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #989898;
}
.mobileSelect .content .panel .wheel .selectContainer li img {
    width: 0.44rem;
    height: 0.44rem;
    margin: 0.2rem 0.24rem 0 0;
}
.mobileSelect .content .panel .wheel .selectContainer li span {
    height: 40px;line-height: 40px;
}
.mobileSelect .content .panel .selectLine {
    height: 40px;
    width: 100%;
    position: absolute;
    top: 80px;
    pointer-events: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #000000;
    color: #ffffff;
}
.mobileSelect .content .panel .shadowMask {
    position: absolute;
    top: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
}
.mobileSelect-show {
    opacity: 1;
    z-index: 10000;
    visibility: visible;
}
.mobileSelect-show .content {
    bottom: 0;
}