.ui-action-sheet-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
}
.ui-action-sheet-view .ui-action-sheet-content {
    box-sizing: border-box;
    margin: 0 10px;
    width: 100%;
    min-height: 100px;
}
.ui-action-sheet-view .ui-action-sheet-ok {
    overflow: hidden;
    border-radius: 10px;
    transform: translate3d(0px,0px,0px);
    backface-visibility: hidden;
}
.ui-action-sheet-view .ui-action-title-place {
    background: #fff;
    border-radius: 10px 10px 0 0;
}
.ui-action-sheet-view .ui-action-sheet-actions-scroll {
    overflow-y: auto;
    background: #fff;
    border-radius: 0 0 10px 10px;
}
.ui-action-sheet-view .ui-action-sheet-actions {
    background: #fff;
    border-radius: 0 0 10px 10px;
}
.ui-action-sheet-view .action-sheet-title-label {
    padding: 20px 10px 3px;
    text-align: center;
    font-weight: 500;
    font-size: 21px;
    line-height: 22px;
    color: #030303;
}
.ui-action-sheet-view .action-sheet-message-label {
    padding: 8px 10px 9px;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #000;
}
.ui-action-sheet-view .action-sheet-action-btn {
    border-top: 1px solid #ccc;
}
.ui-action-sheet-view .action-sheet-action-btn:first-child {
    border-top: none;
}
.ui-action-sheet-view .action-sheet-cancel-btn {
    margin: 5px 0;
    background: #fff;
    border-radius: 10px;
}