
.model{
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;

}

.model.copyModel{
  background-color: rgba(255, 255, 255, 0);
}

.model .model_box{
  min-width: 60%;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  border: #999999 1px solid;
  z-index: 999;
}
.model .model_box p{
  line-height: 16px;
  text-align: center;
}

.model .model_box h3{
  margin-top: 0;
  text-align: center;
}
.model .model_box hr{
  margin: 10px 0;
  border: none;
  height: 1px;
  background-color: white;
}
.model .model_box button{
  width: 100%;
  max-width: 300px;
  background-color: #000; /* 背景顏色為黑色 */
  color: #fff; /* 文字顏色為白色 */
  padding: 10px 20px; /* 上下左右的內距 */
  border: none; /* 去掉邊框 */
  border-radius: 5px; /* 圓角效果 */
  font-size: 16px; /* 文字大小 */
  cursor: pointer; /* 滑鼠變成手型 */
  text-align: center; /* 文字置中 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px/* 輕微陰影效果 */

}
