| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- @import "../../themes/page.scss";
- // .page-scroll__container {
- // flex: 0 1 auto;
- // height: var(--page-container-safeHeight, 100vh);
- // // padding-top: 12px;
- // // background: #F5F6F7;
- // padding: 20rpx;
- // width: 94%;
- // }
- .mine-container {
- position: relative;
- height: 100vh;
- background-color: #f7f7f7;
- }
- .page-scroll__container {
- box-sizing: border-box;
- overflow-y: auto;
- }
- .tabbar-container {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 100;
- background-color: #fff;
- padding-bottom: env(safe-area-inset-bottom);
- box-shadow: 0 -2rpx 6rpx rgba(0, 0, 0, 0.1);
- }
- .mine-container{
- background-image: url("/assets/bg/bg_user@2x.png");
- background-size: 100% 100%;
- background-repeat: no-repeat;
- background-color: #F5F6F7;
- }
- .mine-box{
- width: 92%;
- margin: auto;
- padding-top: 20rpx;;
- }
- .name-box{
- margin-left: 32rpx;
- }
- .name{
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 5rpx;
- color: #191919;
- }
- .phone{
- font-size: 28rpx;
- color: rgba(0,0,0,0.45);
- }
- .head-container {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 30rpx;
- }
- .head-box {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .health-img{
- width: 110px;
- height: 55px;
- }
- .content-container{
- display: flex;
- align-items: center;
- margin-left: 10rpx;
- }
- .content-box{
- width: 25%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .order-container{
- background: #fff;
- border-radius: 16rpx;
- padding: 20rpx 40rpx 20rpx 0rpx;
- }
- .knowledge-box{
- background: #fff;
- padding: 20rpx 40rpx 20rpx 0rpx;
- border-radius: 16rpx;
- }
- .title{
- font-size: 28rpx;
- font-weight: bold;
- margin-bottom: 16rpx;
- color: #191919;
- margin-left: 40rpx;
- }
- .content-title{
- font-size: 24rpx;
- margin-top: 16rpx;
- }
- .icon-img{
- width: 48rpx;
- height: 48rpx;
- }
- .container {
- padding: 5px 16px;
- background-color: white;
- margin-top: 12px;
- border-radius: 10px;
- font-size: 16px;
- }
- .item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 12px 12px 12px 0px;
- background-color: #ffffff;
- border-radius: 8px;
- border-bottom: 0.5px solid #E7E7E7;
- }
- .item t-icon {
- margin-right: 20px;
- }
- .item-box{
- display: flex;
- align-items: center;
- }
- .status-img{
- width: 40px;
- height: 40px;
- }
|