| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* 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 {
- font-size: 34rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #000000;
- padding: 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;
- }
|