{"id":220,"url":"https:\/\/web.daaee.cn\/.\/bak\/guangji.php","title":"\u6c38\u5174\u5434\u6c0f\u5b97\u8c31\u8572\u5dde\u72ee\u5b50\u53e3\u9053\u9756\u652f","content":"<!DOCTYPE html>\n<html lang=\"zh-CN\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u6c38\u5174\u5434\u6c0f\u5b97\u8c31\u8572\u5dde\u72ee\u5b50\u53e3\u9053\u9756\u652f<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    <style>\n        * {\n            box-sizing: border-box;\n            margin: 0;\n            padding: 0;\n        }\n        body {\n            font-family: 'Microsoft YaHei', sans-serif;\n            line-height: 1.6;\n            color: #333;\n            background-color: #f8f9fa;\n            min-height: 100vh;\n            display: flex;\n            flex-direction: column;\n        }\n        .container {\n            max-width: 1400px;\n            margin: 0 auto;\n            background: white;\n            padding: 20px;\n            border-radius: 8px;\n            box-shadow: 0 0 15px rgba(0,0,0,0.1);\n            flex: 1;\n        }\n        header {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            margin-bottom: 20px;\n            padding-bottom: 15px;\n            border-bottom: 2px solid #e9ecef;\n            flex-wrap: wrap;\n        }\n        .header-left {\n            display: flex;\n            align-items: center;\n            flex-wrap: wrap;\n            flex: 1;\n        }\n        .header-right {\n            display: flex;\n            align-items: center;\n            gap: 10px;\n        }\n        h1, h2, h3, h4 {\n            color: #2c3e50;\n            margin-bottom: 15px;\n            font-weight: 600;\n        }\n        h1 {\n            color: #2c3e50;\n            font-size: 28px;\n            margin-right: 20px;\n        }\n        .btn {\n            display: inline-block;\n            padding: 8px 16px;\n            background: #3498db;\n            color: white;\n            text-decoration: none;\n            border-radius: 4px;\n            border: none;\n            cursor: pointer;\n            font-size: 14px;\n            margin: 5px 5px 5px 0;\n            transition: all 0.3s ease;\n        }\n        .btn:hover {\n            background: #2980b9;\n            transform: translateY(-2px);\n            box-shadow: 0 4px 8px rgba(0,0,0,0.1);\n        }\n        .btn-danger {\n            background: #e74c3c;\n        }\n        .btn-danger:hover {\n            background: #c0392b;\n        }\n        .btn-secondary {\n            background: #7f8c8d;\n        }\n        .btn-secondary:hover {\n            background: #636e72;\n        }\n        .btn-info {\n            background: #2ecc71;\n        }\n        .btn-info:hover {\n            background: #27ae60;\n        }\n        .btn-warning {\n            background: #f39c12;\n        }\n        .btn-warning:hover {\n            background: #d35400;\n        }\n        .form-group {\n            margin-bottom: 20px;\n        }\n        label {\n            display: block;\n            margin-bottom: 8px;\n            font-weight: bold;\n            color: #2c3e50;\n        }\n        input[type=\"text\"],\n        input[type=\"date\"],\n        input[type=\"password\"],\n        input[type=\"search\"],\n        textarea,\n        select {\n            width: 100%;\n            padding: 12px;\n            border: 1px solid #ddd;\n            border-radius: 4px;\n            font-size: 16px;\n            transition: border 0.3s ease;\n        }\n        input:focus, textarea:focus, select:focus {\n            border-color: #3498db;\n            outline: none;\n            box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);\n        }\n        textarea {\n            min-height: 120px;\n            resize: vertical;\n        }\n        .actions {\n            margin-top: 15px;\n            display: flex;\n            flex-wrap: wrap;\n            gap: 10px;\n        }\n        .tree-node {\n            margin: 15px 0;\n            position: relative;\n        }\n        .person-card {\n            border: 1px solid #e9ecef;\n            border-radius: 8px;\n            padding: 20px;\n            background: white;\n            box-shadow: 0 3px 10px rgba(0,0,0,0.08);\n            position: relative;\n            z-index: 2;\n            transition: all 0.3s ease;\n        }\n        .person-card:hover {\n            transform: translateY(-3px);\n            box-shadow: 0 5px 15px rgba(0,0,0,0.1);\n        }\n        .children-container {\n            position: relative;\n            margin-left: 50px;\n            padding-left: 25px;\n        }\n        .children-line {\n            position: absolute;\n            left: 0;\n            top: 0;\n            bottom: 0;\n            width: 3px;\n            background-color: #3498db;\n            z-index: 1;\n            border-radius: 3px;\n        }\n        .children-nodes {\n            display: flex;\n            flex-direction: column;\n            position: relative;\n        }\n        .children-nodes::before {\n            content: '';\n            position: absolute;\n            left: -25px;\n            top: -15px;\n            height: 25px;\n            width: 25px;\n            border-left: 3px solid #3498db;\n            border-bottom: 3px solid #3498db;\n            border-bottom-left-radius: 10px;\n        }\n        .alert {\n            padding: 15px;\n            margin-bottom: 20px;\n            border-radius: 6px;\n            font-weight: 500;\n        }\n        .alert-error {\n            background: #ffebee;\n            color: #c62828;\n            border: 1px solid #ef9a9a;\n        }\n        .alert-success {\n            background: #e8f5e9;\n            color: #2e7d32;\n            border: 1px solid #a5d6a7;\n        }\n        .login-form {\n            max-width: 450px;\n            margin: 50px auto;\n            padding: 30px;\n            background: white;\n            border-radius: 10px;\n            box-shadow: 0 5px 20px rgba(0,0,0,0.1);\n        }\n        .login-form h2 {\n            text-align: center;\n            margin-bottom: 25px;\n            color: #2c3e50;\n        }\n        .person-details {\n            background: white;\n            padding: 25px;\n            border-radius: 8px;\n            box-shadow: 0 3px 10px rgba(0,0,0,0.08);\n        }\n        .person-details h2 {\n            border-bottom: 3px solid #3498db;\n            padding-bottom: 15px;\n            margin-bottom: 25px;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n        .detail-row {\n            margin-bottom: 18px;\n            display: flex;\n            flex-wrap: wrap;\n            padding: 12px 0;\n            border-bottom: 1px solid #f1f1f1;\n        }\n        .detail-label {\n            font-weight: bold;\n            width: 120px;\n            flex-shrink: 0;\n            color: #2c3e50;\n        }\n        .detail-value {\n            flex-grow: 1;\n            color: #555;\n        }\n        .login-note {\n            text-align: center;\n            margin-top: 20px;\n            padding: 15px;\n            background: #e3f2fd;\n            border-radius: 6px;\n            font-weight: 500;\n        }\n        .search-form {\n            display: flex;\n            margin: 15px 0;\n            max-width: 500px;\n        }\n        .search-form input[type=\"search\"] {\n            flex: 1;\n            margin-right: 10px;\n            width: auto;\n        }\n        .search-results {\n            margin-top: 20px;\n        }\n        .search-result-item {\n            border: 1px solid #e9ecef;\n            border-radius: 8px;\n            padding: 20px;\n            margin-bottom: 15px;\n            background: white;\n            box-shadow: 0 2px 5px rgba(0,0,0,0.05);\n            transition: all 0.3s ease;\n        }\n        .search-result-item:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 5px 15px rgba(0,0,0,0.1);\n        }\n        .announcement {\n            background: #fff8e1;\n            border-left: 5px solid #ffc107;\n            padding: 20px;\n            margin: 25px 0;\n            border-radius: 8px;\n            position: relative;\n        }\n        .announcement h3 {\n            color: #ff9800;\n            margin-top: 0;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n        .news-container {\n            margin: 25px 0;\n        }\n        .news-item {\n            border: 1px solid #e9ecef;\n            border-radius: 8px;\n            padding: 20px;\n            margin-bottom: 20px;\n            background: white;\n            box-shadow: 0 3px 10px rgba(0,0,0,0.08);\n        }\n        .news-item h3 {\n            color: #2c3e50;\n            border-bottom: 2px solid #f1f1f1;\n            padding-bottom: 10px;\n            margin-bottom: 15px;\n        }\n        .news-meta {\n            color: #7f8c8d;\n            font-size: 14px;\n            margin-bottom: 15px;\n        }\n        .footer {\n            text-align: center;\n            margin-top: 40px;\n            padding: 25px;\n            color: #7f8c8d;\n            border-top: 1px solid #e9ecef;\n            background: #f8f9fa;\n            border-radius: 0 0 8px 8px;\n        }\n        .nav-tabs {\n            display: flex;\n            border-bottom: 2px solid #e9ecef;\n            margin-bottom: 20px;\n        }\n        .nav-tab {\n            padding: 12px 20px;\n            cursor: pointer;\n            background: #f8f9fa;\n            border: 1px solid #e9ecef;\n            border-bottom: none;\n            margin-right: 5px;\n            border-radius: 5px 5px 0 0;\n            font-weight: 500;\n            transition: all 0.3s ease;\n        }\n        .nav-tab.active {\n            background: #3498db;\n            color: white;\n            border-color: #3498db;\n        }\n        .tab-content {\n            display: none;\n        }\n        .tab-content.active {\n            display: block;\n        }\n        .editor-toolbar {\n            background: #f8f9fa;\n            padding: 10px;\n            border: 1px solid #ddd;\n            border-bottom: none;\n            border-radius: 4px 4px 0 0;\n        }\n        .editor-toolbar button {\n            background: white;\n            border: 1px solid #ddd;\n            padding: 5px 10px;\n            margin-right: 5px;\n            border-radius: 3px;\n            cursor: pointer;\n        }\n        .editor-toolbar button:hover {\n            background: #f1f1f1;\n        }\n        .html-editor {\n            min-height: 200px;\n            border: 1px solid #ddd;\n            border-radius: 0 0 4px 4px;\n            padding: 12px;\n        }\n        .action-buttons {\n            display: flex;\n            justify-content: flex-end;\n            gap: 10px;\n            margin-top: 20px;\n        }\n        .breadcrumb {\n            padding: 10px 15px;\n            margin-bottom: 20px;\n            background: #f8f9fa;\n            border-radius: 4px;\n            font-size: 14px;\n        }\n        .breadcrumb a {\n            color: #3498db;\n            text-decoration: none;\n        }\n        .breadcrumb a:hover {\n            text-decoration: underline;\n        }\n        .empty-value {\n            color: #999;\n            font-style: italic;\n        }\n        @media (max-width: 992px) {\n            .container {\n                padding: 15px;\n            }\n            header {\n                flex-direction: column;\n                text-align: center;\n            }\n            header h1 {\n                margin-bottom: 15px;\n                margin-right: 0;\n            }\n            .header-left, .header-right {\n                flex-direction: column;\n                width: 100%;\n                align-items: center;\n            }\n            .header-right {\n                margin-top: 15px;\n            }\n            .children-container {\n                margin-left: 30px;\n            }\n        }\n        @media (max-width: 768px) {\n            .detail-row {\n                flex-direction: column;\n            }\n            .detail-label {\n                width: 100%;\n                margin-bottom: 5px;\n            }\n            .children-container {\n                margin-left: 20px;\n            }\n            .btn {\n                display: block;\n                width: 100%;\n                text-align: center;\n                margin: 5px 0;\n            }\n            .search-form {\n                flex-direction: column;\n                max-width: 100%;\n            }\n            .search-form input[type=\"search\"] {\n                margin-right: 0;\n                margin-bottom: 10px;\n                width: 100%;\n            }\n            .nav-tabs {\n                flex-wrap: wrap;\n            }\n            .nav-tab {\n                margin-bottom: 5px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"container\">\n                <header>\n            <div class=\"header-left\">\n                <h1>\u6c38\u5174\u5434\u6c0f\u5b97\u8c31\u8572\u5dde\u72ee\u5b50\u53e3\u9053\u9756\u652f<\/h1>\n                <form method=\"GET\" action=\"\" class=\"search-form\">\n                    <input type=\"hidden\" name=\"action\" value=\"search\">\n                    <input type=\"search\" name=\"q\" placeholder=\"\u641c\u7d22\u4eba\u7269...\" value=\"\">\n                    <button type=\"submit\" class=\"btn btn-info\">\u641c\u7d22<\/button>\n                <\/form>\n            <\/div>\n            <div class=\"header-right\">\n                <a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dnews\" class=\"btn btn-info\"><i class=\"fas fa-newspaper\"><\/i> \u65b0\u95fb<\/a>\n                <a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dlogin\" class=\"btn\"><i class=\"fas fa-sign-in-alt\"><\/i> \u767b\u5f55<\/a>\n            <\/div>\n        <\/header>\n        \n                \n        \n        <!-- \u7f51\u7ad9\u516c\u544a\u677f -->\n        <div class=\"announcement\">\n            <h3>\n                <span><i class=\"fas fa-bullhorn\"><\/i> \u7f51\u7ad9\u516c\u544a<\/span>\n                            <\/h3>\n            <p>\u672c\u5bb6\u8c31\u4e3a\u6c38\u5174\u5434\u6c0f\u59cb\u7956\u826f\u6750\u516c\u7b2c\u5341\u516d\u4e16\u4f20\u81f3\u671d\u5b97(\u6cf0\u4f2f\u516b\u5341\u4e00\u4e16\u5b59)\uff0c\u5b57\u4ef2\u6587\u751f\u4e8e\u5357\u5b8b\u9ad8\u5b97\u7ecd\u5174\u5341\u4e8c\u5e74(\u516c\u51431142\u5e74)\u7684\u540e\u4ee3\u5bb6\u8c31\u7cfb\u7edf\u3002<\/p>\n        <\/div>\n\n                        <h2><i class=\"fas fa-tree\"><\/i> \u5bb6\u8c31\u6811<\/h2>\n                \n                                \n                <div class=\"tree-container\">\n                    <div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D1\">\u671d\u5b97<\/a><\/h3><p>\u5b57\u53f7: \u4ef2\u6587<\/p><p>\u51fa\u751f: 1142-12-01 @ \u9633\u65b0<\/p><\/div><div class=\"children-container\"><div class=\"children-line\"><\/div><div class=\"children-nodes\"><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D2\">\u5f66\u606d<\/a><\/h3><\/div><div class=\"children-container\"><div class=\"children-line\"><\/div><div class=\"children-nodes\"><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D4\">\u79c0\u4e8c<\/a><\/h3><\/div><div class=\"children-container\"><div class=\"children-line\"><\/div><div class=\"children-nodes\"><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D5\">\u5b50\u548c<\/a><\/h3><\/div><div class=\"children-container\"><div class=\"children-line\"><\/div><div class=\"children-nodes\"><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D6\">\u6587\u4ef2<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D9\">\u6587\u4fe1<\/a><\/h3><\/div><div class=\"children-container\"><div class=\"children-line\"><\/div><div class=\"children-nodes\"><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D13\">\u5143\u4fca<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D12\">\u5143\u656c<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D10\">\u5143\u658c<\/a><\/h3><\/div><div class=\"children-container\"><div class=\"children-line\"><\/div><div class=\"children-nodes\"><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D14\">\u9053\u6e05<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D17\">\u9053\u76ca<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D16\">\u9053\u7f18<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D15\">\u9053\u9759<\/a><\/h3><\/div><div class=\"children-container\"><div class=\"children-line\"><\/div><div class=\"children-nodes\"><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D20\">\u740f<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D22\">\u7433<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D19\">\u7440<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D18\">\u745e<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D21\">\u748b<\/a><\/h3><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D11\">\u5143\u6d77<\/a><\/h3><\/div><\/div><\/div><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D7\">\u6587\u660e<\/a><\/h3><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D8\">\u6587\u97ec<\/a><\/h3><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"tree-node\"><div class=\"person-card\"><h3><a href=\"?url=https%3A%2F%2Fweb.daaee.cn%2F%3Faction%3Dview%26id%3D3\">\u5f66\u624d<\/a><\/h3><\/div><\/div><\/div><\/div><\/div>                <\/div>\n                        \n        <div class=\"footer\">\n            <p>\u6c38\u5174\u5434\u6c0f\u5b97\u8c31\u8572\u5dde\u72ee\u5b50\u53e3\u9053\u9756\u652f &copy; 2026<\/p>\n            <p>\u672c\u7cfb\u7edf\u7528\u4e8e\u5bb6\u65cf\u8c31\u7cfb\u7ba1\u7406\u4e0e\u5c55\u793a<\/p>\n        <\/div>\n    <\/div>\n<\/body>\n<\/html>"}