.msg_box{
    display: none;
    position: fixed; /* Stay in place */  
    z-index: 99999999; /* Sit on top */  
    left: 0;  
    top: 0;  
    width: 100%; /* Full width */  
    height: 100%; /* Full height */  
    overflow: hidden; /* Enable scroll if needed */  
    background-color: rgb(0,0,0); /* Fallback color */  
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */  
    transition: opacity 0.5s ease-in-out;  
    -webkit-user-select: none;
      /* Safari */
      -moz-user-select: none;
      /* Firefox */
      -ms-user-select: none;
      /* IE 10+ */
      user-select: none;
  }
    .msg_dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(162, 86, 0, 0.9);
      border-style:solid rgba(95, 70, 28, 0.5);
      border-width: 0px;
      box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.556); /* 添加阴影 */
    border-radius: 10px;
    font-family: '楷体';
    min-width: 200px;
    max-width: 333px;
    padding: 10px;
    box-sizing: border-box;
  }.msg_dialog .title{
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 9px;
    margin-left: 28px;
    color: rgb(255, 242, 0);
    font-size: 14px;
     font-weight: bold;
  }
  .msg_dialog .titleicon{
    position: absolute;
    left: 10px;
    top: 10px;
  width: 14px;
  height: 14px;
  border:0 solid;
  border-radius:50%;
  background-color: rgb(0, 222, 0);
  }
  
  .msg_dialog .close{
    position: absolute;
    top: 8px;
    right: 0px;
    padding-right: 10px;
  
    font-size: 18px;
    font-weight: bold;
  color: rgb(255, 255, 255);
  }
  .msg_dialog .close:hover{
      cursor: pointer;
      color: #ff0000;
  }
  .msg_dialog .closeBtn{
    font-size: 12px;
    font-weight: bold;
    width: auto;
    height: auto;
    float: right;
    padding:5px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    color: rgb(255, 255, 255);
  background-color: rgba(0, 70, 255, 0.8);
  border-radius:10px;
  }
  .msg_dialog .closeBtn:hover{
      cursor: pointer;
      background-color: rgb(234, 231, 245);
      color: rgb(8, 0, 240);
  }
  
  
  .msg_dialog-content {
    text-align: relative;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-family: '楷体';
    color: antiquewhite;
    word-wrap: break-word;
  }