.order-title::before {
  position: absolute;
  content: '';
  width: 4px;
  height: 16px;
  background: #e5e5e5;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  top: 2px;
}

.order-type {
  height: 48px;
  background: #2b4a30;
  border: 1px solid #30933f;
  border-radius: 16px;
  margin: 24px 0;
  padding: 0 36px;
}
.order-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.order-item {
  padding: 1rem 36px;
  background: #142a18;
  border-radius: 16px;
}
.order-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid #2b4a30;
}
.order-item img {
  border-radius: 16px;
  margin-right: 24px;
}
.order-game-title {
  height: 24px;
  background: #1A3C20;
  border-radius: 6px;
  color: #30933F;
  padding: 0 10px;
  display: inline-block;
  max-width: 100%;
}
.order-money {
  color: #ef5350;
}
.order-footer {
  border-top: 1px solid #2b4a30;
  display: flex;
  justify-content: flex-end;
}
.game-info-content {
  flex: 1;
  overflow: hidden;
}

.game-buy-btn {
  width: 120px;
  height: 40px;
  background: linear-gradient(180deg,#4ed462, #4dd160, #30933f);
  border-radius: 20px;
  box-shadow: 3px 3px 10px 0px rgba(48,147,63,0.10);
  cursor: pointer;
}

.guide-container {
  background: #142a18;
  border-radius: 16px;
  padding: 20px 36px;
}
@media screen and (max-width: 992px) {
  .order-item {
    border-radius: 6px;
    padding: 1rem 12px;
    margin-bottom: 12px;
  }
  .order-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: .8rem;
  }
  .order-money {
    text-align: end;
  }
  .order-info {
    display: flex;
  }
  .game-role {
    width: 70px;
    flex-shrink: 0;
  }
  .game-detail-container {
    height: auto;
    background: #2b4a30;
    padding: 1rem 12px;
  }
  .guide-container {
    padding: 1rem 12px;
  }
}