| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .head {
- display: flex;
- align-items: center;
- width: 100vw;
- height: 120rpx;
- padding: 0 20rpx 0 30rpx;
- box-sizing: border-box;
- .count {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .expand {
- flex: 1;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- .but {
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 80rpx;
- height: 80rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 2rpx solid #CCCCCC;
- margin-left: 20rpx;
- color: #666666;
- }
- }
- }
- .my-card {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 690rpx;
- margin: 0 auto 10rpx;
- height: 100rpx;
- padding: 10rpx 30rpx 0;
- background-color: #fff;
- box-sizing: border-box;
- border-radius: 8rpx;
- .flie {
- display: flex;
- align-items: center;
- height: 100%;
- .image {
- width: 58rpx;
- height: 58rpx;
- }
- .details {
- width: 500rpx;
- height: 100%;
- margin-left: 25rpx;
- .name {
- display: flex;
- align-items: center;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- margin-right: 10rpx;
- }
- .time {
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 14rpx;
- }
- }
- }
- }
|