clock.wxss 1.1 KB
/* pages/clock/clock.wxss */

.content_box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: #3899e5;
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
  padding-top: 115rpx;
}

.circle_large, .circle_middle, .circle_small {
  width: 327rpx;
  height: 327rpx;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle_middle {
  width: 286rpx;
  height: 286rpx;
}

.circle_small {
  width: 251rpx;
  height: 251rpx;
  font-size: 36rpx;
  background: #fff;
  color: #fc5b63;
  padding: 80rpx;
  box-sizing: border-box;
}
.icon-dui{
  font-size: 90rpx;
}
.punch_info{
  width: 600rpx;
  font-size: 32rpx;
  color: #FFFFFF;
  margin-top: 60rpx;
  text-align: center;
}
.punch_btn {
  width: 200rpx;
  height: 80rpx;
  background: rgba(63, 169, 245, 1);
  border-radius: 10rpx;
  font-size: 36rpx;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 70rpx;
  left: 50%;
  transform: translateX(-50%);
}