123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- .page {
- min-height: 100vh;
- background-color: #fff;
- padding-top: 10px;
- }
- .follow-reserveASeat{
- height: calc(90rpx + var(--status-bar-height)) !important;
- }
- .tabs {
- display: flex;
- height: 100%;
- justify-content: space-between;
- align-items: center;
- width: 246rpx;
- .tab {
- position: relative;
- width: 96rpx;
- height: 48rpx;
- font-size: 32rpx;
- color: #999;
- font-weight: 400;
- transition: all .5s;
- &.active {
- font-family: 'PingFang SC-Bold';
- color: #1F1F1F;
- background: url("../../static/me/wd_img_qiehuan.png") center / cover no-repeat;
-
- }
- }
- }
- .follow-list {
- padding: 0 40rpx;
- .follow-item {
- display: flex;
- align-items: center;
- padding: 20rpx 0;
- &:first-child{
- padding-top: 0;
- }
- .avator {
- width: 120rpx ;
- height: 120rpx ;
- margin-right: 24rpx;
- }
- .info {
- flex: 1;
- display: flex;
- align-items: center;
- .top-box {
- display: flex;
- align-items: center;
- .name {
- font-size: 32rpx;
- font-weight: 500;
- // margin-bottom: 8rpx;
- }
- > image {
- width: 36rpx;
- margin-left: 8rpx;
- margin-right: 10rpx;
- }
- .level {
- font-weight: 400;
- font-size: 20rpx;
- font-family: "PingFang SC-Bold";
- background: linear-gradient(360deg, #acf934 0%, #ffe439 100%);
- border-radius: 8rpx;
- padding: 2rpx 8rpx;
- display: inline-block;
- margin-left: 10rpx;
- }
- }
- .desc {
- font-size: 24rpx;
- color: #999;
- }
- }
- .unfollow-btn {
- font-size: 24rpx;
- width: 122rpx;
- height: 52rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #1f1f1f;
- background: none;
- border: 2rpx solid #000;
- border-radius:36rpx;
- margin: 0;
- font-family: 'PingFang SC-Bold';
- image{
- display: none;
- width: 16rpx;
- height: 16rpx;
- margin-right: 5rpx;
- }
- &.active {
- color: #ACF934;
- background: #000;
- image{
- display: inline-block;
- }
- }
- }
- }
- }
|