123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- .member {
- position: relative;
- min-height: 100vh;
- background-color: #f9f9f9;
- .member-bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 750px;
- height: 284px;
- background: #FFE2AB;
- border-radius: 0 0 0 150px;
- z-index: 1;
- }
- .member-content {
- position: relative;
- padding: 0 16px;
- z-index: 2;
- padding-top: 18px;
- }
- // 会员信息卡
- .member-info-card {
- display: flex;
- flex-direction: column;
- align-items: center;
- background-color: #fefaef;
- border-radius: 20px;
- .member-info-card-header {
- height: 385px;
- padding-top: 101px;
- box-sizing: border-box;
- .avatar {
- width: 170px;
- height: 170px;
- border-radius: 50%;
- background-color: red;
- }
- .member-info-card-header-text {
- margin-top: 16px;
- display: flex;
- align-items: center;
- .user-name {
- font-size: 34px;
- line-height: 40px;
- font-weight: 500;
- color: #000000;
- }
- .member-info-card-header-text-level {
- width: 100px;
- height: 36px;
- position: relative;
- display: flex;
- align-items: center;
- padding-left: 45px;
- box-sizing: border-box;
- margin-left: 14px;
- .level-text {
- font-size: 16px;
- line-height: 40px;
- color: #000000;
- z-index: 1;
- }
- .level-icon {
- width: 100px;
- height: 36px;
- position: absolute;
- right: 0;
- top: 0;
- }
- }
- }
- }
- // 我的小店
- .my-shop {
- width: 100%;
- height: 92px;
- background-color: #fff5dc;
- display: flex;
- align-items: center;
- justify-content: center;
- image {
- height: 30px;
- width: 30px;
- margin-right: 10px;
- }
- text {
- font-size: 24px;
- line-height: 40px;
- color: #000000;
- }
- }
- }
- // 预估收益
- .estimated-income {
- background: #FFFFFF;
- border-radius: 20px;
- padding: 24px;
- margin-top: 16px;
- &-title {
- font-size: 28px;
- color: #3D3D3D;
- margin-bottom: 30px;
- line-height: 40px;
- font-weight: 700;
- }
- &-content {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 55px;
- margin-top: 30px;
- .income-item {
- flex: 1;
- text-align: center;
- display: flex;
- flex-direction: column;
- .amount {
- font-size: 36px;
- font-weight: bold;
- color: #FF8119;
- line-height: 40px;
- }
- .label {
- font-size: 26px;
- color: #222222;
- line-height: 40px;
- margin-top: 11px;
- }
- }
- .divider {
- width: 0;
- height: 80px;
- border-left: 2px solid #D8D8D8;
- margin: 0 20px;
- }
- }
- &-detail {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- text-align: center;
- font-size: 24px;
- color: #E79945;
- margin-top: 40px;
- .to-detail {
- width: 22px;
- height: 21px;
- margin-left: 8px;
- }
- }
- }
- // 可提现金额
- .withdrawable-amount {
- margin-top: 20px;
- .withdrawable-amount-header {
- display: flex;
- align-items: center;
- margin-bottom: 12px;
- .withdrawable-amount-icon {
- width: 36px;
- height: 36px;
- }
- .withdrawable-amount-title {
- font-size: 28px;
- color: #000000;
- line-height: 40px;
- font-weight: 700;
- margin-left: 10px;
- }
- }
- .withdrawable-amount-content {
- height: 90px;
- width: 100%;
- background-color: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 23px 0 15px;
- box-sizing: border-box;
- .left {
- display: flex;
- align-items: center;
- .amount {
- font-size: 24px;
- color: #000000;
- line-height: 40px;
- }
- .warning-icon-box {
- display: flex;
- margin-left: 10px;
- align-items: center;
- padding: 0 14px;
- box-sizing: border-box;
- background-color: #fff4e7;
- border-radius: 26px;
- .warning-text {
- font-size: 24px;
- color: #FF8119;
- line-height: 40px;
- }
- .warning-icon {
- width: 24px;
- height: 24px;
- margin-right: 10px;
- }
- }
- }
- .right{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 138px;
- height: 44px;
- background-color: #f7f3f3;
- border-radius: 26px;
- font-size: 22px;
- line-height: 40px;
- }
- }
- }
- }
|