| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @import "../../setclient/modules/address/head.scss";
- .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;
- }
- }
- }
- }
|