
        /* 重置默认样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.5;
            color: #333;
            background-color: #114fa2;
        }
        
        /* 全屏容器样式 */
        .container {
            max-width: 600px;
            margin: 0 auto;
            margin-bottom: -20px;
        }
        
        .header {
            max-width: 600px;
            margin: 0 auto;
            margin-bottom: 5px;
        }
        
        .header img {
            display: block;width: 100%;
        }
        
        /* 成功页面标题样式 */
        .header h1 {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            color: #1890ff;
            margin: 20px 0 10px 0;
            letter-spacing: 1px;
        }
        
        /* 副标题样式 */
        .header p.subtitle {
            text-align: center;
            font-size: 16px;
            color: rgba(0, 0, 0, 0.7);
            margin: 0 20px 20px 20px;
            line-height: 1.5;
        }
        

        .detail {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .detail img {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block;
            margin: 0 auto;
            padding: 0 ;
            border: 0;
            margin-bottom: -1px;
        }
        
        /* 表单容器 - 无边框全屏样式 */
        .form-container {
            padding: 20px 15px;
            max-width: 600px;
            margin: 0 10px 20px 10px;
            background-color: #ffffff;
            border-radius: 12px;
        }
        
        .form-group {
            margin-bottom: 13px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 15px;
            color: rgba(0, 0, 0, 0.85);
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e8e8e8;
            border-radius: 8px;
            font-size: 15px;
            background-color: #ffffff;
            transition: all 0.3s;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #1890ff;
            box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
        }
        
        .btn-confirm {
            width: 100%;
            padding: 12px 24px;
            color: #ffffff;
            background-color: #1890ff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-confirm:hover {
            background-color: #40a9ff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
        }
        
        .btn-confirm:active {
            background-color: #096dd9;
            transform: translateY(0);
        }
        
        .btn-confirm:disabled {
            color: rgba(0, 0, 0, 0.25);
            border-color: #d9d9d9;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .success-message {
            color: #52c41a;
            background-color: #ffffff;
            padding: 30px;
            text-align: center;
            font-size: 16px;
            display: none;
        }
        
        .pickup-code {
            font-size: 36px;
            font-weight: 700;
            color: #1890ff;
            margin: 20px 0;
            letter-spacing: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            word-break: keep-all;
            display: inline-block;
        }
        
        .error-message {
            color: #ff4d4f;
            font-size: 14px;
            margin-top: 6px;
            display: none;
        }
        
        .footer {
            background-color: #fff;
            text-align: center;
            padding: 30px 20px;
            color: rgba(0, 0, 0, 0.65);
            font-size: 14px;
            border-top: 1px solid #f5f5f5;
        }
        
        .footer .note {
            margin-top: 5px;
            font-size: 13px;
            color: rgba(0, 0, 0, 0.45);
        }
