| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .float-but {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 120rpx;
- height: 120rpx;
- background-color: var(--assist);
- border-radius: 50%;
- color: #ffffff;
- transform: translate(-50%, -50%);
- }
- .history {
- background-color: #F4F5F7;
- .item {
- width: 100vw;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- background-color: #ffffff;
- margin: 10rpx 0;
- .time {
- height: 40rpx;
- line-height: 40rpx;
- font-size: 28rpx;
- color: #333333;
- }
- .location {
- margin-top: 10rpx;
- .iconfont {
- margin-right: 4rpx;
- }
- line-height: 34rpx;
- font-size: 24rpx;
- color: #666666;
- }
- .exp {
- line-height: 34rpx;
- font-size: 24rpx;
- color: #999999;
- margin-top: 10rpx;
- }
- .user {
- height: 64rpx;
- margin-top: 12rpx;
- display: flex;
- .portrait {
- width: 64rpx;
- height: 64rpx;
- font-size: 0;
- border-radius: 50rpx;
- margin-right: 10rpx;
- overflow: hidden;
- image {
- width: 100%;
- height: 100%;
- }
- .text {
- width: 100%;
- height: 100%;
- line-height: 64rpx;
- text-align: center;
- background: #F0F3FF;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #3874F6;
- }
- }
- .main {
- flex: 1;
- .name {
- height: 34rpx;
- line-height: 34rpx;
- font-size: 24rpx;
- color: #333333;
- }
- .text {
- height: 28rpx;
- line-height: 28rpx;
- font-size: 20rpx;
- color: #999999;
- margin-top: 2rpx;
- }
- }
- }
- }
- }
- .attachment {
- .label {
- display: flex;
- justify-content: space-between;
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- margin-top: 20rpx;
- navigator {
- color: #3874F6;
- padding-left: 20rpx;
- }
- }
- }
|