.time-box {
  background: linear-gradient(90deg, #032cb4, #29a2f9, #67ebff);
  height: 120px;
  position: relative;
  width: 510px;
  z-index: 2;
  border-radius: 10px;
}
.time-content {
  background: rgba(241, 243, 249);
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  flex: 1;
  height: calc(100% - 10px);
  left: 5px;
  overflow: hidden;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 5px;
  width: calc(100% - 10px);
}
.beforeTime {
  z-index: 100;
}
.time-content .numBox {
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  color: #fff;
  flex: 4;
  height: 90px;
  line-height: 90px;
  margin-right: 10px;
  position: relative;
  width: 90px;
}
.time-content .numBox:last-child {
  margin-right: 0;
}
.time-content .numBox .downBox,
.time-content .numBox .upBox {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 100%;
}
.time-content .numBox .upBox {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  bottom: 50%;
  box-sizing: border-box;
  top: 0;
  transform-origin: bottom;
}
.time-content .numBox .downBox {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  bottom: 0;
  box-sizing: border-box;
  line-height: 0;
  overflow: hidden;
  top: 50%;
  transform-origin: top;
}
.time-content .numBox .time-num {
  color: #020b14;
  font-size: 44px;
  font-weight: 600;
  height: 90px;
  margin-top: -10px;
  position: absolute;
  text-align: center;
  width: 100%;
}
.time-content .numBox .time-num:after {
  bottom: 20px;
  box-sizing: border-box;
  color: #020b14;
  content: "天";
  font-size: 16px;
  font-weight: 400;
  height: 34px;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.time-content .hoursBox .time-num:after {
  content: "时";
}
.time-content .minutesBox .time-num:after {
  content: "分";
}
.time-content .secondsBox .time-num:after {
  content: "秒";
}
@media screen and (max-width: 1600px) {
  .time-box {
    width: 490px;
  }
  .time-content .numBox .time-num {
    font-size: 40px;
    height: 80px;
  }
  .time-content .numBox .time-num:after {
    font-size: 14px;
    height: 26px;
  }
}
@media screen and (max-width: 1440px) {
  .time-box {
    width: 460px;
    height: 110px;
  }
  .time-content .numBox {
    height: 80px;
    line-height: 80px;
  }
  .time-content .numBox .time-num {
    font-size: 32px;
    height: 70px;
  }
  .time-content .numBox .time-num:after {
    height: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .time-box {
    width: 370px;
  }
}
/*# sourceMappingURL=times.css.map */