
.history-record {
  padding: 60px 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.history-record h3 {
  width: 100%;
  color: #bdbdbd;
  font-size: 24px;
  margin: 0;
  text-align: center;
}

.history-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.history-del-btn {
  position: absolute;
  right: -12px;
  background-color: transparent;
  border: none;
  padding: 12px;
}

.history-record__content {
  margin: 10px auto;
  font-size: 16px;
  display: flex;
  justify-content: center;
}

.history-record__content a {
  /* margin: 0 6px; */
  color: #FEBD2B;
  text-decoration: none;
}

.history-record__content a:hover {
  text-decoration: underline;
}

.history-record__content a::after {
  content: '，';
  color: #fff;
}

.history-record__content a:last-child::after {
  content: '';
}

@media screen and (max-width: 824px) {
  .history-record {
    padding: 10px 16px;
  }

  .history-header h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
  }

  .history-record__content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 6px;
    font-size: 12px;
  }
  
  .history-record__content a { 
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin: 0;
  }

  .history-record__content a::after {
    content: '';
  }
}
