* { box-sizing: border-box; }

        body {
            margin: 0;
            background: #ffffff;
            color: #333333;
            font-family: "Source Han Sans CN", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
        }

        .simp-page-container {
            width: min(1330px, calc(100% - 48px));
            margin: 0 auto;
        }

        .simp-page-title {
            padding: 24px 0;
            text-align: center;
        }

        .simp-page-title .page-tag {
            display: inline-flex;
            align-items: center;
            height: 26px;
            padding: 0 16px;
            border-radius: 15px;
            background: #d4e9ff;
            color: #0066ff;
            font-size: 14px;
            line-height: 1;
        }

        .simp-page-title h1 {
            margin: 12px 0 0;
            color: #1a1a1a;
            font-size: 36px;
            font-weight: 500;
            line-height: 1.25;
        }

        .simp-page-content { padding: 0 0 56px; }

        .page-profile {
            min-height: 164px;
            padding: 24px 32px;
            border-radius: 16px;
            background: #f3f9ff;
        }

        .page-profile-main {
            display: flex;
            align-items: center;
            min-height: 40px;
            gap: 12px;
        }

        .page-profile-avatar {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            overflow: hidden;
            border-radius: 50%;
            background: #d4e9ff;
        }

        .page-profile-avatar img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .page-profile-label {
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 500;
            line-height: 23px;
        }

        .page-profile-summary {
            margin: 20px 0 0;
            color: #333333;
            font-size: 16px;
            line-height: 23px;
        }

        .article-content {
            margin-top: 36px;
        }

        .article-content::after {
            display: block;
            clear: both;
            content: "";
        }

        .article-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-top: 36px;
            padding-top: 20px;
            border-top: 1px solid #edf0f3;
        }

        .article-footer .tags,
        .article-footer .share {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .article-footer .tags a,
        .article-footer .share a {
            color: #666666;
            font-size: 14px;
            text-decoration: none;
        }

        .article-footer .tags a:hover,
        .article-footer .share a:hover { color: #0066ff; }

        .article-footer .share span {
            color: #999999;
            font-size: 14px;
        }

        @media screen and (max-width: 768px) {
            .simp-page-container { width: min(100% - 32px, 1200px); }

            .simp-page-title { padding: 22px 0 42px; }

            .simp-page-title h1 {
                margin-top: 14px;
                font-size: 26px;
                line-height: 1.35;
            }

            .page-profile { padding: 20px; }

            .article-content { margin-top: 30px; }

            .article-footer {
                align-items: flex-start;
                flex-direction: column;
                gap: 14px;
            }
        }
