.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;
  }
}

/* 全部订单页面的样式 */
.allOrder {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  padding: 0 20px;
}
.allOrder .allOrder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.allOrder .order-container ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.allOrder .order-container ul li {
  position: relative;
  padding-bottom: 10px;
}
.allOrder .order-container ul li.active {
  font-weight: bold;
}
.allOrder .order-container ul li.active::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #30933F;
  position: absolute;
  left: 0;
  bottom: 0;
}
.allOrder .order-card {
  display: none;
}
.allOrder .order-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
    .search-input {
        display: none;
    }
    .navbar-collapse {
        display: none;
    }
    .nav-header {
        display: none;
    }
}


/* 评价页面的样式 */
.comment {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  padding: 0 20px;
}
.comment .comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comment .comment-content ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}
.comment .comment-content ul li {
  position: relative;
  padding-bottom: 10px;
}
.comment .comment-content ul li.active {
  font-weight: bold;
}
.comment .comment-content ul li.active::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #30933F;
}
.comment .comment-card {
  display: none;
}
.comment .no-comment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 平台建议页面的样式 */
.advise {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  padding: 0 20px;
}
.advise .advise-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.advise .advise-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.advise .advise-container .text {
  font-size: 12px;
  margin-top: 30px;
}
.advise .advise-container textarea {
  margin: 20px 0;
  border-radius: 10px;
  padding: 10px;
  background: #e5e5e519 ;
  color: #fff;
}
.advise .advise-container button {
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg,#4ed462, #30933f);
  border-radius: 22px;
  color: #fff;
  border: none;
}