        /* 页面背景图片 */
        body {
            background-image: url('https://img.8i5.net/image/darius-anton-cabin-woods.gif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            font-family: 'Arial', sans-serif;
            /* 添加毛玻璃效果 */
            position: relative;
        }

        /* 背景毛玻璃效果 */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            backdrop-filter: blur(10px);
            z-index: -1;
        }

        /* 容器样式 */
        .link-container {
            max-width: 1800px;
            margin: 40px auto;
            padding: 30px;
            border-radius: 20px;
            background-color: rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .link-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        /* 链接项目 */
        .link-item {
            flex: 0 0 18%;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #2655ff;
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            text-decoration: none;
            color: inherit;
        }

        .link-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .link-item h3 {
            font-size: 18px;
            color: #333;
            text-align: center;
            margin-bottom: 8px;
        }

        .link-item p {
            color: #555;
            font-size: 12px;
            text-align: center;
        }

        .link-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .link-title h2 {
            color: #000;
        }

        .no-links {
            text-align: center;
            color: #999;
            font-size: 18px;
            margin-top: 20px;
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .link-item {
                flex: 0 0 22%;
            }
        }

        @media (max-width: 992px) {
            .link-item {
                flex: 0 0 30%;
            }
        }

        @media (max-width: 768px) {
            .link-item {
                flex: 0 0 45%;
            }
        }

        @media (max-width: 576px) {
            .link-item {
                flex: 0 0 48%;
            }
        }

        .pagination {
            text-align: center;
            margin-top: 30px;
        }

        .pagination a {
            margin: 0 5px;
            padding: 8px 16px;
            border: 1px solid #2655ff;
            border-radius: 5px;
            text-decoration: none;
            color: #2655ff;
            transition: background-color 0.3s, color 0.3s;
        }

        .pagination a:hover {
            background-color: #2655ff;
            color: #fff;
        }

        .pagination .current {
            padding: 8px 16px;
            background-color: #2655ff;
            color: #fff;
            border-radius: 5px;
        }