/* 结果提示弹窗样式 */
.result-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.result-modal-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 80%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.3s ease-out;
}

.result-message {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.result-confirm-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.result-confirm-btn:hover {
  background: #45a049;
}

/* 动画效果 */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 按钮容器样式 */
.custom-modal-button {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 内容容器 */
.button-content {
  position: relative;
  display: inline-block;
}

/* 图片样式保持不变 */
.custom-modal-button img {
  display: block;
  width: 100%;
  height: auto;
}

/* 文字样式 */
.button-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .button-text {
    font-size: 14px;
  }
}
.pagebar { padding:20px; overflow:hidden; clear:both}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 3px; line-height:100%
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}
.pagination a.page-num-current {
  color: #fff;
  background: #fa2b4b;
  border: 1px solid #333;
}
.pagination .st{ font-family:宋体}
.text-secondary{ text-align:center; padding:20px 0}