1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .member_list {
- width: 100vw;
- background-color: #ffffff;
- border-top: 1px solid #E4E4E4;
- }
- .member_item {
- display: flex;
- align-items: center;
- height: 180rpx;
- border-bottom: 1px solid #E4E4E4;
- }
- .member_item_img {
- position: relative;
- height: 100%;
- width: 180rpx;
- }
- .member_item_img>view {
- position: absolute;
- width: 120rpx;
- height: 120rpx;
- background-color: #000;
- border-radius: 50%;
- overflow: hidden;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .member_item_text {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .member_item_text_title {
- font-size: 32rpx;
- color: #1E1E1E;
- font-weight: 550;
- }
- .member_item_text_row {
- font-size: 30rpx;
- color: #CCCCCC;
- margin-top: 12rpx;
- }
- .member_item_amend {
- font-size: 34rpx;
- width: 100rpx;
- height: 55rpx;
- line-height: 55rpx;
- color: #ffffff;
- text-align: center;
- border-radius: 15rpx;
- background-color: #169BD5;
- margin-right: 30rpx;
- }
|