123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- .wrapper {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- padding: 40rpx 0 100rpx;
- }
- .portrait {
- width: 169rpx;
- height: 169rpx;
- border-radius: 50%;
- overflow: hidden;
- }
- .no-login {
- width: 169rpx;
- height: 169rpx;
- overflow: hidden;
- }
- .nickname-wrap {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- margin-top: 23rpx;
- input {
- width: 100%;
- height: 50rpx;
- font-size: 36rpx;
- color: rgba(51, 51, 51, 1);
- text-align: center;
- }
- text {
- height: 50rpx;
- font-size: 36rpx;
- color: rgba(51, 51, 51, 1);
- }
- image {
- margin-left: 10rpx;
- width: 26rpx;
- height: 28rpx;
- }
- }
- .account {
- margin-top: 11rpx;
- height: 38rpx;
- line-height: 38rpx;
- font-size: 24rpx;
- color: rgba(153, 153, 153, 1);
- }
- .main {
- padding-top: 31rpx;
- }
- .business-account {
- position: relative;
- left: 0;
- top: 0;
- margin-bottom: 20rpx;
- image {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- }
- & > view {
- position: relative;
- left: 0;
- top: 0;
- z-index: 1;
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- width: 690rpx;
- min-height: 232rpx;
- padding: 37rpx 34rpx 29rpx;
- }
- .describe {
- line-height: 48rpx;
- line-height: 36rpx;
- color: rgba(255, 255, 255, 1);
- }
- .box {
- display: flex;
- align-items: center;
- }
- &-name-wrap {
- width: calc(100% - 208rpx);
- }
- &-name {
- line-height: 44rpx;
- font-size: 28rpx;
- color: rgba(255, 255, 255, 1);
- word-break: break-all;
- word-wrap: break-word;
- }
- .dashboard {
- display: flex;
- align-items: center;
- margin-top: 8rpx;
- view {
- line-height: 30rpx;
- font-size: 20rpx;
- color: rgba(255, 255, 255, 1);
- &:nth-of-type(2) {
- margin-left: 20rpx;
- }
- }
- }
- button.btn[type="default"] {
- width: 208rpx;
- height: 66rpx;
- border-radius: 20rpx;
- background-color: rgba(255, 255, 255, 1);
- font-size: 26rpx;
- color: rgba(107, 133, 89, 1);
- }
- }
- .list {
- display: flex;
- align-items: center;
- width: 690rpx;
- height: 100rpx;
- padding-left: 38rpx;
- margin-bottom: 16rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0 12rpx 98rpx 0 rgba(55, 55, 55, 0.05);
- .label {
- width: 48rpx;
- height: 48rpx;
- }
- .value {
- margin-left: 10px;
- line-height: 44rpx;
- font-size: 32rpx;
- color: rgba(51, 62, 99, 1);
- }
- }
- .van-uploader__preview,
- .van-uploader__upload {
- margin: 0 !important;
- }
|