 .modal {
    display: none; /* 默认不显示 */
    position: fixed; /* 固定定位 */
    z-index: 1; /* 置于顶层 */
    left: 0;
    top: 0;
    width: 100%; /* 宽度100% */
    height: 100%; /* 高度100% */
    overflow: auto; /* 如果有滚动条则显示 */
    background-color: skyblue; /* 背景颜色 */
    background-color: rgba(0,0,0,0.4); /* 背景颜色半透明 */
  }
  .modal-content {
    /* background-color: #fefefe; */
	background-color: white;
    margin: 25% auto; /* 25% 从顶部开始，居中显示 */
    padding: 20px;
    border: 1px solid #888;
    width: 85%; /* 宽度 */
	border-radius: 15px;
  }
  
  
  .modal-content button {
	background-color: rgba(0,0,0,0.4);
  	/* margin: -20px -10px auto auto; */
  	width: 20px;
  	height: 40px;
  	background: gainsboro;
	font-size: 30px;
	text-align: center;

  }
  
.modal-content p{
	padding-left: 30px;
	color: black;
	
}

.modal-content h4{
	padding-left: 30px;
	color: black;
}
  .queren{
	  background: lightgoldenrodyellow;
	  font-size: 15px;
	  text-align: center;
	  margin: 10px;
	  padding: 10px 20px 10px 10px;
	  border-radius: 5px;
	  cursor: pointer;
	  color: black;
  }
