| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- /* pages/clock/clock-tongji/index.wxss */
- page {
- background: #F5F5F5;
- }
- .header {
- height: 320rpx;
- padding: 30rpx;
- background: #fff;
- box-sizing: border-box;
- margin-top: 20rpx;
- display: flex;
- align-items: center;
- justify-content: space-around;
- flex-direction: column;
- }
- .header-title {
- width: 100%;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #000000;
- box-sizing: border-box;
- padding: 0 15rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .header-title image {
- width: 18rpx;
- height: 30rpx;
- }
- .header-content {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .header-content-items {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- }
- .number {
- font-size: 58rpx;
- font-family: DINCondensed-Bold, DINCondensed;
- font-weight: bold;
- color: #000000;
- }
- .name {
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #444444;
- }
- .calendar-content {
- padding: 30rpx;
- background: #fff;
- }
- .calendar-content-header {
- height: 138rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #000000;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .calendar-content-choose {
- height: 100%;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- display: flex;
- align-items: center;
- }
- .last,
- .next {
- height: 100%;
- width: 75rpx;
- display: flex;
- align-items: center;
- /* justify-content: center; */
- }
- .last {
- width: 120rpx;
- justify-content: center;
- }
- .next {
- justify-content: flex-end;
- }
- .calendar-content-choose image {
- height: 29rpx;
- width: 17rpx;
- }
- .calendar {
- background: #fff;
- }
- .clock-detail {
- margin-top: 20rpx;
- background: #fff;
- padding: 30rpx;
- }
- .titps {
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- margin-top: 20rpx;
- margin-bottom: 100rpx;
- }
- .clock-content {
- display: flex;
- }
- .left {
- float: left;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex-direction: column;
- margin-right: 30rpx;
- }
- .top,
- .bottom {
- width: 16rpx;
- height: 16rpx;
- background: #BBBBBB;
- border-radius: 100%;
- }
- .top {
- margin-top: 15rpx;
- }
- .midden {
- width: 2rpx;
- height: 154rpx;
- background: #DDDDDD;
- }
- .midden-short {
- width: 2rpx;
- height: 60rpx;
- background: #DDDDDD;
- }
- .right {
- float: left;
- }
- .clock {
- /* margin-bottom: 113rpx; */
- }
- .clock-type {
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #000000;
- }
- .address {
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- margin-top: 10rpx;
- display: flex;
- align-items: center;
- }
- .position {
- width: 23rpx;
- height: 28rpx;
- margin-right: 15rpx;
- }
- .clock-in {
- height: 154rpx;
- }
- .clock-out {
- margin-top: -15rpx;
- margin-bottom: 45rpx;
- }
- .shortage {
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FD7235;
- }
- .nextMoney {
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .money {
- font-size: 26rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #000000;
- }
- .money text:first-child {
- font-size: 58rpx;
- font-family: DINCondensed-Bold, DINCondensed;
- font-weight: bold;
- color: #0177FF;
- }
- .no-data {
- margin-bottom: 100rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #000000;
- text-align: center;
- }
|