-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomputer.sql
302 lines (284 loc) · 620 KB
/
computer.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/*
Navicat Premium Data Transfer
Source Server : Test
Source Server Type : MySQL
Source Server Version : 100137
Source Host : localhost:3306
Source Schema : computer
Target Server Type : MySQL
Target Server Version : 100137
File Encoding : 65001
Date: 23/05/2019 16:41:02
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for column
-- ----------------------------
DROP TABLE IF EXISTS `column`;
CREATE TABLE `column` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`title` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '标题',
`index` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '排序',
`is_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否启动',
`creation_time` int(10) NOT NULL COMMENT '创建时间',
`modify_time` int(10) NOT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `title`(`title`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 41 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of column
-- ----------------------------
INSERT INTO `column` VALUES (29, '系部概况', 99, 1, 1557997248, 1558591495);
INSERT INTO `column` VALUES (30, '新闻动态', 98, 1, 1557997305, 1558590317);
INSERT INTO `column` VALUES (31, '教学科研', 97, 1, 1557997318, 1558460183);
INSERT INTO `column` VALUES (32, '党建工作', 96, 1, 1557997327, 1558460189);
INSERT INTO `column` VALUES (33, '学生活动', 95, 1, 1557997335, 1558460200);
INSERT INTO `column` VALUES (34, '招生就业', 94, 1, 1557997345, 1558460202);
INSERT INTO `column` VALUES (36, '实训管理', 92, 1, 1557997363, 1558460207);
INSERT INTO `column` VALUES (38, '技能竞赛', 91, 1, 1557997943, 1558460210);
INSERT INTO `column` VALUES (40, '公告通知', 90, 1, 1558063556, 1558590281);
-- ----------------------------
-- Table structure for news
-- ----------------------------
DROP TABLE IF EXISTS `news`;
CREATE TABLE `news` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`title` varchar(60) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '标题',
`describe` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '描述',
`content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '内容',
`cover` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '图片新闻封面',
`slideshow_cover` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '轮播图封面',
`type` varchar(5) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '类型',
`contributor` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '投稿者',
`is_hot` tinyint(1) NOT NULL DEFAULT 0 COMMENT '热点新闻',
`is_top` tinyint(1) NOT NULL DEFAULT 0 COMMENT '置顶',
`is_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否启动',
`count` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '访问次数',
`column_id` bigint(20) UNSIGNED NOT NULL COMMENT '对应的栏目id',
`user_id` bigint(20) UNSIGNED NOT NULL COMMENT '管理员id',
`creation_time` int(10) NULL DEFAULT NULL COMMENT '创建时间',
`modify_time` int(10) NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `news_ibfk_1`(`column_id`) USING BTREE,
CONSTRAINT `news_ibfk_1` FOREIGN KEY (`column_id`) REFERENCES `column` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 236 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of news
-- ----------------------------
INSERT INTO `news` VALUES (159, '计算机工程系开展团歌会比赛', '测试', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 27.2px; text-rendering: optimizelegibility; color: rgb(51, 51, 51); font-variant-numeric: normal; font-variant-east-asian: normal; white-space: normal; background-color: rgb(255, 255, 255); max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; text-align: justify; widows: 1; text-indent: 2em; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; max-width: 100%; font-size: 15px; word-wrap: break-word !important;\">2019年4月2、3日两晚,计算机工程系在南校区智慧广场举办五四团歌比赛,本次活动的主题是”唱团歌 促梦想“。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 27.2px; text-rendering: optimizelegibility; color: rgb(51, 51, 51); font-variant-numeric: normal; font-variant-east-asian: normal; white-space: normal; background-color: rgb(255, 255, 255); max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; text-align: justify; widows: 1; text-indent: 2em; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; max-width: 100%; font-size: 15px; text-indent: 2em; overflow-wrap: break-word !important;\">我系18级25个班参与了比赛。在比赛中,各个参赛队伍用洪亮、激昂的歌声歌唱中国共青团,展现出我系青年学子朝气蓬勃、昂扬向上的精神风貌。本次团歌比赛的前三名将代表我系参与学院举办的第五届“弘扬革命情 唱响中国梦”团歌会活动。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 27.2px; text-rendering: optimizelegibility; color: rgb(51, 51, 51); font-variant-numeric: normal; font-variant-east-asian: normal; white-space: normal; background-color: rgb(255, 255, 255); max-width: 100%; clear: both; min-height: 1em; letter-spacing: 0.544px; text-align: justify; widows: 1; text-indent: 2em; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; margin: 0px; padding: 0px; max-width: 100%; font-size: 15px; text-indent: 2em; word-wrap: break-word !important;\">五四团歌比赛的顺利举办,使得广大团员加深了对团的认识和理解,有效提高我系18级学生的政治觉悟和班级凝聚力,并为我院校园文化的建设贡献一份力量。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558498724.png\" title=\"1558498724.png\" alt=\"1.png\"/></p>', '/computer/images/bfwvoenyzsgldhjxuktrcpmiqa1558498780.png', '', '测试', '管理员', 0, 0, 1, 1, 30, 15, 1558498780, 1558596345);
INSERT INTO `news` VALUES (160, '新媒体工作室受邀前往茂名市公安局新媒体中心参观', '近日,我系新媒体工作室指受邀前往茂名市公安局新媒体中心参观,中心副主任戈英男热情接待工作室师生。首先带领大家参观了茂名市公安局演播厅,并介绍了演播厅录播、录音、直播、剪辑等设备,常用外出拍摄摄影摄像设备', '<p><span style=\"color: rgb(51, 51, 51); font-family: 宋体; font-size: 18.6667px; text-indent: 28px; background-color: rgb(255, 255, 255);\">近日,我系新媒体工作室指受邀前往茂名市公安局新媒体中心参观,中心副主任戈英男热情接待工作室师生。首先带领大家参观了茂名市公安局演播厅,并介绍了演播厅录播、录音、直播、剪辑等设备,常用外出拍摄摄影摄像设备、大型无人机设备等。还向同学们介绍了市局新媒体中心的日常工作内容,以及公安系统下媒体人的作息时间。此外,还向同学们展示了由市局新媒体中心工作人员自己设计的品种丰富的创意纪念品,深受广大市民的喜爱。这次参观,让同学们刷新了对公安系统民警的认识,同时也深深体会到一名公安干警媒体人工作的艰辛。</span></p><p style=\"text-align: center;\"><span style=\"color: rgb(51, 51, 51); font-family: 宋体; font-size: 18.6667px; text-indent: 28px; background-color: rgb(255, 255, 255);\"><img src=\"/computer/images/1558498867.png\" title=\"1558498867.png\" alt=\"2.png\"/></span></p>', '/computer/images/lkfwrexmypgvcoiqjdhbnuszat1558498888.png', '/computer/images/eihstbgaxfjwndyqplukvrmzco1558588936.png', '测试', '管理员', 0, 0, 1, 12, 30, 15, 1558498888, 1558596638);
INSERT INTO `news` VALUES (161, '茂名市公安局新闻中心到我系开展交流座谈', '测试', '<p><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;text-indent: 28px;background-color: rgb(255, 255, 255);font-size: 19px\">4</span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);text-indent: 28px;background-color: rgb(255, 255, 255);font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;text-indent: 28px;background-color: rgb(255, 255, 255);font-size: 19px\">16</span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);text-indent: 28px;background-color: rgb(255, 255, 255);font-size: 19px;font-family: 宋体\">日下午,茂名市公安局新闻中心副主任戈英男一行</span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;text-indent: 28px;background-color: rgb(255, 255, 255);font-size: 19px\">4</span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);text-indent: 28px;background-color: rgb(255, 255, 255);font-size: 19px;font-family: 宋体\">人到计算机工程系交流,系主任周洁文、新媒体工作室负责人梁燕老师及新媒体工作室部分成员参加交流座谈会。会上戈主任首先介绍了市公安局新闻中心的具体情况,并肯定了新媒体工作室团队的努力和成绩,表示希望双方开展深入合作,包括建设校外实训基地和校内人才培养基地,加强新闻媒体人才培养的力度,双方还进一步探讨了关于接收实习生以及项目合作等方面的内容。</span></p><p><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);text-indent: 28px;background-color: rgb(255, 255, 255);font-size: 19px;font-family: 宋体\"></span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558498955.png\" title=\"1558498955.png\" alt=\"3.png\" width=\"543\" height=\"314\"/></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558498946.png\" title=\"1558498946.png\"/></p><p><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);text-indent: 28px;background-color: rgb(255, 255, 255);font-size: 19px;font-family: 宋体\"><br/></span><br/></p>', '/computer/images/jmacosbklgtwvfinqerhuypxdz1558498988.png', '', '测试', '管理员', 0, 0, 1, 0, 30, 15, 1558498988, 1558498988);
INSERT INTO `news` VALUES (162, '计算机工程系“双创”在行动——4.15与小广告大作战', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">4</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">15</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">日上午,接学院紧急通知,要求当天紧急清理各栋宿舍楼梯间的小广告,计算机工程系立即展开行动,学生党支部书记梁燕老师带领支部党员积极分子和</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">18</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">级数字媒体</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">班、</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">18</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">级软件</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">6</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">班、</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">18</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">级软件</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">9</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">班部分同学,利用中午休息时间,清理了</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">7</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">栋至</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">10</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">栋学生宿舍楼梯间小广告。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">此次清理工作时间紧、任务重,这</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">4</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">栋宿舍楼是宣传栏小广告的重灾区,加上学校没有配发相应的清理工具,同学们只能依靠抹布、锅铲、钢丝球等工具进行清理,给清理工作带来了不小的难度。近</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">45</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">名同学,经过</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">4</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">个小时的努力“奋战”,终于将大部分宣传栏恢复了原来的容貌。为学院“双创”工作贡献了一份微薄的力量。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558499047.jpg\" title=\"1558499047.jpg\" alt=\"5.jpg\"/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 30, 15, 1558499074, 1558499074);
INSERT INTO `news` VALUES (163, '“春风送暖,筑爱夕阳”——仁爱颐养院爱心服务活动', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年</span><span style=\"box-sizing: border-box;font-size: 19px\">4</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">20</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日,茂名职业技术学院青年志愿者协会计算机分会联合茂名健康职业学院志愿者服务社,到茂名市电白区水东镇仁爱颐养院举办一次主题为“春风送暖,筑爱夕阳”的爱心服务活动。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">活动中,志愿者们为老人测量血压、按摩、剪指甲、聊天拉家常。同时也为他们带来了娱乐节目,分别是合唱组的《红旗飘飘》和手语舞组的《感恩的心》。老人们非常喜欢我们的节目,看完后脸上洋溢着微笑。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">本次的活动丰富了志愿者们的实践经历,体现志愿志愿者们“奉献、友爱、互助、进步”的志愿服务精神。志愿者们会一直努力下去,为社会奉献爱,温暖人间。</span></p><p><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\"><br/></span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558499138.jpg\" title=\"1558499138.jpg\" alt=\"7.jpg\" width=\"833\" height=\"407\"/></p>', '/computer/images/nrsiblzpmdhotkufvageywjxcq1558499148.jpeg', '', '测试', '管理员', 0, 0, 1, 5, 30, 15, 1558499148, 1558599886);
INSERT INTO `news` VALUES (164, '计算机工程系组织召开2019年征兵动员大会', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">5</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">7</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">日中午,计算机工程系在</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">6</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">号教学楼</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">104</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">教室组织召开</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">年征兵动员大会,计算机工程系主任周洁文、辅导员梁燕、邬广钦,全系</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">100</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">余名男生参加动员会,辅导员李海超主持会议。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">会上,李海超辅导员用亲身经历向同学们讲述大学生参军的意义,同时还向同学们介绍了征兵入伍的条件及要求、征兵入伍时间安排、国防的意义、当兵的十大优势、入伍优待政策、退役士兵的优惠政策、报名方式和网址等七大方面。此外,还特别邀请了我系</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">名退役士兵,和同学们分享他们入伍的感受和体会。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 宋体\">周洁文主任在会上鼓励同学们响应国家号召,积极报名应征入伍,丰富自己的人生阅历,练就素质过硬的强健体魄,争做新时代有梦想有追求的当代大学生。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558499187.png\" title=\"1558499187.png\" alt=\"6.png\"/></p>', '/computer/images/knheaiowxlftvgczdpqmbjsyru1558499197.png', '', '测试', '管理员', 0, 0, 1, 4, 30, 15, 1558499197, 1558599882);
INSERT INTO `news` VALUES (165, '2014级班主任、班助联系表', '测试', '<table width=\"361\"><colgroup style=\"box-sizing: border-box;\"><col width=\"108\" style=\"box-sizing: border-box; width: 81pt;\"/><col width=\"101\" style=\"box-sizing: border-box; width: 76pt;\"/><col width=\"85\" style=\"box-sizing: border-box; width: 64pt;\"/><col width=\"101\" style=\"box-sizing: border-box; width: 76pt;\"/><col width=\"85\" style=\"box-sizing: border-box; width: 64pt;\"/></colgroup><tbody style=\"box-sizing: border-box;\"><tr style=\"box-sizing: border-box; height: 37.5pt;\" class=\"firstRow\"><td class=\"xl67\" width=\"297\" colspan=\"5\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-width: initial; border-style: initial; border-color: rgb(240, 240, 240); background-color: transparent;\"><strong style=\"box-sizing: border-box; line-height: inherit;\"><span style=\"font-family:NSimsun;font-size:24px\">2014级班主任、班助联系表</span></strong></td></tr><tr style=\"box-sizing: border-box; background: rgb(249, 249, 249); height: 24.95pt;\"><td class=\"xl66\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-width: 0.5pt; border-color: windowtext; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><strong style=\"box-sizing: border-box; line-height: inherit;\"><span style=\"font-family:NSimsun;font-size:18px\">班别</span></strong></p></td><td class=\"xl66\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: 0.5pt; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><strong style=\"box-sizing: border-box; line-height: inherit;\"><span style=\"font-family:NSimsun;font-size:18px\">班主任</span></strong></p></td><td class=\"xl66\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: 0.5pt; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><strong style=\"box-sizing: border-box; line-height: inherit;\"><span style=\"font-family:NSimsun;font-size:18px\">短号</span></strong></p></td><td class=\"xl66\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: 0.5pt; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><strong style=\"box-sizing: border-box; line-height: inherit;\"><span style=\"font-family:NSimsun;font-size:18px\">班助</span></strong></p></td><td class=\"xl66\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: 0.5pt; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><strong style=\"box-sizing: border-box; line-height: inherit;\"><span style=\"font-family:NSimsun;font-size:18px\">短号</span></strong></p></td></tr><tr style=\"box-sizing: border-box; height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">软件1</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">林国锋</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">662898</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">陈敬枝</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">677292</span></p></td></tr><tr style=\"box-sizing: border-box; background: rgb(249, 249, 249); height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">软件2</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">唐<span style=\"box-sizing: border-box;\"> </span>穗</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">6718</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">陈嘉豪</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">664923</span></p></td></tr><tr style=\"box-sizing: border-box; height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">软件3</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">何晓园</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">666620</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">黄钦嘉</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">612120</span></p></td></tr><tr style=\"box-sizing: border-box; background: rgb(249, 249, 249); height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">软件4</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">陈<span style=\"box-sizing: border-box;\"> </span>耀</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">62696</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">赖煜志</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">661165</span></p></td></tr><tr style=\"box-sizing: border-box; height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">平面1</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">柯<span style=\"box-sizing: border-box;\"> </span>奋</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">66066</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">蔡松钊</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">648968</span></p></td></tr><tr style=\"box-sizing: border-box; background: rgb(249, 249, 249); height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">平面2</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">谭彩明</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">660218</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">许锦翰</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">614139</span></p></td></tr><tr style=\"box-sizing: border-box; height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">平面3</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">陈桥君</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">666</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">周伟健</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">664484</span></p></td></tr><tr style=\"box-sizing: border-box; background: rgb(249, 249, 249); height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">网络1</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">龚建锋</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">68018</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">黄永生</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">613693</span></p></td></tr><tr style=\"box-sizing: border-box; height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">网络2</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">周春</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">61100</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">王安</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">673933</span></p></td></tr><tr style=\"box-sizing: border-box; background: rgb(249, 249, 249); height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">移动</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">陈智聪</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><br/></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">朱佳杰</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">63039</span></p></td></tr><tr style=\"box-sizing: border-box; height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">电信</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">张慧</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">663693</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">陈佩诗</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">664093</span></p></td></tr><tr style=\"box-sizing: border-box; background: rgb(249, 249, 249); height: 24.95pt;\"><td class=\"xl65\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: rgb(240, 240, 240) windowtext windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">13级辅导员</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">梁燕</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">68015</span></p></td><td class=\"xl65\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: rgb(240, 240, 240) windowtext windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><br/></td><td class=\"xl65\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: rgb(240, 240, 240) windowtext windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><br/></td></tr><tr style=\"box-sizing: border-box; height: 24.95pt;\"><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: 0.5pt; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">辅导员助理</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">王泓青</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><p style=\"box-sizing: border-box; margin-bottom: 1.25rem; font-family: inherit; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility;\"><span style=\"font-family:NSimsun;font-size:18px\">672126</span></p></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><br/></td><td class=\"xl64\" style=\"box-sizing: border-box; margin: 0px; padding: 0.5625rem 0.625rem; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 0.5pt; border-color: windowtext; border-top-width: initial; border-top-style: initial; border-left-width: initial; border-left-style: initial; border-bottom-width: 0.5pt; background-color: transparent;\"><br/></td></tr></tbody></table><p><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 29, 15, 1558499239, 1558591042);
INSERT INTO `news` VALUES (166, '数字媒体专业教学团队情况', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;line-height: 44px;font-family: 宋体;font-size: 29px\">数字媒体专业教学团队情况</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: 24px;font-family: 宋体\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">一、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">教研室主任</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\"><span style=\"box-sizing: border-box;font-size: 19px\">冼浪</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">二、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> <span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">专业教师</span></span><span style=\"box-sizing: border-box;line-height: inherit\"></span></span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\"><span style=\"box-sizing: border-box;font-size: 19px\">周洁文、何晓园、陈桥君、廖欣南、罗俭、陈永梅、柯奋、张慧</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\">三<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">校外兼职教师</span></span><span style=\"box-sizing: border-box;line-height: inherit\"></span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">梁智、陈思名</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 29, 15, 1558499269, 1558499269);
INSERT INTO `news` VALUES (167, '网络技术专业教学团队情况', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;line-height: 44px;font-family: 宋体;font-size: 29px\">网络技术专业教学团队情况</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: 24px;font-family: 宋体\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">一、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">教研室主任</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\"><span style=\"box-sizing: border-box;font-size: 19px\">龚建锋</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">二、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> <span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">专业教师</span></span><span style=\"box-sizing: border-box;line-height: inherit\"></span></span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\"><span style=\"box-sizing: border-box;font-size: 19px\">王松波、谭彩明、林国锋、唐穗</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\">三<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">校外兼职教师</span></span><span style=\"box-sizing: border-box;line-height: inherit\"></span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">黄世旭、李超</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 29, 15, 1558499295, 1558499295);
INSERT INTO `news` VALUES (168, '通信技术专业教学团队情况', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;line-height: 44px;font-family: 宋体;font-size: 29px\">通信技术专业教学团队情况</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 0;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: 24px;font-family: 宋体\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">一、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">教研室主任</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\"><span style=\"box-sizing: border-box;font-size: 19px\">周春</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">二、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-stretch: normal\"> <span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">专业教师</span></span><span style=\"box-sizing: border-box;line-height: inherit\"></span></span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">周勇、谢海燕、吕晓梅、韩倩、黄焕君</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\">三<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">校外兼职教师</span></span><span style=\"box-sizing: border-box;line-height: inherit\"></span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">张创前、陈厚锋、杨驰云、杨永梅、唐炳婷、林和宗</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Times New Roman';font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: right\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">计算机工程系</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 29, 15, 1558499317, 1558590910);
INSERT INTO `news` VALUES (169, '软件技术专业教学团队情况', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;line-height: 44px;font-family: 宋体;font-size: 29px\">软件技术专业教学团队情况</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: 24px;font-family: 宋体\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">一、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">教研室主任</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">沈大旺</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">二、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">专业教师</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\"><span style=\"box-sizing: border-box;font-size: 19px\">张劲勇、陈凡健、付玉珍、张丽妹、陈永芳、梁燕、何林</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\">三、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman';font-stretch: normal\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">校外兼职教师</span></span><span style=\"box-sizing: border-box;line-height: inherit\"></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">黄可飞、蔡荣生、黄明权、张创前、陈兆强、罗增毅、林海、肖科、吴剑锋、蒋雷、李勇、叶身旺、曹燕飞、陈黄清</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 59px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: right\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">计算机工程系</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 29, 15, 1558499345, 1558590903);
INSERT INTO `news` VALUES (170, '计算机工程系各岗位工作职责', '测试', '<p><span style=\"box-sizing: border-box; line-height: inherit; color: rgb(227, 61, 102);\">一、系主任岗位职责</span></p><p>1. 认真贯彻执行党和国家的教育方针,落实学院的发展规划。按照学院发展的总体规划,制定本系的专业建设规划,年度预算。</p><p>2. 负责本系各专业的设置和新专业的申报,制定人才培养方案,落实本系专业教学计划、教学大纲。</p><p>3. 负责组织教学管理、教科研、专业建设、师资队伍建设、实验室建设等。</p><p>4. 组织开展教学教研的研究活动,组织各种教学经验交流和学术交流活动,促进教学质量的不断提高。</p><p>5. 组织制定各项管理制度,</p><p>6. 组织本系学生的课堂学习、实验、实习、毕业设计、毕业论文答辩等工作。</p><p>7. 毕业设计(论文)准备工作,对即将进入校外生产实习及毕业设计(论文)阶段的学生进行动员。</p><p>8. 组织本系教师承担教学任务,监督检查教师教学工作任务的完成情况。</p><p>9. 负责教师调课的批准、教学计划的修订、指导教研室安排教学任务。</p><p>10. 负责精品专业和精品课程的建设任务。</p><p>11. 完成院领导交办的其它工作。</p><p> </p><p><span style=\"box-sizing: border-box; line-height: inherit; color: rgb(227, 61, 102);\">二、系总支书记职责</span></p><p>1. 分管学生教育管理工作,负责制订学生工作计划。</p><p>2. 负责和指导学生的思想政治教育工作。</p><p>3. 负责辅导员、班主任管理工作,指导辅导员、班主任开展工作。</p><p>4. 负责迎新和指导学生毕业生就业工作。</p><p>5. 负责组织和指导学生的军训、勤工俭学、奖助学金的评审工作。</p><p>6. 协助党委做好全系的党建工作、思想政治工作及宣传工作。</p><p>7. 负责本系教职工政治理论学习。</p><p>8. 完成学院、系交办的其他任务。</p><p> </p><p><span style=\"box-sizing: border-box; line-height: inherit; color: rgb(227, 61, 102);\">三、系办主任工作职责</span></p><p>1. 在系党总支、系行政领导的领导下,负责系日常行政工作。</p><p>2. 协助系主任组织本系部的专业建设、课程建设,协助系主任完成教学环节管理、教学运行管理,参与教学质量监控和督导工作,安排本系学生的实践教学环节。</p><p>3. 做好本系教学资料等档案的管理工作,起草系工作计划、工作总结。</p><p>4. 做好上级来文的分发,报送上级批文及文件的存档管理工作,做好系有关会议和重大活动的安排和记录工作,以及各类活动的接待工作。</p><p>5. 组织好本系教职工职称评审的有关工作,做好教师业务、职称档案建立。</p><p>6. 协助组织完成考勤、考核工作。</p><p>7. 做好系、教研室报刊征订工作。</p><p>8. 负责按时收集并上报本系教师授课信息,负责本系部机动监考教师调度;</p><p>9. 协调本系与各行政职能部门之间的关系,做好这些行政部门交办的有关行政工作。</p><p>10. 完成系领导交办的其他工作。</p><p> </p><p><span style=\"box-sizing: border-box; line-height: inherit; color: rgb(227, 61, 102);\">四、教研室主任职责</span></p><p>1. 组织本专业教学计划和教学大纲的制定与修改。</p><p>2. 执行学院有关教学的规章制度,安排各学期的教学任务,稳定教学秩序,防止教学事故,保证教学质量,组织青年教师试讲,组织教学示范和观摩(每学期至少1次),组织教学研究活动(每学期至少8次)。</p><p>3. 研究、制定并落实学科发展计划,组织科研和学术梯队的建设,积极创造条件开展科研工作。搞好学术交流活动(每学期至少1次),形成良好的学术氛围。 教师培养工作,协助系主任进行本教研室的建设任务。</p><p>4. 研究本学科教材建设规划,安排年度教材、实习指导书编写,并组织实施。</p><p>5. 负责配合党支部作好教师思想工作,关心群众生活。</p><p>6. 定期总结工作,搞好文档建设与管理。</p><p>7. 协助系主任,履行教学常规教学职责。</p><p>8. 完成学院及系主任交办的其他任务。</p><p> </p><p><span style=\"box-sizing: border-box; line-height: inherit; color: rgb(227, 61, 102);\">五、教师职责</span></p><p>1. 为人师表,教书育人,严格按照教育规律办事,努力提高教学质量。</p><p>2. 严格按大纲要求认真备课并作好备课讲义,讲课应突出重点、讲好难点、板书工整、衣着整齐、发音准确,按时交开学初教学资料和期未教学资料。</p><p>3. 应作好辅导、答疑工作,安排好答疑时间和地点,一般以个别答疑为主,适当进行集中辅导</p><p>4. 在教学过程中应进行考勤和安排的作业,作业认真批改。并按规定比例计入学生平时成绩。</p><p>5. 应积极参与课程建设和课程改革、积极参加教学研究、不断总结和改进教学方法,尽可能采用电化教学、多媒体教学和网络教学等现代化教学手段,努力提高教学质量。</p><p>6. 指导毕业论文时选题应符合毕业论文的水平要求,培养学生理论联系实际、解决实际问题的能力,尤其要注意培养学生的创新思维和创新能力</p><p>7. 教师私自不行进行停课、调课、代课,必须提出申请主管教学的领导和教务处的批准,方可进行。</p><p>8. 积极参加科研工作和实验室建设工作,积极发表论文,积极参加学术会议和学术交流活动,不断提高科研和学术水平。跟踪本学科的理论和技术发展,并在课堂教学中反映出来</p><p>9. 服从教研室主任安排的教学和其他工作任务</p><p> </p><p><span style=\"box-sizing: border-box; line-height: inherit; color: rgb(227, 61, 102);\">六、学生辅导员职责</span></p><p>1. 要旗帜鲜明地对学生进行马列主义、毛泽东思想和邓小平理论教育,党的路线、方针、政策教育,坚持四项基本原则教育,爱国主义和共产主义道德教育。引导学生为实现四化、振兴中华而努力学习,成为四化建设的合格人才。</p><p>2. 负责组织实施系的学生工作计划。</p><p>3. 负责对学生进行形式政策教育,进行思想政治教育课。</p><p>4. 教育和督促学生,按时缴纳学费,履行交费义务,做好欠费学生的学费催缴工作,</p><p>5. 负责学生日常的思想政治教育工作,与班主任配合积极组织学生开展学术活动、社会实践及文体方面的活动,并配合有关部门做好学生管理方面的工作。</p><p>6. 要关心、了解学生,熟悉所管学生的个人情况、学习情况、平时表现、兴趣爱好等,有针对性地做好思想教育工作。</p><p>7. 经常深入到学生中去,了解情况,发现问题及时处理,对自己解决不了的问题要向上级有关部门反映。对突发事件和重大问题要及时妥善处理并向上级报告。</p><p>8. 实行弹性工作制,要利用学生课余时间开展工作。</p><p>9. 经常与班主任、任课教师和学生家长取得联系,沟通情况,共同做好学生工作。</p><p>10. 负责调整班干部,指导团支部、班委会开展工作。</p><p>11. 开展调查研究,针对一个时期学生的思想状况、典型人物、典型事件开展调研,写出调查报告。一般情况要求每位辅导员一学期至少写一份调查报告。</p><p>12. 开展教育研究活动,不断探索教育工作的规律和做好学生思想政治教育工作的新方法、新途径。</p><p>13. 参与对学生的奖惩工作。</p><p>14. 协助系领导做好选拔优秀学生、迎新新生和毕业生就业组织工作。</p><p>15. 协助班主任做好学生的总结鉴定和德智体综合测评工作。</p><p>16. 做好奖学金的评定和学生困难补助、学生活动经费的申请发放工作。</p><p>17. 配合系书记,负责学生档案材料的短期保管并按规定及时归档。</p><p>18. 配合系书记,共同组织好学生的公益劳动和学生军训工作。</p><p>19. 配合系书记,做好学生开学注册、放假离校的组织工作。</p><p><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; text-indent: 28px; background-color: rgb(255, 255, 255);\">完成上级部门及系领导交办的其他任务。</span></p><p><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 1, 29, 15, 1558499373, 1558591565);
INSERT INTO `news` VALUES (171, '计算机工程系团委', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">算机工程系团委是党委领导下的学生组织。自成立以来,坚持“来源于学生,服务于学生”的工作理念,坚持以全心全意服务广大师生为宗旨,坚持“自我服务,自我管理,自我教育”,以提升全系同学综合素质为己任,强化组织和干部自身建设,加强对外交流,为我系全体学生的健康成长和全面成才创造了一个良好的环境,搭建了一座广阔的平台。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">计算机工程系团委设有:副书记处、秘书部、组织部、宣传部、公关形象部、社会实践部、网络编辑部、外联部、视频剪辑部</span><span style=\"box-sizing: border-box;font-size: 19px\">9</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">个部门。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558499942.jpg\" title=\"1558499942.jpg\" alt=\"8.jpg\" width=\"851\" height=\"1078\"/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 29, 15, 1558500050, 1558500050);
INSERT INTO `news` VALUES (172, '计算机系各专业简介', '测试', '<p><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 14px;text-indent: 28px;background-color: rgb(255, 255, 255)\"><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 20px;text-rendering: optimizelegibility;text-align: center;text-indent: 31px\"><span style=\"box-sizing: border-box\"><strong style=\"box-sizing: border-box;line-height: inherit\"><span style=\"font-size:18px\">软件技术专业</span></strong></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 20px;text-rendering: optimizelegibility;text-align: center;text-indent: 31px\"><span style=\"box-sizing: border-box;line-height: 20px;font-family: Verdana, sans-serif;font-size: 16px\"><strong style=\"box-sizing: border-box;line-height: inherit\"><span style=\"font-size:18px\"> </span></strong></span></p></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><br/></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 宋体\">培养目标:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">本专业培养具有扎实的基础理论知识和熟练的操作技能,能胜任网站开发与维护、软件开发与测试、移动应用产品开发与运营、数据库开发与管理、计算机文档处理等工作,具有良好的职业素养、创新能力的高素质技能型人才。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">课程体系:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">数据库应用与开发、</span><span style=\"box-sizing: border-box;font-family: 宋体\">PHP</span><span style=\"box-sizing: border-box;font-family: 宋体\">网站开发、</span><span style=\"box-sizing: border-box;font-family: 宋体\">Java</span><span style=\"box-sizing: border-box;font-family: 宋体\">程序设计、</span><span style=\"box-sizing: border-box;font-family: 宋体\">JSP </span><span style=\"box-sizing: border-box;font-family: 宋体\">程序设计、</span><span style=\"box-sizing: border-box;font-family: 宋体\">.net WEB</span><span style=\"box-sizing: border-box;font-family: 宋体\">开发技术、<span style=\"box-sizing: border-box\">C#</span>程序设计、管理信息系统开发与应用、手机应用开发、</span><span style=\"box-sizing: border-box;font-family: 宋体\">微信公众平台开发</span><span style=\"box-sizing: border-box;font-family: 宋体\">、服务器操作系统、网页设计与制作、图形图像处理等</span><span style=\"box-sizing: border-box;font-family: 宋体\">。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">技能考证:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">网页制作、</span><span style=\"box-sizing: border-box\">VB</span><span style=\"box-sizing: border-box;font-family: 宋体\">等</span><span style=\"box-sizing: border-box;font-family: 宋体\">。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">就业面向</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">:</span><span style=\"box-sizing: border-box;font-family: 宋体\">广告、印刷与装饰设计公司、媒体设计部门、</span><span style=\"box-sizing: border-box;font-family: 宋体\">政府机关</span><span style=\"box-sizing: border-box;font-family: 宋体\">高素质技能型人才</span><span style=\"box-sizing: border-box;font-family: 宋体\">。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">课程体系:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">计算机组装与维护;网站建设与维护;局域网技术与组网工程;网络操作系统;网络互连与路由技术;网页设计与制作;综合布线实施与管理;网络安全管理与维护;网络设备应用;系统集成项目管理;<span style=\"box-sizing: border-box\">Linux</span>应用技术;<span style=\"box-sizing: border-box\">PHP</span>动态网页设计等。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">技能考证:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">全国计算机等级考试三级(网络)认证考试;全国计算机技术与软件专业技术资格(水平)考试网络工程师认证考试;</span><span style=\"box-sizing: border-box;font-family: 宋体\">与<span style=\"box-sizing: border-box\"> Cisco</span>培训企业合作,提供<span style=\"box-sizing: border-box\">Cisco</span>体系认证考试(<span style=\"box-sizing: border-box\">CCNA</span>)。</span></p><p><span style=\"color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 14px;text-indent: 28px;background-color: rgb(255, 255, 255)\"> </span><span style=\"font-size:18px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">就业面向:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">面向政府机关、企事业单位、<span style=\"box-sizing: border-box\">IT</span>企业、各类外资企业、教育、科研等各个行业从事计算机网络系统的规划、组建、管理与维护,网站建设与维护,网络系统集成的安装与测试工作、各种网络服务站点的业务工作以及各种网络服务站点的信息收集与组织、网络设备销售与技术支持等工作</span><span style=\"box-sizing: border-box;font-family: 宋体\">以及自主创业</span></span><span style=\"font-size:18px\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 14px\">等。</span></span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 14px;text-indent: 28px;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 14px\"><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 20px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box;line-height: 22.5px\"><br/></span></span></p></span></span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 14px;text-indent: 28px;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 14px\"><span style=\"box-sizing: border-box;font-size: 21px\"><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box\"></span></span></p></span></span></span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 14px;text-indent: 28px;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 14px\"><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;text-indent: 28px\"> </p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;text-align: center\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: black\">通信技术专业</span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><strong style=\"box-sizing: border-box;line-height: inherit\">培养目标:</strong><span style=\"box-sizing: border-box\">本专业旨在培养思想政治坚定、德技并修、全面发展,</span><span style=\"box-sizing: border-box\">适应生产、建设、管理、服务第一线</span><span style=\"box-sizing: border-box\">需要,</span><span style=\"box-sizing: border-box\">具有良好职业道德和人文素养,具有遵守规范、安全生产、勇于创新等素质</span><span style=\"box-sizing: border-box\">,掌握通信系统的运行维护与管理、</span><span style=\"box-sizing: border-box\">通信设备的安装调试和故障排除、通信工程施工组织与管理</span><span style=\"box-sizing: border-box\">等知识和技术技能,面向</span><span style=\"box-sizing: border-box\">通信行业、信息产业技术</span><span style=\"box-sizing: border-box\">领域的高素质劳动者和技术技能人才。</span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box;font-family: 黑体\"><br/></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box\">课程体系:</span></span><span style=\"box-sizing: border-box\">现代通信原理、</span><span style=\"box-sizing: border-box\">网络互联技术</span><span style=\"box-sizing: border-box;color: blue\">,</span><span style=\"box-sizing: border-box\">移动通信技术<span style=\"box-sizing: border-box;color: blue\">,<span style=\"box-sizing: border-box\"><span style=\"color:#000000\">通信线路设计与制图</span></span></span><span style=\"box-sizing: border-box;color: blue\">,<span style=\"box-sizing: border-box\"><span style=\"color:#000000\">无线网络规划与优化</span></span></span></span><span style=\"box-sizing: border-box\">,</span><span style=\"box-sizing: border-box;color: black\">光纤通信技术,<span style=\"box-sizing: border-box\">网页设计基础,<span style=\"box-sizing: border-box\">通信工程概预算,<span style=\"box-sizing: border-box\">通信工程项目管理,综合布线工程等。</span></span></span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box;color: black\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"></span></span><span style=\"box-sizing: border-box\"><br/></span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><strong style=\"box-sizing: border-box;line-height: inherit\">技能考证:</strong><span style=\"box-sizing: border-box\">全国计算机等级证书</span>、通信行业网络代维资格认证、<span style=\"box-sizing: border-box\">CCNA</span>等。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box\"><br/></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;text-indent: 28px\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box\">就业面向:</span></span><span style=\"box-sizing: border-box\">在移动通信设备生产企业和运营企业,从事移动通信设备的安装、调试、维护,</span><span style=\"box-sizing: border-box\">企事业单位或相关行业的业务部门从事网络管理与优化,通信工程监理公司从事通信工程监理,</span><span style=\"box-sizing: border-box\">以及公众移动通信网络、专用移动通信系统、无线寻呼系统的规划和维护,</span><span style=\"box-sizing: border-box\">通信设备售后维护、产品技术支持、产品销售等工作</span><span style=\"box-sizing: border-box\">。 </span><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"><span style=\"font-family:Times New Roman\"> </span></span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;text-indent: 28px\"> </p></span></span><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 14px;text-indent: 28px;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 14px\"><span style=\"box-sizing: border-box;font-size: 21px\"><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"font-size:18px\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"><br/></span></span></span></p></span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><br/></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-align: center;text-indent: 37px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 19px\">数字媒体应用技术专业</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">培养目标:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">本专业面向数字媒体行业,培养掌握具有扎实的数字媒体艺术和技术应用能力的基本理论和专业知识,掌握数字影视、电视动画、影视广告、栏目包装、多媒体网络设计、游戏创意与设计制作、多媒体技术应用、电脑三维设计、动漫技法等与数字媒体相关的基本理论知识,熟练应用相关的现代数字化技术,熟悉数字媒体艺术创作规律,能够进行影视艺术领域、网络多媒体艺术等方面的工作,具有良好的职业道德,较强的专业能力、方法能力和社会能力,适应生产、建设、管理、服务第一线需要的德、智、体、美全面发展的技术技能型人才。<span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">课程体系:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">素描、速写、色彩、摄影与摄像基础、电影制作工艺、非线性编辑、三维建模、三维材质灯光、三维渲染、三维绑定、三维动画、三维特效、影视栏目、包装技术、电影制作技术<span style=\"box-sizing: border-box\">-</span>电影抠像、电影制作技术<span style=\"box-sizing: border-box\">-</span>后期合成基础、图形创意等。<span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">技能考证:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">全国计算机信息高新技术考证:平面设计师、三维动画设计师、网页设计师、视频编辑员等。<span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 27px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 28px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体\">就业面向:</span></span><span style=\"box-sizing: border-box;font-family: 宋体\">毕业生可在广播电视、广告公司等信息传媒领域从事数字图形图像的处理,影视后期的处理,以及网络广告的设计与推广工作;在电子出版业从事电子图书的制作、电子杂志的设计与开发,以及多媒体光盘作品的设计与开发等工作;在网络公司、软件公司等数字技术应用领域从事网络媒体的开发、设计制作与维护工作;在企、事业单位的企划(宣传)部门、产品销售推广部门从事企业形象、产品介绍、产品虚拟环境调试和操作等工作。</span></p><p><span style=\"box-sizing: border-box;font-family: 宋体\"><br/></span></p><p><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 1, 29, 15, 1558500076, 1558591545);
INSERT INTO `news` VALUES (173, '计算机工程系组织结构图', '测试', '<p><img src=\"/computer/images/1558500098.jpg\" title=\"1558500098.jpg\" alt=\"9.jpg\" width=\"886\" height=\"379\"/></p>', '/computer/images/ybiufxwrtdpzcqohlnvjkeasmg1558500115.jpeg', '', '测试', '管理员', 1, 0, 1, 1, 29, 15, 1558500115, 1558595481);
INSERT INTO `news` VALUES (174, '计算机工程系简介', '测试', '<p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">计算机工程系承担着计算机专业人才的培养,及全院计算机相关的基础课程,为社会提供技术支持和服务。坚持以学生为中心,以“价值观<span style=\"box-sizing: border-box\">+</span>知识<span style=\"box-sizing: border-box\">+</span>技能”为培养目标,形成了岗位驱动、项目导向等教学模式,通过专业技能大赛、职业素质培训等活动,不断提升学生的综合素质,为融入社会打下良好的基础。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: red;font-family: 宋体;font-size: 20px\">专业设置:</span></span><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">开设计算机应用技术专业(平面设计)、通信技术专业、数字媒体应用技术专业、软件技术专业<span style=\"box-sizing: border-box\">、计算机网络技术专业。</span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">其中,计算机应用技术和通信技术专业均为学院的重点建设专业。计算机应用技术专业获得广东省<span style=\"box-sizing: border-box\">2014</span>年实训基地建设项目。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: red;font-family: 宋体;font-size: 20px\">师资力量:</span></span><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">拥有一支结构合理、专业素质较高、爱岗敬业、专兼结合的优秀教师队伍。全系现有教师<span style=\"box-sizing: border-box\">30</span>人,其中高、中级职称<span style=\"box-sizing: border-box\">27</span>人,硕士学位以上<span style=\"box-sizing: border-box\">24</span>人,“双师<span style=\"box-sizing: border-box\">”</span>素质教师占<span style=\"box-sizing: border-box\">70%</span>, <span style=\"box-sizing: border-box\">6</span>名教师获得省级技能大赛优秀指导教师称号,此外,还长期聘请行业、企业的专业技术人才担任兼职教师,充分发挥兼职教师的实践操作技能和企业运作的优势,使学生的职业技能得到锻炼和提高。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: red;font-family: 宋体;font-size: 20px\">实习实训条件:</span></span><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">拥有移动应用开发实训室、软件技术实训室、综合布线实训室、集控仿真网络实训室、数字媒体实训室、平面设计实训室、多媒体制作实训室、<span style=\"box-sizing: border-box\">4G</span>全网在线仿真实训室、程序设计基础实训室等<span style=\"box-sizing: border-box\">10</span>间校内专业实训室。其中,移动应用开发实训室(苹果平台)是粤西高校第一个由苹果公司开发的基于<span style=\"box-sizing: border-box\">iOS</span>移动操作系统的实训室。与校外企事业单位深圳地铁集团、宝钢湛江钢铁有限公司、广州中星网络技术有限公司、南方通信建设有限公司、深圳凯立德股份有限公司、珠海爱浦京软件技术有限公司等多家单位建立校外实训基地。其中,广州中星网络技术有限公司实训基地被列为广东省高等学校质量工程(大学生校外实践教育基地)建设项目。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: red;font-family: 宋体;font-size: 20px\">教科研情况:</span></span><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">近年,获省实训基地建设项目<span style=\"box-sizing: border-box\">1</span>项、省质量工程项目<span style=\"box-sizing: border-box\">1</span>项、省教改革项目<span style=\"box-sizing: border-box\">10</span>项、市级科研项目<span style=\"box-sizing: border-box\">5</span>项,实用型专利技术<span style=\"box-sizing: border-box\">3</span>项,公开发表论文近<span style=\"box-sizing: border-box\">50</span>篇,主编教材<span style=\"box-sizing: border-box\">6</span>本,<span style=\"box-sizing: border-box\">6</span>门院级精品课程已通过验收,<span style=\"box-sizing: border-box\">3</span>门院级精品开放课程。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: red;font-family: 宋体;font-size: 20px\">校企合作:</span></span><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">与公诚管理咨询有限公司第三分公司、深圳凯立德科技股份有限公司、珠海爱浦京软件技术有限公司、广州国为信息科技有限公司、南方通信建设有限公司等多家大型企业建立了长期稳定的合作关系,并设立了订单班。与广州国为信息科技有限公司共建“双创”服务中心,将职业教育引入课堂,有效地提高了学生的就业竞争力。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: red;font-family: 宋体;font-size: 20px\">就业情况:</span></span><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">各专业紧密结合就业岗位需求,毕业生深受用人单位欢迎。近几年毕业生就业率均超<span style=\"box-sizing: border-box\">99%</span>,均在省平均水平之上,专业对口率超过<span style=\"box-sizing: border-box\">85%</span>,所培养的学生适岗能力强,很多毕业生已成为企事业单位骨干,深受用人单位好评。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: red;font-family: 宋体;font-size: 20px\">技能大赛:</span></span><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">坚持“以赛促学、以赛促教”,每年组织校级计算机技能竞赛,为学生提供了竞赛的平台,并选拔人才参加省级以上的各类技能大赛,取得了可喜的成绩。<span style=\"box-sizing: border-box\">2012</span>年以来,计算机工程系组织了<span style=\"box-sizing: border-box\">112</span>人次学生参加<span style=\"box-sizing: border-box\">26</span>项省级以上技能大赛,分别取得一、二、三等奖奖项<span style=\"box-sizing: border-box\">50</span>多项。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;color: red;font-family: 宋体;font-size: 20px\">素质拓展:</span></span><span style=\"box-sizing: border-box;font-family: 宋体;font-size: 20px\">坚持<span style=\"box-sizing: border-box\">“</span>以生为本<span style=\"box-sizing: border-box\">”</span>,以培养学生的创新精神和实践能力为重点,学生可通过青年志愿者协会等各种社团组织开展形式多样的活动,也可以加入教师工作室开展项目实战,培养学生的创新创业精神、职业素养和实践能力等,提高就业竞争力,毕业生普遍受到用人单位好评。此外,学生还可以进行学历提升,学院与华南理工大学的数字媒体技术专业、华南师范大学的人力资源管理专业等合作开办自考本科班,学生在取得本院大专毕业证书同时还可以获得由广东省自考委与华南理工大学、华南师范大学等合署颁发,教育部电子注册,属于国民教育系列的本科学历毕业证书及学士学位证书,为有能力、有志于继续提升学历的在校学生提供了有利的个人成长机会。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"> </p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 40px\"> </p><p><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);text-indent: 28px;background-color: rgb(255, 255, 255);font-family: 宋体;font-size: 20px\"><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility\"><span style=\"box-sizing: border-box;color: black;font-size: 19px\">地址: 广东省茂名市电白区沙院镇海城路五路<span style=\"box-sizing: border-box\">1</span>号<span style=\"box-sizing: border-box\"> (</span>邮编:<span style=\"box-sizing: border-box\">525027)</span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility\"><span style=\"box-sizing: border-box;color: black;font-size: 19px\">系部网址:<span style=\"box-sizing: border-box\"><a href=\"http://www.mmvtc.cn/templet/jsjgcx/index.jsp\" style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"color:#0000ff\">http://www.mmvtc.cn/templet/jsjgcx/index.jsp</span></a></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility\"><span style=\"box-sizing: border-box;color: black;font-size: 19px\">E-mail</span><span style=\"box-sizing: border-box;color: black;font-size: 19px\">:<span style=\"box-sizing: border-box\"><a href=\"mailto:[email protected]\" style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"color:#0000ff\">[email protected]</span></a> <span style=\"box-sizing: border-box\"> </span></span>联系电话:<span style=\"box-sizing: border-box\">0668-2506786/2506766</span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-indent: 40px\"> </p><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-indent: 40px\"><span style=\"box-sizing: border-box;font-size: 20px\">(<span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\"><span style=\"color:#000000\">以上数据统计截止<span style=\"box-sizing: border-box\">2017</span>年<span style=\"box-sizing: border-box\">9</span>月</span></span>)</span></p></span></p><p><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 29, 15, 1558500211, 1558590943);
INSERT INTO `news` VALUES (175, '计算机工程系开展新入职教师考前培训', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">临近期末考试,为严肃考风考纪,加强诚信教育,强化考试管理,营造“公平、公正、诚实守信”的考试氛围,计算机工程系在六号教学楼三楼办公室对新入职的教师进行了考前监考培训,培训由计算机工程系教学副主任周春主持。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">周春向各位新入职教师讲解学院关于考场纪律的监考要求,并就考试前、考试时、考完后的注意事项逐一说明,要求老师们必须提前到达考场,考试期间严禁有玩手机改试卷聊天等与监考无关的事情;特别强调在考场发现作弊等违纪违规行为时应该如何处理。要求老师要坚持原则,按章办事,做到及时认定,及时上报。对考试违纪作弊学生,坚持违纪必究,发现一起,查处一起,决不姑息迁就,维护校纪校规的严肃性。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">良好的考试秩序促进良好的学风形成,是我院“三风”建设的重要组成部分,只有严格执行制度,不给考试违纪作弊行为留下生存空间,学生必须通过真才实学来证明自己的实力,才会形成良好的学习风气。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558500279.jpg\" title=\"1558500279.jpg\" alt=\"10.jpg\" width=\"872\" height=\"588\"/></p>', '/computer/images/xzkfnuyimgchtdojrwlepqabsv1558500306.jpeg', '', '测试', '管理员', 0, 0, 1, 0, 31, 15, 1558500306, 1558500306);
INSERT INTO `news` VALUES (176, '争做教学弄潮儿——计算机工程系全体教师开展业务学习', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px\">2019</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体\">年</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px\">2</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px\">28</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体\">日下午,计算机工程系教师在南校区</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px\">6</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体\">栋</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px\">104</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体\">党员活动室开展业务学习活动。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体\">种树先培其根,种花必养其心,全系教师首先观看了《我们一起走过》第</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px\">1</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体\">集弄潮儿向涛头立,一个个栩栩如生的楷模展现在大家面前,他们勇于创新、奋斗不止、乐于奉献的弄潮儿精神,让人们看到在时代的惊涛骇浪中,这群弄潮儿踏浪立涛,随波出没,而手中飘展的红旗却未被潮水打湿,表现了勇于创新,奋斗不止的弄潮儿精神,抒发出人定胜天的豪迈气概。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体;color: black\">接着计算机工程系副主任周春布置</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;color: black\">3</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体;color: black\">月份的教学工作,学习关于对课程思政的思考,系例会上还传达了张庆院长在</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;color: black\">2017</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体;color: black\">—</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;color: black\">2018</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体;color: black\">学年学风建设活动总结表彰暨</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;color: black\">2019</span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 宋体;color: black\">年学风建设活动动员大会中的讲话精神,<span style=\"box-sizing: border-box\">要求大家做有理想信念、有道德情操、有扎实学识、有仁爱之心的“四有”好老师,做政治素质过硬、业务能力精湛、育人水平高超的高素质教师。</span></span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558500335.jpg\" title=\"1558500335.jpg\" alt=\"11.jpg\"/></p>', '/computer/images/magnvuiehtpycbjofqwzdlrsxk1558500355.jpeg', '', '测试', '管理员', 0, 0, 1, 0, 31, 15, 1558500355, 1558500355);
INSERT INTO `news` VALUES (177, '茂名青廷科技有限公司到访我系工作室探讨“校企合作,互助共赢”', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日,茂名青廷科技有限公司李总亲自到访</span><span style=\"box-sizing: border-box;font-size: 19px\">Web</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">前端开发工作室,探讨“校企合作,互助共赢”。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">交流中,李总与工作室成员探讨了当前行业中前沿技术,指出未来行业内将偏向移动端的趋势。并高度赞扬了工作室</span><span style=\"box-sizing: border-box;font-size: 19px\">16</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">级成员翁建伟,王锦佳在公司中的表现。期待与工作室再次合作,开展“校企合作,互助共赢”的方案。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">工作室指导老师张劲勇提出,今年重要计划之一正是“企业进校园,工作室迈出去”。双方共同探讨,并详细畅谈了相关方案的细节。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">最后,</span><span style=\"box-sizing: border-box;font-size: 19px\">Web</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">前端开发工作室与茂名青廷科技有限公司达成合作意向,李总热邀工作室成员到企业中参观。</span></p><p><img src=\"/computer/images/1558500428.jpg\" title=\"1558500428.jpg\" alt=\"12.jpg\" width=\"877\" height=\"372\"/></p>', '/computer/images/fopedvuaszrmjgilkhxtycqbnw1558500444.jpeg', '', '测试', '管理员', 0, 1, 1, 2, 31, 15, 1558500444, 1558599801);
INSERT INTO `news` VALUES (178, '【工作室动态】Web前端开发工作室召开学期启动会议', '测试', '<p style=\"text-align: center;\"><img src=\"/computer/images/1558501339.jpg\" title=\"1558501339.jpg\" alt=\"13.jpg\"/></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 31, 15, 1558501356, 1558591134);
INSERT INTO `news` VALUES (179, '新媒体工作室受邀前往茂名市公安局新媒体中心参观', '近日,我系新媒体工作室指受邀前往茂名市公安局新媒体中心参观,中心副主任戈英男热情接待工作室师生。首先带领大家参观了茂名市公安局演播厅,并介绍了演播厅录播、录音、直播、剪辑等设备,常用外出拍摄摄影摄像设备', '<p><span style=\"color: rgb(51, 51, 51); font-family: 宋体; font-size: 18.6667px; text-indent: 28px; background-color: rgb(255, 255, 255);\">近日,我系新媒体工作室指受邀前往茂名市公安局新媒体中心参观,中心副主任戈英男热情接待工作室师生。首先带领大家参观了茂名市公安局演播厅,并介绍了演播厅录播、录音、直播、剪辑等设备,常用外出拍摄摄影摄像设备、大型无人机设备等。还向同学们介绍了市局新媒体中心的日常工作内容,以及公安系统下媒体人的作息时间。此外,还向同学们展示了由市局新媒体中心工作人员自己设计的品种丰富的创意纪念品,深受广大市民的喜爱。这次参观,让同学们刷新了对公安系统民警的认识,同时也深深体会到一名公安干警媒体人工作的艰辛。</span></p><p style=\"text-align: center;\"><span style=\"color: rgb(51, 51, 51); font-family: 宋体; font-size: 18.6667px; text-indent: 28px; background-color: rgb(255, 255, 255);\"><img src=\"/computer/images/1558501390.png\" title=\"1558501390.png\" alt=\"14.png\"/></span></p>', '/computer/images/ypitsnurfoadbwgqjevkcmzlxh1558501403.png', '', '测试', '管理员', 1, 1, 1, 5, 31, 15, 1558501403, 1558599789);
INSERT INTO `news` VALUES (180, '茂名职业技术学院党校开展2018年(总十五期)学生入党积极分子培训', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\">2018</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年</span><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">6</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日上午,茂名职业技术学院党校在南校区</span><span style=\"box-sizing: border-box;font-size: 19px\">1-101</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">举行了学生入党积极分子培训的开班仪式,各系学生党支部的入党积极分子参加了本次培训,集中学习党的历史和基本理论知识。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">仪式结束后,随即开始了由思政部黄林莉主讲的第一课——《理想</span><span style=\"box-sizing: border-box;font-size: 19px\">‧</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">信念</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">》,理想信念是共产党人的精神之“钙”,必须加强思想政治建设,解决好世界观、人生观、价值观这个“总开关”问题。只有理想信念坚定的人,才能始终不渝、百折不挠,不论风吹雨打,不怕千难万险,坚定不移为实现共产主义而奋斗。其他的学习内容还有思政部基础教研室主任胡华主讲的《光辉的历程:</span><span style=\"box-sizing: border-box;font-size: 19px\">97</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年中国共产党党史》、党委办副主任梁晓主讲的《党的基本知识》、党史电教片《开天辟地》。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">9</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日下午,我系学生党支部在</span><span style=\"box-sizing: border-box;font-size: 19px\">6</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">号教学楼</span><span style=\"box-sizing: border-box;font-size: 19px\">104</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">党员活动中心召开支部大会,专题讨论:</span><span style=\"box-sizing: border-box;font-size: 19px\">1.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">对党的认识。</span><span style=\"box-sizing: border-box;font-size: 19px\">2.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">认真践行社会主义核心价值观。</span><span style=\"box-sizing: border-box;font-size: 19px\">3.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">做个有理想有本领有担当的时代新人。学生入党积极分子们准备充分,积极围绕讨论主题发言,学习气氛良好。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">10</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日下午,参加本期培训的学生入党积极分子在</span><span style=\"box-sizing: border-box;font-size: 19px\">6</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">号教学楼</span><span style=\"box-sizing: border-box;font-size: 19px\">104</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">党员活动中心进行党课结业考试。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558501498.png\" title=\"1558501498.png\" alt=\"15.png\"/></p>', '/computer/images/oivenlguczqkxhsbmrjfdapwty1558501537.png', '', '测试', '管理员', 0, 0, 1, 0, 32, 15, 1558501537, 1558501537);
INSERT INTO `news` VALUES (181, '计算机工程系学生党支部换届选举投票工作顺利完成', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">根据学院党委部署及有关文件,我系学生党支部</span><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">25</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日早上在</span><span style=\"box-sizing: border-box;font-size: 19px\">6</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">号教学楼三楼学生管理办公室召开了全体党员会议,本次会议由支部书记梁燕主持,顺利完成了换届投票选举工作。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">梁燕同志首先通报了到会党员人数,到会人数符合党章和基层党组织换届选举的相应规定,支部换届选举会议正式开始。随后梁燕同志代表支委向支部全体党员做了工作汇报,全面总结了支部的书记项目活动开展、自身建设等情况,得到了支部全体党员的高度肯定。接着在投票环节中,支部严格按照公平、公正、公开的原则,由专门监票人和计票人唱票并宣读结果。经党员大会无记名、差额投票,梁燕、李海超、谭泳锋三名同志当选为党支部新一届委员会委员。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">会后,新一届支部委员会举行第一次支委会,选举产生了支部书记,并对支委进行分工,讨论本年度书记项目。梁燕同志担任支部书记,李海超同志担任组织委员,邬广钦同志担任宣传委员,同时将选举结果上报学院党委。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">选举结束后,支部开展“粤港澳大湾区发展规划纲要”专题学习,粤港澳地区将是继美国纽约湾区、美国旧金山湾区、日本东京湾区之后的世界第四大湾区,是中国建设世界级城市群、融入和推动全球合作发展的重要空间载体。粤港澳大湾区正迎来新的发展机遇。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558501562.png\" title=\"1558501562.png\" alt=\"16.png\"/></p>', '/computer/images/duskogyhnzcbrwjlmipeftqaxv1558501578.png', '', '测试', '管理员', 0, 0, 1, 0, 32, 15, 1558501578, 1558501578);
INSERT INTO `news` VALUES (182, '计算机工程系与土木工程系学生党支部联合开展“创森”主题党日活动', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年</span><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日早上,我校计算机工程系学生党支部与土木工程系学生党支部在市民公园联合开展“创森”主题党日活动。计算机工程系党总支书记周洁文,计算机工程系学生党支部书记梁燕,支委李海超、邬广钦、土木工程系学生党支部书记李宇威参加活动。两党支部</span><span style=\"box-sizing: border-box;font-size: 19px\">30</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">余名党员积极分子在创森办工作人员的指导下,学习多肉植物的习性,参观创森主题展板,并作为志愿者协助工作人员开展“创森”宣传活动,向市民免费发放创森宣传物资,助力茂名创建国家森林城市。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">春季市民公园鲜花盛开,周末正值赏花人流高峰期,志愿者们沿途中主动向市民派发宣传手册以及向市民解说“创森”的重要性,并且随手清理沿途路边的垃圾。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">中午时分,师生们在湖边凉亭集合野餐和并开展户外拓展游戏,在集体游戏中,进一步加深了同学们对团队精神重要性的认识。希望未来,党员积极分子们能够快速成长,从各方面起到带头作用和榜样作用,最后预祝茂名市“创森”成功!</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558501617.jpg\" title=\"1558501617.jpg\" alt=\"17.jpg\" width=\"879\" height=\"359\"/></p>', '/computer/images/xvneuhaltfmykcisrwgbjzpdoq1558501683.jpeg', '', '测试', '管理员', 0, 0, 1, 0, 32, 15, 1558501683, 1558501683);
INSERT INTO `news` VALUES (183, '计算机工程系2018-2019学年第二学期积极分子候选人名单公示', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">中共茂名职业技术学院计算机工程系党总支委员会根据《中国共产党发展党员工作细则》之规定,经讨论、审核,确定以下同志作为入党积极分子候选人,现将基本情况公示如下:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">17</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">工程管理班<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>:陈文巧</span><span style=\"box-sizing: border-box;font-size: 21px\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">17</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">移动互联<span style=\"box-sizing: border-box\">1</span>班:潘俊鹏</span><span style=\"box-sizing: border-box;font-size: 21px\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">17</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">移动通信<span style=\"box-sizing: border-box\">2</span>班:冯志成</span><span style=\"box-sizing: border-box;font-size: 21px\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">17</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">4</span>班:杨文良</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">1</span>班:吴泽鑫、胡静云、梁家伟</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">2</span>班:欧梓良</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">3</span>班:刘华英、陈春见、黄丽琦</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">4</span>班:张舒婷、苏军海、邓启事、陈承锋、李灿欣</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">5</span>班:宋伦</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">6</span>班:李嘉荣</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">7</span>班:冯国仁、钟思曼、吴振山、陈文婷</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">8</span>班:郑学佳</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">9</span>班:彭茂泉、许梓荣</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">网络技术<span style=\"box-sizing: border-box\">1</span>班:陈海萍、李浩源、郭伟忠、陈彬彬</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">网络技术<span style=\"box-sizing: border-box\">2</span>班:黎子维、张俊鹏、林思莹</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">网络技术<span style=\"box-sizing: border-box\">3</span>班:林鹏墙</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">通信技术<span style=\"box-sizing: border-box\">1</span>班:林泽龙、阳佳茹、马焕运</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">通信技术<span style=\"box-sizing: border-box\">2</span>班:张可儿、邱怡</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">1</span>班:李纪乐、张梓康、陈庭恒、陈家欣、黎沛钧</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">3</span>班:潘枞横</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">4</span>班:曾晓锐</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">6</span>班:石丹婷、董观达、黄伟蜂</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">7</span>班:黄坚波、袁秋英、林梓婵</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">1</span>班:吴立悟、郑义南</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 43px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">2</span>班:许逸仪、王纯、黎浩敏、林丹仪、何舒琪、</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 7px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 213px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">魏婷婷、辛静莹、杨灿雄、谢静敏、林乔、</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 7px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 213px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">梁燕珊</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">3</span>班:李可茵、雷锦涛</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">4</span>班:黄翠屏、关艳珍、郭朝阳</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">希望广大学生和教师积极参与监督,如对以上候选人有意见,请于<span style=\"box-sizing: border-box\">2019</span>年<span style=\"box-sizing: border-box\">03</span>月<span style=\"box-sizing: border-box\">20</span>日前向计算机工程系党总支或辅导员反映,接待单位和个人对群众反映的问题严格保密。在公示过程中,对于群众反映意见较大、经核实确实存在问题的积极分子候选人,将及时给予认真处理。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">联系电话:<span style=\"box-sizing: border-box\">13929703328/68002(</span>周书记<span style=\"box-sizing: border-box\">)</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 107px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">13068500003(</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">梁老师<span style=\"box-sizing: border-box\">)</span>、<span style=\"box-sizing: border-box\">13926722339/68016 (</span>何老师<span style=\"box-sizing: border-box\">)</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 107px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">13790906210(</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">李老师<span style=\"box-sizing: border-box\">)</span>、<span style=\"box-sizing: border-box\">15089939721(</span>邬老师<span style=\"box-sizing: border-box\">)</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">E-mail</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">地址<span style=\"box-sizing: border-box\">: [email protected] </span>(如有问题,也可直接发邮件到上述邮箱)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">公示时间:<span style=\"box-sizing: border-box\">2019.03.14-2019.03.20</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: right\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\"> </span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: right\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">计算机工程系学生党支部</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-right: 9px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 29px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: right\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">2019</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">年<span style=\"box-sizing: border-box\">03</span>月<span style=\"box-sizing: border-box\">14</span>日</span></span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 32, 15, 1558501710, 1558501710);
INSERT INTO `news` VALUES (184, '计算机工程系2018-2019学年第二学期积极分子名单公示', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">中共茂名职业技术学院计算机工程系党总支委员会根据《中国共产党发展党员工作细则》之规定,经讨论、审核,确定以下同志作为入党积极分子,现将基本情况公示如下:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">17</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">移动通信<span style=\"box-sizing: border-box\">2</span>班:冯志成</span><span style=\"box-sizing: border-box;font-size: 21px\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">17</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">4</span>班:杨文良</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">3</span>班:陈春见</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">4</span>班:张舒婷</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">软件技术<span style=\"box-sizing: border-box\">9</span>班:彭茂泉</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">网络技术<span style=\"box-sizing: border-box\">1</span>班:李浩源</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">网络技术<span style=\"box-sizing: border-box\">2</span>班:张俊鹏</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">通信技术<span style=\"box-sizing: border-box\">2</span>班:邱怡</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">1</span>班:李纪乐</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">3</span>班:潘枞横</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">4</span>班:曾晓锐</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">平面设计<span style=\"box-sizing: border-box\">6</span>班:石丹婷</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">1</span>班:郑义南</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">2</span>班:许逸仪</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">3</span>班:雷锦涛</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">18</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">数字媒体<span style=\"box-sizing: border-box\">4</span>班:黄翠屏</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">希望广大学生和教师积极参与监督,如对以上积极分子有意见,请于<span style=\"box-sizing: border-box\">2019</span>年<span style=\"box-sizing: border-box\">04</span>月<span style=\"box-sizing: border-box\">22</span>日前向计算机工程系党总支或辅导员反映,接待单位和个人对群众反映的问题严格保密。在公示过程中,对于群众反映意见较大、经核实确实存在问题的积极分子,将及时给予认真处理。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">联系电话:<span style=\"box-sizing: border-box\">13929703328/68002(</span>周书记<span style=\"box-sizing: border-box\">)</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 107px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">13068500003(</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">梁老师<span style=\"box-sizing: border-box\">)</span>、<span style=\"box-sizing: border-box\">13926722339/68016 (</span>何老师<span style=\"box-sizing: border-box\">)</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 107px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">13790906210(</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">李老师<span style=\"box-sizing: border-box\">)</span>、<span style=\"box-sizing: border-box\">15089939721(</span>邬老师<span style=\"box-sizing: border-box\">)</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">E-mail</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">地址<span style=\"box-sizing: border-box\">: [email protected] </span>(如有问题,也可直接发邮件到上述邮箱)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">公示时间:<span style=\"box-sizing: border-box\">2019.04.16-2019.04.22</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: right\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\"> </span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: right\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">计算机工程系学生党支部</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-right: 9px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 25px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: right\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">2019</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体_GB2312\">年<span style=\"box-sizing: border-box\">04</span>月<span style=\"box-sizing: border-box\">16</span>日</span></span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 1, 32, 15, 1558501731, 1558596202);
INSERT INTO `news` VALUES (185, '计算机工程系学生党支部召开支部大会学习习近平新时代中国特色社会主义思想', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 楷体\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 楷体\">年<span style=\"box-sizing: border-box\">4</span>月<span style=\"box-sizing: border-box\">26</span>日,茂名职业技术学院计算机工程系学生党支部在水东湾新城校区<span style=\"box-sizing: border-box\">6</span>栋<span style=\"box-sizing: border-box\">104</span>教室召开支部大会。本次会议由学生党支部书记梁燕老师主持,党员谭泳锋老师出席会议,学生党支部全体入党积极分子参加会议。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 楷体\">会议开始,梁燕老师以视频教学的方式与我们大家共同学习习近平总书记提出的新时代中国特色社会主义思想:学习西柏坡精神,它是中国共产党人在革命时期铸就的一座精神丰碑,是全党宝贵的精神财富,是凝聚党心民心、激励全党全国人民为实现中华民族伟大复兴中国梦而共同奋斗的强大精神力量。为此梁燕老师还积极鼓励全体积极分子参与学院的活动并且作为主力,时刻做好学生代表。不忘初心,牢记使命。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 楷体\">会议间,梁燕老师公布了新收入党支部的<span style=\"box-sizing: border-box\">16</span>位入党积极分子,并带领支部成员为新进的积极分子佩戴积极分子徽章为其亮身份。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px;font-family: 楷体\">会议结束,全体党支部成员拍照留念。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558501763.jpg\" title=\"1558501763.jpg\" alt=\"18.jpg\"/></p>', '/computer/images/vkldpgzhswrtnqyjoxuecaifbm1558501794.jpeg', '', '测试', '管理员', 0, 0, 1, 1, 32, 15, 1558501794, 1558599823);
INSERT INTO `news` VALUES (186, '在最美的年华遇见你-“好心茂名,精彩茂职”第三届校园荧光夜跑', '测试', '<p><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; text-indent: 28px; background-color: rgb(255, 255, 255);\">5.25是大学生心理健康活动日,我院在水东湾新城校区举办第三届校园荧光夜跑活动,呼吁和鼓励广大大学生"走下网络、走出宿舍、走向操场",增强体魄,迈向健康的学习生活。19点30分,参赛活动的同学们手戴荧光棒,从足球运动场绕一圈开跑,途经6号教学楼南面校道、智慧广场、小食代广场、图书馆、体育馆。过程中大家在流光溢彩的荧光中相互追逐、相互鼓励,一路欢歌笑语,气氛活跃,用绚丽的色彩点亮了夜空,以健康向上的生活方式点燃了奋斗激情。这次活动,不仅带领大家用行动践行“走下网络、走出宿舍、走向操场”的理念,也展现了师生们积极向上的精神风貌。</span></p><p><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; text-indent: 28px; background-color: rgb(255, 255, 255);\"><img src=\"/computer/images/1558501876.png\" title=\"1558501876.png\" alt=\"19.png\"/></span></p><p><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; text-indent: 28px; background-color: rgb(255, 255, 255);\"><img src=\"/computer/images/1558501905.jpg\" title=\"1558501905.jpg\" alt=\"20.jpg\" width=\"817\" height=\"511\"/></span></p>', '/computer/images/lvawnzbyqrskfpmgxotjdheuci1558501932.jpeg', '', '测试', '管理员', 0, 0, 1, 1, 33, 15, 1558501932, 1558600257);
INSERT INTO `news` VALUES (187, '计算机技能大赛-LOGO设计大赛圆满落幕', '测试', '<p><span style=\"color: rgb(127, 127, 127); font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 15px; letter-spacing: 2px; text-align: justify; background-color: rgb(255, 255, 255);\">2018年5月18日晚上七点半,茂名职业技术学院第十二届LOGO设计大赛总决赛在水东湾新校区2栋304隆重举行。出席决赛的嘉宾有周洁文主任、李海超辅导员、廖欣南老师、冼浪老师和陈思名老师。院团委,院学生会,学生处学生助理团,以及各兄弟系和学院广播站的代表。</span></p><p><img src=\"/computer/images/1558502005.jpg\" title=\"1558502005.jpg\" alt=\"22.jpg\" width=\"796\" height=\"513\"/></p><p><span style=\"color: rgb(136, 136, 136); font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 15px; letter-spacing: 2px; text-align: justify; background-color: rgb(255, 255, 255);\">本次活动以“心灵手巧•创意班级风采”为主题,面对全院同学收集作品。经过初赛的重重筛选,最终有10位选手突围而出。</span></p><p><img src=\"/computer/images/1558502043.jpg\" title=\"1558502043.jpg\" alt=\"23.jpg\" width=\"792\" height=\"586\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 2em; text-rendering: optimizelegibility; letter-spacing: 2px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 1em; max-width: 100%; color: rgb(51, 51, 51); clear: both; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(136, 136, 136); font-size: 15px; word-wrap: break-word !important;\">决赛现场经过选手们激烈的角逐,最终排名如下:</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 2em; text-rendering: optimizelegibility; letter-spacing: 2px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 1em; max-width: 100%; color: rgb(51, 51, 51); clear: both; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(255, 41, 65); font-size: 15px; word-wrap: break-word !important;\">一等奖:</span><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(136, 136, 136); font-size: 15px; word-wrap: break-word !important;\">周燕珊</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 2em; text-rendering: optimizelegibility; letter-spacing: 2px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 1em; max-width: 100%; color: rgb(51, 51, 51); clear: both; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(255, 41, 65); font-size: 15px; word-wrap: break-word !important;\">二等奖:</span><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(136, 136, 136); font-size: 15px; word-wrap: break-word !important;\">张如兰,李俏利</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 2em; text-rendering: optimizelegibility; letter-spacing: 2px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 1em; max-width: 100%; color: rgb(51, 51, 51); clear: both; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(136, 136, 136); font-size: 15px; word-wrap: break-word !important;\">杨丽金,符文磊</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 2em; text-rendering: optimizelegibility; letter-spacing: 2px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 1em; max-width: 100%; color: rgb(51, 51, 51); clear: both; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(255, 41, 65); font-size: 15px; word-wrap: break-word !important;\">三等奖:</span><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(136, 136, 136); font-size: 15px; word-wrap: break-word !important;\">刘亦良,杨博,林紫凡 </span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 2em; text-rendering: optimizelegibility; letter-spacing: 2px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 1em; max-width: 100%; color: rgb(51, 51, 51); clear: both; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(255, 41, 65); font-size: 15px; word-wrap: break-word !important;\">优秀奖:</span><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(136, 136, 136); font-size: 15px; word-wrap: break-word !important;\"><span class=\"Apple-converted-space\" style=\"box-sizing: border-box;\"> </span>梁晓敏,张涌锦</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 2em; text-rendering: optimizelegibility; letter-spacing: 2px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 1em; max-width: 100%; color: rgb(51, 51, 51); clear: both; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(136, 136, 136); font-size: 15px; word-wrap: break-word !important;\">谢弘宇,朱锶如</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; font-size: 17px; line-height: 2em; text-rendering: optimizelegibility; letter-spacing: 2px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 1em; max-width: 100%; color: rgb(51, 51, 51); clear: both; box-sizing: border-box !important; overflow-wrap: break-word !important;\"><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(255, 41, 65); font-size: 15px; word-wrap: break-word !important;\">最佳人气奖:</span><span style=\"box-sizing: border-box !important; padding: 0px; margin: 0px; max-width: 100%; color: rgb(136, 136, 136); font-size: 15px; word-wrap: break-word !important;\">林紫凡</span></p><p><span style=\"box-sizing: border-box; background-color: rgb(255, 255, 255);\">本次竞赛是为了展现同学们的自主创新能力,增强班级凝聚力;为了拓宽同学们的表现力,展现班级风采;为了提高班级在学校师生心目中的形象,丰富学生的课余生活。<span style=\"box-sizing: border-box;\">为大家提供一个展示自己的平台。通过竞赛方式让同学提高同学的文字、口头表达能力提高同学们的综合素养。</span></span></p><p><img src=\"/computer/images/1558502113.jpg\" title=\"1558502113.jpg\" alt=\"24.jpg\" width=\"788\" height=\"663\"/></p>', '/computer/images/nhvkfwslxcgtrqmpizjdebuayo1558502146.jpeg', '', '测试', '管理员', 0, 0, 1, 0, 33, 15, 1558502146, 1558600262);
INSERT INTO `news` VALUES (188, '“拒绝套路贷,远离青春债”校园网贷危害宣传活动', '测试', '<p><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; text-indent: 28px; background-color: rgb(255, 255, 255);\">2018年11月11日下午,茂名职业技术学院青年志愿者协会计算机分会于1栋201阶梯教室展开校园网贷宣传活动。活动以拒绝“套路贷”,远离“青春债”为主题展开讲座。讲座到场人员有系青协指导老师邬广钦、青年志愿者协会计算机分会志愿者和计算机系团委、学生会以及计算机系各班代表。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; text-indent: 28px; background-color: rgb(255, 255, 255);\"> 本次校园网贷普及讲座以学生为本,展开一系列与学生息息相关的案例分析。随着时代的发展,网络渐渐走进人们的生活,随之而来网络上的不良现象渐渐影响着我们的身心。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; text-indent: 28px; background-color: rgb(255, 255, 255);\"> 会上,给学生们普及网贷所针对的群体及套路,学生们对网贷有了初步了解的同时,也给学生们提了个醒。随后,大会以一个个惊人的“受套”视频加深学生们对校园网贷的印象,深入地介绍了“套路贷”带来的意料之外的影响,百无一利。为此,邬老师对在座到场人员强调,校园网贷害人害己,望身边的学生不要攀比,不要追潮,因而陷入校园网贷的漩涡中;同时,也希望更多的人加强对校园网贷认识,加强对校园网贷的预防,加强抵制校园网贷的诱惑,拒绝校园网贷伸出来的手。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; text-indent: 28px; background-color: rgb(255, 255, 255);\"> 随后来到13栋宿舍楼下,游园活动在主持人宣布游园规则后开始了,其中游园活动的游戏有单人游戏:猜谜语、二十四点、我爱猜歌名,多人游戏:你比划我猜、交头接耳、循环相克令、成语接龙、传声筒。通过游戏盖满6个章后就可以抽奖兑换礼品随后游园活动结束我们进行了全体签名及合影留念。</span><br/><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; text-indent: 28px; background-color: rgb(255, 255, 255);\"> 计算机工程系学生高频率接触网络,触发校园网贷概率大。本次讲座,提高了我系学生对校园网贷的认知水平,起到了非常积极的宣传效果。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558502189.jpg\" title=\"1558502189.jpg\" alt=\"24.jpg\" width=\"848\" height=\"516\"/></p>', '/computer/images/otgsaylbwuqvrxjdhfiezcmnkp1558502213.jpeg', '', '测试', '管理员', 0, 0, 1, 0, 33, 15, 1558502213, 1558502213);
INSERT INTO `news` VALUES (189, '“学雷锋,献爱心”——茂职院2019年学雷锋志愿月启动仪式', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年</span><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">4</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日下午</span><span style=\"box-sizing: border-box;font-size: 19px\">16</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">:</span><span style=\"box-sizing: border-box;font-size: 19px\">30-18</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">:</span><span style=\"box-sizing: border-box;font-size: 19px\">00</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">,茂名职业技术学院青年志愿者协会主办了一次主题为“学雷锋,献爱心”的清扫活动,参加本次活动的人员有学院党委高鹏书记、罗卫东副书记、学院团委梁凤燕老师,南校区各系的志愿者。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">活动刚开始,天空有点不作美,下起了小雨。我系的志愿者们在活动现场签名后,随即前往计算机系实训楼,对我系的实训楼进行全面的打扫工作。实训楼的角角落落里到处都有志愿者们的身影,有的弯下腰,有的蹲在地上,认真清理着在角落被遗留的垃圾、杂物。一场雨并不能扑灭志愿者们的热情,在实训楼的他们依然干劲十足,现场气氛活跃,发挥了不怕苦、不怕累、任劳任怨的精神,充分彰显了青年志愿的先锋模范作用。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">经过这一次清扫,整个实训楼的面貌都焕然一新,为我们学习创造了一个干净、整洁的环境。同时也体会到了保洁叔叔阿姨的艰辛,相信经过这一次活动,大家一定能认识到一个美好环境的来之不易。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558502246.jpg\" title=\"1558502246.jpg\" alt=\"25.jpg\" width=\"861\" height=\"666\"/></p>', '/computer/images/zcvgtnowsexrimhqfkdulybjap1558502263.jpeg', '', '测试', '管理员', 0, 0, 1, 1, 33, 15, 1558502263, 1558599841);
INSERT INTO `news` VALUES (190, '茂名职业技术学院青协计算机分会本学期第一次例会', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年</span><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">7</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日晚七点三十五分,茂名职业技术学院志愿者协会计算机分会于</span><span style=\"box-sizing: border-box;font-size: 19px\">3-102</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">教室举行了本学期第一次例会,参加本次会议有青年志愿者协会计算机分会全体志愿者。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">会议开始由秘书部对各部门的干部与干事进行考勤。接下来是网编部的同事以</span><span style=\"box-sizing: border-box;font-size: 19px\">PPT</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">的形式回顾上学期举办的活动。之后就是各部门</span><span style=\"box-sizing: border-box;font-size: 19px\">18</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">的实习干事代表发言总结上学期的工作,各代表都能清楚地认识到自己的优缺点,希望之后的工作能扬长避短。随后</span><span style=\"box-sizing: border-box;font-size: 19px\">17</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">干部在</span><span style=\"box-sizing: border-box;font-size: 19px\">18</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">干事的总结基础上作了补充发言。最后是会长对本学期工作展望和注意事项的讲话。从他的发言中,能深切感受到我们青协是个有责任,有爱心,有志愿精神的组织,希望同学们不忘初心,砥砺前行。秘书部干部则重点说明了“创文创卫”的重要性,希望大家能以身作则,最后会议圆满结束。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">此次会议,不仅让大家了解了上学期各部门的工作,更让大家明确了之后的活动安排。我们要继续发扬“我服务,我快乐”的服务精神,相信青协的明天会更加美好!</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558502373.jpg\" title=\"1558502373.jpg\" alt=\"25.jpg\" width=\"876\" height=\"651\"/></p>', '/computer/images/mpbtucwqxakjfodygnleihvszr1558502390.jpeg', '/computer/images/nxgqbwpitfeyhzosulrvjakmcd1558588777.jpeg', '测试', '管理员', 0, 0, 1, 1, 33, 15, 1558502390, 1558589646);
INSERT INTO `news` VALUES (192, '神州数码信息服务股份有限公司招聘信息', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">公司简介:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">神州数码信息服务股份有限公司,中文简称:神州信息;英文简称:</span><span style=\"box-sizing: border-box;font-size: 19px\">DCITS</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">;股票代码:</span><span style=\"box-sizing: border-box;font-size: 19px;color: rgb(224, 0, 42)\">000555.SZ</span><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">三十余年的发展历程,国内最早参与行业信息化建设的企业之一,以业务模式和技术产品创新引领和推动中国信息化进程和信息服务产业的发展,支撑数字中国的使命。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">依托云计算、大数据、量子通信等技术,面向金融、政企、电信、农业、制造等行业提供规划咨询、应用软件设计与开发、技术服务、云服务、数据服务、量子通信等服务内容,以数据赋能行业创新升级,助力产业升级、价值重塑。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">招聘岗位:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">IT</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">运维实习生(</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">5</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">名,优秀者毕业后可转正)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">岗位福利:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">实习薪资:</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">2000-3000</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">元</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">/</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">月</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">工作职责:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">岗位要求</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、大专及以上学历,计算机相关专业;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、熟悉常见的服务器及网络产品,如</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">cisco</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">H3C</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、锐捷;</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、沟通能力较好,有独立解决现场问题的潜力;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">4</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、有网络相关证书者优先考虑。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">工作地点:广州</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><br/></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">优势:接触更多的服务器、网络设备,以及全球最大用户数量系统。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;font-family: 宋体;color: red\">请有意向的同学识别以下二维码进行报名,企业面试另行通知</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 1.25rem; padding: 0px; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility; color: rgb(51, 51, 51); text-indent: 28px; white-space: normal; background-color: rgb(255, 255, 255); text-align: center;\"><img src=\"/computer/images/1558502551.png\" title=\"1558502551.png\" alt=\"26.png\"/></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 34, 15, 1558502569, 1558591423);
INSERT INTO `news` VALUES (193, '茂名市恒达资产管理有限公司', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 29px;font-family: 楷体;color: rgb(51, 51, 51)\">平面设计岗位要求</span></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: Arial, sans-serif\"><br/><br/></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 28px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: Wingdings\"><span style=\"box-sizing: border-box\">Ø<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体;color: rgb(51, 51, 51)\">工作地点:</span></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">茂南区<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>南越<span style=\"box-sizing: border-box\">1959</span>文化创意街</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 28px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: Wingdings\"><span style=\"box-sizing: border-box\">Ø<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体;color: rgb(51, 51, 51)\">工作职责:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体;color: rgb(51, 51, 51)\"><br/></span></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">负责公司平面设计工作,主要包括宣传册、海报、氛围布置、平面广告、设计排版及其他图文处理等;协助完成各类策划方案的创意及执行工作;</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: Arial, sans-serif\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 28px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: Wingdings\"><span style=\"box-sizing: border-box\">Ø<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体;color: rgb(51, 51, 51)\">任职要求:</span></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\"><br/></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">热爱创意设计,对工作要有激情,</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 21px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">拥有强烈的责任心和自我驱动力;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 21px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">熟练使用各类设计软件,如<span style=\"box-sizing: border-box\">PS</span>、<span style=\"box-sizing: border-box\">AI</span>、<span style=\"box-sizing: border-box\">ID</span>等;</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\"><br/></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">扎实的设计功底、审美品位及创意能力;</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\"><br/></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">优秀的沟通协作、执行能力、团队合作意识;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 28px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: Wingdings\"><span style=\"box-sizing: border-box\">Ø<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体;color: rgb(51, 51, 51)\">薪资标准:</span></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">3000</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">元<span style=\"box-sizing: border-box\">-5000</span>元(依工作经验及设计水平面谈)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 21px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 楷体\">联系人:李鸿<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span>186753570806</span></span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 34, 15, 1558502610, 1558502610);
INSERT INTO `news` VALUES (194, '广东省水文局茂名水文局招聘信息(编号:2019002)', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\"> </span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">广东省水文局茂名水文局现根据工作需要,决定通过茂名市红潮人力资源有限公司采用劳务派遣的形式面向社会公开招聘工作人员</span><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">名。相关事项如下:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">一</span><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、招聘人数:</span><span style=\"box-sizing: border-box;font-size: 19px\"> 2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">人(男性)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">二</span><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、招聘条件:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">(一)基本要求</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> 1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、具有中华人民共和国国籍,享受公民政治权利;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> 2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、身体健康,符合招聘岗位聘用体检标准;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> 3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、工作积极主动、责任心强,有较强的学习能力和沟通协调能力,有团队合作精神;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> 4</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、热爱工作,遵纪守法,没有违法犯罪记录。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">(二)岗位及其他要求:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">水质采样及监测技术人员</span><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">名:要求全日制大学专科或大学本科学历,化学及环境类相关专业,年龄</span><span style=\"box-sizing: border-box;font-size: 19px\">30</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">周岁以下,男性,有汽车驾驶执照(</span><span style=\"box-sizing: border-box;font-size: 19px\">C1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">)者优先。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">三</span><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、用工形式:茂名市红潮人力资源有限公司以“劳务派遣”形式用工。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">四</span><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、薪酬待遇:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> 1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、大学专科学历待遇约</span><span style=\"box-sizing: border-box;font-size: 19px\">4000</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">元(税前);</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> 2 </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、按规定缴纳社会保险(养老、医疗、工伤、失业、生育)。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">五、</span><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">报名相关事项:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> 1 </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、报名时间:自发布日起至</span><span style=\"box-sizing: border-box;font-size: 19px\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年</span><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">24</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日止。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"> 2 </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">、应聘者请将本人信息同时发至邮箱</span><span style=\"box-sizing: border-box;font-size: 19px\">: [email protected] </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">;</span><span style=\"box-sizing: border-box;font-size: 19px\">[email protected]</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">(主题请注明:应聘水文局岗位)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box\"> <span style=\"box-sizing: border-box\"> </span> </span><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">就业指导中心</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span>2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年</span><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">月</span><span style=\"box-sizing: border-box;font-size: 19px\">19</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">日</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 34, 15, 1558502634, 1558502634);
INSERT INTO `news` VALUES (195, '北京亚康万玮信息技术有限公司', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">亚康科技成立于<span style=\"box-sizing: border-box\">1999</span>年,公司规模<span style=\"box-sizing: border-box\">800</span>余人,总部位于北京海淀区中关村,是一家集系统集成、<span style=\"box-sizing: border-box\"> IT</span>服务于一体的高速成长的<span style=\"box-sizing: border-box\">IT</span>企业。主要面向企业提供<span style=\"box-sizing: border-box\">IT</span>的基础产品和基于<span style=\"box-sizing: border-box\">IT</span>产品的专业化服务及系统解决方案,并与多家国际知名<span style=\"box-sizing: border-box\">IT</span>厂商有着密切的合作。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">亚康科技在<span style=\"box-sizing: border-box\">IT</span>服务方面拥有着多年互联网行业服务的相关经验,并加入了多家厂商的售后服务体系,拥有几百名工程师组成的强大技术服务团队,同时我们遵循<span style=\"box-sizing: border-box\">ITIL</span>理论,结合多年的服务经验,建立了先进的服务管理系统,使客户服务规范化、流程化、清晰化。目前已发展成为以北京总部为中心,覆盖国内<span style=\"box-sizing: border-box\">20</span>多个重点一线城市,辐射全国及北美地区,为国内国际众多大型互联网公司提供相应的技术支持与运维服务。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">宗旨:<span style=\"box-sizing: border-box\"><br/></span>在充分理解用户需求的同时,以强烈的责任感和持续创新的精神,提供最优的产品、解决方案和更加适合用户的个性化服务,成为用户最信任的成长伙伴。<span style=\"box-sizing: border-box\"><br/></span>理念:<span style=\"box-sizing: border-box\"><br/></span>重视培养和激发员工的创造性、开发性、工作热情和责任感,这是我们发展强大的基础。<span style=\"box-sizing: border-box\"><br/></span>愿景:<span style=\"box-sizing: border-box\"><br/></span>做一个长久的、最具活力的、最适合员工发展的<span style=\"box-sizing: border-box\">IT</span>公司。<span style=\"box-sizing: border-box\"><br/></span>为用户提供最优的产品、解决方案和个性化服务,成为用户最信任的成长伙伴。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">招聘需求:</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\"><span style=\"box-sizing: border-box\">1、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">储备项目经理(薪资待遇:<span style=\"box-sizing: border-box\">4-6k</span>,不包住宿)</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">岗位职责:</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">负责现场员工的管理及服务报告的输出;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">维护客户关系;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">领导交待的其他事项。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">任职要求:</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">专业不限,本科以上学历;<span style=\"box-sizing: border-box\"> </span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">有较强的沟通协调能力及高度责任心。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\"><span style=\"box-sizing: border-box\">2、<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">服务器工程师<span style=\"box-sizing: border-box\">(</span>薪资待遇:<span style=\"box-sizing: border-box\">3-5k</span>,包住宿<span style=\"box-sizing: border-box\">)</span></span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">岗位职责:</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">对<span style=\"box-sizing: border-box\">IDC</span>机房设备做上下架、配置变更、网络线路调试等工作;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">对<span style=\"box-sizing: border-box\">IDC</span>机房托管设备进行日常巡检、故障记录等工作;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">对<span style=\"box-sizing: border-box\">IDC</span>设备及网络进行调整、维护、故障处理等工作;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">服务器、网络设备的维护、故障判断、维修。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">任职要求:</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">计算机<span style=\"box-sizing: border-box\">/</span>通信相关专业,专科以上学历;<span style=\"box-sizing: border-box\"> </span>香港人员须持有香港身份证,普通话良好;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">熟悉计算机网络和网络安全的调试;具备网络故障的分析、判断、解决能力;<span style=\"box-sizing: border-box\"> </span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">有较强的沟通协调能力及高度责任心;<span style=\"box-sizing: border-box\"> </span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">熟悉<span style=\"box-sizing: border-box\">LINUX</span>操作系统;熟悉交换机的常用技术<span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">3</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">、网络工程师(薪资待遇:<span style=\"box-sizing: border-box\">3-5k</span>,包住宿)</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">岗位职责:</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">企业网络建设和管理;进行网络架构的规划、设计、调整、性能优化;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">网络环境的管理,配置,排错,维护;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">网络设备的安装、配置、管理,提供网络设备维护方案;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">网络安全,网络质量及网络设备的监控,生成网络质量报表;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">建立完整的网络系统文档;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">协助办公网络环境的维护,终端设备的维护。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">任职要求:</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">计算机<span style=\"box-sizing: border-box\">/</span>通信相关专业,专科以上学历;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">熟悉网络设备、服务器、小型机的安装、调试、维护;熟悉计算机网络和网络安全的调试;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">有较强的沟通协调能力及高度责任心;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">具有撰写技术文档和手册能力,良好的英文阅读能力;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">可以短期出差;有“网络工程师”或等同资格认证优先录用。<span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">4</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">、售后维修工程师(薪资待遇:<span style=\"box-sizing: border-box\">3-5k</span>,包住宿)</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">岗位职责:</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">服务器故障排除及软硬件修复;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">服务器设备上下架及安装调试;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">系统配置变更及优化。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><br/></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 24px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">任职要求:</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">了解<span style=\"box-sizing: border-box\">Linux</span>、<span style=\"box-sizing: border-box\">windows</span>系统理论知识;香港人员须持有香港身份证,普通话良好;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">熟悉计算机网络相关知识;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">具有良好的沟通能力和较强的团队意识;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: Wingdings\"><span style=\"box-sizing: border-box\">n<span style=\"box-sizing: border-box;font-variant-numeric: normal;font-variant-east-asian: normal;font-stretch: normal;font-size: 9px;line-height: normal;font-family: 'Times New Roman'\"> </span></span></span><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">计算机相关专业,专科以上学历者优先。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 384px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 24px;font-family: 微软雅黑, sans-serif;color: rgb(146, 208, 80)\">公司优势:公司业务覆盖<span style=\"box-sizing: border-box\">25</span>个城市,可以满足就近分配</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">工作地点:北京、广州、深圳、重庆、成都、香港、河北、天津、上海、呼和浩特、青岛、济南、张家口、杭州、苏州、南京等地</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">定期年度体检、年终奖金、员工活动、节假日慰问金、生日福利、意外险、技能培训、社保公积金(毕业后)</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">联系电话:<span style=\"box-sizing: border-box\">0755-86713140<span style=\"box-sizing: border-box\"> </span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 微软雅黑, sans-serif\">简历投递邮箱:<span style=\"box-sizing: border-box\">[email protected]</span>;<span style=\"box-sizing: border-box\">tiansi @asiacom.net.cn</span></span></span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 34, 15, 1558502657, 1558502657);
INSERT INTO `news` VALUES (196, '关于《2019年广东省高校毕业生“三支一扶”计划实施工作方案》的通知', '测试', '<p>各位同学:</p><p> 现将《2019年广东省高校毕业生“三支一扶”计划实施工作方案》的通知转发到各班,请各位有兴趣同学们认真查阅《通知》的内容,特别要注意每一个时间节点需要做的事情(特别是提交审核所需的相关材料)。</p><p> 如有疑问,直接联系大三辅导员何林老师。</p><p> </p><p> </p><p><a href=\"http://www.mmvtc.cn/upload/2019/0511/201905111240507646164371760490459.rar\" style=\"box-sizing: border-box; color: rgb(0, 140, 186); line-height: inherit; text-decoration-line: none;\">《2019年广东省高校毕业生“三支一扶”计划实施工作方案》的通知</a></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 1, 34, 15, 1558502686, 1558599863);
INSERT INTO `news` VALUES (197, '我校谢弘宇同学在全国首届“图书馆杯主题海报创意设计大赛”中获得优秀奖', '测试', '<p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">近日</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">,全国首届“图书馆杯主题海报创意设计大赛”现场总评在东莞图书馆举行,我校图书馆读者谢弘宇凭借作品《未来》成功晋级全国总评,获得优秀奖。</span></p><p><span style=\"box-sizing: border-box;color: rgb(51, 51, 51);text-indent: 28px;background-color: rgb(255, 255, 255);font-family: 仿宋;font-size: 21px\"><p style=\"box-sizing: border-box;padding: 0px;font-family: inherit;font-size: 1rem;line-height: 47px;text-rendering: optimizelegibility;text-indent: 43px\"><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">图书馆杯主题海报创意设计</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">大赛在全国范围内实现联动宣传、协同推进,通过</span><span style=\"box-sizing: border-box;color: black;font-size: 21px\"><a href=\"http://www.51sjsj.com/\" style=\"box-sizing: border-box;color: rgb(0, 0, 0);line-height: inherit;background-color: transparent\"><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">“设计师之家资源<span style=\"box-sizing: border-box\">库<span style=\"box-sizing: border-box\">”</span></span></span></span></a></span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">平台进行公开征稿,读者通过平台在线报名、上传作品,图书馆通过比赛平台完成网络推选以及专家网络初评等工作。大赛于</span><span style=\"box-sizing: border-box;font-size: 21px\">2018</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">年</span><span style=\"box-sizing: border-box;font-size: 21px\">6</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">月</span><span style=\"box-sizing: border-box;font-size: 21px\">1</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">至</span><span style=\"box-sizing: border-box;font-size: 21px\">9</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">月</span><span style=\"box-sizing: border-box;font-size: 21px\">20</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">日征集期间,在全国各公共图书馆与高校图书馆的大力推进下,覆盖全国</span><span style=\"box-sizing: border-box;font-size: 21px\">32</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">个省、自治区、直辖市,共计</span><span style=\"box-sizing: border-box;font-size: 21px\">1168</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">个图书馆报名作为组织单位参与大赛,共有</span><span style=\"box-sizing: border-box;font-size: 21px\">17796</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">名读者报名,通过审核作品</span><span style=\"box-sizing: border-box;font-size: 21px\">13925</span><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312;font-size: 21px\">件。其中大赛评选出的优秀作品将在全国各图书馆巡展,并应用于图书馆阅读推广宣传,以及与阅读推广相关的文创用品开发。大赛积极响应国家支持和发展文化创意与设计服务的相关政策,鼓励优秀设计人才参与阅读推广宣传工作,加强了图书馆与读者的互动,让更多读者参与阅读推广和体会阅读之美,在推动书香中国的建设以及助力图书馆阅读推广工作中发挥了积极的作用。</span></p></span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558502755.jpg\" title=\"1558502755.jpg\" alt=\"27.jpg\"/></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558502762.jpg\" title=\"1558502762.jpg\" alt=\"28.jpg\"/></p>', '/computer/images/ypjwgvedclmhftxnkauqbsiroz1558502783.jpeg', '', '测试', '管理员', 0, 0, 1, 1, 38, 15, 1558502783, 1558503757);
INSERT INTO `news` VALUES (198, '2019年广东高职高专分委会“学问杯”影评大赛通知方案(高职组)', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">为迎接“<span style=\"box-sizing: border-box\">4.23</span>”世界读书日,教育引导学生树立共产主义远大理想和中国特色社会主义共同理想,增强学生的中国特色社会主义道路自信、理论自信、制度自信、文化自信,让爱国主义精神在学生心中牢牢扎根,立志肩负起民族复兴的时代重任,特举办<span style=\"box-sizing: border-box\">2019</span>年广东高职高专分委会“学问杯”影评大赛,坚持以美育人、以文化人,提高学生审美和人文素养,引导学生成为德智体美劳全面发展的社会主义建设者和接班人。现将有关事项通知如下:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">一、大赛主题</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">重温经典,筑梦中国</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">二、大赛组织</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">主办单位:广东省高等学校图书情报工作指导委员会高职高专分委会</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">承办单位:广东城市职业学院图书馆</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">协办单位:广州红霖信息科技有限公司</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">媒体支持:央广网、新华网、南方都市报、广东电视台、优酷视频、凤凰网、腾讯网、中国网、今日头条、搜狐、网易</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">三、参赛对象</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">广东省高职高专院校正式注册的在校师生均可参赛,每名参赛者的作品数量仅限一篇。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">四、报名方式</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">报名表已上传,参赛作者可在附件处自行下载。(<span style=\"box-sizing: border-box\"><a href=\"http://www.mmvtc.cn/upload/2019/0308/20190308092104-7680928990044064953.docx\" style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box;color: rgb(238, 17, 17)\"><span style=\"box-sizing: border-box\">附件</span></span></a></span>)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">五、大赛内容参赛要求</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">1. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">参赛者必须认真填写参赛表格,根据表格的要求提供个人资料,如果不填写或者填写不全者、填写内容虚假者将被取消参赛资格。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">2. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">参赛作品要求务必原创,必须由参赛者本人进行独立创作(不接受两人及以上合作作品),且必须从未在任何报刊或其它公共媒体(包括互联网)上先行刊载过。参赛者应遵守学术道德和学术规范,严禁剽窃。大赛组委会一旦发现参赛作品或其一部分已在报刊和互联网等公共媒体上先行刊载,或涉嫌抄袭,将严肃处理,立即取消其参赛资格。禁止参赛作品一稿多投。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">3. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">参赛作品必须内容健康,不能含有色情、暴力因素,不能与中华人民共和国法律相抵触。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">4. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">所有参赛作品将不予退还,请参赛者自留备份。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">5. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">所有参赛作品版权归作者本人所有,主办方不承担包括名誉权、隐私权、著作权、商标权等纠纷而产生的法律责任,其法律责任由参赛者本人承担。但主办方拥有媒体宣传使用权;对于入围和获奖作品,除非特别申明,组委会有权无偿在媒体上展示、展出、结集出版,或用于与艺术教育相关的活动。组委会享有将影评大赛入围和获奖作品用于影视教育和知识产权宣传等非商业性活动的展出和使用权。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">6. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">本方案一旦发生变动,将会在官方网页上提示修改内容。若参赛者不接受修改条款,有权退出此次大赛。如果参赛者在公告发出七个工作日后仍未通知组委会放弃参赛,则视参赛者为接受所有变动内容。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">六、投稿方式及要求:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">1</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">.参赛者可从各个院校公告自行下载参赛报名表(附件)并填写,并将电子版作品及报名表一起发送至各校自设的投稿邮箱:</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: rgb(192, 0, 0)\">[email protected](</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: rgb(192, 0, 0)\">茂名职业技术学院图书馆<span style=\"box-sizing: border-box\">)</span></span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">;影评大赛不再接收纸质版作品,所有参赛作品将以投稿邮箱为准。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">2</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">.参赛者发送电子版报名表和参赛作品时注意压缩文件的命名(报名表和参赛作品放进同一个文件夹),为了避免遗漏文章,请所有电子邮件中的投稿附件压缩文件统一命名格式调整为“姓名<span style=\"box-sizing: border-box\">+</span>影评题目<span style=\"box-sizing: border-box\">+</span>参赛学校”。例如:“李华<span style=\"box-sizing: border-box\">+</span>《话说〈红高粱〉》<span style=\"box-sizing: border-box\">+</span>广东外语外贸大学”</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">3</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">.参赛者务必在电子版影评作品结尾后另起一页附上作者本人的姓名、院校、联系方式等确切信息,方便大赛组委会日后联系。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">4. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">参赛作品须为电影评论作品,题目可自拟,应主题鲜明,观点独到,层次清楚,论述充实,行文流畅,正文不少于<span style=\"box-sizing: border-box\">800</span>字。如在文章中引用任何其他人的文字,必须在文中相应处加标底注或尾注。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">5. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">格式要求,题目三号黑体,小标题四号黑体,正文小四宋体,单倍行距,篇尾请注明姓名、联系方式、就读高校及院系、专业和通信地址。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">七、评奖细则</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">1</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">.大赛评奖遵循公开、公平、公正的原则。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">2</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">.大赛评奖分为初评、终评两个阶段。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">3</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">.大赛初评阶段,由各个参赛院校图书馆评选入围作品递交终评委员会;终评阶段,由终评委员会最终评定优胜者。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">(终评作品入选原则:参赛院校图书馆初赛作品低于<span style=\"box-sizing: border-box\">10</span>篇的推荐<span style=\"box-sizing: border-box\">1</span>篇入选,<span style=\"box-sizing: border-box\">30</span>篇以内按初赛作品<span style=\"box-sizing: border-box\">10%</span>的比例推荐入选,<span style=\"box-sizing: border-box\">30</span>篇以上按<span style=\"box-sizing: border-box\">15%</span>的比例推荐入选。)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">4. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">初评委员会由各参赛院校教师、影评家和协办单位评委组成。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">5. </span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">终评委员会的构成,由资深的专家学者、专业人士组成。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">八、参评电影目录</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">在以下电影目录中,由参赛选手挑选其中的一部进行影评。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">【虎口脱险】【蝴蝶梦】【红海行动】【集结号】【无问西东】【我不是药神】【湄公河行动】【芳华】【建国大业】【毒战】【智取威虎山】【让子弹飞】【唐山大地震】【城南旧事】【中国合伙人】</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">九、大赛日程</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">1.</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">参赛作品征集:<span style=\"box-sizing: border-box\">2019</span>年<span style=\"box-sizing: border-box\">3</span>月<span style=\"box-sizing: border-box\">1</span>日至<span style=\"box-sizing: border-box\">2019</span>年<span style=\"box-sizing: border-box\">5</span>月<span style=\"box-sizing: border-box\">8</span>日</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">2.</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">初评:<span style=\"box-sizing: border-box\">2019</span>年<span style=\"box-sizing: border-box\">5</span>月<span style=\"box-sizing: border-box\">9</span>日至<span style=\"box-sizing: border-box\">5</span>月<span style=\"box-sizing: border-box\">17</span>日(由各参赛院校图书馆进行初评)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">3.</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">终评:<span style=\"box-sizing: border-box\">2019</span>年<span style=\"box-sizing: border-box\">5</span>月<span style=\"box-sizing: border-box\">18</span>日至<span style=\"box-sizing: border-box\">5</span>月<span style=\"box-sizing: border-box\">29</span>日(由组委会组织专家进行终评)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">4.</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">颁奖典礼:<span style=\"box-sizing: border-box\">2019</span>年<span style=\"box-sizing: border-box\">6</span>月中旬<span style=\"box-sizing: border-box\">(</span>以最终公布时间为准<span style=\"box-sizing: border-box\">)</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><img src=\"/computer/images/1558502813.gif\" title=\"1558502813.gif\" alt=\"29.gif\"/></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 32px;background: white\"><br/></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-family: 宋体;color: black\">十、奖项设置<span style=\"box-sizing: border-box\"> </span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">本次大赛设特等奖(<span style=\"box-sizing: border-box\">1</span>名)、一等奖(<span style=\"box-sizing: border-box\">3</span>名)、二等奖(<span style=\"box-sizing: border-box\">8</span>名)、三等奖(<span style=\"box-sizing: border-box\">16</span>名)、优秀奖(<span style=\"box-sizing: border-box\">60</span>名)。通过初评的作品视为入围作品,颁发入围证书,最终奖项将从入围作品中产生:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">特等奖:<span style=\"box-sizing: border-box\">1</span>名<span style=\"box-sizing: border-box\"> 5000</span>元助学金<span style=\"box-sizing: border-box\">+</span>证书</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">一等奖:<span style=\"box-sizing: border-box\">3</span>名各<span style=\"box-sizing: border-box\">2000</span>元助学金<span style=\"box-sizing: border-box\">+</span>证书</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">二等奖:<span style=\"box-sizing: border-box\">8</span>名各<span style=\"box-sizing: border-box\">500</span>元助学金<span style=\"box-sizing: border-box\">+</span>证书</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">三等奖:<span style=\"box-sizing: border-box\">16</span>名各<span style=\"box-sizing: border-box\">200</span>元助学金<span style=\"box-sizing: border-box\">+</span>证书</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">优秀奖:<span style=\"box-sizing: border-box\">60</span>名精美礼品<span style=\"box-sizing: border-box\">+</span>证书</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">另外,本次大赛还将评选最佳组织奖、优秀组织奖若干名,凡获最佳组织奖、优秀组织奖的单位还将设最佳组织个人奖、优秀组织个人奖<span style=\"box-sizing: border-box\">1</span>名。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">广东高等院校影评参赛单位沟通<span style=\"box-sizing: border-box\">qq</span>群:<span style=\"box-sizing: border-box\"> 204387421</span>(仅限参赛院校图书馆工作人员加入)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">广东高等院校影评参赛作者沟通<span style=\"box-sizing: border-box\">qq</span>群:<span style=\"box-sizing: border-box\"> 714797039</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">注:本次大赛最终解释权归广州红霖信息科技有限公司。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">本次大赛各项礼品均由广州红霖信息科技有限公司支持。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;text-align: right;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">广东省高等学校图书情报工作指导委员会高职高专分委会</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;text-align: right;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">广州城市职业学院图书馆(代章)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;text-align: right;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">广州红霖信息科技有限公司</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;text-align: right;background: white\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">2019</span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体;color: black\">年<span style=\"box-sizing: border-box\">03</span>月<span style=\"box-sizing: border-box\">01</span>日</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 38, 15, 1558502822, 1558502822);
INSERT INTO `news` VALUES (199, '广东(茂名)首届文化创意设计大赛', '测试', '<p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 28px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">一、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">大赛宗旨</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 47px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 30px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">为推动我市文化事业发展繁荣,推进文化创意和设计服务与相关产业融合,加强文化创意产品开发,以大赛为平台,以推动优秀传统文化传承传播为宗旨,依托我市特色文化资源,深入挖掘文化内涵,推动文化资源、文化创意设计与产业交流发展。通过大赛,推动开发优质文创产品,培育优质文创企业和文创产品开发人才,打造文创品牌,培育文创新市场。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">二、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">大赛主题</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">创意城市<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>文化生活</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">三、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">大赛举办时间</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">年<span style=\"box-sizing: border-box\">1</span>月</span><span style=\"box-sizing: border-box;font-size: 19px\">—</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">6</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">月</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">四、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">大赛举办城市</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">广东省茂名市</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">五、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">参赛对象</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">中国境内合法注册成立的公司、企业;中国境内合法设立的机关单位、事业单位、社会团体、基金会、社会服务机构等;中国境内合法设立的非法人组织;中国内地公民;或上述主体之间组成的团队。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">六、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">赛事内容</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">本届大赛分</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">“</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">文化创意设计大赛</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">”</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">“好心茂名</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">公益传播短视频大赛</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">”</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 47px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(一)文化创意设计大赛</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 96px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">主题一:文化茂名</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 96px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">厚重文化是茂名的“聚宝盆”。 </span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">茂名历史悠久,文化特色鲜明,建设成就辉煌,在文化方面,茂名有众多可挖掘的文化资源,传统优秀文化、地方特色文化尤为丰富,极具地方特色的物质文化遗产。如:冼太文化、潘茂名文化、海洋文化、年例文化、信宜飘色、高州木偶戏等……</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 75px;background: white\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">1</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">作品要求</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 71px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">鼓励以创意设计的理念去关注日常的生活,让设计真正走向人民群众的生活。</span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 112px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;text-align: justify;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">①</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">参赛作品要突出茂名市本土的文化元素进行创意设计基础,作品需具有很强的延展性。倡导情感设计、个性设计的价值导向,用创意设计引领新生活理念,创新生活方式,提升生活品质。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 115px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">②</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">以城市形象标识系统应用,挖掘提炼好心文化元素,通过更生动、形象应用来表达城市的文化内涵,使城市具有个性与特色。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 71px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 19px;background: white\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">2</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、作品<span style=\"box-sizing: border-box;color: rgb(25, 25, 25)\">范围</span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 96px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;text-align: justify;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">①</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">实物作品</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 96px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">可应用设计与旅游商品、非遗手作、本土特产、服饰家纺、桌面用品、生活家居、创意礼品、工艺品等,力求彰显茂名地域特色、历史韵味的文化创意产品,具有“纪念性”“艺术性”“实用性”“收藏性”“独特性”“环保性”“时尚性”。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 99px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">②</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">平面作品</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 96px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">作品需有完整的设计理念且具有创意,此次征集的创意设计作品未来可应用至城市形象标识的延展、标志的应用、宣传主题的打造。<span style=\"box-sizing: border-box\"><br/><span style=\"box-sizing: border-box\"> </span></span>鼓励以创意设计的理念去关注日常的生活,让设计真正走向人民群众的生活等衍生产品和服务标准中。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 94px;background: white\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">3</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">作品形式</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 131px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">①</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">产品实物类;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 143px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">参赛作品既可以是实物作品,也可以是设计方案;既可以是单件,也可以是系列作品;参赛者作品提交到指定地点,并对创意作品附说明介绍;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 131px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">②</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">平面设计(可衍生或转化为产品)</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 143px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 36px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-align: justify;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">作品表现手法不限,<span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"text-decoration:underline;\">根据作品要求提供三幅以上场景应用图</span></span>。参赛作者需保留<span style=\"box-sizing: border-box\">300dpi</span>分辨率可用于印刷生产的位图源文件或矢量文件;参赛者在上传作品及邮件发布作品的同时请填写<span style=\"box-sizing: border-box\">100</span>字左右的创意说明文字;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(二)好心茂名</span></span></span></a><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">公益传播短视频大赛</span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 96px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">主题二:美丽家乡·滨海绿城</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 96px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">“创建全国文明城市,弘扬好心茂名精神;创建国家卫生城市,打造宜居滨海绿城!”</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">。“双创”为茂名这座城市注入更多活力,增添更多魅力。市区道路变得宽敞、干净;市政设施更完善,城市景观更亮丽;不风摆卖,市场的环境更整洁卫生;机动车礼让行人,市民文明出行;不见脏、乱、差大街小巷干净整洁;茂名形成了“人人参与创卫,共建美好家园”的浓厚氛围,茂名‘双创’元素融入了我们的生活。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">1</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、作品要求</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">用不超过<span style=\"box-sizing: border-box\">3</span>分钟的短视频讲述自己的身边的故事,生活中看到、听到、亲身经历哪些变化。家乡给你最美的印象和风景是哪里。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">作品应注重情感表达、富有创意、视角独特,能展示双创中城市发生的一切变化。将他们记录下来,成为城市里新时代的最美记忆。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">2</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、作品范围</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">宣扬文明城市建设的变化;用自己表达方式的阐述你眼中最美丽的家乡;发现身边美好的事情及感动人物。(并不限以上题材)</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">3</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、作品形式</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">视频长度不超过<span style=\"box-sizing: border-box\">3</span>分钟,视频画质清晰富有创意,传递信息清楚明了。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">可以投递多部作品,每部作品单独填写报名,参赛者需把作品完整视频上传到视频平台。按主题+姓名+联系方式投递。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 91px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"> </span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">七、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">参赛要求</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">作品需保证完整性且符合国家相关法律法规的要求,完全原创,无剽窃行为,无在先使用行为;其中:<span style=\"box-sizing: border-box\"><br/></span>美观性:构图饱满,造型生动,色彩和谐;<span style=\"box-sizing: border-box\"><br/></span>品牌性:充分符合粤西文化的特性;<span style=\"box-sizing: border-box\"><br/></span>应用性:形象易于生产及延展。<span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">八、<span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">版权说明</span></span><span style=\"box-sizing: border-box;font-size: 14px;font-family: 仿宋_GB2312\"><br/></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(一)应征作品如涉及著作权、版权纠纷等法律问题,由作者本人负责。所有应征作品不得侵犯他人知识产权,一经发现,将取消资格,如已发放奖金即原额追回。由此引发的纠纷,其法律和民事责任均由应征者承担。<span style=\"box-sizing: border-box\"><br/></span>(二)最佳设计奖及优秀设计奖作品如经采用,则视为应征者同意主办单位拥有对该作品的知识产权(包括著作权、商标权),应征者不得再转让第三方或用于产品开发。主办单位有权对该作品进行修改、使用、开发表情包及其他周边产品,并有权向行政主管部门申请商标注册。<span style=\"box-sizing: border-box\"><br/></span>(三)除设立的奖项外,其它所有参赛作品,主办方有优先获得版权权利。<span style=\"box-sizing: border-box\"><br/></span>(四)投稿者需保留高精度的符合设计规范的电子稿原件,以便获选后提供给主办单位。<span style=\"box-sizing: border-box\"><br/></span>(五)本活动最终解释权归主办单位所有,凡投稿者均视为认可本公告内容。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">九、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">作品提交</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 76px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312;background: lightgrey\">(</span></span></span></a><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">一)</span></span></span></span><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">平面设计作品</span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"></span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 76px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">网上电子文档提交:参赛作品申报表、设计稿相关文件,文件格式为<span style=\"box-sizing: border-box\">JPG</span>,色彩模式<span style=\"box-sizing: border-box\">CMYK</span>,规格<span style=\"box-sizing: border-box\">A3</span>(<span style=\"box-sizing: border-box\">297*420mm</span>),分辨率不低于<span style=\"box-sizing: border-box\">300dpi</span>。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 76px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">纸质文档提交:参赛作品申报表一份、作品资料一式三份,规格<span style=\"box-sizing: border-box\">A3</span>(<span style=\"box-sizing: border-box\">297*420mm</span>)彩色打印文件,精度不低于<span style=\"box-sizing: border-box\">300dpi</span>。<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(二)实物作品</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 76px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">网上电子文档提交:参赛作品申报表、视频,图片要求多角度、有参照物、能体现作品原貌,并标注作品尺寸(长×宽×高<span style=\"box-sizing: border-box\">cm</span>),图片电子文件统一为<span style=\"box-sizing: border-box\">JPG</span>格式,色彩模式<span style=\"box-sizing: border-box\">CMYK</span>,分辨率不低于<span style=\"box-sizing: border-box\">300dpi</span>,文件大小不超过<span style=\"box-sizing: border-box\">5M</span>,图片数量不少于<span style=\"box-sizing: border-box\">5</span>张。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 76px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">参赛作品原作或模型需自制实木材质的外包装箱,要求坚固,便于搬运,贴统一标签(参赛作品申报表)。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 56px\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(三)视频作品</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 76px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">视频长度不超<span style=\"box-sizing: border-box\">3</span>分钟,<span style=\"box-sizing: border-box\">MP4</span>格式;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 76px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">画质清晰,标清分辨率<span style=\"box-sizing: border-box\">720*576</span>;高清分辨率<span style=\"box-sizing: border-box\">1280*720</span>;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 76px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">按主题+姓名+联系方式投递。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">十、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">奖项设置</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 0\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(一)好心文化·</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">文化创意设计大赛</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 19px;background: white\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">实物奖:</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【最佳作品奖】<span style=\"box-sizing: border-box\">1</span>名,颁发奖金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【最具创意奖】<span style=\"box-sizing: border-box\">2</span>名,颁发奖金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【优秀入围奖】<span style=\"box-sizing: border-box\">5</span>名,颁发资金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">平面作品奖:</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【最佳作品奖】<span style=\"box-sizing: border-box\">1</span>名,颁发奖金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【最具创意奖】<span style=\"box-sizing: border-box\">2</span>名,颁发奖金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【优秀入围奖】<span style=\"box-sizing: border-box\">5</span>名,颁发资金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"> </span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(二)好心茂名·双创公益传播短视频大赛</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 19px;background: white\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">主题:美丽家乡·滨海绿城</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【最佳作品奖】<span style=\"box-sizing: border-box\">1</span>名,颁发奖金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【最具创意奖】<span style=\"box-sizing: border-box\">2</span>名,颁发奖金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 0;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">【优秀入围奖】<span style=\"box-sizing: border-box\">5</span>名,颁发资金<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span>元<span style=\"box-sizing: border-box\">+</span>证书;</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">获奖作品将获得大赛主办单位颁发的证书和奖金,奖金为税前金额,个税由获奖者按规定自行缴纳。<span style=\"box-sizing: border-box;color: rgb(25, 25, 25)\">最终得奖名额将视参赛作品质量与数量等实际情况调整,以公布结果为准。</span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">十一、<span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">作品评审</span></span></span></a></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(一)评审时间:<span style=\"box-sizing: border-box\">2019</span>年<span style=\"box-sizing: border-box\">6</span>月</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(二)评选规则</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 56px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、设计构思有新意,创意设计作品让人过目不忘。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 56px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、符合文创品牌调性,结合区域特点,具有很强的大众接受度。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 56px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、图形、色彩、布局符合审美要求。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 56px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">4</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、设计作品具有很强的可延展性和周边应用可行性。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 56px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">5</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">、作品易于传播,能区域代表性,能产生强烈的印象关联</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(二)评审公示</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">为保障大赛的公平、公正、公开,大赛对获奖作品除在专设的公开场馆展示外,还将在大赛指定官网、官微公示,接受社会与公众的监督、评议,公示时间为<span style=\"box-sizing: border-box\">10</span>个工作日。如有异议,提出者须在公示期内以实名向大赛主办方提出,同时必须提供相应的证据(如抄袭作品来源的复印件等)。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">十二、<span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">相关活动</span></span></span></a></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">文创大赛期间将举办文创沙龙、创意市集、获奖作品展演、项目孵化等相关主题活动,具体时间另行通知。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">十三、<span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">监督机制</span></span></span></a></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(一)大赛小组做好大赛各环节监督工作,根据情况派员参加大赛各环节现场监督。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(二)向社会公布举报方式,受理各类举报。在获奖作品公示期间,如发现参赛作品有抄袭、剽窃或侵犯他人知识产权等情况的,将组织专家进行调查、甄别和审议,如确认属实,立即取消参赛或获奖资格。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 37px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">(三)如发现大赛有徇私舞弊、破坏比赛公平和公正以及其它违法违纪行为的,经大赛小组核实后依法处理。</span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">十四、<span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">联系方式</span></span></span></a></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;text-indent: 56px;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">大赛活动组委会地址:<span style=\"text-decoration:underline;\">茂名市茂南区光华南路<span style=\"box-sizing: border-box\">178</span>号南越<span style=\"box-sizing: border-box\">1959</span>文创街。</span> 联系人:<span style=\"text-decoration:underline;\"> 彭顺<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>联系电话:<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"> 18926707073<span style=\"box-sizing: border-box\"> </span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">邮箱:<span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"> [email protected]<span style=\"box-sizing: border-box\"> </span></span></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background: white\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"><br/></span></span></span></span></p><p class=\"MsoListParagraph\" style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\">十五、<span style=\"box-sizing: border-box\"> </span></span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">大赛组委会对本次大赛和评奖保留最终的解释权。</span></span></span></a><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 40px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">附<span style=\"box-sizing: border-box\">: </span>广东(茂名)首届文化创意设计大赛参赛作品申报表</span></span></a></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 40px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋_GB2312\">点击下载:</span></span></a></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 40px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><a style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"></a><a href=\"http://www.mmvtc.cn/upload/2019/0319/20190319043254-6868588877879411294.docx\" style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\">广东(茂名)首届文化创意设计大赛</a></p><p><br/></p>', '', '/computer/images/blneusjydwrcvqatfmphxkozig1558588880.jpeg', '测试', '管理员', 0, 0, 1, 0, 38, 15, 1558502843, 1558590882);
INSERT INTO `news` VALUES (200, 'PowerPoint制作大赛圆满落幕', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">年<span style=\"box-sizing: border-box\">4</span>月<span style=\"box-sizing: border-box\">26</span>日,茂名职业技术学院<span style=\"box-sizing: border-box\">PowerPoint</span>制作大赛总决赛在南校区教学楼<span style=\"box-sizing: border-box\">2</span>栋<span style=\"box-sizing: border-box\">304</span>隆重举行。出席决赛的嘉宾有计算机工程系主任、党总支副书记周洁文、大二辅导员李海超、大一辅导员邬广钦、冼浪老师、陈桥君老师、梁伟东老师、罗俭老师。院团委、院学生会、学生助理团、以及各兄弟系和学院广播站的代表。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">本次活动以“只有一个地球”为主题,面对全院学生收集作品。经过初赛的重重筛选,最终有<span style=\"box-sizing: border-box\">10</span>位选手突围而出,进入决赛。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">本次大赛的举办,是为了丰富学生的课余生活,同时为了响应国家的“十三五”生态环境保护规划,所以特举办以“只有一个地球”为主题的<span style=\"box-sizing: border-box\">ppt</span>制作大赛,以此激发同学们对生态环境的重视及关注,同时也锻炼了同学们的文字和口头的表达能力。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">主旨在于生态环境的问题日益严峻,我们不可以忽略这一重要问题,作为一名当代的大学生,我们应该了解国家颁布的每一条国家的专项规划,提高自身的政治素养。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">决赛现场经过选手们的激烈角逐,最终排名如下:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">一等奖:袁奇园</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">二等奖:邓智、李观华</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">三等奖:陈楚燕、江水珍、林晓纯</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\">优秀奖:李永鸿、李肖妹、张志诚、黄绮晴</span></p><p style=\"text-align: center;\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 仿宋\"><img src=\"/computer/images/1558502892.png\" title=\"1558502892.png\" alt=\"30.png\"/></span></p><p><br/></p>', '/computer/images/ljweksoybqnfzputiadcmvxghr1558502914.png', '', '测试', '管理员', 0, 0, 1, 3, 38, 15, 1558502914, 1558599866);
INSERT INTO `news` VALUES (201, '关于《2019年广东省高校毕业生“三支一扶”计划实施工作方案》的通知', '测试', '<p>各位同学:</p><p> 现将《2019年广东省高校毕业生“三支一扶”计划实施工作方案》的通知转发到各班,请各位有兴趣同学们认真查阅《通知》的内容,特别要注意每一个时间节点需要做的事情(特别是提交审核所需的相关材料)。</p><p> 如有疑问,直接联系大三辅导员何林老师。</p><p> </p><p> </p><p><a href=\"http://www.mmvtc.cn/upload/2019/0511/201905111240507646164371760490459.rar\" style=\"box-sizing: border-box; color: rgb(0, 140, 186); line-height: inherit; text-decoration-line: none;\">《2019年广东省高校毕业生“三支一扶”计划实施工作方案》的通知</a></p><p><br/></p>', '', '/computer/images/sbhemktuvqridyxfzcwjgpalno1558588888.jpeg', '测试', '管理员', 0, 0, 1, 3, 40, 15, 1558503160, 1558590878);
INSERT INTO `news` VALUES (202, '紧急!关于毕业生升学(专插本)网上申请通知', '测试', '<p>各班班长:</p><p> 请各班长通知本班参加专插本并且已考过的同学,于5月16日前登陆大学生就业在线网站(<a href=\"http://job.gd.gov.cn/\" style=\"box-sizing: border-box; color: rgb(0, 140, 186); line-height: inherit; text-decoration-line: none;\">http://job.gd.gov.cn/</a>)进行申请(具体操作见附件),并收集好学生的录取通知书(扫描件),于5月16日前报给大三辅导员何林(注:逾期不报将会影响学生本人的派遣问题)。</p><p> </p><p><a href=\"http://www.mmvtc.cn/upload/2019/0511/201905111233052453810678855387228.doc\" style=\"box-sizing: border-box; color: rgb(0, 140, 186); line-height: inherit; text-decoration-line: none;\">毕业生升学(转插本)网上申请操作说明</a></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 40, 15, 1558503194, 1558588766);
INSERT INTO `news` VALUES (203, '关于举行“校园足球力量 ——茂职院校园足球摄影比赛”的通知', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 24px;font-family: 宋体\">关于举行“校园足球力量</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 24px;font-family: 宋体\">——茂职院校园足球摄影比赛”的通知</span></span></p><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 23.3333px\"> </span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">为了贯彻教育部“大力宣传发展青少年校园足球发展理念、育人功能,校园足球文化和先进经验做法”的总体要求,根据广东省教育厅关于开展“全国青少年校园足球摄影展”的通知内容及要求,也为更好提升学院校园文化内涵建设,学院决定举办“校园足球力量——茂职院校园足球摄影比赛”,请学院摄影协会或摄影爱好者结合<span style=\"box-sizing: border-box\">4-5</span>月份茂职院女子足球赛和茂职院“足协杯”足球赛两个赛事、以及学院开展的足球训练或足球课等一系列校园足球活动,积极了解比赛赛程和足球训练课安排,按照附件投稿要求,拍摄优秀作品,报送学院足球协会。</span></h1><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 123px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">附件:“校园足球力量——茂职院校园足球摄影”比赛规程</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\"> </span></p><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span></span><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">社科基础部</span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span>2019</span><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">年<span style=\"box-sizing: border-box\">4</span>月<span style=\"box-sizing: border-box\">9</span>日</span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\"> </span></h1><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 20px\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 20px;font-family: 宋体\">附件</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 24px;font-family: 宋体\"> </span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 24px;font-family: 宋体\">“校园足球力量——茂职院校园足球摄影”比赛规程</span></span></p><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 23.3333px\"> </span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 黑体\">一、举办单位:</span><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">茂名职业技术学院</span></h1><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 黑体\">二、承办单位:</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">社科基础部</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 黑体\">三、协办单位:</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">院足球协会、院摄影协会</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 32px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 黑体\">四、参赛作品的格式要求及规定</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">1</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">、摄影作品:参展作品必须是原创作品,必须保留数码照片摄影信息(日期及比赛名称等),否则视为无效。参展作品为<span style=\"box-sizing: border-box\">JPG</span>格式,图片单边不小于<span style=\"box-sizing: border-box\">3000</span>像素。单张照片命名为“作品名称<span style=\"box-sizing: border-box\">+</span>作者姓名<span style=\"box-sizing: border-box\">+</span>联系电话<span style=\"box-sizing: border-box\">+</span>展示内容类别”。组照不超<span style=\"box-sizing: border-box\">8</span>张,要统一主题,以文件夹形式打包命名,命名形式同单幅作品一致,其中每张照片需标明顺序。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">2</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">、摄像(视频)作品:参展作品可以是纪录片(<span style=\"box-sizing: border-box\">10</span>分钟以内)、剧情片(<span style=\"box-sizing: border-box\">10</span>分钟以内)、宣传片(<span style=\"box-sizing: border-box\">3</span>分钟以内),三种中的一种,每件作品均需提交<span style=\"box-sizing: border-box\">MP4</span>、<span style=\"box-sizing: border-box\">MOV</span>、<span style=\"box-sizing: border-box\">AVI</span>或<span style=\"box-sizing: border-box\">VOB</span>、<span style=\"box-sizing: border-box\">MPEG</span>等常用视频格式(不压缩,像素比例为高清<span style=\"box-sizing: border-box\">1920*1080</span>)和<span style=\"box-sizing: border-box\">FLV</span>格式(<span style=\"box-sizing: border-box\">FLV</span>格式视频大小不要超过<span style=\"box-sizing: border-box\">200</span>兆)两种,同时配以中文字幕,包括片头、片尾、字幕、摄影作品以“作品名称<span style=\"box-sizing: border-box\">+</span>作者姓名<span style=\"box-sizing: border-box\">+</span>联系电话<span style=\"box-sizing: border-box\">+</span>展示内容类别”命名。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">3</span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">、所有参赛作品,参评者拥有其版权,主办方拥有使用权,可能用于校园足球的宣传和复制后制作画册、宣传册等印刷品使用。主办方拥有本次征集活动的最终解释权。</span></p><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 黑体\">五、摄影比赛奖励</span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">摄影一等奖<span style=\"box-sizing: border-box\">1</span>名,奖金<span style=\"box-sizing: border-box\">150</span>元,颁发证书;</span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">摄影二等奖<span style=\"box-sizing: border-box\">1</span>名,奖金<span style=\"box-sizing: border-box\">100</span>元,颁发证书;</span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">摄影三等奖<span style=\"box-sizing: border-box\">1</span>名,奖金<span style=\"box-sizing: border-box\">50</span>元,颁发证书;</span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">摄影纪念奖若干,纪念品一份。</span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 黑体\">六、摄影作品投递处:</span><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">南校区:崔世孝:<span style=\"box-sizing: border-box\">15766400726</span></span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 245px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">北校区:徐清风:<span style=\"box-sizing: border-box\">18022834597</span></span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 黑体\">七、投递时间:</span><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">“足协杯”赛事结束后,约<span style=\"box-sizing: border-box\">5</span>月<span style=\"box-sizing: border-box\">31</span>日前。</span></h1><h1 style=\"box-sizing: border-box;padding: 0px;color: rgb(34, 34, 34);font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-weight: normal;line-height: 55px;text-rendering: optimizelegibility;font-size: 2.75rem;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 黑体\">八、指导教师:</span><span style=\"box-sizing: border-box;font-size: 21px;line-height: 26.6667px;font-family: 仿宋_GB2312\">王雅杰(足球协会指导教师)</span></h1><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span></span><span style=\"box-sizing: border-box;font-size: 21px;font-family: 仿宋_GB2312\">李梓萌(摄影协会指导教师)</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 40, 15, 1558503237, 1558588767);
INSERT INTO `news` VALUES (205, '茂名联通在我院开展“5G技术及应用”专题讲座', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 38px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年<span style=\"box-sizing: border-box\">3</span>月<span style=\"box-sizing: border-box\">27</span>日晚上<span style=\"box-sizing: border-box\">19:00-21:00</span>在南校区学术报告厅由中国联合网络通信有限公司茂名市分公司副总经理邓安民开设题为<span style=\"box-sizing: border-box\">“5G</span>技术及应用<span style=\"box-sizing: border-box\">”</span>专题讲座,现场还将有真实的<span style=\"box-sizing: border-box\">5G</span>演示设备和答疑。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 38px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">邓总本科毕业于南京邮电学院无线通信专业,研究生毕业于华南理工大学电子与通信工程专业,获得了工程硕士的职称。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 38px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">邓总先后在汕头联通、广东省联通公司及茂名联通就职,现在茂名联通主要分管网络建设及规划。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 38px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">邓总负责的“新型室分天线”项目获得中国联通总部科技创新一等奖及工信部一等奖;同时新型室分天线获得了国家发明专项<span style=\"box-sizing: border-box\">2</span>项及国际发明专利<span style=\"box-sizing: border-box\">1</span>项;另外他负责的“室分平台”项目获得中国联通总部科技创新一等奖及工信部二等奖。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558503299.png\" title=\"1558503299.png\" alt=\"32.png\"/></p>', '/computer/images/tzgowhymjidsnfvxuapebqkcrl1558503320.png', '/computer/images/fgbencsakwxuljtvpdqzyhmroi1558522105.png', '测试', '管理员', 0, 0, 1, 0, 40, 15, 1558503320, 1558522105);
INSERT INTO `news` VALUES (206, '结核病防治核心信息及知识要点', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">一、肺结核是长期严重危害人民健康的慢性传染病</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.结核病又叫“癆病”,由结核杆菌引起,主要侵害人体肺部,发生肺结核。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核在我国法定报告甲乙类传染病中发病和死亡数排在第</span><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">位。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.得了肺结核如发现不及时,治疗不彻底,会对健康造成严重危害,甚至可引起呼吸衰竭和死亡,给患者和家庭带来沉重的经济负担。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">二、肺结核主要通过呼吸道传播,人人都有可能被感染</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核是呼吸道传染病,很容易发生传播。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核病人通过咳嗽、咳痰、打喷嚏将结核菌播散到空气中,健康人吸入带有结核菌的飞沫即可能受到感染。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.与肺结核病人共同居住,同室工作、学习的人都是肺结核病人的密切接触者,有可能感染结核菌,应及时到医院去检查排除。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">4</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.艾滋病毒感染者、免疫力低下者、糖尿病病人、尘肺病人、老年人等都是容易发病的人群,应每年定期进行结核病检査。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">三、咳嗽、咳痰</span><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">周以上,应怀疑得了肺结核,要及时就诊</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核的常见症状是咳嗽、咳痰、如果这些症状持续</span><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">周以上,应高度怀疑得了肺结核,要及时到医院看病。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核还会伴有痰中带血、低烧、夜间出汗、午后发热、胸痛、疲乏无力、体重减轻、呼吸困难等症状</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.怀疑得了肺结核、要及时到当地结核病定点医疗机构就诊,市、区均设有结核病定点医疗机构。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">四、不随地吐痰,咳嗽、打喷嚏时掩口鼻,戴口罩可以减少肺结核的传播</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核病入咳嗽、打喷嚏时,应避让他人、遮掩口鼻。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核病人不要随地吐痰,要将痰液吐在有消毒液的带盖痰盂里;不方便时可将痰吐在消毒湿纸巾或密封痰袋里。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核病人尽量不去人群密集的公共场所、如必须去,应当佩戴口罩。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">4</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.居家治疗的肺结核病人,应尽量与他人分室居住,保持居室通风,佩戴口單,避免家人被感染。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">5</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核可防可治。加强营养,提高人体抵抗力,有助于预防肺结核。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">五、规范全程治疗,绝大多数患者可以治愈,还可避免传染他人</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核治疗全程为</span><span style=\"box-sizing: border-box;font-size: 19px\">6</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">-</span><span style=\"box-sizing: border-box;font-size: 19px\">8</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">个月,耐药肺结核治疗全程为</span><span style=\"box-sizing: border-box;font-size: 19px\">18</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">-</span><span style=\"box-sizing: border-box;font-size: 19px\">24</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">个月。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.按医生要求规范治疗,绝大多数肺结核病人都可以治愈。自己恢复健康,同时保护家人。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">.肺结核病人如果不规范治疗,容易产生耐药肺结核。病人一旦耐药,治愈率低,治疗费用高,社会危害大。</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 40, 15, 1558503342, 1558588764);
INSERT INTO `news` VALUES (207, '茂名职业技术学院计算机工程系学生请假条例', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 29px;line-height: 44px;font-family: 楷体_GB2312\">计算机工程系学生请假条例</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">为了加强我系学生工作管理,规范学生请假行为,特制定本制度。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">第一条 请假分为病假、事假、公假三种。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 49px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">事假:因家庭发生重大变故或事情无法在校继续上课而提出的请假,需学生和家长共同提出请假申请。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 48px\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">病假:因身体不适而提出的请假,需提供病历等材料证明。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 48px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">公假:因参加系部或学校重大活动而提出的请假,需提供相关活动材料证明。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">第二条 请假需提前办好手续,一般情况下不允许事后补办。如因身体情况不能及时办理请假手续,需及时与班主任或辅导员进行短信请假,事后提供相关真实资料进行补办手续,。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">第三条 请假程序。一、请假的同学请自行打印请假单并填写好。学生请假一天内由班主任审批;学生请假一天以上,三天以下由班主任和辅导员审批;学生请假三天以上由班主任、辅导员、系部领导审批。审批程序先班主任,再辅导员,后系部领导。二、凡请假两天以上的同学需到<span style=\"box-sizing: border-box\">6-500</span>办公室进行请假登记。三、请假登记的同学回校后需到<span style=\"box-sizing: border-box\">6-500</span>办公室进行销假登记。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">第四条 请假单填写审批后交由班长保管,班长做好登记,并在上课前与任课老师沟通并出示请假条。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">第五条<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>请假节数不得超过学期总课时百分之十,如超百分之十,将对相关同学进行劝退。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">第六条<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>学生请假期满无法返校,必须由家长亲自打电话给班主任或辅导员解析原因,获批方可进行续假手续。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 56px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">第七条<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>国家公众假期前后不得以任何理由进行请假。<span style=\"box-sizing: border-box\"><br/><br/></span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 64px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">第八条<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>上课期间,学生因病或者因事临时请假,可直接向当堂任课老师请假,任课老师视具体情况是否批假,必须办理完请假手续方可离开课堂,班长及时报告班主任。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 57px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"><span style=\"box-sizing: border-box\">第九条<span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">若学生违反请假制度,按旷课处理,旷课节数按每天实际所上节数计算。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"> </span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 57px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\"><span style=\"box-sizing: border-box\">第十条<span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;font-size: 16px;line-height: 24px;font-family: 楷体_GB2312\">学生请假理由必须真实,严禁弄虚作假,将按学生手册相关规定进行纪律处分,进行全系通报并按旷课处理。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 57px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;text-align: center\"><span style=\"font-family:楷体_GB2312\"> </span><span style=\"box-sizing: border-box;font-weight: bold;font-size: 21px;font-family: 黑体\">请<span style=\"box-sizing: border-box\"> </span>假<span style=\"box-sizing: border-box\"> </span>条</span></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;margin-left: 57px;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102);text-align: center\"><span style=\"box-sizing: border-box;font-family: 黑体\"><span style=\"box-sizing: border-box;font-size: 21.3333px\"> </span>(<span style=\"box-sizing: border-box\">2018</span>年<span style=\"box-sizing: border-box\">9</span>月<span style=\"box-sizing: border-box\">1</span>日起实施)</span></span></p><table width=\"624\"><tbody style=\"box-sizing: border-box\"><tr style=\"box-sizing: border-box;height: 47px\" class=\"firstRow\"><td width=\"115\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-width: 1px; border-color: windowtext;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">班<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>级</span></span></p></td><td width=\"132\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top-width: 1px; border-top-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left: none;\"><br/></td><td width=\"89\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top-width: 1px; border-top-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left: none;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center;text-indent: 8px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">姓 名</span></span></p></td><td width=\"132\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top-width: 1px; border-top-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left: none;\"><br/></td><td width=\"60\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top-width: 1px; border-top-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left: none;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">宿 舍</span></span></p></td><td width=\"96\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top-width: 1px; border-top-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left: none;\"><br/></td></tr><tr style=\"box-sizing: border-box;background: rgb(249, 249, 249);height: 48px\"><td width=\"115\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left-width: 1px; border-left-color: windowtext; border-top: none;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">本人电话</span></span></p></td><td width=\"132\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top: none; border-left: none; border-bottom-width: 1px; border-bottom-color: windowtext; border-right-width: 1px; border-right-color: windowtext;\"><br/></td><td width=\"89\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top: none; border-left: none; border-bottom-width: 1px; border-bottom-color: windowtext; border-right-width: 1px; border-right-color: windowtext;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">家庭电话</span></span></p></td><td width=\"288\" colspan=\"3\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top: none; border-left: none; border-bottom-width: 1px; border-bottom-color: windowtext; border-right-width: 1px; border-right-color: windowtext;\"><br/></td></tr><tr style=\"box-sizing: border-box;height: 31px\"><td width=\"115\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left-width: 1px; border-left-color: windowtext; border-top: none;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">起 止 时 间</span></span></p></td><td width=\"509\" colspan=\"5\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top: none; border-left: none; border-bottom-width: 1px; border-bottom-color: windowtext; border-right-width: 1px; border-right-color: windowtext;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体\"><span style=\"box-sizing: border-box\"> </span></span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体\">年<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>月<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>日 第<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>节 ~<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>年<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>月<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>日第<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>节</span></p></td></tr><tr style=\"box-sizing: border-box;background: rgb(249, 249, 249);height: 162px\"><td width=\"115\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left-width: 1px; border-left-color: windowtext; border-top: none;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center;text-indent: 16px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">请<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>假</span></span></p><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center;text-indent: 16px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">原<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>因</span></span></p></td><td width=\"509\" colspan=\"5\" valign=\"top\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top: none; border-left: none; border-bottom-width: 1px; border-bottom-color: windowtext; border-right-width: 1px; border-right-color: windowtext;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 黑体\"><br/><br/></span></span></p><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 黑体\"> </span></span></p><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 黑体\"> </span></span></p><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 黑体\"> </span></span></p><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 16px;text-rendering: optimizelegibility;text-indent: 27px\"><span style=\"box-sizing: border-box;font-family: 仿宋_GB2312\">本人做到假期满后即返校并于当天到班主任和系里办理销假手续,否则第二天起同意按旷课处理。</span></p><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 16px;text-rendering: optimizelegibility;text-align: center;text-indent: 39px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\">请假人:<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>年<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>月<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>日</span></p></td></tr><tr style=\"box-sizing: border-box;height: 84px\"><td width=\"115\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left-width: 1px; border-left-color: windowtext; border-top: none;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">班主任意见</span></span></p></td><td width=\"509\" colspan=\"5\" valign=\"bottom\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top: none; border-left: none; border-bottom-width: 1px; border-bottom-color: windowtext; border-right-width: 1px; border-right-color: windowtext;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: right\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span></span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\">签<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>名:<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>年<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>月<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>日</span></p></td></tr><tr style=\"box-sizing: border-box;background: rgb(249, 249, 249);height: 85px\"><td width=\"115\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left-width: 1px; border-left-color: windowtext; border-top: none;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">辅导员意见</span></span></p></td><td width=\"509\" colspan=\"5\" valign=\"bottom\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top: none; border-left: none; border-bottom-width: 1px; border-bottom-color: windowtext; border-right-width: 1px; border-right-color: windowtext;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: right\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span></span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\">签<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>名:<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>年<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>月<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>日</span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p></td></tr><tr style=\"box-sizing: border-box;height: 140px\"><td width=\"115\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-right-width: 1px; border-right-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext; border-left-width: 1px; border-left-color: windowtext; border-top: none;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: center\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 黑体\">系部领导意见</span></span></p></td><td width=\"509\" colspan=\"5\" valign=\"bottom\" style=\"box-sizing: border-box; padding: 0px 7px; color: rgb(34, 34, 34); font-size: 0.875rem; line-height: 1.125rem; border-top: none; border-left: none; border-bottom-width: 1px; border-bottom-color: windowtext; border-right-width: 1px; border-right-color: windowtext;\"><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: right\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span></span></p><p style=\"box-sizing: border-box;margin-bottom: 1.25rem;font-family: inherit;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;text-align: right\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\"><span style=\"box-sizing: border-box\"> </span></span><span style=\"box-sizing: border-box;font-size: 16px;font-family: 仿宋_GB2312\">签<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>名:<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>年<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>月<span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span></span>日</span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p></td></tr></tbody></table><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"text-decoration:underline;\"><span style=\"box-sizing: border-box\"><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span><span style=\"box-sizing: border-box\"> </span></span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 16px;font-family: 宋体\">计算机工程系</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 16px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 24px\"><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">凡事必须事先请假,事后一律不予补假,病假请附病例单;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 16px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 24px\"><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">请假</span><span style=\"box-sizing: border-box;font-size: 12px\">1</span><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">天以内(含</span><span style=\"box-sizing: border-box;font-size: 12px\">1</span><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">天)由班主任批准及备案,回校后联系班主任销假;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 16px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 24px\"><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">请假</span><span style=\"box-sizing: border-box;font-size: 12px\">1</span><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">天以上,三天以下(含</span><span style=\"box-sizing: border-box;font-size: 12px\">3</span><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">天)由班主任、辅导员批准及备案(系部学生管理工作处),回校后销假;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 16px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 24px\"><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">请假</span><span style=\"box-sizing: border-box;font-size: 12px\">3</span><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">天以上由班主任、辅导员、系部领导批准及备案(</span><span style=\"box-sizing: border-box;font-size: 12px\">6-500</span><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">办公室),回校后销假;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 16px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 24px\"><span style=\"box-sizing: border-box;font-size: 12px;font-family: 宋体\">请假条审批通过后由班长保管,作为任课教师考勤依据。</span></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 1, 40, 15, 1558503366, 1558590843);
INSERT INTO `news` VALUES (208, '教研室介绍', '测试', '<p>茂名职业技术学院计算机工程系拥有24个顶配教学机房,其中拥有一个苹果电脑大机房</p>', '', '', '测试', '管理员', 1, 0, 1, 1, 29, 15, 1558577317, 1558591551);
INSERT INTO `news` VALUES (209, '工作室介绍', '测试', '<p style=\"text-align: center;\"><span style=\"text-align: center;\">web前端开发工作室</span></p><p style=\"text-align: center;\">新媒体工作室</p><p style=\"text-align: center;\">沈大旺工作室</p><p style=\"text-align: center;\">羡之良影工作室</p><p style=\"text-align: center;\">悦视文化工作室</p><p><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 31, 15, 1558577633, 1558591096);
INSERT INTO `news` VALUES (210, '茂名职业技术学院教务管理系统', '测试', '<p><a href=\"http://jwc.mmvtc.cn/\" target=\"_blank\" title=\"茂名职业技术学院教务管理系统\">茂名职业技术学院教务管理系统</a><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 31, 15, 1558578168, 1558591093);
INSERT INTO `news` VALUES (211, '优秀作品', '测试', '<p>茂名职业技术学院网站设计作品无数</p>', '', '', '测试', '管理员', 1, 0, 1, 0, 31, 15, 1558578331, 1558591087);
INSERT INTO `news` VALUES (212, 'i自愿链接', '测试', '<p><a href=\"https://www.gdzyz.cn/index\" target=\"_self\" title=\"i自愿\">打开i自愿</a><br/></p>', '', '/computer/images/fcomeyqghkinzabudxwjtsrpvl1558588860.jpeg', '测试', '管理员', 1, 0, 1, 2, 33, 15, 1558578650, 1558599208);
INSERT INTO `news` VALUES (213, '智慧团建链接', '测试', '<p><a href=\"https://tuan.12355.net/\" target=\"_self\" title=\"智慧团建\">打开智慧团建</a></p>', '', '', '测试', '管理员', 1, 0, 1, 1, 33, 15, 1558578749, 1558599838);
INSERT INTO `news` VALUES (215, '优秀校友', '测试', '<p style=\"text-align: center;\"><span style=\"font-size: 12px;text-align: center;font-family: 宋体\"><span style=\"font-family: 宋体; font-size: 12px; text-align: center;\"><img src=\"/computer/images/1558579131123759.jpg\" title=\"1558579131123759.jpg\" alt=\"1.jpg\"/></span></span></p><p style=\"text-align: center;\"><span style=\"font-size: 12px;text-align: center;font-family: 宋体\"><span style=\"font-family: 宋体; font-size: 12px; text-align: center;\">谭俭荣:</span>阳江市英雷发展有限公司董事长、校友谭俭荣、刘宇亮夫妇向校友基金捐赠</span><span style=\"font-family: 'Microsoft YaHei';font-size: 12px;text-align: center;\">5</span><span style=\"font-size: 12px;text-align: center;font-family: 宋体\">万元。图为梁德萍副院长代表学院接受捐赠。</span></p><p style=\"text-align: center;\"><span style=\"font-size: 12px;text-align: center;font-family: 宋体\"><img src=\"/computer/images/1558579211816312.png\" title=\"1558579211816312.png\" alt=\"2.png\"/></span></p><h1 style=\"padding: 0px; margin: auto 0cm; font-family: "Microsoft YaHei"; white-space: normal; text-align: justify; background: white;\"><span style=\"font-family:宋体\"><span style=\"font-weight: normal;\"><span style=\"font-size:16px\"> 校友谢达明、李建章、王秋喜、谭俭荣等一行十多人回母校参加“校友杯”羽毛球赛并为校友基金捐款。</span></span></span></h1><p style=\"text-align: center;\"><span style=\"font-family:宋体\"><span style=\"font-weight: normal;\"><span style=\"font-size:16px\"><img src=\"/computer/images/1558579252343221.png\" title=\"1558579252343221.png\" alt=\"3.png\"/></span></span></span></p><p style=\"text-align: center;\"><span style=\"font-family:宋体\"><span style=\"font-weight: normal;\"><span style=\"font-size:16px\"><span style=\"font-family: 宋体;font-size: 16px;text-align: center;background-color: rgb(255, 255, 255)\">1990</span><span style=\"font-family: 宋体;font-size: 16px;text-align: center;background-color: rgb(255, 255, 255)\">届建工班校友王秋喜作“茂名职业技术学院优秀校友报告会”。</span></span></span></span></p><p style=\"text-align: center;\"><span style=\"font-size: 12px;text-align: center;font-family: 宋体\"></span> <img src=\"/computer/images/1558579293121065.jpg\" title=\"1558579293121065.jpg\" alt=\"4.jpg\"/></p><p style=\"padding: 0px;font-family: 仿宋_GB2312;text-align: center;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"font-size: 16px\">杨奎章 广西柏兴建设投资有限公司董事长</span></p><p style=\"padding: 0px;font-family: 仿宋_GB2312;text-align: center;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 112px\"><span style=\"font-size: 16px\">广西南宁市茂名商会常务副会长</span></p><p style=\"padding: 0px;font-family: 仿宋_GB2312;text-align: center;white-space: normal;background-color: rgb(255, 255, 255);text-indent: 112px\"><span style=\"font-size: 16px\">1996</span><span style=\"font-size: 16px\">届建筑工程技术班校友</span></p><p><span style=\"font-size: 12px;text-align: center;font-family: 宋体\"><br/></span></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 34, 15, 1558579316, 1558591411);
INSERT INTO `news` VALUES (216, '校企合作', '测试', '<p style=\"text-align: center;\"><span style=\"color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: 700; text-align: center; background-color: rgb(248, 248, 248);\">广州云积软件技术有限公司2018校园招聘</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 宋体;line-height: 32px\">一、公司简介</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">广州云积软件技术有限公司位于广州萝岗区广东软件科学园区,是一家软件企业、高新技术企业,</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">2017</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">年入选广州开发区“瞪羚企业”,</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">2018</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">年入库广东省科学技术厅科技型中小企业。公司已通过</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">ISO9001</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">、</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">ISO20000</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">、</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">GB/T22080</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">、</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">GB/T24001</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">、</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">GB/T27001</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">、</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">GB/T28001</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">等系列认证,获得“基于大数据巡考互联和智能分析平台”科技成果证书,拥有多项软件著作权、发明专利。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">公司以科技促进教育均衡为使命,成为国内领先的考试教育服务提供商,公司以视频、物联网技术为核心,融合考试大数据技术,为智慧校园管理提供解决方案,为教研、教学提供</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">SAAS</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">以及大数据服务。公司秉承“干霄凌云</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\"> </span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">积厚薄发”的创业理念,致力于技术创新、产品创新和服务创新,为用户提供最优质的产品及解决方案。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">目前公司推出了云积巡考网关、云积百灵、云积教室、在线考试等系列产品,在教育行业推广应用,其中在广东省各大高校的覆盖已占</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">90%</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">,各地市的中学的安装覆盖占</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">80%</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">,合作过的有中山大学、中国地质大学、华南理工大学、暨南大学、华南师范大学等高校。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">公司除了具有竞争力的薪酬之外,还具有良好激励机制,公司拟对核心员工实施股权激励方案,与员工共同分享企业发展的成果。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 43px\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 宋体;line-height: 32px\">二、福利待遇</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin: 7px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white;text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">1.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">购买社保六险和住房公资金</span></p><p style=\"box-sizing: border-box;margin: 7px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white;text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">2.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">周末双休,国家法定节假日</span></p><p style=\"box-sizing: border-box;margin: 7px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white;text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">3.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">带薪年假<span style=\"box-sizing: border-box\">5-10</span>天</span></p><p style=\"box-sizing: border-box;margin: 7px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white;text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">4.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">不定期旅游和户外拓展活动</span></p><p style=\"box-sizing: border-box;margin: 7px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white;text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">5.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">年度健康福利体检</span></p><p style=\"box-sizing: border-box;margin: 7px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white;text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">6.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">丰富的下午茶和生日会</span></p><p style=\"box-sizing: border-box;margin: 7px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white;text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">7.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">丰富的节假日礼品</span></p><p style=\"box-sizing: border-box;margin: 7px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background: white;text-indent: 56px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">8.</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: black\">丰富多彩的俱乐部活动,包括篮球、羽毛球等活动</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">;</span><span style=\"box-sizing: border-box;font-size: 19px\"><span style=\"font-family:Calibri\"><span style=\"box-sizing: border-box\"> </span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">在这里,你有充分的空间演绎自我、演绎精彩,欢迎您的加入!</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\"> </span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">联系人:</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\"> </span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">戴小姐</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">座机:</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">13360023619 / 020-38986175</span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">E - mail</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">:</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">[email protected]</span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">官方微信号:</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">yunjisoft</span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">公司网站:</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><a href=\"http://www.yunjisoft.com.cn/\" style=\"box-sizing: border-box;color: rgb(0, 140, 186);line-height: inherit\"><span style=\"color:#0000ff;font-family:Calibri\">http://www.yunjisoft.com.cn</span></a></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 24px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 36px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">公司地址:广州萝岗区科学城彩频路</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">7</span></span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;line-height: 28px\">号广东软件园</span><span style=\"box-sizing: border-box;font-size: 19px;line-height: 28px\"><span style=\"font-family:Calibri\">202</span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;font-size: 29px\"><span style=\"font-family:Calibri\"> </span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box\"><span style=\"font-family:Calibri\"> </span></span></p><p style=\"box-sizing: border-box;margin: 10px 0 0;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 8px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 21px;font-family: 宋体;line-height: 10.6667px\">三、需招岗位:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;color: rgb(68, 68, 68)\">(一)<span style=\"box-sizing: border-box\">IT</span>技术支持工程师<span style=\"box-sizing: border-box\">3</span>个(<span style=\"box-sizing: border-box\">4k-6k)<span style=\"box-sizing: border-box\"> </span></span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">主要职责:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">负责日常安装工作,去现场调试,维护,并记录相关问题;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">负责产品使用培训并定期给客户做回访,收集产品需求和建议;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">负责维护办公室网络,以及<span style=\"box-sizing: border-box\">vm</span>、<span style=\"box-sizing: border-box\">vb</span>、<span style=\"box-sizing: border-box\">hyper-v</span>虚拟机;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">4.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">其他一些研究性工作。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位要求:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、计算机相关专业,专科及以上;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、懂<span style=\"box-sizing: border-box\">linux</span>操作系统,了解网络基础知识;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、吃苦耐劳,积极乐观,能适应出差。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">4</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、性格开朗,积极向上,善于沟通交流。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">*</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">技术服务开拓奖:针对上半年第一个推出售后服务及签订合同的员工进行奖励(过期维保等);</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">*</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">产品销售开拓奖:针对上半年第一个卖出公司产品的员工进行奖励;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">*</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">业绩优胜奖:上半年及下半年分别汇总销售业绩结果,选择最高的员工进行奖励。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;color: rgb(68, 68, 68)\">(二)<span style=\"box-sizing: border-box\">IT</span>维护工程师<span style=\"box-sizing: border-box\">5</span>个(<span style=\"box-sizing: border-box\">4-6k)<span style=\"box-sizing: border-box\"> </span></span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位职责:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">负责日常安装工作,去现场调试,维护,并记录相关问题;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">负责产品使用培训并定期给客户做回访,收集产品需求和建议;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">其他一些研究性等工作。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位要求:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、计算机相关专业,专科及以上;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、懂<span style=\"box-sizing: border-box\">linux</span>操作系统,了解网络基础知识;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、吃苦耐劳,积极乐观,能适应出差。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;color: rgb(68, 68, 68)\">(三)<span style=\"box-sizing: border-box\">Android</span>开发工程师<span style=\"box-sizing: border-box\">2</span>个(<span style=\"box-sizing: border-box\">5k-7k)</span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位职责:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、参与系统需求分析及系统设计;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、根据研发规范和项目流程编写相关的技术文档;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、根据开发流程进行设计,开发,测试,交付以满足需求。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位能要求:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、本科及以上学历,计算机相关专业;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、熟练掌握<span style=\"box-sizing: border-box\">java</span>语言,熟悉面向对象编程设计;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、精通<span style=\"box-sizing: border-box\">Android</span>开发技术<span style=\"box-sizing: border-box\">,</span>四大组件,通信协议,<span style=\"box-sizing: border-box\">TCP/IP</span>,<span style=\"box-sizing: border-box\">socket</span>,<span style=\"box-sizing: border-box\">http</span>,等协议,熟悉多线程;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">4</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、熟练使用<span style=\"box-sizing: border-box\">mvc/mvp</span>模式开发,开发过<span style=\"box-sizing: border-box\">mvc/mvp</span>模式项目;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">5</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、熟练使用以下技术者优先:<span style=\"box-sizing: border-box\">retrofit</span>,<span style=\"box-sizing: border-box\">rxjava</span>,<span style=\"box-sizing: border-box\">rxbus</span>,<span style=\"box-sizing: border-box\">glide</span>,<span style=\"box-sizing: border-box\">Native</span>编程;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;color: rgb(68, 68, 68)\">(四)售前工程师<span style=\"box-sizing: border-box\">1</span>个(<span style=\"box-sizing: border-box\">4.5k-6k)</span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位职责:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、负责公司产品的推广、宣讲、培训等工作;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、负责公司相关产品的售前解决方案制定工作;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、协助销售对客户进行售前的技术讲解、技术交流、产品演示、招标答疑工作和技术澄清等工作;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">4</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、组织收集市场产品有关的资料、竞争对手情况分析,及时提出新产品需求。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位要求:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、统招本科及以上学历,专业知识扎实,动手能力强;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、物联网、计算机、网络、汉语言文学等相关专业;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、良好的学习、沟通协调能力,较强的亲和力、责任心、团队合作意识和保密意识;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">4</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">、具备良好的条理性、逻辑性与文字表达能力,能够将方案设计进行清晰的表达,对招投标流程和应标工作内容熟悉;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-family: 宋体;color: rgb(68, 68, 68)\">(五)销售工程师<span style=\"box-sizing: border-box\"> 5</span>个(<span style=\"box-sizing: border-box\">5k-8k)<span style=\"box-sizing: border-box\"> </span></span></span></span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位职责:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">负责产品的市场渠道开拓与销售工作,执行并完成公司产品年度销售计划;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">建立和维护客户关系,形成销售合同;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">与客户保持良好沟通,实时把握客户需求,为客户提供主动、热情、满意、周到的服务;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">4.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">维护老客户和开拓新客户,自主开发及拓展终端用户。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">岗位要求:</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">1.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">大专以上,熟悉计算机网络,监控工程知识;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">2.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">具有较强的逻辑分析能力<span style=\"box-sizing: border-box\">.</span>能与产品和研发保持良好的沟通;</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">3.</span><span style=\"box-sizing: border-box;font-size: 13px;font-family: 宋体;color: rgb(68, 68, 68)\">工作认真,有责任心,为人踏实,适应性强,能承受一定工作压力。</span></p><p style=\"box-sizing: border-box;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 28px;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"> </p><p><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 34, 15, 1558579518, 1558591408);
INSERT INTO `news` VALUES (217, '招生信息', '测试', '<h3 style=\"text-align: center; font-size: 24px; margin: 60px 0px; font-family: "Microsoft YaHei", 微软雅黑, MicrosoftJhengHei; white-space: normal; background-color: rgb(255, 255, 255);\">计算机工程系及专业介绍(2019年)</h3><table align=\"center\" width=\"688\"><tbody><tr class=\"firstRow\"><td style=\"color: rgb(51, 51, 51); -webkit-font-smoothing: antialiased;\"><p><strong><span style=\"line-height: 2; font-family: SimSun; font-size: 18px;\">系部名称:计算机工程系</span></strong><br/></p></td></tr><tr><td style=\"color: rgb(51, 51, 51); -webkit-font-smoothing: antialiased;\"><p><strong><span style=\"line-height: 2; font-family: SimSun; font-size: 18px;\"><span style=\"line-height: 2;\">联系电话:</span></span></strong><strong><span style=\"line-height: 2; font-family: SimSun; font-size: 18px;\"><span style=\"line-height: 2;\">0668-2506786</span></span></strong><br/></p></td></tr><tr><td style=\"color: rgb(51, 51, 51); -webkit-font-smoothing: antialiased;\"><p style=\"font-size: 18px; color: rgb(0, 0, 0); line-height: 32px; background-color: transparent; text-align: center;\"><span style=\"line-height: 2; font-family: SimSun; background-color: transparent;\"><strong>计算机工程系招生咨询群:</strong></span></p><p style=\"font-size: 18px; color: rgb(0, 0, 0); line-height: 32px; background-color: transparent; text-align: center;\"><img width=\"250\" height=\"444\" title=\"\" alt=\"\" src=\"/ueditor/php/upload/image/20190523/1558579637131363.jpg\"/><span style=\"line-height: 2; font-family: SimSun;\"> </span></p></td></tr><tr><td style=\"color: rgb(51, 51, 51); -webkit-font-smoothing: antialiased;\"><p style=\"font-size: 18px; color: rgb(0, 0, 0); line-height: 32px;\"><span style=\"background-color: transparent;\"><strong><span style=\"line-height: 2; font-family: SimSun;\">计算机工程系简介:</span></strong></span><span style=\"background-color: transparent;\"></span></p> 在互联网高速发展的时代,计算机工程系承担着计算机专业人才的培养,为社会提供技术支持和服务。坚持以学生为中心,以“价值观+知识+技能+创新”为培养目标,通过专业技能大赛、职业素质培训等活动,不断提升学生的综合素质。开设计算机应用技术、通信技术、数字媒体应用技术、软件技术以及计算机网络技术等5个专业。目前在校生3020人,各专业紧密结合就业岗位需求,近几年毕业生就业率均超99%,专业对口率超过85%,所培养的学生适岗能力强,就业质量高。计算机工程系拥有一支专业素质高、爱岗敬业、勇于创新的教师队伍,还长期聘请行业、企业的专家担任兼职教师和客座教授,充分发挥兼职教师的实践技能和企业运作的优势。近年,专任教师获省、市教科研项目20余项,实用型专利技术8项,6门精品在线开放课程为学生打造高效的学习平台。目前已有设施完善、功能齐全的专业实训室15间,学生工作室4间,深度合作的校外实训基地10家,为学生实习实训提供了坚实的保障。计算机工程系坚持“以赛促学、以赛促教”的教育理念,把技能竞赛引入专业教学与专业建设,每年组织校级计算机技能竞赛,为学生提供了竞赛的平台,学生参加省级以上各类专业技能竞赛50余项,其中省级获奖30项。学生可参加社团活动,也可加入教师工作室,培养学生的创新创业精神、职业素养和实践能力等,提高就业竞争力。学生还可以进行学历提升,在取得大专毕业证书同时可以获得由华南理工大学等颁发的本科学历毕业证及学士学位证书,为有志于继续提升学历的学生提供了有利的个人成长机会。 招生专业简介:1.专业全称:通信技术(专业代码:610301) 培养目标:本专业培养适应通信行业发展需要,德智体美劳全面发展,具有良好的职业道德和人文素养,具备通信系统的运行维护与管理、通信设备应用与维护、通信工程项目管理与监理等知识和技术技能的高素质技能性通信人才。 课程体系:现代通信原理、移动通信技术、数据通信与计算机网络、路由交换技术、无线网络规划与优化、通信工程项目管理、网页设计基础、JAVA程序设计。 就业面向:一方面可在通信企业从事移动通信网络规划与优化、工程安装、设备维护、技术服务、市场营销等工作;也可在企事业单位的通信网络部门从事计算机网络的管理与维护工作。另一方面可在通信企业从事通信工程设计、监理、概预算、项目管理、招投标等工程管理相关工作。2.专业全称:计算机应用技术(专业代码:610201) 培养目标:本专业旨在培养学生具有基本的审美能力,掌握平面设计基本理论和基本技能,具备多媒体产品发布、平面广告设计与创意、室内装饰设计、印刷品的设计能力,德智体美劳全面发展,具有创新能力和良好职业素养的高素质技能型人才。 课程体系:CorelDraw应用案例、AutoCAD绘图、Photoshop高级技能、UI设计、平面设计师必备技术等。 就业面向:毕业生可在广告设计公司、媒体设计部门、政府机关、企事业等单位,从事多媒体产品发布、广告设计、室内设计、印刷品的设计,展览展示等工作以及自主创业等。3.专业全称:数字媒体应用技术 (专业代码:610210) 培养目标:掌握数字媒体基本理论、创作规律和平面、动画、影视后期等技能,具有良好的职业道德和人文素养,适应建设管理服务一线德智体美劳全面发展的高技能人才。 课程体系:图形图像处理、动画美术、摄影摄像、动画制作、PR影视后期制作、AE影视特效制作与编辑、影视制作综合案例、三维制作、H5页面设计、电商视觉设计等。 就业面向:企事业单位、文化媒体行业多媒体信息采集、编辑及开发、数字媒体信息系统的管理与维护工作,也可以自主创业经营。4.专业全称:软件技术(专业代码:610205) 培养目标:培养能胜任网站开发与维护、移动互联网产品开发与运维、软件UI设计等工作,具有良好的职业素养、创新精神、策划能力和审美意识的高素质技能型人才。 课程体系:网页设计基础、HTML5基础、PHP网站开发、Java程序设计、Java web应用开发、Android应用开发、微信公众平台开发、网站前端交互技术、UI创意设计等。 就业面向:在软件公司及企事业单位从事网站、公众号和移动应用的设计、开发、测试、运维工作,亦可进行互联网项目创业。5.专业全称:计算机网络技术专业(专业代码:610202) 培养目标:培养掌握网络技术基本理论和基本技能,具备计算机网络系统规划及设计、网络设备安装和使用等能力,具有创新能力和良好职业素养的高素质技能型人才。 课程体系:网络技术与应用、网络工程制图、综合布线、局域网技术与组网工程、网络互连技术、网络安全技术等。 就业面向:毕业生可在政府机关、企事业等单位,从事网络系统规划与组建、网络系统集成的安装与测试、网络设备销售与技术支持等工作以及自主创业等。</td></tr></tbody></table><p><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 34, 15, 1558579660, 1558591405);
INSERT INTO `news` VALUES (218, '招生链接', '测试', '<p><a href=\"http://websites.mmvtc.cn:808/zsw/index.php?url=site/index\" target=\"_self\" title=\"招生\">打开招生信息页</a></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 34, 15, 1558579725, 1558591399);
INSERT INTO `news` VALUES (219, '就业链接', '测试', '<p><a href=\"http://www.mmvtc.cn/templet/job/\" target=\"_blank\" title=\"就业\">打开就业页面</a></p>', '', '', '测试', '管理员', 1, 0, 1, 0, 34, 15, 1558579827, 1558591397);
INSERT INTO `news` VALUES (220, '实训管理中心介绍', '测试', '<p>计算机工程系实训管理中心是采用企业的工作制度,目的是为了做出更好的实训安排</p>', '', '', '测试', '管理员', 1, 0, 1, 0, 36, 15, 1558580719, 1558591455);
INSERT INTO `news` VALUES (221, '工作动态', '测试', '<p>2019下半学期实训安排于6月15号-7月15号</p>', '', '', '测试', '管理员', 1, 0, 1, 0, 36, 15, 1558580921, 1558591453);
INSERT INTO `news` VALUES (222, '实训安全制度', '测试', '<p>1.实训中学生不得擅自插拔实训室电源,不得擅自启动教师电源总开关</p><p>2.实训中不得毁坏任何实训室的物品,如有损坏照价赔偿</p>', '', '', '测试', '管理员', 1, 0, 1, 0, 36, 15, 1558581058, 1558591452);
INSERT INTO `news` VALUES (223, '失误招领链接', '测试', '<p><a href=\"http://www.mmvtc.cn/templet/jsjgcx/index.jsp\" target=\"_blank\" title=\"失物招领\">打开失物招领页面</a><br/></p>', '', '', '测试', '管理员', 1, 0, 1, 1, 36, 15, 1558581314, 1558596191);
INSERT INTO `news` VALUES (228, '神州数码信息服务股份有限公司招聘信息', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">公司简介:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">神州数码信息服务股份有限公司,中文简称:神州信息;英文简称:</span><span style=\"box-sizing: border-box;font-size: 19px\">DCITS</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">;股票代码:</span><span style=\"box-sizing: border-box;font-size: 19px;color: rgb(224, 0, 42)\">000555.SZ</span><span style=\"box-sizing: border-box;font-size: 19px\"> </span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">三十余年的发展历程,国内最早参与行业信息化建设的企业之一,以业务模式和技术产品创新引领和推动中国信息化进程和信息服务产业的发展,支撑数字中国的使命。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">依托云计算、大数据、量子通信等技术,面向金融、政企、电信、农业、制造等行业提供规划咨询、应用软件设计与开发、技术服务、云服务、数据服务、量子通信等服务内容,以数据赋能行业创新升级,助力产业升级、价值重塑。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">招聘岗位:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">IT</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">运维实习生(</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">5</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">名,优秀者毕业后可转正)</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">岗位福利:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">实习薪资:</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">2000-3000</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">元</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">/</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">月</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">工作职责:</span></span><span style=\"box-sizing: border-box;line-height: inherit;color: rgb(227, 61, 102)\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">岗位要求</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">:</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">1</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、大专及以上学历,计算机相关专业;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">2</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、熟悉常见的服务器及网络产品,如</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">cisco</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\">H3C</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、锐捷;</span><span style=\"box-sizing: border-box;font-size: 19px;color: red\"></span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">3</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、沟通能力较好,有独立解决现场问题的潜力;</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;color: red\">4</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">、有网络相关证书者优先考虑。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">工作地点:广州</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><br/></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255)\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体;color: red\">优势:接触更多的服务器、网络设备,以及全球最大用户数量系统。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"><span style=\"box-sizing: border-box;font-family: 宋体;color: red\">请有意向的同学识别以下二维码进行报名,企业面试另行通知</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);text-indent: 28px;white-space: normal;background-color: rgb(255, 255, 255);text-align: center\"></p><p><br/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 34, 15, 1558502536, 1558502536);
INSERT INTO `news` VALUES (229, '茂名联通在我院开展“5G技术及应用”专题讲座', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 38px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">2019</span><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">年<span style=\"box-sizing: border-box\">3</span>月<span style=\"box-sizing: border-box\">27</span>日晚上<span style=\"box-sizing: border-box\">19:00-21:00</span>在南校区学术报告厅由中国联合网络通信有限公司茂名市分公司副总经理邓安民开设题为<span style=\"box-sizing: border-box\">“5G</span>技术及应用<span style=\"box-sizing: border-box\">”</span>专题讲座,现场还将有真实的<span style=\"box-sizing: border-box\">5G</span>演示设备和答疑。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 38px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">邓总本科毕业于南京邮电学院无线通信专业,研究生毕业于华南理工大学电子与通信工程专业,获得了工程硕士的职称。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 38px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">邓总先后在汕头联通、广东省联通公司及茂名联通就职,现在茂名联通主要分管网络建设及规划。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 38px\"><span style=\"box-sizing: border-box;font-size: 19px;font-family: 宋体\">邓总负责的“新型室分天线”项目获得中国联通总部科技创新一等奖及工信部一等奖;同时新型室分天线获得了国家发明专项<span style=\"box-sizing: border-box\">2</span>项及国际发明专利<span style=\"box-sizing: border-box\">1</span>项;另外他负责的“室分平台”项目获得中国联通总部科技创新一等奖及工信部二等奖。</span></p><p style=\"text-align: center;\"><img src=\"/computer/images/1558503263.png\" title=\"1558503263.png\" alt=\"32.png\"/></p>', '', '', '测试', '管理员', 0, 0, 1, 0, 40, 15, 1558503287, 1558503287);
INSERT INTO `news` VALUES (230, '学生组织', '测试', '<p style=\"text-align: center;\"><img src=\"/computer/images/1558594739.png\" title=\"1558594739.png\" alt=\"组织.png\" width=\"640\" height=\"414\"/></p>', '', '', '测试', '管理员', 1, 0, 1, 2, 29, 15, 1558594771, 1558594857);
INSERT INTO `news` VALUES (231, '【喜讯】我系学生参加 “移动互联网应用软件开发”竞赛荣获二等奖', '测试', '<p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">3</span><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">月</span><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">22-23</span><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">日,由广东省教育厅主办的广东省职业院校学生专业技能大赛</span><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">“</span><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">移动互联网应用软件开发</span><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">”</span><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">赛项(高职组)在广东理工职业学院顺利举行,来自全省的<span style=\"box-sizing: border-box\">44</span>所高职院派出的<span style=\"box-sizing: border-box\">57</span>支队伍及<span style=\"box-sizing: border-box\">171</span>名选手参加了本届技能大赛。</span></p><p style=\"box-sizing: border-box;margin-top: 0px;margin-bottom: 1.25rem;padding: 0px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;font-size: 1rem;line-height: 1.6;text-rendering: optimizelegibility;color: rgb(51, 51, 51);white-space: normal;background-color: rgb(255, 255, 255);text-indent: 37px\"><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">我系选派两支队伍参赛,选手封愉文、蔡子建、邹鑫辉三位同学在沈大旺老师、王松波老师的悉心指导下,经过刻苦训练,努力拼搏,在赛场上共同完成智慧城市的智能交通行业应用的移动应用开发比赛,夺得二等奖,充分展现了我院“修德,强技,求实,创新”的精神风貌和时代风采。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 1.25rem; padding: 0px; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255); text-indent: 37px;\"><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\">大赛以智慧城市的智能交通行业应用为考核点,通过“系统文档”“程序排错”“功能编码”及“创意设计”四种形式,考查参赛选手对实际问题的综合分析能力,对技术架构的设计能力、对移动互联网开发技术的掌握程度以及操作的熟练程度。通过备赛与参赛,把技能大赛作为提高人才培养质量的重要抓手,积极推进技能大赛项目进课程、进课堂,强化师生职业技能训练,突出职业素质与能力的培养,为经济和社会发展输送合格的技能型人才。</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 1.25rem; padding: 0px; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 1rem; line-height: 1.6; text-rendering: optimizelegibility; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255); text-indent: 37px; text-align: center;\"><span style=\"box-sizing: border-box;font-family: 仿宋;font-size: 19px\"><img src=\"/computer/images/1558594933.png\" title=\"1558594933.png\" alt=\"2.png\" width=\"591\" height=\"410\"/></span></p>', '/computer/images/wcldupymxbjrkfsvtzqeogihna1558594997.png', '', '测试', '管理员', 1, 0, 1, 4, 29, 15, 1558594997, 1558596642);
-- ----------------------------
-- Table structure for news_images
-- ----------------------------
DROP TABLE IF EXISTS `news_images`;
CREATE TABLE `news_images` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`url` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '图片链接',
`news_id` bigint(20) UNSIGNED NOT NULL COMMENT '图片对应的新闻',
`creation_time` int(10) NULL DEFAULT NULL COMMENT '创建的时间',
`modify_time` int(10) NULL DEFAULT NULL COMMENT '修改的时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Table structure for recycle_bin
-- ----------------------------
DROP TABLE IF EXISTS `recycle_bin`;
CREATE TABLE `recycle_bin` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`title` varchar(60) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '标题',
`describe` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '描述',
`content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '内容',
`cover` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '图片新闻封面',
`slideshow_cover` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '轮播图封面',
`type` varchar(5) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '类型',
`contributor` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '投稿者',
`is_hot` tinyint(1) NOT NULL DEFAULT 0 COMMENT '热点新闻',
`is_top` tinyint(1) NOT NULL DEFAULT 0 COMMENT '置顶',
`is_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否启动',
`count` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '访问次数',
`column` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '栏目标题',
`column_id` bigint(20) UNSIGNED NOT NULL COMMENT '对应的栏目id',
`user_id` bigint(20) UNSIGNED NOT NULL COMMENT '管理员id',
`creation_time` int(10) NOT NULL COMMENT '创建时间',
`modify_time` int(10) NOT NULL COMMENT '修改时间',
`recycle_time` int(10) NOT NULL COMMENT '回收时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `news_ibfk_1`(`column_id`) USING BTREE,
CONSTRAINT `recycle_bin_ibfk_1` FOREIGN KEY (`column_id`) REFERENCES `column` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 109 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of recycle_bin
-- ----------------------------
INSERT INTO `recycle_bin` VALUES (101, 'ces ', '测试', '<p>123</p>', '', '', '测试', '123', 0, 0, 0, 0, '党建工作', 32, 15, 1558590347, 1558590366, 1558590375);
INSERT INTO `recycle_bin` VALUES (102, '`12`1', '测试', '<p>2231231</p>', '', '', '测试', '12312', 0, 0, 0, 0, '学生活动', 33, 15, 1558590390, 1558590390, 1558590394);
INSERT INTO `recycle_bin` VALUES (103, 'sdasd', '测试', '<p>asdas</p>', '', '', '测试', 'sad', 0, 0, 0, 0, '学生活动', 33, 15, 1558590410, 1558590410, 1558590413);
INSERT INTO `recycle_bin` VALUES (104, '124', '测试', '<p>121241</p>', '', '', '测试', '3242', 0, 0, 0, 0, '党建工作', 32, 15, 1558590452, 1558590452, 1558590455);
INSERT INTO `recycle_bin` VALUES (105, '12432', '', '<p>阿斯顿发送到</p>', '', '', '', '上海', 0, 0, 1, 0, '教学科研', 31, 15, 1558595582, 1558595582, 1558595588);
INSERT INTO `recycle_bin` VALUES (106, '第三个是个', '', '<p>第三个第三个</p>', '/computer/images/wfxbmzsojkelyhngcdratvpiqu1558595600.png', '', '', '上海', 0, 0, 1, 0, '教学科研', 31, 15, 1558595600, 1558595600, 1558595632);
INSERT INTO `recycle_bin` VALUES (107, '大商股份', '', '<p>大好时光</p>', '/computer/images/opcfivhnuyswbztqjekadmxgrl1558595718.png', '', '', '上海', 0, 0, 1, 0, '教学科研', 31, 15, 1558595718, 1558595718, 1558595745);
INSERT INTO `recycle_bin` VALUES (108, '安徽', '测试', '<p>的时候</p>', '', '', '测试', '撒', 0, 0, 1, 0, '系部概况', 29, 15, 1558595352, 1558595352, 1558595746);
-- ----------------------------
-- Table structure for slideshow
-- ----------------------------
DROP TABLE IF EXISTS `slideshow`;
CREATE TABLE `slideshow` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`index` tinyint(4) UNSIGNED NOT NULL DEFAULT 0,
`is_status` tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
`news_id` bigint(20) UNSIGNED NOT NULL,
`creation_time` int(11) NOT NULL,
`modify_time` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `news_id`(`news_id`) USING BTREE,
UNIQUE INDEX `news_id_2`(`news_id`) USING BTREE,
CONSTRAINT `slideshow_ibfk_1` FOREIGN KEY (`news_id`) REFERENCES `news` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 20 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of slideshow
-- ----------------------------
INSERT INTO `slideshow` VALUES (14, 0, 1, 190, 1558588777, 1558588830);
INSERT INTO `slideshow` VALUES (15, 0, 1, 212, 1558588860, 1558588945);
INSERT INTO `slideshow` VALUES (16, 0, 1, 199, 1558588880, 1558588944);
INSERT INTO `slideshow` VALUES (17, 0, 1, 201, 1558588888, 1558588940);
INSERT INTO `slideshow` VALUES (18, 0, 1, 160, 1558588937, 1558588943);
-- ----------------------------
-- Table structure for teacher
-- ----------------------------
DROP TABLE IF EXISTS `teacher`;
CREATE TABLE `teacher` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
`title` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
`sex` tinyint(1) UNSIGNED NOT NULL,
`school` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
`content` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`head_img` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
`cover` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
`creation_time` int(11) NOT NULL,
`modify_time` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 59 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of teacher
-- ----------------------------
INSERT INTO `teacher` VALUES (26, '周洁文', '高级讲师', 2, '华南理工大学', '周洁文网络与信息管理师、高级讲师、全国计算机信息高新技术考试考评员,茂名市重大科技项目评审专家,茂名市科学技术奖评委员会委员。1987年毕业于华南理工大学计算机应用技术专业,长期致力于计算机应用技术教研工作,近年来,公开发表6篇,主编(参编)教材6本,主持或参与课题13项。先后获得广东省高校学生工作红棉奖、广东省教育系统关心下一-代工作先进个人、 茂名市优秀班主任、茂名职业技术学院“十佳教职工”等荣誉称号。广东省高职高专委员会“IT优质课竞赛”三等奖,指导学生参加省技能大赛获二等奖。', '/computer/images/yjvdohwgspqecbtizrmkfuxnal1558575966.png', '/computer/images/uyrlbfqniwtskmdpoezxacjhvg1558575966.jpeg', 1558575966, 1558575966);
INSERT INTO `teacher` VALUES (27, '周春', '讲师', 2, '华南师范大学', '周春讲师、工程师,国家职业技能鉴定考评员,1995年毕业于华南师范大学电子学与信息系统专业,现任计算机工程系应用技术教研室主任,主要研究方向为计算机应用技术和计算机网络技术。学院重点建设专业计算机通信专业负责人,《网络互联技术》精品课程负责人。主持完成教学研究项目1项,参与完成科研项目2项,公开发表学术论文7篇,参编教材2部,副主编教材1部。2012、2013年指导学生参加全国职业院校技能大赛广东省选拔赛获得三等奖;曾获学院“十佳教职工”提名奖,并三度获得茂名职业技术学院“优秀教师”。', '/computer/images/elkztqynxdrcfhgbuwsmiaopjv1558576024.png', '/computer/images/cmaidygnhkpwjruzlqsefbovxt1558576024.jpeg', 1558576024, 1558576024);
INSERT INTO `teacher` VALUES (28, '何晓园', '讲师', 2, '华南师范大学', '何晓园,女,计算机讲师,国家职业技能鉴定计算机办公软件考评员;毕业于华南师范大学计算机科学专业,软件工程硕士;多年来一直从事计算机教学工作,主讲课程有《计算机应用基础》、《C语言 程序设计》、《网页设计》、《VB+SQL应用 系统开发》等,教学效果良好,多次教学测评为优秀。现任计算机工程系应用基础教研室主任,积极参加了《计算机应用基础》、《VB+SQL应用系统开发》、《网页设计与制作》等多门精品课建设,参研了多项院、市级科研课题;参编了《计算机公共基础》、《Photoshop基础教程》、 《Dreamweaver网页设计与制作》等多本教材;多次被评为优秀教师。', '/computer/images/upmsioljybkqeztvngfawcxrdh1558576086.png', '/computer/images/scnxtuvhqgiomkdflyrpwbaezj1558576086.jpeg', 1558576086, 1558576086);
INSERT INTO `teacher` VALUES (29, '陈永芳', '讲师', 2, '华中科技大学', '陈永芳,计算机应用讲师,全国计算机信息高新技术高级考评员,华中科技大学软件工程硕士学位。现任计算机工程系计算机应用基础教研组组长,主要担任《计算应用基础》、《Office 高级应用》、《Acces数据库程序设计》、《VB程序设计》 等多门课程的教学与实训指导工作,同时担任毕业设计和顶岗实习的指导工作,教学效果显著。主编公开发行教材《计算机应用基础教程》、《Office 2010办公自动化高级应用实例教程》,参与《计算机应用基础》精品课程的建设工作,被学院评为“优秀教师”。', '/computer/images/zdoitcahqxfbpylumwvngejsrk1558576212.png', '/computer/images/rmzjstibxgqvwoyndhapufkecl1558576212.jpeg', 1558576212, 1558576212);
INSERT INTO `teacher` VALUES (30, '冼浪', '讲师', 2, '华南师范大学', '冼浪,女,高校讲师,大学本科毕业于华南师范大学, 2009年获得华中科技大学软件工程硕士学位,高新技术高级图像制作员考评员,学院骨干教师,学院精品课程《图形图像处理》负责人,数年来从事图像处理相关课程教学工作,现任多媒体技术教研组组长。参编《F1ash动画制作》- -书,主编《Photoshop基 础教程》一书(2012年9月年华中科技大学出版社出版)。多次担任茂名市科级干部继续教育自主选题课程主讲教师工作。', '/computer/images/unfeoybpikmwjltrcghdzasxqv1558576261.png', '/computer/images/nczaojmvbyguxprkhiqdsweflt1558576261.jpeg', 1558576261, 1558576261);
INSERT INTO `teacher` VALUES (31, '张丽妹', '讲师', 2, '国内知名大学', '张丽妹 ,讲师,硕士研究生。曾担任《数据结构》、《计算机应用基础》、《C++程序设计》 、《VB+SQL应用 系统开发》、《VB. net程序设计》等课程的教学工作。连续7年参加本专业毕业设计的指导和答辩工作,指导学生参加全国计算机信息高新技术考试,通过率达100%。 多次被学院评为“优秀共产党员”、“优秀教师”。 负责1项省级教指委2013年度课题、负责1项院级精品课程建设,参研了2项市级科技项目。有5篇论文公开发表,其中-篇获“2008英特尔杯全国计算机教育优秀论文评比”优秀奖。', '/computer/images/tjuvqxkzymgwonhircpsealbfd1558576343.png', '/computer/images/whznqtrodajpguylkvfbxicsme1558576343.jpeg', 1558576343, 1558576343);
INSERT INTO `teacher` VALUES (32, '张劲勇', '讲师', 1, '广东工业大学', '张劲勇,硕士,讲师,网页设计师。担任《PHP网站开发》、《ASP. NET开发技术》等多门课程教学工作,教学认真负责,深受学生好评。该同志以科研促进教学,主持或参与省、市和学院重点课题科研项目6项,发表论文5篇,参编出版教材3部,《网页 设计与制作》精品课程负责人。多次组织和指导学生参加“蓝桥杯”、“多迪杯”、“中星杯” 等计算机技能大赛,曾取得一等奖、二等奖等好成绩。曾多次被评为学院“优秀党员”、“优秀班主任”、“优秀教师” 和“优秀共产党员”', '/computer/images/fehuyqpatbmzjdigxclwovsknr1558576482.png', '/computer/images/jeafzvtuyhcodpnqlwimrxbksg1558576482.jpeg', 1558576482, 1558576482);
INSERT INTO `teacher` VALUES (33, '李春盛', '讲师', 1, '国内知名大学', '李春盛,讲师,硕士研究生。曾担任《C语言程序设计》、《ASP动态网站编程》 、《VB程序设计》、《微型计算机原理与组成》 、《信息应用技术基础》等课程的教学工作,多次参加本专业毕业设计的指导和答辩工作,参研2项省级教指委2013年度课题、1项市级科技项目、1项院级精品课程建设。', '/computer/images/csmzgbwprkihjltvdyaoxufqne1558576549.png', '/computer/images/suokhctwqfjypdareinzgbxmlv1558576549.jpeg', 1558576549, 1558576549);
INSERT INTO `teacher` VALUES (34, '韩倩', '讲师', 2, '华中科技大学', '韩倩,计算机应用技术讲师,网页设计师,网络与信息管理师。2008年获得华中科技大学软件工程硕士学位。曾任教《C语言程序设计》、《VB程序设计》、《VFP数据库原理与应用》、《Access数据库应用》、《信 息应用技术基础》等课程。参与院级课题2项,省级以上期刊公开发表论文5篇。被学院评为优秀教师、优秀班主任。', '/computer/images/sdgjxpzokfvmbhuwatlqeyicnr1558576619.png', '/computer/images/oaeqvgnyfpzkuilmrsbtwxhjcd1558576619.jpeg', 1558576619, 1558576619);
INSERT INTO `teacher` VALUES (35, '陈永梅', '讲师', 2, '华中科技大学', '陈永梅,女,讲师,广东教育学院计算机科学与技术专业毕业,华中科技大学软件工程硕士。从事高职教育多年,主要承担《数据库设计》、《信 息应用技术基础》、《Office高级应用》 等多门课程的教学及实训指导工作,担任多届毕业生的毕业设计和顶岗实习指导工作,教学效果良好,受到领导、同事及学生的好评。积极编写教材,参与省级、院级科研课题研究和精品课程建设,发表论文多篇,多次被评为学院“优秀教师”、“优秀班主任”。', '/computer/images/xevythmuobfarjzkqpdcliwngs1558576663.png', '/computer/images/pcyaftgnojkulsbwmdhverqxiz1558576663.jpeg', 1558576663, 1558576663);
INSERT INTO `teacher` VALUES (36, '陈凡健', '讲师', 1, '华中科技大学', '陈凡健,讲师 , 2004毕业于广东教育学院计算机专业毕业, 2009年获得华中科技大学软件工程硕士学位。在教学中注重采取多样化的教学方式,激发学生学习与思考的主动性和积极性。教学效果好,在搞好课程教学的同时,积极探讨教学法的研究和改革, 通过教学改革的研究进一步促进教学。 教学工作曾多次受到学校表彰。科研领域:主攻条形码,机器识别、物联网应用方向。', '/computer/images/tnfkdagqvemsbcylroxiwzjuph1558576712.png', '/computer/images/osqvtdhckrlpubjwaygeznximf1558576712.jpeg', 1558576712, 1558576712);
INSERT INTO `teacher` VALUES (37, '陈桥君', '讲师', 2, '国内知名大学', '陈桥君 硕士学位,具有计算机应用技术讲师、网络与信息管理师和广告设计师的专业资格。从事教学工作13年,主要承担计算机专业平面设计教学任务,系统讲授过两门以上的专业基础课程,及一一门主干课程,教学效果良好。2010年参加广东省职业技能大赛获得“茂名市技术能手”称号,2012年指导学生参加广东省职业技能大赛广告设计竞赛总决赛,2名学生获得三等奖,独撰公开发表3篇论文,参编教材一“本,参与广东省高职教育管理类教学改革项目。', '/computer/images/zumanjqkovbtiegcxdlfrsyhpw1558576774.png', '/computer/images/amdpruisqgktyhenvolcwfzbxj1558576774.jpeg', 1558576774, 1558576774);
INSERT INTO `teacher` VALUES (38, '梁燕', '讲师', 2, '华中科技大学', '梁燕,女,中共党员,1982年5月 出生,毕业于华中科技大学软件学院,软件工程硕士,计算机应用技术讲师,网页设计师、网络与信息管理师。2006年参加工作,曾任茂名职业技术学院计算机工程系教师、茂名职业技术学院评估办工作人员,参与状态数据评估工作,现任茂名职业技术学院计算机工程系辅导员兼计算机工程系分团委书记。主要研究方向:计算机应用技术和电子商务技术。曾承担的主要课程:《微机原理与接口技术》、《软件测试》 、《电子商 务技术应用》、《市场调研与预测》等。主持省级课题1项,参与院级课题4项。近五年来,公开发表论文七篇,其中1篇发表在统计源核心,参编教材2本。\n', '/computer/images/jbxdvptzmcfaheoynlrqsgiukw1558576825.png', '/computer/images/spweqlyzabionxctvjfgudmhkr1558576825.jpeg', 1558576825, 1558576825);
INSERT INTO `teacher` VALUES (39, '柯奋', '经济师', 1, '浙江杭州电子工业学院', '柯奋,经济师。 1990年毕业于浙江杭州电子工业学院I业经济系,本科,学士学位。兴趣广泛,爱好运动、旅游、摄影、音乐等。曾讲授的主要课程有C语言程序设计、VB程序设计、多媒体技术制作、Flash 动画制作等。\n积累了丰富的教学经验,擅于组织课堂、营造活跃的课堂气氛,激发学生\n的学习兴趣与热,教学效果优良。\n', '/computer/images/hgojutpnvqiexcrysdwafbkzlm1558576932.png', '/computer/images/fvtusjohieymckdzqnxgrpwabl1558576932.jpeg', 1558576932, 1558576932);
INSERT INTO `teacher` VALUES (40, '廖欣南', '讲师', 1, '华中科技大学', '廖欣南,毕业于华中科技大学软件工程硕士,职称:讲师。从事计算机教育工作十几年,担任多门计算机课程教学,特别擅长计算机图形图像处理、多媒体技术、动画设计。本人爱岗敬业,热爱学生工作。曾多次获得“优秀教师”和“优秀班主任”的称号。科研项目方面, 曾公开发表3篇论文,1篇国家级,1篇省级,1篇论文获2012年全国教育改革优秀教学论文大赛- -等奖;主持一个横向课题,参与两个省级科研项目,参编两本教材。', '/computer/images/yjmalwcindevtzghqbuoksxpfr1558577005.png', '/computer/images/wjaidfohstkbxegcmyzpnvurlq1558577005.jpeg', 1558577005, 1558577005);
INSERT INTO `teacher` VALUES (41, '林国锋', '教师', 1, '国内知名大学', '林国锋,工作以来 ,关心爱护学生,公正的善待每一位学生,以自己的真诚、公平、温和赢得了学生的信任。在多年的锤炼中,具备了过硬的专业知识丰富的教学经验、精甚的教学艺术。所撰写的多篇论文在省市报刊发表。辅导的学生多次获得省市竞赛奖励。所教的班级多次获得先进班集体称号', '/computer/images/dontkcujhfargsmvzeqlywbpxi1558577075.png', '/computer/images/cgdyrkthwfszbjuloexnimaqvp1558577075.jpeg', 1558577075, 1558577075);
INSERT INTO `teacher` VALUES (42, '罗俭', '优秀教师', 1, '北京理工大学', '罗俭,2006年毕业于广东技术师范学院艺术设计系多媒体设计专业,曾就职于广州市动觉奇想动画有限公司,后在广州么希尔进出口贸易有限公司担任产品设计师;2007年进 入茂名职业技术学院至今; 2010年获优秀班主任称号; 2011年获优秀教师称号,同年获广东省职业技能大赛广告设计竞赛优秀奖; 2012年参编《Photoshop基础教程》-书;2013年获北京理工大学软件工程硕士学位; 2014年发表论文《家具销售管理系统的设计与探索》。曾担任《计算机基础应用》、《计算机组装与维护》、《图形 图像处理(Photoshop)》、《图形图像处理 (CorelDRAW)》、《3ds Max》等课程。', '/computer/images/uadbqhzpeytolmjnkrxscigfvw1558577239.png', '/computer/images/yrafudngizvewoptlmqhbkxcsj1558577239.jpeg', 1558577239, 1558577239);
INSERT INTO `teacher` VALUES (43, '何林', '讲师', 1, '华中科技大学', '何林,讲师,2006毕业于广东石油化工学院计算机应用技术专业,2009年获得华中科技大学软件工程硕士学位。参编两本教材,独撰公开发表两篇省级以上论文,曾担任《计算机组装与维护》、《C语 言程序设计》、《JAVA程序设计》、《网页设计与制作》 等课程的教学工作,现担任计算机系辅导员,主要负责学生的日常管理工作,在工作上获得了领导、同事和同学们的支持与肯定,曾获评“优秀教师”、“优秀共产党员” 和“优秀辅导员”。', '/computer/images/nfzjbltwaeoyvmiucxgsprqdkh1558577315.png', '/computer/images/cudxshgzqpimknevflbytoawrj1558577315.jpeg', 1558577315, 1558577315);
INSERT INTO `teacher` VALUES (44, '付玉珍', '讲师', 2, '国内知名大学', '付玉珍,女, 讲师。现在计算机工程系工作,主要研究方向为计算机应用。6年来一直从事计算机软件应用方向的教学工作,具有较先进的高职教学理念,积极投身教育创新实践,改革教学内容、方法、手段,注重培育学生主动精神,鼓励学生的创造性思维,引导学生全面发展。同时,该同志参加主持完成市级科研研究项目1项,省级重点实验室开放基金项目1项,主持院级课题1项,参与省级产学研项目1项,发表论文3篇。曾被评为茂名职业技术学院”优秀班主任”。\n', '/computer/images/nvoiltubrfdakhcxswzpgjymqe1558577400.png', '/computer/images/ymrqibjgfnckwtvdxaopluhesz1558577400.jpeg', 1558577400, 1558577400);
INSERT INTO `teacher` VALUES (46, '周勇', '教师', 1, '华南理工大学', '周勇,计算机通信专业教师,华南理工大学电子与通信工程专业硕士,主要从事计算机通信专业教学及毕业设计指导工作,曾在国家级、省级刊物发表过多篇论文。主要研究方向:光纤通信网络、无线通信网络。', '/computer/images/rpvmgacykensljqtfxhodizubw1558577510.png', '/computer/images/eowmghjlysiruakfzvqdcnbptx1558577510.jpeg', 1558577510, 1558577510);
INSERT INTO `teacher` VALUES (47, '沈大旺', '讲师', 1, '华中科技大学', '沈大旺,硕士研究生,毕业于华中科技大学,职称讲师,主要研究方向为计算机程序设计。多年来一直从事计算机的教育教学工作,教学效果优秀。主持教科研项目3项,参加教科研项目4项,参加精品课建设3个,发表论文5篇,参编教材2部,自编校内教材2部。指导学生参加技能大赛获得国家级个人优秀奖1次,省级个人等奖1次,省级个人三等奖1次,省级团队二等奖2次。曾被评为学院“优秀教师”、“优秀共产党员”、“毕业生 就业工作先进个人”。', '/computer/images/lbiwuzvkosehpmjrgqxynfcadt1558577553.png', '/computer/images/dejovcuzyfxkhwsbarlignpqmt1558577553.jpeg', 1558577553, 1558577553);
INSERT INTO `teacher` VALUES (48, '张慧', '讲师', 2, '国内知名大学', '张慧,女,讲师。多年来一直从事计算机教学工作,主要研究方向为计算机应用。主要担任《计算机应用基础》、《网页设计与制作》、《图形图像处理》 等课程教学,具有较先进的教学理念和教学方法,注重培养学生创造性思维。主持科研项目1项,参与教科研项目3项,发表论文3篇。曾被评为茂名职业技术学院“优秀班任”、 “优秀共产党员”。\n', '/computer/images/dkwyrbqlsafcxhgujitomnzepv1558577608.png', '/computer/images/fscqovtkhbmgdieujnxwralzyp1558577608.jpeg', 1558577608, 1558577608);
INSERT INTO `teacher` VALUES (49, '陈耀', '教师', 1, '华中科技大学', '陈耀,华中科技大学在职研究生,网络工程师。茂名职业技术学院计算机工程系教师,主要担任《计算机组装与维护》、《综合布线工程》、《计算机网络基础》 、《操作系统》 等课程的教学工作。主编教材《计算机组装与维护项目化教程》。获学院“优秀班主任”称号。\n\n\n\n', '/computer/images/dqjzvxmfhuonwcragypiektbsl1558577797.png', '/computer/images/suvljnoytmhgkbidxqcrzeafpw1558577797.jpeg', 1558577797, 1558577797);
INSERT INTO `teacher` VALUES (51, '谢海燕', '讲师', 2, '广西大学', '谢海燕,大学讲师、网络工程师,2004年毕业于广西大学计算机科学技术专业,主要研究方向:计算机网络技术,平面设计技术。熟练掌握计算机网络及计算机应用技术。主要讲授课程有:《计算机网络技术与 应用》、《服务器操作系统》、《网络管理 员认证培训》、《Photoshop图像 处理技术》、《CorelDraw图形 设计》、《办公 自动化应用技术》、《市场调查与预测》、《计算机应用基础》 等。主持省教指委教改项目和校级教改项目各1项,参与省级教改项目2项和院级精品课程建设1项,公开发表学术论文8篇,主编教材2册。多次荣获院级“优秀教师”、“优秀共产党员“ 、“优秀党务工作者”、“师德师风建设标兵”等荣誉称号。', '/computer/images/zfvokdsrxjbpmqaeyuwnhgctil1558577978.png', '/computer/images/tehyfzqromnwkvusxcbjlapgdi1558577978.jpeg', 1558577978, 1558577978);
INSERT INTO `teacher` VALUES (52, '唐穗', '讲师', 2, '华中科技大学', '唐穗,女,中国石油大学本科毕业,华中科技大学软件工程硕士毕业,计算机应用技术讲师。主要从事计算机教育方向的教学和研究工作,参与完成多项课题研究,有多篇论文在省级以上刊物发表。曾参加全国计算机信息高新技术考评员资格学习,“茂名职业技术学 院三维影像制作”项目工作,广东技术师范学院“行为导向教学法”的培训,并获得办公软件应用模块考评员等资格证书。', '/computer/images/kbjrimwpcglyzaoxfuqedhvtns1558578061.png', '/computer/images/oplucjgxqesarnbvdfkihtymzw1558578061.jpeg', 1558578061, 1558578061);
INSERT INTO `teacher` VALUES (54, '王松波', '讲师', 1, '华中科技大学', '王松波,计算机应用技术讲师、H3C认证网络工程师、网页设计师。2004年毕业于武汉科技大学计算机科学与技术专业,2009年获得华中科技大学软件工程硕士学位。主要担任《C语言程序设计》、《VB程序设计》 、《ASP动态网站编程》 等多门课程的教学工作。参与茂名市科技计划项目“二维条码智能识读软件关键技术的研发与产业化”、院级项目“教学工作量管理系统”、 “学生工作管理系统”以及多项教研教改类项目。多次被评为学院优秀教师、优秀党员。', '/computer/images/eyqhwlxsrdzvjicatfnpgukobm1558578121.png', '/computer/images/zlgeqcywroudjskbhptamnvixf1558578121.jpeg', 1558578121, 1558578121);
INSERT INTO `teacher` VALUES (55, '龚建锋', '讲师', 1, '华中科技大学', '龚建锋,讲师,2005年毕业于华南师范大学,2009年获得华中科技大学软件工程硕士学位。主要担任《实用网络技术》《局域网 技术与组网工程》《服务 器管理与维护》《网络设备应用》 等课程以及实训指导工作,积极参与教学改革与创新,多次获得院级“优秀教师”和“优秀班主任”称号。多次指导学生参加“全国职业院校技能大赛高职组广东选拔赛(计算机网络项目)”并于2012年、2013年获得省赛三等奖,指导学生参加2013年广东高校大学生(高职高专组) IT专业技能大赛“中星杯”网上创业设计竞赛荣获二等奖,参与一项市级科研课题、两项院级科研课题和一项院级精品课程建设。在省级和国家级专业期刊上发表论文数篇。积极参与学生就业指导和促进工作,效果显著。', '/computer/images/pazgwokfbstqrmivlncxdhyjeu1558578185.png', '/computer/images/kjviuqblpnworsycexgdfamthz1558578185.jpeg', 1558578185, 1558578185);
INSERT INTO `teacher` VALUES (56, '李叶', '教师', 1, '广东工业大学', '李叶,通信工程师,广东工业大学电子与通信工程硕士,现任计算机工程系通信专业教师。主要担任《通信原理》、《移 动通信技术》、《现代通信技术》 等专业课程教学工作以及通信实训室的管理工作。曾经在大型通信企业担任过技术工程师,有丰富实践经验。主要研究方向为:移动通信网络和光纤通信网络。\n', '/computer/images/pdsvzgkxineojmqwurhcafylbt1558578226.png', '/computer/images/mrbwqlaoxtipufzdjkvyengchs1558578226.jpeg', 1558578226, 1558578226);
INSERT INTO `teacher` VALUES (57, '谭彩明', '讲师', 2, '国内知名大学', '谭彩明,硕士研究生, 计算机应用讲师。主要承担计算机应用专业《网站制作与开发》系列课程的教学。指导学生完成了学院多个二级部门网站和专题网站,这些网站的上线,极大推动了学院的信息化建设,提高了学院的知名度。主编教材1部,主持省级课题1项,院级课题1项,横向课题1项。参与市级课题2项。参与院级课题1项。', '/computer/images/pjgixnvrlfctszdehwkuyamboq1558578316.png', '/computer/images/nghqzebyxuiwmafpdoscjkrvtl1558578316.jpeg', 1558578316, 1558578316);
INSERT INTO `teacher` VALUES (58, '吕晓梅', '教师', 2, '江西财经大学', '吕晓梅,2009年毕业 于江西财经大学电子信息工程专业,曾就职于中国移动安徽分公司,在IT中心及集团客户部从事数据提取和数据分析工作。13年进入茂名职业技术学院,目前担任《计算机专业英语》《通信 专业英语》等课程的教学工作,同时担任13移动通信班主任。', '/computer/images/xnmzakdojsbyicuglvftwrepqh1558578359.png', '/computer/images/utxegdcqmoyshvzjlanpriwfbk1558578359.jpeg', 1558578359, 1558578359);
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '姓名',
`username` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '账号',
`password` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '密码',
`role` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色',
`phone` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '手机',
`email` varchar(60) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '邮箱',
`is_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '状态,是否激活',
`creation_time` int(10) NOT NULL COMMENT '创建时间',
`modify_time` int(10) NOT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `username`(`username`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 20 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES (15, '陈升燊', 'admin', 'admin', 'superAdmin', ' 13926790845', '[email protected]', 1, 1, 1558579619);
INSERT INTO `user` VALUES (17, '陈新彬', 'chenxinbin', 'chenxinbin', 'admin', '13888888888', '[email protected]', 0, 1558590146, 1558600123);
INSERT INTO `user` VALUES (18, '杨鸿燊', 'yanghongshen', 'yanghongshen', 'admin', '13888888888', '[email protected]', 1, 1558590196, 1558590238);
INSERT INTO `user` VALUES (19, '姚升阳', 'yaoshengyang', 'yaoshengyang', 'admin', '13888888888', '[email protected]', 1, 1558590232, 1558590240);
SET FOREIGN_KEY_CHECKS = 1;