//css for TipsPopup
@import 'cbkfe-assets/dist/css/control.less';

.sead-popup-box {
    .fade-transition--middle {
        transform: translateY(-9rem);
    }
}


.popup-context {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    width: 14rem;
    background: #FFFFFF;
    border-radius: 0.4rem;
    padding: 1.98rem 1.05rem 1.25rem 1.05rem;

    .image-tips {
        position: absolute;
        height: 4rem;
        width: 4rem;
        top: -2rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .content-title {
        font-size: 0.7rem;
        font-weight: 400;
        color: #444444;
        line-height: 1.3rem;
        white-space: pre-wrap;
        // text-align: center;
        // margin: 0 0.5rem;

        &-start {
            text-align: left;
        }

        &-normal {
            text-align: center;
        }
    }

    .popup-button-layout {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 1.3rem;

        .button-canal {
            align-items: center;
            justify-content: center;
            display: flex;
            width: 5.75rem;
            height: 2rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #414244;
            line-height: 1;
            background-color: #fff;

            &-arc {
                border-radius: 1rem;
                border: 1px solid #9D9D9D;
            }

            &-normal {
                border-radius: 0.3rem;
                border: 1px solid #9D9D9D;
            }
        }

        .button-sure {
            align-items: center;
            justify-content: center;
            display: flex;
            border-radius: 1rem;
            background: #FF2244;
            width: 5.75rem;
            height: 2rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #FFFFFF;
            line-height: 1;

            &-arc {
                border-radius: 1rem;
                border: 1px solid #FF2244;
            }

            &-normal {
                border-radius: 0.3rem;
                border: 1px solid #FF2244;
            }
        }

        .button__alone {
            align-items: center;
            justify-content: center;
            display: flex;
            border-radius: 1rem;
            background: #FF2244;
            width: 100%;
            height: 2rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #FFFFFF;
            line-height: 1;

            &-arc {
                border-radius: 1rem;
                border: 1px solid #FF2244;
            }

            &-normal {
                border-radius: 0.3rem;
                border: 1px solid #FF2244;
            }
        }
    }

    .popup__close {
        position: absolute;
        bottom: -3rem;
        width: 1.5rem;
        height: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }
}