/* components/commons/dialog/dialog.wxss */
.dialog-wrapper{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    height: 100%;
    background-color: rgba(0,0,0,.4);
}
.dialog-wrapper.open{
    display: block;
 }
 .dialog-wrapper.close{
    display: none;
 }
.dialog{
   position: absolute;
   left: 50%;
   top: 35%;
   transform: translate3d(-50%, -50%, 0);
   background-color: #fff;
   width: 70%;
   border-radius: 6rpx;
}

.dialog .dialog-head{
   text-align: center;
   padding:32rpx 60rpx 0;
   font-size:36rpx;
   font-weight: 400;
   line-height: 56rpx;
}
.dialog .dialog-body{
    padding: 40rpx 30rpx;
    font-size: 28rpx;
    color: #888;
    height: 100%;
    text-align: center;
}
.dialog .dialog-footer{
   display: flex;
}
.dialog .dialog-footer .dialog-btn{
    flex: 1;
    border-radius: 0;
    -webkit-touch-callout: none;
    border-top: 1rpx solid #e9e9e9;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    outline: none;
    font-size: 32rpx;
    height: 80rpx;
    line-height: 80rpx;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.dialog .dialog-footer .dialog-btn:first-child{
    border-bottom-left-radius: 10rpx;
}
.dialog .dialog-footer .dialog-btn:last-child{
    border-bottom-right-radius: 10rpx;
    border-left: 1rpx solid #e9e9e9;
    color:#09BB07;
}