
/* 模态框的基础样式 */
.modal {
  display:none; /* 默认隐藏 */
  position: fixed; /* 固定定位 */
  z-index: 1; /* 位于顶层 */
  left: 0;
  top: 0%;
  width: 100%; /* 全宽 */
  height: 100%; /* 全高 */
  overflow: auto; /* 启用滚动条 */
  background-color: rgb(0,0,0); /* 背景颜色 */
  background-color: rgba(0,0,0,0.4); /* 背景颜色，半透明 */
}
 
/* 模态内容框 */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% 从顶部和自动水平居中 */
  padding: 20px;
  border: 1px solid #888;
  width: 70%; /* 可根据需要调整宽度 */
  border-radius:10px;
  height:700px;
 /* background: url("../images/bg_2.png") no-repeat bottom center #FFFFFF; */
}
 
/* 关闭按钮 */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
 
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
