        body {
            background-color: #1a1a1a;
            color: #fff;
            margin: 0;
            padding: 0;
        }

        .vip-status {
            color: #FF6B00;
            font-weight: bold;
        }

        /* 容器样式 */
        .container {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
            background-color: #2a2a2a;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        /* 返回按钮样式 */
        button {
            background-color: #007BFF;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #0056b3;
        }

        /* 应用标题样式 */
        h1 {
            font-size: 28px;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        /* 应用元信息样式 */
        .app-meta {
            color: #a0a0a0;
            margin-bottom: 20px;
        }

        .app-meta a {
            color: #007BFF;
            text-decoration: none;
        }

        .app-meta a:hover {
            text-decoration: underline;
        }

        .vip-badge {
            color: #FF6B00;
            margin-left: 5px;
        }

        .developer-badge {
            color: orange;
            margin-left: 5px;
        }

        .admin-badge {
            color: blue;
            margin-left: 5px;
        }

        /* 应用信息样式 */
        .app-info span {
            background-color: #333;
            padding: 3px 8px;
            border-radius: 5px;
            margin-right: 5px;
        }

        /* 应用内容样式 */
        .app-content {
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .app-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
        }

        iframe {
            width: 100%;
            height: 300px;
            border: none;
            margin-top: 20px;
        }

        /* 点赞、投币、收藏、分享按钮样式 */
        .flex {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .flex img {
            width: 30px;
            height: 30px;
            cursor: pointer;
            transition: transform 0.3s ease;
            vertical-align: middle; /* 添加垂直居中对齐 */
        }

        .flex img:hover {
            transform: scale(1.1);
        }

        /* 评论区样式 */
        .comments-section {
            margin-top: 40px;
        }

        h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        /* 评论表单样式 */
        .comment-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #333;
            border-radius: 5px;
            margin-bottom: 10px;
            background-color: #2a2a2a;
            color: #e0e0e0;
        }

        .comment-form input[type="image"] {
            width: 40px;
            height: 40px;
            float: right;
            cursor: pointer;
        }

        /* 评论样式 */
        .comment {
            border: 1px solid #333;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            background-color: #2a2a2a;
        }

        .comment-meta {
            color: #a0a0a0;
            margin-bottom: 10px;
        }

        .comment-meta a {
            color: #007BFF;
            text-decoration: none;
        }

        .comment-meta a:hover {
            text-decoration: underline;
        }

        .comment-content {
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .comment-actions {
            display: flex;
            gap: 10px;
        }

        .comment-actions button {
            background-color: #6c757d;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .comment-actions button:hover {
            background-color: #5a6268;
        }

        /* 回复表单样式 */
        .reply-form {
            display: none;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #333;
        }

        .reply-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #333;
            border-radius: 5px;
            margin-bottom: 10px;
            background-color: #2a2a2a;
            color: #e0e0e0;
        }

        .reply-form input[type="image"] {
            width: 40px;
            height: 40px;
            float: right;
            cursor: pointer;
        }

        /* 回复样式 */
        .replies {
            margin-top: 20px;
            padding-left: 20px;
        }

        .reply {
            border-left: 2px solid #333;
            padding-left: 10px;
            margin-bottom: 10px;
        }

        .reply-meta {
            color: #a0a0a0;
            margin-bottom: 5px;
        }

        .reply-meta a {
            color: #007BFF;
            text-decoration: none;
        }

        .reply-meta a:hover {
            text-decoration: underline;
        }

        .reply-content {
            line-height: 1.6;
        }

        /* 蓝色滤镜样式 */
        .blue-filter {
            filter: hue-rotate(200deg) saturate(5) brightness(0.8);
        }

        /* 设置图标大小 */
        .app-header img {
            width: 80px; /* 可根据需要调整大小 */
            height: 80px;
            object-fit: cover;
            margin-right: 20px;
            border-radius: 15px; /* 添加圆角 */
        }

        /* 下载按钮样式 */
        .download-btn {
            display: inline-block;
            background-color: #007BFF;
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
            font-weight: bold;
        }

        .download-btn:hover {
            background-color: #0056b3;
        }

        /* 应用图标和名称居中 */
        .app-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* 添加下载按钮居中样式 */
        .download-btn-container {
            text-align: center;
            margin-bottom: 20px;
        }



