selectPopup.acss 890 Bytes
.selectPopup {
    background: rgba(0, 0, 0, 0.12);
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 101;
}

.selectContent {
    position: fixed;
    bottom: 16rpx;
    border-radius: 16rpx;
    left: 16rpx;
    right: 16rpx;
    overflow: hidden;
    animation: showAnimation 0.2s ease;
    transform: none;
}

.selectPopupItem {
    background: #fff;
    height: 114rpx;
    line-height: 112rpx;
    text-align: center;
    font-family: PingFangSC-Regular;
    font-size: 34rpx;
    color: #1B263D;
    border-bottom: 1px solid rgba(25, 31, 37, 0.12);
}

.selectPopupItem:last-child {
    border-bottom: none;
}

.selectPopupCancel {
    border-radius: 16rpx;
    height: 112rpx;
    background: #fff;
    line-height: 112rpx;
    text-align: center;
    font-family: PingFangSC-Regular;
    font-size: 34rpx;
    color: #1B263D;
    margin-top: 16rpx;
}