@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;
}
.main-box {
    width: vmin(576);
    background-color: #fff;
    border-radius: vmin(16);
    margin-bottom: vmin(176);
}
.content-box {
    background-color: #fff;
    border-radius: vmin(16);
    padding: vmin(48);
}
.setting-modal .title {
    color: #333;
    font-size: vmin(32);
    font-weight: 500;
    text-align: center;
    line-height: vmin(48);
    margin-bottom: vmin(16);
}
.content-box .content {
    font-size: vmin(28);
    font-weight: 400;
    line-height: vmin(40);
    color: #666;
    text-align: center;
}
.setting-modal .btn {
    display: flex;
}

.setting-modal .btn .cancel {
    flex: 1;
    height: vmin(96);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1472FF;
    font-weight: 500;
    line-height: vmin(48);
    box-shadow: inset 0 vmin(0.10) 0 0 rgba(235,235,235,1);
}
