
        /* 404页面专属样式 */
        .error-404-container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            text-align: center;
            font-family: "Microsoft YaHei", sans-serif;
        }
        .error-title {
            font-size: 120px;
            font-weight: bold;
            color: #367dc6;
            margin: 0;
            line-height: 1.2;
        }
        .error-subtitle {
            font-size: 24px;
            color: #444;
            margin: 10px 0 30px;
        }
        .error-desc {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .error-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        .error-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #367dc6;
            color: #fff !important;
            border-radius: 4px;
            text-decoration: none !important;
            font-size: 16px;
            transition: background 0.3s;
        }
        .error-btn:hover {
            background: #2868ac;
        }
        .error-btn.home {
            background: #e63946;
        }
        .error-btn.home:hover {
            background: #d02030;
        }
        .error-image {
            max-width: 300px;
            margin: 0 auto 30px;
        }
        .error-image img {
            width: 100%;
            height: auto;
        }
        /* 适配移动端 */
        @media (max-width: 768px) {
            .error-title {
                font-size: 70px;
            }
            .error-subtitle {
                font-size: 18px;
            }
        }
