        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        html {
            overflow-x: hidden;
            width: 100%;
        }
        
        body {
            background: #fff;
            color: #333;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            font-size: 14px;
            line-height: 1.5;
            max-width: 750px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 60px;
            overflow-x: hidden;
            width: 100%;
        }
        
        /* 顶部导航栏 */
        .u-navbar {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 980;
            background-color: #fff;
            width: 100%;
            max-width: 750px;
        }
        
        .u-navbar-placeholder {
            width: 100%;
            height: 44px;
        }
        
        .u-navbar-inner {
            height: 44px;
            display: flex;
            align-items: center;
            padding: 0 15px;
            position: relative;
        }
        
        .u-back-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .u-icon-wrap {
            display: flex;
            align-items: center;
        }
        
        .u-icon__icon {
            font-size: 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .u-back-text {
            font-size: 16px;
            color: #333;
        }
        
        .u-navbar-content-title {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
        }
        
        .u-title {
            font-size: 18px;
            font-weight: normal;
            color: #333;
        }
        
        .u-slot-right {
            position: absolute;
            right: 15px;
            display: flex;
            align-items: center;
            gap: 22px;
        }
        
        .ico_s {
            width: 18px;
            height: 22px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        /* 内容区域 */
        .content {
            padding-top: 10px;
        }
        
        /* 轮播图 */
        .swiper-container {
            margin: 0 30px 20px;
            border-radius: 17px;
            overflow: hidden;
            height: 140px;
            position: relative;
        }
        
        .swiper-wrapper {
            position: relative;
            height: 100%;
            width: 100%;
        }
        
        .swiper-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            border-radius: 17px;
            overflow: hidden;
        }
        
        .swiper-slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 17px;
        }
        
        .swiper-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .swiper-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.3s;
        }
        
        .swiper-dot.active {
            background: #fff;
            width: 20px;
            border-radius: 3px;
        }
        
        /* 功能导航图标 */
        .feature-nav {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            padding: 0 30px;
            margin-bottom: 20px;
        }
        
        .feature-item {
            width: 20%;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 8px;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .feature-label {
            font-size: 16px;
            color: #333;
        }
        
        /* 数据统计 Statistics_2 */
        .Statistics_2 {
            display: flex;
            align-items: center;
            margin: 0 20px 30px;
            gap: 6px;
        }
        
        .Statistics_2 .item {
            flex: 1;
            padding: 12px 10px;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .Statistics_2 .item::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 45px;
            height: 30px;
            background: url('images/u-background-image-sp-he_372.png') no-repeat;
            background-size: 500px auto;
            z-index: 1;
        }
        
        .Statistics_2 .item_1 {
            color: #5540b6;
            background: linear-gradient(90deg, #e2dcff 0%, #f4eeff 100%);
        }
        
        .Statistics_2 .item_1::after {
            background-position-x: -125.5px;
        }
        
        .Statistics_2 .item_2 {
            color: #21877f;
            background: linear-gradient(90deg, #ddf4f3 0%, #e9f9f6 100%);
        }
        
        .Statistics_2 .item_2::after {
            background-position-x: -170px;
        }
        
        .Statistics_2 .item_3 {
            color: #b8452b;
            background: linear-gradient(90deg, #ffe2dc 0%, #fff1ec 100%);
        }
        
        .Statistics_2 .item_3::after {
            background-position-x: -214.5px;
        }
        
        .Statistics_2 .item_4 {
            color: #af336d;
            background: linear-gradient(90deg, #ffdcec 0%, #ffeef2 100%);
        }
        
        .Statistics_2 .item_4::after {
            background-position-x: -259px;
        }
        
        .Statistics_2 .number {
            font-family: Bold, sans-serif;
            font-size: 22px;
            font-weight: bold;
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
        }
        
        .Statistics_2 .string {
            font-size: 12px;
            margin-top: 8px;
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
        }
        
        /* 红娘喜讯 xixun_0 */
        .xixun_0 {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            margin: 0 30px 10px;
            border-radius: 8px;
            background-color: #f8f8f8;
        }
        
        .xixun_0 .xixun-icon {
            width: 90px;
            height: 28px;
            background: url('images/u-background-image-sp-he_323_0.png') no-repeat;
            background-size: contain;
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        .xixun_0 .xixun-content {
            flex: 1;
            height: 24px;
            overflow: hidden;
            position: relative;
        }
        
        .xixun-swiper {
            height: 24px;
            line-height: 24px;
        }
        
        .xixun-swiper-item {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 15px;
            color: #333;
        }
        
        /* 导航标签 nav_14 */
        .nav_14 {
            display: flex;
            align-items: center;
            text-align: center;
            padding: 0 20px 20px;
            background: #fff;
            position: relative;
        }
        
        .nav_14 .menu {
            flex: 1;
            font-size: 18px;
            font-weight: 700;
            color: #333;
            position: relative;
            z-index: 1;
            cursor: pointer;
        }
        
        .nav_14 .menu.on {
            font-size: 22px;
            color: #8127f2;
        }
        
        .nav_14 .ico {
            position: absolute;
            bottom: 0;
            left: 0;
            width: calc(100% / 6);
            height: 6px;
            background: url('images/index_nav_14.png') no-repeat;
            background-size: contain;
            border-radius: 3px;
            transition: transform 0.5s;
            z-index: 1;
        }
        
        /* 置顶推荐 */
        .featured-section {
            background: white;
            margin: 0 15px 15px;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.1);
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 14px;
            font-weight: 600;
            color: #8127f2;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .pin-btn {
            background: linear-gradient(135deg, #8127f2 0%, #9B7EDE 100%);
            color: white;
            border: none;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(129, 39, 242, 0.3);
            transition: all 0.3s ease;
        }
        
        .pin-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(129, 39, 242, 0.4);
        }
        
        /* 会员卡片 - 瀑布流布局 */
        .member-list {
            column-count: 2;
            column-gap: 12px;
            padding: 0 15px;
        }
        
        .member-card {
            display: inline-flex;
            flex-direction: column;
            width: 100%;
            background: #ffffff;
            border-radius: 16px;
            position: relative;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.12);
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid rgba(255, 107, 157, 0.1);
            margin-bottom: 12px;
            break-inside: avoid;
            page-break-inside: avoid;
            -webkit-column-break-inside: avoid;
        }
        
        .member-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255, 107, 157, 0.2);
        }
        
        /* 喜欢按钮 */
        .member-like-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            min-width: 60px;
            height: 32px;
            padding: 0 10px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            opacity: 1;
            visibility: visible;
            font-size: 12px;
            color: #999;
            white-space: nowrap;
        }
        
        .member-like-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
        }
        
        .member-like-btn i {
            font-size: 14px;
            color: #999;
            transition: all 0.3s ease;
        }
        
        .member-like-btn span {
            font-size: 12px;
            color: #999;
            transition: all 0.3s ease;
        }
        
        .member-like-btn:hover i,
        .member-like-btn:hover span,
        .member-like-btn.liked i,
        .member-like-btn.liked span {
            color: #ff6b9d;
        }
        
        .member-like-btn.liked i {
            font-weight: bold;
        }
        
        .member-like-btn:active {
            transform: scale(0.95);
        }
        
        .vip-like-btn {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
        }
        
        .vip-like-btn:hover {
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
        }
        
        .vip-like-btn:hover i,
        .vip-like-btn:hover span,
        .vip-like-btn.liked i,
        .vip-like-btn.liked span {
            color: #FFD700;
        }
        
        /* 确保VIP会员卡片的喜欢按钮始终显示 */
        .vip-member-card .member-like-btn {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
            z-index: 20 !important;
        }
        
        .member-avatar-container {
            width: 100%;
            aspect-ratio: 1;
            position: relative;
            overflow: hidden;
            background: #f5f5f5;
        }
        
        .member-avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        
        /* 照片模糊处理 - 根据 photo_display_status 控制 */
        .member-avatar.photo-blurred,
        .vip-avatar.photo-blurred {
            filter: blur(10px);
            -webkit-filter: blur(10px);
        }
        
        .member-card:hover .member-avatar.photo-blurred,
        .vip-member-card:hover .vip-avatar.photo-blurred {
            filter: blur(12px);
            -webkit-filter: blur(12px);
        }
        
        /* 照片提示覆盖层 */
        .photo-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.75);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: bold;
            z-index: 10;
            pointer-events: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .photo-overlay i {
            font-size: 14px;
        }
        
        /* 状态2：登录查看 - 蓝色调 */
        .photo-overlay.status-2 {
            background: rgba(65, 105, 225, 0.85);
        }
        
        /* 状态3：联系红娘 - 粉色调 */
        .photo-overlay.status-3 {
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.9) 0%, rgba(255, 154, 158, 0.9) 100%);
        }
        
        /* 兼容旧的游客查看样式 */
        .member-card.guest-view .member-avatar.blurred-photo {
            filter: blur(10px);
            -webkit-filter: blur(10px);
        }
        
        .member-card.guest-view:hover .member-avatar.blurred-photo {
            filter: blur(12px);
            -webkit-filter: blur(12px);
        }
        
        .member-avatar-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 48px;
            font-weight: bold;
        }
        
        .member-info {
            padding: 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .member-name-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }
        
        .member-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }
        
        .verified-badge {
            width: 18px;
            height: 18px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .verified-badge::before {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: bold;
        }
        
        .member-gender-age {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }
        
        .gender-icon {
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gender-icon.male { 
            color: #4A90E2; 
        }
        .gender-icon.female { 
            color: #E94B3C; 
        }
        
        .member-age {
            font-size: 15px;
            font-weight: 500;
            color: #FF6B9D;
        }
        
        .member-attributes {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0;
        }
        
        .member-attributes span {
            color: #666;
        }
        
        .member-location {
            font-size: 12px;
            color: #999;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .member-location-icon {
            font-size: 14px;
            color: #999;
        }
        
        .member-location-hometown {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0;
        }
        
        /* 最新加入会员区域 */
        .new-members-section {
            background: white;
            margin: 0 15px 15px;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(129, 39, 242, 0.1);
        }
        
        .new-member-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        /* VIP会员区域 */
        .vip-section {
            background: white;
            margin: 0 15px 15px;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.1);
        }
        
        .vip-member-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .vip-member-card {
            display: flex;
            background: #ffffff;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            align-items: stretch;
            overflow: visible;
            position: relative;
        }
        
        .vip-member-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }
        
        .vip-avatar-container {
            width: 120px;
            min-width: 120px;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
            background: #f5f5f5;
            display: flex;
            align-items: stretch;
        }
        
        .vip-avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 100%;
        }
        
        /* VIP会员游客查看时照片模糊处理 */
        .vip-member-card.guest-view .vip-avatar.blurred-photo {
            filter: blur(10px);
            -webkit-filter: blur(10px);
        }
        
        .vip-member-card.guest-view:hover .vip-avatar.blurred-photo {
            filter: blur(12px);
            -webkit-filter: blur(12px);
        }
        
        /* VIP会员游客查看提示 */
        .vip-member-card.guest-view .vip-avatar-container::after {
            content: '🔒 登录查看';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.75);
            color: white;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 11px;
            font-weight: bold;
            z-index: 10;
            pointer-events: none;
            white-space: nowrap;
        }
        
        .vip-avatar-placeholder {
            width: 100%;
            height: 100%;
            min-height: 140px;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 36px;
            font-weight: bold;
        }
        
        .vip-badge {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        
        .vip-badge::before {
            content: '✓';
            font-size: 10px;
        }
        
        .vip-member-info {
            flex: 1;
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            justify-content: flex-start;
        }
        
        .vip-name-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 2px;
        }
        
        .vip-member-name {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        
        .vip-gender-icon {
            font-size: 16px;
            color: #4A90E2;
        }
        
        .vip-gender-icon.female {
            color: #FF6B9D;
        }
        
        .vip-verified-badge {
            background: linear-gradient(135deg, #9B7EDE 0%, #8127f2 100%);
            color: white;
            padding: 2px 8px;
            border-radius: 8px;
            font-size: 11px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .vip-verified-badge::before {
            content: '👤';
            font-size: 10px;
        }
        
        .vip-member-details {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
            margin-bottom: 0;
        }
        
        .vip-detail-separator {
            width: 1px;
            height: 14px;
            background: #ddd;
        }
        
        .vip-member-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 0;
            margin-bottom: 0;
        }
        
        .vip-tag {
            background: #f2f3f5;
            color: #666;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 12px;
        }
        
        .member-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
        }
        
        .member-tag {
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 10px;
            background: rgba(155, 126, 222, 0.1);
            color: #9B7EDE;
            border: 1px solid rgba(155, 126, 222, 0.2);
        }
        
        /* 底部导航栏样式已移至 includes/bottom_nav.php */
        
        /* 浮动操作按钮 */
        .floating-buttons {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 50;
        }
        
        .floating-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .floating-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            opacity: 0.9;
        }
        
        .floating-btn i,
        .floating-btn .floating-btn-label {
            position: relative;
            z-index: 1;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .floating-btn:active {
            transform: scale(0.95);
        }
        
        .floating-btn.blue {
            background: url('images/btn_register.png') no-repeat center center;
            background-size: contain;
        }
        
        .floating-btn.purple {
            background: url('images/btn_list.png') no-repeat center center;
            background-size: contain;
        }
        
        .floating-btn.red {
            background: url('images/btn_filter.png') no-repeat center center;
            background-size: contain;
        }
        
        .floating-btn-label {
            font-size: 10px;
            margin-top: 4px;
            font-weight: 500;
            color: white;
        }
        
        /* 响应式 - 中等移动设备 */
        @media (max-width: 768px) {
            body {
                max-width: 100%;
            }
            
            .u-navbar {
                left: 0;
                transform: none;
                width: 100%;
                max-width: 100%;
            }
            
            .swiper-container {
                margin: 0 20px 20px;
            }
            
            .feature-nav {
                padding: 0 20px;
            }
            
            .xixun_0 {
                margin: 0 20px 10px;
            }
            
            .featured-section,
            .vip-section,
            .new-members-section {
                margin: 0 15px 20px;
                padding: 18px;
            }
            
            .member-list {
                padding: 0;
            }
            
            .vip-member-list,
            .new-member-list {
                gap: 10px;
            }
        }
        
        /* 响应式 - 小屏移动设备 */
        @media (max-width: 480px) {
            body {
                max-width: 100%;
                padding-left: 0;
                padding-right: 0;
            }
            
            .u-navbar {
                left: 0;
                transform: none;
                width: 100%;
                max-width: 100%;
            }
            
            .content {
                width: 100%;
                max-width: 100%;
            }
            
            .swiper-container {
                margin: 0 15px 15px;
                height: 120px;
                border-radius: 12px;
            }
            
            .swiper-slide {
                border-radius: 12px;
            }
            
            .swiper-slide img {
                border-radius: 12px;
            }
            
            .feature-nav {
                padding: 0 15px;
            }
            
            .feature-icon {
                width: 50px;
                height: 50px;
            }
            
            .feature-label {
                font-size: 13px;
            }
            
            .Statistics_2 {
                margin: 0 15px 15px;
                gap: 8px;
            }
            
            .Statistics_2 .item {
                padding: 10px 6px;
                border-radius: 14px;
            }
            
            .Statistics_2 .number {
                font-size: 18px;
            }
            
            .Statistics_2 .string {
                font-size: 11px;
            }
            
            .floating-buttons {
                right: 10px;
                gap: 12px;
            }
            
            .floating-btn {
                width: 42px;
                height: 42px;
                font-size: 16px;
            }
            
            .floating-btn-label {
                font-size: 8px;
            }
            
            .xixun_0 {
                margin: 0 15px 10px;
                padding: 10px 12px;
            }
            
            .xixun_0 .xixun-icon {
                width: 75px;
                height: 23px;
            }
            
            .xixun-swiper-item {
                font-size: 13px;
            }
            
            .featured-section,
            .vip-section,
            .new-members-section {
                margin: 0 10px 15px;
                padding: 15px;
                border-radius: 16px;
            }
            
            .section-header {
                margin-bottom: 12px;
            }
            
            .section-title {
                font-size: 13px;
            }
            
            .member-list {
                column-count: 1;
                column-gap: 10px;
                padding: 0;
                width: 100%;
                max-width: 100%;
            }
            
            .member-card {
                border-radius: 10px;
                margin-bottom: 10px;
                width: 100%;
                max-width: 100%;
            }
            
            .vip-member-card {
                border-radius: 12px;
                margin-bottom: 10px;
            }
            
            .vip-avatar-container {
                width: 100px;
                min-width: 100px;
            }
            
            .vip-member-info {
                padding: 10px 8px;
                gap: 4px;
            }
            
            .vip-member-name {
                font-size: 16px;
            }
            
            .vip-member-details {
                font-size: 12px;
            }
            
            .vip-member-tags {
                gap: 4px;
            }
            
            .vip-member-tag {
                font-size: 10px;
                padding: 2px 6px;
            }
            
            .member-info {
                padding: 10px;
                gap: 4px;
            }
            
            .member-name {
                font-size: 15px;
            }
            
            .member-age {
                font-size: 14px;
            }
            
            .member-attributes {
                font-size: 12px;
            }
            
            .member-location {
                font-size: 11px;
            }
            
            .member-location-hometown {
                font-size: 11px;
            }
            
            .gender-icon {
                font-size: 14px;
            }
            
            .verified-badge {
                width: 16px;
                height: 16px;
            }
            
            .verified-badge::before {
                font-size: 10px;
            }
        }
