        .friend-link-item {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px) saturate(100%);
            -webkit-backdrop-filter: blur(8px) saturate(100%);
            display: flex;
            align-items: center;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .friend-link-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.9);
        }

        .friend-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 12px;
            flex-shrink: 0;
            object-fit: cover;
        }

        .friend-info {
            flex: 1;
            min-width: 0;
        }

        .friend-nickname {
            font-weight: bold;
            margin-bottom: 4px;
            color: #2c3e50;
        }

        .friend-describe {
            font-size: 0.85em;
            color: #666;
            line-height: 1.4;
        }

        body {
            background: url('/image/bg.png') no-repeat center center fixed;
            background-size: cover;
        }

        .dynamic-feed {
            margin: 30px auto;
            max-width: 800px;
        }

        .dynamic-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px) saturate(160%);
            -webkit-backdrop-filter: blur(10px) saturate(160%);
            border-radius: 12px;
            padding: 20px;
            margin: 15px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .dynamic-card:hover {
            transform: translateY(-3px);
        }

        .dynamic-title {
            color: #2c3e50;
            font-size: 1.2em;
            margin-bottom: 8px;
        }

        .dynamic-date {
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 12px;
        }

        .dynamic-content {
            color: #34495e;
            line-height: 1.6;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
        }

        .more-link {
            display: block;
            text-align: right;
            margin-top: 15px;
            color: #3498db;
            text-decoration: none;
        }

        .index-sidebar-section {
            margin-bottom: 25px;
        }

        .index-sidebar-section h3 {
            text-align: center;
            color: #333;
            margin-bottom: 15px;
        }

        .index-feature-box {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px) saturate(140%);
            -webkit-backdrop-filter: blur(8px) saturate(140%);
            border-radius: 10px;
            padding: 15px 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: auto;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin: 10px 0px;
        }

        .index-feature-box a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 0.95rem;
            text-align: center;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .index-feature-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            background-color: rgba(255, 255, 255, 0.4);
        }

        /* 响应式调整 */
        @media (max-width: 480px) {
            .index-feature-box {
                padding: 12px 8px;
                min-height: 50px;
            }

            .index-feature-box a {
                font-size: 0.85rem;
            }
        }

        .index-announcement {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px) saturate(140%);
            -webkit-backdrop-filter: blur(8px) saturate(140%);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .index-divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(0, 123, 255, 0.5), transparent);
            margin: 20px 0;
        }

        .typewriter-container {
            /* 确保容器足够容纳内容 */
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            overflow: hidden;
            height: 100px;
        }

        .typewriter {
            display: inline-block;
            position: relative;
            font-size: 1.3rem;
            color: #333;
            text-align: center;
            /* 确保文字居中 */
            padding-right: 0.3em;
            /* 为光标留出空间 */
        }

        /* 修改光标定位方式 */
        .typewriter::after {
            content: "|";
            position: absolute;
            right: 0;
            /* 固定在文字右侧 */
            animation: blink 0.7s infinite;
            /* 移除原来的right:-0.2em */
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        .recent-posts {
            background: transparent !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
        }

        .recent-header {
            color: #0366d6;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        img {
            width: 100%;
            /* 使图片填充整个容器 */
            height: auto;
            border-radius: 5px;
            margin: 5px 0px;
            /* 高度自适应 */
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 15px 0;
        }

        .social-icons a {
            display: inline-block;
            border-radius: 50%;
            padding: 0;
            /* 移除内边距 */
            background: transparent;
            /* 透明背景 */
        }

        .social-icons img {
            height: 30px;
            width: 30px;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            /* 默认阴影 */
        }

        .social-icons a:hover img {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        /* GitHub 推广链接样式 只有主页用*/
        .github-promo {
            background: rgba(255, 255, 255, 0.2) !important;
            backdrop-filter: blur(10px) saturate(100%) !important;
            -webkit-backdrop-filter: blur(10px) saturate(100%) !important;
            border-radius: 8px !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        }

        .github-promo a {
            transition: all 0.3s ease;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .github-promo a:hover {
            background: rgba(3, 102, 214, 0.1);
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(3, 102, 214, 0.2);
        }

        /* 弹窗系统样式 */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .popup-container {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: popupSlideIn 0.3s ease-out;
        }

        @keyframes popupSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .popup-header h3 {
            margin: 0;
            font-size: 1.3em;
            font-weight: 600;
        }

        .popup-close-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: inherit;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .popup-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .popup-content {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
            line-height: 1.6;
        }

        .popup-content h1,
        .popup-content h2,
        .popup-content h3,
        .popup-content h4 {
            margin-top: 0;
            margin-bottom: 15px;
        }

        .popup-content p {
            margin-bottom: 15px;
        }

        .popup-content ul,
        .popup-content ol {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .popup-content li {
            margin-bottom: 5px;
        }

        .popup-content blockquote {
            border-left: 4px solid rgba(255, 255, 255, 0.5);
            margin: 15px 0;
            padding-left: 15px;
            font-style: italic;
        }

        .popup-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.1);
        }

        .popup-option {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9em;
            cursor: pointer;
        }

        .popup-option input {
            margin: 0;
        }

        .popup-confirm-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: inherit;
            padding: 8px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }

        .popup-confirm-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* 庆祝动效 */
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background: #ff6b6b;
            top: -10px;
            animation: confettiFall 3s linear forwards;
            z-index: 10001;
        }

        @keyframes confettiFall {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        #celebration-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10002;
        }