123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .punchClock{
- position: relative;
- background: #F5F5F5;
- min-height: 100vh;
- padding: 25px;
- .header{
- background: #FFFFFF;
- padding: 30px;
- border-radius: 30px;
- margin-bottom: 20px;
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- .userAvatarUrl{
- width: 100px;
- height: 100px;
- border-radius: 20px;
- overflow: hidden;
- }
- .infor{
- padding-left: 15px;
- .name{
- font-size: 28px;
- padding-bottom: 18px;
- }
- .address{
- font-size: 25px;
- color: #8e8d8d;
- }
- }
- .state{
- margin-left: auto;
- font-size: 25px;
- align-self: flex-start;
- }
- }
- .content{
- background: #FFFFFF;
- padding: 30px;
- border-radius: 30px;
- margin-bottom: 20px;
- display: flex;
- flex-flow: column nowrap;
- align-items: center;
- .timeContent{
- width: 100%;
- padding-top: 20px;
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-between;
- padding-bottom: 30px;
- .timeItem{
- background: #eae8e8;
- padding: 20px;
- border-radius: 20px;
- .timeTitle{
- font-size: 30px;
- padding-bottom: 8px;
- }
- .timeValue{
- font-size: 27px;
- color: #767272;
- }
- }
- }
- .map{
- height:600px;
- width:100%;
- border-radius: 20px;
- overflow: hidden;
- }
- .tips{
- color: #999999;
- font-size: 18px;
- padding-top: 10px;
- align-self: flex-start;
- }
- .punchClockContent{
- width: 250px;
- height: 250px;
- border-radius: 250px;
- margin-top: 45px;
- display: flex;
- flex-flow: column nowrap;
- justify-content: center;
- align-items: center;
- margin-bottom: 75px;
- .punchClockTitle{
- color: white;
- font-size: 35px;
- padding-bottom: 8px;
- }
- .punchClockTime{
- color: #e8e6e6;
- font-size: 25px;
- }
- }
- .photographContent{
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- padding-left: 20px;
- padding-right: 20px;
- padding-bottom: 25px;
- .photographTitle{
- font-size: 30px;
- }
- .photograph{
- }
- }
- }
- }
|