123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- .member-center {
- background-color: #FFE5CC;
- min-height: 100vh;
- position: relative;
- :global {
- .van-nav-bar {
- background-color: transparent;
- }
- }
- .member_container {
- padding: 10px 14px 0;
- .title {
- display: flex;
- align-items: center;
- font-size: 16px;
- line-height: 28px;
- font-weight: 500;
- color: #333333;
- &::before {
- content: " ";
- width: 4px;
- height: 17px;
- background: #01c1b5;
- display: inline-block;
- margin-right: 7px;
- border-radius: 8px;
- }
- }
- }
- .level {
- width: 18px;
- height: 16px;
- }
- .userMember {
- background: url("./images/member_bg.png") no-repeat center #534754;
- background-size: cover;
- width: auto;
- border-radius: 10px;
- padding: 20px 12px 30px;
- .userImg {
- width: 46px;
- height: 46px;
- border-radius: 50%;
- margin-right: 12px;
- }
- .userInfo {
- display: flex;
- align-items: center;
- color: #fff;
- padding-bottom: 5px;
- .name {
- font-size: 18px;
- padding-right: 5px;
- }
- .phone {
- font-size: 14px;
- }
- }
- .timeRemaining {
- margin-top: 0;
- font-size: 14px;
- color: #c0c0c0;
- .remaining {
- color: #f7b500;
- padding: 0 5px;
- }
- }
- .member_time {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- }
- .memberContainer {
- height: calc(100vh - 196px);
- overflow-y: auto;
- background-color: #fff;
- border-radius: 18px 18px 0px 0px;
- position: relative;
- margin-top: -15px;
- padding: 0 14px;
- z-index: 99;
- }
- .btnGroup {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 100;
- background-color: #fff;
- display: flex;
- align-items: center;
- padding: 12px 16px;
- justify-content: space-between;
- border-top: 1px solid #F0F0F0;
- .btn {
- padding: 0 22px;
- color: #7A3104 !important;
- }
- .priceSection {
- display: flex;
- align-items: center;
- font-size: 16px;
- color: #1A1A1A;
- .price {
- font-size: 18px;
- font-weight: bold;
- color: #FF3535;
- .priceUnit {
- font-size: 14px;
- }
- }
- }
- }
- }
|