﻿.input-fields {
    width: 85px;
    height: 60px;
    padding: 10px; 
    font-size: 26px; 
    border-radius: 5px;
    border: 1px solid #ccc; 
    position: relative;
    top: -5px;
}

  .btn {
  padding: 10px 25px;
  margin: 2px;
  border: none;
  color: #fff;
  background-color: #757475;
  border-radius: 10px;
  font-size: 2em;
  cursor: pointer;
        }
  .btn:hover {
    background-color: #888;
    color: #2C2E31;
  }
.btn.active {
    background-color: #757575;
  color: white; 
}
 .btn-clicked {
 background-color: red; 
 color: white;
}

.box {
  width: 350px;
  height: 355px;
  border-radius: 10px;
  border: 2px solid transparent; 
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.box:hover {
  border-color: #ff6200;
}
.box-image {
  width: 250px;
  height: 250px;
  border-radius: 12px;
  margin: 5px auto;
}
.box-title {
  font-size: 2em;
}
.box-info {
  position: absolute;
  bottom: 10px; /* Adjust bottom position as needed */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px; /* Padding for inner elements */
  box-sizing: border-box;
}
.price, .sold-count {
  color: #edaff7;
  font-size: 12px;
  margin: 0;
}
.container {
  display: flex;
  flex-wrap: wrap; /* 允许换行 */
  gap: 10px; /* 盒子之间的间隔 */
  align-items: center;
  justify-content: space-evenly;
}
