| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /* pages/clock/clock-tongji/list.wxss */
- page {
- background-color: #F5F5F5;
- }
- .header {
- height: 176rpx;
- padding: 30rpx;
- font-size: 36rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- background: #fff;
- color: #333333;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- margin-top: 20rpx;
- }
- .avatar {
- height: 102rpx;
- width: 102rpx;
- border-radius: 50%;
- position: relative;
- }
- .avatar-img {
- height: 102rpx;
- width: 102rpx;
- border-radius: 50%;
- }
- .avatar-icon {
- width: 32rpx;
- height: 32rpx;
- position: absolute;
- right: -4rpx;
- bottom: -4rpx;
- }
- .header-info {
- margin-left: 40rpx;
- }
- .approveStatus {
- font-size: 26rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #0177FF;
- }
- .approveStatus-color {
- color: #999999;
- }
- .mouth,
- .week {
- margin-top: 20rpx;
- background: #fff;
- }
- .title {
- height: 138rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #000000;
- padding: 0 30rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .time {
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #000000;
- }
- .content {
- height: 116rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- border-bottom: 1rpx solid #F5F5F5;
- padding: 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .label {
- color: #666666;
- }
- .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: 60rpx;
- 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;
- }
|