.resultsBox {
  width: 100%;
  height: 68px;
  background: #f5f5f5;
  padding: 0 40px;
  margin: 0 0 66px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resultsBox .text {
  font-size: 16px;
}

.resultsBox .text span {
  color: #468f73;
  font-weight: bold;
}

.resultsBox .num {
  font-size: 14px;
}

.resultsBox .num span {
  font-size: 16px;
  font-weight: bold;
  color: #468f73;
  padding: 0 5px 0 0;
}

@media screen and (max-width: 1366px) {
  .resultsBox {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    padding: 0.2rem;
    margin: 0 0 1.36rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }

  .resultsBox .text {
    font-size: 0.24rem;
  }

  .resultsBox .num {
    width: 100%;
    font-size: 0.2rem;
    position: absolute;
    left: 0.2rem;
    top: 1.4rem;
  }

  .resultsBox .num span {
    font-size: 0.26rem;
    font-weight: bold;
    color: #468f73;
    padding: 0 0.06rem 0 0;
  }
}

