123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- .userDetail {
- .banner {
- width: 100%;
- height: 212px;
- overflow: hidden;
- vertical-align: middle;
- }
- .userInfo {
- overflow: hidden;
- .avatar {
- width: 24px;
- height: 24px;
- border-radius: 50%;
- overflow: hidden;
- }
- .name {
- padding-left: 8px;
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- line-height: 22px;
- display: flex;
- align-items: center;
- }
- .buyNum {
- color: #ff802c;
- font-size: 14px;
- display: flex;
- align-items: center;
- &::before {
- content: ' ';
- display: inline-block;
- width: 1px;
- height: 12px;
- margin: 0 8px;
- background: #d3d3d3;
- }
- }
- .buyNumInfo {
- font-size: 12px;
- color: #6a6a6a;
- display: flex;
- align-items: center;
- .iconBuy {
- margin-right: 5px;
- }
- }
- .info {
- font-size: 16px;
- font-weight: 600;
- color: var(--van-primary);
- line-height: 17px;
- }
- .userTitle {
- font-size: 18px;
- color: #1a1a1a;
- font-weight: 500;
- display: block !important;
- }
- :global {
- .van-cell {
- padding: 12px 14px;
- }
- .van-cell__title {
- flex-basis: 60%;
- }
- .van-cell__title,
- .van-cell__value {
- display: flex;
- align-items: center;
- }
- .van-cell__value {
- flex-basis: 40%;
- justify-content: flex-end;
- }
- .van-cell__label {
- margin-top: 0;
- }
- }
- }
- }
|