        /* 基础重置 */
        * {
            margin: 0;
            padding: 0;
            /* box-sizing: border-box; */
        }
        
        body {
            background-color: #f5f5f5;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.4;
            color: #333;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* 隐藏电脑版广告 */
        .album_banner {
            display: none !important;
        }
        
        /* 每个模块白色卡片 */
        .friend_content, 
        .friend_content_list {
            background: #fff;
            border-radius: 12px;
            margin: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        /* 标题行 */
        .friend_content .title,
        .friend_content_list .title,
        .album_title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5px 0px;
            border-bottom: 1px solid #efefef;
        }
        
        .friend_content .title .name,
        .friend_content_list .title .name,
        .album_title .name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            position: relative;
            padding-left: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 200px;
        }
        
        /* 标题左边蓝线 */
        .friend_content .title .name::before,
        .friend_content_list .title .name::before,
        .album_title .name::before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            bottom: 2px;
            width: 4px;
            background: #1e63c5;
            border-radius: 2px;
        }
        
        /* 右边区域 */
        .title-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        
        .title-right span {
            font-size: 14px;
            color: #999;
            margin-top: 50px;
        }
        
        .title-right span strong {
            color: #1e63c5;
            margin-left: 3px;
        }
        
        .friend_content_list .title a,
        .album_title a {
            font-size: 14px;
            color: #999;
            white-space: nowrap;
        }
        
        /* 换一换按钮 */
        .change-btn button {
            background: #f0f0f0;
            color: #666;
            border: none;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            white-space: nowrap;
        }
        
        /* 头像网格 - 4列圆形 */
        .avatar-box {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            padding: 15px;
            background: #fff;
        }
        
        .avatar-box a {
            display: block;
            width: 100%;
            height: 0;
            padding-bottom: 100%;
            position: relative;
            border-radius: 10%;
            overflow: hidden;
            background: #f0f0f0;
        }
        
        .avatar-box a img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 随机在线会员列表 */
        .friend_content_list ul {
            padding: 0 15px;
            margin: 0;
            list-style: none;
        }
        
        .friend_content_list li {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid #efefef;
        }
        
        .friend_content_list li:last-child {
            border-bottom: none;
        }
        
        .friend_content_list .left {
            width: 60px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .friend_content_list .left img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .friend_content_list .left .name {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            color: #333;
            text-align: center;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .friend_content_list .right {
            flex: 1;
            min-width: 0;
        }
        
        .friend_content_list .right strong {
            display: block;
            font-size: 16px;
            color: #333;
            margin-bottom: 6px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .friend_content_list .list {
            margin: 0 0 8px 0;
        }
        
        .friend_content_list .list li {
            padding: 2px 0;
            border: none;
            font-size: 13px;
            color: #999;
            background: transparent;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .friend_content_list .know {
            display: inline-block;
            background: #f0f0f0;
            color: #666;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 12px;
        }
        
        /* 嗨友相册 - 3列 */
        .album {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5px;
            padding: 15px;
            margin: 0;
            background: #fff;
            list-style: none;
        }
        
        .album li {
            width: 100%;
            height: 0;
            padding-bottom: 100%;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background: #f0f0f0;
        }
        
        .album li img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 底部 */
        .bottom {
            padding: 20px 15px;
            text-align: center;
            font-size: 12px;
            color: #999;
        }
/* 修复卡片间距 */
.card {
    margin: 8px 12px !important;  /* 把12px改成8px */
}

/* 或者更小一点 */
.card {
    margin: 5px 12px !important;  /* 上下5px，左右12px */
}
/* 卡片间距调小 */
.card {
    margin: 5px 12px !important;  /* 上下5px，左右12px */
}
.card {
    margin: 3px 12px !important;  /* 上下3px，左右12px */
}