/*----------------------------------------------------------------index页------------------------------------------------------------*/
  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: #f5f5f5;
        }
        
        /* 外层容器 - 控制整体宽度 */
        .page-container {
/*            max-width: 1400px;*/
            width: 70%;
            margin: 0 auto;
            padding: 15px;
        }
        
        /* 移动端全宽 */
        @media (max-width: 1675px) {
            .page-container {
                padding: 10px;
                width: 100%;
                max-width: 100%;
            }
        }
        
        .header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .header h1 {
            color: #ff2e4d;
            font-size: 24px;
        }
        
        .container {
            position: relative;
        }
        
        /* 列容器 */
        .masonry-columns {
            display: flex;
            gap: 15px;
        }
        
        .masonry-column {
            flex: 1;
            min-width: 0; /* 修复flex项收缩问题 */
        }
        
        /* 卡片样式 */
        .card {
            margin-bottom: 15px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;

        }

        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .card-link {
            text-decoration: none;
            color: inherit;

        }
        
        .card-link > * {
            pointer-events: none;
        }
        
        .card-image {
                width: 100%;       /* 宽度填满卡片 */
                object-fit: cover; /* 保持比例，不裁切 */
                display: block;
                    }
        
        .card-content {
            padding: 12px;


        }
        
        .card-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 8px;
            border-top: 1px solid #f0f0f0;
        }
        
        .user-info {
            display: flex;
            align-items: center;
        }
        
        .avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin-right: 6px;
        }
        
        .username {
            font-size: 12px;
            color: #999;
        }
        
        .date {
            font-size: 12px;
            color: #999;
            display: flex;
            align-items: center;
        }
        
        .date i {
            margin-right: 3px;
        }
        
        /* 响应式列数 */
        @media (max-width: 599px) {
            .masonry-columns {
                flex-direction: column;
            }
        }
        
        @media (min-width: 600px) and (max-width: 899px) {
            .masonry-columns {
                flex-wrap: wrap;
            }
            .masonry-column {
                flex: 0 0 calc(50% - 8px);
            }
        }
        
        @media (min-width: 900px) and (max-width: 1199px) {
            .masonry-columns {
                flex-wrap: wrap;
            }
            .masonry-column {
                flex: 0 0 calc(33.333% - 10px);
            }
        }
        
        @media (min-width: 1200px) {
            .masonry-column {
                flex: 0 0 calc(25% - 12px);
            }
        }
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 60px;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: #ff2e4d;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }

        html {
              scroll-behavior: smooth;
            }

/*----------------------------------------------------------------我自己的标签-----------------------------------------------------------*/

        .footer {
            margin-bottom: 60px;
            display: flex;
            flex-direction: column;
            text-align: center;
            color: rgb(150, 150, 150);

        }
        /*-------加载更多按钮-------------*/


            .load-more-container {
            text-align: center;
            margin: 30px 0;
            width: 100%;
        }
        
        .load-more-btn {
            background-color: #ff2E4D;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 24px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 36, 66, 0.3);
        }
        
        .load-more-btn:hover {
            background-color: #e01e3a;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 36, 66, 0.4);
        }
        
        .load-more-btn:active {
            transform: translateY(0);
        }
        
        .no-more {
            color: #888;
            font-style: italic;
            margin: 30px 0;
        }