12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .page {
- min-height: 100vh;
- background-color: #fff;
- padding-top: 10px;
- }
- .tabs {
- display: flex;
- padding: 0 40px;
- margin-bottom: 20px;
-
- .tab {
- position: relative;
- padding: 0 20px;
- font-size: 16px;
- color: #666;
-
- &.active {
- color: #000;
- font-weight: bold;
-
- &::after {
- content: '';
- position: absolute;
- left: 20px;
- right: 20px;
- bottom: -6px;
- height: 2px;
- background-color: #5c5cff;
- }
- }
- }
- }
- .follow-list {
- padding: 0 20px;
-
- .follow-item {
- display: flex;
- align-items: center;
- padding: 15px 0;
-
- .avatar {
- width: 50px;
- height: 50px;
- border-radius: 25px;
- margin-right: 12px;
- }
-
- .info {
- flex: 1;
-
- .name {
- font-size: 16px;
- font-weight: 500;
- margin-bottom: 4px;
- }
-
- .desc {
- font-size: 12px;
- color: #999;
- }
- }
-
- .unfollow-btn {
- font-size: 14px;
- color: #666;
- background: none;
- border: 1px solid #ddd;
- border-radius: 15px;
- padding: 4px 12px;
- margin: 0;
-
- &::after {
- border: none;
- }
- }
- }
- }
|