
        .verification-body {
            font-family: 'Microsoft YaHei', sans-serif;
            /* background-color: #f0f2f5; */
            display: flex;
            justify-content: center;
            align-items: center;
            /* height: 100vh; */
            margin: 0;
        }
        .verification-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 100%;
            max-width: 500px;
        }
        .verification-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .verification-title {
            color: #333;
            font-size: 24px;
            margin-bottom: 10px;
        }
        .verification-subtitle {
            color: #666;
            font-size: 14px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        .form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #d9d9d9;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box;
            transition: border-color 0.3s;
        }
        .form-input:focus {
            border-color: #1890ff;
            outline: none;
        }
        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #1890ff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #40a9ff;
        }
        .result-container {
            margin-top: 25px;
            padding: 15px;
            border-radius: 4px;
            display: none;
        }
        .success-result {
            background-color: #f6ffed;
            border: 1px solid #b7eb8f;
            color: #52c41a;
        }
        .error-result {
            background-color: #fff2f0;
            border: 1px solid #ffccc7;
            color: #ff4d4f;
        }
        .result-title {
            font-weight: bold;
            margin-bottom: 10px;
        }
        .result-content {
            line-height: 1.6;
        }
        .secure-notice {
            margin-top: 20px;
            font-size: 12px;
            color: #999;
            text-align: center;
        }