attention.wxss 1.1 KB

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