attention.wxss 962 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @charset "UTF-8";
  2. /* 需要放到文件最上面 */
  3. /* 水平间距 */
  4. /* 水平间距 */
  5. /*
  6. 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
  7. */
  8. /* 水平间距 */
  9. .fans-list {
  10. padding: 0 30rpx;
  11. box-sizing: border-box;
  12. }
  13. .fans-list .fans-item {
  14. height: 140rpx;
  15. background-color: #ffffff;
  16. border-radius: 8px;
  17. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  18. display: flex;
  19. align-items: center;
  20. padding: 0 30rpx;
  21. margin-bottom: 20rpx;
  22. }
  23. .fans-list .fans-avatar {
  24. width: 100rpx;
  25. height: 100rpx;
  26. border-radius: 100rpx;
  27. }
  28. .fans-list .fans-content {
  29. flex: 1;
  30. width: 0;
  31. margin-left: 20rpx;
  32. }
  33. .fans-list .fans-name {
  34. font-size: 32rpx;
  35. }
  36. .fans-list .fans-organization {
  37. color: #8c8c8c;
  38. font-weight: 300;
  39. margin-top: 4rpx;
  40. font-size: 24rpx;
  41. }
  42. .fans-list .fans-icon {
  43. width: 80rpx;
  44. height: 80rpx;
  45. border-radius: 50%;
  46. background: #08979c;
  47. text-align: center;
  48. line-height: 80rpx;
  49. }