1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* pages/follow/follow.wxss */
- page{
- padding: 30rpx;
- }
- .follow{
- border-bottom: 1px solid #F5F5F5;
- margin-bottom: 30rpx;
- }
- .name{
- font-size: 32rpx;
- font-weight: 500;
- margin-top: 8rpx;
- margin-left: 110rpx;
- }
- .name>text{
- color: #AAAAAA;
- font-size: 22rpx;
- border: 1px solid #AAAAAA;
- border-radius: 4rpx;
- font-weight: 400;
- padding: 0 4rpx;
- position: relative;
- top: -3rpx;
- }
- .name view{
- float: right;
- color: #CE994F;
- font-size: 22rpx;
- text-align: center;
- position: relative;
- top: -5rpx;
- }
- .name view text{
- display: block;
- font-size: 32rpx;
- color: #CE994F;
- position: relative;
- top: -8rpx;
- }
- .info{
- font-size: 30rpx;
- padding: 10rpx 0;
- display: flex;
- }
- .info view{
- color: #666;
- width: 85%;
- vertical-align: top;
- }
- .info label{
- font-weight: 500;
- color: #333;
- }
- .info .tag{
- font-size: 28rpx;
- color: #CE994F;
- border: 1px solid #CE994F;
- border-radius: 8rpx;
- margin-right: 8rpx;
- font-weight: 400;
- padding: 0 8rpx;
- }
- .per_top{
- height: 100rpx;
- position: relative;
- padding:24rpx;
- justify-content: space-between;
- border-bottom: 1px solid #F5F5F5;
- }
- .per_top>image{
- width: 90rpx;
- height: 90rpx;
- position: absolute;
- left: 24rpx;
- top: 5rpx;
- margin-bottom: 10rpx;
- border-radius: 100%;
- }
- scroll-view{
- height: 100vh;
- }
|