SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>内蒙能源信访监督平台</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(90deg, #1a3a5f 0%, #2c5a8a 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid #f0b400;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            color: #f0b400;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .logo-text p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        nav a:hover, nav a.active {
            background: rgba(255, 255, 255, 0.15);
        }
        
        /* 横幅样式 */
        .banner {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?ixlib=rb-4.0.3') no-repeat center center;
            background-size: cover;
            color: white;
            text-align: center;
            padding: 70px 20px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .banner h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        
        /* 举报入口样式 */
        .report-section {
            background: white;
            border-radius: 10px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-top: 5px solid #f0b400;
        }
        
        .section-title {
            text-align: center;
            color: #1a3a5f;
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #f0b400;
            border-radius: 2px;
        }
        
        .report-options {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .option-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            width: 280px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eaecef;
        }
        
        .option-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
            border-color: #d0d5dd;
        }
        
        .option-icon {
            font-size: 3rem;
            color: #2c5a8a;
            margin-bottom: 20px;
        }
        
        .option-card h3 {
            color: #1a3a5f;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .option-card p {
            color: #555;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .btn {
            display: inline-block;
            background: #1a3a5f;
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            background: #2c5a8a;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        
        .btn-report {
            background: #d9534f;
            font-size: 1.1rem;
            padding: 15px 35px;
        }
        
        .btn-report:hover {
            background: #c9302c;
        }
        
        /* 表单样式 */
        .report-form {
            max-width: 800px;
            margin: 40px auto 0;
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaecef;
            display: none;
        }
        
        .report-form.active {
            display: block;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1a3a5f;
        }
        
        .form-group label.required:after {
            content: '*';
            color: #d9534f;
            margin-left: 4px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #2c5a8a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(44, 90, 138, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .form-footer {
            margin-top: 30px;
            text-align: center;
        }
        
        .form-note {
            font-size: 0.9rem;
            color: #666;
            margin-top: 20px;
            text-align: center;
        }
        
        .form-note a {
            color: #2c5a8a;
            text-decoration: none;
        }
        
        .form-note a:hover {
            text-decoration: underline;
        }
        
        /* 流程说明 */
        .process-section {
            margin: 60px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
            gap: 20px;
        }
        
        .step {
            text-align: center;
            width: 200px;
            position: relative;
        }
        
        .step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50px;
            width: 40px;
            height: 3px;
            background: #f0b400;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: #1a3a5f;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .step h3 {
            color: #1a3a5f;
            margin-bottom: 10px;
        }
        
        .step p {
            color: #555;
            font-size: 0.9rem;
        }
        
        /* 承诺部分 */
        .commitment {
            background: linear-gradient(90deg, #1a3a5f 0%, #2c5a8a 100%);
            color: white;
            padding: 50px;
            border-radius: 10px;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .commitment h2 {
            font-size: 2rem;
            margin-bottom: 25px;
        }
        
        .commitment-points {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .commitment-point {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 8px;
            width: 250px;
            transition: all 0.3s ease;
        }
        
        .commitment-point:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .commitment-point i {
            font-size: 2.5rem;
            color: #f0b400;
            margin-bottom: 15px;
        }
        
        /* 底部样式 */
        footer {
            background: #1a3a5f;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0b400;
            display: inline-block;
        }
        
        .contact-info p {
            margin: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                gap: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step:not(:last-child):after {
                display: none;
            }
            
            .step {
                margin-bottom: 40px;
            }
            
            .banner h2 {
                font-size: 2rem;
            }
            
            .banner p {
                font-size: 1rem;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
    </style>
</head>
<body>
    <!-- 头部区域 -->
    <header>
        <div class="container header-content">
            <div class="logo">
                <div class="logo-icon">
                    <i class="fas fa-shield-alt"></i>
                </div>
                <div class="logo-text">
                    <h1>内蒙能源信访监督平台</h1>
                    <p>公正 · 透明 · 高效 · 为民</p>
                </div>
            </div>
            <nav>
                <ul>
                    <li><a href="#" class="active">首页</a></li>
                    <li><a href="#">政策法规</a></li>
                    <li><a href="#">举报查询</a></li>
                    <li><a href="#">结果公示</a></li>
                    <li><a href="#">关于我们</a></li>
                </ul>
            </nav>
        </div>
    </header>
    
    <div class="container">
        <!-- 横幅区域 -->
        <section class="banner">
            <h2>强化信访监督,保障能源行业健康发展</h2>
            <p>本平台致力于受理内蒙古自治区能源行业的信访举报,维护群众合法权益,促进行业规范运行</p>
            <a href="#report" class="btn btn-report">立即举报</a>
        </section>
        
        <!-- 举报入口区域 -->
        <section class="report-section" id="report">
            <h2 class="section-title">信访监督举报入口</h2>
            <p style="text-align: center; max-width: 800px; margin: 0 auto 30px; color: #555;">
                如果您发现内蒙古能源行业存在违规违纪行为、安全隐患、腐败问题或侵害群众利益的情况,请通过以下渠道向我们举报。我们将严格保密举报人信息,并及时处理您的举报。
            </p>
            
            <div class="report-options">
                <div class="option-card" onclick="showForm('online')">
                    <div class="option-icon">
                        <i class="fas fa-laptop"></i>
                    </div>
                    <h3>网络举报</h3>
                    <p>通过在线表单提交举报信息,方便快捷</p>
                    <button class="btn">在线举报</button>
                </div>
                
                <div class="option-card" onclick="showForm('phone')">
                    <div class="option-icon">
                        <i class="fas fa-phone-alt"></i>
                    </div>
                    <h3>电话举报</h3>
                    <p>拨打举报热线直接反映问题</p>
                    <button class="btn">13153868567</button>
                </div>
                
                <div class="option-card" onclick="showForm('mail')">
                    <div class="option-icon">
                        <i class="fas fa-envelope"></i>
                    </div>
                    <h3>信函举报</h3>
                    <p>通过邮寄方式提交书面举报材料</p>
                    <button class="btn">查看地址</button>
                </div>
            </div>
            
            <!-- 在线举报表单 -->
            <div id="online-form" class="report-form">
                <h3 style="text-align: center; color: #1a3a5f; margin-bottom: 25px;">网络举报表单</h3>
                
                <form id="complaintForm" onsubmit="submitForm(event)">
                    <div class="form-row">
                        <div class="form-group">
                            <label for="name" class="required">姓名</label>
                            <input type="text" id="name" class="form-control" required>
                        </div>
                        <div class="form-group">
                            <label for="gender">性别</label>
                            <select id="gender" class="form-control">
                                <option value="">请选择</option>
                                <option value="男"></option>
                                <option value="女"></option>
                            </select>
                        </div>
                    </div>
                    
                    <div class="form-row">
                        <div class="form-group">
                            <label for="phone" class="required">联系电话</label>
                            <input type="tel" id="phone" class="form-control" required>
                        </div>
                        <div class="form-group">
                            <label for="idcard">身份证号</label>
                            <input type="text" id="idcard" class="form-control">
                        </div>
                    </div>
                    
                    <div class="form-group">
                        <label for="address">联系地址</label>
                        <input type="text" id="address" class="form-control">
                    </div>
                    
                    <div class="form-group">
                        <label for="title" class="required">举报标题</label>
                        <input type="text" id="title" class="form-control" required placeholder="简要概括举报内容">
                    </div>
                    
                    <div class="form-group">
                        <label for="type" class="required">举报类型</label>
                        <select id="type" class="form-control" required>
                            <option value="">请选择举报类型</option>
                            <option value="贪污受贿">贪污受贿</option>
                            <option value="滥用职权">滥用职权</option>
                            <option value="违规操作">违规操作</option>
                            <option value="安全隐患">安全隐患</option>
                            <option value="环境污染">环境污染</option>
                            <option value="其他">其他</option>
                        </select>
                    </div>
                    
                    <div class="form-group">
                        <label for="company" class="required">涉及单位</label>
                        <input type="text" id="company" class="form-control" required placeholder="请输入涉及的单位名称">
                    </div>
                    
                    <div class="form-group">
                        <label for="location" class="required">事发地点</label>
                        <input type="text" id="location" class="form-control" required placeholder="请输入事发地点">
                    </div>
                    
                    <div class="form-group">
                        <label for="time" class="required">事发时间</label>
                        <input type="date" id="time" class="form-control" required>
                    </div>
                    
                    <div class="form-group">
                        <label for="content" class="required">举报内容</label>
                        <textarea id="content" class="form-control" required placeholder="请详细描述举报内容,包括具体事实、经过及相关证据"></textarea>
                    </div>
                    
                    <div class="form-group">
                        <label for="evidence">上传证据</label>
                        <input type="file" id="evidence" class="form-control" multiple>
                        <p style="font-size: 0.8rem; color: #666; margin-top: 5px;">可上传图片、文档等证明材料(不超过10MB)</p>
                    </div>
                    
                    <div class="form-group">
                        <label>
                            <input type="checkbox" id="anonymous"> 匿名举报
                        </label>
                        <p style="font-size: 0.8rem; color: #666; margin-top: 5px;">选择匿名举报将不显示您的个人信息,但可能影响调查反馈</p>
                    </div>
                    
                    <div class="form-footer">
                        <button type="submit" class="btn btn-report">提交举报</button>
                    </div>
                    
                    <div class="form-note">
                        <p>我们承诺对您的个人信息严格保密,举报内容将及时转交相关部门处理。</p>
                        <p>请如实填写举报信息,虚假举报将承担相应法律责任。</p>
                    </div>
                </form>
            </div>
            
            <!-- 电话举报内容 -->
            <div id="phone-form" class="report-form">
                <h3 style="text-align: center; color: #1a3a5f; margin-bottom: 25px;">电话举报</h3>
                
                <div style="text-align: center; margin-bottom: 30px;">
                    <p style="font-size: 1.2rem; margin-bottom: 15px;">举报热线:</p>
                    <a href="tel:13153868567" style="font-size: 1.8rem; font-weight: bold; color: #d9534f; text-decoration: none;">13153868567</a>
                </div>
                
                <div style="background: #f0f4f8; padding: 20px; border-radius: 8px; margin-bottom: 30px;">
                    <h4 style="color: #1a3a5f; margin-bottom: 15px;">电话举报须知:</h4>
                    <ul style="padding-left: 20px;">
                        <li style="margin-bottom: 10px;">请在工作日(周一至周五)8:30-12:00,14:30-17:30拨打</li>
                        <li style="margin-bottom: 10px;">通话内容将被录音,请如实反映问题</li>
                        <li style="margin-bottom: 10px;">准备好相关证据材料,以便工作人员询问</li>
                        <li style="margin-bottom: 10px;">请记下工作人员提供的举报编号,以便查询进展</li>
                    </ul>
                </div>
                
                <div class="form-note">
                    <p>电话举报同样受法律保护,我们将严格保密举报人信息。</p>
                </div>
            </div>
            
            <!-- 信函举报内容 -->
            <div id="mail-form" class="report-form">
                <h3 style="text-align: center; color: #1a3a5f; margin-bottom: 25px;">信函举报</h3>
                
                <div style="margin-bottom: 30px;">
                    <p style="font-size: 1.1rem; margin-bottom: 15px;">举报信邮寄地址:</p>
                    <p style="background: #f0f4f8; padding: 15px; border-radius: 6px; font-size: 1.2rem;">
                        内蒙古鄂尔多斯市鄂托克前旗<br>
                        内蒙古能源信访监督办公室(收)<br>
                        邮编:016200
                    </p>
                </div>
                
                <div style="background: #f0f4f8; padding: 20px; border-radius: 8px; margin-bottom: 30px;">
                    <h4 style="color: #1a3a5f; margin-bottom: 15px;">信函举报须知:</h4>
                    <ul style="padding-left: 20px;">
                        <li style="margin-bottom: 10px;">请使用真实姓名或化名(如选择匿名举报)</li>
                        <li style="margin-bottom: 10px;">详细描述举报事实,包括时间、地点、涉及人员等</li>
                        <li style="margin-bottom: 10px;">尽可能提供相关证据材料复印件</li>
                        <li style="margin-bottom: 10px;">请在信封上注明"举报材料"字样</li>
                        <li style="margin-bottom: 10px;">如需回复,请附上联系方式</li>
                    </ul>
                </div>
                
                <div class="form-note">
                    <p>信函举报同样受法律保护,我们将严格保密举报人信息。</p>
                </div>
            </div>
        </section>
        
        <!-- 举报流程 -->
        <section class="process-section">
            <h2 class="section-title">举报处理流程</h2>
            
            <div class="process-steps">
                <div class="step">
                    <div class="step-number">1</div>
                    <h3>提交举报</h3>
                    <p>通过任一渠道提交举报信息</p>
                </div>
                
                <div class="step">
                    <div class="step-number">2</div>
                    <h3>信息核实</h3>
                    <p>工作人员核实举报内容真实性</p>
                </div>
                
                <div class="step">
                    <div class="step-number">3</div>
                    <h3>立案调查</h3>
                    <p>对有效举报开展深入调查</p>
                </div>
                
                <div class="step">
                    <div class="step-number">4</div>
                    <h3>结果反馈</h3>
                    <p>向举报人反馈处理结果</p>
                </div>
            </div>
        </section>
        
        <!-- 承诺部分 -->
        <section class="commitment">
            <h2>我们的承诺</h2>
            <p>我们致力于打造公平、透明、高效的信访监督平台</p>
            
            <div class="commitment-points">
                <div class="commitment-point">
                    <i class="fas fa-lock"></i>
                    <h3>严格保密</h3>
                    <p>对举报人信息严格保密,保护举报人权益</p>
                </div>
                
                <div class="commitment-point">
                    <i class="fas fa-balance-scale"></i>
                    <h3>公正处理</h3>
                    <p>依法依规处理每一起举报,确保公平公正</p>
                </div>
                
                <div class="commitment-point">
                    <i class="fas fa-bolt"></i>
                    <h3>高效响应</h3>
                    <p>简化流程,快速响应,及时反馈处理进展</p>
                </div>
            </div>
        </section>
    </div>
    
    <!-- 底部区域 -->
    <footer>
        <div class="container">
            <div class="footer-content">
                <div class="footer-section">
                    <h3>内蒙能源信访监督平台</h3>
                    <p>致力于加强内蒙古能源行业监督管理,维护群众合法权益,促进行业健康有序发展。</p>
                </div>
                
                <div class="footer-section contact-info">
                    <h3>联系我们</h3>
                    <p><i class="fas fa-map-marker-alt"></i> 内蒙古鄂尔多斯市鄂托克旗前旗上海庙镇</p>
                    <p><i class="fas fa-phone-alt"></i> 举报热线:13153868567</p>
                    <p><i class="fas fa-envelope"></i> 邮箱:nmgnyxf@example.com</p>
                    <p><i class="fas fa-clock"></i> 工作时间:工作日 8:30-12:00, 14:30-17:30</p>
                </div>
                
                <div class="footer-section">
                    <h3>快速链接</h3>
                    <p><a href="#" style="color: #ddd; text-decoration: none;">政策法规</a></p>
                    <p><a href="#" style="color: #ddd; text-decoration: none;">举报查询</a></p>
                    <p><a href="#" style="color: #ddd; text-decoration: none;">结果公示</a></p>
                    <p><a href="#" style="color: #ddd; text-decoration: none;">常见问题</a></p>
                </div>
            </div>
            
            <div class="copyright">
                <p>© 2023 内蒙古能源信访监督办公室 版权所有</p>
                <p>蒙ICP备201256号</p>
            </div>
        </div>
    </footer>

    <script>
        // 显示对应的举报表单
        function showForm(type) {
            // 隐藏所有表单
            document.querySelectorAll('.report-form').forEach(form => {
                form.classList.remove('active');
            });
            
            // 显示选中的表单
            document.getElementById(type + '-form').classList.add('active');
            
            // 滚动到表单位置
            document.getElementById(type + '-form').scrollIntoView({ 
                behavior: 'smooth' 
            });
        }
        
        // 表单提交处理
        function submitForm(event) {
            event.preventDefault();
            
            // 这里可以添加表单验证逻辑
            const form = document.getElementById('complaintForm');
            const formData = new FormData(form);
            
            // 模拟表单提交
            alert('举报信息已提交!我们将尽快处理您的举报。');
            form.reset();
            
            // 实际应用中这里应该是AJAX提交
            // fetch('/api/complaint', {
            //     method: 'POST',
            //     body: formData
            // })
            // .then(response => response.json())
            // .then(data => {
            //     alert('举报提交成功!您的举报编号是:' + data.caseNumber);
            //     form.reset();
            // })
            // .catch(error => {
            //     console.error('Error:', error);
            //     alert('提交失败,请稍后再试');
            // });
        }
    </script>
</body>
</html>