body {
    padding: 0 8px;
}

.bili-pink-bg {
    background-color: #fb7299;
}

.status {
    &.success {
        color: #0EB10A;

        &::before {
            content: '成功';
        }
    }

    &.fail {
        color: #ff5687;

        &::before {
            content: '失败';
        }
    }
}

button {
    display: block;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    border-radius: 40px;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    background: transparent;
    border: none;
    width: 100%;

    &::after {
        content: '';
        display: block;
        position: absolute;
        left: -50%;
        top: -50%;
        right: -50%;
        bottom: -50%;
        transform: scale(0.5);
        border: 1px solid;
        border-radius: 80px;
    }

    font-size: 16px;
    line-height: 40px;
    height: 40px;

    color: #fb7299;

    &::after {
        border-color: #fb7299;
    }
}

.button + .button {
    margin-top: 10px;
}

.button-group {
    display: flex;
    flex-direction: row;
}

.flex-button {
    flex: 1 1 0%;
}

.flex-button + .flex-button {
    margin-left: 5px;
}

.checkbox {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.setup {
    margin-bottom: 10px;
}

.input {
    border: 1px solid #eeeeee;
    display: block;
    height: 30px;
    padding: 8px;
    font-size: 20px;
}

.desc {
    font-size: 12px;
    line-height: 1.2;
    color: #999999;
    margin: 8px 0;
}

code {
    white-space: pre-line;
    word-break: break-all;
}
