/*
Navicat MySQL Data Transfer

Source Server         : localmysql
Source Server Version : 50621
Source Host           : localhost:3306
Source Database       : hanhe_test

Target Server Type    : MYSQL
Target Server Version : 50621
File Encoding         : 65001

Date: 2016-12-25 23:57:38
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for user_
-- ----------------------------
DROP TABLE IF EXISTS `user_`;
CREATE TABLE `user_` (
  `username_` varchar(20) NOT NULL,
  `password_` varchar(20) NOT NULL,
  `id_` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `nickname_` varchar(20) NOT NULL,
  PRIMARY KEY (`id_`),
  UNIQUE KEY `username_` (`username_`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of user_
-- ----------------------------
INSERT INTO `user_` VALUES ('user1', 'pass1', '1', 'user1_nick');
INSERT INTO `user_` VALUES ('user2', 'pass2', '2', 'user2_dick');

-- ----------------------------
-- Table structure for xkl_admin
-- ----------------------------
DROP TABLE IF EXISTS `xkl_admin`;
CREATE TABLE `xkl_admin` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '管理员编号',
  `account` varchar(128) NOT NULL COMMENT '管理员帐号',
  `pwd` varchar(128) NOT NULL COMMENT '管理员密码',
  `type` int(11) NOT NULL COMMENT '管理员类型,如省级公司管理员,操作员等。',
  `note` text COMMENT '备注',
  `coid` int(11) DEFAULT NULL COMMENT '公司编号',
  `status` tinyint(4) DEFAULT '1' COMMENT '状态(1:正常)',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='管理员信息表';

-- ----------------------------
-- Records of xkl_admin
-- ----------------------------
INSERT INTO `xkl_admin` VALUES ('1', 'admin', '1', '1', 'test', '1', '1');

-- ----------------------------
-- Table structure for xkl_amp_machine
-- ----------------------------
DROP TABLE IF EXISTS `xkl_amp_machine`;
CREATE TABLE `xkl_amp_machine` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `AMPSerial` varchar(128) DEFAULT NULL,
  `secret_key` varchar(128) NOT NULL,
  `company_id` int(11) NOT NULL,
  `note` text,
  `create_time` datetime NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of xkl_amp_machine
-- ----------------------------
INSERT INTO `xkl_amp_machine` VALUES ('1', 'machine', 'machine', '1', 'machine', '2016-11-12 19:42:49', '1');

-- ----------------------------
-- Table structure for xkl_amp_report
-- ----------------------------
DROP TABLE IF EXISTS `xkl_amp_report`;
CREATE TABLE `xkl_amp_report` (
  `id` int(11) NOT NULL,
  `member_id` int(11) NOT NULL COMMENT '用户名称',
  `name` varchar(128) NOT NULL COMMENT '体检报告用户名',
  `title` varchar(128) NOT NULL COMMENT '报告标题',
  `check_time` datetime NOT NULL COMMENT '检查时间',
  `uptime` datetime NOT NULL COMMENT '上传时间',
  `account_str` varchar(128) DEFAULT NULL COMMENT '上传时报告上写的账号信息,以此知道该份报告属于哪个member。',
  `sex` tinyint(4) DEFAULT NULL COMMENT '性别(0:男,male)\n1 女, female',
  `age` tinyint(4) DEFAULT NULL COMMENT '年龄',
  `weight` int(11) DEFAULT NULL COMMENT '体重',
  `pulse` int(11) DEFAULT NULL,
  `breath_rate` int(11) DEFAULT NULL,
  `atmos_pressure` float DEFAULT NULL,
  `LCA` float DEFAULT NULL,
  `RCA` float DEFAULT NULL,
  `LAC` float DEFAULT NULL,
  `RAC` float DEFAULT NULL,
  `ABD` float DEFAULT NULL,
  `temp_sum` float DEFAULT NULL,
  `stable` int(11) DEFAULT NULL,
  `md5` varchar(128) DEFAULT NULL,
  `create_by` int(11) DEFAULT NULL COMMENT '创建人id',
  `machine_num` varchar(128) DEFAULT NULL COMMENT '机器码',
  `T0` text,
  `T1` text,
  `T2` text,
  `T3` text,
  `T4` text,
  `conclusion` text,
  `score` float DEFAULT NULL,
  `company_id` int(11) NOT NULL COMMENT '外键,报告检测公司',
  `status` tinyint(4) DEFAULT '1' COMMENT '数据状态,1为正常,默认1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='体检报告';

-- ----------------------------
-- Records of xkl_amp_report
-- ----------------------------
INSERT INTO `xkl_amp_report` VALUES ('1', '1', '张三', 'AMP快速无创身心健康评估报告', '2016-10-21 12:28:46', '2016-10-22 12:28:56', '18210063495', '1', '28', '67', '77', '15', '678.1', '33.11', '36.22', '35.11', '36.33', '34.11', '172.44', '9999', '7fb66faa55460d1d86916f8513127d66', '1', '79980', '·················', ',,,,,,,,,,,,,,66666666666666', '222222222222', '。。。。。。。。。。。。。。。。。。。', '2222222222222', ' 【主动脉压力降低】。    【肾功能减弱】。    【凝血功能异常】。  【排除影响凝血异常的因素】。    【进一步确诊胃肠疾病】。    【神经功能紊乱】。  【颅内压增高】。    【血管弹性降低】。  【神经衰弱】。   第三脑室宽度=6.37   ----------------------------------------------------------------------------------------------------------    ', '0', '1', '1');

-- ----------------------------
-- Table structure for xkl_amp_report_detail
-- ----------------------------
DROP TABLE IF EXISTS `xkl_amp_report_detail`;
CREATE TABLE `xkl_amp_report_detail` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `report_id` int(11) NOT NULL COMMENT '外键,报告编号',
  `item_id` int(11) NOT NULL COMMENT '外键,体检项编号',
  `item_value` float NOT NULL COMMENT '体检项分数',
  `status` int(11) NOT NULL COMMENT '0, normal\n1, lower\n2, higher',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10300690 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='体检项';

-- ----------------------------
-- Records of xkl_amp_report_detail
-- ----------------------------
INSERT INTO `xkl_amp_report_detail` VALUES ('10300565', '1', '1', '119.22', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300566', '1', '2', '4', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300567', '1', '3', '27.33', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300568', '1', '4', '13.61', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300569', '1', '5', '63.12', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300570', '1', '6', '14.05', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300571', '1', '7', '1.05', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300572', '1', '8', '3.82', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300573', '1', '9', '4.68', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300574', '1', '10', '2.41', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300575', '1', '11', '3.44', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300576', '1', '12', '173.2', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300577', '1', '13', '2.35', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300578', '1', '14', '0.88', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300579', '1', '15', '4.81', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300580', '1', '16', '139.12', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300581', '1', '17', '1.25', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300582', '1', '18', '7.33', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300583', '1', '19', '5.19', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300584', '1', '20', '41.43', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300585', '1', '21', '15.52', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300586', '1', '22', '0.28', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300587', '1', '23', '0.27', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300588', '1', '24', '13.61', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300589', '1', '25', '15.74', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300590', '1', '26', '1.02', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300591', '1', '27', '12.59', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300592', '1', '28', '3.26', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300593', '1', '29', '9.33', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300594', '1', '30', '69.19', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300595', '1', '31', '79.45', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300596', '1', '32', '27.31', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300597', '1', '33', '2.16', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300598', '1', '34', '8.09', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300599', '1', '35', '6.26', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300600', '1', '36', '64.97', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300601', '1', '37', '7.52', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300602', '1', '38', '2.57', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300603', '1', '39', '0.53', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300604', '1', '40', '4.39', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300605', '1', '41', '0.8', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300606', '1', '42', '6.21', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300607', '1', '43', '15.05', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300608', '1', '44', '22.06', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300609', '1', '45', '40.26', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300610', '1', '46', '54.7', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300611', '1', '47', '3.51', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300612', '1', '48', '69.05', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300613', '1', '49', '77.6', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300614', '1', '50', '15.62', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300615', '1', '51', '84.79', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300616', '1', '52', '253.28', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300617', '1', '53', '0.0049', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300618', '1', '54', '1.7', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300619', '1', '55', '488.52', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300620', '1', '56', '60.2', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300621', '1', '57', '3.1093', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300622', '1', '58', '1050.59', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300623', '1', '59', '65.22', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300624', '1', '60', '3.92', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300625', '1', '61', '264.78', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300626', '1', '62', '3748.13', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300627', '1', '63', '60.69', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300628', '1', '64', '4.01', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300629', '1', '65', '17.08', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300630', '1', '66', '13.88', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300631', '1', '67', '24.49', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300632', '1', '68', '25.74', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300633', '1', '69', '8.03', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300634', '1', '70', '4.84', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300635', '1', '71', '232.06', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300636', '1', '72', '1090.88', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300637', '1', '73', '811.92', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300638', '1', '74', '2040.9', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300639', '1', '75', '1705.55', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300640', '1', '76', '508.54', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300641', '1', '77', '314.91', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300642', '1', '78', '154.86', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300643', '1', '79', '62.04', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300644', '1', '80', '20.09', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300645', '1', '81', '4.98', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300646', '1', '82', '49.97', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300647', '1', '83', '3.97', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300648', '1', '84', '3.04', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300649', '1', '85', '182.15', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300650', '1', '86', '2.29', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300651', '1', '87', '113.89', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300652', '1', '88', '37.19', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300653', '1', '89', '2431.51', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300654', '1', '90', '19.66', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300655', '1', '91', '1330.49', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300656', '1', '92', '59.56', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300657', '1', '93', '95.54', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300658', '1', '94', '85.31', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300659', '1', '95', '4.09', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300660', '1', '96', '0.96', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300661', '1', '97', '1145.52', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300662', '1', '98', '2.42', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300663', '1', '99', '95.69', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300664', '1', '100', '5.11', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300665', '1', '101', '210.12', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300666', '1', '102', '9.44', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300667', '1', '103', '0.279', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300668', '1', '104', '329.56', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300669', '1', '105', '45.89', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300670', '1', '106', '66.26', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300671', '1', '107', '323.76', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300672', '1', '108', '3.879', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300673', '1', '109', '68.52', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300674', '1', '110', '0.139', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300675', '1', '111', '0.496', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300676', '1', '112', '0.082', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300677', '1', '113', '52.06', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300678', '1', '114', '157.04', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300679', '1', '115', '153.17', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300680', '1', '116', '7.98', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300681', '1', '117', '0.9', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300682', '1', '118', '63', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300683', '1', '119', '32.8', '1');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300684', '1', '120', '30', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300685', '1', '121', '93', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300686', '1', '122', '321', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300687', '1', '123', '0.89', '0');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300688', '1', '124', '1.14', '2');
INSERT INTO `xkl_amp_report_detail` VALUES ('10300689', '1', '125', '23', '0');

-- ----------------------------
-- Table structure for xkl_amp_report_health_scroe
-- ----------------------------
DROP TABLE IF EXISTS `xkl_amp_report_health_scroe`;
CREATE TABLE `xkl_amp_report_health_scroe` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增长id',
  `report_id` int(11) NOT NULL COMMENT '报告id',
  `type` int(11) NOT NULL COMMENT '体检项目大类',
  `type_health_score` float NOT NULL COMMENT '体检项目大类健康评分',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24007 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of xkl_amp_report_health_scroe
-- ----------------------------

-- ----------------------------
-- Table structure for xkl_amp_report_meta_items
-- ----------------------------
DROP TABLE IF EXISTS `xkl_amp_report_meta_items`;
CREATE TABLE `xkl_amp_report_meta_items` (
  `id` int(11) NOT NULL COMMENT '数据标识符',
  `item_id` int(11) NOT NULL,
  `type` int(11) NOT NULL COMMENT '类型',
  `title` varchar(45) NOT NULL COMMENT '标题',
  `standard_low_male` float NOT NULL COMMENT '男性最低标准',
  `standard_high_male` float NOT NULL COMMENT '男性最高标准',
  `standard_low_female` float NOT NULL COMMENT '女性最低标准',
  `standard_high_female` float NOT NULL COMMENT '女性最高标准',
  `explain_low` text NOT NULL COMMENT '低于标准说明',
  `explain_high` text NOT NULL COMMENT '高于标准说明',
  `explain_normal` text NOT NULL COMMENT '标准说明',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='体检项';

-- ----------------------------
-- Records of xkl_amp_report_meta_items
-- ----------------------------
INSERT INTO `xkl_amp_report_meta_items` VALUES ('1', '1', '1', '血红蛋白 HGB g/l', '120', '160', '110', '150', '<p>   <span style=\"font-size:16px;\"><strong><b style=\"line-height:20px;text-indent:-29.266666412353516px;white-space:normal;background-color:#FFFFFF;\"><b><span style=\"font-size:18px;font-family:宋体;\">血红蛋白:</span></b></b><span style=\"line-height:20px;text-indent:-29.266666412353516px;white-space:normal;background-color:#FFFFFF;font-size:18px;font-family:宋体;\"></span></strong><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"line-height:20px;text-indent:-29.266666412353516px;white-space:normal;background-color:#FFFFFF;font-size:18px;font-family:宋体;\"></span><span style=\"line-height:20px;text-indent:-29.266666412353516px;white-space:normal;background-color:#FFFFFF;font-size:18px;font-family:宋体;color:#000000;\">是一种含铁的蛋白质,其功能是运输氧和二氧化碳,维持血液酸碱平衡。</span></span>   </p>  <p>   <span style=\"font-size:16px;\"></span><span style=\"font-size:16px;\"></span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">成年男性:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">120g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">160 g/L</span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">成年女性:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">110g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">150 g/L</span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">儿 &nbsp; &nbsp;童:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">110g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">160 g/L</span><span style=\"font-size:18px;\">&nbsp; &nbsp;&nbsp;</span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">新 生 儿:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">170g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">200 g/L</span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <span style=\"font-size:18px;color:#E53333;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong><br />  </strong></span></span>  </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <span style=\"font-size:18px;color:#E53333;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong>升高:缺氧、吸烟、剧烈运动后,慢性肺源性心脏病或先天性心脏病及高原病。</strong></span></span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <span style=\"font-size:18px;\"><span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <span style=\"font-size:18px;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:戒烟,到负氧离子浓度高的环境中调养,如公园、森林等。</strong></span><span style=\"color:#009900;\"><strong></strong></span><br />  </span>   </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\"> </span></strong></span>   </p>  <p style=\"text-indent:18.05pt;\">   <strong><b><span style=\"font-size:16px;font-family:宋体;color:red;\"><br />  </span></b> </strong>   </p>  <p style=\"text-indent:18.05pt;\">   <strong><br />  </strong>   </p>  <span style=\"font-size:16px;\"><strong></strong></span>   <p>   <br />  </p>  <p>   &nbsp;  </p>', '<span style=\"font-family:;white-space:normal;line-height:20px;background-color:#ffffff;\">   <p style=\"text-indent:-0.15pt;\">   <b><span style=\"font-size:16px;font-family:;\"></span></b>   </p>  <p style=\"margin-left:21.95pt;text-indent:-21.95pt;\">   <b><b><span style=\"font-size:18px;font-family:宋体;\">血红蛋白:</span></b></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;font-family:宋体;\">是一种含铁的蛋白质,其功能是运输氧和二氧化碳,维持血液酸碱平衡。</span>   </p>  <p style=\"margin-left:21.95pt;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">成年男性:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">120g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">160 g/L</span>   </p>  <p style=\"margin-left:21.95pt;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">成年女性:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">110g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">150 g/L</span>   </p>  <p style=\"margin-left:21.95pt;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">儿 &nbsp; &nbsp;童:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">110g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">160 g/L</span><span style=\"font-size:18px;\">&nbsp;</span><b style=\"text-indent:45pt;\"><span style=\"font-size:18px;\"> &nbsp;&nbsp;</span></b>   </p>  <p style=\"margin-left:21.95pt;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">新 生 儿:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">170g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">200 g/L</span>   </p>  </span>   <p>   <br />  </p>  <p style=\"text-indent:-0.15pt;\">   <span style=\"font-family:;\"><span style=\"font-size:16px;font-family:;\"></span></span><span style=\"font-family:;\"><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span><span style=\"font-size:16px;font-family:;\"></span></span>   </p>', '<p>   <strong><span style=\"font-size:18px;\">血红蛋白:</span></strong><span style=\"font-size:18px;\">是一种含铁的蛋白质,其功能是运输氧和二氧化碳,维持血液酸碱平衡。</span>   </p>  <p>   <span style=\"line-height:1.5;\"><strong><span style=\"font-size:18px;\">成年男性:</span></strong><span style=\"font-size:18px;\">120g~160 g/L</span></span>   </p>  <p>   <strong><span style=\"font-size:18px;\">成年女性:</span></strong><span style=\"font-size:18px;\">110g~150 g/L</span>   </p>  <p>   <strong><span style=\"font-size:18px;\">儿 &nbsp; &nbsp;</span><span style=\"font-size:18px;\">&nbsp; &nbsp;童:</span></strong><span style=\"font-size:18px;\">110g~160 g/L&nbsp; &nbsp;&nbsp;</span>   </p>  <p>   <strong><span style=\"font-size:18px;\">新 &nbsp;生 儿:</span></strong><span style=\"font-size:18px;\">170g~200 g/L</span>   </p>  <p>   <strong><span style=\"color:#003399;font-size:18px;\"><br />  </span></strong>  </p>  <p>   <strong><span style=\"color:#003399;font-size:18px;\">减低:各类型贫血、慢性出血、失血、营养不良、营养不均、药物等因素都可致</span></strong>   </p>  <p>   <strong><span style=\"color:#003399;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;其减低。此外,老年人由于骨髓造血功能下降减低。</span></strong>   </p>  <p>   <span style=\"color:#009900;font-size:18px;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"color:#009900;font-size:18px;\"><strong>建议:补充蛋白质、多种营养素、动物肝脏、黑木耳、枸杞、大枣等。</strong></span>   </p>  <p>   <br />  </p>  <p>   <br />  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('2', '2', '1', '红细胞 RBC x10¹²/l', '4', '5.5', '3.5', '5', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">红细胞:</span></strong><span style=\"white-space:nowrap;\">也称红血球,90%由血红蛋白组成,使血液呈红色。主要功能是运输和交换氧和二氧化碳</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;,同时还具有免疫功能。人体每天约有1/120红细胞衰亡,同时又有1/120的红细胞产生,</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;多种原因可使这种动态平衡遭到破坏。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong>男 &nbsp;&nbsp;性:</strong>4.0~5.5×1012/L</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>女 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>性:</strong>3.5~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>儿 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>童:</strong>4.0~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>新生儿:</strong>6.0~7.0×1012/L</span>   </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;color:#E53333;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;color:#E53333;\"><strong>升高:常与缺氧有关,身体大量失水致血液浓缩,血中各种有形成分包括红细胞</strong></span>   </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">相对</span></strong></span><strong style=\"font-size:18px;white-space:nowrap;line-height:1.5;\"><span style=\"color:#E53333;\">增多,肺气肿等。</span></strong>   </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;\"><strong><span style=\"color:#009900;\"><br />  </span></strong></span>  </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;\"><strong><span style=\"color:#009900;\">建议:如果排除了严重疾患,建议多做有氧运动,注意补充水分</span>。</strong></span>  </p>  <br />', '<p>   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">红细胞:</span></strong><span style=\"white-space:nowrap;\">也称红血球,90%由血红蛋白组成,使血液呈红色。主要功能是运输和交换氧和二氧化碳</span></span>   </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;,同时还具有免疫功能。人体每天约有1/120红细胞衰亡,同时又有1/120的红细胞产生,</span></span>   </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;多种原因可使这种动态平衡遭到破坏。</span></span>   </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"white-space:nowrap;\"><strong>男 &nbsp;&nbsp;性:</strong>4.0~5.5×1012/L</span></span></span>   </p>  <p>   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>女 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>性:</strong>3.5~5.0×1012/L</span>   </p>  <p>   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>儿 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>童:</strong>4.0~5.0×1012/L</span>   </p>  <p>   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>新生儿:</strong>6.0~7.0×1012/L</span>   </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><br />  </span></span>   </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">红细胞:</span></strong><span style=\"white-space:nowrap;\">也称红血球,90%由血红蛋白组成,使血液呈红色。主要功能是运输和交换氧和二氧化碳</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;,同时还具有免疫功能。人体每天约有1/120红细胞衰亡,同时又有1/120的红细胞产生,</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;多种原因可使这种动态平衡遭到破坏。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong>男 &nbsp;&nbsp;性:</strong>4.0~5.5×1012/L</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>女 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>性:</strong>3.5~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>儿 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>童:</strong>4.0~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>新生儿:</strong>6.0~7.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong>减低:见于各类型贫血、营养不良、营养不均、出血、月经期、痔疮、胃溃疡、缺铁、</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">生素B12的缺乏等,严重减低可见于白血病、放化疗后等。</span></strong></span><br />  <span style=\"white-space:nowrap;font-size:18px;color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"white-space:nowrap;font-size:18px;color:#009900;\"><strong>建议: 积极进行补铁和增加血红素的治疗,多吃含铁高的食物,例如:红枣、动物肝脏、</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"white-space:nowrap;\"><strong><span style=\"font-size:18px;color:#009900;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"font-size:18px;color:#009900;\">&nbsp; &nbsp; &nbsp;</span><span style=\"font-size:18px;color:#009900;\">红皮花生、阿胶等。</span></strong></span><br />  <br />  </span>   </p>  <br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('3', '3', '1', '淋巴细胞 %', '17', '40', '17', '40', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">淋巴细胞%:</span></strong><span style=\"white-space:nowrap;\">是白细胞的一种。由胸腺、脾、淋巴结等产生,运输营养物质、调节血浆、清除侵入</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;机体的病毒,在身体机能中起防御作用。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#E53333;\"><span style=\"white-space:nowrap;color:#E53333;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong><br />  </strong></span></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#E53333;\"><span style=\"white-space:nowrap;color:#E53333;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong>升高:月经期、服用药物、吸烟、感染性疾病如麻疹、风疹、水痘、流行性腮腺炎等及急性传染病</strong></span></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></strong><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></strong><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;</span></strong><strong><span style=\"color:#E53333;\">恢</span></strong></span><span style=\"white-space:nowrap;color:#E53333;\"><strong>复期均可导致。</strong></span><br />  <span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:尽量戒烟、避免病毒性感染。</strong></span><br />  </span></span>   </p>', '<p>   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">淋巴细胞%:</span></strong><span style=\"white-space:nowrap;\">是白细胞的一种。由胸腺、脾、淋巴结等产生,运输营养物质、调节血浆、清除侵入</span></span>   </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;机体的病毒,在身体机能中起防御作用。</span></span>   </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">淋巴细胞%:</span></strong><span style=\"white-space:nowrap;\">是白细胞的一种。由胸腺、脾、淋巴结等产生,运输营养物质、调节血浆、清除侵入</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;机体的病毒,在身体机能中起防御作用。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong><br />  </strong></span></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong>减低:相较正常状态,这一指标在妊娠期会降低15%,剧烈运动后会降低30%,肺炎、胃肠</strong></span></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">炎症、肾上腺机能亢进、恶性肿瘤均可导致这一指标大幅减低。</span></strong></span><br />  <span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:积极治疗原发病,妊娠期注意预防感冒。</strong></span><br />  </span></span>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('4', '4', '1', '白细胞 WBC x10⁹/l', '4', '10', '4', '10', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">白细胞:</span></strong><span style=\"white-space:nowrap;\">是指血液中除红细胞和血小板外的各种血细胞。活动和餐后会相应增高,在安静和放松状态</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下较低,一天之内的变化甚至可相差一倍。白细胞及分类低注意免疫功能是否降低。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#E53333;\"><br />  </span></strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"white-space:normal;\"></span><strong><span style=\"color:#E53333;\">升高:下午较上午偏高,吸烟者、剧烈运动、酷热和严寒、月经期、排卵期、妊娠期、产后、</span></strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;情绪</span></strong></span></span><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">激动、刺激等因素都可导致白细胞数量增高。细菌性感染、疼痛、外伤、手术后</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp; 都会增高。</span></strong><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">白细胞升高最严重的可能是造血系统的恶性肿瘤,也就是白血病,其患者</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;白细胞常会明显</span></strong><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">升高,升高幅度可以是正常人的数倍或数十倍以上。</span></strong>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#009900;\"><br />  </span></strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#009900;\">建议:排除恶性肿瘤可能之余,积极治疗炎症。</span></strong><br />  </span></span>   </p>', '<p>   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">白细胞:</span></strong><span style=\"white-space:nowrap;\">是指血液中除红细胞和血小板外的各种血细胞。活动和餐后会相应增高,在安静和放松状态</span></span>   </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下较低,一天之内的变化甚至可相差一倍。白细胞及分类低注意免疫功能是否降低。</span></span>   </p>  <span style=\"font-size:16px;\">   <div style=\"white-space:nowrap;\">   <br />  </div>  </span>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">白细胞:</span></strong><span style=\"white-space:nowrap;\">是指血液中除红细胞和血小板外的各种血细胞。活动和餐后会相应增高,在安静和放松状态</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下较低,一天之内的变化甚至可相差一倍。白细胞及分类低注意免疫功能是否降低。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong><br />  </strong></span></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong>减低:当白细胞数量低于4×10^9/L时被称为白细胞减少,但其临界值往往设定为</strong></span></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">(2.5~4)</span></strong></span></span></span><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#337FE5;\">×10^9/L,低于2.5时为异常情况。遗传因素、药物、放射线、病毒感染、</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">毒素等均可使白细胞减少,因服用药物引起最为常见。白细胞减少的典型表现为头晕、</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">乏力、肢体酸软、食欲减退、精神萎靡、低热。</span></strong>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#009900;\"><span style=\"white-space:nowrap;color:#009900;\"><span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#009900;\"><span style=\"white-space:nowrap;color:#009900;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:详细检查,找出病因,对症治疗, 白细胞减少症患者忌生冷寒性的食物,可多吃菌类食品</strong></span></span></span><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#009900;\">。</span></strong>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('5', '13', '1', '血清钙浓度 mmol/l', '2.13', '2.7', '2.13', '2.7', '<span style=\"font-size:16px;\"><strong>血清钙浓度mmol/l:</strong>人体99%以上的钙存在于骨骼及牙齿,细胞外液含钙只有27mmol左右,含量虽少但在维持正常的神经、肌肉应激性,腺体分泌,一些酶系统的活性,特别是在血凝过程中起着重要作用,钙高与血压高及降压药有关。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>高血压、佝偻病、软骨病和慢性肾功能衰竭、服用维生素D与钙过量等,当高钙血症的原因难于确定时,必须考虑到恶性肿瘤的存在。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极查找原发病,服用维生素D与钙不可过量。</span><br />', '<span style=\"font-size:16px;\"><strong>血清钙浓度mmol/l:</strong>人体99%以上的钙存在于骨骼及牙齿,细胞外液含钙只有27mmol左右,含量虽少但在维持正常的神经、肌肉应激性,腺体分泌,一些酶系统的活性,特别是在血凝过程中起着重要作用,钙高与血压高及降压药有关。</span><br />', '<span style=\"font-size:16px;\"><strong>血清钙浓度mmol/l:</strong>人体99%以上的钙存在于骨骼及牙齿,细胞外液含钙只有27mmol左右,含量虽少但在维持正常的神经、肌肉应激性,腺体分泌,一些酶系统的活性,特别是在血凝过程中起着重要作用,钙高与血压高及降压药有关。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>怀孕、营养不良、吸收不良、手足搐搦、严重腹泻、肾功能不全、大量抗凝血剂的应用。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>补钙要均衡,多赛太阳,多做运动。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('6', '15', '1', '血清钾浓度 mmol/l', '3.5', '5.5', '3.5', '5.5', '<span style=\"font-size:16px;\"><strong>血清钾浓度mmol/l:</strong>保持酸碱平衡,参与糖及蛋白质代谢,保证神经肌肉的正常功能。人体内的钾主要来源于食物,香菇含钾量最高,钾异常与血压、血糖、肾功能异常有关。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>补钾过多、尿少、肾功能不全症、肾衰、药物影响。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>避免服用有损肾脏的药物,严格控制钾的补充速度和剂量。</span><br />', '<span style=\"font-size:16px;\"><strong>血清钾浓度mmol/l:</strong>保持酸碱平衡,参与糖及蛋白质代谢,保证神经肌肉的正常功能。人体内的钾主要来源于食物,香菇含钾量最高,钾异常与血压、血糖、肾功能异常有关。</span><br />', '<span style=\"font-size:16px;\"><strong>血清钾浓度mmol/l:</strong>保持酸碱平衡,参与糖及蛋白质代谢,保证神经肌肉的正常功能。人体内的钾主要来源于食物,香菇含钾量最高,钾异常与血压、血糖、肾功能异常有关。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>少食吸收差、大量出汗、呕吐、腹泻、排尿量增加(糖尿病患者、高血压服用利尿剂患者)、 应用排钾利尿剂、抗肿瘤能力低。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>及时补充水分和钾,服用排钾利尿剂时要控制剂量。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('7', '16', '1', '血清钠浓度 mmol/l', '135', '145', '135', '145', '<span style=\"font-size:16px;\"><strong>血清钠浓度mmol/l:</strong>保持细胞外液容量、调节酸碱平衡、维持正常渗透压和细胞生理功能并参与维持神经-肌肉的正常应激性,机体内钠的平衡主要靠肾脏的调节,也是通过各种激素来实现的,血清钠低于(135)mmol/L时为低血钠症。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>饭后、高热、肾上腺皮质功能亢进、尿过少、补盐过度、肾病综合征、心源性水肿、血压升高。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>限盐饮食,及时补充水分。</span><br />', '<span style=\"font-size:16px;\"><strong>血清钠浓度mmol/l:</strong>保持细胞外液容量、调节酸碱平衡、维持正常渗透压和细胞生理功能并参与维持神经-肌肉的正常应激性,机体内钠的平衡主要靠肾脏的调节,也是通过各种激素来实现的,血清钠低于(135)mmol/L时为低血钠症。</span><br />', '<span style=\"font-size:16px;\"><strong>血清钠浓度mmol/l:</strong>保持细胞外液容量、调节酸碱平衡、维持正常渗透压和细胞生理功能并参与维持神经-肌肉的正常应激性,机体内钠的平衡主要靠肾脏的调节,也是通过各种激素来实现的,血清钠低于(135)mmol/L时为低血钠症。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>营养不良、食入少、呕吐及腹泻引起的钠流失、因天热出汗及体力劳动而引起钠流失过多,应用大剂量利尿剂可导致钠丢失,的血脂高会引起钠浓度下降。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>不可滥用利尿剂。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('8', '12', '1', '血小板计数 x10⁹/l', '100', '300', '100', '300', '<span style=\"font-size:16px;\"><strong>血小板计数:</strong>在止血、伤口愈合、血栓形成及器官移植排斥等生理和病理过程中有重要作用。处于动态平衡、饭后运动后较高,春天较低冬天较高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>疲劳、感染、贫血、术后、月经期前后等,有血栓形成,超过600万考虑骨髓增生性疾病,慢性白血病早期。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>注意增强体质,维持适度的血液粘稠度。</span><br />', '<span style=\"font-size:16px;\"><strong>血小板计数:</strong>在止血、伤口愈合、血栓形成及器官移植排斥等生理和病理过程中有重要作用。处于动态平衡、饭后运动后较高,春天较低冬天较高。</span><br />', '<span style=\"font-size:16px;\"><strong>血小板计数:</strong>在止血、伤口愈合、血栓形成及器官移植排斥等生理和病理过程中有重要作用。处于动态平衡、饭后运动后较高,春天较低冬天较高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>易出血、易形成瘀斑、脾功能亢进、化疗放疗后、血小板减少性紫癜。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>宜多食富含优质蛋白质、多种维生素和含微量元素铁较多的蛋类、牛奶、豆类、新鲜蔬菜和水果、海产品等。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('9', '88', '1', '血细胞比容 %', '40', '50', '40', '50', '<span style=\"font-size:16px;\"><strong>血细胞比容%:</strong>血细胞在全血中所占的容积百分比。由于白细胞和血小板仅占血液总容积的0.15%~1%,故血细胞比容很接近血液中的红细胞比容。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>见于剧烈运动或情绪激动的正常人及缺水、呕吐、腹泻等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>及时补充水分及电解质。</span><br />', '<span style=\"font-size:16px;\"><strong>血细胞比容%:</strong>血细胞在全血中所占的容积百分比。由于白细胞和血小板仅占血液总容积的0.15%~1%,故血细胞比容很接近血液中的红细胞比容。</span><br />', '<span style=\"font-size:16px;\"><strong>血细胞比容%:</strong>血细胞在全血中所占的容积百分比。由于白细胞和血小板仅占血液总容积的0.15%~1%,故血细胞比容很接近血液中的红细胞比容。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>各种贫血病人、气血不足、水肿、机体疲劳。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>补气养血,加强营养、注意休息。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('10', '30', '1', '总蛋白 g/l', '60', '80', '60', '80', '<span style=\"font-size:16px;\"><strong>总蛋白:</strong>由白蛋白和球蛋白组成,是血清固体中含量最多的一种物质。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>主要是血清中水分减少,使总蛋白浓度相对增高,如近期剧烈运动、大量饮酒或没有休息好都有可能会引起白蛋白暂时性升高,调养一段时间后再去检查,就会恢复正常值。</span><br />  <span style=\"font-size:16px;\">夏季较冬季高约8%,捆缚升高约5%,适度用力升高约3%。或大量脱水如:出汗、呕吐、腹泻、创伤、烧伤、霍乱及多发性骨髓瘤。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>注意休息和戒酒。</span><br />', '<span style=\"font-size:16px;\"><strong>总蛋白:</strong>由白蛋白和球蛋白组成,是血清固体中含量最多的一种物质。</span><br />', '<span style=\"font-size:16px;\"><strong>总蛋白:</strong>由白蛋白和球蛋白组成,是血清固体中含量最多的一种物质。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>口服避孕药的女性约降低2%,60~80岁的老年人约降低3%,6~7岁的儿童约降低5%,4~150天的婴儿约降低10%,妊娠妇女约降低10%。肝功能障碍,则肝脏合成蛋白质下降,主要是白蛋白下降明显,重症结核、恶性肿瘤、肾病综合征、肝硬化、营养不良、肠道疾病等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('11', '35', '1', '总胆固醇 mmol/l', '2.8', '5.17', '2.8', '5.17', '<span style=\"font-size:16px;\"><strong>总胆固醇:</strong>指血液中所有脂蛋白所含胆固醇之总和,人群总胆固醇水平主要取决于遗传因素和生活方式。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>高脂血症、动脉粥样硬化、糖尿病、肾病综合征。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>每天胆固醇的摄入量应低于300毫克,注意少食或不食动物内脏,多食蔬菜水果,多吃鱼及富含纤维的食物(如芹菜、玉米、燕麦等),食植物油不食动物油,另外茶叶中的茶色素可降低胆固醇,防止动脉粥样硬化和血栓形成,食植物油不食动物油。</span><br />', '<span style=\"font-size:16px;\"><strong>总胆固醇:</strong>指血液中所有脂蛋白所含胆固醇之总和,人群总胆固醇水平主要取决于遗传因素和生活方式。</span><br />', '<span style=\"font-size:16px;\"><strong>总胆固醇:</strong>指血液中所有脂蛋白所含胆固醇之总和,人群总胆固醇水平主要取决于遗传因素和生活方式。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>饮食过于清淡、肠道吸收不良、贫血、甲亢、胰腺炎、恶病质。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>在积极治疗原发病的基础上,补充营养。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('12', '1', '2', '血红蛋白 HGB g/l', '120', '160', '110', '150', '<p>   <br />  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><b style=\"line-height:20px;text-indent:-29.266666412353516px;background-color:#FFFFFF;\"><b><span style=\"font-size:18px;font-family:宋体;\">血红蛋白:</span></b></b><span style=\"line-height:20px;text-indent:-29.266666412353516px;background-color:#FFFFFF;font-size:18px;font-family:宋体;\"></span></strong><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"line-height:20px;text-indent:-29.266666412353516px;background-color:#FFFFFF;font-size:18px;font-family:宋体;\"></span><span style=\"line-height:20px;text-indent:-29.266666412353516px;background-color:#FFFFFF;font-size:18px;font-family:宋体;\">是一种含铁的蛋白质,其功能是运输氧和二氧化碳,维持血液酸碱平衡。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"></span><span style=\"font-size:16px;\"></span>   </p>  <p style=\"margin-left:21.95pt;white-space:normal;line-height:20px;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">成年男性:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">120g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">160 g/L</span>   </p>  <p style=\"margin-left:21.95pt;white-space:normal;line-height:20px;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">成年女性:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">110g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">150 g/L</span>   </p>  <p style=\"margin-left:21.95pt;white-space:normal;line-height:20px;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">儿 &nbsp; &nbsp;童:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">110g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">160 g/L</span><span style=\"font-size:18px;\">&nbsp; &nbsp;&nbsp;</span>   </p>  <p style=\"margin-left:21.95pt;white-space:normal;line-height:20px;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">新 生 儿:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">170g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">200 g/L</span>   </p>  <p style=\"margin-left:21.95pt;white-space:normal;line-height:20px;text-indent:-21.95pt;\">   <span style=\"font-size:18px;color:#E53333;\"><span style=\"white-space:nowrap;\"><strong><br />  </strong></span></span>  </p>  <p style=\"margin-left:21.95pt;white-space:normal;line-height:20px;text-indent:-21.95pt;\">   <span style=\"font-size:18px;color:#E53333;\"><span style=\"white-space:nowrap;\"><strong>升高:缺氧、吸烟、剧烈运动后,慢性肺源性心脏病或先天性心脏病及高原病。</strong></span></span>   </p>  <p style=\"margin-left:21.95pt;white-space:normal;line-height:20px;text-indent:-21.95pt;\">   <span style=\"font-size:18px;\"><span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p style=\"margin-left:21.95pt;white-space:normal;line-height:20px;text-indent:-21.95pt;\">   <span style=\"font-size:18px;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:戒烟,到负氧离子浓度高的环境中调养,如公园、森林等。</strong></span></span><span style=\"line-height:1.5;\"></span>   </p>  <p>   <br />  </p>', '<p>   <br />  </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b><b><span style=\"font-size:18px;font-family:宋体;\">血红蛋白:</span></b></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;font-family:宋体;\">是一种含铁的蛋白质,其功能是运输氧和二氧化碳,维持血液酸碱平衡。</span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">成年男性:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">120g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">160 g/L</span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">成年女性:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">110g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">150 g/L</span>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">儿 &nbsp; &nbsp;童:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">110g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">160 g/L</span><span style=\"font-size:18px;\">&nbsp;</span><b style=\"text-indent:45pt;\"><span style=\"font-size:18px;\">&nbsp;&nbsp;&nbsp;</span></b>   </p>  <p style=\"margin-left:21.95pt;line-height:20px;white-space:normal;text-indent:-21.95pt;\">   <b style=\"text-indent:45pt;\"><span style=\"font-size:18px;font-family:宋体;\">新 生 儿:</span></b><span style=\"font-size:18px;font-family:宋体;\"></span><span style=\"font-size:18px;\">170g</span><span style=\"font-size:18px;font-family:宋体;\">~</span><span style=\"font-size:18px;\">200 g/L</span><span style=\"line-height:1.5;\"></span>   </p>  <p>   <br />  </p>', '<p>   <br />  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血红蛋白:</span></strong><span style=\"font-size:18px;\">是一种含铁的蛋白质,其功能是运输氧和二氧化碳,维持血液酸碱平衡。</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"line-height:1.5;\"><strong><span style=\"font-size:18px;\">成年男性:</span></strong><span style=\"font-size:18px;\">120g~160 g/L</span></span>   </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">成年女性:</span></strong><span style=\"font-size:18px;\">110g~150 g/L</span>   </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">儿 &nbsp; &nbsp;</span><span style=\"font-size:18px;\">&nbsp; &nbsp;童:</span></strong><span style=\"font-size:18px;\">110g~160 g/L&nbsp; &nbsp;&nbsp;</span>   </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">新 &nbsp;生 儿:</span></strong><span style=\"font-size:18px;\">170g~200 g/L</span>   </p>  <p style=\"white-space:normal;\">   <strong><span style=\"color:#003399;font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"color:#003399;font-size:18px;\">减低:各类型贫血、慢性出血、失血、营养不良、营养不均、药物等因素都可致</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong><span style=\"color:#003399;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;其减低。此外,老年人由于骨髓造血功能下降减低。</span></strong>   </p>  <p style=\"white-space:normal;\">   <span style=\"color:#009900;font-size:18px;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"color:#009900;font-size:18px;\"><strong>建议:补充蛋白质、多种营养素、动物肝脏、黑木耳、枸杞、大枣等。</strong></span><span style=\"line-height:1.5;\"></span>   </p>  <p>   <br />  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('13', '2', '2', '红细胞 RBC x10¹²/l', '4', '5.5', '3.5', '5', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">红细胞:</span></strong><span style=\"white-space:nowrap;\">也称红血球,90%由血红蛋白组成,使血液呈红色。主要功能是运输和交换氧和二氧化碳</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;,同时还具有免疫功能。人体每天约有1/120红细胞衰亡,同时又有1/120的红细胞产生,</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;多种原因可使这种动态平衡遭到破坏。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong>男 &nbsp;&nbsp;性:</strong>4.0~5.5×1012/L</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>女 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>性:</strong>3.5~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>儿 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>童:</strong>4.0~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>新生儿:</strong>6.0~7.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;color:#E53333;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;color:#E53333;\"><strong>升高:常与缺氧有关,身体大量失水致血液浓缩,血中各种有形成分包括红细胞</strong></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">相对</span></strong></span><strong style=\"font-size:18px;white-space:nowrap;line-height:1.5;\"><span style=\"color:#E53333;\">增多,肺气肿等。</span></strong>   </p>  <p>   <span style=\"font-size:18px;\"><strong><span style=\"color:#009900;\"><br />  </span></strong></span>  </p>  <p>   <span style=\"font-size:18px;\"><strong><span style=\"color:#009900;\">建议:如果排除了严重疾患,建议多做有氧运动,注意<span style=\"color:#009900;\">补充水分</span></span><span style=\"color:#009900;\">。</span></strong></span>  </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">红细胞:</span></strong><span style=\"white-space:nowrap;\">也称红血球,90%由血红蛋白组成,使血液呈红色。主要功能是运输和交换氧和二氧化碳</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;,同时还具有免疫功能。人体每天约有1/120红细胞衰亡,同时又有1/120的红细胞产生,</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;多种原因可使这种动态平衡遭到破坏。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong>男 &nbsp;&nbsp;性:</strong>4.0~5.5×1012/L</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>女 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>性:</strong>3.5~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>儿 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>童:</strong>4.0~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>新生儿:</strong>6.0~7.0×1012/L</span><span style=\"line-height:1.5;\"></span>   </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">红细胞:</span></strong><span style=\"white-space:nowrap;\">也称红血球,90%由血红蛋白组成,使血液呈红色。主要功能是运输和交换氧和二氧化碳</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;,同时还具有免疫功能。人体每天约有1/120红细胞衰亡,同时又有1/120的红细胞产生,</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;多种原因可使这种动态平衡遭到破坏。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong>男 &nbsp;&nbsp;性:</strong>4.0~5.5×1012/L</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>女 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>性:</strong>3.5~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>儿 &nbsp;&nbsp;</strong></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>童:</strong>4.0~5.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong>新生儿:</strong>6.0~7.0×1012/L</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;color:#337FE5;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;color:#337FE5;\"><strong>减低:见于各类型贫血、营养不良、营养不均、出血、月经期、痔疮、胃溃疡、缺铁、</strong></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">生素B12的缺乏等,严重减低可见于白血病、放化疗后等。</span></strong><br />  <span style=\"font-size:18px;color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"font-size:18px;color:#009900;\"><strong>建议: 积极进行补铁和增加血红素的治疗,多吃含铁高的食物,例如:红枣、动物肝脏、</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong><span style=\"font-size:18px;color:#009900;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"font-size:18px;color:#009900;\">&nbsp; &nbsp; &nbsp;</span><span style=\"font-size:18px;color:#009900;\">红皮花生、阿胶等。</span></strong></span><span style=\"line-height:1.5;\"></span>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('14', '3', '2', '淋巴细胞 %', '17', '40', '17', '40', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">淋巴细胞%:</span></strong><span style=\"white-space:nowrap;\">是白细胞的一种。由胸腺、脾、淋巴结等产生,运输营养物质、调节血浆、清除侵入</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;机体的病毒,在身体机能中起防御作用。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#E53333;\"><span style=\"white-space:nowrap;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#E53333;\"><span style=\"white-space:nowrap;\"><strong>升高:月经期、服用药物、吸烟、感染性疾病如麻疹、风疹、水痘、流行性腮腺炎等及急性传染病</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></strong><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></strong><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;</span></strong><strong><span style=\"color:#E53333;\">恢</span></strong><span style=\"color:#E53333;\"><strong>复期均可导致。</strong></span><br />  <span style=\"color:#009900;\"><strong><br />  </strong></span></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"color:#009900;\"><strong>建议:尽量戒烟、避免病毒性感染。</strong></span></span></span><span style=\"line-height:1.5;\"></span>   </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">淋巴细胞%:</span></strong><span style=\"white-space:nowrap;\">是白细胞的一种。由胸腺、脾、淋巴结等产生,运输营养物质、调节血浆、清除侵入</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;机体的病毒,在身体机能中起防御作用。</span></span><span style=\"line-height:1.5;\"></span>   </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">淋巴细胞%:</span></strong><span style=\"white-space:nowrap;\">是白细胞的一种。由胸腺、脾、淋巴结等产生,运输营养物质、调节血浆、清除侵入</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;机体的病毒,在身体机能中起防御作用。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#337FE5;\"><span style=\"white-space:nowrap;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#337FE5;\"><span style=\"white-space:nowrap;\"><strong>减低:相较正常状态,这一指标在妊娠期会降低15%,剧烈运动后会降低30%,肺炎、胃肠</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">炎症、肾上腺机能亢进、恶性肿瘤均可导致这一指标大幅减低。</span></strong><br />  <span style=\"color:#009900;\"><strong><br />  </strong></span></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"color:#009900;\"><strong>建议:积极治疗原发病,妊娠期注意预防感冒。</strong></span></span></span><b style=\"line-height:1.5;\"><span style=\"font-size:12pt;font-family:宋体;\"></span></b>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('15', '4', '2', '白细胞 WBC x10⁹/l', '4', '10', '4', '10', '<p>   <br />  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">白细胞:</span></strong><span style=\"white-space:nowrap;\">是指血液中除红细胞和血小板外的各种血细胞。活动和餐后会相应增高,在安静和放松状态</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下较低,一天之内的变化甚至可相差一倍。白细胞及分类低注意免疫功能是否降低。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#E53333;\"><br />  </span></strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><span style=\"white-space:normal;\"></span><strong><span style=\"color:#E53333;\">升高:下午较上午偏高,吸烟者、剧烈运动、酷热和严寒、月经期、排卵期、妊娠期、产后、</span></strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;情绪</span></strong></span></span><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">激动、刺激等因素都可导致白细胞数量增高。细菌性感染、疼痛、外伤、手术后</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp; 都会增高。</span></strong><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">白细胞升高最严重的可能是造血系统的恶性肿瘤,也就是白血病,其患者</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;白细胞常会明显</span></strong><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#E53333;\">升高,升高幅度可以是正常人的数倍或数十倍以上。</span></strong>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#009900;\"><br />  </span></strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#009900;\">建议:排除恶性肿瘤可能之余,积极治疗炎症。</span></strong></span></span><span style=\"line-height:1.5;\"></span>   </p>  <p>   <br />  </p>', '<p>   <br />  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">白细胞:</span></strong><span style=\"white-space:nowrap;\">是指血液中除红细胞和血小板外的各种血细胞。活动和餐后会相应增高,在安静和放松状态</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下较低,一天之内的变化甚至可相差一倍。白细胞及分类低注意免疫功能是否降低。</span></span><span style=\"line-height:1.5;\"></span>   </p>  <p>   <br />  </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">白细胞:</span></strong><span style=\"white-space:nowrap;\">是指血液中除红细胞和血小板外的各种血细胞。活动和餐后会相应增高,在安静和放松状态</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下较低,一天之内的变化甚至可相差一倍。白细胞及分类低注意免疫功能是否降低。</span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#337FE5;\"><span style=\"white-space:nowrap;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#337FE5;\"><span style=\"white-space:nowrap;\"><strong>减低:当白细胞数量低于4×10^9/L时被称为白细胞减少,但其临界值往往设定为</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">(2.5~4)</span></strong></span></span><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#337FE5;\">×10^9/L,低于2.5时为异常情况。遗传因素、药物、放射线、病毒感染、</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">毒素等均可使白细胞减少,因服用药物引起最为常见。白细胞减少的典型表现为头晕、</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">乏力、肢体酸软、食欲减退、精神萎靡、低热。</span></strong>   </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#009900;\"><span style=\"white-space:nowrap;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:16px;color:#009900;\"><span style=\"white-space:nowrap;\"><strong>建议:详细检查,找出病因,对症治疗, 白细胞减少症患者忌生冷寒性的食物,可多吃菌类食品</strong></span></span><strong style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#009900;\">。</span></strong>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('16', '5', '2', '中性分叶粒细胞 %', '50', '70', '50', '70', '<p>   <b><span style=\"font-size:12pt;font-family:宋体;\"><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">中性分叶粒细胞</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px \'Times New Roman\';orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">%</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">:</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">增多和减少的临床意义与白细胞计数相同。</span></span></b>   </p>', '<p>   <b><span style=\"font-size:12pt;font-family:宋体;\"><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">中性分叶粒细胞</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px \'Times New Roman\';orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">%</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">:</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">增多和减少的临床意义与白细胞计数相同。</span></span></b>   </p>', '<p>   <b><span style=\"font-size:12pt;font-family:宋体;\"><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">中性分叶粒细胞</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px \'Times New Roman\';orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">%</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:bold 16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">:</span><span style=\"white-space:normal;text-transform:none;word-spacing:0px;color:#000000;text-align:justify;font:16px 宋体;orphans:2;widows:2;letter-spacing:normal;background-color:#ffffff;text-indent:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;\">增多和减少的临床意义与白细胞计数相同。</span></span></b>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('17', '6', '2', '血沉 ESR mm/h', '0', '15', '0', '20', '<p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong>血沉:</strong>通常指红细胞在第一小时末下沉的距离,表示红细胞的沉降速度。血沉速度的快慢</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;与血浆粘度及红细胞间的聚集力有关,聚集力大血沉快。</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;color:#E53333;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;color:#E53333;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong>升高:下午比上午快,运动后比运动前快,吸烟、月经期、妊娠期、老年人特别是60岁</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">以上的高龄者,多因纤维蛋白原增高引致血沉增快。各种炎症、活动性结核、</span></strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">风湿活动期、骨关节炎、贫血、肿瘤及高胆固醇血症患者也会出现血沉增快。</span></strong></span><br />  <span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:生理性血沉增快不必处理。病理性原因则要积极治疗原发病。</strong></span><br />  <br />  </span>   </p>', '<p>   <span style=\"white-space:nowrap;font-size:18px;\"><strong>血沉:</strong>通常指红细胞在第一小时末下沉的距离,表示红细胞的沉降速度。血沉速度的快慢</span>   </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;与血浆粘度及红细胞间的聚集力有关,聚集力大血沉快。</span><span style=\"font-size:18px;\"></span>   </p>', '<p>   <br />  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong>血沉:</strong>通常指红细胞在第一小时末下沉的距离,表示红细胞的沉降速度。血沉速度的快慢</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;与血浆粘度及红细胞间的聚集力有关,聚集力大血沉快。</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong>减低:可见于真性红细胞增多症。应排除主动性瘦身、营养不良、减肥的原因。</strong></span><br />  <span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:合理饮食,生活规律化,适当增加体育活动,减少盐分摄入,少喝酒,多做</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#009900;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#009900;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#009900;\">&nbsp;&nbsp;&nbsp;</span><span style=\"color:#009900;\">有氧运动。</span></strong></span><br />  <strong></strong><br />  </span>   </p>  <p>   <br />  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('18', '7', '2', '嗜酸性粒细胞 %', '0.5', '5', '0.5', '5', '<p>   <span style=\"font-size:16px;\"><strong>嗜酸性粒细胞%:</strong>白细胞的一种。</span>   </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong><br />  </strong></span></span>  </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong>升高:见于过敏症、敏感体质、药物过敏、支气管哮喘及寄生虫疾病等。</strong></span><br />  <span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p>   <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:尽量避免接触过敏源。</strong></span><br />  <br />  </span>   </p>', '<span style=\"font-size:16px;\"><strong>嗜酸性粒细胞%:</strong>白细胞的一种。</span>', '<span style=\"font-size:16px;\"><strong>嗜酸性粒细胞%:</strong>白细胞的一种。</span><br />  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337FE5;\"><br />  </span></strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337FE5;\">减<strong>低:</strong></span></strong><span style=\"color:#337FE5;\"><strong>临床意义甚小。</strong></span></span>  </p>  <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('19', '8', '2', '单核细胞 %', '3', '8', '3', '8', '<p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong>单核细胞%:</strong>是体积最大的白细胞,能吞噬清除受损伤细胞、衰老细胞及其碎片,炎症</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;或其他疾病都可引起单核细胞在血液中的百分比发生变化。</span>   </p>  <p>   <span style=\"font-size:18px;color:#E53333;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#E53333;\"><strong>升高:吸烟约高22%,贫血、结核、呼吸系统炎症、病毒感染。</strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong>建议:避免咽喉上火及呼吸道炎症。</strong></span>  </p>', '<p>   <span style=\"white-space:nowrap;font-size:18px;\"><strong>单核细胞%:</strong>是体积最大的白细胞,能吞噬清除受损伤细胞、衰老细胞及其碎片,炎症</span>   </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;或其他疾病都可引起单核细胞在血液中的百分比发生变化。</span>   </p>  <span style=\"font-size:18px;\"><strong></strong></span><br />', '<p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong>单核细胞%:</strong>是体积最大的白细胞,能吞噬清除受损伤细胞、衰老细胞及其碎片,炎症</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;或其他疾病都可引起单核细胞在血液中的百分比发生变化。</span>   </p>  <p>   <span style=\"font-size:18px;color:#337FE5;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#337FE5;\"><strong>减低:妊娠约低4%,高海拔约低27%,减少无意义。</strong></span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('20', '9', '2', '中性杆状核细胞 %', '1', '5', '1', '5', '<span style=\"font-size:16px;\"><strong>中性杆状核粒细胞%:</strong>白细胞的一种。</span><br />  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\"><br />  </span></strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\">升高:<span style=\"white-space:nowrap;\">吸烟、咽炎、急性感染、细菌感染、急性中毒、痛风、手术后等。</span></span></strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\"><span style=\"white-space:nowrap;color:#009900;\"><br />  </span></span></strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\"><span style=\"white-space:nowrap;color:#009900;\">建议:消除、控制炎症。</span></span></strong></span>  </p>  <span style=\"font-size:16px;\"><span style=\"white-space:nowrap;color:#E53333;\"><strong></strong></span></span>', '<span style=\"font-size:16px;\"><strong>中性杆状核粒细胞%:</strong>白细胞的一种。</span>', '<span style=\"font-size:16px;\"><strong>中性杆状核粒细胞%:</strong>白细胞的一种。</span><br />  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\"><span style=\"white-space:nowrap;\"><br />  </span></span></strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\"><span style=\"white-space:nowrap;\">减低:重症感染、特殊感染。</span></span></strong></span>  </p>  <p>   <span style=\"font-size:16px;color:#009900;\"><strong><span style=\"color:#009900;\"><span style=\"white-space:nowrap;color:#009900;\"><br />  </span></span></strong></span>  </p>  <p>   <span style=\"font-size:16px;color:#009900;\"><strong><span style=\"color:#009900;\"><span style=\"white-space:nowrap;color:#009900;\">建议:详细检查,找出病因,对症治疗, 白细胞减少症患者忌生冷寒性的食物,可多吃菌类食品</span></span></strong></span><strong style=\"font-size:16px;line-height:1.5;\"><span style=\"color:#009900;\"><span style=\"white-space:nowrap;color:#009900;\">。</span></span></strong>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('21', '12', '2', '血小板计数 x10⁹/l', '100', '300', '100', '300', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">血小板计数:</span></strong><span style=\"white-space:nowrap;\">在止血、伤口愈合、炎症反应、血栓形成及器官移植排斥等生理和病理过程中有</span></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\">重要</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;作用。饭后、运动后较高,春天较低,冬天较高。</span>   </p>  <p>   <strong style=\"color:#E53333;font-size:16px;line-height:1.5;white-space:nowrap;\"><br />  </strong>  </p>  <p>   <strong style=\"color:#E53333;font-size:16px;line-height:1.5;white-space:nowrap;\">升高:疲劳、感染、贫血、术后、月经期前后、有血栓等时刻会相应升高,不排除家族史,超过</strong>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><strong><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#E53333;\">&nbsp;&nbsp;</span><span style=\"color:#E53333;\">600考虑骨髓增生性疾病可能。</span></strong><br />  <span style=\"color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"color:#009900;\"><strong>建议:注意增强体质,维持合理血液粘稠度,必要时可在临床医生指导下使用抗凝药物。</strong></span></span>   </p>', '<p>   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">血小板计数:</span></strong><span style=\"white-space:nowrap;\">在止血、伤口愈合、炎症反应、血栓形成及器官移植排斥等生理和病理过程中有</span></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\">重要</span>   </p>  <p>   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;作用。饭后、运动后较高,春天较低,冬天较高。</span>   </p>  <p>   <br />  </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:16px;\"><strong><span style=\"white-space:nowrap;\">血小板计数:</span></strong><span style=\"white-space:nowrap;\">在止血、伤口愈合、炎症反应、血栓形成及器官移植排斥等生理和病理过程中有</span></span><span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\">重要</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;作用。饭后、运动后较高,春天较低,冬天较高。</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;color:#337FE5;\"><span style=\"white-space:nowrap;color:#337FE5;\"><strong>减低:粘膜出血,易形成瘀斑,可能由再生障碍性贫血、脾功能亢进、放化疗后、血小板减少</strong></span></span>   </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"white-space:nowrap;\"><strong><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">性紫癜导致,家族遗传也可导致此值减低。</span></strong></span><br />  <span style=\"white-space:nowrap;color:#009900;\"><strong><br />  </strong></span></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:16px;line-height:1.5;\"><span style=\"white-space:nowrap;color:#009900;\"><strong>建议:多食富含优质蛋白质、多种维生素和含微量元素铁较多的食物。</strong></span><br />  </span>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('22', '88', '2', '血细胞比容 %', '40', '50', '40', '50', '<p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong>血细胞比容%:</strong>血细胞在全血中所占的容积百分比。由于白细胞和血小板仅占血液总容积</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;的0.15%~1%,故血细胞比容很接近血液中的红细胞比容。</span>  </p>  <p>   <span style=\"font-size:18px;color:#E53333;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#E53333;\"><strong>升高:见于剧烈运动后或情绪激动时,缺水、呕吐、腹泻等状态下。</strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong>建议:及时补充水分及电解质。</strong></span>  </p>', '<p>   <span style=\"white-space:nowrap;font-size:18px;\"><strong>血细胞比容%:</strong>血细胞在全血中所占的容积百分比。由于白细胞和血小板仅占血液总容积</span>  </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;的0.15%~1%,故血细胞比容很接近血液中的红细胞比容。</span>  </p>', '<p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong>血细胞比容%:</strong>血细胞在全血中所占的容积百分比。由于白细胞和血小板仅占血液总容积</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;的0.15%~1%,故血细胞比容很接近血液中的红细胞比容。</span>  </p>  <br style=\"white-space:normal;\" />  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;color:#337FE5;\"><strong>减低:各种贫血病人、气血不足、水肿,多见于女性;男性多见于手术后、外伤、</strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">牙龈出血、痔疮等情况。</span></strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong>建议:补气养血,加强营养。</strong></span><span style=\"line-height:1.5;font-size:18px;color:#009900;\"><strong></strong></span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('23', '120', '2', '平均红细胞血红蛋白量 pg', '27', '31', '27', '31', '<p>   <span style=\"font-size:18px;\"><strong>平均红细胞血红蛋白量(MCH)pg:</strong></span>  </p>  <p>   <strong style=\"color:#E53333;font-size:18px;line-height:1.5;\"><br />  </strong>  </p>  <p>   <strong style=\"color:#E53333;font-size:18px;line-height:1.5;\">升高:轻微升高有贫血的可能,“隐性贫血”。</strong>  </p>  <p>   <strong style=\"color:#009900;font-size:18px;line-height:1.5;\"><br />  </strong>  </p>  <p>   <strong style=\"color:#009900;font-size:18px;line-height:1.5;\">建议:补气养血,加强营养。</strong>  </p>  <br />', '<span style=\"white-space:nowrap;font-size:18px;\"><strong>平均红细胞血红蛋白量(MCH)pg</strong></span><br />  <br />', '<p>   <span style=\"font-size:18px;\"><strong>平均红细胞血红蛋白量(MCH)pg:</strong></span>  </p>  <p>   <strong style=\"color:#337FE5;font-size:18px;line-height:1.5;\"><br />  </strong>  </p>  <p>   <strong style=\"color:#337FE5;font-size:18px;line-height:1.5;\">减低:用来区别贫血类型。</strong>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong>建议:检查原发病。</strong></span><span style=\"line-height:1.5;\"></span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('24', '121', '2', '平均红细胞容积 fl', '82', '95', '82', '95', '<span style=\"font-size:16px;\"><strong><span style=\"font-size:18px;\"><strong>平均红细胞容积(MCV)fl:</strong></span><br style=\"white-space:normal;\" />  </strong></span>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"font-size:18px;color:#E53333;\"><strong><br />  </strong></span></strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"font-size:18px;color:#E53333;\"><strong>升高:营养不良、吸收不良。</strong></span></strong></span>  </p>', '<span style=\"white-space:nowrap;font-size:18px;\"><strong>平均红细胞容积(MCV)fl</strong></span><br />  <br />', '<p>   <span style=\"font-size:18px;\"><strong>平均红细胞容积(MCV)fl:</strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#337FE5;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#337FE5;\"><strong>减低:红细胞发育不成熟或缺少促进发育成熟的物质。</strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong><br />  </strong></span>  </p>  <p>   <span style=\"font-size:18px;color:#009900;\"><strong>建议:补充铁剂。</strong></span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('25', '122', '2', '平均血红蛋白浓度 g/l', '320', '360', '320', '360', '<p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong>平均血红蛋白浓度(MCHC)g/l:</strong></span><span style=\"white-space:nowrap;font-size:18px;\">用于鉴别贫血类型,如果血红蛋白不低于检测指标</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;正常值,就不用考虑这个参数。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><br />  </span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;color:#E53333;\"><strong>升高:原因是血红蛋白和红细胞及红细胞容积不成比例,此浓度根据前三项换算而来。</strong></span>  </p>', '<p>   <span style=\"white-space:nowrap;font-size:18px;\"><strong>平均血红蛋白浓度(MCHC)g/l:</strong></span><span style=\"white-space:nowrap;font-size:18px;\">用于鉴别贫血类型,如果血红蛋白不低于检测指标</span>  </p>  <p>   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;正常值,就不用考虑这个参数。</span>  </p>  <br />', '<p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><strong>平均血红蛋白浓度(MCHC)g/l:</strong></span><span style=\"white-space:nowrap;font-size:18px;\">用于鉴别贫血类型,如果血红蛋白不低于检测指标</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;正常值,就不用考虑这个参数。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><br />  </span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;color:#337FE5;\"><strong>减低:低一点在其他指标正常的情况下意义不大,属于正常状态。</strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;\"><br />  </span>  </p>  <p style=\"white-space:normal;\">   <span style=\"white-space:nowrap;font-size:18px;color:#009900;\"><strong>建议:补充铁剂。</strong></span>  </p>  <br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('26', '123', '2', '血色素', '0.85', '1.15', '0.85', '1.15', '<strong style=\"white-space:normal;\"><span style=\"font-size:18px;\">血色素CPB(color&nbsp;index&nbsp;of&nbsp;blood):</span></strong><span style=\"white-space:normal;font-size:18px;\">血的颜色索引是组成血红蛋白的成分之一,与上述指标综合分析。</span><br />', '<div>   <strong><span style=\"font-size:18px;\">血色素CPB(color&nbsp;index&nbsp;of&nbsp;blood):</span></strong><span style=\"font-size:18px;\">血的颜色索引是组成血红蛋白的成分之一,与上述指标综合分析。</span><span style=\"line-height:1.5;\"></span>  </div>  <p>   &nbsp;  </p>', '<strong style=\"white-space:normal;\"><span style=\"font-size:18px;\">血色素CPB(color&nbsp;index&nbsp;of&nbsp;blood):</span></strong><span style=\"white-space:normal;font-size:18px;\">血的颜色索引是组成血红蛋白的成分之一,与上述指标综合分析。</span><br style=\"white-space:normal;\" />  <br style=\"white-space:normal;\" />  <strong style=\"white-space:normal;\"><span style=\"font-size:18px;color:#337FE5;\">减低:各种贫血。</span></strong><br style=\"white-space:normal;\" />  <br style=\"white-space:normal;\" />  <strong style=\"white-space:normal;\"><span style=\"font-size:18px;color:#009900;\">建议:补气养血,加强营养。&nbsp;</span></strong><br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('27', '15', '3', '血清钾浓度 mmol/l', '3.5', '5.5', '3.5', '5.5', '<p style=\"white-space:normal;\">   <span style=\"font-size:18px;white-space:nowrap;\"><strong>血清钾浓度mmol/l:</strong>保持酸碱平衡,参与糖及蛋白质代谢,保证神经肌肉的正常功能。</span><span style=\"font-size:18px;white-space:nowrap;\">人体内的钾主要来源于食物,钾异常与血压、血糖、肾功能异常有</span><span style=\"font-size:18px;white-space:nowrap;\">关。</span>   </p>  <p style=\"white-space:normal;\">   <span style=\"color:#E53333;font-size:18px;white-space:nowrap;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"color:#E53333;font-size:18px;white-space:nowrap;\"><strong>升高:补钾过多、尿少、肾功能不全、肾衰、药物影响。</strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"color:#E53333;font-size:18px;white-space:nowrap;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <strong style=\"line-height:1.5;font-size:18px;white-space:nowrap;\"><span style=\"color:#009900;\">建议:避免服用有损肾脏的药物,严格控制钾的补充速度。</span>&nbsp;</strong>   </p>', '<p align=\"left\">   <span style=\"font-size:18px;white-space:nowrap;\"><strong>血清钾浓度mmol/l:</strong>保持酸碱平衡,参与糖及蛋白质代谢,保证神经肌肉的正常功能。</span><span style=\"font-size:18px;white-space:nowrap;\">人体内的钾主要来源于食物,钾异常与血压、血糖、肾功能异常有</span><span style=\"font-size:18px;white-space:nowrap;\">关。</span>  </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:18px;white-space:nowrap;\"><strong>血清钾浓度mmol/l:</strong>保持酸碱平衡,参与糖及蛋白质代谢,保证神经肌肉的正常功能。</span><span style=\"font-size:18px;white-space:nowrap;\">人体内的钾主要来源于食物,钾异常与血压、血糖、肾功能异常有</span><span style=\"font-size:18px;white-space:nowrap;\">关。</span>   </p>  <p style=\"white-space:normal;\">   <strong style=\"line-height:1.5;font-size:18px;white-space:nowrap;\"><span style=\"color:#337FE5;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong style=\"line-height:1.5;font-size:18px;white-space:nowrap;\"><span style=\"color:#337FE5;\">减低:食量小、吸收差、大量出汗、呕吐、腹泻、排尿量增加(糖尿病患者、</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"line-height:1.5;font-size:18px;white-space:nowrap;\"><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">高血压服用利尿剂患者)、 应用排钾利尿剂、抗肿瘤能力低。节食减肥易</span></strong>   </p>  <p style=\"white-space:normal;\">   <strong style=\"line-height:1.5;font-size:18px;white-space:nowrap;\"><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">&nbsp;&nbsp;&nbsp;</span><span style=\"color:#337FE5;\">造成电解质紊乱。</span></strong>   </p>  <p style=\"white-space:normal;\">   <span style=\"color:#009900;font-size:18px;white-space:nowrap;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"color:#009900;font-size:18px;white-space:nowrap;\"><strong>建议:及时补充水分和钾,控制服用排利尿剂的剂量,多吃香蕉、香菇、各种菌类、</strong></span> <span style=\"font-size:18px;white-space:nowrap;\"><strong><span style=\"color:#009900;\">橘柑类水果及新鲜蔬菜等(糖尿病人慎食香蕉,痛风、</span></strong></span><span style=\"color:#009900;font-size:18px;white-space:nowrap;\"><strong>尿酸高患者禁食菌类)。</strong></span>   </p>  <br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('28', '16', '3', '血清钠浓度 mmol/l', '135', '145', '135', '145', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血清钠浓度mmol/l:</span></strong><span style=\"font-size:18px;\">保持细胞外液容量、调节酸碱平衡、维持正常渗透压和细胞生理功能并参与维持神经、肌肉的正常应激性,机体内钠的平衡主要靠肾脏的调节,也通过各种激素来实现,血清钠低于(135)mmol/L时为低血钠症。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#E53333;\">升高:高钠饮食、饭后、高热、肾上腺皮质功能亢进、尿过少。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:控制钠的摄入量,严格限盐,及时补充水分。</span></strong>  </p>', '<p>   <strong><span style=\"font-size:18px;\">血清钠浓度mmol/l:</span></strong><span style=\"font-size:18px;\">保持细胞外液容量、调节酸碱平衡、维持正常渗透压和细胞生理功能并参与维持神经、肌肉的正常应激性,机体内钠的平衡主要靠肾脏的调节,也通过各种激素来实现,血清钠低于(135)mmol/L时为低血钠症。</span>  </p>', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血清钠浓度mmol/l:</span></strong><span style=\"font-size:18px;\">保持细胞外液容量、调节酸碱平衡、维持正常渗透压和细胞生理功能并参与维持神经、肌肉的正常应激性,机体内钠的平衡主要靠肾脏的调节,也通过各种激素来实现,血清钠低于(135)mmol/L时为低血钠症。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#337FE5;\">减低:营养不良、食量小、呕吐、腹泻、天热或体力劳动大量出汗、应用大剂量利尿剂、血脂高均会引起血清钠浓度下降。节食减肥易造成电解质紊乱。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:慎用利尿剂,调整饮食结构。</span></strong>  </p>  <br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('29', '13', '3', '血清钙浓度 mmol/l', '2.13', '2.7', '2.13', '2.7', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血清钙浓度mmol/l:</span></strong><span style=\"font-size:18px;\">人体99%以上的钙存在于骨骼及牙齿中,细胞外液含钙浓度只有约27mmol,含量虽少,但在维持正常的神经、肌肉应激性,腺体分泌,一些酶系统的活性,特别是在血凝过程中起着重要作用,血清钙浓度高与血压高及服用降压药有关。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><br />  </span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#E53333;\">升高:高血压、佝偻病、软骨病和慢性肾功能衰竭、服用维生素D与钙过量等,当高钙血症的原因难以确定时,必须考虑恶性肿瘤存在的可能。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:积极查找原发病,控制维生素D与钙的摄入量(过量补钙易形成结石)。</span></strong>  </p>', '<p>   <strong><span style=\"font-size:18px;\">血清钙浓度mmol/l:</span></strong><span style=\"font-size:18px;\">人体99%以上的钙存在于骨骼及牙齿中,细胞外液含钙浓度只有约27mmol,含量虽少,但在维持正常的神经、肌肉应激性,腺体分泌,一些酶系统的活性,特别是在血凝过程中起着重要作用,血清钙浓度高与血压高及服用降压药有关。</span>  </p>', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血清钙浓度mmol/l:</span></strong><span style=\"font-size:18px;\">人体99%以上的钙存在于骨骼及牙齿中,细胞外液含钙浓度只有约27mmol,含量虽少,但在维持正常的神经、肌肉应激性,腺体分泌,一些酶系统的活性,特别是在血凝过程中起着重要作用,血清钙浓度高与血压高及服用降压药有关。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#337FE5;\">减低:怀孕、营养不良、吸收不良、手足抽搐、严重腹泻、肾功能不全、大量抗凝血剂的应用。节食减肥易造成电解质紊乱。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:均衡补钙、多晒太阳、多运动。</span></strong>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('30', '14', '3', '血清镁浓度 mmol/l', '0.7', '1.1', '0.7', '1.1', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血清镁浓度mmol/l:</span></strong><span style=\"font-size:18px;\">肝、肾和肌肉中含镁量较高,很多酶的催化过程都需要镁离子进行激活,镁也是维持神经和肌肉正常功能的重要元素。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#E53333;\">升高:感染、肾脏疾病、糖尿病酸中毒、慢性酒精中毒等。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:积极治疗原发病。</span></strong>  </p>', '<p>   <strong><span style=\"font-size:18px;\">血清镁浓度mmol/l:</span></strong><span style=\"font-size:18px;\">肝、肾和肌肉中含镁量较高,很多酶的催化过程都需要镁离子进行激活,镁也是维持神经和肌肉正常功能的重要元素。</span>  </p>', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血清镁浓度mmol/l:</span></strong><span style=\"font-size:18px;\">肝、肾和肌肉中含镁量较高,很多酶的催化过程都需要镁离子进行激活,镁也是维持神经和肌肉正常功能的重要元素。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#337FE5;\">减低:节食、厌食、吸收不良、通常伴随钙缺乏症,血清镁浓度低的人性格通常较温和。节食减肥易造成电解质紊乱。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:强化富镁饮食,多吃坚果类食物、紫菜、桑葚、小米。</span></strong>  </p>  <br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('31', '44', '3', '细胞外液 %', '21', '23', '21', '23', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">细胞外液%:</span></strong><span style=\"font-size:18px;\">由组织液和血液组成。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#E53333;\">升高:肾功能代谢差,钠摄入量高,胸腔或腹腔的疾患及局部组织水肿(心、肺、肾衰竭及全身水肿)。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:低钠饮食,查明原因。</span></strong>  </p>', '<p>   <strong><span style=\"font-size:18px;\">细胞外液%:</span></strong><span style=\"font-size:18px;\">由组织液和血液组成。</span>  </p>', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">细胞外液%:</span></strong><span style=\"font-size:18px;\">由组织液和血液组成。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#337FE5;\">减低:机体缺水(多见于爱出汗、腹泻者)。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:注意补充水分。</span></strong>  </p>  <br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('32', '45', '3', '细胞内液 %', '39', '42', '39', '42', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">细胞内液%:</span></strong><span style=\"font-size:18px;\">可通过细胞膜与细胞外液相互交流。</span>  </p>  <p style=\"white-space:normal;\">   <strong style=\"line-height:1.5;\"><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong style=\"line-height:1.5;\"><span style=\"font-size:18px;color:#E53333;\">升高:组织代谢问题,蛋白质摄入量过高,营养过剩。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:控制蛋白质的摄入量。</span></strong>  </p>', '<p>   <strong><span style=\"font-size:18px;\">细胞内液%:</span></strong><span style=\"font-size:18px;\">可通过细胞膜与细胞外液相互交流。</span>  </p>', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">细胞内液%:</span></strong><span style=\"font-size:18px;\">可通过细胞膜与细胞外液相互交流。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#337FE5;\">减低:机体缺水,钠摄入量高,代谢差。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:注意补充水分,低钠饮食。</span></strong>  </p>  <br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('33', '46', '3', '体液总量 %', '53', '60', '53', '60', '<p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong>体液总量%:</strong>水是人体内环境的基础,其中大部分水组成机体的细胞内液,细胞外液由组织液和血液组成。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\">体内含水量占体重的百分比为:</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\">女性44-60%或38.5升</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\">男性50-70%或42升</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#E53333;\"><strong>升高:脾胃功能失衡,水代谢下降,湿气重,或有轻微水肿。</strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#009900;\"><strong>建议:调整脾胃功能,禁止摄入生、冷、寒、凉及刺激性食物。</strong></span>  </p>', '<p>   <span style=\"font-size:18px;\"><strong>体液总量%:</strong>水是人体内环境的基础,其中大部分水组成机体的细胞内液,细胞外液由组织液和血液组成。</span>  </p>  <p>   <span style=\"font-size:18px;\">体内含水量占体重的百分比为:</span>  </p>  <p>   <span style=\"font-size:18px;\">女性44-60%或38.5升</span>  </p>  <p>   <span style=\"font-size:18px;\">男性50-70%或42升</span>  </p>', '<p>   <p style=\"white-space:normal;\">    <span style=\"font-size:18px;\"><strong>体液总量%:</strong>水是人体内环境的基础,其中大部分水组成机体的细胞内液,细胞外液由组织液和血液组成。</span>   </p>   <p style=\"white-space:normal;\">    <span style=\"font-size:18px;\">体内含水量占体重的百分比为:</span>   </p>   <p style=\"white-space:normal;\">    <span style=\"font-size:18px;\">女性44-60%或38.5升</span>   </p>   <p style=\"white-space:normal;\">    <span style=\"font-size:18px;\">男性50-70%或42升</span>   </p>   <p style=\"white-space:normal;\">    <span style=\"font-size:18px;\"><strong><br />  </strong></span>   </p>   <p style=\"white-space:normal;\">    <span style=\"font-size:18px;color:#337FE5;\"><strong>减低:脱水、或有贫血的可能。</strong></span>   </p>   <p style=\"white-space:normal;\">    <span style=\"font-size:18px;\"><strong><br />  </strong></span>   </p>   <p style=\"white-space:normal;\">    <span style=\"font-size:18px;color:#009900;\"><strong>建议:保证每天饮水量及营养均衡摄入。</strong></span>   </p>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('34', '18', '3', '血液PH值', '7.35', '7.45', '7.35', '7.45', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血液PH值:</span></strong><span style=\"font-size:18px;\">对细胞的新陈代谢、体液的酸碱平衡非常重要。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#E53333;\">升高:此值增高与肺功能、肾功能降低有关,增高少见。</span></strong>  </p>', '<p>   <strong><span style=\"font-size:18px;\">血液PH值:</span></strong><span style=\"font-size:18px;\">对细胞的新陈代谢、体液的酸碱平衡非常重要。</span>  </p>', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血液PH值:</span></strong><span style=\"font-size:18px;\">对细胞的新陈代谢、体液的酸碱平衡非常重要。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#337FE5;\">减低:轻度酸中毒,或机体处于疲劳状态。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:多吃蔬菜水果、粗粮,少吃酸性食物如肉、精米精面,多做有氧运动,注意休息。</span></strong>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('35', '10', '4', '血液凝集开始时间 min', '0.3', '2', '0.3', '2', '<p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong>血液凝集开始时间min:</strong>损伤后出血到伤口开始凝血所用时间。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><br />  </span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#E53333;\"><strong>升高:所需时间长,凝血差,易出血。</strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#009900;\"><strong>建议:在严格掌握剂量的前提下服用抗凝药物。</strong></span>  </p>', '<p>   <span style=\"font-size:18px;\"><strong>血液凝集开始时间min:</strong>损伤后出血到伤口开始凝血所用时间。</span>  </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong>血液凝集开始时间min:</strong>损伤后出血到伤口开始凝血所用时间。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><br />  </span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#337FE5;\"><strong>减低:伤口愈合快,易凝血。属于正常。</strong></span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('36', '11', '4', '血液凝集结束时间 min', '3', '5', '3', '5', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血液凝集结束时间min:</span></strong><span style=\"font-size:18px;\">从伤口开始凝集到完全凝集所用时间。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#E53333;\">升高:愈合慢,易出血。</span></strong>  </p>', '<p>   <strong><span style=\"font-size:18px;\">血液凝集结束时间min:</span></strong><span style=\"font-size:18px;\">从伤口开始凝集到完全凝集所用时间。</span>  </p>', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">血液凝集结束时间min:</span></strong><span style=\"font-size:18px;\">从伤口开始凝集到完全凝集所用时间。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><br />  </span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#337FE5;\">减低:愈合快,易形成血栓。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:在严格掌握剂量的前提下服用抗凝药物。</span></strong>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('37', '87', '4', '凝血酶原指数 %', '75', '104', '75', '104', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">凝血酶原指数%:</span></strong><span style=\"font-size:18px;\">凝血酶原浓度。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#E53333;\">升高:和血小板的激活因子有关,见于肝脏疾病及血管内凝血。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:积极进行临床治疗。</span></strong>  </p>', '<p>   <strong><span style=\"font-size:18px;\">凝血酶原指数%:</span></strong><span style=\"font-size:18px;\">凝血酶原浓度。</span>  </p>', '<p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\">凝血酶原指数%:</span></strong><span style=\"font-size:18px;\">凝血酶原浓度。</span>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#337FE5;\">减低:凝血差,易出血。</span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;\"><br />  </span></strong>  </p>  <p style=\"white-space:normal;\">   <strong><span style=\"font-size:18px;color:#009900;\">建议:谨慎服用抗凝药物或含抗凝成分的心脑血管药物及保健品,结合凝血时间进行分析。</span></strong>  </p>  <br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('38', '86', '4', '纤维蛋白原 g/l', '2', '4', '2', '4', '<p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong>纤维蛋白原g/l:</strong>一种由肝脏合成的具有凝血功能的蛋白质,是纤维蛋白的前体。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#E53333;\"><strong>升高:易形成血栓,易凝血,高原地区此指标普遍偏高。有家族遗传或高龄者。</strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#009900;\"><strong>建议:服用活血化瘀的药物或保健品,慎用凝血药物。</strong></span>  </p>', '<p>   <span style=\"font-size:18px;\"><strong>纤维蛋白原g/l:</strong>一种由肝脏合成的具有凝血功能的蛋白质,是纤维蛋白的前体。</span>  </p>', '<p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong>纤维蛋白原g/l:</strong>一种由肝脏合成的具有凝血功能的蛋白质,是纤维蛋白的前体。</span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#337FE5;\"><strong>减低:肝功能异常,严重时有出血倾向,不排除药物作用。</strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;\"><strong><br />  </strong></span>  </p>  <p style=\"white-space:normal;\">   <span style=\"font-size:18px;color:#009900;\"><strong>建议:积极治疗肝病,慎用活血化瘀药物。</strong></span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('39', '93', '5', 'Tiffeneau测试 %', '80', '110', '80', '109', '<span style=\"font-size:16px;\"><strong>Tiffno测试%:</strong>功能测试,反应肺器官的顺应能力及适应人体需要的能力。</span><br />', '<span style=\"font-size:16px;\"><strong>Tiffno测试%:</strong>功能测试,反应肺器官的顺应能力及适应人体需要的能力。</span><br />', '<span style=\"font-size:16px;\"><strong>Tiffno测试%:</strong>功能测试,反应肺器官的顺应能力及适应人体需要的能力。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>见于其功能欠佳,长期不运动、吸烟、咽炎、气管炎等呼吸道不适,肺功能弱。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>少吸烟、增加适量运动,以有氧运动最佳。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('40', '62', '5', '气体交换的表面积 m²', '3500', '4300', '3500', '4300', '<span style=\"font-size:16px;\"><strong>气体交换的表面积:</strong>包括肺与外界环境的气体交换(肺的通气)和体内的气体交换。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>肺功能较好。</span><br />', '<span style=\"font-size:16px;\"><strong>气体交换的表面积:</strong>包括肺与外界环境的气体交换(肺的通气)和体内的气体交换。</span><br />', '<span style=\"font-size:16px;\"><strong>气体交换的表面积:</strong>包括肺与外界环境的气体交换(肺的通气)和体内的气体交换。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>吸烟、体质差,提示肺部疾患。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>戒烟。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('41', '89', '5', '肺活量 cm³.', '3500', '5000', '2500', '4000', '<span style=\"font-size:16px;\"><strong>肺活量cm<sup>3</sup>:</strong>指一次尽力吸气后,再尽力呼出的气体总量,平静状态下的肺容量,与每分钟的呼吸次数密切相关,每分呼吸在18到20次为宜,壮年人肺容量较大,儿童与老年人较小。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>健康状况愈好的人肺活量愈大,运动员、体型高大者多见。</span><br />', '<span style=\"font-size:16px;\"><strong>肺活量cm<sup>3</sup>:</strong>指一次尽力吸气后,再尽力呼出的气体总量,平静状态下的肺容量,与每分钟的呼吸次数密切相关,每分呼吸在18到20次为宜,壮年人肺容量较大,儿童与老年人较小。</span><br />', '<span style=\"font-size:16px;\"><strong>肺活量cm<sup>3</sup>:</strong>指一次尽力吸气后,再尽力呼出的气体总量,平静状态下的肺容量,与每分钟的呼吸次数密切相关,每分呼吸在18到20次为宜,壮年人肺容量较大,儿童与老年人较小。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>体型瘦、胸廓窄、吸烟、运动少、肺结核等肺部疾患。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>长期适量运动。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('42', '90', '5', '肺通气量 l/min', '4', '12', '4', '12', '<span style=\"font-size:16px;\"><strong>肺通气量l/min:</strong>单位时间内出入肺的气体量,一般指肺的动态气量,它反映肺的通气功能。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>运动后、吸烟、空气干燥、咽炎及肺部疾患等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>戒烟,保持空气湿润。</span><br />', '<span style=\"font-size:16px;\"><strong>肺通气量l/min:</strong>单位时间内出入肺的气体量,一般指肺的动态气量,它反映肺的通气功能。</span><br />', '<span style=\"font-size:16px;\"><strong>肺通气量l/min:</strong>单位时间内出入肺的气体量,一般指肺的动态气量,它反映肺的通气功能。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>呼吸浅,肺功能弱等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>进行扩胸运动或者慢跑,加强有氧运动。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('43', '91', '5', '最大呼气末肺容量(FRC) cm³', '-999', '999', '-999', '999', '<span style=\"font-size:16px;\"><strong>最大呼气末肺容量(FRC)cm<sup>3</sup>:</strong>指呼气后肺内残余的气体量越少越好。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>因肺内残气量多故吸入的氧气减少,支气管哮喘,肺气肿等疾患多见。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>   <p>   &nbsp;  </p>', '<span style=\"font-size:16px;\"><strong>最大呼气末肺容量(FRC)cm<sup>3</sup>:</strong>指呼气后肺内残余的气体量越少越好。</span><br />', '<span style=\"font-size:16px;\"><strong>最大呼气末肺容量(FRC)cm<sup>3</sup>:</strong>指呼气后肺内残余的气体量越少越好。</span><br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('44', '92', '5', '最大气道流速 l/min', '74', '116', '74', '116', '<span style=\"font-size:16px;\"><strong>最大气道流量l/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>在一定范围内越高越好,哮喘病人会升高,咽喉部狭窄等。</span><br />', '<span style=\"font-size:16px;\"><strong>最大气道流量l/min</strong></span>', '<span style=\"font-size:16px;\"><strong>最大气道流量l/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>咽炎、感冒、咳嗽、吸烟、气管炎、疲劳状态等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>预防感冒,戒烟,积极治疗原发病。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('45', '104', '5', 'CO₂ 释放量 ml/min', '119', '300', '119', '300', '<span style=\"font-size:16px;\"><strong>二氧化碳释放量ml/min:</strong>新陈代谢过程的废弃物。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>新陈代谢加快,如运动后、饱餐后、炎症、高烧、空气污浊等,疲劳状态下亦可出现。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>保持空气清新。</span><br />', '<span style=\"font-size:16px;\"><strong>二氧化碳释放量ml/min:</strong>新陈代谢过程的废弃物。</span><br />', '<span style=\"font-size:16px;\"><strong>二氧化碳释放量ml/min:</strong>新陈代谢过程的废弃物。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>机体衰老、新陈代谢减慢、机体内细胞缺氧。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>多做有氧运动。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('46', '105', '5', '动脉血 CO₂ 气体含量 %', '32.5', '46.6', '32.5', '46.6', '<span style=\"font-size:16px;\"><strong>动脉血CO<sub>2</sub>气体含量%:</strong>又称动脉血二氧化碳分压,二氧化碳溶解在血中产生的压力,动脉血含氧较多,含二氧化碳较少,呈鲜红色。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>肺通气量减少,如在讲话、唱歌、饮食、思维、运动等活动中避免通气不足,呼吸功能减退,二氧化碳在体内集聚,常见于慢性支气管炎、肺气肿、肺心病等,可造成呼吸性酸中毒。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗肺部疾患。</span><br />  <p style=\"margin-left:29.5pt;text-indent:-29.5pt;\">   <b><span style=\"font-size:12pt;font-family:宋体;\"></span></b>  </p>', '<span style=\"font-size:16px;\"><strong>动脉血CO<sub>2</sub>气体含量%:</strong>又称动脉血二氧化碳分压,二氧化碳溶解在血中产生的压力,动脉血含氧较多,含二氧化碳较少,呈鲜红色。</span><br />  <p style=\"margin-left:29.5pt;text-indent:-29.5pt;\">   <b><span style=\"font-size:12pt;font-family:宋体;\"></span></b>  </p>', '<span style=\"font-size:16px;\"><strong>动脉血CO<sub>2</sub>气体含量%:</strong>又称动脉血二氧化碳分压,二氧化碳溶解在血中产生的压力,动脉血含氧较多,含二氧化碳较少,呈鲜红色。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>较少见,通气过度时可减低。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>老年人避免大哭或者大笑。</span>   <p style=\"margin-left:29.5pt;text-indent:-29.5pt;\">   <b><span style=\"font-size:12pt;font-family:宋体;\"></span></b>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('47', '106', '5', '静脉血 CO₂ 气体含量 %', '51', '53', '51', '53', '<p>   <span style=\"font-size:16px;\"><strong>静脉血CO<sub>2</sub>气体含量%:</strong>静脉血是在体循环(大循环)的静脉中流动的血液以及在肺循环(小循环)中从右心室流到肺的肺动脉中的血液。 静脉血液中含较多的代谢废物的血液,呈暗红色,如二氧化碳、尿素等物质,含氧量少,静脉血CO<sub>2 </sub>含量一定要高于动脉CO<sub>2 </sub></span><span style=\"font-size:16px;\">含量,二者之差不能少于5%。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高</span></strong>与<strong><span style=\"color:#337fe5;\">减低</span></strong>的意义可参考 动脉血CO<sub>2</sub>气体含量% 项。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>多做深呼吸。</span>   </p>  <p>   &nbsp;  </p>', '<p>   <span style=\"font-size:16px;\"><strong>静脉血CO<sub>2</sub>气体含量%:</strong>静脉血是在体循环(大循环)的静脉中流动的血液以及在肺循环(小循环)中从右心室流到肺的肺动脉中的血液。 静脉血液中含较多的代谢废物的血液,呈暗红色,如二氧化碳、尿素等物质,含氧量少,静脉血CO<sub>2 </sub>含量一定要高于动脉</span><span style=\"font-size:16px;\">CO<sub>2</sub>含量,二者之差不能少于5%。</span>   </p>', '<p>   <span style=\"font-size:16px;\"><strong>静脉血CO<sub>2</sub>气体含量%:</strong>静脉血是在体循环(大循环)的静脉中流动的血液以及在肺循环(小循环)中从右心室流到肺的肺动脉中的血液。 静脉血液中含较多的代谢废物的血液,呈暗红色,如二氧化碳、尿素等物质,含氧量少,静脉血CO<sub>2 </sub>含量一定要高于动脉CO<sub>2 </sub></span><span style=\"font-size:16px;\">含量,二者之差不能少于5%。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高</span></strong>与<strong><span style=\"color:#337fe5;\">减低</span></strong>的意义可参考&nbsp;动脉血CO<sub>2</sub>气体含量% 项。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>多做深呼吸。</span>   </p>  <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('48', '96', '5', '呼吸指数', '0.8', '1.2', '0.8', '1.2', '<span style=\"font-size:16px;\"><strong>呼吸指数:</strong>肺泡动脉氧压差与动脉氧分压的比值谓之呼吸指数,反应肺的通气、氧气交换功能的指标和功能减退,呼吸指数越高说明体内氧化过程越慢。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>说明体内氧化过程慢。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>增加肺功能的锻炼,比如游泳、慢跑、太极拳。</span><br />', '<span style=\"font-size:16px;\"><strong>呼吸指数:</strong>肺泡动脉氧压差与动脉氧分压的比值谓之呼吸指数,反应肺的通气、氧气交换功能的指标和功能减退,呼吸指数越高说明体内氧化过程越慢。</span><br />', '<span style=\"font-size:16px;\"><strong>呼吸指数:</strong>肺泡动脉氧压差与动脉氧分压的比值谓之呼吸指数,反应肺的通气、氧气交换功能的指标和功能减退,呼吸指数越高说明体内氧化过程越慢。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>通常少见,激烈运动后的运动员,十分钟后恢复正常。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('49', '99', '6', '动脉血 O₂ 饱和度 %', '95', '98', '95', '98', '<span style=\"font-size:16px;\"><strong>动脉血氧饱和度%:</strong>氧含量(血中实际所含溶解氧与化合氧之和)/氧容量(空气与血充分接触使血氧饱和后其所能溶解与化合的氧之和)。</span><br />  <span style=\"font-size:16px;\">参考值:动脉血95%~98%;静脉血60%~85%。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>运动后、高铁血红蛋白血症。</span><br />', '<span style=\"font-size:16px;\"><strong>动脉血氧饱和度%:</strong>氧含量(血中实际所含溶解氧与化合氧之和)/氧容量(空气与血充分接触使血氧饱和后其所能溶解与化合的氧之和)。</span><br />  <span style=\"font-size:16px;\">参考值:动脉血95%~98%;静脉血60%~85%。</span><br />', '<span style=\"font-size:16px;\"><strong>动脉血氧饱和度%:</strong>氧含量(血中实际所含溶解氧与化合氧之和)/氧容量(空气与血充分接触使血氧饱和后其所能溶解与化合的氧之和)。</span><br />  <span style=\"font-size:16px;\">参考值:动脉血95%~98%;静脉血60%~85%。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>缺氧,与血红蛋白结合及释放氧气的能力有关,是肺通气及换气障碍的结果。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>保持良好的家庭环境卫生,室内空气流通新鲜,有一定湿度,控制和消除各种有害气体和烟尘,戒除吸烟的习惯,加强体育锻炼。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('50', '97', '6', '氧转运(DO₂) ml/min', '900', '1200', '900', '1200', '<span style=\"font-size:16px;\"><strong>氧转运ml/min:</strong>氧气在组织间的运送和交换。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>提示炎症、肿瘤等病理变化,指内脏器官的需氧量增高(心、肺、肝、及胃肠道等内脏器官),</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span><br />', '<span style=\"font-size:16px;\"><strong>氧转运ml/min:</strong>氧气在组织间的运送和交换。</span><br />', '<span style=\"font-size:16px;\"><strong>氧转运ml/min:</strong>氧气在组织间的运送和交换。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>心肺功能下降。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>增加心肺功能的锻炼,比如游泳、慢跑、太极拳。</span>   <p>   <b><span style=\"font-size:12pt;font-family:宋体;\"></span></b>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('51', '61', '6', 'O₂ 至组织的运送速度 ml/min', '200', '280', '200', '280', '<span style=\"font-size:16px;\"><strong>氧气至组织的转运速度ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>循环加快(感染、炎症及运动后代谢快)。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span><br />', '<span style=\"font-size:16px;\"><strong>氧气至组织的转运速度ml/min</strong></span>', '<span style=\"font-size:16px;\"><strong>氧气至组织的转运速度ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>提示氧的利用功能相对较差,与血循环、心律及体液变化有关,处于疲劳状态。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>增加心肺功能的锻炼,比如游泳、慢跑、太极拳。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('52', '101', '6', '氧利用量 ml/min', '200', '451.39', '200', '451.39', '<span style=\"font-size:16px;\"><strong>氧利用量ml/min:</strong>指进入肺部的氧气被人体利用的情况。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>代谢快,呼吸深、有炎症、或者是吸烟、疲劳、缺氧等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>增加心肺功能的锻炼,比如游泳、慢跑、太极拳。</span><br />', '<span style=\"font-size:16px;\"><strong>氧利用量ml/min:</strong>指进入肺部的氧气被人体利用的情况。</span><br />', '<span style=\"font-size:16px;\"><strong>氧利用量ml/min:</strong>指进入肺部的氧气被人体利用的情况。</span><br />  <span style=\"font-size:16px;\"><span style=\"color:#337fe5;\"><strong>减低:</strong></span>代谢慢,肺功能弱、体质弱及肺部疾患有关。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗肺部疾患。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('53', '100', '6', '每 kg 氧利用量 ml/min/kg', '4', '6', '4', '6', '<span style=\"font-size:16px;\"><strong>每KG氧利用量ml/min/kg:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>代谢快,如运动后、饭后、喝热水后,感冒、炎症,大幅度升高者应考虑肿瘤。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>除肿瘤外,不需要特殊处理。</span><br />', '<span style=\"font-size:16px;\"><strong>每KG氧利用量ml/min/kg</strong></span>', '<p>   <b><span style=\"font-size:12pt;font-family:宋体;\"><span style=\"font-size:16px;\"><strong>每KG氧利用量ml/min/kg:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>代谢慢,与疲劳、亚健康及组织疾患有关。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极有氧运动。</span></span></b>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('54', '103', '6', '组织氧摄取率 ml', '0.26', '0.34', '0.26', '0.34', '<span style=\"font-size:16px;\"><strong>组织氧摄取率ml:</strong>与细胞膜的通透性相作用。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>需氧量增加时,组织产生炎症及病变。</span><br />', '<span style=\"font-size:16px;\"><strong>组织氧摄取率ml:</strong>与细胞膜的通透性相作用。</span><br />', '<span style=\"font-size:16px;\"><strong>组织氧摄取率ml:</strong>与细胞膜的通透性相作用。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>代谢减慢。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>同 氧利用量ml/min 项。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('55', '59', '6', '循环血量 ml/kg', '65', '69', '65', '69', '<span style=\"font-size:16px;\"><strong>循环血量ml/kg:</strong>系人体循环血液的总量,血量是相对恒定神经和体液因素调节的结果。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>代谢加快,血液中携氧欠佳,(吃得过饱、血压高、水肿、甲亢、贫血等)。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>进食勿过饱,治疗贫血及高血压。</span><br />', '<span style=\"font-size:16px;\"><strong>循环血量ml/kg:</strong>系人体循环血液的总量,血量是相对恒定神经和体液因素调节的结果。</span><br />', '<span style=\"font-size:16px;\"><strong>循环血量ml/kg:</strong>系人体循环血液的总量,血量是相对恒定神经和体液因素调节的结果。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>失血、缺水、血压降低,服用利尿药物等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>慎用利尿药,积水补充水分。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('56', '60', '6', '每分钟循环血量 l/min', '3.5', '4.3', '3.5', '4.3', '<span style=\"font-size:16px;\"><strong>每分钟循环血量l/min:</strong>此指标分析可参考 循环血量ml/kg 项。</span>', '<span style=\"font-size:16px;\"><strong>每分钟循环血量l/min:</strong>此指标分析可参考 循环血量ml/kg 项。</span>   <p>   &nbsp;  </p>', '<span style=\"font-size:16px;\"><strong>每分钟循环血量l/min:</strong>此指标分析可参考 循环血量ml/kg 项。</span>   <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('57', '114', '7', '收缩期动脉压 mm Hg', '-999', '999', '-999', '999', '<span style=\"font-size:16px;\"><strong>收缩期动脉压mm Hg:</strong>心脏收缩时,从心室射出的血液对血管壁产生的压力,这时血压最大。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>高血压、情绪激动、紧张、运动、药物、饮食习惯、神经衰弱、失眠、长时间开车、长时间打牌等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>治疗高血压,放松心里压力,劳逸结合。</span><br />', '<span style=\"font-size:16px;\"><strong>收缩期动脉压mm Hg:</strong>心脏收缩时,从心室射出的血液对血管壁产生的压力,这时血压最大。</span><br />', '<span style=\"font-size:16px;\"><strong>收缩期动脉压mm Hg:</strong>心脏收缩时,从心室射出的血液对血管壁产生的压力,这时血压最大。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>低血压、贫血、营养不良、失血。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>补充营养,保持饮食多样化,注意休息。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('58', '115', '7', '舒张期动脉压 mm Hg', '-999', '999', '-999', '999', '<span style=\"font-size:16px;\"><strong>舒张期动脉压mm Hg:</strong>心脏舒张末期,血管壁的压力。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>高血压、情绪激动、紧张、运动、药物、长时间开车。</span><br />  <span style=\"font-size:16px;\">温馨提示:以下48-60项,是反映心脏的生理参数。需要结合其它的相关指标比如心肌酶、心肌耗氧量等综合分析。</span>', '<span style=\"font-size:16px;\"><strong>舒张期动脉压mm Hg:</strong>心脏舒张末期,血管壁的压力。</span><br />  <br />  <span style=\"font-size:16px;\">温馨提示:以下48-60项,是反映心脏的生理参数。需要结合其它的相关指标比如心肌酶、心肌耗氧量等综合分析。</span>', '<span style=\"font-size:16px;\"><strong>舒张期动脉压mm Hg:</strong>心脏舒张末期,血管壁的压力。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>血压低、贫血、营养不良、失血等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>高血压患者在医生指导下坚持服药,注意休息,避免劳累、运动过度及情绪过度紧张等,饮食少盐,多饮菊花茶、山楂水、柠檬水,多吃芹菜,吃豆类制品等。</span><br />  <span style=\"font-size:16px;\">温馨提示:以下48-60项,是反映心脏的生理参数。需要结合其它的相关指标比如心肌酶、心肌耗氧量等综合分析。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('59', '110', '7', 'PQ 间期 sec', '0.125', '0.165', '0.125', '0.165', '<span style=\"font-size:16px;\"><strong>PQ间期sec:</strong>代表心房开始除极至心室开始除极的时间。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>可能存在一室房室传导阻滞,提示心脏疾患。</span><br />', '<span style=\"font-size:16px;\"><strong>PQ间期sec:</strong>代表心房开始除极至心室开始除极的时间。</span><br />', '<span style=\"font-size:16px;\"><strong>PQ间期sec:</strong>代表心房开始除极至心室开始除极的时间。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>一般没有什么症状,偶有心动过速,综合其他指标来分析。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>防止感冒,注意休息。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('60', '111', '7', 'QT 间期 sec', '0.355', '0.4', '0.355', '0.4', '<span style=\"font-size:16px;\"><strong>QT间期sec:</strong>心室收缩和舒张的时间,它代表心室开始去极化到全部复极化完毕所需时间。心率增快,Q-T间期缩短;心率减慢,Q-T间期延长。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>心率减慢、疲劳、心肌供血、供氧欠佳时可见,必要时就诊。</span><br />', '<span style=\"font-size:16px;\"><strong>QT间期sec:</strong>心室收缩和舒张的时间,它代表心室开始去极化到全部复极化完毕所需时间。心率增快,Q-T间期缩短;心率减慢,Q-T间期延长。</span><br />', '<span style=\"font-size:16px;\"><strong>QT间期sec:</strong>心室收缩和舒张的时间,它代表心室开始去极化到全部复极化完毕所需时间。心率增快,Q-T间期缩短;心率减慢,Q-T间期延长。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>心率增快。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>防止感冒,注意休息。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('61', '112', '7', 'QRS 间期 sec', '0.065', '0.1', '0.065', '0.1', '<span style=\"font-size:16px;\"><strong>QRS波群sec:</strong>心室收缩的时间。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>心动过速、心慌、胸闷等,最近是否太劳累、睡眠差等,超出幅度较大提示心脏疾患。</span><br />', '<span style=\"font-size:16px;\"><strong>QRS波群sec:</strong>心室收缩的时间。</span><br />', '<span style=\"font-size:16px;\"><strong>QRS波群sec:</strong>心室收缩的时间。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>正常人偶尔会有,可见于肺气肿等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>防止感冒,注意休息。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('62', '117', '7', '心脏功率 Joule', '0.692', '0.788', '0.692', '0.788', '<span style=\"font-size:16px;\"><strong>心脏功率:</strong>心室收缩并射血时所做的功的功率。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>心肌供氧不足,体内耗氧过多、疲劳,睡眠差,心脏疾患等。</span><br />', '<span style=\"font-size:16px;\"><strong>心脏功率:</strong>心室收缩并射血时所做的功的功率。</span><br />', '<span style=\"font-size:16px;\"><strong>心脏功率:</strong>心室收缩并射血时所做的功的功率。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>心脏功能减弱。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>多做深呼吸。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('63', '64', '7', '心肌血流量占 %', '4.32', '5.02', '4.32', '5.02', '<p>   <span style=\"font-size:16px;\"><strong>心肌血流量占 %:</strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>急性缺氧引起心肌血流量增加。</span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>心肌血流量占 %</strong></span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>心肌血流量占 %:</strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>冠状动脉粥样硬化造成心肌缺血,主要表现为:心悸、心区不适、有时心区抽痛或呈放射性绞痛;气短、运动、饱食或激动更加严重,周身无力;严重时可短时休克,年轻时患过心肌炎等疾患,运动员偶见心肌血流量偏低。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>适量加强有氧运动。</span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('64', '71', '7', '心肌血流量 ml/min', '250', '290.5', '250', '290.5', '<span style=\"font-size:16px;\"><strong>心肌血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>急性缺氧引起心肌血流量增加。</span><br />', '<span style=\"font-size:16px;\"><strong>心肌血流量ml/min</strong></span>', '<span style=\"font-size:16px;\"><strong>心肌血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>冠状动脉粥样硬化造成心肌缺血,主要表现为:心悸、心区不适、有时心区抽痛或呈放射性绞痛;气短、运动、饱食或激动更加严重,周身无力;严重时可短时休克,年轻时患过心肌炎等疾患,运动员偶见心肌血流量偏低。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>适量加强有氧运动。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('65', '113', '7', '左心室心肌收缩力 %', '50', '85', '50', '85', '<span style=\"font-size:16px;\"><strong>左心室收缩力%:</strong>左心室接收来自左心房的含氧血,再把含氧血泵入大动脉供应全身。</span><br />', '<span style=\"font-size:16px;\"><strong>左心室收缩力%:</strong>左心室接收来自左心房的含氧血,再把含氧血泵入大动脉供应全身。</span>', '<span style=\"font-size:16px;\"><strong>左心室收缩力%:</strong>左心室接收来自左心房的含氧血,再把含氧血泵入大动脉供应全身。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>提示左心室心肌功能欠佳或异常,常在心肌供血不足、缺氧状态下出现,结合心肌血流量分析,疲劳、睡眠差均会引起减低。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>平时注意休息,饮食注意清淡,少油腻,多吃新鲜的水果蔬菜。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('66', '109', '7', '每搏输出量 ml', '60', '80', '60', '80', '<span style=\"font-size:16px;\"><strong>每搏输出量ml:</strong>指一次心搏,一侧心室射出的血量,左、右心室的搏出量基本相等,影响搏出量的主要因素有:心肌收缩力、静脉回心血量(前负荷)、动脉血压(后负荷)等。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>运动员体质可能会出现。</span><br />', '<span style=\"font-size:16px;\"><strong>每搏输出量ml:</strong>指一次心搏,一侧心室射出的血量,左、右心室的搏出量基本相等,影响搏出量的主要因素有:心肌收缩力、静脉回心血量(前负荷)、动脉血压(后负荷)等。</span><br />', '<span style=\"font-size:16px;\"><strong>每搏输出量ml:</strong>指一次心搏,一侧心室射出的血量,左、右心室的搏出量基本相等,影响搏出量的主要因素有:心肌收缩力、静脉回心血量(前负荷)、动脉血压(后负荷)等。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>心脏功能欠佳,心、肺部疾病影响。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>做血管造影。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('67', '102', '7', '心肌耗氧量 ml/min', '7', '10', '7', '10', '<span style=\"font-size:16px;\"><strong>心肌耗氧量ml/min:</strong>反应了心脏代谢水平。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>精神紧张、运动时、心率快、血压高、疲劳、感染后炎症等。</span><br />', '<span style=\"font-size:16px;\"><strong>心肌耗氧量ml/min:</strong>反应了心脏代谢水平。</span><br />', '<span style=\"font-size:16px;\"><strong>心肌耗氧量ml/min:</strong>反应了心脏代谢水平。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>心率慢、血压低、代谢慢、天冷体温低、冠心病等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>注意情志调节,避免过悲或过喜。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('68', '78', '7', '小循环阻力 din/cm*sec', '140', '150', '140', '150', '<span style=\"font-size:16px;\"><strong>小循环阻力din/cm*sec:</strong>右心室负责将血液注入肺动脉经肺静脉流入左心房称为肺循环(又叫小循环)。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>上呼吸道感染、吸烟、肺部感染、心肺疾患等。</span><br />', '<span style=\"font-size:16px;\"><strong>小循环阻力din/cm*sec:</strong>右心室负责将血液注入肺动脉经肺静脉流入左心房称为肺循环(又叫小循环)。</span><br />', '<span style=\"font-size:16px;\"><strong>小循环阻力din/cm*sec:</strong>右心室负责将血液注入肺动脉经肺静脉流入左心房称为肺循环(又叫小循环)。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>体质差、血流量不足或服用了扩血管药物。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>防止感染,多运动。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('69', '79', '7', '中心静脉压 mm H₂O', '50', '120', '50', '120', '<span style=\"font-size:16px;\"><strong>中心静脉压mmH<sub>2</sub>O:</strong>是指右心房及上、下腔静脉胸腔段的压力。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>心脏功能异常、心力衰竭、缺氧。</span><br />', '<span style=\"font-size:16px;\"><strong>中心静脉压mmH<sub>2</sub>O:</strong>是指右心房及上、下腔静脉胸腔段的压力。</span><br />', '<span style=\"font-size:16px;\"><strong>中心静脉压mmH<sub>2</sub>O:</strong>是指右心房及上、下腔静脉胸腔段的压力。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>循环血量不足、回流慢、贫血。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>低脂饮食,保持血管壁的弹性。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('70', '80', '7', '体循环时间 s', '16', '23', '16', '23', '<p>   <span style=\"font-size:16px;\"><strong>体循环时间:</strong>体循环是指血液由左心室进入主动脉,再流经全身的各级动脉、毛细血管网、各级静脉,最后汇集到上、下腔静脉,流回右心房的循环。</span>  </p>  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>氧气运输速度减慢、供氧欠佳,与心肺功能异常有关,或心肺疾患所致,需结合其他指标进行分析。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极查找心脏病的病因。</span><br />', '<span style=\"font-size:16px;\"><strong>体循环时间:</strong>体循环是指血液由左心室进入主动脉,再流经全身的各级动脉、毛细血管网、各级静脉,最后汇集到上、下腔静脉,流回右心房的循环。</span>', '<p>   <span style=\"font-size:16px;\"><strong>体循环时间:</strong>体循环是指血液由左心室进入主动脉,再流经全身的各级动脉、毛细血管网、各级静脉,最后汇集到上、下腔静脉,流回右心房的循环。</span>  </p>  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>代谢快、心率快。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>结合基础代谢指标综合判断。</span>   <p>   <span style=\"font-size:16px;\"></span>&nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('71', '81', '7', '小循环时间 s', '4', '5.5', '4', '5.5', '<p>   <strong><span style=\"font-size:16px;\">小循环时间:</span></strong><span style=\"font-size:16px;\">肺循环是指血液由右心室进入肺动脉,流经肺部的毛细管网,再由肺静脉流回左心房的循环。</span>  </p>  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>氧气运输速度减慢、供氧欠佳,与心肺功能异常有关,或心肺疾患所致,需结合其他指标进行分析。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极查找心脏病的病因。</span><br />', '<strong><span style=\"font-size:16px;\">小循环时间:</span></strong><span style=\"font-size:16px;\">肺循环是指血液由右心室进入肺动脉,流经肺部的毛细管网,再由肺静脉流回左心房的循环。</span>', '<p>   <strong><span style=\"font-size:16px;\">小循环时间:</span></strong><span style=\"font-size:16px;\">肺循环是指血液由右心室进入肺动脉,流经肺部的毛细管网,再由肺静脉流回左心房的循环。</span>  </p>  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>代谢快、心率快。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>结合基础代谢指标综合判断。</span>   <p>   <span style=\"font-size:16px;\"></span>&nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('72', '56', '7', '心源性肌酸激酶 CK-MB μmol/min/kg', '35.1', '38.1', '35.1', '38.1', '<span style=\"font-size:16px;\"><strong>心源性肌酸激酶:</strong>肌酸激酶是细胞能量代谢的关键酶,根据分布的部位可分为肌肉型(M型)、脑型(B型)和线粒体型(Mt型)肌酸激酶同工酶(心肌酶)。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>轻微升高见于疲劳、心肌供血不足、心绞痛,成倍升高见于心绞痛、心肌梗死等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>在心肌梗塞时,要积极治疗。平时注意不可过劳或体力透支。</span><br />', '<span style=\"font-size:16px;\"><strong>心源性肌酸激酶:</strong>肌酸激酶是细胞能量代谢的关键酶,根据分布的部位可分为肌肉型(M型)、脑型(B型)和线粒体型(Mt型)肌酸激酶同工酶(心肌酶)。</span><br />', '<span style=\"font-size:16px;\"><strong>心源性肌酸激酶:</strong>肌酸激酶是细胞能量代谢的关键酶,根据分布的部位可分为肌肉型(M型)、脑型(B型)和线粒体型(Mt型)肌酸激酶同工酶(心肌酶)。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>心脏功能弱。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>增加心肺功能的锻炼,比如游泳、慢跑、太极拳。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('73', '63', '7', '循环血量不足 ml', '0', '250', '0', '250', '<span style=\"font-size:16px;\"><strong>循环血量不足:</strong>全身循环血液总量的不足情况。只有升高现象。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>多见于疲劳、剧烈运动后、缺水、大量出汗、脱水、失血等情况。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极补水及电解质。</span>', '<span style=\"font-size:16px;\"><strong>循环血量不足:</strong>全身循环血液总量的不足情况。只有升高现象。</span><br />', '<span style=\"font-size:16px;\"><strong>循环血量不足:</strong>全身循环血液总量的不足情况。只有升高现象。</span><br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('74', '23', '8', 'ALT 酶 mmol/l', '0.1', '0.68', '0.1', '0.68', '<span style=\"font-size:16px;\"><strong>ALT酶:</strong>谷丙转氨酶:ALT是体内活力最强的转氨酶之一,参与体内许多氨基酸的代谢具有重要作用,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>各类肝炎、药物、饮酒,某些食物也会引起肝功能短时间损害,明显升高见于急性病毒性肝炎、慢性肝炎、胆管炎、胆囊炎,中度升高见于急性肝坏死、脂肪肝、肝硬化活动期、肝癌、肝脓肿等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>除了积极治疗肝脏疾患之外,要严格戒酒,慎用有损肝脏的药物。</span><br />', '<span style=\"font-size:16px;\"><strong>ALT酶:</strong>谷丙转氨酶:ALT是体内活力最强的转氨酶之一,参与体内许多氨基酸的代谢具有重要作用,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />', '<span style=\"font-size:16px;\"><strong>ALT酶:</strong>谷丙转氨酶:ALT是体内活力最强的转氨酶之一,参与体内许多氨基酸的代谢具有重要作用,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>没有临床意义。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('75', '25', '8', 'ALT 酶 U/l', '2', '40', '2', '40', '<span style=\"font-size:16px;\"><strong>ALT酶:</strong>谷丙转氨酶:ALT是体内活力最强的转氨酶之一,参与体内许多氨基酸的代谢具有重要作用,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>各类肝炎、药物、饮酒,某些食物也会引起肝功能短时间损害,明显升高见于急性病毒性肝炎、慢性肝炎、胆管炎、胆囊炎,中度升高见于急性肝坏死、脂肪肝、肝硬化活动期、肝癌、肝脓肿等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>除了积极治疗肝脏疾患之外,要严格戒酒,慎用有损肝脏的药物。</span><br />', '<span style=\"font-size:16px;\"><strong>ALT酶:</strong>谷丙转氨酶:ALT是体内活力最强的转氨酶之一,参与体内许多氨基酸的代谢具有重要作用,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />', '<span style=\"font-size:16px;\"><strong>ALT酶:</strong>谷丙转氨酶:ALT是体内活力最强的转氨酶之一,参与体内许多氨基酸的代谢具有重要作用,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>没有临床意义。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('76', '22', '8', 'AST 酶 mmol/l', '0.1', '0.45', '0.1', '0.45', '<span style=\"font-size:16px;\"><strong>AST酶:</strong>谷草转氨酶:升高是很常见的现象,是肝脏功能的一个重要指标,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>各类肝炎、药物、饮酒,某些食物也会引起肝功能短时间损害,明显升高见于急性病毒性肝炎,中度升高见于慢性肝炎、肝硬化活动期、肝癌、肝脓肿、心梗、心肌炎、心衰等也可轻度升高。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>除了积极治疗心脏和肝脏疾患之外,要严格戒酒,慎用有损肝脏的药物。发病时注意卧床休息。</span><br />', '<span style=\"font-size:16px;\"><strong>AST酶:</strong>谷草转氨酶:升高是很常见的现象,是肝脏功能的一个重要指标,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />', '<span style=\"font-size:16px;\"><strong>AST酶:</strong>谷草转氨酶:升高是很常见的现象,是肝脏功能的一个重要指标,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>没有临床意义。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('77', '24', '8', 'AST 酶 U/l', '2', '40', '2', '40', '<span style=\"font-size:16px;\"><strong>AST酶:</strong>谷草转氨酶:升高是很常见的现象,是肝脏功能的一个重要指标,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>各类肝炎、药物、饮酒,某些食物也会引起肝功能短时间损害,明显升高见于急性病毒性肝炎,中度升高见于慢性肝炎、肝硬化活动期、肝癌、肝脓肿、心梗、心肌炎、心衰等也可轻度升高。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>除了积极治疗心脏和肝脏疾患之外,要严格戒酒,慎用有损肝脏的药物。发病时注意卧床休息。</span><br />', '<span style=\"font-size:16px;\"><strong>AST酶:</strong>谷草转氨酶:升高是很常见的现象,是肝脏功能的一个重要指标,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />', '<span style=\"font-size:16px;\"><strong>AST酶:</strong>谷草转氨酶:升高是很常见的现象,是肝脏功能的一个重要指标,被世界卫生组织推荐为肝功能损害最敏感的检测指标。如有1%的肝细胞坏死,就可以使血清酶增高一倍,但它并不具器官专一性,许多疾病都可以引起它的增高。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>没有临床意义。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('78', '26', '8', 'AST 酶/ALT 酶', '0.8', '1.2', '0.8', '1.2', '<span style=\"font-size:16px;\"><strong>AST/ALT:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>比值&gt;1时,就提示有肝实质的损害,饮酒、高脂饮食、服用药物等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>除了积极治疗肝脏疾患之外,要严格戒酒,慎用有损肝脏的药物。</span><br />', '<span style=\"font-size:16px;\"><strong>AST/ALT</strong></span>', '<span style=\"font-size:16px;\"><strong>AST/ALT:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>肝损伤较轻、脂肪肝、睡眠差、服用药物、或是小时候患过肝炎及乙肝携带。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>保持充足睡眠,要严格戒酒,慎用有损肝脏的药物。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('79', '53', '8', '谷氨酰胺 mmol/l', '0.0045', '0.0055', '0.0045', '0.0055', '<span style=\"font-size:16px;\"><strong>谷氨酸:</strong>参与肝脏的代谢,特别参与谷丙转氨酶和谷草转氨酶的代谢,谷氨酸又包含在这两种物质中。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>身体疲劳状态、负荷增加。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>注意劳逸结合</span><br />', '<span style=\"font-size:16px;\"><strong>谷氨酸:</strong>参与肝脏的代谢,特别参与谷丙转氨酶和谷草转氨酶的代谢,谷氨酸又包含在这两种物质中。</span><br />', '<span style=\"font-size:16px;\"><strong>谷氨酸:</strong>参与肝脏的代谢,特别参与谷丙转氨酶和谷草转氨酶的代谢,谷氨酸又包含在这两种物质中。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>提示肝脏功能异常。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>除了积极治疗肝脏疾患之外,要严格戒酒,慎用有损肝脏的药物。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('80', '30', '8', '总蛋白 g/l', '60', '80', '60', '80', '<span style=\"font-size:16px;\"><strong>总蛋白:</strong>由白蛋白和球蛋白组成,是血清固体中含量最多的一种物质。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>主要是血清中水分减少,使总蛋白浓度相对增高,如近期剧烈运动、大量饮酒或没有休息好都有可能会引起白蛋白暂时性升高,调养一段时间后再去检查,就会恢复正常值。</span><br />  <span style=\"font-size:16px;\">夏季较冬季高约8%,捆缚升高约5%,适度用力升高约3%。或大量脱水如:出汗、呕吐、腹泻、创伤、烧伤、霍乱及多发性骨髓瘤。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>注意休息和戒酒。</span><br />', '<span style=\"font-size:16px;\"><strong>总蛋白:</strong>由白蛋白和球蛋白组成,是血清固体中含量最多的一种物质。</span><br />', '<span style=\"font-size:16px;\"><strong>总蛋白:</strong>由白蛋白和球蛋白组成,是血清固体中含量最多的一种物质。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>口服避孕药的女性约降低2%,60~80岁的老年人约降低3%,6~7岁的儿童约降低5%,4~150天的婴儿约降低10%,妊娠妇女约降低10%。肝功能障碍,则肝脏合成蛋白质下降,主要是白蛋白下降明显,重症结核、恶性肿瘤、肾病综合征、肝硬化、营养不良、肠道疾病等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('81', '67', '8', '肝脏血流量占 %', '20.28', '29.86', '20.28', '29.86', '<p>   <span style=\"font-size:16px;\"><strong>肝脏血流量占 %:</strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>睡眠差、酒精、高脂饮食、服用药物或保健品、肝炎等。</span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>肝脏血流量占 %</strong></span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>肝脏血流量占 %:</strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>衰老、贫血、肝硬化、长期失眠。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>无论升高还是降低,都要积极治疗肝脏疾患之外,要严格戒酒,慎用有损肝脏的药物。</span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('82', '74', '8', '肝脏血流量 ml/min', '1690', '2488.33', '1690', '2488.33', '<span style=\"font-size:16px;\"><strong>肝脏血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>睡眠差、酒精、高脂饮食、服用药物或保健品、肝炎等。</span><br />', '<span style=\"font-size:16px;\"><strong>肝脏血流量ml/min</strong></span>', '<span style=\"font-size:16px;\"><strong>肝脏血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>衰老、贫血、肝硬化、长期失眠。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>无论升高还是降低,都要积极治疗肝脏疾患之外,要严格戒酒,慎用有损肝脏的药物。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('83', '27', '8', '胆红素 μmol/l', '1.7', '17.1', '1.7', '17.1', '<span style=\"font-size:16px;\"><strong>胆红素:</strong>血红蛋白的代谢产物,肝胆系统疾病的检测指标。胆红素和血清中的白蛋白结合后转运到肝脏,在肝脏内与葡萄糖醛酸结合后生成葡萄糖醛酸胆红素为直接胆红素,未在肝内经过葡萄糖醛酸化的为间接胆红素,二者的和就是总胆红素,总胆红素升高就是人们常说的黄疸(分轻、中、重度)。成人总胆红素正常值在3.4-17.1μmol/L之间,17.1-34.2μmol/L可视为隐性黄疸;34.2-171μmol/L之间为轻度黄疸;171-342μmol/L为中度黄疸;大于342μmol/L则为重度黄疸。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>溶血性黄疸、胆囊炎、胆结石、急性黄疸性肝炎、肝硬化等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>规律饮食、饮食清淡,多吃新鲜水果和蔬菜及菌菇类,避免高脂肪、高糖类的摄入,少喝酒、适量运动,不宜剧烈运动。</span><br />', '<span style=\"font-size:16px;\"><strong>胆红素:</strong>血红蛋白的代谢产物,肝胆系统疾病的检测指标。胆红素和血清中的白蛋白结合后转运到肝脏,在肝脏内与葡萄糖醛酸结合后生成葡萄糖醛酸胆红素为直接胆红素,未在肝内经过葡萄糖醛酸化的为间接胆红素,二者的和就是总胆红素,总胆红素升高就是人们常说的黄疸(分轻、中、重度)。成人总胆红素正常值在3.4-17.1μmol/L之间,17.1-34.2μmol/L可视为隐性黄疸;34.2-171μmol/L之间为轻度黄疸;171-342μmol/L为中度黄疸;大于342μmol/L则为重度黄疸。</span><br />', '<span style=\"font-size:16px;\"><strong>胆红素:</strong>血红蛋白的代谢产物,肝胆系统疾病的检测指标。胆红素和血清中的白蛋白结合后转运到肝脏,在肝脏内与葡萄糖醛酸结合后生成葡萄糖醛酸胆红素为直接胆红素,未在肝内经过葡萄糖醛酸化的为间接胆红素,二者的和就是总胆红素,总胆红素升高就是人们常说的黄疸(分轻、中、重度)。成人总胆红素正常值在3.4-17.1μmol/L之间,17.1-34.2μmol/L可视为隐性黄疸;34.2-171μmol/L之间为轻度黄疸;171-342μmol/L为中度黄疸;大于342μmol/L则为重度黄疸。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>长期厌食的人体内缺乏锌、缺铁性贫血、肝功能衰竭等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>及时补充锌和铁,维持正常的饮食,特别不要遗漏早餐。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('84', '28', '8', '结合胆红素 μmol/l', '0', '6.8', '0', '6.8', '<span style=\"font-size:16px;\"><strong>结合胆红素:</strong>即直接胆红素,反映肝胆疾病的情况。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>肝炎、胆囊炎、消化系统功能差、新生儿高胆红素血症。</span><br />', '<span style=\"font-size:16px;\"><strong>结合胆红素:</strong>即直接胆红素,反映肝胆疾病的情况。</span><br />', '<span style=\"font-size:16px;\"><strong>结合胆红素:</strong>即直接胆红素,反映肝胆疾病的情况。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>没有太大临床意义,作息不规律、熬夜、油腻饮食。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>无论升高或减低都建议您饮食宜清淡,如豆类制品、鱼类、蔬菜、水果等,含有大量的维生素A、B、C、E、有较好的抗氧化功能且易消化吸收,多食香菇、芝麻、核桃、大枣、瘦肉及动物肝脏等食物。忌饮酒,忌过多甜食。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('85', '29', '8', '非结合胆红素 μmol/l', '1.7', '10.2', '1.7', '10.2', '<span style=\"font-size:16px;\"><strong>非结合胆红素:</strong>间接胆红素,反映肝胆疾病的情况。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>溶血性贫血、新生儿黄疸、肝脏疾患、肝硬化等。</span><br />', '<span style=\"font-size:16px;\"><strong>非结合胆红素:</strong>间接胆红素,反映肝胆疾病的情况。</span><br />', '<span style=\"font-size:16px;\"><strong>非结合胆红素:</strong>间接胆红素,反映肝胆疾病的情况。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>无太大意义。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>同 结合胆红素 项。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('86', '17', '8', '胃酸浓度(PH值)(pH of gastric juice)', '1.2', '1.7', '1.2', '1.7', '<span style=\"font-size:16px;\"><strong>胃液H2浓度:</strong>是持续分泌胃酸及胃酸分泌调控的能力,且呈昼夜变化,入睡后几小时达高峰,清晨最低,杀死食物里的细菌,确保胃和肠道的安全,同时增加胃蛋白酶的活性,帮助消化,胃液对消化食物起着重要作用。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>消化功能差,消化道成低酸性环境,影响消化功能及对消化道内壁的保护,易患低酸性胃炎(萎缩性)。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>多吃山楂补脾开胃,少吃油腻的食物,多运动。</span><br />', '<span style=\"font-size:16px;\"><strong>胃液H2浓度:</strong>是持续分泌胃酸及胃酸分泌调控的能力,且呈昼夜变化,入睡后几小时达高峰,清晨最低,杀死食物里的细菌,确保胃和肠道的安全,同时增加胃蛋白酶的活性,帮助消化,胃液对消化食物起着重要作用。</span><br />', '<span style=\"font-size:16px;\"><strong>胃液H2浓度:</strong>是持续分泌胃酸及胃酸分泌调控的能力,且呈昼夜变化,入睡后几小时达高峰,清晨最低,杀死食物里的细菌,确保胃和肠道的安全,同时增加胃蛋白酶的活性,帮助消化,胃液对消化食物起着重要作用。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>胃酸分泌过多、提示胃内环境变化,刺激胃粘膜致胃炎(浅表性)、胃溃疡等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>喝酸奶或牛奶保护胃粘膜,少吃辣椒、少饮酒、饮食规律、情绪稳定、不要过度紧张焦虑。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('87', '20', '8', 'Oddi氏括约肌基础压 mm Hg', '39', '41', '39', '41', '<span style=\"font-size:16px;\"><strong>Oddi氏括约肌基础压:</strong>胆总管末端和胰管末端的环形平滑肌与胆胰壶腹周围的环形平滑肌一起合称为Oddi括约肌,具有控制胆汁和胰液排放的作用。进食时,Oddi括约肌松弛,胆汁和胰液流入十二指肠,不进食时,Oddi括约肌收缩,关闭其围绕的管道。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>餐后、消化不良、胆囊炎或胆结石等,结合胆红素和转氨酶来分析。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极查找原发病。</span><br />', '<span style=\"font-size:16px;\"><strong>Oddi氏括约肌基础压:</strong>胆总管末端和胰管末端的环形平滑肌与胆胰壶腹周围的环形平滑肌一起合称为Oddi括约肌,具有控制胆汁和胰液排放的作用。进食时,Oddi括约肌松弛,胆汁和胰液流入十二指肠,不进食时,Oddi括约肌收缩,关闭其围绕的管道。</span><br />', '<span style=\"font-size:16px;\"><strong>Oddi氏括约肌基础压:</strong>胆总管末端和胰管末端的环形平滑肌与胆胰壶腹周围的环形平滑肌一起合称为Oddi括约肌,具有控制胆汁和胰液排放的作用。进食时,Oddi括约肌松弛,胆汁和胰液流入十二指肠,不进食时,Oddi括约肌收缩,关闭其围绕的管道。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>即相对于十二指肠内的压力,其值的改变提示胆囊疾患。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>排除胆囊疾患。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('88', '34', '9', '尿素氮 mmol/l', '3.2', '7.1', '3.2', '7.1', '<span style=\"font-size:16px;\"><strong>尿素氮:</strong>指血尿素氮浓度,肾脏功能主要指标之一,通常肾脏为排泄尿素的主要器官。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>是肾排泄功能失调的一个主要特征,肾外尿素氮含量过高与液体流失和蛋白分解过多有关,当肾小球滤过功能减低时,血肌酐和尿素氮因潴留而增高。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span><br />', '<span style=\"font-size:16px;\"><strong>尿素氮:</strong>指血尿素氮浓度,肾脏功能主要指标之一,通常肾脏为排泄尿素的主要器官。</span><br />', '<span style=\"font-size:16px;\"><strong>尿素氮:</strong>指血尿素氮浓度,肾脏功能主要指标之一,通常肾脏为排泄尿素的主要器官。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>尿素氮含量过少出现在因尿素合成失调而引起的肝病、药物中毒及缺少蛋白质饮食等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('89', '31', '9', '肌酐浓度 μmol/l', '70', '106', '70', '106', '<span style=\"font-size:16px;\"><strong>肌酐浓度:</strong>是肌肉在人体内代谢的产物,分为血清肌酐和尿肌酐,此处指血清肌酐,肌酐主要由肾小球滤过排出体外,是了解肾功能的主要方法之一。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>服用药物、疲劳、多数意味肾脏受损(急、慢性肾功能不全)、各种原因所致肾功能障碍。如出现恶心、呕吐、头晕时,肾脏已经损伤严重,此时血肌酐也开始明显上升。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗肾病。</span><br />', '<span style=\"font-size:16px;\"><strong>肌酐浓度:</strong>是肌肉在人体内代谢的产物,分为血清肌酐和尿肌酐,此处指血清肌酐,肌酐主要由肾小球滤过排出体外,是了解肾功能的主要方法之一。</span><br />', '<span style=\"font-size:16px;\"><strong>肌酐浓度:</strong>是肌肉在人体内代谢的产物,分为血清肌酐和尿肌酐,此处指血清肌酐,肌酐主要由肾小球滤过排出体外,是了解肾功能的主要方法之一。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>营养不良、摄入不足、素食者、多尿等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>保证充足的营养,不要过度素食和盲目减肥。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('90', '118', '9', '肾小球率过滤 ml/min/1.73m²', '75', '115', '75', '115', '<span style=\"font-size:16px;\"><strong>肾小球率过滤:</strong>是衡量肾功能的指标,其反应出对尿液中有害物质排出体外的情况。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>痛风、过度食用高蛋白食物。</span><br />', '<span style=\"font-size:16px;\"><strong>肾小球率过滤:</strong>是衡量肾功能的指标,其反应出对尿液中有害物质排出体外的情况。</span><br />', '<span style=\"font-size:16px;\"><strong>肾小球率过滤:</strong>是衡量肾功能的指标,其反应出对尿液中有害物质排出体外的情况。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>肾功能下降。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗肾病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('91', '119', '9', '肌酐清除率[Cockroft and Gault] ml/min', '75', '115', '75', '115', '<span style=\"font-size:16px;\"><strong>肌酐清除率:</strong>可反映肾小球滤过功能和粗略估计有效肾单位的数量,故为测定肾损害的定量试验。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>高蛋白饮食、运动后、代谢快、活动量大。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>正常状况,不需要特殊处理。</span><br />', '<span style=\"font-size:16px;\"><strong>肌酐清除率:</strong>可反映肾小球滤过功能和粗略估计有效肾单位的数量,故为测定肾损害的定量试验。</span><br />', '<span style=\"font-size:16px;\"><strong>肌酐清除率:</strong>可反映肾小球滤过功能和粗略估计有效肾单位的数量,故为测定肾损害的定量试验。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>肾损害(分不同程度),需结合其他指标来分析。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗肾病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('92', '124', '9', '胱抑素C mg/l', '0.6', '0.96', '0.6', '0.96', '<span style=\"font-size:16px;\"><strong>胱抑素C:</strong>是一种反映肾小球滤过率变化的理想同源性标志物,较血清BUN、Cr有更高的敏感性和特异性,血浆胱抑素C的含量较稳定,不易受其它因素的影响,它的浓度不但不受年龄、性别、肌肉量等因素的影响,而且也不受大多数药物以及炎症的影响,胱抑素C检出糖尿病肾病的灵敏度为40%,特异性为100%。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>健康成人血清胱抑素C随着年龄的增长其平均水平呈上升趋势,此外肾脏疾病、糖尿病、高血压都可导致其升高。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span><br />', '<span style=\"font-size:16px;\"><strong>胱抑素C:</strong>是一种反映肾小球滤过率变化的理想同源性标志物,较血清BUN、Cr有更高的敏感性和特异性,血浆胱抑素C的含量较稳定,不易受其它因素的影响,它的浓度不但不受年龄、性别、肌肉量等因素的影响,而且也不受大多数药物以及炎症的影响,胱抑素C检出糖尿病肾病的灵敏度为40%,特异性为100%。</span><br />', '<span style=\"font-size:16px;\"><strong>胱抑素C:</strong>是一种反映肾小球滤过率变化的理想同源性标志物,较血清BUN、Cr有更高的敏感性和特异性,血浆胱抑素C的含量较稳定,不易受其它因素的影响,它的浓度不但不受年龄、性别、肌肉量等因素的影响,而且也不受大多数药物以及炎症的影响,胱抑素C检出糖尿病肾病的灵敏度为40%,特异性为100%。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>单纯稍低没有意义,过低考虑是否有贫血。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('93', '125', '9', '血尿素氮 mg/dl', '6', '23', '6', '23', '<span style=\"font-size:16px;\"><strong>血尿素氮:</strong>此指标分析可参考 </span><span style=\"font-size:16px;\">尿素氮 </span><span style=\"font-size:16px;\">项。</span>', '<span style=\"font-size:16px;\"><strong>血尿素氮:</strong>此指标分析可参考 </span><span style=\"font-size:16px;\">尿素氮 </span><span style=\"font-size:16px;\">项。</span>', '<span style=\"font-size:16px;\"><strong>血尿素氮:</strong>此指标分析可参考 </span><span style=\"font-size:16px;\">尿素氮 </span><span style=\"font-size:16px;\">项。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('94', '68', '9', '肾脏血流量占 %', '21.58', '25.09', '21.58', '25.09', '<p>   <span style=\"font-size:16px;\"><strong>肾脏血流量占 %:</strong></span>  </p>  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>正在服用药物、高血压、糖尿病、肾结石、代谢性疾病如肢端肥大症、甲亢,妊娠妇女、饮食中钠摄入量高、疲劳。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>要注意药物的使用说明,尽量排除药物的副作用。</span><br />', '<p>   <span style=\"font-size:16px;\"><strong>肾脏血流量占 %</strong></span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>肾脏血流量占 %:</strong></span>  </p>  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>慢性肾功能不全、高血压病早期、心功能不全时可呈一过性明显降低、肾结石。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('95', '75', '9', '肾血流量 ml/min', '1430', '1662.6', '1430', '1662.6', '<span style=\"font-size:16px;\"><strong>每分钟肾脏血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>正在服用药物、高血压、糖尿病、肾结石、代谢性疾病如肢端肥大症、甲亢,妊娠妇女、饮食中钠摄入量高、疲劳。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>要注意药物的使用说明,尽量排除药物的副作用。</span><br />', '<span style=\"font-size:16px;\"><strong>每分钟肾脏血流量ml/min</strong></span>', '<span style=\"font-size:16px;\"><strong>每分钟肾脏血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>慢性肾功能不全、高血压病早期、心功能不全时可呈一过性明显降低、肾结石。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('96', '47', '10', '睾酮', '6.93', '17.34', '2.77', '10.4', '&nbsp;<span style=\"font-size:16px;\"><strong>睾丸酮:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>显著时因服同类药物或生殖系统疾患,男性尿睾丸酮在24小时内会发生节律性变化,早上高、晚上低。女性升高显著时会有多毛症、男性化。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>女性注意排除肾上腺肿瘤。</span><br />', '<span style=\"font-size:16px;\"><strong>睾丸酮</strong></span>', '<span style=\"font-size:16px;\"><strong>睾丸酮:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>睡眠不足,生殖系统功能下降。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>维持充足的睡眠和规律的性生活。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('97', '48', '10', '雌激素', '17.95', '64.62', '78.98', '376.95', '<span style=\"font-size:16px;\"><strong>雌激素:</strong>女性青春期后分泌,35岁以后分泌减少,会引起身体的一系列变化。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>显著时因服同类药物或生殖系统疾患(肿瘤)、孕期等。男性升高显著时易女性化。女性易患乳腺增生、肿瘤。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>注意排除女性和男性的肿瘤。</span><br />', '<span style=\"font-size:16px;\"><strong>雌激素:</strong>女性青春期后分泌,35岁以后分泌减少,会引起身体的一系列变化。</span><br />', '<span style=\"font-size:16px;\"><strong>雌激素:</strong>女性青春期后分泌,35岁以后分泌减少,会引起身体的一系列变化。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>男性易患前列腺疾患、女性绝经期、月经不调、不孕等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>男性要积极治疗前列腺疾患。女性可以适量补充大豆异黄酮等。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('98', '70', '10', '其它器官血流量占 %', '5.76', '6.7', '5.76', '6.7', '<p>   <span style=\"font-size:16px;\"><strong>其它器官血流量占 %:</strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>疲劳、妇科炎症、女性乳腺增生、男性前列腺炎、增生等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>其它器官血流量占 %</strong></span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>其它器官血流量占 %:</strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>女性子宫肌瘤、绝经后及妇科手术后,男、女性生殖系统功能下降等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('99', '77', '10', '其它器官血流量 ml/min', '375', '436.19', '375', '436.19', '<span style=\"font-size:16px;\"><strong>其它器官血流量ml/min:</strong>即生殖系统的血流量,女性指妇科(乳腺、卵巢、子宫等),男性指前列腺、睾丸等。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>疲劳、妇科炎症、女性乳腺增生、男性前列腺炎、增生等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span><br />', '<span style=\"font-size:16px;\"><strong>其它器官血流量ml/min:</strong>即生殖系统的血流量,女性指妇科(乳腺、卵巢、子宫等),男性指前列腺、睾丸等。</span><br />', '<span style=\"font-size:16px;\"><strong>其它器官血流量ml/min:</strong>即生殖系统的血流量,女性指妇科(乳腺、卵巢、子宫等),男性指前列腺、睾丸等。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>女性子宫肌瘤、绝经后及妇科手术后,男、女性生殖系统功能下降等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('100', '83', '11', '每克甲状腺组织血流量 ml/g', '3.7', '4.3', '3.7', '4.3', '<span style=\"font-size:16px;\"><strong>每克甲状腺组织血流量:</strong>调节基础代谢,一部分能够自由的进行新陈代谢,另一部分用于和胶体系统中的有机分子物质相结合。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>新陈代谢快、甲亢。</span><br />', '<span style=\"font-size:16px;\"><strong>每克甲状腺组织血流量:</strong>调节基础代谢,一部分能够自由的进行新陈代谢,另一部分用于和胶体系统中的有机分子物质相结合。</span><br />', '<span style=\"font-size:16px;\"><strong>每克甲状腺组织血流量:</strong>调节基础代谢,一部分能够自由的进行新陈代谢,另一部分用于和胶体系统中的有机分子物质相结合。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>新陈代谢慢、甲减。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('101', '54', '11', '酪氨酸酶 mg*%[Zbarskiy B. I., 1972]', '1.4', '1.8', '1.4', '1.8', '<span style=\"font-size:16px;\"><strong>酪氨酸酶:</strong>是控制黑素细胞活性的关键,它决定了黑素合成的速率,同时与遗传因素及工作压力大有关。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>酪氨酸酶活性增强或紊乱就会发生色素性疾病,易形成色素沉着。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病,多吃含维生素C高的食物。</span><br />', '<span style=\"font-size:16px;\"><strong>酪氨酸酶:</strong>是控制黑素细胞活性的关键,它决定了黑素合成的速率,同时与遗传因素及工作压力大有关。</span><br />', '<span style=\"font-size:16px;\"><strong>酪氨酸酶:</strong>是控制黑素细胞活性的关键,它决定了黑素合成的速率,同时与遗传因素及工作压力大有关。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>酪氨酸酶活性被抑制,黑素细胞产生黑素的能力就相应降低,不易长黑斑、易患白癜风、易患皮肤癌等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>避免多吃含维生素C高的蔬菜水果。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('102', '49', '11', 'T4 nmol/l', '59', '135', '59', '135', '<span style=\"font-size:16px;\"><strong>甲状腺素T4:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>代谢增快、甲状腺功能亢进(甲亢)。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗甲亢。</span><br />', '<span style=\"font-size:16px;\"><strong>甲状腺素T4</strong></span>', '<span style=\"font-size:16px;\"><strong>甲状腺素T4:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>代谢减慢、甲减、甲状腺全切除术及地方性甲状腺肿大等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>适当补充甲状腺素。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('103', '19', '12', 'SH', '6.2', '7.4', '6.2', '7.4', '<span style=\"font-size:16px;\"><strong>SH:</strong>调控胰岛素分泌能力</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>内分泌紊乱及是否服用药物。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极查找病因。</span><br />', '<span style=\"font-size:16px;\"><strong>SH:</strong>调控胰岛素分泌能力</span><br />', '<span style=\"font-size:16px;\"><strong>SH:</strong>调控胰岛素分泌能力</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>对胰岛调控能力下降、糖尿病患者、家族糖尿病遗传基因、碳水化合物摄入过少等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极查找病因,适量增加碳水化合物。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('104', '42', '12', '葡萄糖浓度 mmol/l', '3.9', '6.2', '3.9', '6.2', '<span style=\"font-size:16px;\"><strong>葡萄糖浓度(血糖):</strong>血液中的糖称为血糖,体内各组织细胞活动所需的能量来源,须保持一定的水平才能维持体内各器官和组织的需要,隔夜空腹(指8~10小时内未进任何食物),早餐前采血,所检定的血糖值(空腹血糖)。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>生理性高血糖:见于饭后1~2小时,摄入高糖食物,也可由运动、情绪紧张等因素引起。病理性增高:既1型或2型糖尿病,常见有空腹血糖高及餐后两小时血糖高、先天性高血糖、各种慢性胰腺炎、肾上腺机能亢进、甲亢等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>少食高糖类食物、适量增加运动、增加消耗、定期监测。</span><br />', '<span style=\"font-size:16px;\"><strong>葡萄糖浓度(血糖):</strong>血液中的糖称为血糖,体内各组织细胞活动所需的能量来源,须保持一定的水平才能维持体内各器官和组织的需要,隔夜空腹(指8~10小时内未进任何食物),早餐前采血,所检定的血糖值(空腹血糖)。</span><br />', '<span style=\"font-size:16px;\"><strong>葡萄糖浓度(血糖):</strong>血液中的糖称为血糖,体内各组织细胞活动所需的能量来源,须保持一定的水平才能维持体内各器官和组织的需要,隔夜空腹(指8~10小时内未进任何食物),早餐前采血,所检定的血糖值(空腹血糖)。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>长时间饥饿、节食、糖代谢异常,低血糖比高血糖更需引起重视。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>吃饱吃足,多补充碳水化合物,查找病因。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('105', '43', '12', '糖原 mg%', '11.7', '20.6', '11.7', '20.6', '<span style=\"font-size:16px;\"><strong>糖原:</strong>肝脏与肌肉为糖原的主要储存处,肌糖原供肌肉运动,肝糖原为血糖主要来源,对脑细胞及红细胞的能源供应尤为重要。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>表现为糖原蓄积症。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗糖原蓄积症,控制碳水化合物及含糖食品。</span><br />', '<span style=\"font-size:16px;\"><strong>糖原:</strong>肝脏与肌肉为糖原的主要储存处,肌糖原供肌肉运动,肝糖原为血糖主要来源,对脑细胞及红细胞的能源供应尤为重要。</span><br />', '<span style=\"font-size:16px;\"><strong>糖原:</strong>肝脏与肌肉为糖原的主要储存处,肌糖原供肌肉运动,肝糖原为血糖主要来源,对脑细胞及红细胞的能源供应尤为重要。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>影响肌肉运动、易疲劳、肝功能欠佳。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>吃饱吃足,多补充碳水化合物及含糖食物。</span><br />  <span style=\"font-size:16px;\">&nbsp;</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('106', '50', '12', '淀粉酶 g/l*h', '12', '32', '12', '32', '<span style=\"font-size:16px;\"><strong>淀粉酶:</strong>淀粉酶是水解淀粉和糖原的酶类总称,跟胰腺关系比较密切。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>口服避孕药、利尿剂、止痛药、胰腺损伤、胰腺疾患、消化道炎症、急性腹膜炎、阑尾炎等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极查找病因,戒酒。</span><br />', '<span style=\"font-size:16px;\"><strong>淀粉酶:</strong>淀粉酶是水解淀粉和糖原的酶类总称,跟胰腺关系比较密切。</span><br />', '<span style=\"font-size:16px;\"><strong>淀粉酶:</strong>淀粉酶是水解淀粉和糖原的酶类总称,跟胰腺关系比较密切。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>消化差、急性或慢性胆囊炎、肝炎、肝硬化、肝功能衰竭等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病,改变暴饮暴食的生活习惯。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('107', '35', '13', '总胆固醇 mmol/l', '2.8', '5.17', '2.8', '5.17', '<span style=\"font-size:16px;\"><strong>总胆固醇:</strong>指血液中所有脂蛋白所含胆固醇之总和,人群总胆固醇水平主要取决于遗传因素和生活方式。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>高脂血症、动脉粥样硬化、糖尿病、肾病综合征。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>每天胆固醇的摄入量应低于300毫克,注意少食或不食动物内脏,多食蔬菜水果,多吃鱼及富含纤维的食物(如芹菜、玉米、燕麦等),食植物油不食动物油,另外茶叶中的茶色素可降低胆固醇,防止动脉粥样硬化和血栓形成,食植物油不食动物油。</span><br />', '<span style=\"font-size:16px;\"><strong>总胆固醇:</strong>指血液中所有脂蛋白所含胆固醇之总和,人群总胆固醇水平主要取决于遗传因素和生活方式。</span><br />', '<span style=\"font-size:16px;\"><strong>总胆固醇:</strong>指血液中所有脂蛋白所含胆固醇之总和,人群总胆固醇水平主要取决于遗传因素和生活方式。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>饮食过于清淡、肠道吸收不良、贫血、甲亢、胰腺炎、恶病质。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>在积极治疗原发病的基础上,补充营养。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('108', '36', '13', 'β-脂蛋白 mmol/l', '17', '55', '17', '55', '<span style=\"font-size:16px;\"><strong>β-脂蛋白:</strong>负责胆固醇的运输,主要存在于低密度脂蛋白中无论男性或女性,血浆中β-脂蛋白的水平均随着年龄的增长而升高,至70岁以后,β-脂蛋白不在上升或开始降低。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>Ⅰ型高脂血症、脑血管病、冠心病、肾病、糖尿病等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span><br />', '<span style=\"font-size:16px;\"><strong>β-脂蛋白:</strong>负责胆固醇的运输,主要存在于低密度脂蛋白中无论男性或女性,血浆中β-脂蛋白的水平均随着年龄的增长而升高,至70岁以后,β-脂蛋白不在上升或开始降低。</span><br />', '<span style=\"font-size:16px;\"><strong>β-脂蛋白:</strong>负责胆固醇的运输,主要存在于低密度脂蛋白中无论男性或女性,血浆中β-脂蛋白的水平均随着年龄的增长而升高,至70岁以后,β-脂蛋白不在上升或开始降低。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>运动过后或女性减肥经常吃素食,体内的β-载脂蛋白会降低约2%,病理性的减低常见于心肌局部缺血和肝功能不全及雌激素疗法等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>保证充足的营养,不要过度素食和盲目减肥。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('109', '37', '13', 'β-脂蛋白 g/l', '3', '6', '3', '6', '<span style=\"font-size:16px;\"><strong>β-脂蛋白:</strong>负责胆固醇的运输,主要存在于低密度脂蛋白中无论男性或女性,血浆中β-脂蛋白的水平均随着年龄的增长而升高,至70岁以后,β-脂蛋白不在上升或开始降低。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>Ⅰ型高脂血症、脑血管病、冠心病、肾病、糖尿病等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span><br />', '<span style=\"font-size:16px;\"><strong>β-脂蛋白:</strong>负责胆固醇的运输,主要存在于低密度脂蛋白中无论男性或女性,血浆中β-脂蛋白的水平均随着年龄的增长而升高,至70岁以后,β-脂蛋白不在上升或开始降低。</span><br />', '<span style=\"font-size:16px;\"><strong>β-脂蛋白:</strong>负责胆固醇的运输,主要存在于低密度脂蛋白中无论男性或女性,血浆中β-脂蛋白的水平均随着年龄的增长而升高,至70岁以后,β-脂蛋白不在上升或开始降低。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>运动过后或女性减肥经常吃素食,体内的β-载脂蛋白会降低约2%,病理性的减低常见于心肌局部缺血和肝功能不全及雌激素疗法等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>保证充足的营养,不要过度素食和盲目减肥。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('110', '38', '13', '低密度脂蛋白 mmol/l', '2.07', '3.62', '2.07', '3.62', '<span style=\"font-size:16px;\"><strong>低密度脂蛋白:</strong>被认为是致动脉粥样硬化的因子,富含胆固醇的脂蛋白,主要作用是将胆固醇运送到外周血液,是动脉粥样硬化的危险因素之一。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>运动少、肥胖、精神压力过大、饮酒和吸烟,家族性Ⅱ型高脂蛋白血症、高胆固醇及高脂肪饮食、甲状腺功能减低、肾病、糖尿病、肝病等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>有氧运动、戒烟戒酒、低脂饮食。</span><br />', '<span style=\"font-size:16px;\"><strong>低密度脂蛋白:</strong>被认为是致动脉粥样硬化的因子,富含胆固醇的脂蛋白,主要作用是将胆固醇运送到外周血液,是动脉粥样硬化的危险因素之一。</span><br />', '<span style=\"font-size:16px;\"><strong>低密度脂蛋白:</strong>被认为是致动脉粥样硬化的因子,富含胆固醇的脂蛋白,主要作用是将胆固醇运送到外周血液,是动脉粥样硬化的危险因素之一。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>运动量过大,摄入脂肪过低,饮食不合理,肝功能异常、遗传性无β-脂蛋白血症。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>运动后及时补充营养,不要完全摒弃脂肪,均衡饮食。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('111', '39', '13', '极低密度脂蛋白 mmol/l', '0.2', '0.52', '0.2', '0.52', '<span style=\"font-size:16px;\"><strong>极低密度脂蛋白:</strong>被认为是致动脉粥样硬化的因子,富含胆固醇的脂蛋白,主要作用是将胆固醇运送到外周血液,是动脉粥样硬化的危险因素之一。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>其在体内多转化成低密度脂蛋白,提示高脂血症、脂肪肝,常伴有高密度脂蛋白降低和糖耐量降低,血尿酸过多等,还可见于酗酒、胰腺炎、肥胖、糖尿病、妊娠等。进食过量的糖可诱发低密度脂蛋白的合成增加。</span><br />  <span style=\"font-size:16px;\">极低密度脂蛋白需与甘油三酯,胆固醇及其它脂蛋白结合分析。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>有氧运动、戒烟戒酒、低脂饮食。</span><br />', '<span style=\"font-size:16px;\"><strong>极低密度脂蛋白:</strong>被认为是致动脉粥样硬化的因子,富含胆固醇的脂蛋白,主要作用是将胆固醇运送到外周血液,是动脉粥样硬化的危险因素之一。</span><br />', '<span style=\"font-size:16px;\"><strong>极低密度脂蛋白:</strong>被认为是致动脉粥样硬化的因子,富含胆固醇的脂蛋白,主要作用是将胆固醇运送到外周血液,是动脉粥样硬化的危险因素之一。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>运动量过大,摄入脂肪过低,饮食不合理,肝功能异常等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>运动后及时补充营养,不要完全摒弃脂肪,均衡营养,加强有氧运动。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('112', '40', '13', '高密度脂蛋白 mmol/l', '0.93', '1.81', '0.93', '1.81', '<span style=\"font-size:16px;\"><strong>高密度脂蛋白:</strong>存在于肝脏,血清中颗粒密度最大的一组脂蛋白,主要作用是将肝脏以外组织中的胆固醇转运到肝脏进行分解代谢,血脂代谢的基本物质,具有清除血管内多余血脂、清除血垢、清洁血管、抗动脉粥样硬化的作用,是冠心病的保护因子,俗称“血管清道夫”。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>稍高一点是好的,过高可能是遗传性高胆固醇血症或使用雌激素、胰岛素、维生素E、肝素等药物,慢性肝病和慢性中毒性疾病及慢性酒精中毒等疾病也可导致高密度脂蛋白的偏高。</span><br />  <span style=\"font-size:16px;\"><strong>综合建议:</strong>提高高密度脂蛋白要多吃香菇、豆类、芝麻、蘑菇类、海藻类食物,富含脂肪酸的食物,富含EPA,DHA的油脂的食物,可以吃一些玉米油、红花油、亚麻子油、葵花子油等,避免饱和脂肪酸,如动物油,平日里要戒烟戒酒,适当运动提高自身免疫力。</span>', '<span style=\"font-size:16px;\"><strong>高密度脂蛋白:</strong>存在于肝脏,血清中颗粒密度最大的一组脂蛋白,主要作用是将肝脏以外组织中的胆固醇转运到肝脏进行分解代谢,血脂代谢的基本物质,具有清除血管内多余血脂、清除血垢、清洁血管、抗动脉粥样硬化的作用,是冠心病的保护因子,俗称“血管清道夫”。</span><br />', '<span style=\"font-size:16px;\"><strong>高密度脂蛋白:</strong>存在于肝脏,血清中颗粒密度最大的一组脂蛋白,主要作用是将肝脏以外组织中的胆固醇转运到肝脏进行分解代谢,血脂代谢的基本物质,具有清除血管内多余血脂、清除血垢、清洁血管、抗动脉粥样硬化的作用,是冠心病的保护因子,俗称“血管清道夫”。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>通常年龄越大、运动少、常吸烟饮酒者,肝病、冠心病、糖尿病、肾病综合症、高脂血正等。</span><br />  <span style=\"font-size:16px;\"><strong>综合建议:</strong>提高高密度脂蛋白要多吃香菇、豆类、芝麻、蘑菇类、海藻类食物,富含脂肪酸的食物,富含EPA,DHA的油脂的食物,可以吃一些玉米油、红花油、亚麻子油、葵花子油等,避免饱和脂肪酸,如动物油,平日里要戒烟戒酒,适当运动提高自身免疫力。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('113', '41', '13', '甘油三酯浓度 mmol/l', '0.55', '1.71', '0.55', '1.71', '<span style=\"font-size:16px;\"><strong>甘油三酯浓度:</strong>是人体的中性脂肪,大部分是从碳水化合物中获得的,少部分是人体自身合成的。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>遗传因素、高脂肪的饮食习惯、吸烟、饮酒、动脉粥样硬化、高血压、高脂血症、糖尿病肾病综合症、急、慢性胰腺炎、甲状腺功能减退,食入过多碳水化合物。</span><br />  <span style=\"font-size:16px;\"><strong>综合建议:</strong>用生山楂泡水喝有改善作用,增加运动可使甘油三酯水平明显下降,富含维生素C与E的食物(胡萝卜、洋葱、黑木耳等),调整血脂代谢,控制碳水化合物的摄入。</span><br />  <span style=\"font-size:16px;\">&nbsp;</span>', '<span style=\"font-size:16px;\"><strong>甘油三酯浓度:</strong>是人体的中性脂肪,大部分是从碳水化合物中获得的,少部分是人体自身合成的。</span><br />', '<span style=\"font-size:16px;\"><strong>甘油三酯浓度:</strong>是人体的中性脂肪,大部分是从碳水化合物中获得的,少部分是人体自身合成的。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>甲亢、先天性a-b脂蛋白症、低脂饮食、减肥节食、营养不良等,结合饮食习惯和身体其他指标来分析。</span><br />  <span style=\"font-size:16px;\"><strong>综合建议:</strong>用生山楂泡水喝有改善作用,增加运动可使甘油三酯水平明显下降,富含维生素C与E的食物(胡萝卜、洋葱、黑木耳等),调整血脂代谢,控制碳水化合物的摄入。</span><br />  <span style=\"font-size:16px;\">&nbsp;</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('114', '58', '13', '血浆浓度 g/l', '1048', '1055', '1048', '1055', '<span style=\"font-size:16px;\"><strong>血浆浓度:</strong>血浆中主要有蛋白质、水、无机盐等,血浆浓度就是指这些溶</span><br />  <span style=\"font-size:16px;\">质的浓度。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>吃盐多或喝水少、出汗多。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>限盐饮食,及时补充水分。</span><br />', '<span style=\"font-size:16px;\"><strong>血浆浓度:</strong>血浆中主要有蛋白质、水、无机盐等,血浆浓度就是指这些溶</span><br />  <span style=\"font-size:16px;\">质的浓度。</span><br />', '<span style=\"font-size:16px;\"><strong>血浆浓度:</strong>血浆中主要有蛋白质、水、无机盐等,血浆浓度就是指这些溶</span><br />  <span style=\"font-size:16px;\">质的浓度。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">降低:</span></strong>喝水多、或组织水肿,可结合血压、血糖、肾功能等其他指标来分析。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病,可食用红小豆,薏米仁粥。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('115', '32', '14', 'β-多巴胺羟化酶(Dopamine β-hydroxylase) nm/ml/min', '28', '32.5', '28', '32.5', '<span style=\"font-size:16px;\"><strong>β-多巴胺羟化酶:</strong>与慢性精神分裂症患者迟发性运动障碍关联。心理亚健康的重要指标,俗称快乐指数,在大脑中,去甲肾上腺素是由多巴胺经由β-多巴胺羟化酶转化而来,可影响一个人的情绪。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>使用激素、兴奋剂或是精神紧张。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>保持平和心态,不要滥用药品。</span><br />', '<span style=\"font-size:16px;\"><strong>β-多巴胺羟化酶:</strong>与慢性精神分裂症患者迟发性运动障碍关联。心理亚健康的重要指标,俗称快乐指数,在大脑中,去甲肾上腺素是由多巴胺经由β-多巴胺羟化酶转化而来,可影响一个人的情绪。</span><br />', '<span style=\"font-size:16px;\"><strong>β-多巴胺羟化酶:</strong>与慢性精神分裂症患者迟发性运动障碍关联。心理亚健康的重要指标,俗称快乐指数,在大脑中,去甲肾上腺素是由多巴胺经由β-多巴胺羟化酶转化而来,可影响一个人的情绪。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>会出现各种类型的情绪低落和精神衰弱,多因精神紧张、心里承载事物过多、压力过大、精神焦虑、过度疲劳及身体代谢低所致,需排除酒精因素。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>经常进行心理疏导(由医生或自我疏导),劳逸结合。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('116', '116', '15', '第三脑室宽度 mm', '4', '6', '4', '6', '<span style=\"font-size:16px;\"><strong>第三脑室宽度:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>与颅压直接相关,颅压增加会导致第三脑室宽度增加,精神紧张、焦虑、睡眠不佳、用脑过多及长期大量的烟酒刺激等。脑肿瘤、脑水肿、脑出血、颅内伤均会变化。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病,保持充足睡眠,戒除烟酒。</span><br />', '<span style=\"font-size:16px;\"><strong>第三脑室宽度</strong></span>', '<span style=\"font-size:16px;\"><strong>第三脑室宽度:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>严重脱水,很少见。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>及时经由静脉补充液体。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('117', '66', '15', '脑血流量占 %', '12.82', '14.9', '12.82', '14.9', '<p>   <span style=\"font-size:16px;\"><strong>脑血流量占 %:</strong></span>  </p>  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>头晕、头疼、长期睡眠不好(打鼾、多梦)、思虑多,也见于脑血管痉挛以及血管硬化狭窄,高原反应等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>检查经颅多普勒及脑血流。</span><br />', '<p>   <span style=\"font-size:16px;\"><strong>脑血流量占 %</strong></span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>脑血流量占 %:</strong></span>  </p>  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>颈椎病引起、脑动脉硬化等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('118', '73', '15', '脑血流量 ml/min', '750', '871.68', '750', '871.68', '<span style=\"font-size:16px;\"><strong>每分钟脑血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>头晕、头疼、长期睡眠不好(打鼾、多梦)、思虑多,也见于脑血管痉挛以及血管硬化狭窄,高原反应等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>检查经颅多普勒及脑血流。</span><br />', '<span style=\"font-size:16px;\"><strong>每分钟脑血流量ml/min</strong></span>', '<span style=\"font-size:16px;\"><strong>每分钟脑血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>颈椎病引起、脑动脉硬化等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('119', '82', '15', '每百克脑组织血流量 ml/100g', '50', '55', '50', '55', '<span style=\"font-size:16px;\"><strong>每百克脑组织血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>脑耗氧量增加,思虑多。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>注意保证睡眠,劳逸结合。成倍增长需进一步检查排除脑部疾患。</span><br />', '<span style=\"font-size:16px;\"><strong>每百克脑组织血流量ml/min</strong></span>', '<span style=\"font-size:16px;\"><strong>每百克脑组织血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>脑动脉硬化、供血不足、脑血栓、脑细胞坏死等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('120', '84', '15', '每克脑组织血流量 ml/g', '2.9', '3.2', '2.9', '3.2', '<span style=\"font-size:16px;\"><strong>每克脑组织血流量:</strong>其变化对人体新陈代谢有影响。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>新陈代谢快。</span><br />', '<span style=\"font-size:16px;\"><strong>每克脑组织血流量:</strong>其变化对人体新陈代谢有影响。</span><br />', '<span style=\"font-size:16px;\"><strong>每克脑组织血流量:</strong>其变化对人体新陈代谢有影响。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>新陈代谢慢。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('121', '98', '15', '每百克脑组织氧利用量 ml', '2.8', '3.4', '2.8', '3.4', '<span style=\"font-size:16px;\"><strong>每100克脑组织氧利用量:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>组织代谢加快、炎症等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>积极治疗脑部炎症。</span><br />', '<span style=\"font-size:16px;\"><strong>每100克脑组织氧利用量</strong></span>', '<span style=\"font-size:16px;\"><strong>每100克脑组织氧利用量:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>脑供血欠佳(疲劳状态)、老年人考虑脑部动脉硬化。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>可以酌情服用改善脑动脉供血的药物和保健品,例如复方丹参、红景天等。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('122', '51', '15', '乙酰胆碱 μg/ml', '81.1', '92.1', '81.1', '92.1', '<span style=\"font-size:16px;\"><strong>乙酰胆碱:</strong>中枢神经递质之一,维持意识的清醒,在学习记忆中起重要作用。人的脑组织有大量乙酰胆碱,但乙酰胆碱的含量会随着年龄的增加下降,正常老人比青年时下降30%,而老年痴呆患者下降更为严重,可达70%~80%。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>此值增高者少见。</span><br />', '<span style=\"font-size:16px;\"><strong>乙酰胆碱:</strong>中枢神经递质之一,维持意识的清醒,在学习记忆中起重要作用。人的脑组织有大量乙酰胆碱,但乙酰胆碱的含量会随着年龄的增加下降,正常老人比青年时下降30%,而老年痴呆患者下降更为严重,可达70%~80%。</span><br />', '<span style=\"font-size:16px;\"><strong>乙酰胆碱:</strong>中枢神经递质之一,维持意识的清醒,在学习记忆中起重要作用。人的脑组织有大量乙酰胆碱,但乙酰胆碱的含量会随着年龄的增加下降,正常老人比青年时下降30%,而老年痴呆患者下降更为严重,可达70%~80%。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>思维能力、协调能力、反应能力及记忆力均有下降,长期睡眠质量差可导致。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>经常服用蜂王浆可以提高脑内乙酰胆碱的含量,平时可多服用一些核桃等坚果及水果蔬菜(花椰菜、西红柿、柑橘、苹果和萝卜)也可增强脑力,鱼、肉、蛋及大豆等富含蛋白质高的食物时情况而定,从而促进激活脑神经传导功能,提高信息传递速度,增强大脑记忆能力,全面改善脑功能,并延缓衰老。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('123', '52', '15', '红细胞的乙酰胆碱酯酶活性 μmol/l', '220', '278', '220', '278', '<span style=\"font-size:16px;\"><strong>红细胞的乙酰胆碱酯酶活性:</strong>乙酰胆碱酯酶有调节和促进神经组织的发育和再生的神经营养因子样作用。参与细胞的发育和成熟,能促进神经发育和神经再生。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>此值增高者少见。</span><br />', '<span style=\"font-size:16px;\"><strong>红细胞的乙酰胆碱酯酶活性:</strong>乙酰胆碱酯酶有调节和促进神经组织的发育和再生的神经营养因子样作用。参与细胞的发育和成熟,能促进神经发育和神经再生。</span><br />', '<span style=\"font-size:16px;\"><strong>红细胞的乙酰胆碱酯酶活性:</strong>乙酰胆碱酯酶有调节和促进神经组织的发育和再生的神经营养因子样作用。参与细胞的发育和成熟,能促进神经发育和神经再生。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>其作用不能正常发挥,影响神经组织的发育及修复。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>可参考 乙酰胆碱 项。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('124', '85', '15', '脑脊液压力 mm H₂O', '70', '180', '70', '180', '<span style=\"font-size:16px;\"><strong>脑脊液压力:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>咳嗽喷嚏时可见,用脑过度、睡眠差、高血压、脑动脉硬化、某些眼病等,颅内各种炎症、脑肿瘤、脑损伤、脑出血及癫痫大发作等。</span><br />  <span style=\"font-size:16px;\"><strong>综合建议:</strong>积极治疗原发病。</span>', '<span style=\"font-size:16px;\"><strong>脑脊液压力</strong></span>', '<span style=\"font-size:16px;\"><strong>脑脊液压力:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">降低:</span></strong>慢性消耗性疾病、严重脱水、颅低压综合征等,此值减低者少见。</span><br />  <span style=\"font-size:16px;\"><strong>综合建议:</strong>积极治疗原发病。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('125', '65', '16', '肌肉血流量占 %', '14.56', '16.93', '14.56', '16.93', '<p>   <span style=\"font-size:16px;\"><strong>肌肉血流量</strong></span><span style=\"font-size:16px;\"><strong>占 %:</strong></span>  </p>  <p>   <span style=\"font-size:16px;\"></span><span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>运动后、坐姿不良、肌肉酸痛酸胀及颈、腰椎疾病、软组织、肌肉陈旧伤痛。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>改变坐姿,运动后洗温水澡以放松肌肉的紧张度。</span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>肌肉血流量</strong></span><span style=\"font-size:16px;\"><strong>占 %</strong></span>  </p>', '<p>   <span style=\"font-size:16px;\"><strong>肌肉血流量</strong></span><span style=\"font-size:16px;\"><strong>占 %:</strong></span>  </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>肌肉活动减少,造成血液流量减少,进一步引发肌肉供氧量不足、松弛甚至萎缩,陈旧性肌肉或关节损伤及脊椎疾病等。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>增加肌肉关节的力量性练习。</span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('126', '72', '16', '肌肉血流量 ml/min', '930', '1081.4', '930', '1081.4', '<p>   <span style=\"font-size:16px;\"><strong>每分钟肌肉血流量ml/min:</strong></span><br />  <span style=\"font-size:16px;\">&nbsp;</span><b><span style=\"color:red;font-family:宋体;font-size:16px;\">升高</span></b><span style=\"font-family:宋体;font-size:16px;\">:运动后、坐姿不良、肌肉酸痛酸胀及颈、腰椎疾病。</span>  </p>  <p>   <span style=\"font-family:宋体;font-size:16px;\"></span><span style=\"font-size:9pt;\"></span><b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\">建议</span></b><span style=\"font-family:宋体;font-size:16px;\">:改变坐姿,运动后洗温水澡以放松肌肉的紧张度。</span><br />  <br />  </p>', '<span style=\"font-size:16px;\"><strong>每分钟肌肉血流量ml/min</strong></span>', '<span style=\"font-size:16px;\"><strong>每分钟肌肉血流量ml/min:</strong></span><br />  &nbsp;<b><span style=\"color:blue;font-family:宋体;font-size:16px;\">减低</span></b><span style=\"font-family:宋体;font-size:16px;\">:肌肉、神经、肌腱、韧带有受损现象,引发肌肉供氧量不足、松弛甚至萎缩,陈旧性肌肉或关节损伤及脊椎疾病等。</span>  <p>   <span style=\"font-family:宋体;font-size:16px;\"></span><span style=\"font-size:9pt;\"></span><b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\">建议</span></b><span style=\"font-family:宋体;font-size:16px;\">:增加肌肉关节的力量性练习。</span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('127', '33', '16', '乳酸浓度 mmol/l', '0.44', '1.38', '0.44', '1.38', '<p>   <span><span><span style=\"font-family:宋体;font-size:16px;\"><strong>乳酸浓度(免疫活性指标)</strong></span><span style=\"font-family:宋体;font-size:16px;\">:乳酸是疲劳物质之一,是身体在保持体温和机体运动而产生热量过程中产生的废弃物。乳酸过多将使呈弱碱性的体液呈酸性,影响细胞顺利吸收营养和氧气,削弱细胞的正常功能,堆积乳酸的肌肉会发生收缩,从而挤压血管,使得血流不畅,结果造成肌肉酸痛、发冷、头痛、头重感等。乳酸堆积在初期会引起酸痛和倦怠及乏困感,若长期置之不理,会造成体质酸化,可引起严重的疾病。</span></span></span>  </p>  <p>   <span><span><span style=\"font-family:宋体;font-size:16px;\"></span><span></span><span style=\"color:red;font-family:宋体;font-size:16px;\"><strong>升高</strong></span><span style=\"font-family:宋体;font-size:16px;\">:运动过于剧烈或长期不运动,长时间保持同一姿势,休息不好(熬夜),或身体分解乳酸所必需的维生素和矿物不足,易造成乳酸堆积。</span></span></span>  </p>  <p>   <span><span><span style=\"font-family:宋体;font-size:16px;\"></span><span></span><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span><span style=\"font-family:宋体;font-size:16px;\">:增加适量运动,舒展放松肌肉,促进血液循环,选择均衡清淡、富含维生素</span><span style=\"font-size:16px;\">B</span><span style=\"font-family:宋体;font-size:16px;\">族的食物,配合</span><span></span><span style=\"font-family:宋体;font-size:16px;\">高质量睡眠可得到较好的效果,绿茶和葡萄酒缓解乳酸浓度过高的效果不错,多吃蔬菜水果。</span></span></span>  </p>', '<span><span style=\"font-family:宋体;font-size:16px;\"><strong>乳酸浓度(免疫活性指标)</strong></span><span style=\"font-family:宋体;font-size:16px;\">:乳酸是疲劳物质之一,是身体在保持体温和机体运动而产生热量过程中产生的废弃物。乳酸过多将使呈弱碱性的体液呈酸性,影响细胞顺利吸收营养和氧气,削弱细胞的正常功能,堆积乳酸的肌肉会发生收缩,从而挤压血管,使得血流不畅,结果造成肌肉酸痛、发冷、头痛、头重感等。乳酸堆积在初期会引起酸痛和倦怠及乏困感,若长期置之不理,会造成体质酸化,可引起严重的疾病。</span></span>  <p style=\"text-indent:18.05pt;\">   <br />  &nbsp;  </p>', '<p>   <span><span><span style=\"font-family:宋体;font-size:16px;\"><strong>乳酸浓度(免疫活性指标)</strong></span><span style=\"font-family:宋体;font-size:16px;\"><strong>:</strong>乳酸是疲劳物质之一,是身体在保持体温和机体运动而产生热量过程中产生的废弃物。乳酸过多将使呈弱碱性的体液呈酸性,影响细胞顺利吸收营养和氧气,削弱细胞的正常功能,堆积乳酸的肌肉会发生收缩,从而挤压血管,使得血流不畅,结果造成肌肉酸痛、发冷、头痛、头重感等。乳酸堆积在初期会引起酸痛和倦怠及乏困感,若长期置之不理,会造成体质酸化,可引起严重的疾病。</span></span></span>  </p>  <p>   <span><span><span style=\"font-family:宋体;\"></span><span style=\"color:blue;font-family:宋体;font-size:16px;\"><strong>减低</strong></span><span style=\"font-family:宋体;font-size:16px;\"><strong>:</strong>代谢慢、肝脏功能差等。</span></span></span>  </p>  <p>   <span><span><span style=\"font-family:宋体;\"></span><span></span><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span><span style=\"font-family:宋体;font-size:16px;\"><strong>:</strong>积极参加体育运动。</span></span></span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('128', '95', '16', '单次负荷时间 min', '3', '10', '3', '10', '<span style=\"font-size:16px;\">  <p>   <span style=\"font-family:宋体;\"><strong>单次负荷时间</strong></span><span style=\"font-family:宋体;\">:一次运动达到一定强度所需要的时间,越快越好。</span><br />  <span style=\"color:red;font-family:宋体;\"><strong>升高</strong></span><span style=\"font-family:宋体;\">:疲劳、心脏疾患。</span>  </p>  <p>   <span style=\"font-family:宋体;\"></span><span></span><span style=\"color:#00B050;font-family:宋体;\"><strong>建议</strong></span><span style=\"font-family:宋体;\">:有针对性地查找原因,区别是生理还是病理性的。</span>  </p>  <p>   <span style=\"font-family:宋体;\"></span><span></span><span style=\"color:blue;font-family:宋体;\"><strong>减低</strong></span><span style=\"font-family:宋体;\">:偶见于运动员体质。</span>  </p>  <p>   &nbsp;  </p>  </span>  <p>   &nbsp;  </p>  <p style=\"text-indent:18.05pt;\">   <br />  &nbsp;  </p>', '<p>   <span style=\"font-size:16px;\"><span style=\"font-family:宋体;\"><strong>单次负荷时间</strong></span><span style=\"font-family:宋体;\">:一次运动达到一定强度所需要的时间,越快越好。</span></span>  </p>', '<span style=\"font-size:16px;\"><span style=\"font-size:16px;\">  <p>   <span style=\"font-family:宋体;\"><span style=\"color:blue;font-family:宋体;\"><span style=\"color:#000000;font-family:宋体;\"><strong>单次负荷时间</strong></span><span style=\"color:#000000;font-family:宋体;\">:一次运动达到一定强度所需要的时间,越快越好。</span></span></span>  </p>  <p>   <span style=\"font-family:宋体;\"><span style=\"color:blue;font-family:宋体;\"><strong><span style=\"font-family:宋体;\"></span>减低</strong></span><span style=\"font-family:宋体;\">:偶见于运动员体质。</span></span>  </p>  </span>  <p>   &nbsp;  </p>  <p>   &nbsp;  </p>  </span>  <p>   &nbsp;  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('129', '55', '16', '肌源性肌酸激酶 CK-MM μmol/min/kg', '413', '483', '413', '483', '<p>   <span style=\"font-size:16px;\"><strong>肌源性肌酸激酶(CK-MM):</strong><span><span style=\"font-family:宋体;\"><span style=\"font-size:16px;\">肌</span><span style=\"font-size:16px;\">酸激酶</span><span style=\"font-size:16px;\">是细胞能量代谢的关键酶,根据分布的部位可分为肌肉型</span></span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(M </span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">、脑型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(B</span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">和线粒体型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(Mt</span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">肌酸激酶同工酶(心肌酶)。</span></span></span>  </p>  <p>   <b><span style=\"color:red;font-family:宋体;font-size:16px;\"><strong>升高</strong></span></b><span style=\"color:red;font-family:宋体;font-size:16px;\"><strong>:</strong></span><span style=\"color:black;font-family:宋体;font-size:16px;\">及细胞受损,</span><span style=\"font-family:宋体;font-size:16px;\">轻微升高见于疲劳,成倍升高见于心肌梗死、骨骼肌疾病、重症肌无力、肌萎缩、进行性肌营养不良、多发性肌炎、手术、创伤、惊厥和癫痫发作等也可使</span><span style=\"font-size:16px;\">CK-MM</span><span style=\"font-family:宋体;font-size:16px;\">增高。</span>  </p>  <b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\">建议</span></b><b><span style=\"font-family:宋体;font-size:16px;\">:</span></b><span style=\"font-family:宋体;font-size:16px;\">积极治疗原发病。</span><br />  <br />  <p>   <span style=\"font-family:宋体;font-size:16px;\"></span>&nbsp;  </p>', '<span style=\"font-size:16px;\"><strong>肌源性肌酸激酶(CK-MM):</strong></span><span><strong></strong><span style=\"font-family:宋体;\"><span style=\"font-size:16px;\">肌</span><span style=\"font-size:16px;\">酸激酶</span><span style=\"font-size:16px;\">是细胞能量代谢的关键酶,根据分布的部位可分为肌肉型</span></span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(M </span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">、脑型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(B</span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">和线粒体型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(Mt</span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">肌酸激酶同工酶(心肌酶)。</span></span>', '<p>   <span style=\"font-size:16px;\"><strong>肌源性肌酸激酶(CK-MM):</strong><span><span style=\"font-family:宋体;\"><span style=\"font-size:16px;\">肌</span><span style=\"font-size:16px;\">酸激酶</span><span style=\"font-size:16px;\">是细胞能量代谢的关键酶,根据分布的部位可分为肌肉型</span></span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(M </span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">、脑型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(B</span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">和线粒体型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">(Mt</span><span style=\"font-family:宋体;font-size:16px;\">型</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">)</span><span style=\"font-family:宋体;font-size:16px;\">肌酸激酶同工酶(心肌酶)。</span></span></span>  </p>  <p>   <b><span style=\"color:blue;font-family:宋体;font-size:16px;\">减低</span></b><span style=\"font-family:宋体;font-size:16px;\">:甲亢,此值减低者少见。</span>  </p>  <p>   <span style=\"font-family:宋体;font-size:9pt;\"></span><b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\">建议</span></b><span style=\"font-family:宋体;font-size:16px;\">:积极治疗甲亢。</span>  </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('130', '108', '17', '血管通透性', '4.165', '4.335', '4.165', '4.335', '<span><span style=\"color:red;font-family:宋体;font-size:16px;\"><strong>升高</strong></span><span style=\"font-family:宋体;font-size:16px;\">:毛细血管扩张,血流速加快(临床:创伤、烧水、心衰、肾衰、肿瘤等)。</span></span>', '<span><strong><b><span style=\"font-family:宋体;font-size:16px;\">血管通透性</span></b><span style=\"font-family:宋体;font-size:16px;\">:</span></strong></span><span style=\"font-family:宋体;font-size:16px;\">与体内耗氧有关,结合</span><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;font-size:16px;\">120</span><span style=\"font-family:宋体;font-size:16px;\">项分析人体自身当前抗肿瘤及抗癌的能力。</span>', '<p>   <span><span style=\"color:blue;font-family:宋体;font-size:16px;\"><strong>减低</strong></span><span style=\"font-family:宋体;font-size:16px;\">:活性免疫功能下降,肿瘤初始化形成。</span></span>  </p>  <b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span></b><span style=\"color:black;font-family:宋体;font-size:16px;\">:</span><span style=\"color:black;font-family:宋体;font-size:16px;\">结合</span><span style=\"color:black;font-size:16px;\">120</span><span style=\"color:black;font-family:宋体;font-size:16px;\">共同分析。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('131', '57', '17', '细胞分裂调控因子', '3.7828', '3.9372', '3.7828', '3.9372', '<p>   &nbsp;<span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\">升高:</span></strong></span><span style=\"font-family:宋体;font-size:16px;\">活性免疫功能下降,如果</span><span style=\"font-family:&quot;font-size:16px;\">119</span><span style=\"font-family:宋体;font-size:16px;\">项同时增高,提示体内有病变。</span>   </p>  <p>   <br />  &nbsp;  </p>', '<p>   <span style=\"font-size:16px;\"><strong></strong></span>&nbsp;  </p>', '&nbsp;<span style=\"font-size:16px;\"><strong><span style=\"color:#337FE5;\">减低:</span></strong></span><span><strong><span style=\"color:#337FE5;\"></span></strong><span style=\"font-family:宋体;font-size:16px;\">当人体的生理结构有所改变时本指标有所降低,低于</span><span style=\"font-family:&quot;font-size:16px;\">3.1</span><span style=\"font-family:宋体;font-size:16px;\">时与其他指标结合进行分析,排除肿瘤病变。</span></span><br />  &nbsp;<b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span></b><span style=\"color:black;font-family:宋体;font-size:16px;\">:</span><span><span style=\"font-family:&quot;font-size:16px;\">119</span><span style=\"font-family:宋体;font-size:16px;\">项及</span><span style=\"font-family:&quot;font-size:16px;\">120</span><span style=\"font-family:宋体;font-size:16px;\">同时增高同时减低时,需要反复检测,并结合相关数据分析,(血常规、</span><span style=\"font-family:&quot;font-size:16px;\">20</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">21</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">22</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">23</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">35</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">38</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">51</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">69</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">85</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">86</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">91</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">92</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">104</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">105</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">106</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">107</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">109</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">110</span><span style=\"font-family:宋体;font-size:16px;\">项、</span><span style=\"font-family:&quot;font-size:16px;\">123</span><span style=\"font-family:宋体;font-size:16px;\">项),如果相关数据持续变化明显时,建议临床做进一步检查,排除肿瘤病变。</span></span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('132', '69', '18', '皮肤血流量占 %', '7.9', '9.19', '7.9', '9.19', '<span style=\"font-size:16px;\"><strong>皮肤血流量占 %:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#e53333;\">升高:</span></strong>新生儿、高烧等。</span><br />', '<span style=\"font-size:16px;\"><strong>皮肤血流量占 %</strong></span>', '<span style=\"font-size:16px;\"><strong>皮肤血流量占 %:</strong></span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337fe5;\">减低:</span></strong>可见皮肤干燥,成年人、老年人多见减低状态。</span><br />  <span style=\"font-size:16px;\"><strong>建议:</strong>适当补充水分,选用适合的护肤品。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('133', '76', '18', '皮肤血流量 ml/min', '500', '581.65', '500', '581.65', '<p>   <span style=\"font-size:16px;\"><strong>每分钟皮肤血流量ml/min:</strong>亚洲人此指标均偏低(标准范围根据欧洲白种人测试结果设定)</span>   </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\">升高:</span></strong>新生儿、高烧等。</span>   </p>', '<span style=\"font-size:16px;\"><strong>每分钟皮肤血流量ml/min:</strong>亚洲人此指标均偏低(标准范围根据欧洲白种人测试结果设定)</span>', '<p>   <span style=\"font-size:16px;\"><strong>每分钟皮肤血流量ml/min:</strong>亚洲人此指标均偏低(标准范围根据欧洲白种人测试结果设定)</span>   </p>  <p>   <span style=\"font-size:16px;\"><strong><span style=\"color:#337FE5;\">减低:</span></strong>可见皮肤干燥,成年人、老年人多见减低状态。</span><br />  <b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span></b><span style=\"color:black;font-family:宋体;font-size:16px;\">:</span><span style=\"font-size:16px;\">适当补充水分,选用适合的护肤品。</span>   </p>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('134', '21', '19', '基础代谢的损耗 kkal/kg/min', '1.23', '4.3', '1.23', '4.3', '<span style=\"font-size:16px;\"><strong>基础代谢损耗率:</strong>身体亚健康指标,这项指标越高越不好,说明合成氧的潜能在机体内受阻。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\">升高:</span></strong>机体疲劳及疾病状态均可见,可称为健康透支。4-6说明轻度透支,6-10说明中度透支,10以上为重度透支</span><br />  <b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span></b><span style=\"color:black;font-family:宋体;font-size:16px;\">:</span><span style=\"font-size:16px;\">劳逸结合,避免体力透支。</span>', '<span style=\"font-size:16px;\"><strong>基础代谢损耗率:</strong>身体亚健康指标,这项指标越高越不好,说明合成氧的潜能在机体内受阻。</span><br />', '<span style=\"font-size:16px;\"><strong>基础代谢损耗率:</strong>身体亚健康指标,这项指标越高越不好,说明合成氧的潜能在机体内受阻。</span><br />');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('135', '94', '19', '氧摄取率 %', '45', '60', '45', '60', '<span style=\"font-size:16px;\"><strong>氧摄取率:</strong>身体对循环系统中氧的摄取比例。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\">升高:</span></strong>身体需氧量增加,多见于体力消耗及疾病状态下。</span><br />  <b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span></b><span style=\"color:black;font-family:宋体;font-size:16px;\">:</span><span style=\"font-size:16px;\">在积极治疗疾病的前提下,适度进行有氧运动或者吸氧。</span><br />', '<span style=\"font-size:16px;\"><strong>氧摄取率:</strong>身体对循环系统中氧的摄取比例。</span><br />', '<span style=\"font-size:16px;\"><strong>氧摄取率:</strong>身体对循环系统中氧的摄取比例。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337FE5;\">减低:</span></strong>代谢减慢,此值减低者少见。</span>');
INSERT INTO `xkl_amp_report_meta_items` VALUES ('136', '107', '19', 'C0₂生成率 ml/min', '150', '340', '150', '340', '<span style=\"font-size:16px;\"><strong>CO</strong><sub><strong>2</strong></sub><strong>生成率:</strong>在人体细胞中产生,扩散到血液中。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#E53333;\">升高:</span></strong>组织代谢快,CO<sub>2</sub>生成率高,如少年儿童、运动后、饱餐后、病态中、空气污染、天气热温度高或者本身有炎症、甲亢等。</span><br />  <b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span></b><span style=\"color:black;font-family:宋体;font-size:16px;\">:</span><span style=\"font-size:16px;\">积极治疗原发病,适度进行户外活动。</span><br />', '<span style=\"font-size:16px;\"><strong>CO</strong><sub><strong>2</strong></sub><strong>生成率:</strong>在人体细胞中产生,扩散到血液中。</span><br />', '<span style=\"font-size:16px;\"><strong>CO</strong><sub><strong>2</strong></sub><strong>生成率:</strong>在人体细胞中产生,扩散到血液中。</span><br />  <span style=\"font-size:16px;\"><strong><span style=\"color:#337FE5;\">减低:</span></strong>组织代谢慢,如年龄大、体温低、天气寒冷、甲减等。</span><br />  <b><span style=\"color:#00B050;font-family:宋体;font-size:16px;\"><strong>建议</strong></span></b><span style=\"color:black;font-family:宋体;font-size:16px;\">:</span><span style=\"font-size:16px;\">注意保暖,天气寒冷时尽量减少外出。</span>');

-- ----------------------------
-- Table structure for xkl_amp_report_meta_score_standard
-- ----------------------------
DROP TABLE IF EXISTS `xkl_amp_report_meta_score_standard`;
CREATE TABLE `xkl_amp_report_meta_score_standard` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `item_id` int(11) NOT NULL,
  `item_name` varchar(45) NOT NULL,
  `item_type` int(11) NOT NULL,
  `interval1_min` float NOT NULL,
  `interval1_max` float NOT NULL,
  `interval1_score` float NOT NULL,
  `interval2_min` float NOT NULL,
  `interval2_max` float NOT NULL,
  `interval2_score` float NOT NULL,
  `interval3_min` float NOT NULL,
  `interval3_max` float NOT NULL,
  `interval3_score` float NOT NULL,
  `interval4_min` float NOT NULL,
  `interval4_max` float NOT NULL,
  `interval4_score` float NOT NULL,
  `interval5_min` float NOT NULL,
  `interval5_max` float NOT NULL,
  `interval5_score` float NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;

-- ----------------------------
-- Records of xkl_amp_report_meta_score_standard
-- ----------------------------
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('1', '1', '血红蛋白 HGB', '2', '120', '160', '12', '105', '120', '9', '-1', '105', '5', '160', '175', '9', '-2', '175', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('2', '2', '红细胞 RBC', '2', '4', '5.5', '12', '3', '4', '9', '-1', '3', '5', '4', '5.5', '9', '-2', '5.5', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('3', '3', '淋巴细胞', '2', '17', '40', '6', '10', '17', '4', '-1', '10', '2', '17', '30', '4', '-2', '30', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('4', '4', '白细胞 WBC', '2', '4', '10', '12', '2.5', '4', '9', '-1', '2.5', '5', '10', '15', '9', '-2', '15', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('5', '5', '中性分叶粒细胞', '2', '50', '70', '4', '25', '50', '3', '-1', '25', '2', '70', '95', '3', '-2', '95', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('6', '6', '血沉 ESR', '2', '0', '15', '6', '-3', '-3', '0', '-3', '-3', '0', '15', '30', '4', '-2', '30', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('7', '7', '嗜酸性粒细胞', '2', '0.5', '5', '6', '0.25', '0.5', '6', '0', '0.25', '6', '5', '6.5', '5', '-2', '6.5', '3');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('8', '8', '单核细胞', '2', '3', '8', '6', '2', '3', '6', '0', '2', '6', '8', '10', '5', '-2', '10', '3');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('9', '9', '中性杆状核细胞', '2', '1', '5', '4', '0', '1', '4', '-3', '-3', '0', '5', '8', '3', '-2', '8', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('10', '12', '血小板计数', '2', '100', '300', '12', '50', '100', '9', '-1', '50', '5', '300', '350', '9', '-2', '350', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('11', '88', '血细胞比容', '2', '40', '50', '7', '32', '40', '5', '-1', '32', '3', '50', '55', '6', '-2', '55', '3');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('12', '120', '平均红细胞血红蛋白量', '2', '27', '31', '3', '24', '27', '2', '-1', '24', '1', '31', '35', '2', '-2', '35', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('13', '121', '平均红细胞容积', '2', '82', '95', '3', '80', '82', '2', '-1', '82', '1', '95', '105', '2', '-2', '105', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('14', '122', '平均血红蛋白浓度', '2', '320', '360', '3', '300', '320', '2', '-1', '300', '1', '360', '385', '2', '-2', '385', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('15', '123', '血色素', '2', '0.85', '1.15', '4', '0.55', '0.85', '3', '-1', '0.55', '2', '1.15', '1.45', '3', '-2', '1.45', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('16', '15', '血清钾浓度', '3', '3.5', '5.5', '12', '3', '3.5', '10', '-1', '3', '8', '5.5', '7', '10', '-2', '7', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('17', '16', '血清钠浓度', '3', '135', '145', '16', '130', '135', '12', '-1', '130', '9', '145', '155', '12', '-2', '155', '9');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('18', '13', '血清钙浓度', '3', '2.13', '2.7', '16', '1.8', '2.13', '12', '-1', '1.8', '9', '2.7', '3.2', '12', '-2', '3.2', '9');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('19', '14', '血清镁浓度', '3', '0.7', '1.1', '12', '0.5', '0.7', '10', '-1', '0.5', '8', '1.1', '1.3', '10', '-2', '1.3', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('20', '44', '细胞外液', '3', '21', '23', '11', '19', '32', '9', '-1', '19', '7', '23', '24.5', '9', '-2', '24.5', '7');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('21', '45', '细胞内液', '3', '39', '42', '11', '36', '39', '9', '-1', '36', '7', '42', '43.5', '9', '-2', '43.5', '7');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('22', '46', '体液总量', '3', '53', '60', '12', '51', '53', '10', '-1', '51', '8', '60', '66', '10', '-2', '66', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('23', '18', '血液PH值', '3', '7.35', '7.45', '10', '7.32', '7.35', '6', '-1', '7.32', '6', '7.45', '7.458', '9', '-2', '7.458', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('24', '10', '血液凝集开始时间', '4', '0.3', '2', '20', '0.15', '0.2', '18', '-1', '0.15', '16', '2', '2.4', '18', '-2', '2.4', '16');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('25', '11', '血液凝集结束时间', '4', '3', '5', '20', '2.5', '3', '18', '-1', '2.5', '16', '5', '5.5', '18', '-2', '5.5', '16');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('26', '87', '凝血酶原指数', '4', '75', '104', '30', '60', '75', '25', '-1', '60', '20', '104', '115', '25', '-2', '115', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('27', '86', '纤维蛋白原', '4', '2', '4', '30', '1', '2', '25', '-1', '1', '20', '4', '5', '25', '-2', '5', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('28', '93', 'Tiffeneau测试', '5', '80', '110', '20', '70', '80', '18', '-1', '70', '16', '110', '115', '18', '-2', '115', '16');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('29', '62', '气体交换的表面积', '5', '3500', '4300', '10', '3300', '3500', '9', '-1', '3300', '8', '4300', '4350', '9', '-2', '4350', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('30', '89', '肺活量(男)', '5', '3500', '5000', '12', '3200', '3500', '10', '-1', '3200', '8', '5000', '5500', '10', '-2', '5500', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('31', '-89', '肺活量(女)', '5', '2500', '4000', '12', '2300', '2500', '10', '-1', '2300', '8', '4000', '4500', '10', '-2', '4500', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('32', '90', '肺通气量', '5', '4', '12', '8', '3', '4', '6', '-1', '3', '4', '12', '13', '6', '-2', '13', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('33', '91', '最大呼气末肺容量(FRC)', '5', '-3', '-3', '0', '2050', '2060', '6', '-1', '2050', '4', '2060', '2200', '6', '-2', '2200', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('34', '92', '最大气道流速', '5', '74', '116', '12', '60', '74', '10', '-1', '60', '8', '116', '119', '10', '-2', '119', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('35', '104', 'CO2 释放量', '5', '119', '300', '8', '116', '119', '6', '-1', '116', '4', '300', '315', '6', '-2', '315', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('36', '105', '动脉血 CO2 气体含量', '5', '32.5', '46.6', '8', '31.5', '32.5', '6', '-1', '31.5', '4', '46.6', '48.6', '6', '-2', '48.6', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('37', '106', '静脉血 CO2 气体含量', '5', '51', '53', '8', '48', '51', '6', '-1', '48', '4', '53', '62', '6', '-2', '62', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('38', '96', '呼吸指数', '5', '0.8', '1.2', '6', '0.6', '0.8', '4', '-1', '0.6', '2', '1.2', '1.5', '4', '-2', '1.5', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('39', '99', '动脉血 O2 饱和度', '6', '95', '98', '20', '93', '95', '18', '-1', '93', '16', '98', '100', '18', '-2', '100', '16');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('40', '97', '氧转运(DO2)', '6', '900', '1200', '12', '800', '900', '10', '-1', '800', '8', '1200', '1300', '10', '-2', '1300', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('41', '61', 'O2 至组织的运送速度', '6', '200', '280', '12', '170', '200', '10', '-1', '170', '8', '280', '320', '10', '-2', '320', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('42', '101', '氧利用量', '6', '200', '451.39', '10', '150', '200', '9', '-1', '150', '8', '451.39', '470', '9', '-2', '470', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('43', '100', '每 kg 氧利用量', '6', '4', '6', '10', '3', '4', '9', '-1', '3', '8', '6', '8', '9', '-2', '8', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('44', '103', '组织氧摄取率', '6', '0.26', '0.34', '10', '0.21', '0.26', '9', '-1', '0.21', '8', '0.34', '0.36', '9', '-2', '0.36', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('45', '59', '循环血量', '6', '65', '69', '13', '62', '65', '11', '-1', '62', '9', '69', '73', '11', '-2', '73', '9');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('46', '60', '每分钟循环血量', '6', '3.5', '4.3', '13', '3.2', '3.5', '11', '-1', '3.2', '9', '4.3', '4.8', '11', '-2', '4.8', '9');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('47', '114', '收缩期动脉压', '7', '-3', '-3', '0', '80', '90', '3', '-1', '80', '1', '140', '160', '3', '-2', '160', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('48', '115', '舒张期动脉压', '7', '-3', '-3', '0', '50', '60', '3', '-1', '50', '1', '90', '100', '3', '-2', '100', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('49', '110', 'PQ 间期', '7', '0.125', '0.165', '9', '0.1', '0.125', '7', '-1', '0.1', '4', '0.165', '0.185', '7', '-2', '0.185', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('50', '111', 'QT 间期', '7', '0.355', '0.4', '3', '0.255', '0.355', '2', '-1', '0.255', '1', '0.4', '0.5', '2', '-2', '0.5', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('51', '112', 'QRS 间期', '7', '0.065', '0.1', '3', '0.045', '0.065', '2', '-1', '0.045', '1', '0.1', '0.12', '2', '-2', '0.12', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('52', '117', '心脏功率', '7', '0.692', '0.788', '9', '0.492', '0.692', '7', '-1', '0.492', '4', '0.788', '0.988', '7', '-2', '0.988', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('53', '64', '心肌血流量占', '7', '4.32', '5.02', '5', '3.32', '4.32', '4', '-1', '3.32', '2', '5.02', '6.02', '4', '-2', '6.02', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('54', '71', '心肌血流量', '7', '250', '290.5', '5', '200', '250', '4', '-1', '200', '2', '290.5', '340.5', '4', '-2', '340.5', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('55', '113', '左心室心肌收缩力', '7', '50', '85', '9', '40', '50', '7', '-1', '40', '4', '85', '95', '7', '-2', '95', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('56', '109', '每搏输出量', '7', '60', '80', '8', '50', '60', '6', '-1', '50', '4', '80', '90', '6', '-2', '90', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('57', '102', '心肌耗氧量', '7', '7', '10', '9', '5', '7', '7', '-1', '5', '4', '10', '12', '7', '-2', '12', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('58', '78', '小循环阻力', '7', '140', '150', '3', '130', '140', '2', '-1', '130', '1', '150', '160', '2', '-2', '160', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('59', '79', '中心静脉压', '7', '50', '120', '3', '30', '50', '2', '-1', '30', '1', '120', '140', '2', '-2', '140', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('60', '80', '体循环时间', '7', '16', '23', '3', '14', '16', '2', '-1', '14', '1', '23', '25', '2', '-2', '25', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('61', '81', '小循环时间', '7', '4', '5.5', '3', '3', '4', '2', '-1', '3', '1', '5.5', '6.5', '2', '-2', '6.5', '1');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('62', '56', '心源性肌酸激酶 CK-MB', '7', '35.1', '38.1', '9', '25.1', '35.1', '7', '-1', '25.1', '4', '35.1', '45.1', '7', '-2', '45.1', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('63', '63', '循环血量不足', '7', '0', '250', '9', '-3', '-3', '0', '-3', '-3', '0', '250', '300', '7', '-2', '300', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('64', '23', 'ALT 酶', '8', '0.1', '0.68', '5', '0.05', '0.1', '3', '-1', '0.05', '2', '0.68', '1.68', '4', '-2', '1.68', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('65', '25', 'ALT 酶', '8', '2', '40', '5', '1', '2', '3', '-1', '1', '2', '40', '80', '4', '-2', '80', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('66', '22', 'AST 酶', '8', '0.1', '0.45', '5', '0.05', '0.1', '3', '-1', '0.05', '2', '0.45', '1.45', '4', '-2', '1.45', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('67', '24', 'AST 酶', '8', '2', '40', '5', '1', '2', '3', '-1', '1', '2', '40', '80', '4', '-2', '80', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('68', '26', 'AST 酶/ALT 酶', '8', '0.8', '1.2', '10', '0.4', '0.8', '7', '-1', '0.4', '5', '1.2', '1.6', '7', '-2', '1.6', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('69', '53', '谷氨酰胺', '8', '0.0045', '0.0055', '10', '0.0035', '0.004', '7', '-1', '0.0035', '5', '0.0055', '0.0065', '7', '-2', '0.0065', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('70', '30', '总蛋白', '8', '60', '80', '10', '50', '60', '7', '-1', '50', '5', '80', '90', '7', '-2', '90', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('71', '67', '肝脏血流量占', '8', '20.28', '29.86', '5', '10.28', '20.28', '3', '-1', '10.28', '1', '29.86', '39.86', '3', '-2', '39.86', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('72', '74', '肝脏血流量', '8', '1690', '2488.33', '5', '890', '1690', '3', '-1', '890', '1', '2488.33', '3088.33', '3', '-2', '3088.33', '2');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('73', '27', '胆红素', '8', '1.7', '17.1', '8', '0.7', '1.7', '6', '-1', '0.7', '4', '17.1', '34.1', '6', '-2', '34.1', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('74', '28', '结合胆红素', '8', '0', '6.8', '6', '-3', '-3', '0', '-3', '-3', '0', '6.8', '12.8', '4', '-2', '12.8', '3');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('75', '29', '非结合胆红素', '8', '1.7', '10.2', '6', '0.7', '1.7', '4', '-1', '0.7', '3', '10.2', '20.2', '4', '-2', '20.2', '3');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('76', '17', '胃酸浓度(PH值)(pH of gastric juice)', '8', '1.2', '1.7', '10', '0.8', '1.2', '7', '-1', '0.8', '5', '1.7', '2.2', '7', '-2', '2.2', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('77', '20', 'Oddi氏括约肌基础压', '8', '39', '41', '10', '34', '39', '7', '-1', '34', '5', '41', '46', '7', '-2', '46', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('78', '34', '尿素氮', '9', '3.2', '7.1', '20', '1.2', '3.2', '18', '-1', '1.2', '15', '7.1', '18.1', '15', '-2', '18.1', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('79', '31', '肌酐浓度', '9', '70', '106', '20', '10', '70', '18', '-1', '10', '15', '106', '186', '15', '-2', '186', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('80', '118', '肾小球率过滤', '9', '75', '115', '12', '35', '75', '9', '-1', '35', '6', '115', '145', '9', '-2', '145', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('81', '119', '肌酐清除率[Cockroft and Gault]', '9', '75', '115', '12', '35', '75', '9', '-1', '35', '6', '115', '145', '9', '-2', '145', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('82', '124', '胱抑素C', '9', '0.6', '0.96', '12', '0.3', '0.6', '9', '-1', '0.3', '6', '0.96', '1.96', '11', '-2', '1.96', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('83', '125', '血尿素氮', '9', '6', '23', '12', '3', '6', '11', '-1', '3', '9', '23', '43', '10', '-2', '43', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('84', '68', '肾脏血流量占', '9', '21.58', '25.09', '6', '15.58', '21.58', '4', '-1', '15.58', '3', '25.09', '30.09', '5', '-2', '30.09', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('85', '75', '肾血流量', '9', '1430', '1662.6', '6', '1030', '1430', '4', '-1', '1030', '3', '1662.6', '2062.6', '5', '-2', '2062.6', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('86', '47', '睾丸酮', '10', '6.93', '17.34', '40', '3.93', '6.93', '35', '-1', '3.93', '20', '17.34', '34.34', '30', '-2', '34.34', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('87', '48', '雌激素', '10', '17.95', '64.62', '40', '5.95', '17.95', '35', '-1', '5.95', '20', '64.62', '104.62', '30', '-2', '104.62', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('88', '70', '其它器官血流量占', '10', '5.76', '6.7', '10', '2.76', '5.76', '8', '-1', '2.76', '6', '6.9', '9.7', '8', '-2', '9.7', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('89', '77', '其它器官血流量', '10', '375', '436.19', '10', '275', '375', '8', '-1', '275', '6', '436.19', '536.19', '8', '-2', '536.19', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('90', '83', '每克甲状腺组织血流量', '11', '3.7', '4.3', '30', '1.7', '3.7', '25', '-1', '1.7', '20', '4.3', '6.3', '25', '-2', '6.3', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('91', '54', '酪氨酸酶', '11', '1.4', '1.8', '40', '1.35', '1.4', '30', '-1', '1.35', '20', '1.8', '1.9', '30', '-2', '1.9', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('92', '49', 'T4', '11', '59', '135', '30', '29', '59', '25', '-1', '29', '20', '135', '165', '25', '-2', '165', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('93', '19', 'SH', '12', '6.2', '7.4', '40', '4.2', '6.2', '30', '-1', '4.2', '20', '7.4', '9.4', '30', '-2', '9.4', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('94', '42', '葡萄糖浓度', '12', '3.9', '6.2', '20', '2.1', '3.9', '15', '-1', '2.1', '10', '6.2', '13.2', '15', '-2', '13.2', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('95', '43', '糖原', '12', '11.7', '20.6', '20', '5.7', '11.7', '15', '-1', '5.7', '10', '20.6', '30.6', '15', '-2', '30.6', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('96', '50', '淀粉酶', '12', '12', '32', '20', '9', '12', '15', '-1', '9', '10', '32', '62', '15', '-2', '62', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('97', '35', '总胆固醇', '13', '2.8', '5.17', '20', '2.4', '2.8', '18', '-1', '2.4', '16', '5.17', '6.17', '16', '-2', '6.17', '14');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('98', '36', 'β-脂蛋白', '13', '17', '55', '8', '12', '17', '6', '-1', '12', '4', '55', '65', '6', '-2', '65', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('99', '37', 'β-脂蛋白', '13', '3', '6', '8', '1.5', '3', '6', '-1', '1.5', '4', '6', '8', '6', '-2', '8', '4');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('100', '38', '低密度脂蛋白', '13', '2.07', '3.62', '12', '1.87', '2.07', '11', '-1', '1.87', '10', '3.62', '3.85', '9', '-2', '3.85', '7');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('101', '39', '极低密度脂蛋白', '13', '0.2', '0.52', '10', '0.1', '0.2', '9', '-1', '0.1', '8', '0.52', '0.62', '8', '-2', '0.62', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('102', '40', '高密度脂蛋白', '13', '0.93', '1.81', '12', '0.75', '0.93', '9', '-1', '0.75', '7', '1.81', '1.91', '11', '-2', '1.91', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('103', '41', '甘油三酯浓度', '13', '0.55', '1.71', '20', '0.35', '0.55', '17', '-1', '0.35', '15', '1.71', '2.51', '15', '-2', '2.51', '12');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('104', '58', '血浆浓度', '13', '1048', '1055', '10', '1042', '1048', '8', '-1', '1042', '6', '1055', '1060', '8', '-2', '1060', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('105', '32', 'β-多巴胺羟化酶(Dopamine β-hydroxylase)', '14', '28', '32.5', '100', '25', '28', '80', '-1', '25', '60', '32.5', '33.5', '80', '-2', '33.5', '60');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('106', '116', '第三脑室宽度', '15', '4', '6', '20', '3', '4', '16', '-1', '3', '12', '6', '8', '16', '-2', '8', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('107', '66', '脑血流量占', '15', '12.82', '14.9', '10', '10', '12.82', '8', '-1', '10', '6', '14.9', '16.9', '8', '-2', '16.9', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('108', '73', '脑血流量', '15', '750', '871.68', '10', '650', '750', '8', '-1', '650', '6', '871.68', '1000', '8', '-2', '1000', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('109', '82', '每百克脑组织血流量', '15', '50', '55', '10', '40', '50', '8', '-1', '40', '6', '55', '75', '8', '-2', '75', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('110', '84', '每克脑组织血流量', '15', '2.9', '3.2', '10', '2.2', '2.9', '8', '-1', '2.2', '6', '2.9', '3.9', '8', '-2', '3.9', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('111', '98', '每百克脑组织氧利用量', '15', '2.8', '3.4', '10', '2.2', '2.8', '8', '-1', '2.2', '6', '3.4', '4', '8', '-2', '4', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('112', '51', '乙酰胆碱', '15', '81.1', '92.1', '10', '78', '81.1', '7', '-1', '78', '5', '-2', '92.1', '10', '-3', '-3', '0');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('113', '52', '红细胞的乙酰胆碱酯酶活性', '15', '220', '278', '10', '200', '220', '8', '-1', '200', '6', '-2', '278', '10', '-3', '-3', '0');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('114', '85', '脑脊液压力', '15', '70', '180', '10', '60', '70', '8', '-1', '60', '6', '180', '200', '7', '-2', '200', '5');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('115', '65', '肌肉血流量占', '16', '14.56', '16.93', '20', '12', '14.56', '16', '-1', '12.56', '12', '16.93', '19', '16', '-2', '19', '12');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('116', '72', '肌肉血流量', '16', '930', '1081.4', '20', '800', '930', '16', '-1', '800', '12', '1081.4', '1200', '16', '-2', '1200', '12');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('117', '33', '乳酸浓度', '16', '0.44', '1.38', '30', '0.34', '0.44', '20', '-1', '0.34', '15', '1.38', '1.8', '18', '-2', '1.8', '12');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('118', '95', '单次负荷时间', '16', '3', '10', '15', '2', '3', '10', '-1', '2', '6', '10', '13', '11', '-2', '13', '8');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('119', '55', '肌源性肌酸激酶 CK-MM', '16', '413', '483', '15', '300', '413', '10', '-1', '300', '6', '483', '600', '10', '-2', '600', '6');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('120', '108', '血管通透性', '17', '4.165', '4.335', '40', '3.5', '4.165', '30', '-1', '3.5', '20', '-2', '4.335', '30', '-3', '-3', '0');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('121', '57', '细胞分裂调控因子', '17', '3.7828', '3.9372', '60', '3.2', '3.7828', '40', '-1', '3.2', '20', '3.9372', '4.5', '40', '-2', '4.5', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('122', '69', '皮肤血流量占', '18', '7.9', '9.19', '50', '6.9', '7.9', '40', '-1', '6.9', '30', '9.19', '11', '40', '-2', '11', '30');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('123', '76', '皮肤血流量', '18', '500', '581.65', '50', '400', '500', '40', '-1', '400', '30', '581.65', '700', '40', '-2', '700', '30');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('124', '21', '基础代谢的损耗', '19', '1.23', '4.3', '40', '0.6', '1.23', '30', '-1', '0.6', '20', '4.3', '9', '30', '-2', '9', '20');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('125', '94', '氧摄取率', '19', '45', '60', '30', '35', '45', '20', '-1', '35', '15', '60', '80', '20', '-2', '80', '10');
INSERT INTO `xkl_amp_report_meta_score_standard` VALUES ('126', '107', 'C02生成率', '19', '150', '340', '30', '100', '150', '20', '-1', '100', '10', '340', '440', '20', '-2', '440', '10');

-- ----------------------------
-- Table structure for xkl_area
-- ----------------------------
DROP TABLE IF EXISTS `xkl_area`;
CREATE TABLE `xkl_area` (
  `id` int(11) NOT NULL,
  `area_name` varchar(128) NOT NULL COMMENT '区域名称',
  `company_id` int(11) NOT NULL COMMENT '所属公司',
  `note` text COMMENT '备注',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;

-- ----------------------------
-- Records of xkl_area
-- ----------------------------

-- ----------------------------
-- Table structure for xkl_city
-- ----------------------------
DROP TABLE IF EXISTS `xkl_city`;
CREATE TABLE `xkl_city` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '城市编号',
  `city_name` varchar(45) NOT NULL COMMENT '城市名称',
  `city_parent_id` int(11) NOT NULL COMMENT '父级城市编号',
  `status` tinyint(4) DEFAULT '1' COMMENT '数据状态,1为正常,默认1',
  `remark` varchar(45) DEFAULT NULL COMMENT '备注',
  `city_sort` tinyint(4) DEFAULT NULL COMMENT '排序,数字越大排在前',
  `city_area` varchar(45) DEFAULT NULL,
  `id_card_code` varchar(45) DEFAULT NULL COMMENT '城市身份证号',
  `city_fisrt_pinyin` varchar(45) DEFAULT NULL COMMENT '城市首字母',
  `city_pinyin` varchar(150) DEFAULT NULL COMMENT '城市拼音',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;

-- ----------------------------
-- Records of xkl_city
-- ----------------------------

-- ----------------------------
-- Table structure for xkl_company
-- ----------------------------
DROP TABLE IF EXISTS `xkl_company`;
CREATE TABLE `xkl_company` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '公司编号',
  `name` varchar(45) NOT NULL COMMENT '公司名称',
  `parent_id` int(11) NOT NULL COMMENT '父级公司名称',
  `province_id` int(11) DEFAULT NULL COMMENT '所属省份',
  `city_id` int(11) DEFAULT NULL COMMENT '所属城市',
  `country_id` int(11) DEFAULT NULL COMMENT '所属区/县',
  `code` int(11) DEFAULT NULL COMMENT '公司编码',
  `level` tinyint(2) DEFAULT NULL COMMENT '公司等级(1-5)',
  `show_level` tinyint(2) DEFAULT NULL COMMENT '公司显示等级',
  `status` tinyint(4) DEFAULT '1' COMMENT '数据状态,1为正常,默认1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='公司信息表';

-- ----------------------------
-- Records of xkl_company
-- ----------------------------

-- ----------------------------
-- Table structure for xkl_inter_key
-- ----------------------------
DROP TABLE IF EXISTS `xkl_inter_key`;
CREATE TABLE `xkl_inter_key` (
  `id` int(11) NOT NULL,
  `key` varchar(128) NOT NULL COMMENT '密钥',
  `status` tinyint(4) NOT NULL COMMENT '状态,0关闭,1启用。',
  `note` varchar(128) DEFAULT NULL COMMENT '备注信息',
  `company_id` int(11) NOT NULL COMMENT '密钥所属公司id',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of xkl_inter_key
-- ----------------------------
INSERT INTO `xkl_inter_key` VALUES ('1', 'weixin', '1', '微信', '1');

-- ----------------------------
-- Table structure for xkl_local_account
-- ----------------------------
DROP TABLE IF EXISTS `xkl_local_account`;
CREATE TABLE `xkl_local_account` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '数据标识符',
  `member_id` int(11) NOT NULL COMMENT '用户编号',
  `login_account` varchar(20) DEFAULT NULL COMMENT '登陆帐号',
  `login_pwd` varchar(50) DEFAULT NULL COMMENT '登陆密码',
  `salt` varchar(20) DEFAULT NULL COMMENT '密码加密所需随机字符串',
  `status` tinyint(2) DEFAULT '1' COMMENT '数据状态,1为正常,默认1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='本地账号';

-- ----------------------------
-- Records of xkl_local_account
-- ----------------------------
INSERT INTO `xkl_local_account` VALUES ('1', '1', 'user1', '8cd8fbd8fdd4a327542275ab969c0316', ':PRHyh[Y3SahQ$Yt', '1');

-- ----------------------------
-- Table structure for xkl_member
-- ----------------------------
DROP TABLE IF EXISTS `xkl_member`;
CREATE TABLE `xkl_member` (
  `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '会员编号,自增长id',
  `name` varchar(128) NOT NULL COMMENT '用户名字',
  `sex` tinyint(4) DEFAULT NULL COMMENT '性别(0:男,male;1:女,female)',
  `birth_date` date DEFAULT NULL COMMENT '用户生日',
  `idcard` varchar(20) DEFAULT NULL COMMENT '省份证',
  `phone` varchar(20) DEFAULT NULL COMMENT '电话',
  `register_time` datetime NOT NULL COMMENT '注册时间',
  `company_id` int(11) NOT NULL COMMENT '所属公司',
  `province` int(11) NOT NULL COMMENT '由身份证号码确定,若用户未填写身份证号码,则认为用户为体检区域所在省市区。',
  `city` int(11) NOT NULL COMMENT '由身份证号码确定,若用户未填写身份证号码,则认为用户为体检区域所在省市区。',
  `country` int(11) NOT NULL COMMENT '由身份证号码确定,若用户未填写身份证号码,则认为用户为体检区域所在省市区。',
  `register_by` int(11) NOT NULL COMMENT '注册此用户的操作员id',
  `status` tinyint(2) DEFAULT '1' COMMENT '数据状态,1为正常,默认1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='用户信息表';

-- ----------------------------
-- Records of xkl_member
-- ----------------------------
INSERT INTO `xkl_member` VALUES ('1', '张三', '1', '1974-06-14', '370304198910283911', '18210063495', '2016-06-15 23:23:39', '20160909', '1', '1', '1', '1', '1');

-- ----------------------------
-- Table structure for xkl_member_openid
-- ----------------------------
DROP TABLE IF EXISTS `xkl_member_openid`;
CREATE TABLE `xkl_member_openid` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `account_id` int(11) NOT NULL,
  `member_id` int(11) NOT NULL COMMENT '会员id',
  `openid` varchar(128) NOT NULL COMMENT 'openid',
  `type` int(11) NOT NULL COMMENT 'openid所属类型。0,微信。',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of xkl_member_openid
-- ----------------------------
INSERT INTO `xkl_member_openid` VALUES ('1', '1', '1', '22222', '0');

-- ----------------------------
-- Table structure for xkl_partner
-- ----------------------------
DROP TABLE IF EXISTS `xkl_partner`;
CREATE TABLE `xkl_partner` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '合作方编号',
  `name` varchar(255) DEFAULT NULL COMMENT '合作方名称',
  `api` varchar(255) DEFAULT NULL COMMENT '接口地址',
  `key` varchar(100) DEFAULT NULL COMMENT '接口key',
  `secret` varchar(100) DEFAULT NULL COMMENT '接口数据密钥',
  `status` tinyint(2) DEFAULT '1' COMMENT '数据状态,1为正常,默认1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='合作方信息';

-- ----------------------------
-- Records of xkl_partner
-- ----------------------------

-- ----------------------------
-- Table structure for xkl_partner_account
-- ----------------------------
DROP TABLE IF EXISTS `xkl_partner_account`;
CREATE TABLE `xkl_partner_account` (
  `id` int(11) NOT NULL COMMENT '数据标识符',
  `member_id` varchar(20) NOT NULL COMMENT '用户编号',
  `account` varchar(200) NOT NULL COMMENT '登陆帐号',
  `password` varchar(100) DEFAULT NULL COMMENT '登陆密码',
  `partner_id` int(11) NOT NULL COMMENT '合作方编号',
  `status` tinyint(2) DEFAULT '1' COMMENT '数据状态,1为正常,默认1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='合作方账号\r\n【account和partner_id形成唯一数据】';

-- ----------------------------
-- Records of xkl_partner_account
-- ----------------------------

-- ----------------------------
-- Table structure for xkl_upsoft_version
-- ----------------------------
DROP TABLE IF EXISTS `xkl_upsoft_version`;
CREATE TABLE `xkl_upsoft_version` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `version_num` int(11) NOT NULL COMMENT '版本号',
  `name` varchar(128) NOT NULL COMMENT '版本名称',
  `note` text NOT NULL COMMENT '版本详情',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of xkl_upsoft_version
-- ----------------------------
INSERT INTO `xkl_upsoft_version` VALUES ('1', '1', 'version1', 'testversion');
INSERT INTO `xkl_upsoft_version` VALUES ('3', '12', '121', '2121');