@function vmin($rpx) {
    @return #{$rpx * 100 / 750}vmin;
}



.setting-modal{
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-box {
    background-color: #fff;
    width: 576rpx;
    border-radius: 16rpx;
    margin-bottom: 176rpx;
}
.content-box .content {
    padding: 48rpx;
    font-size: 28rpx;
    font-weight: 400;
    line-height: 40rpx;
    color: #000;
    text-align: center;
}
.content-box .btn {
    display: flex;
}

.content-box .btn .cancel,
.content-box .btn .confirm {
    flex: 1;
    height: 96rpx;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-weight: 500;
}
.content-box .btn .cancel {
    box-shadow: inset 0 vmin(0.10) 0 0 rgba(235,235,235,1);
}
.content-box .btn .confirm {
    color: #1472FF;
    box-shadow: inset 0 vmin(0.10) 0 0 rgba(235,235,235,1), inset vmin(0.10) 0 0 0 rgba(235,235,235,1);
}
