        /* 全局样式 */
        body {
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            line-height: 1.5;
/*            background-image: url('/template/mizhiui-two/static/index/bj.png');*/
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            max-width: 1000px;
            margin: 50px auto;
            padding: 20px;
            background-color: rgba(255,255,255,0.9);
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            flex: 1;
        }
        /* 导航栏样式 */
        .navbar {
            background-color: #007bff;
            border-bottom: 1px solid #eee;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-weight: bold;
            color: #fff;
        }
        .navbar-nav .nav-link {
            color: #fff;
            font-size: 14px;
        }
        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link:hover {
            color: #ffc107;
        }
        /* 表单样式 */
        .card {
            border: none;
            box-shadow: none;
        }
        .card-header {
            background-color: #f8f9fa;
            border-bottom: 1px solid #eee;
            font-size: 24px;
            font-weight: bold;
            padding: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        input.form-control {
            border-color: #eee;
            border-radius: 5px;
            padding: 10px;
            font-size: 14px;
        }
        input.form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
        }
        /* 按钮样式 */
        .btn {
            font-size: 16px;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 5px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
            color: #fff;
        }
        .btn-primary:hover {
            background-color: #0069d9;
            border-color: #0062cc;
        }
        .btn-success {
            background-color: #28a745;
            border-color: #28a745;
            color: #fff;
        }
        .btn-success:hover {
            background-color: #218838;
            border-color: #1e7e34;
        }
        .btn-warning {
            background-color: #ffc107;
            border-color: #ffc107;
            color: #333;
        }
        .btn-warning:hover {
            background-color: #e0a800;
            border-color: #d39e00;
        }
        /* 页脚样式 */
        .footer {
            margin-top: auto;
            padding: 20px 0;
            background-color: #f8f9fa;
            border-top: 1px solid #eee;
            text-align: center;
            box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
        }
        .footer p {
            margin: 0;
            font-size: 14px;
            color: #666;
        }
        .footer a {
            color: #333;
            text-decoration: none;
        }
        .footer a:hover {
             color: #ffffff;
            text-decoration: underline;
        }