123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- .container-view {
- height: calc(100vh - 96rpx);
- padding: 36rpx 32rpx;
- box-sizing: border-box;
- background: linear-gradient(180deg, #CFD1DE 0%, #F1F3F4 100%), #F1F3F4;
- background-size: 100% 528rpx;
- background-repeat: no-repeat;
- .user-switch-row {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .name-wrap {
- font-family: DIN, DIN;
- font-weight: 500;
- font-size: 32rpx;
- color: #060809;
- display: flex;
- align-items: center;
- &:active {
- opacity: .8;
- }
- &::before {
- content: "";
- width: 48rpx;
- height: 48rpx;
- margin-right: 16rpx;
- background: url('https://qiniu.bms16.com/FghCVNMWDBKJpqbIrqoxT-de9Has');
- background-size: 100%;
- }
- &::after {
- content: "";
- width: 28rpx;
- height: 28rpx;
- margin-left: 10rpx;
- background: url('https://qiniu.bms16.com/FvLGTjPNELdBiqcSf6S2G4GLSElS');
- background-size: 100%;
- }
- }
- .message {
- width: 44rpx;
- height: 34rpx;
- &:active {
- opacity: .8;
- }
- }
- }
- .user-info-wrap {
- margin: 54rpx auto 48rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .head-img {
- width: 144rpx;
- height: 144rpx;
- border-radius: 50%;
- }
- .user-name {
- font-family: DIN, DIN;
- font-weight: bold;
- font-size: 40rpx;
- color: #060809;
- margin: 12rpx 0 8rpx;
- }
- .e-mail {
- font-family: Futura, Futura;
- font-weight: 500;
- font-size: 24rpx;
- color: #060809;
- }
- }
- .common-tabs {
- display: flex;
- justify-content: space-between;
- .item {
- width: 216rpx;
- height: 216rpx;
- background: #FFFFFF;
- border-radius: 40rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .icon {
- width: 80rpx;
- height: 80rpx;
- margin-bottom: 30rpx;
- }
- .name {
- font-family: PingFangSC, PingFang SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #060809;
- line-height: 32rpx;
- }
- }
- }
- .tabs-wrap {
- width: 100%;
- background: #FFFFFF;
- border-radius: 40rpx;
- margin-top: 24rpx;
- padding: 40rpx 32rpx 32rpx 32rpx;
- .tab-item {
- display: flex;
- align-items: center;
- padding: 32rpx 0;
- border-bottom: 2PX solid #F1F4F5;
- &:last-child {
- border-bottom: none;
- }
- .icon {
- width: 64rpx;
- height: 64rpx;
- margin-right: 16rpx;
- }
- .name {
- font-family: PingFangSC, PingFang SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #060809;
- }
- }
- }
- }
|