* {
  margin: 0;
  padding: 0;
}
/* 定一个旋转动画 用于实现波浪效果 */
@keyframes progressRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.heightc-phone {
  height: calc((100vh - 120px) / 5);
  margin-bottom: 10px;
}

.tit-phone {
  font-size: 20px;
  text-align: center;
  margin-top : 20px;
  font-weight: bold;
}
.box-phone {
  width: 100%;
  /*height: 100%;*/
  border: 0.01rem solid #6495ed;
  padding: 0 5px;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: #000;
}
.box-phone .number{
  font-size: 24px;
}
  /* 设置外层元素样式 */
.progress-box-phone {
  position: absolute;
  width: 55px;
  height: 55px;
  top: 50%;
  bottom: 5px;
  border-radius: 50%;
  right: 3%;
  transform: translate(-3%, -50%);
  background: #fff;
  overflow: hidden;
  border: 0.01rem solid #6495ed;
}
.heightc {
  height: calc((100vh - 60px) / 8);
  /* margin-bottom: 5px; */
}

.box {
  width: 100%;
   height: auto;
  padding: 0 5px;
  /* position: relative; */
  border: 0.01rem solid #6495ed;
}

.topNum,
.topNum_per {
  display: flex;
  justify-content: space-between;
  height: 15px;
}
.topNum_per {
  display: flex;
  justify-content: end;
}
.mtitle {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.tit {
  font-size: 20px;
  text-align: center;
  /* margin-bottom: 5px; */
}

/* 设置进度条样式 */
.progress {
  position: absolute;
  /* 波浪占据外层圆形区域的百分比 由 --progress控制 */
  top: calc(100% - var(--progress));
  left: -50%;
  transform: translateX(-50%);
  z-index: 9;
  width: 200%;
  height: 200%;
  border-radius: 34%;
  background: #6495ed;
  /* 添加旋转动画效果 */
  animation: progressRotate 3.5s linear 0s infinite;
  /* 由于上面使用了transform 且动画中也使用了transform 设置该属性使其叠加生效 */
  /*animation-composition: add;*/
}

.per_time{
  font-weight: bold;
  color: #171717;
}

/* 设置进度数字样式 */
.number {
  /*color: red;*/
  z-index: 10;
  font-size: 28px;
  font-weight: 600;
}

.active{
  color: red;
  font-size: 30px;
  font-weight: 900;
}

/* 设置进度数字样式 */
.vol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
/* 设置生产数字样式 */
.pro {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  margin: 0;
  font-size: 0.3rem;
}


button {
  background: none;
  width: 80px;
  color: #000;
  text-align: center;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
  /* font-size: 16px; */
  /* margin: 4px 2px; */
  cursor: pointer;
  border-radius: 6px; /* 按钮边缘圆滑 */
}
p {
  margin: 0;
}
.bottom_box_flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 960px) and (max-width: 1500px) {
  /* 横屏样式 */
  .bottom_box {
    /*padding-top: 5px;*/
  }
  .top_box{
    position: relative;
    /*height: 40px;*/
    height: 20px;
  }
  .head {
    text-align: center;
    margin-top: 5px;
  }
  .footer {
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
    position: absolute;
    top: 3px;
    right: 0;
  }
  /* 设置外层元素样式 */
  .progress-box {
    position: relative;
    width: 50px;
    height: 50px;
    top: 15px;
    bottom: 5px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    overflow: hidden;
    border: 0.01rem solid #6495ed;
  }
}
@media screen and (min-width: 800px) and (max-width: 959px) {
  /* 竖屏屏样式 */
  .bottom_box {
    padding-top: 15px;
  }
  /* 设置外层元素样式 */
  .progress-box {
    position: relative;
    width: 35px;
    height: 35px;
    top: 15px;
    bottom: 5px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    overflow: hidden;
    border: 0.01rem solid #6495ed;
  }
  .head {
    text-align: center;
    margin-top: 15px;
  }
  .footer {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1500px){
  .progress-box {
    position: relative;
    width: 50px;
    height: 50px;
    top: 15px;
    bottom: 5px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    overflow: hidden;
    border: 0.01rem solid #6495ed;
  }
  .footer {
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
    position: absolute;
    top: 3px;
    right: 0;
  }
  .head {
    text-align: center;
    margin-top: 15px;
  }
}
