        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-image: url('../imgs/bg.png');
            background-size: cover;
            background-repeat: repeat;
            background-attachment: fixed;
            overflow-x: hidden;
        }

        /* 头部 */
        .header {
            display: flex;
            align-items: center;
            padding: 15px 20px;
/*            background: rgba(255, 255, 255, 0.95);*/
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 60px;
        }

        .logo {
            width: 50px;
            height: auto;
        }

        .header-title {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }

        /* 主容器 */
        .main-container {
            display: flex;
            margin-top: 60px;
            padding-bottom: 80px;
            min-height: calc(100vh - 60px);
        }

        /* 左侧导航 */
        .left-nav {
            width: 12%;
            min-width: 80px;
            position: fixed;
            left: 10px;
            top: 78px;
            bottom: 10px;
            overflow-y: auto;
            padding: 20px 10px;
            background: white;
            border-radius: 20px;
        }

        .nav-item {
            background: transparent;
            border-radius: 0;
            padding: 20px 10px;
            margin-bottom: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .nav-item:hover {
            transform: translateY(-2px);
        }

        .nav-item img {
            width: 50px;
            height: 50px;
            margin-bottom: 8px;
        }

        .nav-item-text {
            font-size: 14px;
            color: #666;
        }

        .nav-item.active .nav-item-text {
            color: #6c5ce7;
            font-weight: bold;
        }

        /* 右侧内容区 */
        .right-content {
            width: 88%;
            margin-left: 12%;
            padding: 20px;
            overflow-y: auto;
        }

        /* Banner轮播 */
        .banner-container {
            position: relative;
            width: 100%;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .banner-slide {
            display: none;
            width: 100%;
            height: 100%;
        }

        .banner-slide.active {
            display: block;
        }

        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }

        /* 第二行图片 */
        .image-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .image-left {
            width: 50%;
        }

        .image-left img {
            width: 100%;
            height: auto;
            border-radius: 15px;
        }

        .image-right {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .image-right img {
            width: 100%;
            height: auto;
            border-radius: 15px;
        }

        /* 搜索框 */
        .search-box {
            background: white;
            border-radius: 25px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .search-box img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }

        .search-box input {
            border: none;
            outline: none;
            flex: 1;
            font-size: 14px;
            color: #999;
        }

        /* 人气推荐 */
        .popularity-section {
            position: relative;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
        }

        .popularity-bg {
            width: 100%;
            display: block;
        }

        .popularity-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .popularity-title {
            position: absolute;
            top: 10px;
            left: 10px;
            color: #cfb28b;
            font-size: 18px;
            font-weight: bold;
        }

        .popularity-icon {
            position: absolute;
            top: 4px;
            right: 0px;
            /* width: 40px; */
            height: 40px;
        }

        .ranking-container {
            position: absolute;
            top: 60%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: flex-end;
            gap: 58px;
            width: 80%;
            justify-content: center;
        }

        .rank-item {
            text-align: center;
        }

        .rank-item.second {
            order: 1;
        }

        .rank-item.first {
            order: 2;
        }

        .rank-item.third {
            order: 3;
        }

        .rank-item img {
/*            width: 60px;*/
            height: 60px;
            border-radius: 50%;
            margin-bottom: 8px;
/*            border: 3px solid #fff;*/
        }

        .rank-item.first img {
/*            width: 100px;*/
            height: 60px;
        }

        .rank-label {
            font-size: 12px;
            color: #666;
        }

        /* Y1图片 */
        .y1-image {
            width: 100%;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        /* 会员资讯 */
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .news-title {
            font-size: 18px;
            font-weight: bold;
            color: #000;
        }

        .news-more {
            font-size: 14px;
            color: #999;
            cursor: pointer;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .news-item {
            background: white;
            border-radius: 15px;
            padding: 15px;
            display: flex;
            gap: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .news-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .news-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-item-title {
            font-size: 16px;
            font-weight: bold;
            color: #000;
            margin-bottom: 8px;
        }

        .news-desc {
            font-size: 12px;
            color: #999;
            line-height: 1.4;
        }



        /* 隐藏的页面内容 */
        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .left-nav {
/*                width: 100px;*/
            }

            .right-content {
/*                width: calc(100% - 100px);*/
                margin-left: 80px;
            }

            .nav-item {
                padding: 15px 5px;
            }

            .nav-item img {
                width: 40px;
                height: 40px;
            }

            .nav-item-text {
                font-size: 12px;
            }
        }

        /* 页面头部 */
        .page-header {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
        }

        .page-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
/*            margin-bottom: 8px;*/
        }

        .page-subtitle {
            font-size: 14px;
            color: #999;
        }

        /* 用户卡片列表 */
        .user-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .user-card {
            background: white;
            border-radius: 15px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s;
        }

        .user-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .user-card-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .user-card-info {
            flex: 1;
        }

        .user-card-name {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .user-card-time {
            font-size: 12px;
            color: #999;
        }

.user-card-action {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

        .btn-visit, .btn-unfavorite {
            padding: 8px 20px;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-visit {
            background: linear-gradient(135deg, #401fff 0%, #a44cff 100%);
            color: white;
        }

        .btn-visit:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .btn-unfavorite {
            background: #f5f5f5;
            color: #666;
        }

        .btn-unfavorite:hover {
            background: #e0e0e0;
        }

        /* 空状态 */
        .empty-state {
            background: white;
            border-radius: 15px;
            padding: 60px 20px;
            text-align: center;
            color: #999;
            font-size: 16px;
        }

        /* 资讯页面时间 */
        .news-time {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }
