
.xb-message-box__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    margin: 0;
    z-index: 2002;
    display: none;
    width: 100%;
    height: 100%;
  }
  
  .xb-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: #000;
    display: none;
    z-index: 99;
  }
  
  .xb-message-box {
    display: inline-block;
    width: 357px;
    padding-bottom: 10px;
    vertical-align: middle;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ebeef5;
    font-size: 18px;
    -webkit-box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    text-align: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2003;
  }
  
  .xb-message-box__header {
    position: relative;
    padding: 15px 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .xb-message-box__title {
    padding-left: 0;
    margin-bottom: 0;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
  }
  
  .xb-message-box__title img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }
  
  .xb-close {
    cursor: pointer;
    width: 13px;
    height: 13px;
  }
  
  .xb-close:hover {
    opacity: 0.8;
  }
  
  .xb-message-box__content {
    padding: 10px 50px;
    color: #606266;
    font-size: 14px;
  }
  
  .xb-message-box__container {
    margin: 0;
  }
  
  .xb-message-box__container p {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
    line-height: 22px;
    word-break: break-all;
  }
  
  .xb-message-box__container p > span {
    color: #f5222d;
  }
  
  .xb-message-box__btns {
    padding: 5px 15px 0;
    text-align: right;
  }
  
  .xb-message-box__btns button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 12px;
    border-radius: 5px;
    padding: 9px 15px;
    font-size: 12px;
    border-radius: 3px;
  }
  
  .xb-message-box__btns button:hover {
    opacity: 0.8;
  }
  
  .xb-message-box__btns .confirm {
    color: #fff;
    background-color: #00abee;
    border-color: #00abee;
  }
  