.error_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.error_image {
  width: 285px;
  height: 285px;
}
.error_text {
  font-weight: 500;
  font-size: 16px;
  color: #777777;
  line-height: 19px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
/* 当屏幕宽度小于等于 600px 时应用这些样式 */
@media (max-width: 768px) {
  .error_image {
    width: 80%;
  }
}
