body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.icon-container {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.icon-tip {
  margin-top: 5px;
  font-size: 14px;
}

/* Modal styles */
.custom-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  /* 设置固定宽度和高度 */
  width: 300px; 
  height: 350px; 
}

.custom-modal-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.custom-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
}

.custom-close:hover {
  color: red;
}