1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .fans-list {
- padding: 0 30rpx;
- box-sizing: border-box;
- }
- .fans-list .fans-item {
- height: 140rpx;
- background-color: #ffffff;
- border-radius: 8px;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- margin-bottom: 20rpx;
- }
- .fans-list .fans-avatar {
- width: 100rpx;
- height: 100rpx;
- border-radius: 100rpx;
- }
- .fans-list .fans-content {
- flex: 1;
- width: 0;
- margin-left: 20rpx;
- }
- .fans-list .fans-name {
- font-size: 32rpx;
- }
- .fans-list .fans-organization {
- color: #8c8c8c;
- font-weight: 300;
- margin-top: 4rpx;
- font-size: 24rpx;
- }
- .fans-list .fans-icon {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- background: #08979c;
- text-align: center;
- line-height: 80rpx;
- }
|