.popContainer {
    /*背景遮罩*/
    z-index: 99999;
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    max-height: 100%;
    max-width: 100%;
    display: inline-block;
    text-align: center;
}
.popMain {
    /*內容及控制容器*/
    top: 40%;
    position: relative;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    display: inline-block;
}
.popContent {
    /*內容容器*/
    -moz-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
    font-size: 1.5em;
    background: #fff;
    color: #333;
    padding:20px 15px;
}

    .popContent p {
        /*內容文字*/
        margin:2px auto;
        text-align: center;
    }

    .popContent .tbpopPrompt {
        /*prompt輸入欄*/
        border: 1px solid #BBBBBB;
        background: #fff;
        /* 邊角圓弧化，不同瀏器覧設定不同　*/
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        height:1em;
        font-size:1em;
    }

.popCtrl {
    /*控制容器*/
    display: flex;
    flex-direction: row;
    height: 2em;
    width: 100%;
}

    .popCtrl input {
        /*控制按鈕*/
        transition: opacity 1s;
        opacity: 0.5;
        flex: auto;
        color: #fff;
        border: 0px;
        padding: 5px 0px;
    }

        .popCtrl input:hover {
            opacity: 1;
        }

    .popCtrl .popConfirm {
        /*confirm確認按鈕*/
        background: #4CAF50;
    }

    .popCtrl .popCancel {
        /*confrim取消按鈕*/
        background: #E91E63;
    }

    .popCtrl .popOk {
        /*alert確認按鈕*/
        background: #4CAF50;
    }

    .popCtrl .btnpopPrompt {
        /*prompt確認按鈕*/
        background: #4CAF50;
    }

/*
.clear {
    width: 20px;
    height: 20px;
    float: right;
    /*方便相对于父元素进行定位
}

.clear:hover {
    cursor: pointer;
}

.clear::before,
.clear::after {
    content: " ";
    display: block;
    height: 20px;
    width: 2px;
    background: #E91E63;
    position: absolute;
    margin-left: -15px;
    /*方便进行定位*/
/*设置top和right使图像在20*20框中居中
}

.clear::before {
    transform: rotate(45deg);
    /*进行旋转
}

.clear::after {
    transform: rotate(-45deg);
}

.clear:hover::before,
.clear:hover::after {
    width: 3px;
}*/
