.active-md {
    margin: 10px 0;
    position: relative;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 2px 8px 0px rgba(97, 92, 153, 0.15);
    padding: 30px;
    min-width: 380px;
    position: relative;
    white-space: break-spaces;
    font-family: none !important;

    .title {
        font-size: 18px;
        font-weight: 600;
        text-align: LEFT;
        color: #333333;
        line-height: 18px;
        position: relative;
        width: fit-content;

        &::before {
            position: absolute;
            content: '';
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            opacity: 0.3;
            background: #1677ff;
        }
    }

    .ant-btn {
        border-radius: 2px;
    }

    .question {
        width: 100%;

        &-title {
            display: flex;
            align-items: center;

            span {
                margin-left: 10px;
                height: 16px;
                background: rgba(22, 119, 255, 0.05);
                border: 0.5px solid #1677ff;
                border-radius: 2px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: fit-content;
                padding: 0 5px;
                font-size: 12px;
                font-weight: 300;
                color: #1677ff;
            }
        }

        &-content {
            margin: 16px 0;
        }

        &-tip {

            &-success {
                display: flex;
                align-items: center;
                color: #30c213;
                font-size: 12px;
                margin-top: 8px;
            }

            &-error {
                display: flex;
                align-items: center;
                color: #f5222d;
                font-size: 12px;
                margin-top: 8px;
            }
        }

        &-auxiliary {
            &-title {
                margin-top: 20px;
                display: flex;
                align-items: center;

                span {
                    color: #faad14;
                    font-size: 14px;
                    margin: 0 4px;
                }
            }

            &-content {
                margin-top: 8px;
                background: #ffffff;
                border: 0.5px solid rgba(250, 173, 20, 0.20);
                border-radius: 2px;
                padding: 10px 16px;
            }
        }
    }

    .demo {

        &-content {
            margin: 16px 0;
        }
    }

    .codetest {

        &-topic {
            font-size: 15px;
            font-weight: 400;
            text-align: LEFT;
            color: #333333;
            line-height: 23px;
            margin: 16px 0;
        }

        &-btns {
            margin-top: 20px;

            &-btn {
                height: 32px;
                border: 1px solid var(--color);
                border-radius: 2px;
                cursor: pointer;
                display: flex;
                align-items: center;
                padding: 0 16px;
                width: fit-content;
                font-size: 14px;
                font-weight: 400;
                color: var(--color);
                line-height: 22px;
                --color: #1677ff;
                --hover: #e8f1ff;

                &:hover {
                    background: var(--hover);
                }
            }
        }
    }
}