| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /* 上层 */
- .db {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 324rpx;
- background: rgba(250, 250, 250, 1);
- border-bottom: 2rpx solid rgba(221, 221, 221, 1);
- }
- .db image {
- width: 150rpx;
- height: 150rpx;
- border-radius: 50%;
- }
- .db .changetx {
- font-size: 26rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- color: rgba(30, 98, 167, 1);
- padding-top: 35rpx;
- }
- /* 下层 */
- .user {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 79rpx;
- border-bottom: 2rpx solid rgba(221, 221, 221, 1);
- }
- .user .wz {
- font-size: 27rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- color: rgba(34, 34, 34, 1);
- padding-left: 29rpx;
- }
- .user .name {
- font-size: 22rpx;
- font-family: SourceHanSansCN-Normal;
- font-weight: 400;
- color: rgba(102, 102, 102, 1);
- padding-right: 40rpx;
- }
- .user image {
- width: 18rpx;
- height: 30rpx;
- padding-right: 30rpx;
- }
|