/***************** 抽奖 *********************/
.lottery-box {
  margin-top: 40px;
}
.lottery-box-cont {
  display: flex;
  justify-content: space-between;
}
.lottery-box-cont .lottery-list {
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
}
.lottery-box-cont .lottery-list h3 {
  width: 350px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(0deg, #c10b0a 0%, #ff5a58 100%) #f9bc9d;
  border-radius: 8px 8px 0px 0px;
}
.lottery-box-cont .lottery-list #lottery-list-box {
  width: 350px;
  height: 320px;
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 0.8px;
  padding: 20px 32px;
  color: #000;
  background: #fff;
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
  overflow: hidden;
}
.lottery-box-cont .lottery-list .lottery-tips {
  margin-top: 28px;
  color: #A61B24;
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 750px) {
  .lottery-box-cont {
    display: block;
  }
  .lottery-box-cont .lottery-list #lottery-list-box {
    height: 4.6rem;
  }
  .lottery-box-cont .lottery-list .lottery-tips {
    margin-top: 0.4rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
}
