.countdown-style .imgbox{
  position: relative;
  background-color: white;
  border: 8px solid #EF3C85;
  outline: 8px solid #EF3C85;
  outline-offset: 0px;
  border-radius: 12px; /* 内层圆角 */
}

.countdown-style .imgbox-inner{
    padding: 16px;
    width: 100%;
    aspect-ratio: 1/1;
}

.countdown-style .bid-icon{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 50%;
}

.countdown-style .promo-tag{
    background-color: #EF3C85;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
}

@media(max-width: 768px){
    .countdown-style .promo-tag{
        font-size: 10px;
    }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none; /* 預設隱藏 */
}

.overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.67);
  box-shadow: 0 12px 24px 0 rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 8px;
  gap: 16px;
}

.loading-spinner {
  border: 10px solid rgba(255, 255, 255, 0.5);
  border-top: 10px solid #ff9709;

  border-radius: 50%;
  width: 88px;
  height: 88px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lock-scroll {
  overflow: hidden;
}

.ichiban-container{
  padding: 40px 90px;
}

.ichiban-card-container{
  padding-top: 90px;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .ichiban-container{
    padding: 0px;
  }

  .ichiban-card-container{
    padding: 0px;
    margin: 0px;
  }
  
}