/*index.css*/
*{
    margin:0;
    padding:0;
}
/* a标签去除下划线改变颜色 */
a{
    text-decoration: none;
    color: black;
}
/* 弹窗容器 */
.keyui-dialog-box{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*z-index: 100000;*/
}
/* 遮罩层样式 */
.keyui-masking-layer{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    font-size: 15px;
}
/* 弹窗默认样式 */
.keyui-dialog{
    width:50vw;
    height:50vh;
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius:10px 10px 10px 10px;
}
/* 头部设置固定高度 */
.keyui-dialog-head{
    width: 100%;
    height: 44px;
    line-height: 46px;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #0075C2;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    text-align: center;
    color:#fff;
    border-radius: 10px 10px 0 0;
}
/* 右上角关闭图标 */
.keyui-rightUp-close{
    color:#fff;
    position: absolute;
    right: 20px;
    font-size: 25px;
}
/* 弹窗内容区域 */
.keyui-dialog-content{
    text-align: center;
    height: calc(100% - 110px);
    padding: 19px 30px 30px;
    box-sizing: border-box;
    overflow-y: auto;  /* 为什么要设置auto,因为内容区域有时会超出弹窗大小 */
}
/* btn按钮样式 */
.keyui-btn {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #D0021B;
    border: 1px solid #D00210;
    color: #fff;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    -webkit-transition: .1s;
    transition: .1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
}
/* 鼠标移入按钮效果 */
.keyui-btn:hover {
    color: #fff;
    border-color: #fff;
    background-color: red;
}
/* 确认按钮 */
.keyui-btn-primary {
    color: #FFF;
    background-color: #0075C2;
    border-color: #0075C2;
}
/* 确认按钮鼠标移入效果 */
.keyui-btn-primary:hover {
    background: #66b1ff;
    border-color: #fff;
    color: #fff;
}
/* 确认按钮mini样式 */
.keyui-btn-mini {
    margin: 0 12px;
    width: 77px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    border-radius: 3px;
    padding: 0 15px;
}
/* 确认按钮small样式 */
.keyui-btn-small {
    padding: 9px 15px;
    font-size: 12px;
    border-radius: 3px;
}
/* 下框按钮区域居中，来一些边距样式 */
.dialog-bottom{
    background-color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin: auto;
}