 /* 模态框的基础样式 */
 .modalSheca {
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    z-index: 1; /* 置于顶层 */
    left: 0;
    top: 0;
    width: 100%; /* 宽度100% */
    height: 100%; /* 高度100% */
    overflow: auto; /* 启用滚动条 */
    background-color: rgb(0,0,0); /* 背景颜色 */
    background-color: rgba(0,0,0,0.4); /* 背景颜色，带透明度 */
    font-size: 12px;
  }
  
  /* 模态内容框样式 */
  .modalSheca-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% 从顶部和自动水平居中 */
    padding: 10px;
    border: 1px solid #888;
    width: 400px; /* 可根据需要调整宽度 */
  }

  .modalSheca-main-content {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
  }
  

    /* 关闭按钮样式 */
  .modalSheca-submt {
      font-size: 12px;
      width: 80px;
  }

  /* 关闭按钮样式 */
  .modalSheca-close {
    color: #aaa;
    float: right;
    font-size: 12px;
    font-weight: bold;
  }
  
  .modalSheca-close:hover,
  .modalSheca-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }