.flex {
  display: flex;
}
.f-d_c {
  flex-direction: column;
}
.j-c_c {
  justify-content: center;
}
.j-c_s-b {
  justify-content: space-between;
}
.a-i_c {
  align-items: center;
}
.flex_1 {
  flex: 1;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p_r {
  position: relative;
}
.p_a {
  position: absolute;
}
.time-box { 
  min-width: 320px;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  padding-bottom: 10px;
  position: relative;
}
.time-box .top {
  margin-bottom: 16px;
  height: 100px;
  border-radius: 8px;
  border-bottom: 1px solid #ffe0e0;
  background: linear-gradient(180deg, #ffe0e0 0%, white 100%);
  box-sizing: border-box;
  padding: 10px 10px 0 31px;
}
.time-box .top .bks {
  display: block;
  width: 96px;
  height: 89px;
  margin-top: -4px;
}
.time-box .top .rest {
  font-size: 18px;
  font-weight: 700;
  color: #ff2e31;
}
.time-box .top .count_d {
  margin: 6px 0 2px;
}
.time-box .top .count_d span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  width: 18px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(180deg, #ff7d7f 0%, #ff2e31 100%);
}
.time-box .top .count_d .dots {
  color: #ffc2c3;
  margin: 0 5px;
}
.time-box .top .t_tx {
  flex: 1;
  text-align: center;
  color: #666666;
  font-size: 12px;
}
.time-box .kc {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 14px;
  text-align: center;
}
.time-box .b_infos {
  padding: 0 10px;
}
.time-box .form-input {
  width: 100%;
  height: 40px;
  opacity: 1;
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  padding-left: 10px;
  box-sizing: border-box;
  /* chrome */
  /* 火狐浏览器 */
}
.time-box .form-input img {
  display: block;
  width: 16px;
  height: 18px;
  margin-right: 10px;
}
.time-box .form-input input {
  outline: none;
  display: block;
  border: none;
  flex: 1;
}
.time-box .form-input input::-webkit-outer-spin-button,
.time-box .form-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.time-box .form-input input[type="number"] {
  -moz-appearance: textfield;
}
.time-box .form {
  width: 100%;
}
.time-box .form .form_tips {
  margin: 16px 0;
  color: #666666;
  font-size: 12px;
}
.time-box .form .form_tips img {
  margin-right: 4px;
  cursor: pointer;
}
.time-box .form .form_tips a {
  color: #387ffc;
font-size: 10px;
}
.time-box .form .sub_btn {
  width: 100%;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  background: linear-gradient(180deg, #387ffc 0%, #75a8ff 100%);
}
.time-box .box-xs {
  width: 100%;
  opacity: 1;
  border-radius: 8px;
  background: whitesmoke;
  margin: 16px 0 9px;
  box-sizing: border-box;
  padding: 10px;
}
.time-box .box-xs .txt {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #999999;
}
.time-box .box-xs_wrapper {
  height: 120px;
  overflow: hidden;
  margin-top: 5px;
}
.time-box .box-xs_list {
  height: 100%;
}
.time-box .box-xs_items {
  font-size: 12px;
  color: #999999;
  width: calc(100% - 34px);
  height: 30px;
  opacity: 1;
  margin: 5px auto;
  border-radius: 100px;
  background: white;
  animation-name: flipAnimation;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  padding: 0 15px;
}
.time-box .box-xs_items img {
  display: block;
  margin-right: 3px;
}
.time-box .box-xs_items:nth-child(1) {
  animation-delay: 0s;
}
.time-box .box-xs_items:nth-child(2) {
  animation-delay: 1s;
}
.time-box .box-xs_items:nth-child(3) {
  animation-delay: 2s;
}
@keyframes scrollAnimation {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes flipAnimation {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(0.9);
  }
}
.login-mark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 22222;
  overflow: hidden;
  display: none;
}
.login-container {
  width: 300px;
  height: 200px;
  opacity: 1;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-container .error-tip {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 0px;
  color: #333333;
  margin-bottom: 16px;
}
.login-container .error-info {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 22px;
}
.login-container .submit-ok {
  cursor: pointer;
  width: 190px;
  height: 40px;
  opacity: 1;
  border-radius: 100px;
  background: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #28abdc;
  border: 1px solid #28abdc;
  text-align: center;
  line-height: 40px;
}
